/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/* latin-ext */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/dist/fonts/lora-latin-ext-normal-400.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/dist/fonts/lora-latin-normal-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/dist/fonts/lora-latin-ext-normal-500.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/dist/fonts/lora-latin-normal-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/dist/fonts/lora-latin-ext-normal-600.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/dist/fonts/lora-latin-normal-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/dist/fonts/lora-latin-ext-normal-700.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/dist/fonts/lora-latin-normal-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-ext-normal-300.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-normal-300.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-ext-normal-400.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-normal-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-ext-normal-500.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-normal-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-ext-normal-600.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-normal-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-ext-normal-700.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-normal-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-ext-normal-800.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-normal-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-ext-normal-900.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/dist/fonts/rubik-latin-normal-900.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --brand: #a29060;
  --page-color: #2a2a2a;
  --page-bg: #f7f7f7;
  --link-color: #c5b381;
  --link-hover-color: #a29060;
  --selection-color: #fff;
  --selection-bg: #a29060;
  --font-size_base: 18px;
  --line_height_base: 1.5;
  --line_height_heading: 1.1;
  --font-primary: "Rubik", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  --font-secondary: "Lora", "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
  --base-font-size: 16px;
  --base-line-height: 1.5;
  --headings-line-height: 1.2;
  --headings-margin-bottom: 0.4em;
  --duration: 200ms;
  --spacing: 4px;
  --wrap: 1880px;
}

/* stylelint-disable */
/* stylelint-enable */
html {
  font-family: var(--font-primary);
  font-size: var(--font-size_base);
  line-height: var(--line_height_base);
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  box-sizing: border-box;
  overflow-y: scroll;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--page-color);
  background-color: var(--page-bg);
}

::-moz-selection {
  color: var(--selection-color);
  background: var(--selection-bg);
  text-shadow: none;
}

::selection {
  color: var(--selection-color);
  background: var(--selection-bg);
  text-shadow: none;
}

a {
  text-decoration: none;
  color: var(--link-color);
}
a:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
figcaption,
input,
select,
textarea,
button {
  margin-top: 0;
  margin-bottom: 0.5em;
}

b,
strong {
  font-weight: 500;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  line-height: var(--line-height_heading);
}

h1 {
  font-size: 1.4em;
}

h2 {
  font-size: 1.2em;
}

h3 {
  font-size: 1em;
}

h4 {
  font-size: 0.9em;
}

h5 {
  font-size: 0.8em;
}

h6 {
  font-size: 0.75em;
}

hr {
  width: 70%;
  margin: 5em auto;
  border-top: 0;
  border-bottom: 1px solid #ddd;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 10px;
  background: #f6f6f6;
  border-radius: 4px;
}

.select2-selection__rendered {
  padding: 6px;
  background: #f6f6f6;
}

.select2-container--default .select2-selection--single {
  border-color: #ddd;
}

.select2-container .select2-selection--single {
  height: 43px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 9px;
}

input,
select,
textarea {
  border: 1px solid #ddd;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.h1 {
  line-height: 1.1;
}
.h1 {
  font-size: clamp(1.75rem, -0.0277777778rem + 3.7037037037vw, 2.75rem);
}

.h2 {
  line-height: 1.1;
}
.h2 {
  font-size: clamp(1.75rem, 0.8611111111rem + 1.8518518519vw, 2.25rem);
}

.h3 {
  line-height: 1.1;
}
.h3 {
  font-size: clamp(1.5rem, 1.0555555556rem + 0.9259259259vw, 1.75rem);
}

.h4 {
  line-height: 1.1;
}
.h4 {
  font-size: clamp(1.375rem, 1.1527777778rem + 0.462962963vw, 1.5rem);
}

