/* Main */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}


body {
    color: #605D52;
    background-color: #F8F7EC;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Source Sans Pro', sans-serif;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

dl, ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.styled-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 8px;
}

p, .p-like {
    line-height: 24px;
    margin-bottom: 0;
}

p a, .p-like a {
    font-weight: 600;
}

p mark, .p-like mark {
    color: #5F3316;
}

mark {
    padding: 0;
    background: none;
    font-weight: 600;
}

strong {
    font-weight: 600;
}

p + p, .p-like + .p-like, p + .p-like, .p-like + p {
    margin-top: 16px;
}

.round-image-block p + p {
	margin-top: 8px;
}

.large-text {
    font-size: 18px;
    line-height: 26px;
}

.small-text {
    font-size: 12px;
    line-height: 18px;
}

.fade-text {
    font-weight: 600;
    color: #605D52;
}

.fade-title {
    color: #605D52;
}

.less-text {
    font-size: 14px;
    line-height: 22px;
}

.bold-text {
    font-weight: 600;
    color: #231F14;
}

.uppercase {
    text-transform: uppercase;
}

.small-text a {
    font-weight: 600;
}

h1, h2, h3, h4 {
    font-weight: 500;
    font-family: 'Avenir Next', sans-serif;
    text-transform: uppercase;
    color: #231F14;
	line-height: 1.25;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
	font-size: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }
	
	h4 {
		font-size: 18px;
    }
}

h6 {
    font-size: 18px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
    color: inherit;
}

button {
    background: transparent;
    border: 0;
    color: inherit;
}

.page-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    height: 100%;
    position: relative;
    padding: 0;
}

@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1225px;
    }
}

