.smscountry-container #otp-timer-message {
    margin-top: 10px;
    color: green;
}

.smscountry-confirm-block {
    /* display: none; */
}

.code-expires-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.smscountry-otp-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

[dir="rtl"] .smscountry-otp-group {
    direction: ltr;
}

.smscountry-otp-cell {
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px solid #3332334D;
    border-radius: 8px;
    text-align: center;
}

.smscountry-otp-cell.selected {
    background-color: red;
}

.smscountry-otp-cell::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 12px;
    left: 0px;
    right: 0px;
    bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    background-color: #33323380;
}

.smscountry-otp-cell.filled:after {
    content: none;
}

.smscountry-otp-cell input {
    text-align: center;
    width: 100%;
    height: 100%;
    border: unset;
    border-radius: 8px;

    font-weight: 400;
    font-size: 44px;
}

.otp-phone {
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 991px) {
    .smscountry-otp-group {
        gap: 5px;
    }
}