#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fff;
    z-index: 99999999999 !important
}

[data-loader="circle-side"] {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-animation: circle infinite .95s linear;
    -moz-animation: circle infinite .95s linear;
    -o-animation: circle infinite .95s linear;
    animation: circle infinite .95s linear;
    border: 2px solid #180f5e;
    border-top-color: rgba(0,0,0,0.2);
    border-right-color: rgba(0,0,0,0.2);
    border-bottom-color: rgba(0,0,0,0.2);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%
}

#loader_form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fafafa;
    background-color: rgba(255,255,255,0.6);
    z-index: 99999999999 !important;
    display: none
}

[data-loader="circle-side-2"] {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-animation: circle infinite .95s linear;
    -moz-animation: circle infinite .95s linear;
    -o-animation: circle infinite .95s linear;
    animation: circle infinite .95s linear;
    border: 2px solid #f7274a;
    border-top-color: rgba(0,0,0,0.2);
    border-right-color: rgba(0,0,0,0.2);
    border-bottom-color: rgba(0,0,0,0.2);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

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

@-moz-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

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

@-o-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

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

@keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

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

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    background: #fff;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
    font-family: "Inter",Arial,sans-serif;
    color: #444
}

h1, h2, h3, h4, h5, h6 {
    color: #333
}

p {
    margin-bottom: 30px
}

strong {
    font-weight: 600
}

hr {
    margin: 30px 0 30px 0;
    border-color: #d9e1e6
}

i {
    font-style: normal
}

.question_title {
    text-align: center;
    margin-bottom: 30px
}

    .question_title h3 {
        font-size: 36px;
        font-size: 2.25rem;
        color: #333
    }

@media (max-width: 767px) {
    .question_title h3 {
        font-size: 32px;
        font-size: 2rem
    }
}

.question_title p {
    font-size: 16px;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0
}

a.animated_link {
    position: relative;
    text-decoration: none
}

    a.animated_link:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -5px;
        opacity: 1;
        left: 0;
        background-color: #f7274a;
        visibility: hidden;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease
    }

    a.animated_link:hover:before {
        visibility: visible;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    a.animated_link.active {
        position: relative;
        text-decoration: none
    }

        a.animated_link.active:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            opacity: 1;
            left: 0;
            background-color: #f7274a;
            visibility: visible;
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }

a {
    color: #f7274a;
    text-decoration: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none
}

    a:hover, a:focus {
        color: #111;
        text-decoration: none;
        outline: none
    }

    a.btn_1, .btn_1 {
        border: none;
        color: #fff;
        background: #f7274a;
        outline: none;
        cursor: pointer;
        display: inline-block;
        text-decoration: none;
        padding: 15px 30px;
        -webkit-box-shadow: 0px 10px 40px -10px rgba(255,0,131,0.5);
        -moz-box-shadow: 0px 10px 40px -10px rgba(255,0,131,0.5);
        box-shadow: 0px 10px 40px -10px rgba(255,0,131,0.5);
        font-weight: 600;
        text-align: center;
        line-height: 1;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px
    }

        a.btn_1:hover, .btn_1:hover {
            -webkit-filter: brightness(115%);
            filter: brightness(115%)
        }

    a.btn_nav {
        color: #111;
        font-size: 24px;
        font-size: 1.5rem
    }

        a.btn_nav:hover {
            color: #f7274a
        }

    a.btn_help {
        background-color: #ddd;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        border-radius: 25px;
        font-weight: 500
    }

        a.btn_help:hover {
            background-color: #f7274a;
            color: #fff
        }

        a.btn_help:focus {
            box-shadow: none
        }

.btn-close:focus {
    box-shadow: none;
    outline: none
}

header {
    position: relative;
    padding: 20px 10px;
    background-color: #fff;
    border-bottom: 1px solid #d9e1e6
}

@media (max-width: 767px) {
    header {
        padding: 15px 0
    }
}

#social {
    float: right
}

    #social ul {
        margin: 0;
        padding: 0 0 0 0;
        text-align: center;
        font-size: 21px;
        font-size: 1.3125rem
    }

        #social ul li {
            display: inline-block;
            margin: 0 0 0 10px
        }

            #social ul li:first-child {
                margin: 0
            }

            #social ul li a {
                color: #555;
                text-align: center;
                display: block;
                padding: 0;
                -webkit-transition: all 0.2s ease;
                transition: all 0.2s ease
            }

                #social ul li a:hover {
                    color: #f7274a
                }

