/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
/* cyrillic-ext */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 16px;
}
header {
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;

  padding: 0px 15px;

  position: fixed;
    top: 0px;
    left: 0px;
    background: #fff;
    z-index: 1000;
}
main {
  height: 100%;
  display: flex;
  width: 100%;
  justify-content: center;

}
main.start {
  height: 100%;
  display: flex;
  align-items: baseline;
  width: 100%;
}
.container {
  max-width: 1200px;
  width: 100%;
}
.container-fluid {
  width: 100%;
  padding: 0 15px;
}

#stockists {
  display: block;
  width: 100%; 
  overflow: hidden;
  padding: 0px 15px;
}
#stockists table {border-collapse: collapse;}
#stockists table tr {
  border-top: 1px solid black;
}
#stockists table tr:last-child {
  border-bottom: 1px solid black;
}
#stockists table td {
  padding: 0 10px 0px 0;
}
#stockists table td:first-child {
  padding: 0 10px 0px 0;
}
.stockists {
  width: 100%;
  overflow: auto;
  height: 100%;
  padding-bottom: 20px;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hometext {
  max-width: 600px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  user-select: none;
}
.logo_link {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;

  color: #000000;

}
.menu_link {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: right;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0 -15px;
  user-select: none;
  -moz-user-select: none;
  color: #000000;
}
h1 {
  font-family: Times, sans-serif !important;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  text-transform: uppercase;

  color: #000000;
}
p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  color: #000000;
}
a {
  color: #222222;
  text-decoration: none;
}
a:hover, a:focus, a:active, a:focus-within {
  color:#C93000 !important;
  text-decoration: none;
}
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

footer {
  height: 50px;
  align-items: center;
  display: flex;
  width: 100%;
  justify-content: center;
  position: fixed;
  bottom: 0;
  z-index: 10001;
}
.next {
}
.logo span::before {
  content: '/';
  display: inline-block;
  padding: 0;
  margin-left: -3px;
}
a.next_link {
  padding: 20px;
  text-decoration: none;
}
.sidebar {
  transform: translateX(100%);
  transition: 0.7s linear;
  position: fixed;
  right: 0;
  width: 320px;
  background: white;
  height: 100vh;
  z-index: 1;
}
.sidebar.active {
  display: block;
  position: fixed;
  right: 0;
  width: 320px;
  background: white;
  height: 100vh;
  transform: translateX(0%);
  top: 0;
  z-index:1001

}
.close {
  align-items: center;
  display: flex;
  float: right;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  line-height: 16px;
  user-select: none;
  -moz-user-select: none;
}
.close:hover, .close:active, .close:focus {color: #C93000;}
.right-menu {
  list-style: none;
  margin-top: 50px;
}
.right-menu li {

}
.right-menu li:nth-child(2n) {
  margin-bottom: 10px;
}
.right-menu li a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;

  color: #000000;
}
.legal-info {
  display: flex;
  border-top: 1px #dae0e5 solid;
  padding: 0 15px;
  margin: 0 -15px;
}
.legal-info:last-child {
  border-bottom: 1px #dae0e5 solid;
}
.link-legal {
  flex-wrap: nowrap;
  display: flex;
  flex-shrink: 0;
  font-weight: 600;
  min-width: 200px;
  text-transform: capitalize;
}
.text-legal {
  text-align: left;
  padding: 10px;
  max-width: 608px;
}
.text-legal p, .text-legal b, .text-legal span, .text-legal ul, .text-legal li, .text-legal ol {
  text-align: left;
}
.m-0 {
  margin: 0;
  overflow: hidden;
}
#shop img {
  width: auto;
  height: auto;
}

