﻿@media all and (min-width:600px) {
    .only-mobile {
        display: none;
    }
    .only-desktop {
        display: block;
    }
}
@media all and (min-width:0px) and (max-width: 600px) {
    .only-mobile {
        display: block;
    }
    .only-desktop {
        display: none;
    }
}

.progress-ajax {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    height: 100%;
    width: 100%;
    z-index: 10000;
}

    .progress-ajax .spinner-border {
        position: fixed;
        top: 50%;
        left: 50%;
        z-index: 10000;
        background-color: white;
        width: 100px;
        height: 100px;
        border-radius: 50px 50px;
        text-align: center;
        padding-top: 20px;
    }

    .progress-ajax .spinner-border {
        background-color: white;
        border: 2px solid #fc6604;
    }

    .progress-ajax img {
        max-width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.textspinner {
    color: #000;
    font-size: 15px;
}


.otp-field {
    display: flex;
}

    .otp-field input {
        width: 15%;
        font-size: 1rem;
        padding: 10px;
        text-align: center;
        border-radius: 5px;
        margin: 2px;
        border: 2px solid #55ce5f;
        background: #fff;
        font-weight: bold;
        color: #000;
        outline: none;
        transition: all 0.1s;
    }

        .otp-field input:focus {
            border: 2px solid #55ce5f;
            box-shadow: 0 0 2px 2px #55ce5f;
        }

.disabled {
    opacity: 0.5;
}