@media (max-width: 992px) {
    .container-lg {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 576px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.icon {
	display: inline-block;
    font-weight: 100 !important;
    font-size: 22px;
    vertical-align: middle;
}

.hidden {
    display: none;
}

.row-wide-indent {
    --bs-gutter-x: 3rem;
  	justify-content: center;
}

.btn, .btn-secondary, .button {
    display: inline-block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    text-transform: uppercase;
    font-family: 'Avenir Next', sans-serif;
}

.btn, .button {
    background: #5F3316;
    color: #F8F7EC;
    border: 0;
}

.btn:hover, .button:hover {
    background: #4B2811;
    color: #F8F7EC;
	text-decoration: none;
}

.btn:disabled, .button:disabled {
    background: #DAD8CD;
    color: #7E7C71;
}

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

.btn-secondary {
    color: #5F3316;
    background: transparent;
    border: 1px solid #5F3316;
    box-shadow: none;
}

.btn-secondary:active, .btn-secondary:focus {
    color: #5F3316;
    background: transparent;
    border: 1px solid #5F3316;
    box-shadow: none;
}

.btn-compact, .woof_submit_search_form {
    padding: 8px 20px;
}

.btn-secondary:hover {
    background: #4B2811;
    color: #F8F7EC;
    border-color: #5F3316;
	text-decoration: none;
}

.btn-secondary:disabled, .btn-secondary.slick-disabled {
    background: #DAD8CD;
    border: 1px solid #9D9A8F;
    color: #7E7C71;
}

.btn-up, .btn-down {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-up .icon, .btn-down .icon {
    font-size: 32px;
}

.checkbox, .woof_checkbox_term {
    width: 20px;
    height: 20px;
    visibility: hidden
}

.checkbox:after, .woof_checkbox_term:after {
    content: "";
    border: 1px solid #887559;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    visibility: visible;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.checkbox:hover:after, .woof_checkbox_term:hover:after {
    border-width: 2px;
}

.checkbox:checked:after, .woof_checkbox_term:checked:after,
.checkbox[checked]:after, .woof_checkbox_term[checked]:after {
    background-color: #5F3316;
    background-image: url(../img/svg/check.svg);
}

.checkbox[disabled]:after, .woof_checkbox_term[disabled]:after {
    background-color: #BBB9AE;
    border: 0;
}
.checkbox[disabled]:hover:after, .woof_checkbox_term[disabled]:hover:after {
    border: 0;
}
.checkbox[disabled]:checked:after, .woof_checkbox_term[disabled]:checked:after,
.checkbox[disabled][checked]:after, .woof_checkbox_term[disabled][checked]:after {
    background-color: #DAD8CD;
}

.checkbox.error:after {
    background-color: #F8F7EC;
    border-color: #ED1C24;
}

.select {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    line-height: inherit;
}

.select:after {
    content: "\e914";
    font-family: 'icomoon';
    height: initial;
    width: initial;
    position: absolute;
    right: 21px;
    transform: translateY(-50%);
    top: 50%;
    border: 0;
    margin: 0;
    font-size: 18px;
}

.select.open:after {
    content: "\e92c";
    transform: translateY(-50%);
}

.select .list {
    width: 100%;
    background: #F8F7EC;
    padding: 4px 0;
    border-radius: 4px;
}

.select .option.selected.focus, .select .option.selected {
    font-weight: 400;
    background: #EBD8BC;
    color: #914E22;
}

.select .option:hover, .select .option.focus {
    background: #F0EBE3;
}

.input {
    padding: 8px 16px;
    background: #F8F7EC;
    border: 1px solid #5F3316;
    border-radius: 8px;
    outline: none;
    color: #413E33;
    height: 40px;
    width: 100%;
}

.input:focus:not(.input-no-border), .input:active:not(.input-no-border) {
    border-color: #5F3316;
    border-width: 2px;
    padding: 7px 15px;
}

.input.select {
    padding-right: 48px;
}

.input.open, .input:hover {
    border-color: #5F3316;
}

.input-wrap {
    display: block;
    margin-bottom: 24px;
}

.input-title {
    display: block;
    color: #231F14;
    font-weight: 600;
    margin-bottom: 8px;
}

.input.input-no-border {
    border: 0;
}

.input.input-expand {
	padding-top: 12px;
	padding-bottom: 12px;
}

textarea.input {
    height: 192px;
}

.badge-red {
    padding: 2px 8px;
    background: #DA6B5A;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #EBD8BC;
}

.error, .input.error {
    background-color: #F8F7EC;
    border-color: #ED1C24;
}

/* Header */

.header {
    width: 100%;
    font-family: 'Avenir Next', sans-serif;
}

.header-mobile {
    display: none;
}


@media (max-width: 992px) {
    .header-desktop {
        display: none;
    }
    
    .header-mobile {
        display: block;
    }

    .page-container {
        padding-top: 68px;
    }

    body.admin-bar .header-fixed, body.admin-bar .modal-fixed {
    	top: 32px
    }

    body.admin-bar .modal-fullbody.modal-fixed {
        height: calc(100vh - 32px);
    }


}

@media (max-width: 768px) {
	body.admin-bar .header-fixed, body.admin-bar .modal-fixed {
		top: 46px
	}

    body.admin-bar .modal-fullbody.modal-fixed {
        height: calc(100vh - 46px);
    }
}

@media (max-width: 600px) {
	body.admin-bar .header-fixed, body.admin-bar .modal-fixed {
		top: 0;
	}

    body.admin-bar .modal-fullbody.modal-fixed {
        height: 100vh;
    }
}

.header-icon, .header-top .social-list {
    color: #887559;
}

.header-contact-phone {
    margin-right: 24px;
}

.social-list {
    display: flex;
    color: #5F3316;
}

.social-list-full {
    color: #5F3316;
    font-weight: 600;
}

.social-list-full .icon {
    margin-right: 9px;
}

.social-item-full {
    margin-top: 24px;
}

.social-item {
    margin-left: 18px;
    width: 24px;
}

@media (max-width: 768px) {
    .social-item {
        margin-left: 0;
        margin-right: 18px;
    }
}

.header-lang li {
    display: inline;
    margin-left: 18px;
    cursor: not-allowed;
}
.header-lang li.active {
    text-decoration: underline;
    cursor: initial;
}

.header-contact {
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    align-items: center;
    height: 100%;
}

.header-contact .header-icon span {
    vertical-align: middle;
    font-weight: 600;
    margin-left: 17px;
    line-height: 24px;
}

.header-contact a:hover {
	text-decoration: none;
}

.header-contact-telegram {
    margin-left: 5px;
}

.header-lang {
    text-transform: uppercase;
    margin-right: 9px;
    display: inline-block;
    margin-left: -18px;
}

.icon-search {
	margin-right: 8px;
	color: #887559;
}

/* Header Top */

.header-top {
    width: 100%;
    height: 48px;
    font-size: 16px;
    color: #413E33;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-menu-list {
    margin-right: -24px;
}

.top-menu-list li {
    display: inline;
    margin-right: 24px;
}

.header-top-center {
    padding-left: 16px;
}

.header-top-right {
	display: flex;
}

@media (max-width: 1200px) {

    .header-top-center .header-icon:first-child span:first-child {
        margin-left: 0;
    }

    .header-top-center {
        padding-left: 0;
    }
}

.header-top .header-search {
    margin-right: 0px;
}

/* Header Main */

.header-main {
    height: 88px;
    background: #EBD8BC;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu-list {
    display: flex;
    font-size: 20px;
	justify-content: center;
}

.main-menu {
    flex-grow: 1;
    margin-left: 40px;
    color: #231F14;
}

.main-menu li {
    margin-right: 20px;
}

.main-menu li:hover, .main-menu li.active {
    text-decoration: underline;
    font-weight: 500;
}

.main-menu li a {
    display: flex;
    flex-direction: column;
}

.main-menu li a:before {
    content: attr(data-content);
    height: 0;
    visibility: hidden;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    font-weight: 500;
}


@media (max-width: 1200px) {
	
	.main-menu li {
		margin-right: 16px;
	}
	
	.main-menu {
		margin-left: 20px;
	}
	
    .main-menu-list {
        flex-wrap: wrap;
        justify-content: center;
		font-size: 18px;
    }
	
	.header-main {
		height: 72px;
	}
}


.header-logo img {
	width: 164px;
}

@media (max-width: 1200px) {
    .header-logo img {
	width: 132px;
	}
}

/* Header Mobile */

.header-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #5F3316;
    height: 100vh;
    z-index: 1000;
    background: #F8F7EC;
    visibility: hidden;
}

.header-mobile.menu-active {
    visibility: visible;
}

.header-mobile .header-fixed {
    height: 68px;
    display: flex;
    justify-content: space-between;
    background: #EBD8BC;
    padding: 8px 16px;
    align-items: center;
    color: #5F3316;
    position: relative;
    visibility: visible;
}

.header-mobile .menu-opened {
    display: none;
}

.header-mobile .menu-open, .header-mobile .menu-close {
    margin-right: 12px;
}

.header-mobile .header-search {
    margin-right: 28px;
}

.search {
	margin-right: 40px;
}

.header-mobile-right .menu-closed, .header-mobile-right .menu-opened {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.header-mobile-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu {
    display: none;
}

.mobile-menu-top {
    width: 100%;
    height: 56px;
    background: #F3E8D8;
    color: #5F3316;
    padding-left: 8px;
}

.main-mobile-menu {
    text-transform: uppercase;
    font-weight: 500;
    padding: 32px 16px 0;
}

.main-mobile-menu li {
    margin-top: 24px;
    line-height: 20px;
}

.main-mobile-menu li:first-child {
    margin-top: 0;
}

.main-mobile-menu-list + .main-mobile-menu-list {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #BBB9AE;
}

.mobile-menu-bottom {
    position: absolute;
    bottom: 33px;
    left: 25px;
}

.header-mobile .header-social-item:first-child {
    margin-left: 0;
}

.social-item a:hover,  .header-search:hover, .header-search:hover .icon-search {
 	text-decoration: none;
	color: #413E33;
}

@media (min-width: 600px) {
    .header-mobile {
        font-size: 20px;
    }
}

/* Page Content */

.page-content {
    padding-top: 32px;
}

@media (max-width: 768px) {
    .page-content {
        padding-top: 16px;
    }
}

/* Page Heading */

.page-header {
    padding: 32px 0 48px 0;
}

.page-header h1 {
    margin-bottom: 24px;
}

.page-header-ornament {
    display: block;
    margin: 16px auto 0;
    opacity: 0.5;
}

.up-header {
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 16px;
        padding-bottom: 24px;
    }

    .page-header .section-header {
        margin-top: 6px;
    }

    .page-header h1 {
        margin-bottom: 8px;
    }

    .page-header-ornament {
        margin-top: 8px;
    }
}

/* Breadcrumbs */

.breadcrumbs {
    color: #7E7C71;
    display: flex;
    font-family: 'Avenir Next', sans-serif;
    padding: 10px 0;
}

.breadcrumbs-item {
    margin-right: 8px;
    font-weight: 500;
    flex-shrink: 0;
}

.breadcrumbs-item:first-child:after {
    left: 17px;
}

.breadcrumbs-item:after {
    content: '/';
    display: inline-block;
    margin-left: 8px;
    font-weight: 600;
}

/* Ornament */

.inner-ornament {
    padding: 32px 0;
    background: url(../img/text-ornament.png) 120px center no-repeat;
    min-height: 500px;
}

.outer-ornament {
    padding-top: 40px;
    padding-left: 40px;
    background: url(../img/Ornament-transparent.png) top left no-repeat;
    background-size: contain;
}

.bottom-ornament {
    background: url(../img/bottom-ornament.png) bottom center repeat-x;
}

@media (max-width: 992px) {
    .inner-ornament {
        padding: 24px 0 0;
        background-position: calc(15vw - 32px) top;
    }
}

@media (max-width: 576px) {
    .outer-ornament {
        padding: 16px 0 0 16px;
        margin-left: -16px;
    }
}

/* Main Content */

.content-section {
    padding: 64px 0;
    margin-bottom: 48px;
    background-color: #F3E8D8;
}

.content-section.bottom-ornament {
    padding-bottom: 128px;
}

.content-section-compact {
    padding: 48px 0;
}

.content-section.detailed {
	padding: 0;
    margin: 32px auto 64px;
    background-color: #F8F7EC;
}


@media (max-width: 768px) {
	.content-section.detailed {
    	margin: 16px auto 32px;
	}
}

.section {
    margin-top: 48px;
}

.section h2 {
    text-align: center;
    margin-bottom: 24px;
}

.outer-section {
    background-color: #F3E8D8;
    /* Disable margin top collapse */
    padding-top: 1px;
    margin-top: -1px;
    margin-bottom: 48px;
}

.outer-section .section, .section .half-bg-back {
    padding-bottom: 48px;
}

.outer-section .section.ornament {
	padding-bottom: 8px;
}

.section-inner-block {
    padding: 40px 48px;
    background: #F8F7EC;
    border-radius: 12px;
}

.section-inner-block.detailed {
	background: #F3E8D8;
	padding: 48px;
}

.section-inner-block.section-inner-sideblock {
    width: 808px;
}

.row > * > .section-inner-block.section-inner-sideblock {
    width: auto;
}

.section-inner-block.section-inner-center {
    width: 808px;
    margin: auto;
}

.section-inner-block.section-inner-center h3 {
    text-align: center;
}

.section-text {
    text-align: center;
    margin-top: 32px;
}

.section-text.gifts {
	max-width: 780px;
		margin: 64px auto 0 auto;
}

.text-btn {
    margin-top: 24px;
}

.extra-text {
    font-style: italic;
    font-size: 14px;
}

.extra-description {
    display: flex;
    align-items: flex-start;
}

.extra-block {
    display: flex;
    align-items: center;
}

.extra-block + .extra-block {
    margin-top: 24px;
}

.extra-description img, .extra-block img {
    margin-right: 16px;
}

.extra-block img {
    width: 96px;
    height: 96px;
    object-fit: cover;
}

.content-image, .product-img img, .content-card img {
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 8px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background-color: #fff;
	-webkit-appearance: none;
}

.section-inner-block.detailed .content-image, .section-inner-block.detailed .slider-dots li.slick-active {
	box-shadow: none;
}

.round-image {
    border-radius: 100%;
}

.creator-image, .extra-block img {
    border-radius: 100%;
}

.content-tabs-container {
    text-align: center;
}

.content-tabs {
    display: inline-flex;
}

.content-tab {
    color: #9D9A8F;
}

.content-tab h2 {
    color: inherit;
}

.content-tab + .content-tab {
    margin-left: 24px;
}

.content-tab:hover, .content-tab.active {
    color: #413E33;
    text-decoration: underline;
}

.tab-content.slick-slide {
    margin: 0 50px;
}

.tabs-content .slick-list {
    margin: 0 -50px;
    padding: 0;
}

.tabs-content .round-image {
	width: 104px;
}

.section-header h1, .section-header h2 {
    color: #231F14;
}

.section-header h2 {
    margin-bottom: 24px;
}

.section-header {
    max-width: 808px;
    margin: auto;
    text-align: center;
    color: #605D52;
	padding-bottom: 64px;
}

.section-header-wide {
    max-width: 1016px;
}

.section-block {
    margin-top: 0;
}

.section-block.second {
	margin-top: 0px;
}

.section-block .col-lg-6:nth-last-child(-n+2) a {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.activity-collection {
		padding: 32px 200px 0 32px;
		background-color: #EBD8BC;
		border-radius: 20px;
		margin-bottom: 32px;
    	background-image: url(../img/ornament-footer.png);
    	background-position: right top -32px;
		background-size: 160px auto;
    	background-repeat: no-repeat;
	}
}

.sidebox-wrap {
    position: relative;
    padding-top: 24px;
    padding-left: 48px;
	margin-top: -24px;
}

.sidebox-ornament {
    position: absolute;
    width: 80%;
    height: 80%;
    opacity: 0.3;
    top: 0;
    left: 0;
    background: url(../img/ornament.png) left top no-repeat;
    z-index: 0;
    background-size: contain;
}

.sidebox {
    background: #EBD8BC;
    border: 1px solid rgba(95,51,22, 0.04);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.sidebox .small-text {
    margin-top: 24px;
}

form p > a, form p > a:hover {
    color: inherit;
}

.form-sidebox  {
    width: 100%;
}

.form-sidebox h3 {
    margin-bottom: 24px;
    text-align: center;
}

.form-sidebox .sidebox {
    padding: 32px 32px 24px;
}

.form-sidebox {
    padding-bottom: 22px;
}

.form-sidebox button {
    width: 100%;
}

.form-sidebox .success-text {
    color: #231F14;
    text-align: center;
}

.form-sent-picture {
    text-align: center;
    margin-bottom: 24px;
}

.form-sent h3 {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .section h2 {
        margin-bottom: 16px;
    }

    .extra-description {
        margin-top: 24px;
        margin-left: 0;
        width: 100%;
    }

    .content-section {
        padding: 32px 0;
        margin-bottom: 24px;
    }

    .section-header h2 {
        margin-bottom: 16px;
    }

    .sidebox-wrap {
        margin-top: 24px;
    }

    .form-sidebox .sidebox {
        padding: 48px 48px 40px;
    }

    .section-inner-block.section-inner-sideblock, .section-inner-block.section-inner-center {
        width: auto;
    }

    .section {
        margin-top: 60px;
    }

    .section-block {
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .outer-section .section {
        padding-bottom: 32px;
    }
}

@media (max-width: 575px) {
    .section-inner-block, .section-inner-block.section-inner-sideblock, .section-inner-block.section-inner-center {
        margin-left: -16px;
        margin-right: -16px;
        padding: 32px 16px;
        border-radius: 0;
    }

    .sidebox .input, .sidebox .btn {
        width: 100%;
    }
	
	.content-section.detailed {
		margin: 16px auto;
	 }
	
	.section-header {
		padding-bottom: 32px;
	}
}

@media (max-width: 480px) {
    .extra-description {
        flex-direction: column;
        text-align: center;
    }

    .extra-description img {
        margin: auto auto 8px;
    }

    .sidebox-ornament {
        left: -16px;
        width: 100vw;
    }

    .sidebox {
        padding: 20px;
    }
	
	.form-sidebox .sidebox {
        padding: 32px 24px 24px;
    }
}

/* Section Form */

.section-form {
    background: #EBD8BC;
}

@media (min-width: 768px) {
    .section-form .container {
        max-width: 808px;
    }
}

.section-form h2 {
    text-align: center;
    margin-bottom: 24px;
}

.form-sent h2, .section-form .form-sent h3 {
    text-align: center;
    margin-bottom: 16px;
}

.section-form.section-inner-block h2 {
    text-align: left;
}

.section-form .input-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.input-wrap.row {
    align-items: flex-end;
}

.section-form .input-title {
    width: 100%;
}

.section-form .input {
    width: 100%;
}

.section-form .input-wrap > .input {
    flex-grow: 1;
    width: auto;
    margin-right: 24px;
}

.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.section-form p, .section-form .form-extra-text, .section-form .success-text, .sidebox .form-extra-text {
    text-align: center;
}

.section-form .success-text > a {
    color: #5F3316;
    font-weight: 600;
}

@media (max-width: 576px) {
    .form-bottom {
        flex-direction: column-reverse;
    }

    .form-bottom p {
        text-align: left;
        width: 100%;
    }

    .form-bottom button {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .section-form button {
        width: 100%;
        margin-top: 24px;
    }

    .section-form .input-wrap > .input {
        margin-right: 0;
    }
}


/* Cards */

.content-card {
    margin-bottom: 32px;
    display: block;
    position: relative;
}

.content-card img, img.activity-collection-img {
    width: 184px;
    height: 184px;
    object-fit: cover;
    flex-shrink: 0;
}

.content-card img {
    width: 184px;
    height: 184px;
    object-fit: cover;
    flex-shrink: 0;
}


.catalog-card img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.card-mark {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 1;
}

.content-card .card-header {
    margin-bottom: 4px;
    text-align: left;
    margin-top: 0;
}


.card-header {
    color: #231F14;
    font-weight: 600;
    background: transparent;
    border-bottom: 0;
    padding: 0;
    text-align: left;
    font-size: 20px;
    line-height: 26px;
}

.round-image-block .card-header {
	text-align: center;
}

.card-header.gifts {
	text-align: center;
	margin: 16px auto 0 auto;
	max-width: 240px;
}

.card-text {
	display: block;
  	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 3;
  	overflow: hidden;
  	text-overflow: ellipsis;
}

@media (min-width: 576px) {
    .cards-row {
        margin-bottom: -32px;
    }
}

@media (max-width: 768px) {
    .content-card img {
        margin-bottom: 16px;
    }
}



@media (max-width: 576px) {
    .activity-card {
        flex-direction: column;
        justify-content: space-between;
    }

    .cards-row {
        margin-bottom: -24px;
    }

    .content-card img {
        width: calc(100vw - 32px);
        height: 56vw;
    }

    .catalog-card img {
        width: calc(100vw - 32px);
        height: calc(100vw / 2 + 20px);
    }

    .blog-preview-container {
        flex-direction: column;
    }

    .blog-preview {
        margin-top: 24px;
        text-align: center;
    }

    .blog-preview p {
        text-align: left;
    }

    .blog-preview-btn {
        width: 100%;
    }

    .content-card {
        margin-bottom: 24px;
    }

    .cards-row.mobile-slider, .cards-row.md-slider {
        margin-bottom: 0;
    }
}

/* Activities */

.activity-card {
    display: flex;
}

.activity-img {
    margin-right: 16px;
}

a.activity-card.content-card:hover {
	text-decoration: none;
}

.activity-subtitle {
	margin: 12px 0 16px;
	text-align: center;
	font-size: 18px;
}

.post-title h1 {
	font-size: 32px;
	text-align: center;
	margin-bottom: 0;
}

.post-section h2 {
	font-size: 20px;
	margin-bottom: 16px;
}

h5.card-header:hover {
	text-decoration: underline;
}

.post-title {
	margin-bottom: 24px;
}

.post-title .page-header-ornament {
	transform: scale(0.75);
	margin-top: 12px;
}

.post-section {
	margin-bottom: 32px;
}

.post-section.last {
	margin-bottom: 0;
}

.post-section ul, .post-content ul {
	padding-left: 24px;
	list-style: disc;
}

.post-content ul + p {
	margin-top: 24px;
}

.post-content p + ul {
	margin-top: 12px;
}

.link-to-shop {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 40px;
	padding: 24px;
	background-color: #F8F7EC;
	border: 2px solid #5F3316;
	border-radius: 8px;	
}

.link-to-shop > *:not(:last-child) {
 	margin-right: 32px;
}

.link-to-shop_content {
	flex: 1 0 auto;
}

.link-to-shop_logo {
	flex: 0 2 216px;
}

.link-to-shop_title {
	font-weight: 500;
	font-family: 'Avenir Next', sans-serif;
	text-transform: uppercase;
	color: #231F14;
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.link-to-shop_action .btn {
	width: 100%;
}

.qib-button-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.quantity {
    margin: 0 4px;
}

.qib-button {
	display: flex;
	height: 40px;
	width: 40px !important;
	padding: 0;
	align-items: center;
	justify-content: center;
}

.qib-button:hover {
	color: #5F3316;
	background-color: transparent;
}

.qib-button:disabled:hover {
	color: #7E7C71;
	background-color: #DAD8CD;
}

.error-message {
	font-size: 12px;
	line-height: 18px;
	padding-top: 4px;
	color: #ED1C24;
	font-weight: 600;
	display: none;
}

.error-message.visible {
	display: block;
}

.qty {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.quantity {
	width: calc(100% - 96px);
	height: 40px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

input[type="number"]:focus, input[type="number"]:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: inherit;
}

@media (max-width: 1199px) {
	.link-to-shop {
		flex-direction: column;
		justify-content: center;
		align-items: stretch;
	}
	
	.link-to-shop > *:not(:last-child) {
		margin-right: 0;
		margin-bottom: 24px;
	 }
	
	.link-to-shop_logo, .link-to-shop_content {
		flex: 1;
		align-self: center;
	}
	
	.link-to-shop_title {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.post-title h1 {
		font-size: 24px;
		text-align: center;
	}

	.post-section h2 {
		font-size: 18px;
		margin-bottom: 16px;
	}
	
	.activity-subtitle {
		margin: 8px 0 12px;
	}
}

@media (max-width: 575px) {
	.post-section {
		margin-bottom: 24px;
	}
	
	.link-to-shop {
		margin-top: 32px;
	}
	
	.link-to-shop > *:not(:last-child) {
		margin-bottom: 20px;
	 }
	
	.link-to-shop_title {
		font-size: 18px;
		margin-bottom: 16px;
	}
	
	.link-to-shop_logo img {
	  	max-height: 64px;
	}
}




/* Blog Preview */

.blog-preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-preview-image {
    margin-right: 24px;
}

.blog-preview-btn {
    margin-top: 32px;
}


.blog-preview {
    max-width: 808px;
}



.header-note {
    color: #9D9A8F;
    vertical-align: top; 
    display: inline-block;
    margin-left: 16px;
}

.catalog-header h1 {
    display: inline-block;
}


/* Gallery Catalog */

.catalog .container {
    display: flex;
    justify-content: space-between;
}

.catalog-main {
    flex-grow: 1;
}

.catalog-topbar {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.catalog-sidebar {
    color: #231F14;
    width: 264px;
    flex-shrink: 0;
}

.catalog-item-label {
    vertical-align: middle;
    margin-left: 12px;
}

.catalog-sidebar-item, .category-list-item {
    margin-top: 16px;
}

@media (min-width: 768px) {
    .woof_container + .woof_container {
        margin-top: 32px;
    }
}

.woof_list li {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.catalog-sidebar-item label {
    display: flex;
    align-items: center;
}

.catalog-sidebar-section {
    margin-bottom: 40px;
}


.catalog-sidebar h2 {
   font-weight: 600;
	font-size: 18px;
	text-transform: none;
}

.catalog-sidebar-header, .catalog-sidebar h4, .catalog-sidebar-mobile h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 26px;
    color: #231F14;
}

.catalog-sidebar-fade-link {
    color: #605D52;
}

.woof_checkbox_label_selected, .woof_radio_label_selected {
    font-weight: inherit;
}

.woof_reset_search_form {
    display: none;
}

.woof_container {
    padding: 0;
    margin: 0;
}

.woof_container_product_cat {
    display: none;
}

.catalog-sidebar-mobile .woof_container_product_cat {
    display: block;
}

.woof_radio_term_reset_visible {
    display: none !important;
}

.woof_products_top_panel ul[data-container="product_cat"] {
    display: none;
}

.woof_products_top_panel li a[data-tax="orderby"] {
    display: none;
}

.woof_products_top_panel {
    margin-top: 24px;
    margin-bottom: -8px;
}

.woof_products_top_panel_ul {
    display: flex;
    flex-wrap: wrap;
}

.woof_products_top_panel_ul .cancel-filters {
    order: 1;
}

.woof_products_top_panel li {
    margin: 0 !important;
}

.woof_info_popup#woof_html_buffer {
    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: rotate-forever;
    -moz-animation-name: rotate-forever;
    animation-name: rotate-forever;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    animation-timing-function: linear;
    height: 30px;
    width: 30px;
    border: 8px solid #EBD8BC;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    font-size: 0;
    box-shadow: none;
}

.catalog-sort-list {
    width: 208px;
}

.catalog-sort-list:after {
    color: #9D9A8F;
}

.product-img {
    margin-bottom: 12px;
}

.product-img img {
    width: 100%;
    height: auto;
}

.catalog-main .catalog-products {
    margin-top: 24px;
    padding-top: 48px;
    border-top: 1px solid #9D9A8F;
    margin-bottom: -32px;
}

.catalog-products {
    margin-top: 48px;
}

.catalog-product {
    margin-bottom: 32px;
}

.catalog-topbar-filters {
    width: 100%;
    margin-top: 24px;
}

.catalog-topbar-filters-inner {
    display: flex;
}

.sort-price-up .icon, .sort-price-down .icon {
    font-size: 16px;
}

.filter-bar, .woof_products_top_panel_ul li ul li, .woof_products_top_panel_ul .cancel-filters {
    padding: 8px 16px 8px 16px;
    color: #fff;
    background: #DA6B5A;
    border-radius: 8px;
    margin: 0 12px 8px 0 !important;
    position: relative;
    flex-shrink: 0;
    line-height: 22px;
    font-size: 14px;
}

.woof_products_top_panel li span, .woof_products_top_panel_ul .cancel-filters {
    font-size: 16px;
    line-height: 24px;

}

.woof_products_top_panel li span {
    background: none;
    padding: 0;
    font-weight: 600;
}


.woof_products_top_panel li span:after, .woof_products_top_panel_ul .cancel-filters button:after {
    content: "\e904";
    font-weight: 100 !important;
    font-size: 24px;
    vertical-align: middle;
    font-family: 'icomoon' !important;
    margin-left: 12px;
}


.filter-name {
    font-size: 14px;
}

.filter-value {
    font-weight: 600;
}

.filter-cancel {
    position: absolute;
    right: 12px;
}

.filter-bar.hover, .woof_products_top_panel li.hover {
    background: #D55744;
}

.woof_products_top_panel_ul .cancel-filters {
    color: #231F14;
    background: #EBD8BC;
}

.woof_reset_button_2 {
    padding: 0;
}

.cancel-filters.hover, .woof_products_top_panel_ul .cancel-filters.hover {
    background: #DFC195;
}

.cancel-filters .filter-name {
    font-size: 16px;
}

.catalog-not-found {
    text-align: center;
    padding-top: 48px;
    margin-top: 32px;
    border-top: 1px solid #9D9A8F;
}

.woocommerce-ordering {
    z-index: 100;
}

.catalog-mobile-filter {
    display: none;
}

.catalog-sidebar-mobile-header {
    height: 56px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    background: #F3E8D8;
}

.catalog-sidebar-mobile-header-text {
    text-align: center;
    line-height: 56px;
    text-transform: uppercase;
    font-weight: 600;
    color: #5F3316;
}

.woof_products_top_panel, .swipe-scroll {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.woof_products_top_panel::-webkit-scrollbar, .swipe-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.catalog-sidebar-mobile {
    display: none;

    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #F8F7EC;
    z-index: 1000;
    padding-top: 84px;
    overflow-y: auto;
    overflow-x: hidden;
}

.catalog-sidebar-mobile ul.woof_list {
    padding: 0 16px;
}

.catalog-sidebar-mobile h4 {
    margin: 0 0 0 16px;
}

.catalog-sidebar-mobile .woof_submit_search_form_container {
    padding: 12px 16px;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #F3E8D8;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.catalog-sidebar-mobile .woof_submit_search_form {
    width: 100%;
}

.catalog-sidebar-mobile .close, .catalog-sidebar-mobile .back {
    position: absolute;
    height: 24px;
    width: 24px;
    left: 16px;
    top: 16px;
    color: #5F3316;
    cursor: pointer;
}

.catalog-sidebar-mobile .back {
    justify-content: center;
    align-items: center;
}
.catalog-sidebar-mobile .back .icon {
    font-size: 36px;
}

.catalog-sidebar-mobile .back {
    display: none;
}

.catalog-sidebar-mobile .woof_radio_label {
    position: relative;
    width: 100%;
}

.woof_radio_label::before {
    left: 0;
}

.woof_radio_label::after {
    left: 4px;
}

.woof_radio_label {
    margin-left: 0;
    padding-left: 25px;
}

.catalog-sidebar-mobile .woof_radio_label {
    padding-left: 0;
}

.catalog-sidebar-mobile .woof_radio_label::before {
    position: absolute;
    right: 0;
    left: initial;
}

.catalog-sidebar-mobile .woof_radio_label::after {
    right: 4px;
    left: initial;
}

.woof_radio_term {
    display: none;
}

.woof_radio_label::before {
    content: '';
    border-radius: 100%;
    width: 20px;
    height: 20px;
    border: 1px solid #887559;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.woof_radio_term:checked + .woof_radio_label::before,
.woof_radio_term[checked] + .woof_radio_label::before {
    border-color: #5F3316;
}

.woof_radio_label::after {
    content: '';
    background: #5F3316;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.woof_radio_term:checked + .woof_radio_label::after,
.woof_radio_term[checked] + .woof_radio_label::after {
    opacity: 1;
}


@media (max-width: 768px) {
    .catalog-sidebar {
        display: none;
    }

    .catalog-sort {
        width: 100%;
    }

    .catalog-sort-list {
        width: 100%;
    }

    .catalog-mobile-filter {
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }

    .catalog-mobile-filter-btn {
        width: 100%;
    }

    .catalog-mobile-filter-btn .icon {
        margin-left: 16px;
    }

    .catalog-topbar-filters {
        margin-top: 12px;
        padding-bottom: 41px;
        position: relative;
    }

    .catalog-topbar-filters-inner {
        display: flex;
        position: absolute;
        top: 0;
    }

    .woof_products_top_panel li {
        float: none;
    }

    .woof_products_top_panel  {
        padding-bottom: 42px;
    }

    .woof_products_top_panel_ul {
        position: absolute;
        top: 0;
        left: 0;
        width: max-content;
    }

    .woof_products_top_panel_ul li ul {
        display: flex;
        flex-wrap: nowrap;
    }

    .woof_block_html_items {
        display: none;
        white-space: nowrap;
        margin-left: 100%;
        transition: margin-left 0.6s ease;
        position: absolute;
        top: 56px;
        padding: 28px 0;
        width: 100%;
        overflow-y: auto;
        bottom: 64px
    }

    .catalog-sidebar-mobile h4 {
        transition: margin-left 0.6s ease;
        padding: 11px 16px;
        margin: 0;
        position: relative;
        cursor: pointer;
        width: 100%;
    }

    .catalog-sidebar-mobile h4:after {
        content: "\e924";
        font-family: 'icomoon';
        position: absolute;
        display: inline-block;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .catalog-sidebar-mobile .woof_container:not(.filter-container-empty) + .woof_container h4 {
        border-top: 1px solid #BBB9AE;
    }
}

.btn-catalog-excerpt {
    margin-top: 32px;
    text-align: center;
}

@media (min-width: 992px) {
    .catalog-products.row {
        justify-content: center;
    }

    .catalog-main .catalog-products.row {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .catalog-products {
        margin-top: 16px;
    }

    .catalog-main .catalog-products {
        margin-top: 24px;
        padding-top: 24px;
    }

    .btn-catalog-excerpt a {
        width: 100%;
    }

}


/* Pagination */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.pagination > li {
    margin-left: 12px;
    width: 40px;
    height: 40px;
}

.pagination > li:first-child {
    margin-left: 0;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-item.active {
    background: #EBD8BC;
    border-radius: 100%;
    color: #5F3316;
}

.pagination .icon {
    font-size: 36px;
}

.pagination-item .disabled {
    color: #BBB9AE;
}

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

a.prev:hover {
	text-decoration:none;
}
@media (max-width: 996px) {
    .pagination > li {
        margin-left: 6px;
    }
}

@media (max-width: 575px) {
    .pagination > li {
        display: none;
    }

    .pagination .pagination-item:nth-child(1),
    .pagination .pagination-item:nth-child(2),
    .pagination .pagination-item:nth-child(3),
    .pagination .pagination-item:nth-last-child(1),
    .pagination .pagination-item:nth-last-child(2),
    .pagination .pagination-item:nth-last-child(3) {
        display: flex;
    }


}

/* Product Card */

.product-card-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-images {
    width: 110px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.product-card-main-images-container {
    width: 600px;
    overflow: hidden;
    align-self: stretch;
    position: relative;
}

.product-card-main-images .slider-dots {
    margin-top: 0;
}

.product-card-main-images .slider-dots li {
    display: none;
}

.product-card-main-images img {
    border-radius: 12px;
}

.product-card-main-img img {
    width: 100%;
    border-radius: 12px;
}

.product-card-intro-wrap {
    width: 474px;
    margin-left: 24px;
}

.product-card-intro {
    width: 426px;
}

.product-card-intro-header {
    color: #605D52;
    font-weight: 600;
}

.product-card-variants {
    margin-bottom: 24px;
}

.product-card-variant-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-left: -4px;
    margin-right: -4px;
}

.product-card-variant-list .product-card-img-overview {
    margin-bottom: 8px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    padding: 0 4px;
    box-sizing: content-box;
}

.product-card-variant-list .product-card-img-overview img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-card-full-description {
    margin-top: 8px;
    color: #5F3316;
    font-weight: 600;
    display: block;
}

.product-card-img-overview img {
    cursor: pointer;
    border-radius: 12px;
    margin-bottom: 16px;
}

.product-card-img-overview.slick-current img, .product-card-img-overview.variation-current img {
    border: 2px solid #5F3316;
}

.product-card-intro-descr p {
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
}

.product-card-intro-header {
    font-family: 'Montserrat', sans-serif;
}

.product-card-images-list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.product-card-images .btn-up {
    margin-bottom: 16px;
}

.product-card .section-inner-block {
    margin-top: 96px;
}

.product-card-details {
    display: flex;
    justify-content: space-between;
}


.product-card-specification {
    width: 636px;
}

.product-card .recommended-products {
    width: 434px;
    margin-left: 48px;
}

.product-card-char {
    margin-top: 32px;
}

.product-card-char-item + .product-card-char-item {
    margin-top: 8px;
}

.product-card-char-name {
    display: inline-flex;
    align-items: baseline;
    width: 192px;
    color: #7E7C71;
    font-weight: 600;
}

.product-card-char-name:after {
    content: '';
    display: block;
    border-bottom: 1px dashed #7E7C71;
    margin: 0 8px;
    width: 100%;
}

.variation-content-hide {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.product-card-images-variation-list.variation-content-hide {
    top: 0;
    height: 100%;

}

.product-card-variation-main-images.variation-content-hide {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.product-card-variation-main-images.variation-current {
    display: flex;
    align-items: center;
    height: 100%;

    top: initial;
    transform: none;
    z-index: 1;
}

.variation-current {
    position: static;
    opacity: 1;
    transition: opacity 0.5s ease;
}


@media (max-width: 1200px) {
	.sidebox-wrap {
		padding-left: 10px;
	}
	.sidebox-ornament {
		margin-left: -12px;
	}
}

@media (max-width: 996px) {
    .product-card-main-images-container {
        /*flex-grow: 1;*/
        width: 100%;
        flex-shrink: 1;
    }

    .product-card-hero {
        flex-wrap: wrap;
    }

    .sidebox-wrap {
        width: 100%;
    }

    .sidebox {
        width: 100%;
    }

    .product-card-main-images .slider-dots {
        margin-top: 16px;
    }

    .product-card-main-images .slider-dots li {
        display: block;
    }

    .product-card-images {
        display: none;
    }
	
	.sidebox-wrap {
		padding-left: 0;
		margin-top: 0;
	}
	.sidebox-ornament {
		margin-left: -64px;
	}


}

@media (max-width: 575px) {
    .product-card-details {
        flex-direction: column;
        padding: 32px 16px;
    }

    .product-card-specification {
        width: 100%;
    }

    .product-card .recommended-products {
        margin-left: 0;
        width: 100%;
        margin-top: 24px;
    }

}

/* Action */

.char-info {
    margin-top: 8px;
}

.char-info:first-child {
    margin-top: 24px;
}

.char-info-value {
    font-weight: 600;
	color: #4B2811;
	font-size: 18px;
	line-height: 26px;
}

.exhibition-info .action-info-name {
    width: 160px;
    display: inline-block;
}

.exhibition-info .action-info-value {
    color: #5F3316;
}

.action-info.exhibition-info {
    margin-top: 16px;
}

.action-card h3 {
    margin-bottom: 16px;
    text-align: center;
}

.action-img, .post-img {
    margin-bottom: 32px;
    width: 100%;
    object-fit: cover;
    height: 408px;
    border-radius: 4px;
}

.action-card .form-sent {
    text-align: center;
}

.consult-header {
    text-transform: uppercase;
}

.consult-header .badge-red {
    margin-left: 16px;
}

.char-info-group {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px 40px;
}

.action-info {
	display: flex;
	padding: 0;
	margin-top: 0 !important;
	flex-basis: calc(50% - 20px);
}

.action-info-name {
	display: inline-flex;
	text-wrap: nowrap;
  	align-items: baseline;
  	width: 100%;
}
.action-info-value {
	text-wrap: nowrap;
	text-align: right;
}
.action-info-name::after {
	content: "";
  	display: block;
  	border-bottom: 1px dashed #7E7C71;
  	margin: 0 8px;
  	width: 100%;
}

@media (max-width: 1199px) {
	.action-info {
		flex-basis: 100%;
	}
}

@media (max-width: 995px) {
    .action-img, .post-img {
        height: auto;
    }
}

@media (max-width: 768px) {

    .action-card h3 {
        margin-bottom: 8px;
    }
}

@media (max-width: 575px) {
    .action-img, .post-img {
        height: calc(67.5vw - 32px);
    }
	.action-img, .post-img {
		margin-bottom: 24px;
	}
}



/* Footer */

.footer {
    position: relative;
    width: 100%;
    font-family: 'Avenir Next', sans-serif;
    padding-top: 64px;
    background: #F0EBE3;
}

.footer-nav {
    padding-bottom: 56px;
}

.footer-menu {
    line-height: 20px;
}

.footer-menu-header {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
}

.footer-menu li, .footer-menu-header {
    height: 20px;
    margin-bottom: 16px;
}

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.footer-bottom {
    font-family: 'Source Sans Pro', sans-serif;
    padding: 40px 0;
    border-top: 1px solid rgba(126, 124, 113, 0.5);;
}

@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }

    .footer-nav {
        padding-bottom: 26px;
    }

    .footer-menu li {
        height: initial;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0 32px;
    }

    .footer-bottom-left {
        margin-bottom: 17px;
    }

    .footer-bottom-center {
        margin-bottom: 17px;
    }

    .footer .social-item {
        margin-left: 23px;
    }

    .footer .social-item:first-child {
        margin-left: 9px;
    }



    .footer-menu .sub-menu {
        display: none;
        padding-left: 16px;
        margin-top: 22px;
    }

    .footer-menu.extract-column li {
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .footer-menu-header {
        margin-bottom: 0;
        cursor: pointer;
        position: relative;
    }

    .footer-menu-header:after {
        content: '\e914';
        font-family: 'icomoon';
        position: absolute;
        display: inline-block;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .extract-column .footer-menu-header {
        display: none;
    }
    .footer-menu.extract-column .sub-menu {
        display: block;
        margin: 0;
        padding: 0;
    }

    .footer-menu.extract-column li, .footer-menu-header {
        margin-top: 24px;
    }

    .footer-menu.menu-open .footer-menu-header:after {
        content: '\e92c';
    }

    .footer-menu li {
        margin-bottom: 20px;
    }

    .footer-menu li:last-child {
        margin-bottom: 0;
    }

}

/* Creator */

.creator-block {
    margin-bottom: 24px;
}

.creator-block:last-child {
    margin-bottom: 0;
}

.creator-about {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.creator-text {
    margin-left: 16px;
}

.creator-name {
    color: #231F14;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

@media (max-width: 768px) {
    .creator-image {
        width: 88px;
        height: 88px;
    }

    .creator-about {
        align-items: flex-start;
    }
}



.drag-scroll .os-scrollbar, .breadcrumbs-wrap .os-scrollbar {
    display: none;
}

/* Slider */

.mobile-slider .slick-slide, .slider .slick-slide, .md-slider .slick-slide {
    margin: 0 8px;
}


.mobile-slider .slick-list, .slider .slick-list, .md-slider .slick-list {
    /* 0 - 15px -8px - 6px */
    margin: -15px -14px;
}

.mobile-slider, .md-slider {
    overflow: hidden;
    padding-bottom: 4px;
    margin-bottom: -4px;
}

.md-slider {
	justify-content: center;
}

.tabs-content.slick-slider {
    user-select: initial;
    touch-action: initial;
    -webkit-tap-highlight-color: initial;
    overflow: hidden;

}

.slider-dots {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0;
    font-size: 0;
    margin-top: 16px;
    align-items: center;
}

.slider-dots li {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #9D9A8F;
    vertical-align: middle;
    margin: 0 4px;
    cursor: pointer;
}

.slider-dots li.slick-active {
    width: 16px;
    height: 16px;
    background: #5F3316;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slick-arrow {
    position: absolute;
    top: 0;
    color: #5F3316;
    z-index: 1;
}

.slick-vertical .slick-arrow {
    position: static;
}

.slick-vertical .slick-list {
    padding: 0;
    margin: 0;
}

.slick-next {
    right: 0;
}

.slick-prev {
    right: 96px;
}

.slick-arrow.slick-disabled {
    color: #887559;;
}

.slick-list {
    padding: 15px 6px;
    margin: -15px -6px;
}

.side-slider {
    padding-top: 40px;
}

.slider-collection {
	margin: -24px 0 40px;
}

.slider-collection .content-image {
	border-radius: 8px;
}
.slider-collection img {
	filter: none;
}

.side-slider .slick-list {
    /* 0-15px -16px-6px (no shadow crop) */
    margin: -15px -22px;
}

.side-slider-wrap {
    display: flex;
    align-items: center;
}

.side-slider-text {
    flex-shrink: 1;
}

.side-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top center;
}

.side-slide {
    height: auto;
    aspect-ratio: 16/10;
    margin: 0 16px;
}

.side-slider-mobile-text {
    margin-top: 16px;
}

.side-slider-mobile-bottom {
    margin-top: 48px;
}

@media (max-width: 575px) {
    .side-slider {
        margin: 0;
        padding-top: 0;
    }
	
	.slider-collection {
		margin-bottom: 32px;
	}

    .slick-arrow {
        display: none;
    }
}

/*  Text Block */

.text-block h1 {
    margin-bottom: 28px;
}

.text-block h2 {
    margin-bottom: 24px;
}

@media (max-width: 768px) {
	.text-block h1 {
		margin-bottom: 20px;
	}

	.text-block h2 {
		margin-bottom: 16px;
	}
}

.text-block, .text-block h2 {
    text-align: left;
}

/* Round Image */

.round-image-block {
    text-align: center;
}

.round-image-block img {
    margin: 0 auto;
    width: 240px;
    object-fit: cover;
}

/* Half Bg */

.half-bg-container {
    background: #F3E8D8;
}

.half-bg-top {
    background: #F8F7EC;
    padding-bottom: 120px;
}

.half-bg-tall .half-bg-top {
    padding-bottom: 272px;
}

.half-bg-tall .half-bg-back {
    margin-top: -216px;
}

.half-bg-more-tall .half-bg-top {
    padding-bottom: 357px;
}

.half-bg-more-tall .half-bg-back {
    margin-top: -357px;
}

.half-bg-back {
    margin-top: -150px;
    padding-top: 1px;
}

@media (max-width: 576px) {
	.half-bg-back {
    	margin-top: -120px;
		}
}

.half-bg-invert {
    background: #F8F7EC;
}

.half-bg-invert .half-bg-top {
    background: #F3E8D8;
}

.half-bg-small .half-bg-top {
    padding-bottom: 86px;
}

.half-bg-small .half-bg-back {
    margin-top: -86px;
}

/* Pseudo Footer Shop */

.pseudo-footer-container {
    padding-bottom: 48px;
}

.pseudo-footer {
    background-image: url(../img/ornament-footer.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-color: #F3E8D8;
}

.pseudo-footer-shop {
    background-image: url(../img/home/footer-shop-ornament.png);
    background-color: #DA6B5A;
}

.pseudo-footer-menu-item {
    color: #413E33;
}

.pseudo-footer-shop, .pseudo-footer-shop .pseudo-footer-header, .pseudo-footer-shop .pseudo-footer-menu-item {
    color: #F8F7EC;
}

@media (min-width: 768px) {
    .pseudo-footer .container {
        padding: 64px 80px 96px 0;
    }

    .pseudo-footer-shop .container {
        padding-bottom: 90px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1330px) {
    .pseudo-footer .container {
        padding-right: 180px;
    }
}

.pseudo-footer-shop h2 {
    color: #fff;
}

.pseudo-footer-header {
    margin-bottom: 32px;
}

.pseudo-footer-menu-item {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

@media (min-width: 992px) {
    .pseudo-footer-shop .pseudo-footer-menu-item + .pseudo-footer-menu-item {
        margin-top: 24px;
    }
}
@media (max-width: 992px) {
    .pseudo-footer-menu-item {
        margin-top: 20px;
    }

    .pseudo-footer-menu {
        margin-top: -20px;
    }
}

@media (max-width: 768px) {
    .pseudo-footer {
        background-image: none;
        padding: 32px 0;
    }

    .pseudo-footer-menu-item {
        font-size: 18px;
        font-weight: 500;
        font-family: 'Avenir Next', sans-serif;
        line-height: 22px;
    }
}

/* Search */

.search-field {
	padding-left: 48px;
}

.search-container {
    position: relative;
}

.search-container:before {
    content: "\e927";
    font-family: 'icomoon' !important;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    width: 20px;
    height: 20px;
    color: #9D9A8F;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
	.search-wrap {
		padding: 0 16px
	}
}

.search-img, img.search-img {
    width: 122px;
    height: 122px;
    flex-shrink: 0;
}

.search-link {
    position: absolute;
    bottom: 0;
    font-weight: 600;
    color: #5F3316;
}

.search-card {
    margin-bottom: 24px;
}

.search-card:last-child {
    margin-bottom: 0;
}

.search-card + .search-card {
    padding-top: 24px;
    border-top: 1px solid #9D9A8F;
}

@media (max-width: 768px) {
    img.search-img {
        margin-bottom: 0;
    }

    .search-link {
        position: static;
        margin-top: 16px;
        display: block;
    }
}

@media (max-width: 576px) {
    .search-img, img.search-img {
        display: none;
    }
}

/* Modal */

.modal:before {
    content: '';
    display: block;
    z-index: 1000;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: #887559;
    opacity: 0.5;
}

.modal {
    padding: 24px 0;
}

.modal-window {
    margin: auto;
    width: 600px;
    z-index: 1010;
    position: relative;
}

.modal-window:not(.modal-window-box) {
	top: 50%;
    transform: translateY(-50%);
}

.modal-window-box {
    background: #F8F7EC;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 48px 48px 136px;
	margin: 50% auto;
  	transform: translateY(-50%);
}

.modal-close-mark {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.modal-close-mark .icon {
    font-size: 20px;
}

.modal-title {
    text-align: center;
    margin-bottom: 24px;
}

.modal-content {
    position: static;
    display: block;
    width: auto;
    background: none;
    border: 0;

    margin-top: 24px;
}

.modal-img {
    width: 100%;
    height: 316px;
    object-fit: cover;
}

.modal-content p, .modal-content ul {
    margin-top: 8px;
}

.modal-bottom {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 48px;
    left: 0;
}

@media (max-width: 768px) {
    .modal-window {
        width: 100%;
    }

    .modal-window-box {
    	padding: 48px 24px 112px;
    }

    .modal-img {
        width: auto;
        height: auto;
    }
}

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