.h5 {
  line-height: 1.1;
}
.h5 {
  font-size: clamp(1.0625rem, 0.7291666667rem + 0.6944444444vw, 1.25rem);
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: block;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.w100 {
  width: 100%;
}

.m0 {
  margin: 0;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.px {
  padding-right: 16px;
  padding-left: 16px;
}

.text-center {
  text-align: center;
}

.cform-row {
  position: relative;
  gap: 12px;
  display: grid;
}
.cform-row:not(:last-child) {
  margin-bottom: 12px;
}
.cform-row[data-size="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.cform-row label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 3px;
  display: block;
}

.cform-input input,
.cform-input select,
.cform-select input,
.cform-select select {
  font-size: 16px;
  width: 100%;
  padding: 8px 12px;
  background: #fff;
}

.cform-submit {
  margin-top: 0.5em;
}
@media (max-width: 992px) {
  .cform-submit {
    margin: 0.5em auto;
  }
}

.customresults {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 300px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  z-index: 2;
}
.customresults ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.customresults li {
  font-size: 14px;
}
.customresults li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.customresults a {
  padding: 4px 10px;
  color: #334862;
  display: block;
}
.customresults a:hover {
  text-decoration: none;
  background-color: #f6f6f6;
}

#wpadminbar {
  position: fixed;
}

body.admin-bar .header {
  top: 46px;
}
@media (min-width: 783px) {
  body.admin-bar .header {
    top: 32px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: background-color var(--duration), box-shadow var(--duration);
  z-index: 10;
}
@media (max-width: 992px) {
  .header {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 2px 16px 0 rgba(0, 0, 0, 0.05);
  }
}
.header:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(assets/dist/img/pattern.png);
  background-size: 500px;
  opacity: 0.2;
}
.header.is-scrolled {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 2px 16px 0 rgba(0, 0, 0, 0.05);
}
.header > .wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header > .wrap {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

.header-holder {
  position: relative;
  width: 100%;
  height: 72px;
}

.header-logo {
  display: block;
  color: var(--page-color);
}

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

.header-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media (min-width: 1201px) {
  .header-menu-list {
    gap: 24px;
  }
}
.header-menu-list > .menu-item {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  display: block;
}
.header-menu-list > .menu-item:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  content: "";
}
.header-menu-list > .menu-item:hover:before {
  background: rgba(42, 42, 42, 0.05);
}
.header-menu-list > .menu-item.current-menu-item:not(.menu-item-home):before {
  background: var(--brand);
}
.header-menu-list > .menu-item > a {
  padding: 28px 0;
  color: currentColor;
  display: block;
  transition: background-color var(--duration), border-bottom var(--duration);
}
.header-menu-list > .menu-item > a:hover {
  text-decoration: none;
}

.header-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 2px 16px 0 rgba(0, 0, 0, 0.05);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: var(--duration);
}
.header-menu .sub-menu .menu-item {
  font-weight: 400;
}
.header-menu .sub-menu .menu-item:first-child {
  margin-top: 5px;
}
.header-menu .sub-menu .menu-item:last-child {
  margin-bottom: 5px;
}
.header-menu .sub-menu a {
  padding: 5px 10px;
  display: block;
  color: currentColor;
  opacity: 0.6;
}
.header-menu .sub-menu a:hover {
  text-decoration: none;
  opacity: 1;
}
.header-menu .menu-item-has-children:hover .sub-menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.header-actions {
  gap: 12px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.header-btn {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  position: relative;
  padding: 8px;
  color: #fff;
  background: var(--link-color);
  border-radius: 6px;
  display: inline-block;
  cursor: pointer;
  transition: color var(--duration), background-color var(--duration), border-color var(--duration);
}
.header-btn:hover {
  text-decoration: none;
  color: #fff;
  background: var(--link-hover-color);
}
@media (max-width: 768px) {
  .header-btn {
    display: none;
  }
}

.header-triggers {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
}
@media (max-width: 768px) {
  .header-triggers {
    transform: translateX(8px);
  }
}

.header-trigger {
  padding: 8px;
  color: var(--page-color);
  background: transparent;
  border-radius: 4px;
  transition: background-color var(--duration);
}
.header-trigger:hover {
  color: var(--page-color);
  background: #eee;
}
.header-trigger[data-trigger=cart], .header-trigger[data-wishlist] {
  position: relative;
}
.header-trigger[data-trigger=cart] span, .header-trigger[data-wishlist] span {
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 16px;
  position: absolute;
  bottom: 3px;
  left: 2px;
  width: 16px;
  height: 16px;
  color: #fff;
  background: #7f54b3;
  border-radius: 50%;
}
.header-trigger[data-trigger=profile] {
  display: block;
}
.header-trigger[data-trigger=nav] {
  display: block;
}
@media (min-width: 993px) {
  .header-trigger[data-trigger=nav] {
    display: none;
  }
}

.header-slide {
  position: fixed;
  bottom: 0;
  left: 16px;
  width: calc(100% - 32px);
  height: 0;
  transition: height calc(var(--duration) * 2);
  overflow: hidden;
  z-index: 12;
}
@media (max-width: 992px) {
  .header-slide.is-visible {
    height: 70vh;
  }
}

.header-slide-inner {
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 8px 8px 0 0;
}

.header-slide-close {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 8px;
  background: #fff;
  border-radius: 4px;
  transition: background-color var(--duration);
  z-index: 1;
}
.header-slide-close:hover {
  background: #eee;
}

.header-slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.header-slide-content {
  padding-top: clamp(1.25rem, -0.9722222222rem + 4.6296296296vw, 2.5rem);
  padding-bottom: clamp(1.25rem, -0.9722222222rem + 4.6296296296vw, 2.5rem);
}
.header-slide-content {
  padding-left: clamp(1.25rem, -5.4166666667rem + 13.8888888889vw, 5rem);
  padding-right: clamp(1.25rem, -5.4166666667rem + 13.8888888889vw, 5rem);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  transition: background-color var(--duration);
  content: "";
  z-index: 11;
}
@media (max-width: 992px) {
  .overlay.is-visible {
    pointer-events: auto;
    background-color: rgba(42, 42, 42, 0.9);
  }
}

.mobile-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ddd;
}
.mobile-menu-list > .menu-item {
  font-weight: 500;
  border-bottom: 1px solid #ddd;
}
.mobile-menu-list > .menu-item > a {
  padding: 10px;
  color: currentColor;
  display: block;
}
.mobile-menu-list > .menu-item > a:hover {
  text-decoration: none;
}
.mobile-menu-list .sub-menu {
  margin: 0 10px 10px;
  padding: 0;
  list-style: none;
  gap: 5px;
  display: flex;
  flex-flow: row wrap;
}
.mobile-menu-list .sub-menu .menu-item {
  font-size: 14px;
}
.mobile-menu-list .sub-menu .menu-item a {
  padding: 4px 8px;
  color: currentColor;
  background: #eee;
  display: inline-block;
}

