.ui-dialog.email-verification-popup.ui-widget {
    width: 100% !important;
    height: 100% !important;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: unset;
}

.ui-dialog.email-verification-popup.ui-widget .verification-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    text-align: center;
}

.email-verification-popup .verification-popup .form-item-otp input {
    font-size: 1.5em;
    width: auto;
    margin: 0 auto;
}

.email-verification-popup .verification-popup .form-item-otp input:focus {
    box-shadow: unset;
}

.countdown-wrap {
    display: flex;
    justify-content: center;
}


@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#verification-popup div.form-item-otp label{
    @media (max-width: 768px) {
        display: inline-block;
        margin-bottom: .5rem;
        /* width: 260px; */
        max-width: 100%;
        width: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 3.5vw;
    }
}

.otp-field {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.otp-field button#edit-verify-otp {
    width: 143px;
}

#otp-change-mail a, #resend-otp-button {
    color: #007bff;
    text-decoration: underline;
}

#verification-popup input#edit-otp {
    width: 100%;
    max-width: 105px;
    box-sizing: border-box;
}

button#resend-otp-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
}

button#resend-otp-button:hover {
    background-color: #45a049;
}

button#resend-otp-button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

.col-md-12.resend-otp-wrapper {
    display: flex;
    justify-content: center;
}

.base-timer {
    position: relative;
    width: 260px;
    height: 260px;
    margin-top: 40px;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: grey;
}

.base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

.base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
    color: orange;
}

.base-timer__path-remaining.red {
    color: red;
}

.base-timer__label {
    position: absolute;
    width: 260px;
    height: 260px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}