/*Hidden class for adding and removing*/
:root {
    --main-color: #ecf0f1;
    --point-color: #555;
    --size: 5px;
}

.alert-svg{
    display: inline !important;
}
.loader-main_text{
   font-size: 22px; font-weight: bold; color:#555
}
.loader-main {
    background-color: #ecf0f175;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 100000;
}
.loader {
  
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
   
}

.loader__element {
    border-radius: 100%;
    border: var(--size) solid var(--point-color);
    margin: calc(var(--size)*2);
}

.loader__element:nth-child(1) {
    animation: preloader .6s ease-in-out alternate infinite;
}

.loader__element:nth-child(2) {
    animation: preloader .6s ease-in-out alternate .2s infinite;
}

.loader__element:nth-child(3) {
    animation: preloader .6s ease-in-out alternate .4s infinite;
}

@keyframes preloader {
    100% {
        transform: scale(2);
    }
}

.phone {
    display: inline-block !important;
}

input[name="phone"] {
    padding-left: 91px !important;
}

.successValidate {
    border: 3px solid rgb(169, 243, 58) !important;
}


/* new style */
input:focus {
    outline: none;
}

/* new style */



.failedValidate {
    border: 3px solid red !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-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;
    bottom: 0;
    left: 0;
    width: 400px;
    z-index: 100000;

}



.messagebrigade {

    background: #F59E0B;
    color: #f4f4f4;
    font-weight: bolder;
    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;
    font-size: 18px;
    cursor: pointer;
    font-family: San Francisco, -apple-system, BlinkMacSystemFont, \.SFNSText-Regular, sans-serif;
}




.messageText {
    width: 100%;
    margin-left: 5px;
    margin-top: 2px;
    overflow: hidden;
    white-space: pre-wrap;
}

@media (max-width: 780px) {
    #messageContainer {
        max-width: 100vw;
        /*bottom: auto;*/
        /*top: 0;*/
    }

    .messagebrigade{
        height: auto !important;
    }
}