/*Hidden class for adding and removing*/
.lds-dual-ring.hidden {
    display: none;
}

/*Add an overlay to the entire page blocking any further presses to buttons or other elements.*/
#alertForm.overlay, #loader.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.8);
    z-index: 9999999;
    opacity: 1;
    transition: all 0.5s;
}

/*Spinner Styles*/
.lds-dual-ring {
    display: inline-block;
    color: white;
    font-size: 20px;
}
.lds-dual-ring:before {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 5% auto;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.phone {
    display: inline-block !important;
}
input[name="phone"] {
    padding-left: 91px!important;
}

.successValidate {
    /*background: #b9f8b9 !important;*/
    /*color: #000!important;*/
    border: 3px solid greenyellow !important;
    /*border-color: greenyellow !important;*/
    /*color: #000!important;*/
}
.failedValidate {
    /*background: #eb8e8e !important;*/
    /*color: #000!important;*/
    border: 3px solid red !important;
    /*border-color: red !important;*/
    /*color: #000!important;*/
}

.iti__country-name, .iti__dial-code{
    color: black;
}

.iti {
    width: 100%;
    height: 100%;
}
.video-wrapper, video{
    width: 100%!important;
    height: 100%!important;
}

.video-js:hover .vjs-control-bar{
    visibility: visible !important;
    opacity: 1 !important;
    transition: visibility .1s,opacity .1s !important;
}

.shake {
    display: inline-block;
    animation: shake 1s cubic-bezier(0, .50, 1, .50) 0s infinite;
}
@keyframes shake {
    0% {
        transform: rotate3d(0, 0, 1, 0deg) scale(1);
    }
    20% {
        transform: scale(1.1);
    }
    30% {
        transform: rotate3d(0, 0, 1, -25deg) scale(1.1);
    }
    40% {
        transform: rotate3d(0, 0, 1, 25deg) scale(1.1);
    }
    50% {
        transform: rotate3d(0, 0, 1, 0deg) scale(1.1);
    }
    60% {
        transform: rotate3d(0, 0, 1, -25deg) scale(1.1);
    }
    80% {
        transform: rotate3d(0, 0, 1, 25deg) scale(1.1);
    }
    90% {
        transform: rotate3d(0, 0, 1, 0deg) scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.alertFormWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.alertForm{
    /*width: 400px;*/
    /*height: 300px;*/
    background: url("https://bitcoin-adw.com/public/materials/sandclock.jpg");
    background-repeat: round;
    padding: 50px 30px;
}

.alertForm form{
    background-image: none !important;
}
.alertForm button{
    position: relative !important;
}
.alertForm .heading-wrapper {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 4px;
}
.alertForm .heading-wrapper .first-paragraph {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
}
.alertForm .heading-text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 54px;
    color: #ffb400;
    padding-top: 30px;
}

.alertForm .heading-wrapper .second-paragraph {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
}
.alertForm .no-thanks-paragraph {
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #fff;
    padding-left: 120px;
    cursor: pointer;
}

.alertForm #alertForm {
    background-color: rgba(255, 255, 255, 0.3);
    max-width: 320px;
    border-radius: 4px;
    margin-top: 15px;
    padding: 17px;
}

.alertForm button{
    max-width: 285px;
    height: 52px;
    color: #000000;
    background-color: #ffb400;
    font-family: "Ubuntu", sans-serif;
    font-size: 24px;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid #b27e00;
    border-bottom-width: 4px;
    margin-left: auto;
    margin-right: auto;
}
.alertForm .input-wrapper:last-child{
    display: flex;
    justify-content: center;
}



body{
    -webkit-perspective: none!important;
    perspective: none!important;
}
#messageContainer{
    position: fixed;
    /*width: 100vw;*/
    /*height: 100vh;*/
    /*top: 90vh;*/
    bottom: 0;
    left: 0;
    width: 400px;
    z-index: 100000;
}

.messageADW{
    background: #09091a;
    color: #f4f4f4;
    box-shadow: 0 0 0 1px rgba(0 0 0 .2), 0 20px 90px 0 rgba(0 0 0 .4);
    border-radius: 2px;
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*align-items: center;*/
    white-space: pre;
    margin: 10px;
    font-size: 14px;
    cursor: pointer;
    font-family: San Francisco,-apple-system,BlinkMacSystemFont,\.SFNSText-Regular,sans-serif;
}

.messageText{
    width: 100%;
    margin: 0 5px;
    overflow: hidden;
    white-space: pre-wrap;
}

@media (max-width: 780px) {
    #messageContainer{
        max-width: 100vw;
        /*bottom: auto;*/
        /*top: 0;*/
    }
    .messageADW{
        height: auto!important;
    }
}
