// admin side

.timer-container {
    display: flex;
    align-items: center;

    span {
        margin-left: 5px;
    }
    svg {
        margin-bottom: 3px;
    }
    .ant-statistic-content {
        font-size: 14px;
    }
}

// RTL styling overrides
*[dir="rtl"] .timer-container {
    span {
        margin-left: 0 !important;
        margin-right: 5px;
    }
}

.no-time {
    svg path {
        fill: #b4b4b4;
    }
}

// application details

.application-details-wrapper {
    color: #04041c;
    h2 {
        border-bottom: 1px solid #dedede;
        padding-bottom: 15px;
    }
    h3,
    p {
        font-size: 12px;
    }
    h2,
    h3 {
        font-weight: 500;
        margin-bottom: 4px;
    }
    p {
        margin-bottom: 0;
    }
}

// student side
.application-wrapper {
    .select-college {
        width: 412px;
        height: 485px;
        background: #ffffff 0% 0% no-repeat padding-box;
        border: 1px solid #ebebeb;
        border-radius: 8px;
        padding: 18px 20px;

        ul li {
            &:not(:first-child) {
                margin-top: 15px;
            }
            a {
                display: block;
                color: #04041c !important;
                width: 100%;
                font-size: 16px;
                height: 30px;
                border-bottom: 1px solid #c7c7c7;
                cursor: pointer;

                &:hover {
                    font-weight: 500 !important;
                    color: $color-secondary !important;
                }
            }
        }
    }
}
// create application
.create-application-wrapper {
    display: flex;
    position: relative;

    & > div:nth-child(1) {
        width: 300px;
        position: fixed;
        left: 0;
        margin: 0 40px;
    }
    & > div:nth-child(2) {
        width: calc(100% - 620px);
        margin: 20px auto;
        margin-top: 0;
    }
    & > div:nth-child(3) {
        width: 256px;
        position: fixed;
        right: 0;
        margin: 0 40px;
    }

    .application-form {
        margin: 0 20px 20px 0;

        .ant-form-item-label label {
            font-size: 12px;
            font-weight: 500;
        }
    }
}
*[dir="rtl"] .create-application-wrapper {
    & > div:nth-child(1) {
        right: 0 !important;
        left: auto !important;
    }
    & > div:nth-child(3) {
        right: auto !important;
        left: 0 !important;
    }
}
.payment-method-wrapper {
    .ant-form-item-label {
        padding-bottom: 3px !important;
        label {
            font-size: 12px;
            font-weight: 500;
        }
    }
}

.suggest-exam-center-card {
    width: 75% !important;
}

@include responsive(tablet) {
    .suggest-exam-center-card {
        width: 100% !important;
    }
}
