.video-js {
    width: 300px;
    height: 150px;
}

.vjs-fluid {
    padding-top: 56.25%
}

.leadform {
    position: relative;
}

.__loaderWrapper {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #323232b6;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-5 {
    animation: rotate 2s infinite;
    height: 50px;
    width: 50px;
}

.loader-5:before,
.loader-5:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.loader-5:before {
    animation: ball1 2s infinite;
    background-color: rgb(255 255 255 / 16%);
    box-shadow: 30px 0 0 #8f44fd;
    margin-bottom: 10px;
}

.loader-5:after {
    animation: ball2 2s infinite;
    background-color: #8f44fd;
    box-shadow: 30px 0 0 rgb(255 255 255 / 16%);
}

.iti {
    width: 100%;
}

label.error {
    position: absolute;
    top: calc(90% - 12px);
    left: 0;
    background: crimson;
    text-align: center;
    color: white;
    width: 100%;
    z-index: 1;
    font-size: 12px;
}

.phone-alert {
    position: absolute;
    top: calc(90% - 12px);
    left: 0;
    background: crimson;
    text-align: center;
    color: white;
    width: 100%;
    z-index: 1;
    font-size: 12px;
}

.phone-alert p {
    margin-bottom: 0px !important;
    line-height: normal;
    font-size: 12px !important;
}

label[for="phone"] {
    top: 85%;
}

.wpforms-field {
    position: relative;
}

.inputWrapper {
    position: relative;
    width: 100%;
}

.form-wrapper.leadform {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-wrapper.leadform .form-group {
    margin-bottom: unset;
}

.iti-cutsom .iti__selected-flag {
    border-radius: 50px 0 0 50px;
    padding: 0 10px 0 20px;
}

.iti-cutsom .iti__selected-dial-code {
    font-size: 12px;
}

.leadform .inputWrapper .form-control {
    padding: 0 20px;
}

.quiz-next,
.quiz .question__wrapper {
  font-family: Inder,sans-serif;
}

.leadform .error-msg {
    display: none;
    background: crimson;
    padding: 2px 20px;
    text-align: center;
    color: white !important;
    font-size: 12px;
}

.question .input-container-checkbox input:checked ~ .checkmark-checkbox::after {
    display: block;
}

.question .checkmark-checkbox::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none; /* будет показан только при :checked */
}

.leadform .error-msg.active {
    display: block;
    border: unset;
}

.form_message.error.inactive,
.form_message.success.inactive {
    display: none;
}

.form_message.error.active,
.form_message.success.active {
    display: block !important;
}

.form_message {
    width: 100%;
    min-height: 50px;
    align-content: center;
    box-sizing: border-box;
    border-radius: 50px;
    padding: 10px 15px !important;
    font-size: 12px !important;
}

.form_message.error {
    background-color: #ff7f7f;
    border: 2px dashed #ce0909;
    color: #fff;
}

.form_message.success {
    background-color: #d4ffe0;
    border: 2px dashed #1f6b34;
    color: #000;
}

input[name="fname"],
input[name="lname"],
input[name="email"],
input[name="phone"] {
    transition: all 0.2s ease;
}

input.error {
    margin-bottom: 12 px;
}

.cntainer,
.main_wrapper {
  max-width: 800px;
}

.footer {
    margin-top: 175px;
}

@media (max-width: 500px) {
    .main_img {
        max-width: 100% !important;
    }
}

.main_img {
    max-width: 400px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(0.8);
    }

    50% {
        transform: rotate(360deg) scale(1.2);
    }

    100% {
        transform: rotate(720deg) scale(0.8);
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 #8f44fd;
    }

    50% {
        box-shadow: 0 0 0 #8f44fd;
        margin-bottom: 0;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #8f44fd;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 rgb(255 255 255 / 32%);
    }

    50% {
        box-shadow: 0 0 0 rgb(255 255 255 / 32%);
        margin-top: -20px;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 rgb(255 255 255 / 32%);
        margin-top: 0;
    }
}