.footer {
  padding: 64px 0 96px;
  background-color: #fff;
}
.footer > .wrap {
  gap: 48px;
  display: grid;
}
@media (min-width: 993px) {
  .footer > .wrap {
    gap: 64px;
    grid-template-columns: auto 1fr;
  }
}

.footer-columns {
  gap: 48px 32px;
  display: grid;
}
@media (min-width: 577px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 769px) {
  .footer-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-column-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.75em;
  padding-bottom: 0.75em;
  border-bottom: 1px solid #eee;
}

.footer-column-list {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
  display: grid;
}
.footer-column-list li {
  font-size: 16px;
  display: block;
}
.footer-column-list a {
  color: currentColor;
  display: block;
}

.footer-cards {
  margin-top: 2em;
  gap: 12px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .footer-cards {
    margin-top: 1em;
  }
}

.intro {
  position: relative;
  background-color: #fff;
  background-image: url("assets/dist/img/intro.jpg");
  background-repeat: no-repeat;
  background-size: 170%;
  background-position: 110% -10px;
}
@media (min-width: 769px) {
  .intro {
    background-size: 170%;
    background-position: center -30px;
  }
}
@media (min-width: 993px) {
  .intro {
    background-size: 1400px;
    background-position: 64% -30px;
  }
}
@media (min-width: 1201px) {
  .intro {
    background-position: center -30px;
  }
}
@media (max-width: 768px) {
  .intro .socials-buttons {
    display: none;
  }
}
.intro > .wrap {
  position: relative;
}

.intro-notice {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  padding: 4px 12px;
  color: #fff;
  background: var(--brand);
}

.intro-image {
  margin-top: 1em;
}

.intro-content {
  gap: 16px;
  display: grid;
  padding: 55% 0 16px;
}
@media (min-width: 769px) {
  .intro-content {
    width: 55%;
    padding: 40px 0 70px;
  }
}
@media (min-width: 993px) {
  .intro-content {
    width: 45%;
  }
}
@media (min-width: 1201px) {
  .intro-content {
    width: 55%;
  }
}

@media (max-width: 576px) {
  .intro-title {
    font-size: 1.2em;
  }
}

.intro-desc {
  font-size: 18px;
}
@media (max-width: 768px) {
  .intro-desc {
    display: none;
  }
}