#offcanvasNav ul {
    margin: 0;
    padding: 0 0 0 0;
    list-style: none;
    font-size: 16px;
    font-size: 1rem
}

    #offcanvasNav ul li {
        margin-bottom: 20px;
        font-weight: 500
    }

        #offcanvasNav ul li a {
            color: #444
        }

.offcanvas-start#offcanvasNav {
    width: 300px;
    border-right: none
}

footer {
    background-color: #fff;
    border-top: 1px solid #d9e1e6;
    padding: 20px 10px
}

@media (max-width: 767px) {
    footer {
        text-align: center
    }
}

footer a {
    color: #444
}

footer p {
    margin-bottom: 0;
    font-size: 14px;
    font-size: 0.875rem
}

@media (max-width: 767px) {
    footer p {
        margin-bottom: 15px
    }
}

.step {
    animation: slideInUp;
    animation-duration: 0.3s;
    animation-timing-function: ease
}

input#website {
    display: none
}

#wizard_container {
    position: relative;
    max-width: 800px;
    margin: auto
}

button.backward, button.forward, button.submit {
    border: none;
    min-width: 140px
}

button.submit {
    background: #6c3;
    -webkit-box-shadow: 0px 10px 40px -10px rgba(102,204,51,0.5);
    -moz-box-shadow: 0px 10px 40px -10px rgba(102,204,51,0.5);
    box-shadow: 0px 10px 40px -10px rgba(102,204,51,0.5)
}

button.backward {
    background-color: #ddd;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #555
}

    button.backward:hover {
        background-color: #ccc
    }

button[disabled] {
    display: none
}

#top-wizard {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%
}

#middle-wizard {
    padding: 30px 0
}

#bottom-wizard {
    padding: 5px 0 30px 0;
    text-align: center
}

.ui-widget-content a {
    color: #222222
}

.ui-widget-header {
    background: #6C3
}

    .ui-widget-header a {
        color: #222222
    }

.ui-progressbar {
    height: 3px;
    width: 100%;
    position: relative;
    top: -1px;
    z-index: 2
}

    .ui-progressbar .ui-progressbar-value {
        height: 100%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease
    }

.pac-container {
    margin-top: 5px;
    border-top: none !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    border-radius: 4px !important;
    font-family: "Inter",Arial,sans-serif;
    color: #444;
    -webkit-box-shadow: 0 12px 35px 2px rgba(0,0,0,0.12);
    -moz-box-shadow: 0 12px 35px 2px rgba(0,0,0,0.12);
    box-shadow: 0 12px 35px 2px rgba(0,0,0,0.12)
}

.pac-item-query {
    color: #444
}

.main_title {
    text-align: center
}

    .main_title h2 {
        margin: 0 0 10px 0;
        padding: 0;
        font-size: 42px;
        font-size: 2.625rem
    }

@media (max-width: 767px) {
    .main_title h2 {
        font-size: 32px;
        font-size: 2rem
    }
}

.main_title p {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 10%;
    margin-bottom: 45px;
    color: #777
}

@media (max-width: 767px) {
    .main_title p {
        font-size: 16px;
        font-size: 1rem
    }
}

.parallax_window_in {
    height: 420px;
    position: relative;
    display: table;
    width: 100%
}

#sub_content_in {
    display: table-cell;
    padding: 45px 15% 0 15%;
    vertical-align: middle;
    text-align: center;
    background: rgba(0,0,0,0.5)
}

@media (max-width: 767px) {
    #sub_content_in {
        padding: 45px 30px 0 30px
    }
}

#sub_content_in h1 {
    color: #fff;
    font-weight: 600;
    font-size: 52px;
    font-size: 3.25rem;
    margin-bottom: 0
}

@media (max-width: 767px) {
    #sub_content_in h1 {
        font-size: 36px;
        font-size: 2.25rem
    }
}

#sub_content_in p {
    color: #fff;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300
}

@media (max-width: 767px) {
    #sub_content_in p {
        font-size: 21px;
        font-size: 1.3125rem
    }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #f7274a !important
}

.team-item-img {
    position: relative
}

    .team-item-img .team-item-detail {
        background: none repeat scroll 0 0 rgba(0,0,0,0.8);
        text-align: center;
        color: #fff;
        display: -webkit-flex;
        display: flex;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s
    }

.team-item:hover .team-item-detail {
    opacity: 1;
    visibility: visible
}

.team-item-img .team-item-detail .team-item-detail-inner {
    margin: auto;
    padding: 25px
}