.between {
  justify-content: space-between;
  padding: 5px 10px;
}
.buy {
  font-weight: 600;
  cursor: pointer;
}
.container-fluid.auto {
  margin: auto;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {padding: 0}
.info {
  position: absolute;
  top: 0;
  opacity: 0;
}
.info p {
  text-align: left;
  padding: 0 10px;
  line-height: 20px;
}
.info.active {opacity: 1}
.image {opacity: 1}
.info.active + .image {opacity: 0}
.link-info, .some {
  cursor: pointer;
}
.object-content {
  padding: 0 20px;
  border: 1px #666 solid;
  border-left: none;
  border-right: none;
}
.object-content:nth-child(2) {
  border-top: none;
}
.object-content .row div {
  padding: 5px;
}
.object-content p {
  text-align: left;
}
.xs-block {display: none}
.xl-block {display: block}
.object-content:last-child {border: none}
.buy-this {
  width: 100%;
  text-align: right;
  font-weight: bold;
  cursor: pointer;
  padding-top: 5px;
}
.slick-dots {display: none !important;}
.draggablef {
  position: absolute;
  top: calc(50% - 130px);
  left: calc(50% - 250px);
  width: auto;
  padding: 5px;
  z-index: 9;
  display: flex;
}
#draggablef2.draggablef {
  position: absolute;
  top: calc(50% - 149px);
  left: calc(50% - 250px);
  width: auto;
  padding: 5px;
  z-index: 10;
  display: flex;
}
.drag-body {
  cursor: move;
  min-width: 100px;
  min-height: 100px;
  background-size: contain !important;
  width: 500px;
  height: 500px;
  background-repeat: no-repeat !important;
}

.drag-none, .drag-nonet {
  cursor: pointer;
  z-index: 10;
  height: 15px;
}
#project {

}
#project .object-content {
  padding: 0 15px;
}
#project .object-content .row div {
  padding: 0;
}
#project .object-content .row:first-child {
  padding: 5px 15px;
}
.link-project, .link-project-hide {
  cursor: pointer;
}
.pt-1 {
  padding: 5px !important;
  padding-left: 0 !important;
}
.hidden.active {
  display: block !important;
}
.right {text-align: right}
#project .object-content:nth-child(n) {
  border-top: none;
}
#project .object-content:first-child {
  border-top: 1px #666 solid;
}
#project .object-content:last-child {
  border-bottom: 1px #666 solid;
  margin-top: 100px;
}
.content-h {
  height: 0;
  opacity: 0;
  transition: 0.5s;
}
.content-h.active {
  height: 100%;
  opacity: 1;
  max-height: 735px;
  overflow-y: scroll;
}
#resizee.resizable, #resizeer.resizablet { background: cyan; position: relative; }
#resizee .resizer, #resizeer .resizert {
  width: 15px;
  height: 15px;
  background: url(https://cdn.iconscout.com/icon/free/png-256/resize-1438243-1216204.png);
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: se-resize;
  z-index: 10001;
  background-size: contain;
}
.drag-none, .drag-nonet {user-select: none}
@media (max-width: 600px) {
  .col-sm-6 {
    width: 50%;
    padding: 0;
  }
  .drag-body{
    height: 365px;
  }
  .col-xs-2 .buy-this {padding: 0 !important}

  .xs-block {display: block}
  .xl-block {display: none}
  .col-sm-12 {
    width: 100%;
    padding: 0;
  }
  .hometext {
    max-width: 100%;
    padding: 0 15px;
  }
  p {font-size: 12px;  }
  .sidebar.active {
    width: 100%;
  }
  footer {
    height: 50px;
    position: fixed;
    bottom: 0;
	
  }
  #stockists table td {
    padding: 0 50px 0px 0;
    overflow: visible;
    white-space: nowrap;
  }
  #stockists table td:first-child {
    padding: 0 50px 0px 0;
  }
  .legal-info, .legal-info:last-child {border: none; flex-direction: column}
  .link-legal  {font-weight: 400}
  .active .link-legal {font-weight: 600 !important;}
  a.link-legal:hover, a.link-legal:focus, a.link-legal:active, a.link-legal:focus-within  {color:#000000 !important;}
  .legal-info .link-legal.collapsed  {font-weight: 600}
  .legal-info a:not(.collapsed) {font-weight: 400}
  .legal-info:first-child {margin-top: 10px;}
  .text-legal {padding: 0;max-width: 100%}
  .col-xs-2 p {
    padding-left: 15px;
    margin-bottom: 3px;
  }
  .draggablef {
    position: absolute;
    top: 20%;
    max-width: 100%;
    width: 100%;
    display: flex;
    left: unset;
    justify-content: center;
  }
  #draggablef2.draggablef {
    top: 20%;
    left: 0px;
    width: 100%;
    
  }
  #draggablef{
    z-index: 10;
  }
  
  .drag-none, .drag-nonet {
    cursor: pointer;
    z-index: 10;
    height: 15px;
    position: absolute;
    margin-left: 50%;
  }
  .drag-body {
    min-width: 50px;
    min-height: 50px;
    background-size: contain !important;
    width: 100%;
  }
  #resizee .resizer, #resizeer .resizert {display: none}

  .hidden-xs {display: none !important}
  .content-h.active {
    display: flex;
    flex-direction: column-reverse;
  }
  #project .object-content p {
    padding: 5px;
  }
  .pt-1 {
    padding: 5px 10px !important;
  }

  #project .between {
    justify-content: right;
    align-items: center;
  }
  #project .between div {
    padding: 0 5px !important;
  }
}
@media (min-width: 1024px) {
  .drag-none, .drag-nonet {
    margin: 30px -90px;
  }
  #resizee .resizer, #resizeer .resizert {

    right: 70px;
    bottom: 30px;
  }
}
.draggablef.hidden {
  visibility:hidden;
  opacity:0;
  transition: visibility 0s linear 300ms, opacity 300ms;

}
.draggablef {
  visibility:visible;
  opacity:1;
  transition: visibility 0s linear 300ms, opacity 300ms;
  transition-delay: 1s;

}
.draggablef.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
  transition-delay: 1s;

}
@media (max-width: 600px){
  #shop .next-btn, #shop .prev-btn{
    opacity: 1;
	padding: 10px !important;
  }