.hero {
  position: relative;
  background: #fffaf3;
  overflow: hidden;
}
.hero:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(assets/dist/img/pattern.png);
  background-size: 500px;
  opacity: 0.2;
  content: "";
}
.hero > .wrap {
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 12px;
  display: grid;
}
@media (min-width: 769px) {
  .hero-content {
    width: 50%;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.hero-content-desc p:last-of-type {
  margin: 0;
}

.hero-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-bg {
    display: none;
  }
}

.main {
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .main {
    padding-block: clamp(1rem, -8.5384615385rem + 15.3846153846vw, 3rem);
  }
}
@media (max-width: 768px) {
  .main > .wrap {
    padding-right: 0;
    padding-left: 0;
  }
}

.main-inner {
  padding: 32px 16px;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(42, 42, 42, 0.05), 0 8px 12px 0 rgba(42, 42, 42, 0.05);
}
@media (min-width: 769px) {
  .main-inner {
    padding: 32px;
    border-radius: 6px;
  }
}

@media (min-width: 769px) {
  .entry-page {
    padding-left: clamp(0.0625rem, -10.4930555556rem + 21.9907407407vw, 6rem);
    padding-right: clamp(0.0625rem, -10.4930555556rem + 21.9907407407vw, 6rem);
  }
}
@media (min-width: 769px) {
  .entry-page.half {
    padding-left: clamp(0.0625rem, -3.8263888889rem + 8.1018518519vw, 2.25rem);
    padding-right: clamp(0.0625rem, -3.8263888889rem + 8.1018518519vw, 2.25rem);
  }
}

.entry-header {
  text-align: center;
  margin-bottom: 2em;
}
.entry-header time {
  font-size: 14px;
  color: #aaa;
}

.entry-title {
  text-align: center;
}
.entry-title time {
  font-size: 14px;
  color: #aaa;
}

.entry-content p,
.entry-content [class*=wp-block] {
  margin-bottom: 1.5em;
}
.entry-content .wp-element-caption {
  font-size: 14px;
  text-align: center;
  color: #888;
  margin-bottom: 0;
}

.books {
  padding-bottom: 72px;
}

.books-search {
  font-size: 16px;
  line-height: 1.25;
  width: 100%;
  border-radius: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  color: var(--page-color);
  background-color: #f7f7f7;
  border: 2px solid #dbdbdb;
  transition: border-color var(--duration);
}
@media (min-width: 769px) {
  .books-search {
    margin-top: 12px;
  }
}
@media (min-width: 993px) {
  .books-search {
    max-width: 500px;
  }
}
.books-search:hover, .books-search:focus-within {
  border-color: #9b9b9b;
}
.books-search input {
  width: 100%;
  margin: 0;
  padding: 8px 8px 8px 12px;
  color: currentColor;
  background: transparent;
  border: 0;
  outline: none;
}
.books-search input::-webkit-input-placeholder {
  color: #aaa;
}
.books-search input:-moz-placeholder {
  color: #aaa;
}
.books-search input::-moz-placeholder {
  color: #aaa;
}
.books-search input:-ms-input-placeholder {
  color: #aaa;
}
@media (min-width: 769px) {
  .books-search input {
    padding: 12px 12px 12px 18px;
  }
}
.books-search button {
  margin: 0;
  padding: 6px;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media (min-width: 769px) {
  .books-search button {
    padding: 10px;
  }
}
.books-search button svg {
  transition: transform var(--duration);
}
.books-search button:hover svg {
  transform: rotate(90deg);
}

.books-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  gap: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 769px) {
  .books-list {
    gap: 0 48px;
  }
}
.books-list + .text-center {
  margin-top: 32px;
}

.book-item {
  position: relative;
  padding: 24px 0;
  gap: 12px;
  display: grid;
  align-items: start;
  transition: background-color var(--duration);
}
.book-item.not-available .book-item-cover img {
  opacity: 0.8;
  filter: grayscale(1);
}
.book-item:nth-child(1), .book-item:nth-child(2) {
  border-top: 2px solid rgba(42, 42, 42, 0.05);
}
@media (min-width: 769px) {
  .book-item {
    gap: 24px;
    grid-template-columns: auto 1fr;
  }
}
@media (max-width: 768px) {
  .book-item {
    grid-template-rows: auto 1fr;
    text-align: center;
    justify-items: center;
  }
}
.book-item:before {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid rgba(42, 42, 42, 0.05);
  content: "";
}
.book-item:after {
  position: absolute;
  top: -2px;
  left: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 2px);
  background: #f7f7f7;
  opacity: 0;
  transition: opacity var(--duration);
  content: "";
}
.book-item a:hover {
  text-decoration: none;
}
.book-item a:not([class]) {
  color: currentColor;
}

.book-item-cover {
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .book-item-cover {
    width: clamp(6.25rem, 4.0277777778rem + 4.6296296296vw, 7.5rem);
  }
}
@media (max-width: 768px) {
  .book-item-cover {
    width: clamp(7.5rem, 7.5rem + 0vw, 7.5rem);
  }
}
.book-item-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.book-item-discount {
  font-size: 13px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  transform: translate(-20%, -20%) rotate(15deg);
  z-index: 999;
}

.book-item-new {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  position: absolute;
  bottom: 5px;
  right: 5px;
  padding: 2px 5px;
  max-width: calc(100% - 10px);
  color: #fff;
  background: rgba(216, 123, 20, 0.85);
  border-radius: 3px;
  z-index: 999;
}

.book-item-option {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3px;
  color: #fff;
  background: rgba(255, 0, 0, 0.5);
  border-radius: 0 0 8px 8px;
  z-index: 1;
}

.book-item-info {
  height: 100%;
  gap: 12px;
  display: grid;
  align-content: start;
  justify-items: center;
  grid-template-rows: 1fr auto;
  z-index: 1;
}
@media (min-width: 769px) {
  .book-item-info {
    justify-items: start;
  }
}

.book-item-meta {
  gap: 6px;
  display: grid;
  align-content: start;
}

.book-item-cat {
  font-size: 13px;
  text-transform: uppercase;
  color: #9b9b9b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 576px) {
  .book-item-cat {
    display: none;
  }
}
.book-item-cat a:hover {
  color: var(--link-hover-color);
}

.book-item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 577px) {
  .book-item-title {
    font-size: 16px;
  }
}
.book-item-title a:hover {
  color: var(--link-hover-color);
}

.book-item-author,
.book-item-publisher {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: #666;
}

.book-item-author {
  font-weight: 500;
}

.book-item-desc {
  font-size: 14px;
  font-family: var(--font-secondary);
  font-weight: 300;
  line-height: 1.4;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 576px) {
  .book-item-desc {
    display: none;
  }
}

.book-item-footer {
  gap: 5px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
}
.book-item-footer .woosw-btn {
  width: 27px;
  height: 27px;
  min-height: unset;
}
@media (max-width: 576px) {
  .book-item-footer .woosw-btn {
    display: none;
  }
}

.book-item-price {
  font-size: 14px;
  white-space: nowrap;
  padding: 2px 6px;
  display: inline-flex;
  color: #fff;
  background: var(--link-color);
  border: 1px solid var(--link-color);
  border-radius: 4px;
  overflow: hidden;
}
.book-item-price:hover {
  color: #fff;
}
.book-item-price.big {
  font-size: 20px;
}
.book-item-price.both {
  padding: 0;
  flex-flow: row nowrap;
}
.book-item-price.both span {
  padding: 2px 6px;
}
.book-item-price.both .regular {
  color: #fff;
  background: var(--link-hover-color);
}