.team-item-detail-inner .social {
    margin: 0 0px 25px 0px;
    padding: 0px
}

    .team-item-detail-inner .social li {
        list-style: none;
        display: inline-block;
        margin: 0px 8px;
        font-size: 24px;
        font-size: 1.5rem
    }

        .team-item-detail-inner .social li a {
            color: #fff
        }

            .team-item-detail-inner .social li a:hover {
                color: #d62544
            }

.team-item-info {
    padding-top: 15px;
    text-align: center
}

    .team-item-info h4 {
        margin-bottom: 0px
    }

iframe#map_iframe {
    width: 100%;
    height: 450px;
    border: 0;
    margin: 0
}

@media (max-width: 991px) {
    iframe#map_iframe {
        height: 400px
    }
}

.box_style_2 {
    background-color: #f8f8f8;
    padding: 25px 30px 30px 30px;
    position: relative;
    margin-bottom: 25px
}

    .box_style_2 .form-control {
        background-color: #fff !important
    }

ul.contacts_info {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0
}

    ul.contacts_info li {
        margin-bottom: 15px
    }

        ul.contacts_info li:last-child {
            margin-bottom: 0
        }

.bg_color_gray {
    background-color: #f8f8f8
}

.modal-content {
    border: 1px solid transparent
}

.list_block p {
    margin-bottom: 20px;
    font-weight: 500
}

.list_block ul {
    padding: 0;
    margin: 0 0 20px 0
}

    .list_block ul li {
        display: block;
        margin: 0 0 5px 0
    }

        .list_block ul li.last-child {
            margin-right: 0
        }

.daterangepicker td.in-range {
    background-color: #ffd9e5 !important
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #f7274a !important
}

.daterangepicker.single .left .calendar-table {
    border: 1px solid #d9e1e6 !important;
    border-radius: 4px !important
}

.today.active.start-date.active.end-date.in-range.available {
    background-color: #eee !important;
    color: #444
}

    .today.active.start-date.active.end-date.in-range.available:hover {
        background-color: #f7274a !important;
        color: #fff
    }

.checkbox_radio_container {
    margin-bottom: 10px;
    position: relative
}

    .checkbox_radio_container input[type="checkbox"] {
        display: none
    }

    .checkbox_radio_container input[type="radio"] {
        display: none
    }

    .checkbox_radio_container label {
        cursor: pointer
    }

    .checkbox_radio_container .radio, .checkbox_radio_container .checkbox {
        display: inline-block;
        width: 25px;
        height: 25px;
        padding: 5px;
        background: #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        position: absolute;
        z-index: 9;
        left: 8px;
        top: 7px
    }

        .checkbox_radio_container .radio:after, .checkbox_radio_container .checkbox:after {
            content: "";
            position: absolute;
            width: 0px;
            height: 3px;
            background: #d62544;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            border-radius: 5px;
            transform: translate(4px, 11px) rotate(-45deg);
            transform-origin: left;
            transition: all 150ms;
            transition-delay: 0ms
        }

        .checkbox_radio_container .radio:before, .checkbox_radio_container .checkbox:before {
            content: "";
            position: absolute;
            width: 0px;
            height: 3px;
            background: #d62544;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            border-radius: 5px;
            transform: translate(1px, 6px) rotate(45deg);
            transform-origin: left;
            transition: all 150ms;
            transition-delay: 150ms
        }

    .checkbox_radio_container .checkbox {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px
    }

    .checkbox_radio_container .wrapper {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        background-color: #c2c2c2;
        background-color: rgba(204,204,204,0.2);
        position: relative;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        padding: 10px 10px 10px 44px;
        font-weight: 500;
        cursor: pointer
    }

    .checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:before, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:before, .checkbox_radio_container input[type="radio"]:checked ~ .radio:before {
        width: 7px;
        transition-delay: 0ms
    }

    .checkbox_radio_container input[type="checkbox"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="checkbox"]:checked ~ .radio:after, .checkbox_radio_container input[type="radio"]:checked ~ .checkbox:after, .checkbox_radio_container input[type="radio"]:checked ~ .radio:after {
        width: 13px;
        transition-delay: 150ms
    }

    .checkbox_radio_container input[type="checkbox"]:checked ~ .wrapper, .checkbox_radio_container input[type="radio"]:checked ~ .wrapper {
        transition: all 450ms;
        background-color: #f7274a;
        color: #fff
    }

