/* css */
* {
    box-sizing: border-box;
    font-family: "Tajawal", sans-serif;
}

body {
    background-color: #f7f7f2;
}

#wrapper {
    max-width: 55%;
    margin: auto;
}
@media screen and (max-width: 992px) {
    #wrapper {
        max-width: 100%;
        margin: auto;
    }
}

#heading img {
    width: 100%;
    display: block;
    margin: auto;
}

#heading h2 {
    text-align: center;
    font-size: 20pt;
}

#window-2 {
    display: none;
}

#chooseOne {
    padding: 0.5rem;
    text-align: center;
    font-weight: bold;
    font-size: 15pt;
    color: #3a4c59;
}

.popup-window {
    /*position: absolute;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    display: none;
}

.popup-message {
    background-color: #fff;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem 1rem;
    min-height: 100px;
    border-radius: 5px;
    box-shadow: 0 12px 12px -12px black;
}

.popup-header {
    display: flex;
    justify-content: space-between;
}

.popup-header h4 {
    margin: 0;
}

.popup-body {
    padding: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.close {
    font-size: 15pt;
    cursor: pointer;
}

.btn {
    font-size: 15pt;
    background-color: #3a4c59;
    color: #fff;
    padding: 0.6rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    flex: 1;
    line-height: 29px;
}

.flex2 {
    display: flex;
    align-items: start;
}

.sp {
    width: 0.3rem;
}

.group {
    border: 1px solid #eee;
    padding: 0.2rem;
    margin-bottom: 0.5rem;
    flex: 1;
}
.group-title {
    display: flex;
    padding: 0.6rem 1rem;
    justify-content: space-between;
    background: linear-gradient(45deg,#174949 0,#c14e2b 100%);
    align-items: center;
    cursor: pointer;
    color: #fff;
}

.toggle {
    font-weight: bold;
    font-size: 14pt;
}

.name {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 10pt;
}

.name .icons,
.name img {
    height: 30px;
    margin-left: 0.5rem;
}

.cards-wrap {
    display: none;
}

.cards {
    display: flex;
    grid-template-columns: auto auto;
    grid-gap: 1rem;
    justify-content: center;
    padding: 0.5rem;
}

.card {
    height: 200px;
    border: 3px solid #aaa;
    border-radius: 5px;
    overflow: hidden;
}

.card img {
    height: 100%;
    width: 100%;
}

.outline {
    border-color: #4b838f;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-control {
    display: flex;
    flex-direction: column;
    font-size: 10pt;
    margin-bottom: 1rem;
}

.form-control input {
    margin-top: 5px;
}

[type="text"],
[type="submit"] {
    -webkit-appearance: none;
    line-height: 35px;
    border-radius: 3px;
    border: 1.5px solid #3a4c59;
    background-color: rgba(255, 255, 255, 0.9);
}

[type="submit"] {
    border: none;
    line-height: 29px;
    background-color: #3a4c59;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    font-size: 15pt;
    border-radius: 0;
    padding: 0.6rem;
    flex: 1;
    margin-top: 0 !important;
}

#back {
    background-color: #4b838f;
}

[type="text"] {
    text-indent: 10px;
}

[type="text"]:focus,
[type="submit"]:focus {
    outline: none;
}

#form label {
    font-weight: 500;
    color: #3a4c59;
}

.icons path {
    fill: #fff;
}

.icons {
    width: 30px;
}

#liveChoosen {
    line-height: 35px;
    text-align: center;
}