.bookflip {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  aspect-ratio: 1/1.6;
  perspective: 800px;
  perspective-origin: 0 50%;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media (min-width: 769px) {
  .bookflip {
    width: clamp(6.25rem, 4.0277777778rem + 4.6296296296vw, 7.5rem);
  }
}
@media (max-width: 768px) {
  .bookflip {
    width: clamp(7.5rem, 7.5rem + 0vw, 7.5rem);
  }
}
.bookflip > li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transform-origin: 0 50% 0;
  transform-style: preserve-3d;
  background-image: linear-gradient(to right, transparent 0%, transparent 90%, #ccc 100%);
  transition: all calc(var(--duration) * 3) cubic-bezier(0.25, 1, 0.25, 1);
}
.bookflip .cover {
  transform: rotateY(0deg) translateZ(0px);
  background: #fff;
}
.bookflip .page1 {
  transform: rotateY(20deg) translateZ(-1px);
}
.bookflip .page2 {
  transform: rotateY(30deg) translateZ(-2px);
}
.bookflip .page3 {
  transform: rotateY(40deg) translateZ(-3px);
}
.bookflip:hover .page1 {
  transform: rotateY(-34deg);
}
.bookflip:hover .page2 {
  transform: rotateY(-27deg);
}
.bookflip:hover .page3 {
  transform: rotateY(-15deg);
}
.bookflip:hover .cover {
  transform: rotateY(-40deg);
}

.latest {
  position: relative;
  padding: 64px 0;
  background: #f7f7f7;
}
@media (min-width: 769px) {
  .latest.related {
    padding-top: 0;
  }
}
.latest > .wrap {
  position: relative;
}

.latest-header {
  margin-bottom: clamp(1rem, 0.5384615385rem + 1.2820512821vw, 1.5rem);
}
.latest-header > .wrap {
  text-align: center;
  gap: 6px;
  display: grid;
}

.latest-list {
  gap: 16px;
  display: grid;
}
@media (min-width: 769px) {
  .latest-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.latest-list + .text-center {
  margin-top: 32px;
}

.latest-item {
  font-size: 16px;
  padding: 16px;
  color: var(--page-color);
  background: #fff;
  border-radius: 6px;
  gap: 12px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.latest-item a {
  color: var(--page-color);
}
.latest-item a:not(.btn) {
  color: var(--link-hover-color);
}
.latest-item a:hover {
  text-decoration: none;
  color: var(--link-color);
}
.latest-item .btn {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 10px;
  background: #f9f4ed;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.latest-item .btn:hover {
  color: var(--page-color);
  background: #f3e8da;
}

.latest-item-thumb {
  width: 100%;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #dedede;
  border-radius: 6px;
}
.latest-item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest-item-content {
  gap: 3px;
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.latest-item-content time {
  font-size: 13px;
  color: #aaa;
}

.latest-item-title {
  font-family: var(--font-secondary);
  font-weight: 500;
  margin: 0;
  color: var(--link-color);
}
.latest-item-title:hover {
  color: var(--link-hover-color);
}

.latest-item-desc {
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-item-desc h1, .latest-item-desc h2, .latest-item-desc h3, .latest-item-desc h4, .latest-item-desc h5, .latest-item-desc h6 {
  opacity: 0;
}

.socials {
  position: relative;
  background-color: #f9f4ed;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden;
}
.socials:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/dist/img/pattern.png");
  background-size: 500px;
  opacity: 0.2;
  content: "";
}
.socials > .wrap {
  position: relative;
  z-index: 1;
}

.socials-bg {
  position: absolute;
  bottom: -70%;
  right: -5%;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .socials-bg {
    bottom: -20%;
    right: 0;
    width: 100%;
  }
  .socials-bg img {
    width: 300px;
    max-width: unset;
  }
}

.socials-content {
  position: relative;
  padding: 96px 0;
  gap: 16px;
  display: grid;
  z-index: 1;
}
.socials-content {
  padding-top: clamp(3rem, 2.0769230769rem + 2.5641025641vw, 4rem);
  padding-bottom: clamp(3rem, 2.0769230769rem + 2.5641025641vw, 4rem);
}
@media (max-width: 768px) {
  .socials-content {
    padding-bottom: 200px;
  }
}
@media (min-width: 769px) {
  .socials-content {
    width: 65%;
  }
}
@media (min-width: 769px) {
  .socials-content {
    width: 50%;
  }
}
.socials-content p:last-of-type {
  margin: 0;
}

.socials-buttons {
  gap: 8px;
  display: flex;
  flex-flow: row wrap;
}

.socials-button {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  padding: 8px 12px 8px 8px;
  border-radius: 4px;
  gap: 12px;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
}
.socials-button.fb {
  background: #3b5998;
}
.socials-button.fb:hover {
  background: #4c70ba;
}
.socials-button.in {
  background: #833ab4;
}
.socials-button.in:hover {
  background: #9c58c9;
}
.socials-button:hover {
  text-decoration: none;
  color: #fff;
}

.shopster {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 993px) {
  .shopster {
    gap: 32px;
  }
}
@media (min-width: 993px) {
  .shopster:not(.full) {
    grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
  }
}

.shopster-sidebar {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .shopster-sidebar {
    padding: 16px;
  }
}

.shopster-toggle {
  font-size: 15px;
  text-align: center;
  padding: 8px;
  background: #e9e9e9;
  border: 2px solid #dcdcdc;
  border-radius: 6px;
  gap: 6px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 769px) {
  .shopster-toggle {
    margin-bottom: 16px;
  }
}
@media (min-width: 993px) {
  .shopster-toggle {
    display: none;
  }
}

.shopster-form {
  display: none;
}
@media (max-width: 992px) {
  .shopster-form {
    margin-top: 1em;
  }
}
@media (min-width: 993px) {
  .shopster-form {
    display: block !important;
    position: sticky;
    top: 120px;
  }
}

.shopster-listing {
  padding: 16px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(42, 42, 42, 0.05), 0 8px 12px 0 rgba(42, 42, 42, 0.05);
}
@media (min-width: 993px) {
  .shopster-listing {
    padding: 32px;
  }
}

.custom-gallery-main-link {
  position: relative;
}
.custom-gallery-main-link .custom-gallery-magnifier {
  width: 64px;
  height: 64px;
}
.custom-gallery-main-link .custom-gallery-magnifier svg {
  width: 32px;
  height: 32px;
}
.custom-gallery-main-link:hover .custom-gallery-magnifier {
  opacity: 1;
}

.custom-gallery-thumbs {
  margin-top: 6px;
  gap: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.custom-gallery-thumbs a {
  position: relative;
  width: 100%;
  aspect-ratio: 21/30;
  background: #fff;
  cursor: pointer;
  display: block;
  border: 1px solid #ccc;
}
.custom-gallery-thumbs a:hover .custom-gallery-magnifier {
  opacity: 1;
}
.custom-gallery-thumbs img {
  width: 100%;
  height: 100% !important;
  padding: 3px;
  display: block;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.custom-gallery-magnifier {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.custom-shop-title,
.book-item-price.big {
  margin-bottom: 16px;
}

.woocommerce-product-details__short-description {
  font-size: 16px;
  color: #666;
}
.woocommerce-product-details__short-description h1, .woocommerce-product-details__short-description h2, .woocommerce-product-details__short-description h3, .woocommerce-product-details__short-description h4, .woocommerce-product-details__short-description h5, .woocommerce-product-details__short-description h6 {
  font-family: var(--font-primary);
  font-weight: 500;
}
.woocommerce-product-details__short-description h1 {
  font-size: 21px;
}
.woocommerce-product-details__short-description h2 {
  font-size: 19px;
}
.woocommerce-product-details__short-description h3 {
  font-size: 17px;
}
.woocommerce-product-details__short-description em {
  font-style: normal;
}
.woocommerce-product-details__short-description a {
  color: var(--link-color);
}
.woocommerce-product-details__short-description ul {
  padding-left: 20px;
}

.stock {
  margin: 0;
  color: #666 !important;
}

.woocommerce div.product form.cart .button {
  font-weight: 500;
  padding: 13px 10px;
  background: var(--brand);
  min-height: 44px;
}

.woosw-btn {
  font-weight: 500;
  color: #fff;
  background: var(--brand);
  width: 44px;
  min-height: 44px;
  margin-bottom: 0;
  padding: 10px;
  border: 0;
  display: grid;
  place-content: center;
  justify-self: baseline;
  cursor: pointer;
}
.woosw-btn .woosw-btn-text {
  display: none;
}

.woocommerce div.product form.cart {
  margin-bottom: 0;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: column nowrap;
  gap: 4px;
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation ul {
    margin-bottom: 1em;
    flex-flow: row wrap;
    justify-content: center;
  }
}
.woocommerce-MyAccount-navigation ul li {
  font-size: 14px;
}
.woocommerce-MyAccount-navigation ul li a {
  color: #666;
  background: #f7f7f7;
  display: block;
  padding: 4px 10px;
  border-radius: 6px;
}

.woocommerce-result-count {
  font-size: 15px;
}
@media (max-width: 768px) {
  .woocommerce-result-count {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .woocommerce-ordering {
    width: 100%;
  }
}
.woocommerce-ordering select {
  font-size: 14px;
  padding: 5px;
}
@media (max-width: 768px) {
  .woocommerce-ordering select {
    width: 100%;
  }
}

.product_meta {
  font-size: 16px;
  display: grid;
  gap: 4px;
}
.product_meta strong {
  font-weight: 500;
}

.woocommerce-product-details__short-description:not(.partially-hidden) {
  margin-bottom: 2em;
}
.woocommerce-product-details__short-description.partially-hidden {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.woocommerce-product-details__short-description.partially-hidden:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #fff 0%, transparent 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  content: "";
}

.custom-more-info {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin-bottom: 2em;
  padding: 6px;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1;
}

.upsells {
  margin-bottom: 2em;
}

.cross-sells {
  width: 100% !important;
  float: none !important;
  margin-bottom: 2em;
}
.cross-sells .books-list {
  grid-template-columns: minmax(0, 1fr);
}

.woocommerce ul.order_details {
  margin: 0 0 2em;
  padding: 1em;
  display: grid;
  gap: 12px;
  background: #fff3d0;
  border-radius: 6px;
}
.woocommerce ul.order_details:before, .woocommerce ul.order_details:after {
  display: none;
}

.woocommerce ul.order_details li {
  margin: 0;
  padding: 0;
  border: none;
  float: none;
}

.product-thumbnail {
  padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 5px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  padding: 0 12px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  font-weight: 500;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}

.custom-add-to-cart {
  margin-bottom: 1em;
  display: grid;
  align-items: end;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5em;
}

body.home {
  background: #fff;
}
[id] {
  scroll-margin-top: 92px;
}

[data-trigger] {
  cursor: pointer;
}
[data-trigger] svg {
  pointer-events: none;
}

.custom-pagination {
  font-size: 16px;
  font-weight: 500;
  padding-top: 16px;
  gap: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  color: var(--page-color);
}
.custom-pagination a {
  color: currentColor;
}
.custom-pagination a:hover {
  text-decoration: none;
}

.custom-pagination-prev,
.custom-pagination-next {
  gap: 4px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background-color var(--duration);
}
@media (max-width: 576px) {
  .custom-pagination-prev span,
  .custom-pagination-next span {
    display: none;
  }
}
.custom-pagination-prev.inactive,
.custom-pagination-next.inactive {
  opacity: 0.25;
  cursor: default;
}
.custom-pagination-prev:not(.inactive):hover,
.custom-pagination-next:not(.inactive):hover {
  background: #f7f7f7;
}

@media (min-width: 577px) {
  .custom-pagination-prev {
    padding: 4px 12px 4px 6px;
  }
}

@media (min-width: 577px) {
  .custom-pagination-next {
    padding: 4px 6px 4px 12px;
  }
}

.nav-links {
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links .page-numbers {
  font-size: 15px;
  line-height: 1;
  padding: 6px 8px 4px 8px;
  border-radius: 6px;
}
.nav-links .page-numbers:not(.current):not(.dots):hover {
  background: #f7f7f7;
}
.nav-links .page-numbers.current {
  color: #fff;
  background: var(--page-color);
}

.dugme {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  color: #fff;
  background: var(--link-color);
  border: 0;
  display: inline-flex;
  cursor: pointer;
  padding: 12px 38px 12px 16px;
  border-radius: 8px;
}
.dugme svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--link-hover-color);
  transform: translateX(44%) rotate(-45deg);
  border-radius: 50%;
  transition: background-color var(--duration), transform var(--duration);
}
.dugme:hover {
  text-decoration: none;
  color: #fff;
}
.dugme:hover svg {
  transform: translateX(44%) rotate(0deg);
}
.dugme.small {
  font-size: 14px;
  padding: 8px 30px 8px 12px;
}
.dugme.small svg {
  width: 36px;
  height: 36px;
}

.intro-notice {
  background-color: #23a6d5 !important;
}

.woosw-btn,
.onsale,
.book-item-discount,
.woocommerce div.product form.cart .button {
  background-color: rgb(216, 123, 20) !important;
}

@keyframes notice {
  0% {
    background-color: #df8156;
  }
  33% {
    background-color: #e0ba3d;
  }
  66% {
    background-color: #23a6d5;
  }
}
.woocommerce-Tabs-panel ul {
  padding-left: 1.25em;
}
.woocommerce-Tabs-panel h1 {
  font-size: 1.1em;
}
.woocommerce-Tabs-panel h2 {
  font-size: 1em;
}
.woocommerce-Tabs-panel h3 {
  font-size: 0.9em;
}

.gkpopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.gkpopup:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  content: "";
}

.gkpopup-inner {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.gkpopup-inner > .wrap {
  padding: 16px;
}
@media (min-width: 769px) {
  .gkpopup-inner > .wrap {
    padding: 32px 16px;
  }
}
@media (min-width: 993px) {
  .gkpopup-inner > .wrap {
    padding: 48px 16px;
  }
}
@media (min-width: 1201px) {
  .gkpopup-inner > .wrap {
    padding: 64px 16px;
  }
}

.gkpopup-close {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1q;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: var(--brand);
  padding: 8px;
  display: block;
  cursor: pointer;
  z-index: 12;
}

.gkpopup-desc {
  font-size: 16px;
  margin: 16px;
  color: #fff;
}

.button {
  text-align: center;
}

.woosw-items {
  width: 100%;
}

.woosw-item {
  font-size: 15px;
}
@media (max-width: 576px) {
  .woosw-item {
    border: 2px solid #ddd;
    margin-bottom: 1.5em;
    text-align: center;
    display: grid;
  }
  .woosw-item > * {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .woosw-item--remove {
    padding: 0 !important;
    color: #fff;
    background: #d26e4b !important;
    cursor: pointer;
  }
  .woosw-item--remove span {
    width: 100% !important;
    height: 100%;
    padding: 10px;
  }
  .woosw-item--remove span:hover:before {
    color: #fff !important;
  }
}

.woosw-item--stock {
  display: none;
}

.woosw-item--name a {
  font-weight: 500;
}

.customcart-columns {
  position: relative;
}
.customcart-columns:before {
  position: absolute;
  top: 0;
  left: calc(60% - 5px);
  bottom: 2em;
  width: 1px;
  background-color: #ddd;
}
@media (min-width: 993px) {
  .customcart-columns:before {
    content: "";
  }
}
@media (min-width: 993px) {
  .customcart-columns {
    gap: 48px;
    display: grid;
    grid-template-columns: 3fr 2fr;
  }
  .customcart-columns .cart_totals {
    width: 100% !important;
    float: none !important;
  }
}

.customcart-form {
  width: 100%;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .customcart-form .product-price,
  .customcart-form .product-subtotal {
    display: none;
  }
}

.customcart-form th,
.customcart-form td {
  border-style: solid;
  border-color: #eee;
  border-width: 1px 0;
  border-collapse: collapse;
}

.customcart-head {
  font-size: 12px;
  text-transform: uppercase;
}
.customcart-head .product-name {
  text-align: left;
}
.customcart-head .product-price,
.customcart-head .product-subtotal {
  text-align: right;
}
.customcart-head td,
.customcart-head th {
  padding: 4px 8px;
  font-weight: 500;
}

.customcart-remove {
  text-align: center;
  line-height: 16px;
  color: #ccc;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: block;
  border: 2px solid;
  border-radius: 50%;
}
.customcart-remove:hover {
  text-decoration: none;
  color: #999;
}

.customcart-thumb {
  margin: 8px 0;
  width: 65px;
  height: 65px;
  display: block;
}
@media (min-width: 769px) {
  .customcart-thumb {
    width: 75px;
    height: 75px;
  }
}
.customcart-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.customcart-info {
  padding: 4px 8px;
  font-size: 14px;
}
.customcart-info a {
  color: #334862;
}

.customcart-price {
  font-size: 14px;
  text-align: right;
  font-weight: 500;
  padding: 8px;
}
@media (max-width: 768px) {
  .customcart-price:not(.mobile) {
    display: none;
  }
}
.customcart-price.mobile {
  font-weight: 400;
  text-align: left;
  padding: 0;
}
@media (min-width: 769px) {
  .customcart-price.mobile {
    display: none;
  }
}
.customcart-price.mobile > span {
  color: #aaa;
}

.customcart-coupons {
  width: 100%;
  padding: 12px 0;
  gap: 36px;
  display: flex;
  flex-flow: column-reverse nowrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .customcart-coupons {
    align-items: flex-start;
    flex-flow: row nowrap;
  }
}
.customcart-coupons .coupon {
  flex: 1;
  width: 100%;
  gap: 12px;
  display: flex;
  flex-flow: column nowrap;
}
.customcart-coupons .coupon input {
  flex: 1;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px;
  color: #fff;
  background-color: #d26e4b;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
  color: #fff;
  background-color: #d26e4b;
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px;
  color: #fff;
  background-color: #d26e4b;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
  color: #fff;
  background-color: #d26e4b;
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
}

.customcart-totals {
  font-size: 14px;
}
.customcart-totals table.shop_table {
  background: rgba(210, 110, 75, 0.0588235294);
  border-color: #d3cfcf;
}
.customcart-totals table.shop_table th,
.customcart-totals table.shop_table td {
  border-color: #d3cfcf !important;
}

.customcart-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}
.customcart-quantity .qty {
  font-size: 14px;
  height: 32px;
  padding: 6px 4px;
  border-radius: 0;
}

.customcart-prev,
.customcart-next {
  text-align: center;
  width: 20px;
  height: 32px;
  padding: 2px;
  background: #f6f6f6;
  border: 1px solid #ddd;
  cursor: pointer;
}
.customcart-prev:not(.disabled):hover,
.customcart-next:not(.disabled):hover {
  background-color: #eee;
}
.customcart-prev.disabled,
.customcart-next.disabled {
  opacity: 0.25;
  cursor: default;
}

.customcart-prev {
  border-right: 0;
}

.customcart-next {
  border-left: 0;
}

@media (min-width: 769px) {
  body:has(.shopster):has(.shopster-sidebar) .hero-content {
    width: 60%;
    padding-block: 24px;
  }
}
body:has(.shopster):has(.shopster-sidebar) .hero-content-desc {
  font-size: 15px;
}
body:has(.shopster):has(.shopster-sidebar) .main {
  padding-block: 24px;
}

#primary:has(.shopster):has(.shopster-sidebar) .wrap {
  max-width: 1700px;
}
@media (min-width: 993px) {
  #primary:has(.shopster):has(.shopster-sidebar) .px {
    padding-inline: 32px;
  }
}
@media (min-width: 1321px) {
  #primary:has(.shopster):has(.shopster-sidebar) .books-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
