:root {
    --accent: #a61744; 
    --base: #002238;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    /* 3 */
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    appearance: button;
    -webkit-appearance: button;
    cursor: pointer;
    /* 3 */
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    appearance: textfield;
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}


/*
==========================================*/

html,
body {
    height: 100%;
}

body {
    font: 14px Montserrat;
    line-height: 1.4;
    color: #002238;
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 16px;
    }
}

.clr {
    clear: both;
}

.hidden {
    display: none !important;
}

.wrap {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 30px;
    font-weight: bold;
}

h1 {
    font-size: 2.25em;
    text-transform: uppercase;
    font-weight: normal;
}

h2 {
    font-size: 1.875em;
}

h3 {
    font-size: 1.625em;
    font-weight: normal;
}

h4 {
    font-size: 1.375em;
}

h5 {
    font-size: 1.125em;
}

h6 {
    font-size: 1em;
}

@media(min-width: 1200px){
    .container{
        max-width: 1230px;
    }
}


/*
==================================*/

a {
    color: #A21C3B;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/*
==================================*/

.middle {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.font-2 {
    font-family: Montserrat;
}


/*
=====================================*/

.title {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: bold;
    color: #002238;
}

@media (min-width: 768px) {
    .title {
        font-size: 19px;
    }
}

.title-small {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: bold;
}

.title2 {
    font-size: 20px;
}

@media (min-width: 992px) {
    .title2 {
        font-size: 26px;
    }
}

.title3 {
    font-size: 18px;
    color: #B2936D;
}

.title4 {
    color: #002238;
    font-size: 16px;
    font-weight: bold;
}

.title5 {
    color: #002238;
    font-size: 17px;
    font-weight: bold;
}

.subtitle {
    font-size: 15px;
    color: #002238;
}


/*
=====================================*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated2 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftSmall {
    -webkit-animation-name: fadeInLeftSmall;
    animation-name: fadeInLeftSmall;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}


/*
=====================================*/

.delay-1 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.delay-2 {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.delay-3 {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.delay-4 {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

.delay-5 {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s;
}

.delay-6 {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.delay-7 {
    -webkit-animation-delay: 2.9s;
    animation-delay: 2.9s;
}


/*
==================================*/

.section-gray {
    background-color: #F8F8F8;
}


/*
==================================*/

.color-brown {
    color: #B2936D;
}

.color-base {
    color: #002238;
}

.overflow-hidden {
    overflow: hidden
}

/*
==================================*/
.navbar {
    padding: 0; 
    display: block;
    /*background-color: $gray;*/
}

.navbar .navbar-nav {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
}

.navbar .navbar-nav>li>a {
    white-space: nowrap;
    display: block;
    color: #002238;
    text-transform: uppercase;
    padding: 10px 0; 
    font: 500 13px Montserrat;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar .navbar-nav>li.has-span>a {
    display: inline-block;
    padding-right: 5px;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .navbar .navbar-nav>li>a {
        font-size: 11px;
    }
}

@media (min-width: 992px) {
    .navbar .navbar-nav>li>a {
        padding: 17px 10px;
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    .navbar .navbar-nav>li>a {
        padding: 17px 15px;
        font-size: 14px;
    }
}

.navbar .navbar-nav>li>a:hover,
.navbar .navbar-nav>li>a:active,
.navbar .navbar-nav>li>a:focus {
    color: #A21C3B;
    text-decoration: none;
}

.navbar .navbar-nav>li>a+span:hover,
.navbar .navbar-nav>li>a+span:active,
.navbar .navbar-nav>li>a+span:focus {
    border-color: #A21C3B;
}

.navbar .navbar-nav>li>a+span:hover::after,
.navbar .navbar-nav>li>a+span:hover::before,
.navbar .navbar-nav>li>a+span:active::after,
.navbar .navbar-nav>li>a+span:active::before,
.navbar .navbar-nav>li>a+span:focus::after,
.navbar .navbar-nav>li>a+span:focus::before {
    background-color: #A21C3B;
}

.navbar .navbar-nav>li>a+span {
    width: 12px;
    height: 12px;
    border-top: 2px solid #002238;
    position: relative;
    display: inline-block;
    top: 0px;
    cursor: pointer;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .navbar .navbar-nav>li>a+span {
        top: 0px;
    }
}

.navbar .navbar-nav>li>a+span::after,
.navbar .navbar-nav>li>a+span::before {
    content: "";
    position: absolute;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #002238;
    display: block;
    top: 2px;
}

.navbar .navbar-nav>li>a+span::after {
    top: 6px;
}

.navbar .navbar-nav>.active>a {
    color: #A21C3B;
}

.navbar .navbar-collapse {
    clear: both;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 0 15px;
    max-height: 80vh;
    overflow: auto;
}

@media (min-width: 768px) {
    .navbar .navbar-collapse {
        position: relative;
        background-color: transparent;
        top: 0;
        padding: 0;
        max-height: auto;
    }
}

.navbar-toggler {
    top: 0;
    left: 0;
    padding: 3px 7px 2px 30px;
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    clear: both;
    margin: 0 5px;
    outline: none;
    height: 24px;
    z-index:3;
}

.navbar-toggler span {
    position: absolute;
    left: 0;
    display: block;
    width: 20px;
    height: 2px;
    top: 5px;
    margin: 5px 0;
    background: #002238;
}

.navbar-toggler span:first-child {
    top: 0;
}

.navbar-toggler span:last-child {
    bottom: 0;
    top: auto;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
}

.navbar .navbar-nav>li.link-975>a {
    z-index: 2;
    position: relative;
    color: #fff;
    padding-left: 45px;
}

.navbar .navbar-nav>li.link-975>a::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 5px;
    right: 0;
    background-color: #A21C3B;
    z-index: -1;
    border-radius: 10px;       
}

.link-975>a::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -9px;
    left: 15px;
    width: 18px;
    height: 18px;
    background: url(../images/sale-badge.png) no-repeat;
    background-size: 18px 18px;
    z-index: 2;
} 

/*
==============================*/
.header-menu{
    padding-top: 15px;
}

.header-menu .header-cart,
.header-cart-currency .header-cart{
    top: 0;
}

/*
==============================*/

.menu-block {
    background-color: #fff;
}

@media (max-width: 767px) {
    .menu-block {
        padding-left: 0 !important;
    }
}

.menu-block .container {
    position: relative;
}

.menu-block .btn-close {
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 2;
}

@media (min-width: 768px) {
    .menu-block .btn-close {
        right: 0;
    }
}

.menu-block .modal-dialog {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.modal-menu {
    font-size: 14px;
}

.modal-menu>div>ul {
    margin: 0;
    display: inline-block;
    padding: 20px 5px;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
    position: relative;
}

@media (min-width: 992px) {
    .modal-menu>div>ul {
        padding: 20px;
    }
}

.modal-menu>div>ul:hover {
    background-color: #FFECC2;
}

.modal-menu>div>ul>li>a {
    text-transform: uppercase;
    font-family: Montserrat;
    font-weight: bold;
}

.modal-menu>div>ul ul {
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

.modal-menu>div>ul ul a {
    display: block;
    margin-bottom: 5px;
}

.modal-menu ul {
    list-style: none;
}

.modal-menu a {
    color: #002238;
}

.modal-menu a:hover {
    text-decoration: none;
    color: #A21C3B;
}

.modal-menu-mobile {
    padding-top: 45px;
    min-height: 100vh;
    overflow-y: auto;
}

.menu-brands .col {
    width: 33%;
}

@media (min-width: 768px) {
    .menu-brands .col {
        width: 25%;
        margin-bottom: 30px;
        flex: 0 0 25%;
    }
    .menu-brands-page .col {
        width: 250px;
        margin-bottom: 50px;
        flex: 0 0 250px;
    }
    .menu-brands .col img {
        max-width: 90%;
    }
}

.mobile-brands .menu-brands {
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-brands .menu-brands img {
    max-width: 80%;
}

.menu-brand {
    display: block;
    min-width: 90px;
    height: 110px;
    position: relative;
}

@media (min-width: 768px) {
    .menu-brand {
        min-width: 135px;
    }
}

.menu-brand img {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 90% !important;
    max-height: 90% !important;
}

.mobile-menu {
    padding: 20px 0 0;
}

.mobile-menu>li>a {
    text-transform: uppercase;
    font-family: Montserrat;
    display: block;
    padding: 10px 0;
    font-size: 14px;
}

.mobile-menu ul {
    padding: 0;
    display: none;
}

.mobile-menu ul a {
    display: block;
    padding: 5px 0;
}

.mobile-menu .link-14>a {
    position: relative;
}

.mobile-menu .link-14>a span {
    width: 12px;
    height: 2px;
    background-color: #002238;
    position: relative;
    display: inline-block;
    top: -8px;
    margin-left: 5px;
}

@media (min-width: 768px) {
    .mobile-menu .link-14>a span {
        top: -8px;
    }
}

.mobile-menu .link-14>a span::after,
.mobile-menu .link-14>a span::before {
    content: "";
    position: absolute;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #002238;
    display: block;
    top: 4px;
}

.mobile-menu .link-14>a span::after {
    top: 8px;
}

.mobile-menu em {
    font-style: normal;
}

.mobile-menu .link-975 em {
    padding: 10px;
    background-color: #A21C3B;
    color: #fff;
    display: inline-block;
}

/*
======================================*/
.btn {
    display: inline-block;
    outline: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    height: 45px;
    font-size: 14px;
    padding-right: 15px;
    padding-left: 15px;
    min-width: 100px;
    line-height: 1;
}

.btn svg {
    width: 22px;
    height: 22px;
    position: relative;
    top: -1px;
}

.btn:active,
.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-white {
    background-color: #fff;
}

.btn-white:hover {
    background-color: #A21C3B;
    color: #fff;
}

.btn-close {
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

@media (min-width: 768px) {
    .btn-close {
        font-size: 40px;
    }
}

.btn-close:hover {
    color: #A21C3B;
}

.btn-close:active,
.btn-close:focus {
    outline: none;
}

.btn-red {
    background-color: #a61744;
    color: #fff !important;
    height: 40px;
    white-space: nowrap;
}

.btn-red:hover {
    color: #fff;
    background-color: #750025;
}

.btn-red svg {
    fill: #fff;
    margin-right: 5px;
}

.btn-yellow {
    background-color: #FFE67B;
}

.btn-yellow:hover {
    background-color: #A21C3B;
    color: #fff;
}

.btn-shadow {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn-line {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
}

.btn-blue {
    background-color: #002238;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.btn-blue:hover {
    background-color: #A21C3B;
    color: #fff;
}

.btn-green {
    background-color: #1FA07D;
    color: #fff;
}

.btn-green:hover {
    background-color: #002238;
    color: #fff;
}

.btn-gray {
    background-color: #E3E3E3;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 90px;
}

.btn-gray:hover {
    background-color: #FFECC2;
}

.btn-gray2{
    background-color: #f1f3ee;
    font-weight: bold;
    color: #002238;
    text-transform: uppercase;
    font-size: 12px;
    height: 35px;
    min-width: 155px;
    line-height: 34px !important
}
.btn-gray2:hover {
    background-color: #FFECC2;
}

.btn-red-dark {
    background-color: #7a1032;
    color: #fff !important;  
}

.btn-red-dark:hover {
    color: #fff;
    background-color: #750025 !important;
}


.btn-bordered {
    border: 1px solid #ddd;
    background-color: #fff;
}

.btn-bordered:hover {
    background-color: #002238;
    border-color: #002238;
    color: #fff;
}

.btn-more {
    background-color: #FFECC2;
}

.btn-more svg {
    margin-right: 5px;
}

.btn-more:hover {
    background-color: #002238;
    color: #fff;
}

.btn-more:hover svg path {
    fill: #fff;
}

.btn-round {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    width: 53px;
    height: 53px;
    min-width: 53px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn-round:hover {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}

.btn-medium {
    height: 52px;
    min-width: 180px;
}

.btn-medium2 {
    height: 45px;
    min-width: 160px;
}

.btn-medium3 {
    height: 45px;
    min-width: 180px;
}

.btn-large{
    height: 55px;
    font-weight: 600;
    border-radius: 10px;
    font-size: 16px;
}

a.btn {
    line-height: 47px;
    padding-top: 0;
}

a.btn-medium {
    line-height: 52px;
}

a.btn-medium2 {
    line-height: 45px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form select,
.form textarea {
    display: block;
    width: 100%;
    margin: 0 0 30px;
    border: 1px solid #ddd;
    padding: 0 10px;
    height: 45px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.form textarea {
    height: 120px;
    padding-top: 10px;
}

.form label {
    display: block;
    margin: 0;
}

.form label span {
    color: #A21C3B;
}

.form-user input[type="text"],
.form-user input[type="email"],
.form-user input[type="password"],
.form-user select {
    margin: 0 0 25px;
    height: 40px;
}

.form select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-background-size: 8px 7px;
    background-size: 8px 7px;
    -webkit-background-origin: content-box;
    background-origin: content-box;
    background-image: url(../images/select.svg);
}

/* 
=====================================*/
.ajaxlogin-form input[type="text"],
.ajaxlogin-form input[type="email"],
.ajaxlogin-form input[type="password"]{
    margin-bottom: 0;
}

.ajaxlogin-form .form-group,
.email-group,
.password-group{
    margin-bottom: 30px;
}

/* placeholder
=====================================*/

:focus::-webkit-input-placeholder {
    color: transparent;
}

:focus:-moz-placeholder {
    color: transparent;
}

:focus::-moz-placeholder {
    color: transparent;
}

:focus:-ms-input-placeholder {
    color: transparent;
}

::-webkit-input-placeholder {
    color: #C9C8C8;
    opacity: 1;
}

:-moz-placeholder {
    color: #C9C8C8;
    opacity: 1;
}

::-moz-placeholder {
    color: #C9C8C8;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #C9C8C8;
    opacity: 1;
}


/* helpers
=====================================*/

:invalid {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*
.jGrowl-notification,
.jGrowl-closer {
    display: none !important;
}
*/

.jGrowl-notification.ms2-message-error {
    display: block !important;
}


/*
====================================*/

.form-success {
    text-align: center;
    padding: 80px 30px;
    font-size: 1.25em;
    /* 20/16 */
}

.form-success svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: block;
}


/* success
=====================================*/

#success .modal-dialog {
    width: 100%;
    max-width: 510px;
    position: relative
}

#success .btn-close {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #CBCBCB;
    font-size: 30px;
}


/* MODAL bootstrap
==================================*/

.modal-dialog {
    background: #fff;
    width: 300px;
    padding: 30px;
    margin: 100px auto;
    position: relative;
    max-width: 98%;
    pointer-events: auto;
}

.form-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

.form-close:hover {
    color: #ff0000;
}

.form-title {
    text-align: center;
    font-size: 1.5em;
    /* 24/16 */
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
}

.bootstrap-select {
    width: 100% !important;
    margin-bottom: 25px;
}

.bootstrap-select .dropdown-toggle {
    width: 100%;
    display: block;
    width: 100%;
    margin: 0;
    border: 1px solid #ddd;
    padding: 7px 20px 6px 10px;
    height: 35px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
}

.bootstrap-select .dropdown-toggle::after {
    margin-top: 0;
    position: relative;
    top: 4px;
    border: none;
    width: 8px;
    height: 7px;
    -webkit-background-size: 8px 7px;
    background-size: 8px 7px;
    -webkit-background-origin: content-box;
    background-origin: content-box;
    background-image: url(../images/select.svg);
}

.bootstrap-select .form-control {
    height: 40px;
    width: 100%;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

.bootstrap-select .dropdown-menu {
    max-width: 100%;
    min-width: 100% !important;
}

.bootstrap-select .dropdown-menu input {
    margin-bottom: 0 !important;
}

.bootstrap-select .dropdown-menu.inner {
    display: block !important;
}


/*
=====================================*/

.header {
    font-size: 14px;
    position: relative;
    z-index: 9;
    padding-bottom: 10px;
    margin-bottom: 5px; 
    background-color: #fff;
}

@media (min-width: 768px) {
    .header {
        margin-bottom: 0;
    }
}

.header-top {
    padding: 10px 0;
    background-color: #ebeff2;
} 

.header-middle {
    padding: 0 0 10px;
    position: relative;
    z-index: 3;
}

@media (min-width: 992px) {
    .header-middle {
        padding: 20px 0;
    }
}

.header-phone {
    color: #000; 
    white-space: nowrap;
    font-size: 14px;
    margin-left: auto;
    font-weight: 500;
}

.header-phone:hover {
    text-decoration: none;
    color: #A21C3B;
}

.header-phone svg {
    margin-right: 1px;
    margin-top: -1px;
    width: 20px;
    height: 20px;
    fill: #000;
}

.header-logo img {
    max-width: 100%;
    width: 98px;
}

@media (min-width: 768px) {
    .header-phone { 
        font-size: 15px;
    }

    .header-logo img {
        width: auto;
    }

    .header-phone svg {
        margin-right: 10px;
    }
}

@media (min-width: 992px) {
    .header-phone { 
        margin-left: 0;
    }
}

.menu-logo {
    width: 98px;
    position: absolute;
    left: 50%;
    top: 7px;
    margin-left: -49px;
}

.btn-user {
    color: #002238;
    padding: 0;
}

.btn-user svg { 
    position: relative;
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
}

.btn-user:hover {
    text-decoration: none;
    color: #A21C3B;
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 9;
    text-align: left;
    display: none;
}

.user-menu a {
    display: block;
    padding: 12px 15px 10px;
    border-bottom: 1px solid #f1f1f1;
    color: #000;
    line-height: 1;
}

.user-menu a:hover {
    color: #A21C3B;
    text-decoration: none;
}

.active>.user-menu {
    display: block;
}


/* fixed panel
=====================================*/

.panel-fixed {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    font-size: 14px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 991;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(-120%);
    -ms-transform: translateY(-120%);
    transform: translateY(-120%);
}

.panel-fixed .header-middle {
    padding: 14px 0;
}

.panel-fixed .header-logo img {
    max-width: 100%;
    width: 130px;
}

.panel-fixed .cart-dropdown {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-top: 16px;
    display: none !important;
}

.panel-fixed .header-cart-currency {
    position: relative;
    bottom: 0;
}

.panel-fixed .navbar-toggler {
    top: -11px;
    left: 15px;
    margin: 0;
    height: 22px;
}

.nav-fixed .panel-fixed {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.nav-fixed .panel-fixed .cart-dropdown {
    display: none !important;
}

.nav-fixed .panel-fixed .active .cart-dropdown {
    display: block !important;
}


/* cart dropdown
=====================================*/

.active .cart-dropdown {
    display: block;
}

.show-cart:active,
.show-cart:focus {
    text-decoration: none;
}

.cart-dropdown {
    display: none;
    width: 290px;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background-color: #fff;
    z-index: 9;
    padding: 15px 15px 30px;
    font-size: 14px;
    max-height: 80vh;
    overflow: auto;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .cart-dropdown {
        width: 340px;
    }
}

.cart-dropdown-head {
    border-bottom: 1px solid #B2936D;
    padding-top: 5px;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.cart-dropdown-total {
    margin: 25px 0 45px;
    font-size: 18px;
    font-weight: bold;
}

.cart-dropdown .btn-red {
    color: #fff;
    height: 45px;
    line-height: 40px;
}

.cart-item-small {
    padding: 0 12px;
    border-bottom: 1px solid #CBCBCB;
    margin-bottom: 15px;
    padding-bottom: 20px;
}

.cart-item-small .row>* {
    padding-left: 5px;
    padding-right: 5px;
}

.cart-item-small img {
    max-width: 100%;
}

.cart-item-small-title {
    margin-bottom: 15px;
    display: block;
    font-size: 12px;
    font-family: Montserrat;
}

.cart-item-small-price {
    font-weight: bold;
}

.cart-item-small .close {
    font-size: 28px;
    color: #CBCBCB;
    font-weight: normal;
}

.cart-item-small .close:hover {
    color: #A21C3B;
}

.show-cart{
    display: inline-block;
    margin-left: 5px;
    position: relative;
    text-align: center;
}

@media(min-width: 992px){ 
    .show-cart{ 
        margin-left: 0;
    }
}

.show-cart svg{
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
    fill: #000;
}
 
.panel-fixed .header-cart-caption{ 
    display: none !important;
}

/*
=====================================*/
.langs{
    position: relative;
    z-index: 9;
}

.language-active{
    overflow: hidden;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: block;
    cursor: pointer;
}

.language-active img{
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
 
.languages{
    position: absolute;
    top: 100%;
    left: -7px;
    padding: 5px 10px;
    margin: 3px 0 0; 
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 13px 40px 0px rgba(0, 0, 0, 0.08);  
    display: none;
}

.languages.active{
    display: block;
}

.languages a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    color: #B2936D;
    margin-bottom: 2px;  
}

.languages img {
    width: 20px;
}

.languages span{
    display: none;
}

/*
=====================================*/

.search {
    position: relative;
}

.search form {
    display: block;
    position: relative;
}

.search form input {
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid rgb(201, 201, 201);
    -webkit-border-radius: 4px;
    border-radius: 10px;
    font-size: 14px;
    padding: 3px 30px 0 15px;
    background-color: #fff;
}

.search form button {
    position: absolute;
    right: 13px;
    top: 11px;
    padding: 0;
    border: none;
    background-color: transparent;
    z-index: 2;
}

.search form button svg{
    width: 22px;
    height: 22px;
    fill: #000;
}

.search.active form {
    display: block;
    top: 100%;
    left: 0;
    right: 0;
}

.toggle-search {
    position: relative;
    cursor: pointer;
    padding: 0;
    border: none;
    background-color: transparent;
}


/*
=====================================*/

.ajaxlogin-btn {
    color: #000;
}

.ajaxlogin-btn:hover {
    text-decoration: none;
    color: #A21C3B;
}


/*
=====================================*/
.currency{
    position: relative;
    z-index: 9
}

.currency a {
    color: #000 !important;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 500;
}

.currency a svg {
    margin-right: 5px;
}

.msmc-toggle::after {
    display: none !important;
}

.msmc-dropdown {
    width: 70px;
    animation: none !important;
    transition: none;
    visibility: hidden;
    position: absolute; 
}

.msmc--light .msmc-dropdown {
    box-shadow: none !important;
}

.msmc--opened .msmc-dropdown {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .19), 0 1px 2px 0 rgba(0, 0, 0, .19) !important;
}


/*
=====================================*/
.header-cart {
    position: relative;
    top: -2px;
}

@media (min-width: 768px) {
    .header-cart {
        top: 0;
    }
}

.header-cart a {
    color: #000;
}

.header-cart a:hover {
    text-decoration: none;
    color: #A21C3B;
}

.header-cart-count {
    display: block;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    background-color: #A21C3B;
    text-align: center;
    font-size: 10px;
    line-height: 20px; 
    position: absolute;
    top: -6px;
    left: 50%;
}

.header-cart-caption{
    font-size: 14px;
    font-weight: 500;
}

/*
@media(min-width: 992px) {
    .header-cart-count{
        right: -5px;
        top: -6px;
    }
}
*/

.header-cart-currency {
    position: absolute;
    right: 0;
    bottom: -30px;
}

@media (min-width: 768px) {
    .header-cart-currency {
        position: relative;
        bottom: 0;
    }
}

/*
=====================================*/
.slider-nav {
    position: absolute;
    right: 15px;
    bottom: 30px;
    z-index: 9;
    opacity: 1;
  }
  
  @media (min-width: 768px) {
    .slider-nav {
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      bottom: auto;
    }
  }
  
  .slider-nav-arrows, .slider-nav-dots {
    left: 0;
  }
  
  @media (min-width: 768px) {
    .slider-nav-arrows, .slider-nav-dots {
      position: relative;
      right: 0;
      left: auto;
    }
  }
  
  .slider-nav-arrows button {
    text-indent: -9999px;
    font-size: 0;
    border: none;
    display: inline-block;
    padding: 0;
    line-height: 1;
    width: 30px;
    height: 30px;
    position: relative;
    background-color: #fff !important;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    z-index: 9;
    margin: 0 5px 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: .8;
  }
  
  .slider-nav-arrows button::before, .slider-nav-arrows button::after {
    content: "";
    position: absolute;
  }
  
  .slider-nav-arrows button::before {
    left: 8px;
    right: 8px;
    top: 50%;
    margin-top: -1px;
    height: 1px;
    background-color: #B2936D;
  }
  
  .slider-nav-arrows button::after {
    border: 1px solid #B2936D;
    border-top: none;
    width: 7px;
    height: 7px;
    top: 50%;
    margin-top: -2px;
    left: 5px;
    -webkit-transform: rotate(45deg) translateY(-45%);
        -ms-transform: rotate(45deg) translateY(-45%);
            transform: rotate(45deg) translateY(-45%);
  }
  
  .slider-nav-arrows button.owl-prev {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .slider-nav-arrows button.owl-prev::after {
    border-right: none;
  }
  
  .slider-nav-arrows button.owl-next {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .slider-nav-arrows button.owl-next::after {
    border-left: none;
    left: auto;
    right: 8px;
    margin-top: -4px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border-top: none;
    border-left: none;
  }
  
  .slider-nav-arrows button:hover {
    -webkit-box-shadow: 10px 8px 30px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 10px 8px 30px 0px rgba(0, 0, 0, 0.15);
    opacity: 1;
  }
  
  .slider-nav-arrows button:hover::before {
    background-color: #002238;
  }
  
  .slider-nav-arrows button:hover::after {
    border-color: #002238;
  }
  
  .slider-nav-arrows button:active, .slider-nav-arrows button:focus {
    outline: none;
  }
  
  .slider-nav-dots {
    counter-reset: dots;
    display: none;
    margin-bottom: 70px;
  }
  
  @media (min-width: 768px) {
    .slider-nav-dots {
      display: block;
    }
  }
  
  .slider-nav-dots .owl-dot {
    display: block;
    width: 55px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    margin-bottom: 10px;
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: Brygada;
  }
  
  .slider-nav-dots .owl-dot::before {
    color: #B2936D;
    display: block;
    font-size: 14px;
    text-align: right;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    line-height: 1;
    padding: 5px 0;
    counter-increment: dots;
    content: counter(dots, decimal-leading-zero);
  }
  
  .slider-nav-dots .owl-dot::after {
    width: 0%;
    opacity: 1;
  }
  
  .slider-nav-dots .owl-dot.active::before {
    color: #002238;
    font-size: 27px;
  }
  
  .slider-nav-dots .owl-dot.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 1px;
    height: 100%;
    margin-left: 15px;
    background-color: #002238;
    opacity: 1;
    -webkit-animation: setHeight .5s ease-in;
            animation: setHeight .5s ease-in;
  }
  
  .slider-nav-dots .owl-dot:focus, .slider-nav-dots .owl-dot:active {
    outline: none;
  }
  

/*
=====================================*/
@media(min-width: 992px){
    .main-slider-block{
        margin-top: 30px;
    }
}

.main-slider-swiper {    
    position: relative;
    z-index: 2; 
    margin: 0 -15px 30px;
} 

.main-slide {
    margin: 0 ;
    padding: 20px 15px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.main-slide::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ebeff2;
    height: 200px;
    z-index: -2;
}

.main-slide::after{
    content: '';
    position: absolute;
    top: 150px;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #fff; 
    z-index: -1;
}

.main-slide img{
    max-width: 100%;
}

.main-slide-image img{
    max-width: 60px;
    margin: 0 auto;
}

.main-slide-vendor_logo{ 
    margin: 0 auto 10px;
    max-width: 100px;
    min-height: 40px;
}

.main-slide-vendor_logo img{
    max-height: 40px;
}

.main-slide-image{
    flex: 0 0 115px;
    margin-right: 10px;
}

.main-slide-data{
    flex: 0 0 calc(100% - 120px);
    min-height: 220px;
}

.main-slide-data_vendor{
    font-size: 14px;
    font-weight: 500;
}

.main-slide-data_title{
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #002238;
    margin-bottom: 10px; 
}

.main-slide-data_title:hover{
    text-decoration: none;
    color: #a61744;
}

.main-slide-data_introtext{
    font-size: 14px;
}
 
.main-slide-data_fields{
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    flex-wrap: wrap ;
    color: #002238;
    font-size: 13px;
}

.main-slide-data_fields li{
    flex: 0 0 32%;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.main-slide-data_fields span{
    margin-top: 2px;
    color: #8F8F8F;
    display: block;
    line-height: 1;
}

.main-slide-data_fields svg{
    width: 20px;
    height: 22px; 
    position: absolute;
    left: 0;
    top: 0;
}

.main-slide-data_price{
    font-weight: bold;
    color: #002238;
    font-size: 18px;
    margin-bottom: 10px;
}

.main-slide-data .btn{
    width: 150px;
    height: 25px;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 8px;
}

.main-slider-swiper .swiper-wrapper{
    margin-bottom: 40px;
}

.main-slider-swiper .swiper-pagination{ 
    background-color: #f1f3ef;
    border-radius: 10px;
    padding: 1px 20px 4px;
    width: auto;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.main-slider-swiper .swiper-pagination-bullet{
    width: 6px;
    height: 6px;
    background-color: #9e9e9e;
    opacity: 1;
    transition: transform .5s;
    margin: 0 10px;
}

.main-slider-swiper .swiper-pagination-bullet-active{
    transform: scale(2);
    background-color: #002238;
}

@media(min-width: 768px){ 
    .main-slide-data_fields{  
        font-size: 14px;
    }

    .main-slide-data_fields li{
        margin-bottom: 20px;
        flex: 0 0 25%;
    }
}

@media(min-width: 992px){ 
    .main-slide {
        padding: 20px ;
        background: url(../images/main-slide-bg-v2.png) no-repeat 0 0;
    }

    .main-slide::before,
    .main-slide::after{
        display: none;
    }

    .main-slide-vendor_logo{
        flex: 0 0 60px;
        margin: 0 10px 0 0; 
        min-height: 55px;
        padding-top: 33px;
    }
    
    .main-slide-vendor_logo img{
        max-height: 80px;
    } 

    .main-slide-image{
        flex: 0 0 150px;
        margin-right: 90px;
    }

    .main-slide-image img{
        max-width: 90%;
    }

    .main-slide-data{
        flex: 0 0 calc(100% - 340px);
        padding-top: 30px;
    }

    .main-slide-data_vendor{
        font-size: 14px;
        font-weight: 500;
    }

    .main-slide-data_title{
        display: block;
        font-weight: bold;
        font-size: 20px;
        text-transform: uppercase;
    } 

    .main-slide-data .btn{
        width: 200px;
        height: 40px;
        font-size: 12px;
        line-height: 1; 
        padding-top: 8px;
    }

    .main-slide-data_price{  
        font-size: 25px;
        margin-bottom: 0;
        margin-right: 40px;
    } 

    .main-slide-data-titleouter{
        min-height: 150px;
    }

    .main-slide-data-titleblock{
        flex: calc(100% - 180px);
    }
}

@media(min-width: 1200px){
    .main-slider-swiper {     
        margin-left: 0 ;
    } 

    
    .main-slide-data{
        flex: 0 0 calc(100% - 340px);
    }
    .main-slide-data_introtext{
        padding-right: 50px;
    }

    .main-slide-award{
        flex: 0 0 110px;
        margin-left: 20px;
        padding-left: 5px;
        margin-top: -25px;
    }
}

/*
=====================================*/
.main-slide-thumb{
    margin-bottom: 20px;
    border-right: 1px solid transparent;
    padding: 0 5px;
    height: 70px !important;
    max-height: 70px;
    opacity: .4;
    cursor: pointer;
    transition: opacity .5s, border-color 1s;
}

.main-slide-thumb-title{
    margin-right: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.main-slide-thumb-image {
    width: 40px;
    height: 60px;
    flex: 0 0 40px;
}

.main-slide-thumb-image img{
    max-width: 100%;
    max-height: 100%;
}

.swiper-slide-thumb-active.main-slide-thumb{
    opacity: 1;
    border-color: #002238; 
} 

/*
===================================*/
.owl-nav button {
    text-indent: -9999px;
    font-size: 0;
    border: none;
    display: block;
    padding: 0;
    line-height: 1;
    width: 45px;
    height: 45px;
    position: relative;
    background-color: #fff !important;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 9;
    margin: 0 0 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.15);
}


.owl-nav button::before, .owl-nav button::after {
    content: "";
    position: absolute;
  }
  
  .owl-nav button::before {
    left: 13px;
    right: 13px;
    top: 50%;
    margin-top: -1px;
    height: 1px;
    background-color: #B2936D;
  }
  
  .owl-nav button::after {
    border: 1px solid #B2936D;
    border-top: none;
    width: 9px;
    height: 9px;
    top: 50%;
    margin-top: -2px;
    left: 10px;
    -webkit-transform: rotate(45deg) translateY(-50%);
        -ms-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
  }
  
  .owl-nav button.owl-prev::after {
    border-right: none;
  }
  
  .owl-nav button.owl-next {
    left: auto;
    right: 0;
  }
  
  .owl-nav button.owl-next::after {
    border-left: none;
    left: auto;
    right: 15px;
    margin-top: -5px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border-top: none;
    border-left: none;
  }
  
  .owl-nav button:hover {
    -webkit-box-shadow: 10px 8px 30px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 10px 8px 30px 0px rgba(0, 0, 0, 0.15);
  }
  
  .owl-nav button:hover::before {
    background-color: #b73e52;
  }
  
  .owl-nav button:hover::after {
    border-color: #b73e52;
  }
  
  .owl-nav button:active, .owl-nav button:focus {
    outline: none;
  }
  
  .owl-dot {
    display: block;
    width: 50px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    margin-bottom: 20px;
  }
  
  .owl-dot::before {
    color: #570606;
    display: block;
    font-size: 12px;
    text-align: right;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    line-height: 1;
  }
  
  .owl-dot::after {
    width: 0%;
    opacity: 1;
  }
  
  .owl-dot.active::before {
    font-size: 30px;
  }
  
  .owl-dot.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 1100%;
    height: 1px;
    margin-left: 15px;
    background-color: #b73e52;
    opacity: 1;
    -webkit-animation: setHeight .9s ease-in;
            animation: setHeight .9s ease-in;
  }
  
  .owl-dot:focus, .owl-dot:active {
    outline: none;
  }
  
  @-webkit-keyframes setHeight {
    0% {
      height: 0%;
      opacity: 0;
    }
    100% {
      height: 100%;
      opacity: 1;
    }
  }
  
  @keyframes setHeight {
    0% {
      height: 0%;
      opacity: 0;
    }
    100% {
      height: 100%;
      opacity: 1;
    }
  }

  
/* css tabs
=====================================*/

.tabs__content {
    display: none;
    min-height: 250px;
}

.tabs__content.active {
    display: block;
}

.tabs__caption {
    list-style: none;
    padding: 0;
    font-weight: bold;
    font-size: 17px;
    text-wrap: nowrap
}

.tabs__caption li {
    display: inline-block;
    color: #c6c6c6;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; 
    margin-top: 20px;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .tabs__caption {
        font-size: 19px;
    }
    
    .tabs__caption li {
        margin-right: 30px;
    }
}

.tabs__caption li:hover {
    color: #002238;
}

.tabs__caption li.active {
    color: #002238; 
}


/*
=====================================*/

input[type='number'] {
    appearance: textfield;
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.quantity {
    position: relative;
    width: 90px;
    text-align: center;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.quantity input {
    display: block;
    width: 100%;
    height: 32px;
    border: 1px solid #E6E8EC;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 0;
    line-height: 1;
    font-weight: bold;
}

.quantity input:focus {
    outline: none;
}

.quantity span {
    display: block;
    position: absolute;
    z-index: 2;
    width: 26px;
    text-align: center;
    top: 0;
    bottom: 0;
    font-size: 18px;
    line-height: 31px;
    cursor: pointer;
    color: #000;
}

.quantity span.bplus {
    right: 0;
}

.quantity span:hover {
    color: #c92a2a;
}


/*
=====================================*/
.products>* {
    margin-bottom: 20px;
}

.product {
    text-align: center;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    padding: 0 10px 145px 10px;
    position: relative;
    height: 100%;
}

.product-no-stock{
    opacity: .3;
    transition: opacity .3s;
}

.product-no-stock:hover{
    opacity: 1;
}

.product.product-list {
    padding: 20px;
    position: relative;
    height: auto;
}

@media (min-width: 768px) {
    .product.product-list {
        text-align: left;
    }
}

.product:hover .product-title{
    color: #a61744;
}

.product.product-list .product-prices{
    position: relative;
    bottom: 0;
}

.product.product-list:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
} 

.product-image {
    display: block;
    position: relative;
    height: 185px;
}

.product-image img {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    transition: opacity .3s ;
}

.product-image-hover{
    opacity: 0;
}

.product-image-has-hover:hover img:first-child{
    opacity: 0;
}

.product-image-has-hover:hover img:last-child{
    opacity: 1;
}

.product-awards {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.product-volumelabel{ 
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #a61744;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

.product-awards img {
    max-width: 45px;
    position: relative;
}

.product-list .product-awards {
    right: -13px;
}

.product-title {
    display: block;
    margin: 10px 0;
    color: #000;
    font: 600 16px Montserrat;
    transition: color .3s;
}

.product-title:hover {
    text-decoration: none;
    color: #A21C3B;
}

.product-details {
    color: #8F8F8F;
    font-size: 13px;
    line-height: 1;
    margin-top: 5px;
}

.product-details span {
    display: inline-block;
    position: relative;
}

.product-details span+span {
    margin-left: 6px; 
    padding-left: 6px;
}

.product-details span+span::before {
    content: ''; 
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background:  #8F8F8F;
    position: absolute;
    left: -3px;
    top: 5px;
}

.product-prices {
    text-transform: uppercase;
    line-height: 1; 
    position: absolute;
    bottom: 77px;
    left: 0;
    right: 0;
}

.product-old-price-sale{
    margin-bottom: 10px;
}

.product-old-price {
    color: #727272;
    padding-top: 2px;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.product-old-price::before {
    content: "";
    display: block;
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #8F8F8F;
}

.product-old-price+.product-price {
    margin-left: 15px;
}

.product-discount{
    background-color: #a61744;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    padding: 4px 5px;
    color: #fff;
    margin-left: 5px;
    min-width: 50px;
    text-align: center;
}

.product-price {
    font-size: 21px;
    font-weight: bold;
}

.product.is-sale .product-price {
    color: #A21C3B;
}

.product.product-list .product-desc {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    padding-bottom: 35px;
}

.product-actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.product-actions .btn{
    width: 80%;
}

.product.product-list .product-actions {
    bottom: 0;
    left:  0;
    position: relative;
}

.product.product-list  .product-actions .btn{
    width: 100%;
}

.product-quantity {
    margin-right: 10px;
}

.product .btn {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.product .labels {
    height: 25px;
    margin-top: 4px; 
}

.product .label {
    display: inline-block;
    padding: 6px 10px 4px;
    text-transform: uppercase;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    border-radius: 5px;
    min-width: 93px;
}

.product .label-sale {
    background-color: #fbe9e9;
    color: #cb1a17;
}

.product .label-new {
    background-color: #d4eadc;
    color: #00644b;
}

/*
=====================================*/

.main-category {
    background: url(../images/catalog-bg.png) no-repeat 50% 50%;
    min-height: 200px;
}

.cat {
    display: block;
    position: relative;
    text-align: center;
    padding-top: 35px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: Montserrat;
    color: #002238;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    margin-bottom: 60px;
}

.cat span {
    display: block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.cat>span {
    background-color: #F0F0F0;
    width: 135px;
    height: 135px;
    top: 0;
}

.cat>span span {
    display: block;
    width: 32px;
    height: 32px;
    top: 24px;
}

.cat img {
    display: block;
    width: 135px;
    height: 147px;
    z-index: 3;
    position: relative;
    margin: 0 auto 15px;
}

.cat:hover {
    text-decoration: none;
    color: #A21C3B;
}

.cat:hover>span span {
    width: 135px;
    height: 135px;
    top: 0;
}

@-webkit-keyframes changeSize {
    0% {
        width: 0px;
        height: 0px;
    }
    100% {
        width: 135px;
        height: 135px;
    }
}

@keyframes changeSize {
    0% {
        width: 0px;
        height: 0px;
    }
    100% {
        width: 135px;
        height: 135px;
    }
}

.changeSize {
    -webkit-animation-name: changeSize;
    animation-name: changeSize;
}

/*
===================================== */
.products-carousel{
    margin: 30px 0;
    padding: 0 30px;
}

.products-carousel .swiper-slide{
    height: auto; 
}

@media(min-width: 768px){ 
    .products-carousel .swiper-slide{ 
        max-width: 280px;
    }
}

.btn-sl{
    width: 24px;
    height: 24px;
}

.btn-sl::after{
    display: none;
}

.btn-sl svg{
    width: 100%;
    height: 100%;
    fill: #1e1e1e;
}

.btn-sl-next {
    transform: rotate(180deg);
}

.btn-sl:hover svg{
    fill: #a61744
}


/*
=====================================*/
.main-hall {
    background-color: #f7ede3;
    color: #002238;
    padding: 40px 0;
}

.main-hall img {
    max-height: 560px;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .main-hall img {
        max-height: 600px;
    }
}

@media (min-width: 1900px) {
    .main-hall img {
        max-height: 650px;
    }
}

.hall-img{
    position: relative;
    min-height: 200px;
}

.hall-img img {
    max-width: 100%;
    border-radius: 10px;
}

.sub-desc {
    font-size: 15px;
}

.hall-buttons {
    margin: 35px 0 0;
}

.hall-buttons a {
    min-width: 140px;
    height: 50px;
    line-height: 48px;
    padding-top: 1px;
    margin-bottom: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;       
}

@media (min-width: 992px) {
    .hall-buttons a {
        min-width: 190px;
    }
}

.hall-buttons a+a {
    margin-left: 5px;
}

@media (min-width: 768px) {
    .hall-buttons a+a {
        margin-left: 35px;
    }
}

.hall-buttons .btn-white:hover {
    background-color: #002238;
}

.hall-contacts {
    font-size: 16px;
    margin-top: 40px;
}

.hall-contacts>* {
    margin-bottom: 5px;
}

.hall-contacts a {
    color: #002238;
    display: inline-block;
}

.hall-contacts a svg {
    margin-right: 0;
}

.hall-contacts a:hover {
    text-decoration: none;
}

.hall-contacts svg {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -2px;
    width: 20px;
    height: 20px;
}

/*
=====================================*/
.play-btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    display: flex;
    align-items:center;
    justify-content: center;
    padding-left: 5px;
}

.play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.play-btn:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms;
}

.play-btn span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 18px solid rgba(0,0,0, .3);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*
=====================================*/

.slider-winery {
    z-index: 3;
}

.slider-winery::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 165px;
    left: 100%;
    z-index: -1;
    background-color: #FFECC2;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: -190px;
    display: none;
}

@media (min-width: 992px) {
    .slider-winery::after {
        display: block;
        margin-left: -160px;
    }
}

@media (min-width: 1200px) {
    .slider-winery::after {
        margin-left: -193px;
    }
}

.slider-winery.animate-line::after {
    -webkit-animation: animateWidth 4s;
    animation: animateWidth 4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes animateWidth {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes animateWidth {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.winery {
    padding: 30px 0;
}

.winery .btn {
    height: 43px;
    padding-top: 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 42px;
}

.winery-data {
    padding-top: 40px;
}

@media (min-width: 992px) {
    .winery-data {
        padding-top: 10px;
    }
}

@media (min-width: 1200px) {
    .winery-data {
        padding-top: 40px;
    }
}

.winery-data .content {
    overflow: hidden;
}

@media (min-width: 992px) {
    .winery-data .content {
        height: 90px;
    }
}

.winery .title {
    color: #002238;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .winery .title {
        margin-bottom: 15px;
    }
}

@media (min-width: 1200px) {
    .winery .title {
        margin-bottom: 30px;
    }
}

.winery-info {
    margin: 37px 0;
    font-size: 14px;
}

@media (min-width: 992px) {
    .winery-info {
        margin: 15px 0;
    }
}

@media (min-width: 1200px) {
    .winery-info {
        margin: 37px 0;
    }
}

.winery-info>* {
    margin-top: 5px;
}

.winery-image {
    display: block;
}

.winery-image img {
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
    max-width: 100%;
}

.winery-logo {
    display: block;
    margin-top: 15px;
    height: 65px;
    position: relative;
}

@media (min-width: 992px) {
    .winery-logo {
        height: 40px;
    }
}

@media (min-width: 1200px) {
    .winery-logo {
        height: 65px;
    }
}

.winery-logo img {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
}

.winery-outer .slider-nav {
    position: absolute;
    height: 50%;
    right: 0;
    left: 0;
    top: -30px;
}

@media (min-width: 992px) {
    .winery-outer .slider-nav {
        left: auto;
        width: 100px;
        top: 30%;
    }
}

@media (min-width: 1200px) {
    .winery-outer .slider-nav {
        top: 35%;
        right: 50px;
    }
}

.winery-outer .slider-nav-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    white-space: nowrap;
    margin-top: -25px;
    opacity: 0;
}

@media (min-width: 768px) {
    .winery-outer .slider-nav-arrows {
        margin-top: 40%;
    }
}

@media (min-width: 992px) {
    .winery-outer .slider-nav-arrows {
        left: -30px;
        min-width: 150px;
    }
}

@media (min-width: 1200px) {
    .winery-outer .slider-nav-arrows {
        left: -30px;
        min-width: 200px;
    }
}

.winery-outer .slider-nav-arrows button {
    text-indent: 0;
    font-size: 12px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    width: 45px;
    height: 45px;
    margin: 0 25px;
    opacity: 1;
}

@media (min-width: 992px) {
    .winery-outer .slider-nav-arrows button {
        margin: 0 10px;
    }
}

@media (min-width: 1200px) {
    .winery-outer .slider-nav-arrows button {
        margin: 0 25px;
    }
}

.winery-outer .slider-nav-arrows button span {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    padding-top: 35px;
    color: #CBCBCB;
    font-size: 16px;
    font-family: Montserrat;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    display: none;
}

@media (min-width: 992px) {
    .winery-outer .slider-nav-arrows button span {
        display: block;
    }
}

.winery-outer .slider-nav-arrows button::before {
    left: 13px;
    right: 13px;
}

.winery-outer .slider-nav-arrows button::after {
    width: 7px;
    height: 7px;
    left: 13px;
}

.winery-outer .slider-nav-arrows button.owl-prev {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width: 992px) {
    .winery-outer .slider-nav-arrows button.owl-prev {
        background-color: transparent !important;
    }
}

.winery-outer .slider-nav-arrows button.owl-prev:hover {
    background-color: #fff !important;
    -webkit-box-shadow: 10px 8px 30px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 10px 8px 30px 0px rgba(0, 0, 0, 0.15);
}

.winery-outer .slider-nav-arrows button.owl-prev:hover span {
    color: #8F8F8F;
}

.winery-outer .slider-nav-arrows button.owl-prev:hover~button {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width: 992px) {
    .winery-outer .slider-nav-arrows button.owl-prev:hover~button {
        background-color: transparent !important;
    }
}

.winery-outer .slider-nav-arrows button.owl-prev:hover~button span {
    color: #CBCBCB;
}

.winery-outer .slider-nav-arrows button.owl-next {
    opacity: 1;
}

.winery-outer .slider-nav-arrows button.owl-next::before {
    background-color: #002238;
}

.winery-outer .slider-nav-arrows button.owl-next::after {
    border-color: #002238;
    left: auto;
    right: 13px;
}

.winery-outer .slider-nav-arrows button.owl-next span {
    color: #8F8F8F;
}

.winery-outer .slider-nav-dots {
    position: absolute;
    bottom: -35px;
    left: 0;
    line-height: 1;
    margin: 0;
    padding: 0;
    height: 30px;
    width: 100px;
    opacity: 0;
}

@media (min-width: 992px) {
    .winery-outer .slider-nav-dots {
        bottom: -120px;
        left: -25px;
    }
}

@media (min-width: 1200px) {
    .winery-outer .slider-nav-dots {
        left: 5px;
        bottom: -100px;
    }
}

.winery-outer .slider-nav-dots::before {
    content: "/ ";
    color: #B2936D;
    font-size: 21px;
    position: absolute;
    right: 20px;
    bottom: 0;
}

.winery-outer .slider-nav-dots::after {
    content: counter(dots);
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #B2936D;
    font-size: 18px;
}

.winery-outer .slider-nav-dots .owl-dot {
    opacity: 0;
    top: -2px;
    position: absolute;
    padding: 0;
}

.winery-outer .slider-nav-dots .owl-dot::after {
    display: none;
}

.winery-outer .slider-nav-dots .owl-dot.active {
    opacity: 1;
}


/*
=====================================*/

.list>* {
    margin-bottom: 30px;
}

.article {
    background-color: #fff;
    position: relative;
    padding-bottom: 40px;
    font-size: 14px;
    color: #8F8F8F;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    height: 100%;
}

.article:hover {
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
}

.article:hover .article-title {
    color: #A21C3B;
    text-decoration: none;
}

.article:hover .article-views {
    color: #B2936D;
}

.article:hover .article-views svg path {
    fill: #B2936D;
}

.article-image {
    display: block;
}

@media (min-width: 992px) {
    .article-image {
        min-height: 190px;
    }
}

.article-image img {
    max-width: 100%;
}

.article-data {
    padding: 15px;
}

.article-title {
    color: #002238;
    font-size: 16px;
}

.article-views {
    text-align: center;
    left: 0;
    right: 0;
    bottom: 10px;
    position: absolute;
    font-size: 12px;
    color: #CBCBCB;
}

.article-views svg {
    position: relative;
    top: -1px;
    margin-right: 3px;
}

.article-winary {
    padding-bottom: 80px;
    color: #606060;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
}

.article-winary:hover {
    -webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.16);
}

.article-winary .article-title {
    text-align: center;
    font-size: 21px;
}

.article-winary .article-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #002238;
    line-height: 1;
}

.article-winary .article-info div {
    position: relative;
    padding: 5px 10px 5px 40px;
}

.article-winary .article-info div svg {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.article-winary .article-info div:nth-child(2) svg {
    left: 3px;
}


/*
=====================================*/
.page-header { 
    height: auto;
    position: relative;
    z-index: 2;
    margin-top: -150px;
    padding-top: 150px;
}

.page-header .container {
    position: relative;
}

.page-header-product {
    padding-bottom: 150px;
}

.page-header-tourism {
    height: 500px;
    margin-top: -150px;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    padding-top: 170px;
}

@media (min-width: 768px) {
    .page-header-tourism {
        padding-top: 250px;
        height: 600px;
        margin-top: -220px;
    }
}

.page-header-hall {
    height: 600px;
    margin-top: -110px;
    background-repeat: no-repeat;
    background-position: 70% 50%;
    padding-top: 170px;
}

@media (min-width: 768px) {
    .page-header-hall {
        padding-top: 170px;
        height: 600px;
        margin-top: -110px;
        background-position: 50% 30%;
    }
}

@media (min-width: 992px) {
    .page-header-hall {
        padding-top: 190px;
        height: 720px;
        margin-top: -150px;
        background-position: 50% 100%;
    }
}

.page-tourism .header-top {
    background-color: transparent;
}


/*
=====================================*/
.cat-item{
    background-color: #f4f4f4;
    display: block;
    margin-bottom: 20px;
    border-radius: 5px;
    height: 87px;
    overflow: hidden;
    color: #002238;
    font-size: 14px;
    position: relative;
    padding: 15px 100px 15px 15px;
    transition: color .3s;
}

.cat-item img{
    position: absolute;
    right: -20px;
    top: 5px;
    transform: rotate(25deg);
    width: 180px;
}

.cat-item:hover{
    color: #a61744;
    text-decoration: none;
}

/*
=====================================*/
.cats {
    list-style: none;
    padding: 10px;
    margin: 20px auto 0;
    width: auto;
    background-color: #ebeff2;
    border-radius: 10px;
}

.cats li {
    margin: 0 0 15px;
    min-width: 50%;
}

@media (min-width: 768px) { 
    .cats li {
        min-width: 10px;
        margin: 0 20px 10px;
    }
}

@media (min-width: 992px) {
    .cats li {
        margin: 0 25px;
    }
}

.cats li a {
    color: #8F8F8F;
    display: block;
    font-size: 13px;
}

.cats li a:hover {
    color: #A21C3B;
    text-decoration: none;
}

.cats li a:hover img {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.cats li a span {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
    z-index: 2;
}

.cats li a span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -18px;
    background-color: #fff;
    width: 36px;
    height: 36px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.cats li a span img {
    width: 80px;
    position: absolute;
    top: 5px;
    left: 50%;
    margin-left: -40px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.cats li.active a {
    color: #A21C3B;
}


/*
=====================================*/

.cat-pagetitle {
    font-size: 21px;
    position: relative;
    top: 30px;
    margin: 0;
}

.cat-pagetitle-block {
    top: 25px;
}

.cat-pagetitle-block>span {
    width: 116px;
    height: 100px;
    position: relative;
}

.cat-pagetitle-block>span img {
    width: 170px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -85px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.cat-pagetitle-block>span span {
    display: block;
    position: absolute;
    width: 116px;
    height: 116px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    top: 25px;
    left: 50%;
    margin-left: -58px;
    z-index: -1;
}


/*
=====================================*/

.navbar-filter,
.navbar-cats {
    position: relative;
    background-color: #F8F8F8;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #002238;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0;
    cursor: pointer;
}

@media (min-width: 768px) {
    .navbar-filter,
    .navbar-cats {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.navbar-filter .navbar-toggler,
.navbar-cats .navbar-toggler {
    position: relative;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    padding: 7px 10px 4px;
    float: none;
    display: block;
    height: auto;
}

.navbar-filter svg,
.navbar-cats svg {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: -1px;
}

.navbar-filter svg path,
.navbar-cats svg path {
    fill: #002238;
}

.navbar-cats .navbar-toggler {
    margin: 0 auto;
}

/*
=====================================*/

.filter {
    width: 100%;
    font-size: 14px;
    border: 1px solid #F8F8F8;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .filter {
        border: none;
    }
}

.filter-block-title {
    width: 100%;
    color: #B2936D;
    font-size: 12px;
}

.filter fieldset {
    padding: 0;
    margin: 0;
    border: none;
}

.filter fieldset+fieldset {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .filter fieldset+fieldset {
        margin-top: 50px;
    }
}

.filter ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.filter-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 15px;
}

.filter label {
    display: block;
    position: relative;
    color: #606060;
    cursor: pointer;
}

.filter label:hover {
    color: #002238;
}

.filter label span::before {
    border-color: #002238;
}

.filter input[type=checkbox] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.filter input[type=checkbox]+span {
    position: relative;
    display: block;
    padding: 0 0 0 30px;
}

.filter input[type=checkbox]+span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    border: 1px solid #E8E8E8;
    background-color: #fff;
    display: block;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.filter input[type=checkbox]:checked+span {
    color: #002238;
}

.filter input[type=checkbox]:checked+span::before {
    background: url(../images/check.svg) no-repeat 50% 50% #fff;
}

#mse2_filters .mse2_number_slider {
    font-size: .7em;
    margin-bottom: 10px;
}

.mse2_number_inputs {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .mse2_number_inputs {
        margin-right: -15px;
    }
}

#mse2_filters .mse2_number_inputs label {
    display: inline-block;
}

.filter .mse2_number_inputs label {
    display: inline-block;
    font-size: 0.75em;
    color: #898989;
    margin: 0;
    vertical-align: top;
}

.filter .mse2_number_inputs label:last-child {
    float: right;
}

.filter .mse2_number_inputs input {
    display: inline-block;
    border: 1px solid #E6E8ED;
    padding: 4px 3px 2px;
    width: auto;
    font-size: 1em;
    color: #898989;
    width: 50px;
    height: 30px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
}

.filter .ui-widget.ui-widget-content {
    border: none;
    height: 3px;
    background-color: #ddd;
    margin: 0;
}

.filter .ui-widget-header {
    background-color: #002238;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.filter .ui-slider-handle.ui-state-default {
    width: 5px;
    height: 16px;
    background-color: #002238;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
}

.filter .ui-slider-horizontal .ui-slider-handle {
    margin: 0 0 0 -6px;
    top: -5.5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}



/*
======================================*/ 
.filter-list__see-btn {
    background: none;
    border: none;
    color: #002238; 
    font-size: 14px;
    line-height: 20px;
    margin: 15px 0 0 0;
    display: none;
    padding: 0 ; 
    font-weight: 500;
    position: relative;
    text-decoration: underline;
    text-align: left;
}
  
.filter-list__see-btn::after { 
    display: block;
    height: 1px; 
    background: #002238;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
}

.filter-list__see-btn:focus,
.filter-list__see-btn:active{
    outline: none
}

.filter-list.active .filter-list__item{
    display: block !important
}

/* filter sort brands
====================================*/
.filter-list-vendor{
    display: flex;
    flex-direction: column;
}

.filter-list-vendor .filter-list__see-btn{
    order: 99;
    display: block;
}

.filter-list-vendor li{
    order: 16;
    display: none;
}

.section-2970 .filter-list-vendor li,
.page-vendor .filter-list-vendor li{
    order: 16;
    display: block;
}

.section-2970 .filter-list-vendor .filter-list__see-btn,
.page-vendor .filter-list-vendor .filter-list__see-btn{
    display: none;
}


.filter-list-vendor.active li{ 
    display: block;
}

.filter-list-vendor .fb-8{
    order: 1;
    display: block;
}

.filter-list-vendor .fb-24{
    order: 2;
    display: block;
}

.filter-list-vendor .fb-81{
    order: 3;
    display: block;
}

.filter-list-vendor .fb-13{
    order: 4;
    display: block;
}

.filter-list-vendor .fb-61{
    order: 5;
    display: block;
}

.filter-list-vendor .fb-11{
    order: 6;
    display: block;
}

.filter-list-vendor .fb-10{
    order: 7;
    display: block;
}

.filter-list-vendor .fb-78{
    order: 8;
    display: block;
}

.filter-list-vendor .fb-28{
    order: 9;
    display: block;
}

.filter-list-vendor .fb-43{
    order: 10;
    display: block;
}

.filter-list-vendor .fb-27{
    order: 11;
    display: block;
}

.filter-list-vendor .fb-72{
    order: 12;
    display: block;
}

.filter-list-vendor .fb-2{
    order: 13;
    display: block;
}

.filter-list-vendor .fb-5{
    order: 14;
    display: block;
}

.filter-list-vendor .fb-23{
    order: 15;
    display: block;
}

.filter-list__item .disabled,
.filter-list .disabled{
    display: none;
}

.filter-price .filter-list .disabled{
    display: block;
}

/*
====================================*/
.view-change a {
    display: inline-block;
    opacity: .3;
}

.view-change a.active {
    opacity: 1;
}

.view-change a+a {
    margin-left: 10px;
}

.view-change a svg {
    width: 16px;
    height: 16px;
}

.view-change a:hover {
    opacity: .8;
}


/*
=====================================*/

.sort-block {
    border-bottom: 1px solid #E4E4E4;
    font-size: 14px;
}

.sort-block span {
    color: #B2936D;
}

.sort-block em {
    font-style: normal;
}

.sort-block a {
    color: #B2936D !important;
    position: relative;
}

.sort-block .sort span::after {
    content: "" !important;
    margin-left: 5px;
    position: relative;
    top: -1px;
    display: inline-block;
    border: 2px solid #CBCBCB;
    width: 7px;
    height: 7px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sort-block .sort[data-dir="desc"] span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sort-block .sort[data-dir="asc"] span::after {
    top: 1px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.sort-block-count {
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .sort-block-count {
        text-transform: none;
    }
}

.msearch2 .btn-default {
    display: none !important;
}

#mse2_mfilter .btn_more {
    width: auto !important;
    min-width: 150px;
}

.btn.animate svg {
    animation: spin 1s infinite linear;
}

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

/*
=====================================*/
.product-item {
    position: relative;
    z-index: 3;
    margin-top: -130px;
}

.product-item-img {
    display: block;
}

.product-item-img img {
    max-width: 100%;
}

@media (min-width: 992px) {
    .product-item-img img {
        max-width: 85%;
    }
}

.product-item-ch {
    padding-top: 40px;
}

@media (min-width: 768px) {
    .product-item-ch {
        padding-top: 25px;
    }
}

@media (min-width: 992px) {
    .product-item-ch {
        padding-top: 94px;
    }
}

.product-item-data {
    padding-top: 20px;
}

@media (min-width: 768px) {
    .product-item-data {
        padding-top: 70px;
    }
}

.product-item-brand {
    font-size: 14px;
}

.product-item-brand a {
    color: #002238;
}

.product-item-pagetitle {
    font-size: 21px;
}

.product-item-rating{
    position: relative;
    z-index: 3;
}

/*
.product-item-rating .gwmr-widget-container.direction-h{
    height: 110px; 
    background-repeat: no-repeat;
    background-size: contain;
}

.product-item-rating .gwmr-widget-container.direction-h .award-wine-widget img.rating{
    top: 31px;
    left: 97px;
    width: 120px;
}
*/

.product-item-stock {
    font-size: 14px;
}

.product-item-stock.instock {
    color: #35CE75;
}

.product-item-stock.notstock {
    color: #A21C3B;
}

.btn-notstock {
    color: #002238;
    height: 40px;
    background-color: #f3f3f3;
    width: 80%;
    text-align: center;
    cursor: default !important;
}

.product-item-action {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .product-item-action {
        margin-top: 40px;
    }
}

.product-item-action .btn {
    width: 135px;
    height: 35px;
    line-height: 22px;
}

.product-item-action .btn-middle {
    width: auto;
    font-size: 12px;
    height: 45px;
    line-height: 35px;
}

.product-item-action .quantity {
    font-size: 14px;
}

.product-item-action .quantity input {
    height: 35px;
    font-size: 14px;
}

.product-item-old-price {
    font-size: 14px;
    color: #8F8F8F;
    padding-top: 2px;
    display: inline-block;
    position: relative;
}

.product-item-old-price::before {
    content: "";
    display: block;
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #8F8F8F;
}

.product-item-price {
    font-size: 20px;
}

.ch-list {
    list-style: none;
    margin: 0;
    margin-top: 20px;
    color: #002238;
    font-size: 14px;
    padding: 0;
}

@media (min-width: 992px) {
    .ch-list {
        margin-top: 40px;
    }
}

.ch-list li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 30px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .ch-list li {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .ch-list li {
        width: 100%;
    }
}

.ch-list li svg {
    position: absolute;
    left: 0;
    top: -4px;
    width: 25px;
    height: 28px;
}

.ch-list li span {
    margin-left: 10px;
    color: #8F8F8F; 
}

.ch-list-year svg {
    top: -2px !important;
}

@media (min-width: 768px) {
    .ch-list-volume {
        margin-top: 0;
    }
}

.product-item-awards {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.product-item-awards img {
    max-width: 70px;
}

.product-volume-label{ 
    position: absolute;
    left: 15px;
    top: 35%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #a61744;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
}

/*
========================================= */
.product-gallery .swiper-slide:active,
.product-gallery .swiper-slide:focus,
.product-gallery .swiper-slide a:active,
.product-gallery .swiper-slide a:focus{
    outline: none;
    box-shadow: none;
    border: none;
}

.product-gallery img,
.product-gallery-thumbs img{
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.product-gallery a{ 
    height: 300px; 
    display: flex;
    align-items:center;
    justify-content: center;   
}

@media(min-width: 992px) {
    
    .product-gallery a{ 
        height: 500px;    
    }
}

@media(min-width: 1200px) {
    
    .product-gallery a{ 
        height: 600px;    
    }
}

.product-gallery-thumbs{
    margin-top: 30px;
}

.product-gallery-thumbs .swiper-slide {
    border: 1px solid #fff;
    height: 80px;
    text-align: center;
    opacity:  .5;
    cursor: pointer;
}

.product-gallery-thumbs .swiper-slide-thumb-active{ 
    border-color: #eee;
    opacity: 1;
}

.product-gallery-thumbs img{
    max-height: 100%;
}

.opacity {
    opacity: 0;
}

.zoomContainer{
    z-index: -9;
}

.zoomWindow{
    border-radius: 10px;
}

@media(max-width: 767px){
    .zoomContainer{
        display: none !important;
    }
}

.zoom-active{
    z-index: 9;
}

.zoomImg{
    z-index: -1;
}

.zoomImg.is-active{
    z-index: 9;
}

/*
=====================================*/

.lk-menu {
    padding: 0;
    list-style: none;
    font-size: 14px;
    text-align: center;
}

.lk-menu li {
    margin: 0 25px;
}

.lk-menu li svg {
    display: block;
    margin: 0 auto 10px;
}

.lk-menu li svg path {
    fill: #8F8F8F;
}

.lk-menu li a {
    color: #8F8F8F;
    line-height: 1;
    display: block;
}

.lk-menu li a:hover {
    text-decoration: none;
    color: #A01F3D;
}

.lk-menu li a:hover svg path {
    fill: #A01F3D;
}

.lk-menu li.active a {
    color: #A01F3D;
}

.lk-menu li.active svg path {
    fill: #A01F3D;
}

@media (min-width: 768px) {
    .lk-menu li {
        min-width: 105px
    }
}


/*
=====================================*/

.history {
    font-size: 14px;
    text-align: center;
}

.history-head {
    background-color: #FFECC2;
    font-weight: bold;
}

.history-head .row>* {
    padding-top: 25px;
    padding-bottom: 25px;
}

.history-row {
    padding-top: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #CBCBCB;
}

.history a {
    color: #8F8F8F;
    text-decoration: underline;
}

.history a:hover {
    text-decoration: none;
}

.status {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .status {
        margin: 0;
    }
}

.status-1 {
    color: #FFA04E;
}

.status-2 {
    color: #0063A2;
}

.status-3 {
    color: #58B536;
}

.status-4 {
    color: #A21C3B;
}


/*
=====================================*/

.change-pass {
    font-size: 12px;
    background-color: #F1F1F1;
    height: 40px;
}

.change-pass-block {
    padding-top: 25px;
    display: none;
}

.change-pass-block .error {
    color: #ff0000;
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 100%;
    line-height: 1;
}


/* events
=====================================*/
.tabs-events .tabs__caption li {
    padding: 0;
    border: none;
    margin: 0;
    text-wrap: normal;
}

.tabs-events .tabs__caption li.active .event-tab-dt {
    background-color: #FFECC2;
    color: #002238;
}

.event-tab-dt span:first-child {
    text-transform: capitalize;
}

@media (min-width: 1200px) {
    .tabs-events .tabs__caption li {
        margin: 0 15px;
    }
}

.tabs-events .tabs__content {
    min-height: 50px;
}

.event {
    display: block;
    text-align: center;
    background-color: #fff;
    color: #002238;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    height: 100%;
}

.event:hover {
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    color: #A21C3B;
}

.event img {
    max-width: 100%;
}

.event-photo {
    margin: -45px 0 20px;
    font-size: 14px;
    color: #B2936D;
}

.event-photo-icon {
    margin: 0 auto 7px;
    width: 45px;
    height: 45px;
    background-color: #FFECC2;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.event-photo-icon svg {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.event span {
    display: block;
}

.event-data {
    padding: 20px;
}

.event-title {
    font-size: 16px;
    min-height: 40px;
}

.event-tab-dt {
    font-family: Montserrat;
    font-size: 16px;
    color: #CBCBCB;
    padding: 8px 10px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .event-tab-dt {
        font-size: 21px;
        padding: 11px 13px;
    }
}

.event-tab-dt:hover {
    color: #002238;
}

.event-tab-dt span {
    display: block;
}

.event-tab img {
    max-width: 100%;
    position: relative;
    margin-top: -10px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .event-tab img {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .event-tab img {
        margin-top: -160px;
    }
}

.event-tab-title {
    display: block;
}

.event-tab-title:hover {
    text-decoration: none;
    color: #A21C3B;
}

.event-tab-info>* {
    position: relative;
    padding: 15px 20px 11px 45px;
    line-height: 1;
    font-size: 14px;
}

.event-tab-info>* svg {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
}

.event-meta-col {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
}

.event-meta-col-dt {
    width: 50%;
}

.event-meta-col svg {
    width: 17px;
    height: 17px;
    fill: #b2936d;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

@media(min-width: 768px) {
    .event-meta-col {
        padding-left: 30px;
        padding-right: 30px;
        width: auto;
    }
    .event-meta-col-dt {
        width: auto;
    }
    .event-meta-col+.event-meta-col {
        border-left: 1px solid #e2e2e2;
    }
}


/*
=====================================*/

.post {
    position: relative;
    z-index: 4;
}

.post-header {
    height: 300px;
}

@media (min-width: 768px) {
    .post-header {
        height: 420px;
    }
}

@media (min-width: 768px) {
    .post-image {
        margin-top: -130px;
    }
}

.post-image img {
    max-width: 100%;
}

.post-header .link {
    font-size: 13px;
}

.post-header .link:hover {
    text-decoration: none;
    color: #002238;
}


/*
=====================================*/

.gallery-content .row {
    margin-right: -10px;
    margin-left: -10px;
}

.gallery-content .row>* {
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
}

.gallery-content img {
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
}

.gallery-content img:hover {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/*
=====================================*/

.tourism-infografik {
    margin-top: 100px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .tourism-infografik {
        font-size: 16px;
    }
}

.tourism-infografik span {
    display: block;
    margin-top: 15px;
}

.ti-icon {
    position: relative;
    height: 40px;
}

.ti-icon svg {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}


/*
=====================================*/

.winary-header {
    height: 300px;
}

@media (min-width: 768px) {
    .winary-header {
        height: 360px;
    }
}

.winary-head {
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

@media (min-width: 768px) {
    .winary-head {
        margin-top: -100px;
    }
}

.winary-gallery {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    font-size: 14px;
    color: #002238;
}

.winary-gallery img {
    max-width: 100%;
}

.winary-gallery span {
    display: block;
}

.winary-gallery span span {
    color: #B2936D;
}

.winary-gallery span .photo-count {
    display: inline-block;
}

.winary-gallery-data {
    padding: 20px;
}

.winary-gallery:hover {
    text-decoration: none;
    color: #A21C3B;
}

.winary-logo {
    position: relative;
}

@media (min-width: 768px) {
    .winary-logo {
        height: 100px;
    }
    .winary-logo img {
        position: absolute;
        display: block;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        max-width: 100%;
        max-height: 100%;
    }
}


/*
=====================================*/

.tour-item {
    border: 1px solid #E6E8ED;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
}

.tour-item:hover {
    background-color: #F8F8F8;
}

.tour-item-head {
    font-size: 21px;
}

.tour-item-head2 {
    font-size: 18px;
}

.tour-item-title {
    color: #B2936D;
}

.tour-item-duration {
    font-size: 18px;
}

.tour-item-col-price {
    padding-right: 15px;
}

.tour-item-col-price .row+.row {
    margin-top: 5px;
}

.tour-item-price {
    font-weight: bold;
    font-size: 18px;
}

.tour-item-time {
    font-size: 12px;
    color: #B2936D;
}

.tour-item-desc {
    font-size: 12px;
    color: #BBACA3;
    line-height: 20px;
    margin-top: 5px;
    height: 65px;
    overflow: hidden;
}

.tour-item-desc.show {
    height: auto;
}

.tour-item-desc p {
    margin-bottom: 5px;
}

.tour-item-desc ul {
    padding-left: 20px;
}

.tour-item .btn {
    height: 45px;
    font-size: 12px;
}

.show-read-more .more-text {
    display: none;
}

.read-more {
    display: block;
    color: #B2936D;
    text-decoration: underline;
    margin-top: 5px;
    font-size: 12px;
    margin-top: 5px;
}

.read-more-hide {
    display: none;
}

.read-more:hover {
    text-decoration: none;
    color: #002238;
}

.tour-item-desc.show~.read-more {
    display: none;
}

.tour-item-desc.show~.read-more-hide {
    display: block;
}


/*
=====================================*/

.tour-form {
    width: 100%;
    max-width: 800px;
    font-size: 14px;
}

.tour-form select:required:invalid {
    color: #8F8F8F;
}

.tour-form option[value=""][disabled] {
    display: none;
}

.tour-form option {
    color: black;
    padding: 10px 0;
    line-height: 2;
    font-size: 16px;
}

.tour-form-block {
    padding: 25px 27px 0;
}

.tour-form-contact {
    padding: 25px 27px;
    background-color: #F8F8F8;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.tour-form .btn {
    min-width: 155px;
}

.label-datetime {
    position: relative;
    display: block;
    z-index: 3;
}

.label-datetime input {
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.label-datetime svg {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/*
=====================================*/

.map {
    height: 680px;
}

.map-small {
    height: 400px;
}

.contact {
    background-color: #fff;
    height: 100%;
    font-size: 13px;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .contact .title {
        font-size: 18px;
        min-height: 50px;
    }
}

.contact img {
    width: 100%;
}

.contact-data {
    padding: 25px 15px 35px;
}

.contact-line {
    margin-top: 15px;
    position: relative;
    padding-left: 25px;
    min-height: 15px;
}

.contact-line svg {
    position: absolute;
    left: 0;
    top: 0;
    min-height: 13px;
}

.contact-line a {
    color: #002238;
}

.contact:hover {
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}


/*
=====================================*/

.taste-hall-address a {
    color: #002238;
}

.taste-hall-address svg {
    display: block;
    margin: 0 auto 10px;
}


/*
=====================================*/

.cart {
    font-size: 14px;
}

.cart-header {
    border-bottom: 1px solid #B2936D;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
}

.cart-row {
    padding: 15px;
    border-bottom: 1px solid #CBCBCB;
}

.cart .product-details {
    color: #8F8F8F;
    line-height: 1.4;
}

.cart img {
    max-width: 70%;
    display: block;
    margin: 0 auto;
}


/*
.cart-footer {
    padding-left: 15px;
    padding-right: 15px;
}
*/

@media (min-width: 768px) {
    .cart img {
        max-width: 60%;
        max-height: 150px;
    }
}

.cart a {
    color: #002238;
}

@media (min-width: 768px) {
    .cart .quantity input {
        font-size: 16px;
    }
}

.cart .btn-cart-remove:hover svg path {
    fill: #A21C3B;
}

.cart-total {
    font-size: 15px;
}

.cart-total span {
    font-size: 18px;
    display: inline-block;
    padding: 2px 0 0 5px;
}

.cart-final-price {
    font-size: 18px;
}

.cart-block-desc {
    font-size: 16px;
}

.cart-block input,
.cart-block select {
    height: 35px !important;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 2px !important;
    margin-bottom: 25px !important;
}

.cart-block .map {
    height: 100%;
    min-height: 300px;
}

.cart-block .contact-line {
    font-size: 13px;
}

.btn-cart-remove {
    min-width: 50px;
}


/*
=====================================*/

.delivery .row>* {
    margin-bottom: 20px;
}

.delivery-block {
    min-height: 100px;
}

.delivery-point {
    position: relative;
    z-index: 2;
    padding: 15px;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.delivery-point:hover {
    background-color: #F8F8F8;
}

.payment .btn-radio {
    height: auto;
}

.payment-col-4 {
    display: none;
}

.payment-4-hidden {
    display: none !important;
}


/*
===================================*/

.payment-description {
    margin-top: 10px;
    margin-bottom: 20px;
    color: #8F8F8F;
    font-size: 14px;
}

.btn-radio {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #002238;
    font-size: 14px;
    height: 100%;
}

.btn-radio input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    text-indent: -9999;
}

.btn-radio input:checked+span {
    background-color: #FFECC2;
}

.btn-radio input:checked+span svg path {
    fill: #B2936D;
}

.btn-radio img {
    display: block;
    margin: 0 auto 10px;
}

.btn-radio svg {
    display: block;
    margin: 0 auto 10px;
}

.btn-radio>span {
    display: block;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #F8F8F8;
    padding: 25px 5px 20px;
    height: 100%;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.btn-radio>span:hover {
    background-color: #FFECC2;
}

.btn-radio>span span {
    display: block;
    color: #002238;
}

.btn-radio-icon {
    position: relative;
    overflow: hidden;
    height: 35px;
    margin-bottom: 10px;
}

.btn-radio-icon img,
.btn-radio-icon svg {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 130px;
    max-height: 100%;
}

.btn-radio-icon img path,
.btn-radio-icon svg path {
    fill: #cbcbcb;
}


/*
=====================================*/

.menu-anchor {
    list-style-type: none;
    margin: 0;
    padding: 0;
} 

@media (min-width: 576px) {
    .menu-anchor li {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .menu-anchor li {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

.menu-anchor a {
    display: block; 
    color: #A21C3B;
    font-size: 16px;
    margin-bottom: 10px;
}


/*
=====================================*/

.hall-history {
    z-index: 2;
}

@media (min-width: 992px) {
    .hall-history .content {
        margin-top: -130px;
    }
}

.hall-history img {
    position: relative;
    z-index: 3;
    max-width: 100%;
}

.hall-now {
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FFECC2;
    font-size: 14px;
    padding: 20px 0 0;
    opacity: 0;
}

@media (min-width: 992px) {
    .hall-now {
        padding: 0;
        width: 300px;
        position: absolute;
    }
}

.hall-now .btn {
    margin-bottom: -15px;
    margin-top: 10px;
}


/*
=====================================*/

.interier {
    position: relative;
}

.interier-outer::after {
    content: "";
    position: absolute;
    left: 35px;
    right: 0;
    bottom: -35px;
    height: 205px;
    background-color: #FFECC2;
    display: none;
}

@media (min-width: 992px) {
    .interier-outer::after {
        display: block;
        right: 100%;
    }
}

@media (min-width: 992px) {
    .interier-outer.animate-start::after {
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
        -webkit-animation: setPosition 1s linear forwards;
        animation: setPosition 1s linear forwards;
    }
}

.interier .slider-nav {
    position: relative;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
    opacity: 0;
}

.interier.animate .slider-nav {
    opacity: 1;
}

.interier .slider-nav-arrows {
    position: relative;
    white-space: nowrap;
    width: 300px;
    margin: 0 auto;
    max-width: 100%;
}

.interier .slider-nav-arrows button {
    text-indent: 0;
    font-size: 12px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    width: 45px;
    height: 45px;
    margin: 0 25px;
    opacity: 1;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
    background-color: #fff;
}

@media (min-width: 992px) {
    .interier .slider-nav-arrows button {
        margin: 0 10px;
    }
}

@media (min-width: 1200px) {
    .interier .slider-nav-arrows button {
        margin: 0 25px;
    }
}

.interier .slider-nav-arrows button span {
    display: none;
}

.interier .slider-nav-arrows button::before {
    left: 13px;
    right: 13px;
}

.interier .slider-nav-arrows button::after {
    width: 7px;
    height: 7px;
    left: 13px;
}

.interier .slider-nav-arrows button:hover {
    background-color: #FFECC2;
}

.interier .slider-nav-arrows button.owl-prev:hover span {
    color: #8F8F8F;
}

@media (min-width: 992px) {
    .interier .slider-nav-arrows button.owl-prev:hover~button {
        background-color: transparent !important;
    }
}

.interier .slider-nav-arrows button.owl-next {
    background-color: #FFECC2 !important;
    opacity: 1;
}

.interier .slider-nav-arrows button.owl-next::before {
    background-color: #002238;
}

.interier .slider-nav-arrows button.owl-next::after {
    border-color: #002238;
    left: auto;
    right: 13px;
}

.interier .slider-nav-dots {
    position: absolute;
    top: 7px;
    left: 50%;
    line-height: 1;
    margin: 0 0 0 -60px;
    padding: 0;
    height: 30px;
    width: 100px;
    display: block;
}

.interier .slider-nav-dots::before {
    content: "/ ";
    color: #B2936D;
    font-size: 21px;
    position: absolute;
    right: 20px;
    bottom: 0;
}

.interier .slider-nav-dots::after {
    content: counter(dots);
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #B2936D;
    font-size: 18px;
}

.interier .slider-nav-dots .owl-dot {
    opacity: 0;
    top: -2px;
    position: absolute;
    padding: 0;
}

.interier .slider-nav-dots .owl-dot::after {
    display: none;
}

.interier .slider-nav-dots .owl-dot.active {
    opacity: 1;
}

@-webkit-keyframes setPosition {
    0% {
        right: 100%;
    }
    100% {
        right: -103px;
    }
}

@keyframes setPosition {
    0% {
        right: 100%;
    }
    100% {
        right: -103px;
    }
}


/*
=====================================*/

.line::after {
    content: "";
    display: none;
    position: absolute;
    background-color: #CBCBCB;
    z-index: 99;
    width: 1px;
    height: 0;
}

@media (min-width: 768px) {
    .line::after {
        display: block;
    }
}

.line1 {
    position: relative;
}

.line1::after {
    top: 100%;
    left: 50px;
    margin: 20px 0 0;
}

.line1.animate1::after {
    -webkit-animation: setHeightLine1 1s ease-in forwards;
    animation: setHeightLine1 1s ease-in forwards;
}

.line2::after {
    top: 100%;
    left: 50%;
    margin: 30px 0 0;
}

.line2.animate2::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation: setHeightLine2 1s ease-in forwards;
    animation: setHeightLine2 1s ease-in forwards;
}

@-webkit-keyframes setHeightLine1 {
    0% {
        height: 0;
    }
    100% {
        height: 240px;
        opacity: 1;
        @media (min-width: 992px) {
            height: 305px;
        }
    }
}

@keyframes setHeightLine1 {
    0% {
        height: 0;
    }
    100% {
        height: 240px;
        opacity: 1;
        @media (min-width: 992px) {
            height: 305px;
        }
    }
}

@-webkit-keyframes setHeightLine2 {
    0% {
        height: 0;
    }
    100% {
        height: 70px;
        opacity: 1;
        @media (min-width: 992px) {
            height: 120px;
        }
    }
}

@keyframes setHeightLine2 {
    0% {
        height: 0;
    }
    100% {
        height: 70px;
        opacity: 1;
        @media (min-width: 992px) {
            height: 120px;
        }
    }
}


/*
=====================================*/

.animate-img-after {
    position: relative;
    display: inline-block;
}

.animate-img-after::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
    background-color: #F8F8F8;
}

.animate-img-after.animate-after-start::after {
    -webkit-animation: setWidhAfter .8s ease forwards;
    animation: setWidhAfter .8s ease forwards;
}

@-webkit-keyframes setWidhAfter {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

@keyframes setWidhAfter {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}


/*
===================================*/
.content {
    font-size: 16px;
    color: #002238;
    line-height: 22px;
}

.content p+p {
    margin-top: 15px;
}

.content table p {
    margin-bottom: 1px;
}

.content table p+p {
    margin-top: 5px;
}

@media (min-width: 768px) {
    .content p+p {
        margin-top: 25px;
    }
    .content table p+p {
        margin-top: 5px;
    }
    .winary-data .content p+p {
        margin-top: 10px;
        margin-bottom: 0;
    }
}

.content img {
    max-width: 100%;
    height: auto !important;
}

.content ul,
.content ol {
    margin: 10px 0 30px 20px;
    padding: 0;
}

.content ul {
    list-style: disc;
}

.content ol {
    list-style: decimal;
}

.content li {
    margin: 0 0 10px 0;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    margin-bottom: 30px;
    font-weight: bold;
    font-family: Montserrat;
}

.content img.left {
    float: left;
    width: 300px;
    margin: 5px 20px 20px 0;
}

.content img.right {
    float: right;
    width: 300px;
    margin: 5px 0 20px 20px;
}

.content table {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 30px;
    vertical-align: top;
}

.content table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.justifyleft {
    float: left;
}

.justifyright {
    float: right;
}

.content a {
    color: #A21C3B !important;
    text-decoration: underline !important;
}

.content a:hover {
    text-decoration: none !important;
}

.slider-images{
    text-align: center;
    padding-bottom: 50px
}

.slider-images img{
    max-width: 100%;
}

.slider-images .swiper-pagination{
    top: unset;
    bottom: 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent)
}


/* pagination
=====================================*/

.pagination {
    text-align: center;
    width: 100%;
    margin: 20px 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #222;
    text-align: center;
}

.pagination li a:hover {
    background: #f3964a;
    text-decoration: none;
    color: #fff;
}

.pagination li.active a {
    background: #f3964a;
    color: #fff;
    text-decoration: none;
}


/* age 18+
=====================================*/
#age .modal-dialog {
    background: #fff;  
    background-size: 100%;
    color: #fff;
    width: 100%; 
    max-width: 600px;
    padding: 30px ;
    border-radius: 10px;
}  

.age-limit .btn {
    height: 40px;
    min-width: 200px; 
    border-radius: 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

#age img{
    max-width: 117px;
}

.age-limit-desc{
    color: #002238;
    font-size: 16px;
}

@media (min-width: 475px) {
    #age .modal-dialog {
        padding: 40px 100px;
    }

    .age-limit .btn { 
        min-width: 250px; 
    }
} 

/* auth
=====================================*/

#auth .modal-dialog {
    width: 100%;
    max-width: 510px;
    padding-top: 40px;
    padding-bottom: 40px;
}

#auth .btn-close {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #CBCBCB;
    font-size: 30px;
}

#auth .btn-close:hover {
    color: #A21C3B;
}

.tabs-auth {
    width: 100%;
    max-width: 330px;
    font-size: 14px;
}

.auth__caption {
    border: none;
}

.auth__caption li {
    width: 50%;
}

.auth__caption li a {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    color: #8F8F8F;
    border-bottom: 1px solid transparent;
}

.auth__caption li a:hover {
    color: #002238;
    text-decoration: none;
}

.auth__caption li.active a {
    color: #002238;
    border-color: #002238;
}

.tabs-auth .ajaxlogin-form {
    padding: 0;
}

.tabs-auth .ajaxlogin-action {
    width: auto;
}

.tabs-auth .ajaxlogin-form label {
    padding: 0;
    margin: 0;
    display: block;
}

.btn-opacity {
    opacity: 0;
}


/*
======================================*/

#iu-modal .modal-dialog {
    width: 100%;
    max-width: 510px;
    padding: 30px 20px;
}

.modal-dialog img {
    max-width: 100%;
}

#iu-modal .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}


/* added in cart
=====================================*/

#added .modal-dialog {
    width: 100%;
    max-width: 600px;
}

#added .btn-close {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #CBCBCB;
    font-size: 30px;
}

#added .btn-close:hover {
    color: #A21C3B;
}

#added .btn {
    height: 45px;
    line-height: 42px;
    min-width: 170px;
}

.added-title {
    font-size: 15px;
}

.added-product img {
    max-width: 100%;
    max-height: 90px;
}

.added-product-title {
    font-size: 13px;
}

.added-product-count {
    font-size: 15px;
}

.added-product-price {
    font-size: 18px;
}

.added-product-details {
    color: #8F8F8F;
    font-size: 13px;
    line-height: 1;
    margin-top: 5px;
}

.added-product-details span {
    display: inline-block;
}

.added-product-details span+span {
    margin-left: 9px;
    padding-left: 10px;
    border-left: 1px solid #8F8F8F;
}


/* footer
=====================================*/

.footer {
    background-color: #F8F8F8;
    font-size: 14px;
    padding-bottom: 13px;
}

.footer .container {
    border-top: 2px solid #fff;
    padding-top: 30px;
}

@media (min-width: 768px) {
    .footer .container {
        padding-top: 65px;
    }
}

.footer p {
    margin: 0;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #002238;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.footer ul {
    padding-left: 0;
    margin-left: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-menu a {
    color: #000;
    font-size: 14px;
    display: block;
    margin-top: 8px;
}

.footer-menu a:hover,
.footer-menu .active a {
    text-decoration: none;
    color: #A21C3B;
}

.socials {
    margin: 10px 0 25px;
}

.socials a {
    display: inline-block;
}

.socials a+a {
    margin-left: 15px;
}

.pays img {
    margin-top: 5px;
}

.copy {
    margin-top: 55px;
}

.copy img {
    width: 75px;
}

@media (min-width: 992px) {
    .copy {
        margin-top: 75px;
    }
}

.copy p {
    margin-bottom: 0;
}

.mcd-mini-cart .not_empty,
.mcd-mini-cart .full .empty {
    display: none;
}

.mcd-mini-cart .full .not_empty {
    display: block;
}

.order-history-modal.fancybox-content {
    padding: 40px 20px;
}


/*
==============================================*/

.body-404 {
    background: url(../images/404.jpg) no-repeat 50% 50%;
    background-size: cover;
    color: #fff;
}

.title1-404 {
    font-weight: bold;
    font-size: 100px;
    margin: 20px 0 0;
}

.title2-404 {
    font-weight: bold;
    font-size: 20px;
}

.body-404 .btn-medium {
    min-width: 100px;
}

@media (min-width: 992px) {
    .title1-404 {
        font-size: 150px;
        margin: 20px 0 0;
    }
    .title2-404 {
        font-size: 30px;
    }
    .body-404 .btn-medium {
        min-width: 180px;
    }
}

#iu-inform .btn-middle {
    height: 45px;
    min-width: 160px;
}

.remind-fields {
    max-width: 250px;
    margin: 0 auto;
}

.remind-fields input {
    height: 35px !important;
}

.remind-text {
    max-width: 340px;
    margin: 0 auto;
    font-size: 14px;
}


/*
==============================================*/

.brand-logo img {
    max-height: 100px;
    max-width: 200px;
}

a.fancybox {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}


/*
==============================*/

.checkbox {
    display: block;
    position: relative;
    color: #606060;
    cursor: pointer;
    font-weight: normal;
    line-height: 1;
}

.checkbox:hover {
    color: #002238;
}

.checkbox span::before {
    border-color: #002238;
}

.checkbox input[type=checkbox] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.checkbox input[type=checkbox]+span {
    position: relative;
    display: block;
    padding: 0 0 0 25px;
}

.checkbox input[type=checkbox]+span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    display: block;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.checkbox input[type=checkbox]:checked+span {
    color: #002238;
}

.checkbox input[type=checkbox]:checked+span::before {
    background: url(../images/check.svg) no-repeat 50% 50% #fff;
}


/*
=================================*/

.coupon-code .mspc2 {
    margin: 0 0 40px;
}

.product-ticket .btn {
    height: 35px;
}


/*
=================================*/

.user-order-discount {
    width: 100%;
    max-width: 590px;
    margin: 50px auto;
}

.discount-ranges {
    position: relative;
    min-height: 110px;
    width: 100%;
}

.discount-ranges::before {
    content: '';
    position: absolute;
    top: 47px;
    left: 0;
    right: 0;
    height: 20px;
    background-color: #fafafa;
}

.range-progress {
    position: absolute;
    top: 47px;
    height: 20px;
    left: 0;
    width: 0;
    max-width: 100%;
    background: #fcedc6;
    background: -moz-linear-gradient(left, #fcedc6 0%, #f09645 100%);
    background: -webkit-linear-gradient(left, #fcedc6 0%, #f09645 100%);
    background: linear-gradient(to right, #fcedc6 0%, #f09645 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fcedc6', endColorstr='#f09645', GradientType=1);
}

.range-col {
    position: absolute;
    z-index: 3;
    margin-left: -25px;
}

.range-col.last{
    margin-left: -25px;
}

.range-col.range-col-zero{
    margin-left: 0;
}

.ds-range span {
    background: #efefef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    text-align: center;
    display: block;
    line-height: 40px;
    margin: 0 auto;
    font-size: 12px;
}

.range-col.active .ds-range span {
    background-color: #f9d19b;
    color: #942b3d
}

.ds-is-current {
    display: none;
    color: #000925;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

.range-col.active .ds-is-current {
    display: block;
}

.ds-price-zero {
    color: #8f8f8f;
    font-size: 12px;
    position: absolute;
    top: 93px;
    left: 0;
    white-space: nowrap;
}

.ds-price {
    color: #010101;
    font-size: 12px;
    position: relative;
    padding: 3px 15px;
    background-color: #fafafa;
    margin-bottom: 10px;
    white-space: nowrap;
}

.ds-price::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 7px 0 7px;
    border-color: #fafafa transparent transparent transparent;
}

.col-delivery-5{
    display: none;
}

/*
================================= */
.top-menu{
    display: flex;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.top-menu a{
    display: block;
    color: #5c3301;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 20px;
}

.btn-search{
    border: none;
    padding: 0;
    background-color: transparent;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.btn-search svg{
    width: 100%;
    height: 100%;
}

.header-user{
    margin: 0 10px 0 20px ;
    font-size: 14px;
    font-weight: 500;
}

.header-user svg{
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
}

@media(min-width: 992px){
    .header-user{
        margin: 0 5px 0 0;
    }
}

/*
=================================== */
.tourism-carousel{
    padding: 10px 20px 50px 20px;
    margin-left: -20px;
    margin-right: -20px;
    overflow: visible;
}

.tourism-item{
    display: block;
    width: 100%;
    height: 480px;
    position: relative;
    max-width: 285px;
    z-index: 3;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    transition: box-shadow .3s;
}

.tourism-item_image{ 
    position: absolute; 
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.tourism-item_image::after{ 
    content: '';
    position: absolute; 
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0, .35);
    transition: background-color .3s;
}

.tourism-item_image img{ 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tourism-item_logo{
    width: 75px;
    height: 75px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 15px;
    overflow: hidden;
}

.tourism-item_logo img{
    max-width: 80%;
    max-height: 85%;
}

.tourism-item_exc{
    position: absolute;
    text-align: right;
    top: 20px;
    right: 15px;
    font-size: 16px;
}

.tourism-item_exc span{
    display: block;
    font-weight: bold;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 5px;
}

.tourism-item .btn{
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    margin-top: -20px;
    height: 40px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    color: #a61744;
    opacity: 0; 
    transition: opacity 1s, background-color .3s, color .3s;
}

.tourism-item .btn:hover{
    background-color: #a61744;
    color: #fff; 
}

.tourism-item_bottom{
    position: absolute;
    bottom: 35px;
    left: 15px;
    right: 15px;
}

.tourism-item_title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.tourism-item:hover{
    color: #fff;
    text-decoration: none; 
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.tourism-item:hover .tourism-item_image::after{  
    background: rgba(0,0,0, .45);
}

.tourism-item:hover .btn{
    opacity: 1;
}

/*
=================================== */
.infoblocks{
    background-color: #ebeff2;
    padding: 40px 10px 0; 
    border-radius: 10px; 
}

.infoblock{
    margin-bottom: 50px;
    font-size: 14px;
}

.infoblock-head{
    margin-bottom: 20px;
} 

.infoblock-title{
    font-size: 18px;
    line-height: 1;
}

.infoblock-title strong{
    font-size: 28px;
    line-height: 1;
    margin-bottom: 3px;
    display: inline-block;
}

.infoblock-icon svg{
    width: 55px;
    height: 55px;
}

.infoblock-icon img{
    max-width: 55px;
    max-height: 55px;
}

@media(min-width: 768px){

    .infoblocks{ 
        padding: 40px 10px 10px;  
    }

    .infoblock{
        margin-bottom: 30px; 
    }
}


/*
=================================== */
.menu-section{
    margin: 50px auto 100px; 
    position: relative;
    font-size: 14px;
}

.menu-section::before{
    content: '';
    position: absolute;
    background: url(../images/menu-bg.png) no-repeat 50% 50%; 
    background-size: cover;
    top: 30px;
    bottom: 30px;
    left: 0;
    right: 0;
}

.menu-section-inner{
    margin: 0 auto;
    width: 100%;
    max-width: 550px;
    background-color: #fff; 
    border-radius: 10px; 
    box-shadow: 0px 1px 144px 0px rgba(0, 0, 0, 0.3);
    padding: 45px 50px; 
    position: relative;
    z-index: 3;
}

.menu-section-title{
    text-transform: uppercase;
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 20px;
}

.menu-section-phone{
    color: #002238;
    font-size: 14px;
    font-weight: 500;
}

.menu-section-phone svg{
    width: 20px;
    height: 20px;
    fill: #002238;
    margin-right: 5px;
}

.menu-section-view .btn{
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase; 
    border-radius: 10px;
    height: 50px;
}

/*
==================================*/
#search .modal-dialog {
    background-color: transparent;
    width: 90%;
    max-width: 600px;
    padding: 0;
    margin: 150px auto;
    position: relative; 
    pointer-events: auto;
}

#search .btn-close{
    position: absolute;
    right: 0px;
    top: -30px;
    color: #fff;
}

/*
==================================*/
.main-bnr{
    display: block;
    margin-bottom: 30px;
}

.main-bnr img{
    width: 100%;
}

/*
==================================*/
.breadcrumb{
    justify-content: center;
    background-color: transparent;
    font-size: 12px;
    margin: 0;
    color: #a6a6a6;
    padding-bottom: 0;
}

.breadcrumb a{
    color: #a6a6a6;
}

.breadcrumb-item+.breadcrumb-item::before{
    content: "";
    width: 6px;
    height: 6px;
    border: 1px solid #a6a6a6;
    border-top: none;
    border-left: none;
    transform: rotate(-45deg);
    padding: 0;
    margin-right: 8px;
    margin-left: -2px;
}

.breadcrumb-item.active{
    color: #a6a6a6;
}

.breadcrumb-simple{
    position: relative;
    z-index: 3;
}

/*
==================================*/ 
.btn-show-more{
    margin: 10px 0 15px;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    font-size: 14px;
    line-height: 14px;
    width: 100%;
    text-align: left;
    padding: 0;
    text-decoration: underline;
    color: #7e7e7e;
} 

.btn-show-more:focus,
.btn-show-more:active{
    outline: none;
    box-shadow: none;
}

/*
==================================*/
.vendor-section{
    margin-top: 30px;
}

.vendor-section-logo{
    text-align: center;
    margin-top: 15px;
}

.vendor-section-logo img{
    max-width: 80%;
    max-height: 100px;
}

.vendor-section .content{
    font-size: 14px;
}

/*
====================================*/
.product-section-title{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-section-title span{
    display: inline-block;
    width: 100%;
    max-width: 175px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
}

/*
====================================*/
.add-temperature{
    font-size: 35px;
    font-weight: 500;
}

/*
====================================*/
.aromatics{ 
    font-size: 14px;
}

/*
=====================================*/
.compatibility-list{
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.compatibility-list li{
    min-height: 30px;
    margin-bottom: 10px;
    gap: 15px;
    align-items: center;
}

.compatibility-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a61744;
    border-radius: 50%;
}

.compatibility-icon svg{
    width: 20px;
    height: 20px;
    fill: #fff;
}

.compatibility-icon img{
    max-width: 25px;
    max-height: 25px;
}

/*
=====================================*/
.btn-add-package{
    height: 60px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.2 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.btn-add-package svg{
    width: 30px;
    height: 30px;
    fill: #a31c3b;
    margin-right: 15px;
}

@media(min-width: 992px){
    .btn-add-package{
        font-size: 14px;
        height: 70px;
    }

    .btn-add-package svg{
        width: 44px;
        height: 44px;
    }
}

#add-package .modal-dialog{
    width: 1200px;
    max-width: 98%;
}

#add-package .btn-close{
    position: absolute;
    right: 15px;
    top: 15px;
}

#add-package .rows>*{
    margin-bottom: 30px;
}

.product-year-atention{
    position: relative;
    margin-top: 20px;
    padding: 15px 15px 15px 50px; 
    background-color: #f4f4f4;
    color: var(--accent);
    font-size: 12px;
    border-radius: 10px;
}

.product-year-atention svg{
    width: 20px;
    height: 20px;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -10px;
    fill: var(--accent)
}

/*
======================================*/
.opt-price-info{ 
    border-radius: 10px;
    background-color: var(--accent); 
    display: flex;
    align-items: center;
    color: #fff;
    height: 64px; 
    gap: 0 5px;
    font-size: 14px;
    width: 100%;
    margin-top: 30px;
    padding: 0 15px;
    border: none;
}

.opt-price-info svg{
    width: 40px;
    height: 33px;
    fill: #fff; 
    margin-right: 15px; 
}

/*
================================*/
.section-constructor{
    padding-top: 60px;
    padding-bottom: 60px;
}

.sc-left-fixed,
.personalization-left{
    position: static;
    top: 80px;
}

@media(min-width: 992px){
    .sc-left-fixed,
    .personalization-left{
        position: sticky;
    }
}

.sc-pagetitle{
    font-size: 28px;
    text-transform: unset;
}

.sc-preview{
    background-color: #ebeff2;
    border-radius: 10px;
    padding: 15px;
    min-height: 380px;
    width: 100%;
}

.sc-preview-content{
    width: 100%;
}

.sc-certificat-image{
    padding-top: 35px;
    min-height: 250px;
}

.sc-certificat-image img{
    max-width: 450px;
    margin: 0 auto 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    display: block;
    width: 100%;
}

.no-shadow img{
    box-shadow: unset;
} 

.sc-preview .not_empty{
    display: none;
}

.sc-preview.selected .empty{
    display: none;
}

.sc-preview.selected .not_empty{
    display: block;
}

.sc-certificat-action .btn{
    font-size: 12px;
    font-weight: bold;
    width: 200px;
    max-width: 100%;
}

.sc-certificat-title{
    font-weight: bold;
    font-size: 18px;
    font-family: 'Montserrat';
}

.sc-rules{ 
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px 20px;
    gap: 0 40px;    
    font-size: 14px;  
    margin-top: 18px;
    margin-bottom: 30px;
}

.sc-rules a{
    color: #002238;
    text-decoration: underline;
}

.sc-rules a:hover{
    text-decoration: none;
}

.sc-rules svg{
    width: 60px;
    height: 60px;
}

/*
================================*/
.sc-form-group_title{
    margin-bottom: 15px;
    color: #020202;
    font-size: 18px;
}

.sc-form-group label {
    margin: 0;
    display: block;
}

.sc-checkbox{
    position: relative;
    margin-bottom: 18px;
    overflow: hidden;
}

.sc-checkbox.loading::before,
.sc-checkbox.loading::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;    
}

.sc-checkbox.loading::before{
    background-color: #fff;
    z-index: 2;
    opacity: .7;
}

.sc-checkbox.loading::after{
    background: url(../images/loader.svg) no-repeat 50% 50%; 
    background-size: 190px;
    z-index: 3; 
}

.sc-checkbox input{
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
}

.sc-checkbox-item{
    width: 100%;
    display: flex;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px 5px;
    min-height: 122px;  
    font-size: 14px;  
    cursor: pointer;
    transition: .3s;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; 
    color: #525252;
}

.sc-checkbox-item:hover{
    border-color: #a31d3c;
}

.sc-checkbox-price .sc-checkbox-item{
    height: 150px;
}

.sc-checkbox-price .sc-checkbox-item strong{
    font-weight: normal;
    text-transform: uppercase;
}

.sc-checkbox input:checked+.sc-checkbox-item strong{ 
    font-weight: bold
}

.sc-checkbox-item strong{
    display: block; 
    color: #002238;
    font-size: 16px;
    font-weight: bold;
}

.sc-checkbox input:checked+.sc-checkbox-item{
    border-color: #a31d3c; 
}

.sc-checkbox input:checked + .sc-checkbox-item strong{ 
    color: #a31d3c;
}

.sc-checkbox .btn-icon-info{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.btn-icon-info{
    border: none;
    background: none;
    width: 18px;
    height: 18px;
    padding: 0;
    font-size: 0;
    line-height: 1;
    min-width: unset;
}

.btn-icon-info svg {
    fill: none;
    width: 100%;
    height: 100%;
}

.sc-checkbox-desc{
    display: block;
    margin-top: 5px;
    min-height: 40px;
}

.sc-checkbox-item_price{
    border: 1px solid #ededed;
    display: inline-block;
    border-radius: 10px;
    padding: 3px 12px 2px; 
    margin-top: 10px;
}

.sc-total{
    font-size: 16px;
    font-weight: bold;
    color: #a31d3c;
}

/* wineries
===============================*/
.sc-checkbox-winery .sc-checkbox-item{
    height: 150px;
    padding-bottom: 50px;
    font-size: 12px;
}

.sc-checkbox-winery .sc-checkbox-desc{
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    min-height: unset;
}

.sc-checkbox-winery .sc-checkbox-item img{
    max-height: 100px;
}

/* tastings
===============================*/
.sc-checkbox-tasting img{
    max-width: 110px;
}

.sc-checkbox-tasting .sc-checkbox-title{
    margin: 20px 0 10px;
    min-height: 40px;
    color: #002238;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
}

/*
===============================*/
#sc-modal .modal-dialog{
    width: 900px;
    border-radius: 12px;
}

#sc-modal .btn-close{
    position: absolute;
    right: 10px;
    top: 5px;
}

.sc-modal-title{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}

/*
========================*/
.sc-checkbox-excursion .sc-checkbox-item{
    height: 433px;
    position: relative;
    display: block;
    padding: 40px 15px;
}

.sc-ex-title{
    font-size: 16px;
    font-weight: bold;
    color: #002238;
}

.sc-ex-subtitle{
    font-size: 14px;
    color: #525252;
    font-weight: 600;
    margin-top: 5px;
}

.sc-ex-description{
    text-align: left;
    font-size: 14px;
    color: #525252;
    margin-top: 10px;
    line-height: 24px;
}

.sc-ex-data{
    position: absolute;
    bottom: 40px;
    left: 15px;
    right: 15px;
}

.sc-ex-data>span{
    display: block;
}

.sc-ex-persons{
    color: #002238;
    font-size: 16px;
}

.sc-ex-persons-icon{
    gap: 0 1px;
    margin-bottom: 3px;
}

.sc-ex-persons-icon svg{
    width: 17px;
    height: 18px;
    fill: #002238;
}

.sc-ex-duration{
    color: #002238;
    font-size: 16px;
    font-weight: bold;
    margin-top: 3px;
}

.sc-ex-price{
    color: #a31d3c;
    font-size: 16px;
    font-weight: bold;
    margin-top: 3px;    
}

/*
=============================*/
.sc-image-block{
    width: 100%;
    max-width: 210px;
    flex: 0 0 210px;
}

.sc-image-block img{
    max-width: 180px;
    margin-bottom: 30px;    
}

.sc-image-block .sc-certificat-image{
    padding-top: 0;
}

.sc-data-block-img{
    padding: 20px;
    background: #fff;
    width: 130px;
    margin: 0 auto 20px;
}

.sc-data-block-img img{
    max-width: 100%;
}

.sc-data-block{
    flex: 0 0 220px;
}

/*
=============================*/
.certificate_product_info{
    padding: 15px;
    margin-top: 20px;
    background: #ebeff2;
    border-radius: 4px;
    font-size: 13px;
}

/*
=============================*/
.pers-info{
    background-color: #ebeff2;
    padding: 20px;
    font-size: 16px;
}

.pers-info strong{
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pers-info a{
    color:  var(--base);
}

.icon-question{
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--base);
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 20px;
    font-weight: bold;
}

.sc-introtext{
    color: #020202;
    font-size: 16px;
}

/*
=============================*/
.pers-gallery-item{
    display: block;
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.pers-gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
=============================*/
.sc-checkbox{
    margin-bottom: 30px;
}

.sc-checkbox-img .sc-checkbox-item{
    height: 190px;
    padding: 20px;
    text-align: center;
    font-size: 16px;
}

.sc-checkbox-img img{
    max-height: 100%;
    max-width: 100%;
}

.sc-checkbox-img svg{
    width: 28px;
    height: 28px;
    margin-bottom: 25px;
}

.personalization-preview{
    position: relative;
}

.personalization-preview img{
    width: 100%;
}

.personalization-preview-frame{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%; 
    overflow: hidden;
    z-index: 3;
    margin-top: 40px;
}

.personalization-preview-photo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%; 
    height: 150px;
    overflow: hidden;
    z-index: 2;
    margin-top: 40px;
}

.personalization-preview-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[data-frame="0"] + .personalization-preview-photo{
    width: 30%;
    height: 26%;
}

[data-frame="1"] + .personalization-preview-photo{
    width: 20%;
    height: 14%;
}

[data-frame="2"] + .personalization-preview-photo{
    width: 27%;
    height: 23%;
}

[data-frame="2"] + .personalization-preview-photo img{
    position: relative;
    top: -15px;
}

[data-frame="3"] + .personalization-preview-photo{
    width: 21%;
    height: 21%;
}

[data-frame="4"] + .personalization-preview-photo{
    width: 15%;
    height: 10%;
}

.personalization-action-block {
    gap: 0 40px;
}

.pers-deadline{
    font-weight: bold;
    color: var(--accent);
    font-size: 16px;
    margin-top: 10px;
}

.personalization-action-block .product-item-price{
    font-size: 23px;
    padding-top: 10px;
}

.personalization-action-block .product-quantity{
    padding-top: 10px;
}

.personalization-action-block .product-quantity input{
    height: 35px;
}

.personalization-action-block .product-quantity span{
    line-height: 34px;
}

.form .personalization-text{
    height: 100px;
    border-radius: 10px;
}

.form .personalization-comment{
    height: 170px;
    border-radius: 10px;
}

.cart-option-img{
    width: 30px;
    display: block;
}

.cart-option-img img{
    max-width: 100%;
}

/*
=============================*/
.personalization-file{
    width: 100%;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.personalization-file-area svg{
    height: 28px;
    width: 32px;
    margin: 0 auto 10px;
    display: block;
}

.personalization-file-area { 
    font-size: 18px;
    color: #000; 
    white-space: nowrap;
    cursor: pointer; 
    overflow: hidden;
    padding: 50px 20px;
    width: 100%;
    margin-bottom: 30px !important;
    border: 2px dashed #d4d4d4;
    border-radius: 10px; 
    text-align: center;   
    cursor: pointer;
    transition: border-color .3s ease-in-out;
}

.personalization-file-area span{
    display: block;
    font-size: 14px;
    color: #aeaeae;
    margin-top: 5px;
}

.personalization-file-area:hover{
    border-color: var(--accent);
}

.btn-file-clear{
    border: none;
    color: var(--accent);
    background-color: transparent;
    font-size: 34px;
    line-height: 1;
    margin-right: 5px;
    display: inline-block;
}

.btn-file-clear:focus,
.btn-file-clear:active{
    outline: none;
}

.personalization-file-area--result{
    background: url(../images/loader.svg) no-repeat 50% 50%;
}

.personalization-file-area--result span{
    display: inline-block;
    font-size: 16px;
    color: #000; 
    margin-right: 10px;
} 

.personalization-file-area--result>*{
    opacity: 0;
}

.personalization-file-area--result.loaded {
    background: #fff;
}

.personalization-file-area--result.loaded>*{
    opacity: 1;
}

.personalization-file-area--result img{
    width: 80px;
}

.gap-5{
    gap: 0 5px;
}

.gap-10{
    gap: 0 10px;
}

.gap-20{
    gap: 0 20px;
}

.gap-24{
    gap: 0 24px;
}

.personalization-action-button{
    width: 100%;
}

@media(min-width: 768px){
    .personalization-action-button{
        width: auto
    }
}

@media(min-width: 992px){
    .personalization-action-button{
        width: 100%
    }
}

@media(min-width: 1200px){
    .personalization-action-button{
        width: auto
    }
}

/*
================================== */
.bnr-item{
    display: block;
    margin-bottom: 30px;
}

.bnr-item img{
    width: 100%;
}

@media(min-width: 1200px){ 
    .bnr-item img{
        width: auto;
    }
}

/*
================================== */
.bnr-wine-ghuide{
    padding: 0;
    display: block;
    color: #fff;
    font-size: 14px;
}

.bnr-wine-ghuide:hover{
    color: #fff;
    text-decoration: none;
}

.bnr-wine-ghuide__inner{
    background: #a61744;
    border-radius: 10px;
    padding: 20px;
}

.bnr-wine-ghuide__title{
    font-size: 26px;
    font-weight: bold;
}

.bnr-wine-ghuide__img img{
    margin: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0, .1);
}

.bnr-wine-ghuide .btn{
    border-radius: 10px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: bold;
    color: #a61744;
    text-transform: uppercase;
    height: 40px;
    line-height: 40px;
}

.bnr-wine-ghuide a.btn{ 
    line-height: 40px;
}

.bnr-wine-ghuide .btn:hover{
    background-color: #fff;
    color: #a61744;
}

@media(min-width: 768px){
    .bnr-wine-ghuide{
        padding: 50px 0; 
    }

    .bnr-wine-ghuide__inner{  
        padding: 15px 20px;
    }

    .bnr-wine-ghuide__left{
        padding: 0 20px 0 0;
    }

    .bnr-wine-ghuide__img img{
        margin: -50px 0;
    }
}

@media(min-width: 992px){

    .bnr-wine-ghuide__inner{  
        padding: 25px 20px 25px 40px;
    }

    .bnr-wine-ghuide__right{
        padding: 20px 0 20px 20px;
    }

    .bnr-wine-ghuide__title{
        margin-bottom: 5px;
    }
}


@media(min-width: 1200px){ 

    .bnr-wine-ghuide__left{
        flex: 0 0 calc(100% - 540px);
        padding-top: 10px;
        padding-top: 10px;
    } 

    .bnr-wine-ghuide__img{
        flex: 0 0 240px
    } 

    .bnr-wine-ghuide__right{
        flex: 0 0 290px
    } 

    .bnr-wine-ghuide .btn{
        min-width: 160px;
    }
    
}

/*
=======================================*/
.collection-block{
    margin-bottom: 30px;
}

.collection-block_image{
    height: 150px;
    overflow: hidden;
    border-radius: 10px; 
    background: #f4f4f4;
}

.collection-block_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-block_title{
    text-transform: uppercase;
    font-weight: bold;
    color: var(--base);
    font-size: 14px;
    margin-top: 15px;
}

.collection-list{
    margin: 10px 0 0 20px;
    padding: 0;    
}

.collection-list a{
    display: block;
    color: #010101;
    font-size: 14px;
}

.collection-list a:hover{
    text-decoration: none;
    color: var(--accent);
}

@media(min-width: 768px) {
    .slider-collections .swiper-slide{
        width: calc(100%/3 - 20px) !important;
    }

    .slider-collections .swiper-wrapper{
        flex-wrap: wrap;
        gap: 0 30px;
    }

    .collection-block_image{
        height: 100px;
    }    
}

@media(min-width: 992px) {
    .collection-block_image{
        height: 150px;
    }    
}

/*
=======================================*/
.hauth-title{
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.hauth-title::before,
.hauth-title::after{
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #ccc;
}

.hauth-title::before{
    left: 50%;
    margin-left: -60px;
}

.hauth-title::after{
    right: 50%;
    margin-right: -60px;
}

.hauth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--base);
    border-radius: 7px;
    width: 100%;
    height: 38px;
    max-width: 260px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: var(--base);
    background: #fff;
    transition: .2s ease;
    text-decoration: none;
    padding: 0 15px 0 5px;
}

.hauth-icon:hover {
    background: var(--base);
    color: #fff;
    text-decoration: none;
}

.hauth-icon svg {
    width: 25px;
    height: 25px;
    margin: 0 7px 0 0;
} 

.lk-socials{
    padding: 50px;
    background: #F1F1F1;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.lk-socials-title{
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.form-user-socials{
    width: 200px;
    margin: 0 auto;
}

/*
=======================================*/
.header__notice {
    background: var(--accent);
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 9;
}

@media (min-width: 1024px) {
    .header__notice {
        padding: 14px 0;
    }
}

.header__notice-content {
    position: relative; 
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4; 
    text-align: center;
    padding-right: 25px;
}

@media (min-width: 1024px) {
    .header__notice-content {
        font-size: 16px;
        padding-right: 0;
    }
}

.btn-close-notice {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: -10px;
    padding: 0; 
    border: none;
    background: none;
    font-size: 30px;
    font-weight: normal;
    color: #fff;
    transition: transform 0.3s;
}

.btn-close-notice:hover{
    color: #fff;
    transform: scale(1.05);
}

/*
@media (min-width: 1024px) {
    .btn-close-notice { 
        top: -4px;
        right: -10px; 
    }
}
    */

/*
=======================================*/
.package-item{
    display: block;
    width: 100%;
    min-height: 410px;
    position: relative; 
    z-index: 3;
    border-radius: 10px;
    overflow: hidden;
    color: var(--base);
    transition: box-shadow .3s;
    border: 1px solid #f1f3ee;
}

.package-item:hover{
    text-decoration: none;
    color: inherit;
}

.package-item:hover .package-item__image img{
    transform: scale(1.05);
}

.package-item:hover .package-item__title{
    color: var(--accent);
}

.package-item__image{
    height: 205px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.package-item__image img{
    width: 100%;
    transition: transform .5s;
}

.package-item__data{
    padding: 10px 15px;
}

.package-item__rating{
    margin-bottom: 10px;
}

.package-item__rating svg{
    width: 15px;
    height: 15px;
    fill: #ddd;
}   

.package-item__rating svg.active{ 
    fill: #e18f00;
}   

.package-item__title{
    font-weight: 600;
    font-size: 17px;
    min-height: 48px;
    transition: color .5s;
}

.package-item__winaries{
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
}

.package-item__winaries span{
    font-weight: normal;
}

.package-item__price{
    font-weight: bold;
    font-size: 16px;
    color: var(--accent);
    margin-top: 10px;
}

.package-item__field{
    text-align: center;
    flex: 0 0 23%;
    font-size: 14px;
}

@media (min-width: 768px) {
    .package-item__field{ 
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    .package-item__field{ 
        font-size: 14px;
    }
}

.package-item__field svg {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
    fill: #00223a;
}

.package-item__field span{
    display: block;
}

/*
=======================================*/
.package-filter{
    position: relative;
    margin-bottom: 20px;
    min-width: auto;
}

.package-filter__title{  
    font-weight: bold; 
    font-size: 16px;  
}

.package-filter .filter-list__item .disabled, 
.package-filter .filter-list .disabled {
    display: block;
}

@media (min-width: 992px) {

    .package-filters-panel fieldset+fieldset {
        margin-top: 0;
    }

    .package-filters-panel .filter{
        padding: 0;
        margin-bottom: 0;
    }

    .package-filter{
        margin-bottom: 0;
    }

    .package-filter__title{ 
        border: 1px solid  rgb(231, 232, 237);
        border-radius: 20px;
        background-color: rgb(235, 239, 242); 
        height: 38px; 
        font-size: 14px;
        font-weight: normal;
        padding: 5px 25px 5px 15px;
        display: flex;
        align-items: center;
        cursor: pointer;
        position: relative;
    }

    .package-filter__title::after{
        content: '';
        width: 6px;
        height: 6px;
        border: 1px solid var(--base);
        border-top: none;
        border-left: none;
        transform: rotate(45deg);
        position: absolute;
        top: 50%;
        right: 12px;
        margin-top: -3px;
    }
}

.package-filter__dropdown {
    position: relative;
    margin-top: 10px;
    display: block;
}


@media (min-width: 992px) {
    .package-filter__dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        z-index: 99;
        width: 270px;
        padding: 15px; 
        border-radius: 10px; 
        box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.15); 
        display: none;
    }
    
    .package-filter.active .package-filter__dropdown{
        display: block;
    }
}

.package-filter__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn-package-filter-reset{
    font-size: 14px;
    height: 38px;
}

.btn-package-filter-reset svg{
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.packages-sort{
    font-size: 14px;
}

.package-filter .mse2_number_inputs{
    margin-left: -5px;
    margin-right: -5px;
}

.package-filter .mse2_number_inputs label{ 
    flex: 0 0  calc(50% - 10px);
    max-width: calc(50% - 10px);
    position: relative;
}

.package-filter .mse2_number_inputs span{
    display: none;
}

.package-filter .mse2_number_inputs input{
    width: 100%;
    border: none;
}

.package-filter .mse2_number_inputs label:first-child input{
    text-align: left;
}

.package-filter .mse2_number_inputs label:last-child input{
    text-align: right;
}

.package-filter .filter-price{
    padding: 20px;
}

/*
.package-filter-price-0{
    padding-left: 30px;
}

.package-filter-price-0 span{
    position: absolute;
    left: 0;
    top: 9px;
}

.package-filter-price-1{
    padding-right: 30px;
}

.package-filter-price-1 span{
    position: absolute;
    right: 0;
    top: 9px;
}
    */


/*
======================================== */
.package-header{
    border-radius: 20px;
    overflow: hidden;
}

.package-header__image{  
    display: flex;
    justify-content: center; 
    align-items: center;    
    max-height: 500px;       
    height: 100vh;            
    overflow: hidden; 
}

.package-header img{
    width: 100%; 
}

.package-header__bottom{
    padding: 10px 20px 30px;
    background: #f7ede3
}

.package-header__rating svg{
    width: 16px;
    height: 16px;
    fill: #ddd
}

.package-header__rating svg.active{ 
    fill: #e18f00;
}

.package-header__title{
    font-size: 18px;
    font-weight: bold; 
    margin-top: 10px;
}

@media(min-width: 768px){
    .package-header__title{
        font-size: 20px;
    }
}

/*
======================================== */
.package-fields{
    gap: 0 20px;
}

.package-field{
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
    flex: 0 0 calc(100%/3 - 16px);
}

.package-field svg{
    width: 38px;
    height: 38px;
    fill: #00223a;
    margin-bottom: 20px;
}

.package-field__title{
    font-weight: bold;
    margin-bottom: 5px;
}

@media(min-width: 768px){
    .package-field{ 
        flex: 0 0 calc(100%/4 - 20px); 
        font-size: 14px; 
    }
}

@media(min-width: 992px){
    .package-fields{
        gap: 0 8%;
    }

    .package-field{
        font-size: 14px;
        flex: 0 0 auto;
        max-width: 150px;
    }
}

/*
======================================== */
.package-program__day{
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

@media(min-width: 768px){
    .package-program__day{
        padding: 30px;
        margin-bottom: 35px;
    }
} 

.package-program__day--header{
    margin-bottom: 30px;
}

.package-program__day-index{
    color: #fff;
    background-color: var(--accent);
    padding: 9px 12px 8px 12px;
    border-radius: 16px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}  

.package-program__day-title{
    font-size: 15px;
    font-weight: bold;    
} 

@media(min-width: 768px){
    .package-program__day-index{
        font-size: 14px;
        padding: 10px 15px;
    }

    .package-program__day-title{
        font-size: 17px;  
    } 
}   

.package-program__day--data{
    gap: 0 35px;
}

@media(min-width: 1200px){
    .package-program__day--data{
        gap: 0 65px;
    }
} 

.package-program__day--gallery{
    flex: 0 0 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.package-program__day--slider{
    border-radius: 20px;
}

@media(min-width: 768px){    
    .package-program__day--gallery{
        flex: 0 0 320px;
        max-width: 320px;
        margin: 0 auto 20px;
    }
} 

@media(min-width: 992px){    
    .package-program__day--gallery{
        margin: 0;
    }
} 

.package-program__day--gallery img{
    border-radius: 20px ;
    width: 100%;
}

.package-program__day--gallery .swiper-pagination-bullet{
    background: #fff;
    opacity: 1;
}

.package-program__day--gallery .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--accent);
}

.package-program__day--gallery-caption{
    text-align: center;
    margin-top: 10px;
    color: #a7a7a7;
}

.package-program__day--steps{
    flex: 0 0 calc(100% - 385px);
    padding-top: 15px;
}

.package-program__day--step{
    display: flex;
    gap: 0 15px; 
    min-height: 40px;
    position: relative;
    padding-bottom: 25px;
}

.package-program__day--step:last-child{
    padding-bottom: 0;
}

.package-program__day--step::after{
    content: '';
    position: absolute;
    top: 40px;
    bottom: 7px;
    left: 15px;
    width: 2px;
    background-color: #ebeff2;
}

@media(min-width: 1200px){    
    .package-program__day--step{ 
        padding-bottom: 45px;
    }

    .package-program__day--step::after{
        top: 40px;
        bottom: 7px;
    }
} 

.package-program__day--step:last-child{
    padding-bottom: 0;
}

.package-program__day--step:last-child::after{
    display: none;
}

.package-program__day--step-icon{
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ebeff2;
}

.package-program__day--step-icon svg{
    width: 16px;
    height: 18px;
    fill: var(--base)
}

.package-program__day--step-txt{
    padding-top: 5px;
}

@media(min-width: 992px){    
    .package-program__day--step-txt{
        font-size: 14px;
    }
} 

@media(min-width: 1200px){    
    .package-program__day--step-txt{
        font-size: 16px;
    }
} 

/*
======================================== */
.package-pricing{
    border-radius: 20px; 
    padding: 20px; 
    background-color: rgb(248, 248, 248);
}

@media(min-width: 992px){    
    .package-pricing{
        padding: 35px 60px; 
    }
} 

.package-pricing__hotel{
    font-size: 15px;
}

.package-pricing__total{
    border-top: 1px solid var(--base);
    margin-top: 10px;
    padding-top: 20px;
    font-weight: bold;
    font-size: 18px;
}

@media(min-width: 992px){    
    .package-pricing__hotel{
        font-size: 18px;
    }
    .package-pricing__total{
        font-weight: bold;
        font-size: 21px;
        margin-top: 15px;
        padding-top: 30px;
    }
} 

.package-pricing__table--head{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.package-pricing__table ul{
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    font-size: 14px;
}

.package-pricing__table ul li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    padding-top: 2px;
}

.package-pricing__table ul li::before{
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%; 
    color: #fff;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-pricing__included li::before{
    content: '+';
    background-color: #069f4a;
    font-size: 12px; 
}

.package-pricing__dont-included li::before{
    content: '×';
    background-color: var(--accent);
    font-size: 14px; 
}

@media(min-width: 1200px){    
    .package-pricing__included{
        max-width: 80%
    }
} 

/*
======================================== */
.package-form{
    width: 100%;
    max-width: 860px;
}


/*
======================================== */
.sommelier{
    
}

.sommelier-step{
    display: none;
}

.sommelier-step-name{
    display: block;
}

.sommelier img{
    max-width: 100%;
}

.btn-sommelier-step{
    height: 45px;
    border-radius: 15px;
    font-weight: 600; 
    display: block;
    width: 100%;
    max-width: 220px;
}

.sommelier-step-name .btn-sommelier-step{
    max-width: 365px;
    margin: 20px auto;
    text-transform: uppercase;
}

.sommelier-step-name img{
    height: 232px;
}

.sommelier-step__actions{
    width: 100%;
    margin: 20px auto;
    max-width: 430px;
}

.sommelier-step__actions .btn{
    font-size: 16px;
    width: 220px; 
    margin: 0 auto 20px;
}

.sommelier-progress{
    color: #B5B5B5;
    font-size: 17px;
    margin-bottom: 20px;
}

.sommelier-step-name{
    margin: 0 auto;
    width: 100%;
    max-width: 575px;
}

.sommelier-title{
    font-size: 21px;
}

.sommelier-step-name input[type="text"] {
    width: 100%;
    max-width: 365px;
    height: 45px;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    border: 1px solid rgb(201, 201, 201);
    padding: 0 15px;
    text-align: center;
}

.sommelier-image{
    margin: 15px auto;
}

.sommelier-image__likedislike{
    max-width: 480px;
    height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sommelier-radio-item{
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 200px;
    flex: 0 0 calc(50% - 12px);
    margin-bottom: 24px;
    cursor: pointer;
}

@media(min-width: 768px){
    .sommelier-radio-item{
        width: 200px;
        flex: 0 0 200px;
    }
}


.sommelier-radio-item:hover .sommelier-radio-item__title{
    border-color: #A21C3B;
    color: #A21C3B;
}

.sommelier-radio-item input[type="radio"]{
    width: 1px;
    height: 1px;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -10px;
    opacity: 0;
}

.sommelier-radio-item input[type="radio"]:checked ~ .sommelier-radio-item__title{
    border-color: #A21C3B;
    background: #A21C3B;
    color: #fff;
}

.sommelier-radio-item__image{
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sommelier-radio-item__image img{
    max-width: 80%;
    max-height: 80%;
}

.sommelier-radio-item__title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 16px;
    color: #022238;
    transition: all .3s;
    margin-top: 15px;
}


/*
======================================== */
.sommelier-result-content{

}

.sommelier-result-text-hello{
    font-weight: bold;
    margin-bottom: 10px;
}

.sommelier-result-content .btn{
    height: 45px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
}


.sommelier-result-video{
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
}

.sommelier-result-video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.ms2_form .btn[type="submit"] {
    position: relative;
}

.ms2_form .btn[type="submit"][disabled]::after {
    content: '';
    position: absolute;
    z-index: 3;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 10px;
    background: url(../images/loading.gif) no-repeat ;
    background-size: contain;
}
