:root {
    --red-color: #ff402f;
    --brand-primary: #f67b9c;
    --brand-primary-rgb: 253, 180, 21;
    --brk-secondary-3-rgb: 186, 120, 0;
    --text-base-color-3: #f8f8f8;
}
[v-cloak]{
    display: none;
}
.fs-16 {
    font-size: 16px !important;
}
.incorect-stars {color: var(--red-color);}
.incorrect-field label {border: 1px solid var(--red-color) !important;}
label.incorrect-field {color: var(--red-color);}
.incorrect-field input {border: 1px solid var(--red-color) !important;}
input.incorrect-field {border: 1px solid var(--red-color) !important;}
.incorrect-field textarea {border: 1px solid var(--red-color) !important;}
textarea.incorrect-field {border: 1px solid var(--red-color) !important;}
.incorrect-field select {
    border: 1px solid var(--red-color) !important;
    color: #ff402f !important;
}
select.incorrect-field {
    border: 1px solid var(--red-color) !important;
    color: #ff402f !important;
}
.incorrect-field input::-webkit-input-placeholder,
input.incorrect-field::-webkit-input-placeholder,
.incorrect-field textarea::-webkit-input-placeholder,
textarea.incorrect-field::-webkit-input-placeholder {
    color: var(--red-color) !important;
}
.incorrect-field input:-moz-placeholder,
input.incorrect-field:-moz-placeholder,
.incorrect-field textarea:-moz-placeholder,
textarea.incorrect-field:-moz-placeholder {
    color: var(--red-color) !important;
}
.incorrect-field input::-moz-placeholder,
input.incorrect-field::-moz-placeholder,
.incorrect-field textarea::-moz-placeholder,
textarea.incorrect-field::-moz-placeholder {
    color: var(--red-color) !important;
}
.incorrect-field input:-ms-input-placeholder,
input.incorrect-field:-ms-input-placeholder,
.incorrect-field textarea:-ms-input-placeholder,
textarea.incorrect-field:-ms-input-placeholder {
    color: var(--red-color) !important;
}
.modal-content .brk-form-wrap input:focus {border: 1px solid var(--brand-primary);}
.modal-content .modal-footer {
    padding: 0 10px 25px;
    border-top: none;
}
.brk-tabs-simple-top .brk-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid var(--text-base-color-3);
    background-color: #f3f3f3;
}
.brk-tabs-simple-top .brk-tab {
    position: relative;
    height: 60px;
    line-height: 60px;
    padding: 0 32px;
    cursor: pointer;
    font-size: .9375rem;
    text-transform: uppercase;
    color: gray;
    margin: 0 0 -3px 0;
}
.brk-tabs-simple-top .brk-tab.active {
    background-color: var(--white);
    color: var(--brand-primary);
}
.brk-tabs-simple-top .brk-tabs-content {
    padding: 0 25px 35px 25px
}
.btn {
    display: inline-block;
    text-align: center;
    line-height: inherit;
    white-space: nowrap;
    max-width: 100%;
    text-overflow: ellipsis;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
    margin: 10px
}
.btn-lg.btn-inside-out > .before {
    padding-top: 15px
}
.btn-inside-out {
    overflow: hidden;
    border: 0;
    transition: background .4s ease .3s, \box-shadow .4s;
    will-change: background
}
.btn-inside-out > .after,
.btn-inside-out > .before {
    position: absolute !important;
    width: 100% !important;
    height: 50% !important;
    left: 0 !important;
    overflow: hidden !important;
    background: #f67b9c;
    color: #fff;
    transition: transform .3s;
    z-index: 0 !important;
}
.btn-inside-out > .before {
    top: 0;
    padding-top: 8px
}
.btn-inside-out > .after {
    bottom: 0;
    line-height: 0
}
.btn.btn-inside-out {
    color: #fff;
}
.btn-inside-out:hover {
    background: #122738;
    transition: background .4s;
    transition-delay: 0s;
    color: #fff;
}
.btn-inside-out:hover > .before {
    transform: translateY(-105%)
}
.btn-inside-out:hover > .after {
    transform: translateY(105%)
}
.btn-inside-out-green > .after,
.btn-inside-out-green > .before {
    background: #f67b9c;
}
.btn-inside-out-green:hover {
    background: #122738;
}
.btn-inside-out-google {
    background: #d34836;
}
.btn-inside-out-facebook {
    background: #3b5999;
}
.brk-form-strict [type=email]:not([disabled]),
.brk-form-strict [type=password]:not([disabled]),
.brk-form-strict [type=search]:not([disabled]),
.brk-form-strict [type=tel]:not([disabled]),
.brk-form-strict [type=text]:not([disabled]),
.brk-form-strict textarea:not([disabled]) {
    width: 100%;
    font-size: .875rem;
    background-color: #fff;
    border-radius: 4px;
}
.brk-form-strict [type=email],
.brk-form-strict [type=password],
.brk-form-strict [type=search],
.brk-form-strict [type=tel],
.brk-form-strict [type=text],
.brk-form-strict textarea {
    width: 100%;
    height: 45px;
    border-radius: 0;
    box-shadow: none;
    padding: 0 15px 0 21px;
    transition: all .4s ease-in-out;
    color: var(--brk-dark-base);
    background-color: #fff;
    border: 1px solid #eee;
}
.brk-form-strict textarea {
    height: 100%;
}
.brk-form-strict .v-select + .input-label,
.brk-form-strict [type=email] + .input-label,
.brk-form-strict [type=password] + .input-label,
.brk-form-strict [type=search] + .input-label,
.brk-form-strict [type=tel] + .input-label,
.brk-form-strict [type=text] + .input-label,
.brk-form-strict textarea + .input-label {
    position: absolute;
    top: 18px;
    left: 21px;
    display: block;
    font-size: .875rem;
    line-height: 14px;
    transition: all .4s ease-in-out;
    color: #a2a5ad;
    white-space: nowrap
}
.brk-form-strict .brk-form-date-wrap,
.brk-form-wrap {
    position: relative
}
.brk-form-strict .brk-form-checkbox {
    display: inline-block
}
.brk-form-strict .brk-form-checkbox input,
.brk-form-strict .brk-form-radio input {
    display: none
}
.brk-form-strict .brk-form-checkbox .checkbox-custom {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    vertical-align: middle;
    transition: all .2s ease-in-out;
    margin-top: 1px;
    cursor: pointer;
    border: 1px solid #e7e7e7;
    background-color: var(--white)
}
.brk-form-strict .brk-form-checkbox input:checked + .checkbox-custom {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary)
}
.brk-form-wrap {margin-top: 20px;}
.brk-form-checkbox-label:hover {cursor: pointer;}
.add-prod-check {width: 50%;}
.brk-form-strict .brk-form-checkbox-label {
    line-height: 26px;
    padding-left: 8px;
    cursor: pointer;
    vertical-align: top;
}
.brk-base-font-color {
    color: #f67b9c;
    text-decoration: none;
}
.brk-base-font-color:hover {
    text-decoration: underline;
}
.brk-tabs-content {
    border-bottom: 2px solid #f3f3f3;
}
ul .actives {
    background-color: white;
}
.modal-profile-menu li a {
    font-size: 15px;
}
.dropdown-menu-1,
.dropdown-menu-2,
.mega-menu-content {
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    top: 85px;
    min-width: 240px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: none;
    padding: 0;
    border-bottom: 2px solid #f67b9c;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.dropdown-menu-1 li,
.dropdown-menu-2 li,
.mega-menu-content li {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.dropdown-menu-1 li .link-page,
.dropdown-menu-2 li .link-page,
.mega-menu-content li .link-page {
    color: #63727b;
    font-weight: normal;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.dropdown-menu-1 li .link-page .text,
.dropdown-menu-2 li .link-page .text,
.mega-menu-content li .link-page .text {
    display: inline-block;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.dropdown-menu-1 li .link-page .icons-dropdown,
.dropdown-menu-2 li .link-page .icons-dropdown,
.mega-menu-content li .link-page .icons-dropdown {
    position: absolute;
    right: 20px;
    height: 40px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.dropdown-menu-1 li:last-child > .link-page,
.dropdown-menu-2 li:last-child > .link-page,
.mega-menu-content li:last-child > .link-page {
    border-bottom: none;
}
.dropdown-menu-1 li:hover,
.dropdown-menu-2 li:hover,
.mega-menu-content li:hover {
    background-color: #f5f5f5;
}
.dropdown-menu-1 li:hover > .link-page,
.dropdown-menu-2 li:hover > .link-page,
.mega-menu-content li:hover > .link-page {
    background-color: transparent;
}
.dropdown-menu-1 li:hover > .link-page > .icons-dropdown,
.dropdown-menu-2 li:hover > .link-page > .icons-dropdown,
.mega-menu-content li:hover > .link-page > .icons-dropdown {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.dropdown-menu-2 {
    top: 0;
    margin-top: -1px;
}
.dropdown-menu-2.right {left: 100%;}
.dropdown-menu-2.left {left: -100%;}
.navbar-nav > li.mega-menu {
    position: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-nav > li.mega-menu:hover {
    background: rgba(0, 0, 0, 0.1);
}
.navbar-nav > li.mega-menu a {
    font-weight: 500;
    font-size: 15px;
    color: #121521;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-left: 0;
    margin: 0 5px;
    position: relative;
    z-index: 1;
}
.navbar-nav > li.mega-menu a:hover {
    color: #f67b9c;
}
.navbar-nav > li.mega-menu a::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 2px;
    height: 54%;
    background-color: #f67b9c;
    z-index: -1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.navbar-nav > li.mega-menu a:hover::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.mega-menu-content {
    display: none;
    position: absolute;
    width: 100%;
    background-color: rgb(255, 255, 255);
    top: 100%;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 0px 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 12px;
}
.mega-menu-content > div > .row {
    position: relative;
}
.mega-menu-content .mega-menu-title {
    border: 0;
}
.mega-menu-content .mega-menu-title:hover {
    background-color: transparent;
}
.mega-menu-content .mega-menu-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: inherit;
}
.mega-menu-content .mega-menu-img {
    max-width: 37.1vw;
    position: absolute;
    top: 30px;
    right: 15px;
    bottom: 30px;
    object-fit: cover;
}
.mega-menu-content .mega-menu-img img {
    height: 100%;
    max-width: 100%;
}
.mega-menu-content .mega-menu-column {
    padding: 30px 0 30px 15px;
    list-style-type: none;
    position: relative;
    flex: 1 1 160px;
    display: flex;
    flex-wrap: wrap;
}
.mega-menu-content .mega-menu-column + .mega-menu-column {padding: 30px 15px 30px 0;}
.mega-menu-content .mega-menu-column > img {
    width: 100%;
    margin: 0;
}
.mega-menu-content .mega-menu-column > .mega-menu-title {position: static;}
.mega-menu-content .mega-menu-column > .mega-menu-title > .sf-with-ul {
    display: block;
    font-size: 14px;
    padding: 10px 10px 10px 15px;
    font-weight: 500;
    color: rgb(68, 68, 68);
    line-height: 1.3;
    width: 16vw;
    position: relative;
    padding-right: 25px;
}
.mega-menu-content .mega-menu-column > .mega-menu-title > .sf-with-ul i,
.mega-menu-content .mega-menu-column > .mega-menu-title > .sf-with-ul img {
    position: absolute;
    right: 10px;
    color: #000;
    opacity: .5;
    top: 14px;
    font-size: 10px;
    font-weight: 100;
}
.mega-menu-content .mega-menu-column > .mega-menu-title > .sf-with-ul img {
    top: 14px;
    width: 12px;
    margin: 0;
}
.mega-menu-content .mega-menu-column > .mega-menu-title > .sf-with-ul:hover,
.mega-menu-content .mega-menu-column > .mega-menu-title.active > .sf-with-ul {
    background-color: rgb(245, 245, 245);
}
.mega-menu-content .dropdown-menu {
    position: absolute;
    inset: 30px 0px 30px 21vw;
    width: 20vw;
    padding: 5px 15px;
    background-color: rgb(245, 245, 245);
    box-shadow: none;
    margin: 0;
    border: none !important;
}
.mega-menu-content .dropdown-menu ul {
    margin: 0;
    padding: 0;
}
.mega-menu-content .dropdown-menu ul li {padding-right: 0;}
.mega-menu-content .mega-menu-column > .mega-menu-title.active > .dropdown-menu {display: block !important;}
.mega-menu-content .dropdown-menu .link-page {
    display: block;
    color: #000;
    font-size: 14px;
    opacity: .5;
    padding: 5px 15px 5px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mega-menu-content .dropdown-menu .link-page:hover {opacity: 1;}
.modals {
    z-index: 1000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
}
.modals .modal_content {
    background-color: #fefefe !important;
    margin: 15% auto !important;
    padding: 20px !important;
    border: 1px solid #888 !important;
    width: 80% !important;
    z-index: 9999 !important;
    text-align: center !important;
}
.modal_inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 15px !important;
}
.modal_title {
    font-size: 25px !important;
    font-weight: bold !important;
}
#update-block-modal .modal-header .close,
#update-modal .modal-header .close {
    background: #fff;
}
#update-block-modal .modal-header .close span,
#update-modal .modal-header .close span{
    font-size: 30px;
    font-weight: 100;
}
.modals .modal_content .close_modal_window {
    color: #aaa !important;
    font-size: 40px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    float: right !important;
}
.Form {text-align: center !important;}
textarea:hover {
    border: 1px solid #aaa !important;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5) !important;
}
.input__wrapper {
    width: 100% !important;
    position: relative !important;
    margin: 10px 0 !important;
    text-align: center !important;
}
.input__file {
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
}
.input__file-button {
    width: 100% !important;
    height: 6% !important;
    background: #f67b9c !important;
    color: #fff !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    margin: 0 auto !important;
}
.input__file-icon-wrapper {
    height: 50px !important;
    width: 15% !important;
    margin-right: 15px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    border-right: 1px solid #fff !important;
}
.input__file-button-text {
    line-height: 1 !important;
    margin-top: 1px !important;
}
.add_ankets_select {
    width: 100% !important;
    height: 6% !important;
    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.09) !important;
    padding: 5px !important;
    border-radius: 10px !important;
    border: 1px solid #eee !important;
    transition: .3s border-color !important;
    text-align: center !important;
    margin-top: 5px !important;
    color: #888 !important;
}
.add_ankets_select:hover {
    border: 1px solid #aaa !important;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5) !important;
}
.bx_blx_sots {margin-top: 3% !important;}
.bx_blx_sots a {
    text-align: center !important;
    margin-left: 8% !important;
}
.bx_blx_sots #add_instagram {margin-left: -2% !important;}
.bx_blx_sots p {
    font-size: 20px !important;
    color: #888 !important;
    margin-bottom: 0% !important;
    margin-top: 0% !important;
}
.add_instagram, .add_facebook, .add_youtube, .add_telegram, .add_twitter, .add_linkedin {display: none !important;}
.datetime_input {
    width: 100% !important;
    height: 6% !important;
    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.09) !important;
    padding: 5px !important;
    border-radius: 10px !important;
    border: 1px solid #eee !important;
    transition: .3s border-color !important;
    margin-top: 2% !important;
    margin-bottom: 2% !important;
}
.datetime_input:hover {
    border: 1px solid #aaa !important;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5) !important;
}
.textarea {
    width: 100% !important;
    height: 15% !important;
    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.09) !important;
    padding: 5px !important;
    border-radius: 10px !important;
    border: 1px solid #eee !important;
    transition: .3s border-color !important;
}
.product-tariff-1 {background: silver !important;}
.product-tariff-2 {background: yellow !important;}
.product-tariff-3 {
    background: #f933ff !important;
    color: #fff
}
@media (min-width: 992px) {
    .products-list .inventory-img {
        max-width: 260px;
    }
    .products-list a.question-circle {
        left: 20px;
    }
    .products-list .slider_img {
        max-width: 80px;
        max-height: 80px;
    }
    .w-lg-30 {
        width: 300px;
        margin-left: 20px;
    }
    .dropdown:hover .dropdown-menu-1 {display: block}
    .dropdown:hover .dropdown-menu-1 li:hover > .dropdown-menu-2 {display: block}
    .mega-menu:hover .mega-menu-content {display: block}
    .d-table {
        background-color: rgba(0, 0, 0, .3);
        height: 100%;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        overflow-x: hidden;
        overflow: inherit;
    }
    .single-services div img {
        min-width: 160px !important;
        margin-top: -13% !important;
        margin-left: -9% !important;
    }
    #add_ankets {
        position: relative !important;
        top: -20% !important;
        width: 30% !important;
    }
}
@media (max-width: 1600px) {
    .mega-menu-content .mega-menu-column > .mega-menu-title > .sf-with-ul {width: 18vw;}
}
@media (max-width: 991px) {
    .modals_account .modal_content_two {
        width: 70% !important;
        top: 40px !important;
        left: 1% !important;
    }
    h3.h3_category {font-size: 16px !important;}
    .read-more {left: 30% !important;}
    .form-group {
        margin-right: 0% !important;
        padding-top: 1%;
    }
    .d-table {
        margin-top: -15%;
        background-color: rgba(0, 0, 0, .3);
        top: 0;
        height: 100% !important;
        left: 0;
    }
    section.banner-area {margin-bottom: -70px !important;}
    .page-title-area {
        padding-top: 75px !important;
        padding-bottom: 5px !important;
    }
    section.blog-area {
        padding-top: 0px !important;
        margin-top: -20px !important;
    }
    .user-profile {margin-top: 20px !important;}
    div.information .tab {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        background-color: #f67b9c;
        border-radius: 10px 10px 0px 0px;
        margin-top: 10px;
    }
    div.information .tab button.NaN:first-child, div.information .tab button.tablinks:first-child {margin-top: 20px;}
    div.information .tab button.NaN, div.information .tab button.tablinks {color: white !important;}
    #ElementComments .tab {
        border: none !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    .tab button.active {
        background-color: #122738 !important;
        color: white !important;
    }
    .header_img {width: 30px !important;}
    .banner-content {margin-top: 2% !important;}
    .kabinet_body_two div {margin-top: 20px !important;}
    #add_ankets {width: 90% !important;}
    .afisha_str_for_phone {margin-top: 0% !important;}
    .testimonials, .testimonials_old {margin-left: 7% !important;}
    .incoming_messages, .outcoming_messages {width: 90% !important}
    .message_str_for_phone {margin-left: 3% !important;}
    .message_type:first-child {border-right: 1px solid #f67b9c !important;}
    .single-services {
        padding: 0% !important;
        min-height: 255px !important;
        height: 255px !important;
    }
    .single-services h3 {
        padding-left: 5px !important;
        padding-right: 5px !important;
        padding-top: 5px !important;
    }
    .owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: -20px !important;
        margin-bottom: 10px !important;
    }
    .owl-theme .owl-nav.disabled button.owl-prev {
        margin-top: -20px !important;
        margin-left: -5px !important;
    }
    .owl-theme .owl-nav.disabled button.owl-next {
        margin-top: -20px !important;
        margin-right: -5px !important;
    }
    .section-subtitle {
        margin-bottom: 0px !important;
    }
}
.header_img {
    margin-left: 0%;
    margin-top: -5px !important;
}
.page-title-area {z-index: 0 !important;}
.banner-area {max-height: 300px !important;}
.heading-left-part .dropbtn {
    padding: 5px;
    cursor: pointer;
}
.heading-left-part .dropdown {
    position: relative;
    display: inline-block;
}
.heading-left-part .dropdown-content {
    display: none;
    position: absolute;
    width: 80px;
    z-index: 999999;
}
.heading-left-part .dropbtn {
    padding-left: 25px;
    width: 40px;
}
.heading-left-part .dropbtn::after {
    content: "";
    height: 16px;
    position: absolute;
    right: 0;
    top: 7px;
    width: 16px;
}
.heading-left-part .dropdown-content a:first-child {
    background: url('/assets/img/ru.png') no-repeat left center;
}
.heading-left-part .dropdown-content a:last-child {
    background: url('/assets/img/uk.png') no-repeat left center;
}
.heading-left-part .dropdown-content a {
    color: black;
    padding: 2px 0 2px 25px;
    text-decoration: none;
    display: block;
}
.heading-left-part .dropdown-content a:hover {
    border-radius: 5%;
    margin-left: 5px;
}
.heading-left-part .dropdown:hover .dropdown-content {display: block;}
.inventory-img, .inventory-img img {width: 100%;}
.h2_for_not_ankets {text-transform: lowercase;}
.form-group .select-box .nice-select .list {
    max-height: 350px !important;
    overflow-y: auto !important;
}
@media (min-width: 1250px) {
    .form-group .select-box .nice-select .list {width: 384px !important;}
}
.banner-content .row .col-md-5 h1 {color: white;}
.banner-content .row .col-ld-5 h1 {color: white;}
.text-center .default-btn {z-index: 0;}
.navbar-brand {
    padding-left: 0px !important;
    margin-left: -160px !important;
}
@media (max-width: 1650px) {
    .navbar-brand {
        padding-left: 0px !important;
        margin-left: 0px !important;
    }
    .navbar-nav .nav-item .nav-link {font-size: 14px !important;}
    .mega-menu .nav-link {font-size: 14px !important;}
}
@media (min-width: 1449px) {
    .navbar-nav .nav-item .nav-link {font-size: 14px !important;}
    .mega-menu .nav-link {font-size: 14px !important;}
    a.navbar-brand img {width: 85% !important;}
}
@media (max-width: 1448px) {
    .navbar-nav .nav-item .nav-link {font-size: 12px !important;}
    .mega-menu .nav-link {font-size: 12px !important;}
    .navbar-brand {margin-left: -280px !important;}
    .navbar-brand img {
        width: 30% !important;
        margin-left: 280px !important;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md .navbar-collapse {
        display: block !important;
        margin-left: 15px !important;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 0.4rem;
        padding-right: 0.2rem;
    }
}
.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a {margin: 0 10px !important;}
.navbar-nav .heading-left-part {
    width: 0px !important;
    margin-left: 40px !important;
}
@media (max-width: 768px) {
    .heading-left-part .dropdown {
        top: 28% !important;
        right: 50px !important;
    }
    div.owl-nav button.owl-prev, div.owl-nav button.owl-next {
        position: absolute !important;
        margin-top: 0px !important;
    }
    div.owl-nav button.owl-prev {left: 5px !important;}
    div.owl-nav button.owl-next {right: 5px !important;}
    .blog-area .container .section-title {margin-bottom: 45px !important;}
}
.user-fw-status li i.bx-phone {
    font-size: 26px;
    padding-right: 5px;
    color: black !important;
}
.user-fw-status li span {
    font-size: 14px !important;
    line-height: 37px !important;
    vertical-align: middle !important;
    color: black !important;
}
.user-specs {margin-top: 180px !important;}
.display_none {display: none !important;}
@media screen and (max-width: 991px) {
    .none_nothing {
        visibility: hidden;
        display: none;
    }
    .display_none {display: block !important;}
    .nav-item-hr {border-top: 2px solid #f67b9c !important;}
}
@media screen and (min-width: 1600px) {
    .heading-left-part .dropdown {top: 35% !important;}
    .heading-left-part .dropdown .dropbtn {margin-top: -1px !important;}
}
section.services-area {padding-top: 30px;}
section.services-area .container .section-title {margin-bottom: 20px !important;}
.archives-widget ul div:hover {background-color: #f35882 !important;}
.archives-widget ul div:hover li {background-color: #f67b9c !important;}
.archives-widget ul div:hover li a {color: black !important;}
@media (max-width: 999px) {
    .log-in-button.display_none {
        z-index: 1000;
        position: absolute;
        top: 16px;
        font-size: 12px;
        padding-left: 5px;
        padding-right: 5px;
        right: 70px;
        background-color: #122738;
    }
    .mean-nav ul.navbar-nav {
        height: 325px;
        max-height: 325px;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;
        -moz-overflow-scrolling: touch;
        -ms-overflow-scrolling: touch;
        -o-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    .mean-nav ul.navbar-nav::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 10px;
        background-color: rgba(0, 0, 0, 0.9);
    }
    .mean-nav ul.navbar-nav::-webkit-scrollbar-thumb {background-color: #f35882;}
    div.form-control ul.list {
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;
        -moz-overflow-scrolling: touch;
        -ms-overflow-scrolling: touch;
        -o-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    div.form-control ul.list::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 10px;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 0px 5px 5px 0px;
    }
    div.form-control ul.list::-webkit-scrollbar-thumb {
        background-color: #f35882;
        border-radius: 5px;
    }
    .form-group .select-box .nice-select .list {width: 100% !important;}
    section.banner-area {max-height: 1000px !important;}
    .heading-left-part .dropdown .dropbtn {
        width: auto !important;
        padding-right: 5px !important;
    }
    .heading-left-part .dropdown .dropdown-content {width: 60px !important;}
    .modal-footer button {width: auto !important;}
    .title-home div .home-btn {
        float: right !important;
        width: 100% !important;
    }
    .title-home div h3 {font-size: 18px !important;}
    #ElementGolovna .product-images-home img {
        max-width: 999px !important;
        max-height: 999px !important;
        width: 107% !important;
    }
    #ElementGolovna .product-images img {
        max-width: 999px !important;
        max-height: 999px !important;
    }
    #ElementPhoto .photo_anket .product-images-home img {
        max-width: 999px !important;
        max-height: 999px !important;
    }
    #ElementPhoto .photo_anket .product-images img {
        max-width: 999px !important;
        max-height: 999px !important;
        width: 116% !important;
    }
    .photo_anket_border .row .product-video {padding-bottom: 5px;}
}
.question_div {
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid #f67b9c;
}
.question_div:hover {cursor: pointer;}
.anim_for_answer_down {
    animation: 0.3s answer_down;
    animation-fill-mode: forwards;
}
@keyframes answer_down {
    0% {
        margin-top: -30px;
        opacity: 0;
    }
    100% {
        margin-top: 0px;
        opacity: 1;
    }
}
.question_i_one {float: left;}
.question_i_one i {font-size: 32px;}
.div_question {
    float: left;
    font-size: 18px;
    padding-top: 5px;
}
.question_i_two {float: right;}
.question_i_two i {
    float: right;
    font-size: 32px;
}
.answer {
    display: none;
    font-size: 18px;
    padding: 5px;
    border: 1px solid #f67b9c;
    border-top: none;
}
.faq_buttons {
    float: right;
}
.faq_buttons a {
    margin-left: 20px;
    margin-top: 20px;
}
.moore_seo_subscribe_area .container ul {
    list-style: disc !important;
    padding: 20px !important;
}
div.mobile-nav .logo {
    margin-top: 2px !important;
    left: 10px !important;
}
.mobile-nav .login-out-button {
    z-index: 1000;
    position: absolute;
    top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    background: none;
    right: 70px;
}
.mobile-nav .login-out-button i {
    font-size: 30px !important;
    color: #122738 !important;
    vertical-align: middle !important;
}
button.btn-secondary {width: auto !important;}
#toggleButton_two {
    font-size: 16px;
    padding-bottom: 0px;
display: flex;
    justify-content: center;
}
a.question-circle {
    cursor: pointer;
    font-size: 18px !important;
    /*padding-left: 5px !important;*/
    line-height: 1.5 !important;
    vertical-align: middle !important;
}
a.question-circle:hover span {
    display: block;
    border-radius: 5px 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    font-family: Calibri, Tahoma, Geneva, sans-serif;
    position: absolute;
    z-index: 99;
    margin-left: 0;
    width: auto;
    max-width: 400px;
    font-size: 16px !important;
}
a.question-circle .classic {
    background: white;
    border: 1px solid #DCDCDC;
    padding: 0.8em 1em;
    display: none;
}
.blog-area .container .section-title h2 {text-transform: uppercase !important;}
.owl-item .single-blog .blog-content a h3 {text-transform: lowercase !important;}
.owl-item .single-blog .blog-content a:first-letter {text-transform: uppercase !important;}
.owl-item .single-blog .blog-content p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.owl-item .single-blog .blog-content a h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.single-blog .blog-content .category-ul li .read-more {font-size: 12px !important;}
.single-blog .blog-content .category-ul li .read-more i {
    line-height: 18px !important;
    vertical-align: middle !important;
}
.select {position: relative;}
.select ~ .select {display: none;}
.new-select {
    position: relative;
    background: #fff;
    padding: 10px 15px;
    cursor: pointer;
    user-select: none;
    color: #f67b9c;
    font-weight: 500;
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 50px;
}
.new-select.on {border: 1px solid #f67b9c;}
.new-select__list {
    position: absolute;
    padding: 5px 0;
    top: 55px;
    left: 0;
    border: 1px solid #cfd3d9;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    z-index: 10;
    background: #fff;
    user-select: none;
}
.new-select__list.on {display: block;}
.new-select__list .active {
    background: #f6f6f6;
    pointer-events: none;
    font-weight: 600;
}
.new-select__list .active span {
    color: #333 !important;
}
.new-select__item span {
    display: block;
    padding: 10px 15px;
    color: #f67b9c;
}
.vs__dropdown-option--highlight,
.new-select__item span:hover {
    color: #fff;
    background-color: #121521;
}
.new-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    width: 5px;
}
.new-select.on:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}
.add-review {
    background: #f67b9c !important;
    color: #fff;
}
.add-review:hover {opacity: .8;}
.send-comment button {margin: 8px 0;}
.stars .bx-star {
    color: #f67b9c;
    cursor: pointer;
    font-size: 20px;
}
.add-stars .bx-star {font-size: 35px;}
.active .bx-star:before {content: "\ed99";}
.brk-form-wrap [disabled] {background: #ebebeb;}
.note-toolbar .btn {margin: 5px !important;}
.note-toolbar .note-btn {padding: 5px !important;}
.note-editor.note-frame .note-placeholder {font-size: 14px;}
.product-post-input {
    padding: 10px;
    background: #fff;
    margin: 10px 0;
    border-radius: 6px;
    cursor: text;
}
.post-text .post-text-date {
    display: flex;
    justify-content: end;
    height: 100%;
    font-size: 13px;
    align-items: center;
    color: silver;
}
.post-text .post-text-div {
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    margin-top: 15px;
    position: relative;
}
.post-text-div-absolute {
    color: #4fcef6;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffffeb;
    font-size: 25px;
    font-weight: 900;
}
.product-text-div-absolute {
    color: #4fcef6;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffffeb;
    font-size: 20px;
    font-weight: 900;
    z-index: 8;
    padding: 40px;
}
.i-con {font-size: 50px;}
.post-text-div ul {
    margin-bottom: 10px;
    border-bottom: 1px solid #f4f9fd;
}
.post-text-div ul li .btn-danger,
.post-text-div ul li .btn-dark,
.post-text-div ul li .default-btn {
    padding: 10px;
    font-size: 16px;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    /* text-transform: capitalize; */
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    margin-bottom: -6px;
    font-weight: 500;
}
[data-post-form] .note-toolbar {
    padding: 8px 5px !important;
    border-top: 1px solid silver !important;
}
[data-post-form] .card {flex-direction: column-reverse !important;}
[data-post-form] .note-status-output {display: none !important;}
[data-post-form] .default-btn {
    position: absolute;
    right: 10px;
    bottom: 0;
}
[data-post-form] .note-editor.note-frame .note-editing-area .note-editable,
[data-post-form] .note-editor.note-frame .note-placeholder {padding: 15px;}
#update-block-modal .btn-secondary,
#update-modal .btn-secondary,
#alert-modal .btn-secondary,
#confirm-modal .btn-secondary {
    background-color: #122738;
    border-color: #122738;
}
#update-block-modal .btn-primary,
#update-modal .btn-primary,
#alert-modal .btn-primary,
#confirm-modal .btn-primary {
    background-color: #f67b9c;
    border-color: #f67b9c;
}
.products {position: relative;}
.product-rating {
    position: absolute;
    background: silver;
    /*padding: 15px;*/
    border-radius: 50%;
    top: 10px;
    right: 20px;
    z-index: 99;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.add-recommendations .bx-dislike {
    font-size: 30px;
    color: red;
    cursor: pointer;
}
.add-recommendations .active .bx-dislike,
.add-recommendations .bx-dislike:hover {color: darkred;}
.add-recommendations .bx-like {
    margin-left: 10px;
    font-size: 30px;
    color: green;
    cursor: pointer;
}
.add-recommendations .active .bx-like,
.add-recommendations .bx-like:hover {color: darkgreen;}
.preview-videos .fileuploader-icon-sort {
    position: absolute;
    top: 15px;
    right: 40px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
.spinner {
    display: block;
    text-align: center;
}
.spinner > span,
.spinner > div {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner.spinner-blue > span,
.spinner.spinner-blue > div {background-color: var(--theme-color);;}
.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {-webkit-transform: scale(0)}
    40% {-webkit-transform: scale(1.0)}
}
@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@media (max-width: 515px) {
    .modals_account .modal_content_two {
        width: 100% !important;
        top: 60px!important;
        left: 0 !important;
    }

}
.nav-area .navbar-area .main-nav .navbar .navbar-brand::before {
    top: 50% !important;
    left: auto !important;
}
.event-details-img {
    padding-right: 20px;
}
.events .form-group .select-box .nice-select .list {
    width: 100% !important;
}
#telegram-window {
    position: fixed;
    left: 50%;
    top: 0;
    transform: translate(-50%, -105%);
    max-width: 400px;
    width: 100%;
    color: #2e2e2e;
    font-size: 14px;
    transition: transform 0.5s ease;
    box-shadow: 1px 1px 10px lightgray;
    border: 1px solid lightgray;
    z-index: 50;
}

.telegram_window--active {
    transform: translate(-50%, 180px) !important;
}

#telegram-window p {
    margin-bottom: 0 !important;
}

