/***** modal *****/
.modal-content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #0e76a8;
    color: white;
    padding: 2px 6px;
    cursor: pointer;
}

#modal-btn:focus, #modal-btn-ct:focus {
    outline: none;
    cursor: pointer;
}

.modal-box-ln {
    color: white;
    position: absolute;
    top: 50px;
    width: 1px;
    background-color: #808080ec;
    box-shadow: 0px 0px 15px #00000026;
    z-index: 9999;
    opacity: 0;
    overflow: hidden;
    transition: all .75s ease;
    /*    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 0.1s;
    animation: slide 0.5s forwards;
    animation-delay: 0.1s;*/
}

.modal-box-ln.show {
    width: 200px;
    opacity: 1;
}
    /*@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}

@keyframes slide {
    100% {
        left: 0;
    }
}
*/
    .modal-box-ct {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: #31a0d5;
        box-shadow: 0px 0px 15px #00000026;
        display: none;
        z-index: 9999;
    }

.modal-content h3 {
    text-align: center;
    color: white;
    font-size: 1.4em;
}


#loader {
    position: absolute;
    left: 50%;
    top: 50vh;
    width: 76px;
    height: 76px;
    margin: -38px 0 0 -38px;
    border-top: 8px solid #31a0d5cc;
    border-right: 8px solid #800080cc;
    border-bottom: 8px solid #1bf023cc;
    border-left: 8px solid #f2ea36cc;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 9999;
}


.page_hold{

}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

.rbutton{
    font-size: 1.4em;
    color: white;
}

/*sms code*/

.otc {
    position: relative;
    margin: 0 auto;
    font-size: 1.5em;
}

    .otc fieldset {
        border: 0;
        padding: 0;
        margin: 0;
    }

    .otc div {
        display: flex;
        align-items: center;
    }


input[type="number"] {
    width: 1.5em;
    line-height: 1;
    margin: .1em;
    padding: 8px 0 4px;
    font-size: 1.5em;
    text-align: center;
    appearance: textfield;
    -webkit-appearance: textfield;
    border: 2px solid #BBBBFF;
    color: purple;
    border-radius: 4px;
}

/********select*******/
*,
*::before,
*::after {
    box-sizing: border-box;
}

.select select {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
    background-color: #31a0d5;
    color: white;
    font-weight: 400;
    position: relative;
    z-index: 1;
}


    .select select::-ms-expand {
        display: none;
    }

:root {
    --select-border: #777;
    --select-focus: white;
    --select-arrow: var(--select-border);
}
.select {
    width: 100%;
    min-width: 12ch;
    max-width: 18ch;
    /*border: 1px solid var(--select-border);*/
    border-radius: 0.25em;
    padding: 0.05em 0.5em;
    font-size: 1.1em;
    cursor: pointer;
    line-height: 1.1;
    background-color: #31a0d5;
    color: white;
    font-weight: 400;
    display: grid;
    grid-template-areas: "select";
    align-items: center;
}

    .select::after {
        content: "";
        width: 0.8em;
        height: 0.5em;
        background-color: white;
        clip-path: polygon(100% 0%, 0 0%, 50% 100%);
        justify-self: end;
        pointer-events: none;
    }

    select,
    .select:after {
        grid-area: select;
    }
    select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}