.container_check {
    display: block;
    position: relative;
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: 30px;
    line-height: 1.3;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .container_check input {
        position: absolute;
        opacity: 0;
        cursor: pointer
    }

        .container_check input:checked ~ .checkmark {
            background-color: #f7274a;
            border: 1px solid transparent
        }

    .container_check .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        border: 1px solid #d9e1e6;
        background-color: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out
    }

        .container_check .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 7px;
            top: 3px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg)
        }

    .container_check input:checked ~ .checkmark:after {
        display: block
    }

.review_block_smiles ul {
    padding: 0;
    margin: 0 -3px;
    list-style-type: none;
    display: flex;
    justify-content: center
}

    .review_block_smiles ul li {
        display: list-item;
        margin: 0 3px;
        width: 100%
    }

.container_smile {
    margin-bottom: 5px;
    position: relative
}

    .container_smile input[type="radio"] {
        display: none
    }

    .container_smile label {
        cursor: pointer
    }

    .container_smile .radio {
        position: relative;
        background-color: #fff;
        background-color: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        border: 1px solid #d9e1e6;
        padding: 15px;
        display: block;
        text-align: center
    }

@media (max-width: 575px) {
    .container_smile .radio {
        padding: 10px
    }
}

.container_smile .radio:after {
    font-family: 'smiles';
    font-size: 42px;
    font-size: 2.625rem
}

@media (max-width: 1199px) {
    .container_smile .radio:after {
        font-size: 36px;
        font-size: 2.25rem
    }
}

@media (max-width: 575px) {
    .container_smile .radio:after {
        font-size: 30px;
        font-size: 1.875rem
    }
}

.container_smile .radio span {
    display: none
}

.container_smile .radio.smile_1:after {
    content: '\0041'
}

.container_smile .radio.smile_2:after {
    content: '\0042'
}

.container_smile .radio.smile_3:after {
    content: '\0043'
}

.container_smile .radio.smile_4:after {
    content: '\0044'
}

.container_smile .radio.smile_5:after {
    content: '\0045'
}

.container_smile .radio {
    transition: all 450ms
}

    .container_smile .radio.smile_1:hover {
        background-color: #ff0033;
        color: #fff
    }

    .container_smile .radio.smile_2:hover {
        background-color: #ff5f7f;
        color: #fff
    }

    .container_smile .radio.smile_3:hover {
        background-color: #94b49b;
        color: #fff
    }

    .container_smile .radio.smile_4:hover {
        background-color: #68cd7f;
        color: #fff
    }

    .container_smile .radio.smile_5:hover {
        background-color: #4ccd6a;
        color: #fff
    }

.container_smile input[type="radio"]:checked ~ .radio {
    transition: all 450ms;
    color: #fff
}

    .container_smile input[type="radio"]:checked ~ .radio:after {
        -moz-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        -webkit-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
        transition: all 0.6s ease;
        display: block;
        transform: rotateY(360deg)
    }

    .container_smile input[type="radio"]:checked ~ .radio.smile_1 {
        background-color: #ff0033
    }

    .container_smile input[type="radio"]:checked ~ .radio.smile_2 {
        background-color: #ff5f7f
    }

    .container_smile input[type="radio"]:checked ~ .radio.smile_3 {
        background-color: #94b49b
    }

    .container_smile input[type="radio"]:checked ~ .radio.smile_4 {
        background-color: #68cd7f
    }

    .container_smile input[type="radio"]:checked ~ .radio.smile_5 {
        background-color: #4ccd6a
    }

input.form-control, .form-select, textarea.form-control {
    background-color: #fff;
    border: 1px solid #d9e1e6;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #999;
    font-weight: 400;
    font-size: 15px;
    font-size: 0.9375rem;
    font-family: "Inter",Arial,sans-serif
}

    input.form-control:focus, .form-select:focus, textarea.form-control:focus {
        border-color: rgba(247,39,74,0.2);
        outline: 0;
        box-shadow: 0 0 0 0.3rem rgba(247,39,74,0.05);
        color: #444;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out
    }

textarea.form-control {
    height: 120px !important
}

.form-floating > label {
    color: #777;
    font-size: 15px;
    font-size: 0.9375rem
}

span.error {
    font-size: 12px;
    position: absolute;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    top: -20px;
    left: 15px;
    z-index: 10;
    height: 25px;
    line-height: 1;
    background-color: #222;
    color: #fff;
    font-weight: normal;
    display: inline-block;
    padding: 6px 8px
}

    span.error:after {
        content: '';
        position: absolute;
        border-style: solid;
        border-width: 0 6px 6px 0;
        border-color: transparent #222;
        display: block;
        width: 0;
        z-index: 1;
        bottom: -6px;
        left: 20%
    }