.telegram_window--container {
    background: white;
    padding: 12px 16px;
}

.telegram_window--container img {
    margin-right: 12px;
    width: 60px
}

.telegram_window--main {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.telegram_window--buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.telegram_window--close {
    color: #d70000;
    font-weight: bold;
    margin-right: 8px;
    padding: 8px 12px;
    border: none;
    background: transparent !important;
    cursor: pointer
}

.telegram_window--close:hover {
    color: #ef0000;
}

.telegram_window--open {
    background: #d70000;
    border-radius: 6px;
    padding: 8px 20px !important;
    color: white !important;
}

.telegram_window--open:hover {
    background: #ef0000;
}

@media(max-width: 767px) {
    #telegram-window {
        left: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-105%)
    }

    .telegram_window--active {
        transform: translateY(250px) !important
    }
}



.banner-area-date {
    position: relative;
}

.banner-area-date::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

.banner-area-date::-webkit-inner-spin-button,
.banner-area-date::-webkit-clear-button {
    z-index: 1;
}

.calendar-block {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #f67b9c;
}
.calendar-block input {
    padding-left: 25px;
    width: 100%;
    box-sizing: border-box;
}
.calendar-block::before {
    content: "\e9d6";
    font-family: 'boxicons' !important;
    position: absolute;
    right: 10px;
    top: 3px;
    z-index: 9;
    font-size: 30px;
}
.e-list-block a{
    margin-right: 20px;
}
.border-bottom-p a{
    /*border-bottom: 2px solid #f67b9c;*/
}
.border-bottom-p{
    position: relative;
}
.border-bottom-p .title-block{
    position: absolute;
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    background: #00000040;
}
.border-bottom-p .title-block h6{
    color: #fff;
    font-size: 18px;
    padding: 8px 20px;
    background: #f67b9cbd;
    border-radius: 4px;

}
.border-bottom-p .title-block:hover h6 {
    background: #f67b9c;
}
.category-tags-a {
    padding: 8px 15px;
    border: 2px solid #f67b9c;
    color: #000;
    border-radius: 6px;
}
.category-tags-a:hover {
    background: #f67b9c;
    color: #fff;
}
.category-tags-a.active {
    background: #f67b9c;
    color: #fff;
}
.phone-not-price{
    font-size: 16px;
}
.phone-not-price a {
    margin-left: 5px;
}
#customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#customers td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #f67b9c;
    color: white;
}
.audio-player {
    margin: 0 auto 20px;
}
audio {
    width: 100% !important;
}
.audio-h6 {
    width: 40%;
    text-align: left;
    margin-bottom: 0;
}