* {
    box-sizing: border-box
}

.registration-form {
    max-width: 450px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
    background-color: #000
}

.inputs-form__btn,
.registration-form__title {
    font-weight: 600;
    font-size: 28px;
    background-color: #ff4d4d;
    color: #fff
}

.registration-form__title {
    text-align: center;
    padding: 10px !important;
    margin: 0
}

.registration-form__inner {
    padding: 10px
}

.registration-form__wrapper {
    margin: 0
}

.inputs-form {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 20px 20px 10px
}

.inputs-form__input input::placeholder {
    color: #fff !important;

}

.inputs-form__input,
.iti.iti--allow-dropdown {
    width: 100%
}

.inputs-form__input input {
    width: 100%;
    outline: 0;
    height: 40px !important;
    padding: 0 15px;
    transition: .3s !important;
    border: 2px solid #333 !important;
    border-radius: 5px !important;
    background-color: #1a1a1a !important;
    color: #fff !important;
}

.inputs-form__input input:focus {
    box-shadow: rgba(255, 77, 77, .24) 0 3px 8px !important;
    border-color: #ff4d4d !important;
}

.inputs-form__actions {
    padding: 0 20px !important;
}

.inputs-form__btn {
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: rgba(255, 77, 77, .2) 0 2px 8px 0;
    border: 2px solid #ff4d4d;
    text-transform: uppercase;
    transition: .5s;
    cursor: pointer;
    margin-bottom: 20px
}

.inputs-form__btn:hover {
    background-color: transparent;
    border-color: #ff4d4d;
    color: #fff
}

.inputs-form__btn:active {
    transform: scale(.95)
}

a {
    cursor: pointer
}

.leadform {
    position: relative
}

.form-preloader {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #000;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center
}

.error-msg {
    padding-bottom: 10px;
    color: #ff4d4d;
    font-size: 14px;
    text-align: right
}

.spinner {
    animation: 2s linear infinite rotate;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px
}

.spinner .path {
    stroke: #ff4d4d;
    stroke-linecap: round;
    animation: 1.5s ease-in-out infinite dash
}

.hidden,
.hide {
    display: none !important
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}

.iti__country-name {
    color: black !important
}

.iti__standard {
    padding: 3px !important;
    margin: 0 !important
}

.iti__search-input {
    color: #000 !important
}

.calc_num {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 700;
    color: #ffffff;
}