#draggablef2{
  left: 0px;
  top: 60%;
}
#resizee .resizer, #resizeer .resizert{
  display: none;
  width: 25px;
  height: 25px;
  z-index: 1000;
}
.content-h.active{
  max-height: none;
  min-height: 779px;
}
.small-slider-item{
  height: 530px;
}
}

.small-slider-item{
  display: flex;
  display: none;
}
.small-slider-item img{
  width:106px;
  cursor: pointer;
}
.link-all{
  cursor: pointer;
}
.prev-btn{
  display: inline-block !important;
 position: absolute;
 top: 40%;
 left: 10px;
opacity: 0;
cursor: pointer;
}
#shop .next-btn , #shop .prev-btn{
  opacity: 0;
  cursor: pointer;
  padding: 10px;
}
.next-btn{
  display: inline-block !important; 
 position: absolute;
 top: 40%;
 right: 10px;
 opacity: 0;
 cursor: pointer;
}

.vue-btn ~ .next-btn , .vue-btn ~ .prev-btn{
  opacity: 1 !important;
}
.vue-btn{
  opacity: 1 !important;
}
.object-content .navi {
  margin-top: 0px;
}
#shop .row .image{
  display: inline;
}
#shop .row  .info.active+ .image{
  display: inherit;
}
.pagenavi a {
	font-size: 16px;
    padding: 5px
}
.pagenavi {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0; 
}
.pagenavi .wp-pagenavi {
    display: flex;
}
.pagenavi .current, .pagenavi .next, .pagenavi .prev {
    background: #b94a48;
    width: 50px;
    height: 50px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: 500;
    margin-right: 10px;
}
.pagenavi a {
    background: #fff;
    width: 50px;
    height: 50px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-size: 24px;
    margin-right: 10px;
    font-weight: 500;
}
.pagenavi .current, .pagenavi .next, .pagenavi .prev {
    background: #b94a48;
    width: 50px;
    height: 50px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: 500;
    margin-right: 10px;
}
.pagenavi .next:after, .pagenavi .prev:after {
    content: ">";
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 1.1em;
}
.pagenavi .prev:after {
    transform: rotate(180deg);
}
.pagenavi .next:hover, .pagenavi .prev:hover {
    color: #b94a48;
    background: #fff;
}
.lepopup-element-html img {
    filter: grayscale(1);
}
@media (max-width: 600px){
  
  .next-btn, .prev-btn{
    opacity: 1;

  }
  .object-content .navi {
    margin-top: 0px;
}
  .buy-this {margin-left: -5px;}
  #shop .next-btn, #shop .prev-btn{
    opacity: 1 !important;
    top: calc(50% - 17px);
    z-index: 1000;
    position: absolute;
  }
  #shop .next-btn{
    left: calc(100% - 37px); 
  }
  #shop .prev-btn img{
    width: 10px;
    height: 17px;
    
  }
  #shop .next-btn img{
    width: 10px;
    height: 17px;

  }
}