.terms span.error {
    top: -30px
}

.qty-buttons {
    position: relative;
    width: 100%;
    display: inline-block
}

    .qty-buttons .form-control {
        height: calc(3.5rem + 2px);
        padding: 1rem .75rem
    }

input.qty {
    width: 100%
}

input.qtyminus, input.qtyplus {
    position: absolute;
    width: 35px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-indent: -9999px;
    top: 10px
}

input.qtyplus {
    background: url(../img/plus.svg) no-repeat center center;
    right: 35px
}

input.qtyminus {
    background: url(../img/minus.svg) no-repeat center center;
    right: 5px
}

.add_bottom_10 {
    margin-bottom: 10px
}

.add_bottom_15 {
    margin-bottom: 15px
}

.add_bottom_30 {
    margin-bottom: 30px
}

.add_bottom_45 {
    margin-bottom: 45px
}

.add_bottom_60 {
    margin-bottom: 60px
}

.add_bottom_75 {
    margin-bottom: 75px
}

.add_top_10 {
    margin-top: 10px
}

.add_top_15 {
    margin-top: 15px
}

.add_top_20 {
    margin-top: 20px
}

.add_top_30 {
    margin-top: 30px
}

.add_top_60 {
    margin-top: 60px
}

.margin_30 {
    padding-top: 30px;
    padding-bottom: 30px
}

.margin_60 {
    padding-top: 60px;
    padding-bottom: 60px
}

.margin_60_35 {
    padding-top: 60px;
    padding-bottom: 35px
}

.custom-modal {
    background: #fff;
    padding: 45px;
    padding-top: 0;
    text-align: left;
    max-width: 450px;
    margin: 40px auto;
    position: relative;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px
}

    .custom-modal .mfp-close {
        color: #999;
        top: 12px;
        right: 10px;
        width: 32px;
        height: 32px;
        line-height: 32px
    }

        .custom-modal .mfp-close:hover {
            color: #222
        }

        .custom-modal .mfp-close:before {
            font-size: 26px;
            font-family: bootstrap-icons;
            content: "\f62a"
        }

.small-dialog-header {
    text-align: center;
    padding: 45px 0 0 0
}

    .small-dialog-header h3 {
        font-size: 21px;
        font-size: 1.3125rem;
        font-weight: 500
    }

.modal-wrapper {
    position: relative;
    height: 100%
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8)
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1)
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0
}

.mfp-bottom-bar {
    padding: 0 10px !important
}

.mfp-counter {
    right: 10px !important;
    color: #fff !important
}

.mfp-bg {
    opacity: 0.8 !important
}

#message-help {
    margin-bottom: 5px;
    min-height: 20px
}

    #message-help .error_message {
        font-size: 13px;
        font-size: 0.8125rem;
        font-weight: 500;
        color: #f7274a
    }

.submit {
    position: relative
}

    .submit .loader {
        font-size: 18px;
        font-size: 1.125rem;
        position: absolute;
        top: 10px;
        margin-left: 10px
    }

#success {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 150px;
    margin-top: -120px;
    margin-left: -195px;
    text-align: center;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding: 45px;
    border: 1px solid #d9e1e6;
    box-sizing: content-box
}

    #success h4 {
        font-size: 18px;
        margin-top: 15px
    }

        #success h4 span {
            display: block;
            font-size: 22px;
            margin-bottom: 10px
        }

@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

.inlinesvg .svg svg {
    display: inline
}

.icon--order-success svg path {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards
}

.colors {
    list-style: none;
    margin: 0 !important;
    overflow: hidden
}

    .colors li {
        float: left;
        margin: 4px !important
    }

        .colors li a {
            display: block;
            width: 17px;
            height: 17px;
            cursor: pointer;
            margin: 0 !important
        }

.default {
    background: #f7274a
}

.aqua {
    background: #1cbbb4
}

.green_switcher {
    background: #82ca9c
}

.orange {
    background: #f7941d
}

.blue {
    background: #004dda
}

.beige {
    background: #bea882
}

.gray {
    background: #555555
}

.green-2 {
    background: #18a84c
}

.navy {
    background: #4a5d7d
}

.peach {
    background: #faaa5d
}

.purple {
    background: #6449e7
}

.red {
    background: #f0151f
}

.violet {
    background: #990099
}

.colors li a.active {
    box-shadow: 0 0 0 2px #fff inset
}

.colors li a {
    border-radius: 3px
}
