/*Body style*/
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* Scroll */
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 10px;
}

/*Overlay container*/
.overlay {
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.1);
  z-index: 100;
  position: fixed;
  overflow-y: scroll;
}

/*Overlay error message style*/
.overlay .content-box-error {
  position: relative;
  z-index: 1;
  background: #f5c5c5;
  width: 90%;
  max-width: 500px;
  margin: 60px auto 0px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
  border-radius: 0px 0px 5px 5px;
  display: flex;
  flex-wrap: wrap;
}

/*Overlay success message style*/
.overlay .content-box-success {
  position: relative;
  z-index: 1;
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  margin: 60px auto 0px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
  border-radius: 0px 0px 5px 5px;
  display: flex;
  flex-wrap: wrap;
}

/*Overlay cart style*/
.overlay .content-box-cart {
  position: relative;
  z-index: 1;
  background: #ffffff;
  width: 50%;
  max-width: 400px;
  margin-top: 0px;
  margin-left: 5px;
  margin-right: 5px;
  float: right;
  padding: 5px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
  border-radius: 0px 0px 5px 5px;
}
.cart-option {
  max-width: 1250px;
  height: fit-content;
  margin: 60px auto;
  padding-bottom: 10px;
  overflow-y: clip;
  background-color: transparent;
}

/*Overlay cookies message style*/
.overlay .content-box-cookies {
  position: fixed;
  z-index: 1;
  background: #ffffff;
  width: 90%;
  max-width: 800px;
  padding: 5px;
  text-align: left;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

/*overlay shared styles*/
.overlay .content-box-error .img, .overlay .content-box-success .img {
  width: 50px;
  overflow-x: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay .content-box-error .img img, .overlay .content-box-success .img img {
  width: 40px;
}
.overlay .content-box-error .text, .overlay .content-box-success .text {
  width: calc(100% - 100px);
  overflow-x: auto;
}
.overlay .content-box-error .text h3, .overlay .content-box-success .text h3 {
  font-size: 16px;
  padding: 0px;
  margin: 10px;
}
.overlay .content-box-error .text p, .overlay .content-box-success .text p {
  font-size: 12px;
  padding: 0px;
  margin: 5px;
}
.overlay .content-box-error .close, .overlay .content-box-success .close {
  width: 50px;
  overflow-x: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay .content-box-error .close button, .overlay .content-box-success .close button {
  background: transparent;
  text-decoration: double;
  font-size: 18px;
  cursor: pointer;
  border-color: transparent;
}

/*overlay cookies styles*/
.overlay .content-box-cookies .text {
  width: calc(100% - 200px);
  overflow-x: auto;
}
.overlay .content-box-cookies .text h3 {
  font-size: 16px;
  padding: 10px;
  margin: 0px;
}
.overlay .content-box-cookies .text p {
  font-size: 12px;
  padding: 5px 10px;
  margin: 0px;
}
.overlay .content-box-cookies .button {
  width: 100px;
  overflow-x: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay .content-box-cookies .button button {
  background: transparent;
  text-decoration: double;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
}
.overlay .content-box-cookies .button button:hover {
  background: black;
  color: white;
  border-color: white;
}


/*Main top bar style*/
.main-top-bar {
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  top: 0px;
  background-color: #f0f0f0;
  position: fixed;
  color: black;
  z-index: 99;
}
.main-top-bar-container {
  width: 100%;
  max-width: 1250px;
  height: 60px;
  margin: 0;
  padding: 0;
  top: 0px;
  margin-left: auto;
  margin-right: auto;
}
.main-top-bar-nav {
  width: calc(100% - 120px);
  height: 60px;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: black;
  margin-left: auto;
  margin-right: auto;
  float: left;
  text-align: center;
  display: block;
}
.main-top-bar-nav button {
  text-transform: uppercase;
  font-size: 18px;
  height: 50px;
  border: 1px solid transparent;
  background-color: transparent;
  padding: 14px;
  margin-top: 5px;
  cursor: pointer;
  color: black;
  transition-duration: 0.5s;
}
.main-top-bar-nav button:hover {
  border-bottom: 1px solid black;
  color: #868686;
}
.main-top-bar-nav .active {
  border-bottom: 1px solid black;
  font-weight: bold;
}
.main-top-bar-img {
  width: 50px;
  height: 50px;
  padding: 5px;
  float: left;
}
.main-top-bar-img img {
  width: 40px;
  height: 40px;
  padding: 5px;
}
.main-top-bar-cart {
  width: 50px;
  height: 50px;
  padding: 5px;
  float: right;
}
.main-top-bar-cart img {
  width: 30px;
  height: 30px;
  padding: 10px;
  cursor: pointer;
}
.main-top-bar-menu {
  width: 50px;
  height: 60px;
  padding: 5px;
  float: right;
  display: none;
}
.main-top-bar-menu img {
  width: 30px;
  height: 30px;
  padding: 10px;
  cursor: pointer;
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1)
}

/*Main container style*/
.main-container {
  width: 100%;
  max-width: 1250px;
  margin-top: 50px;
  padding: 10px 0px;
  margin-left: auto;
  margin-right: auto;
}

/*Main container header/title style*/
.main-container .container-header-nobackground{
  margin: 0px;
  width: 100%;
  text-align: center;
}
.main-container .container-header-nobackground h1{
  padding: 20px;
}

/*Main container additional header style*/
.main-container .container-100-nobackground{
  margin: 0px;
  width: 100%;
  text-align: center;
}
.main-container .container-100-nobackground h2{
  padding: 10px;
}

/*Main container style*/
.main-container .main-container-flex {
  display: flex;
  flex-wrap: wrap;
}
.main-container .main-container-flex h3{
  margin: 10px;
}
.main-container .main-container-flex p{
  margin: 10px;
}
.main-container-flex div{
  margin: 10px;
  background-color: #f9f9f9; 
}

/*Main container items layout (flex) style*/
.main-container-flex .item-100{
  width: calc(100% - 20px);
  overflow-x: auto;
}
.main-container-flex .item-75{
  width: calc(75% - 20px);
  overflow-x: auto;
}
.main-container-flex .item-70{
  width: calc(70% - 20px);
  overflow-x: auto; 
}
.main-container-flex .item-60{
  width: calc(60% - 20px);
  overflow-x: auto; 
}
.main-container-flex .item-50{
  width: calc(50% - 20px);
  overflow-x: auto; 
}
.main-container-flex .item-40{
  width: calc(40% - 20px);
  overflow-x: auto; 
}
.main-container-flex .item-30{
  width: calc(30% - 20px);
  overflow-x: auto; 
}
.main-container-flex .item-25{
  width: calc(25% - 20px);
  overflow-x: auto;
}
.main-container-flex .item-20{
  width: calc(20% - 20px);
  overflow-x: auto;
}

/*Bottom bar styling*/
.main-bottom-bar {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: black;
}
.main-bottom-bar-container {
  width: 100%;
  max-width: 1250px;
  margin: 0;
  padding: 0;
  top: 0px;
  margin-left: auto;
  margin-right: auto;
}
.main-bottom-bar-container-flex {
  display: flex;
  flex-wrap: wrap;
}
.main-bottom-bar-container-flex .container-box {
  width: calc(33% - 40px);
  overflow-x: auto;
  padding: 20px;
}
.main-bottom-bar-container-flex .container-box h2 {
  font-size: 16px;
}
.main-bottom-bar-container-flex .container-box a {
  color: black;
  text-decoration: none;
  cursor: pointer;
  padding: 5px;
  float: left;
  width: calc(100% - 10px);
  font-size: 14px;
}
.main-bottom-bar-container-flex .main-bottom-bar-copyrights {
  width: calc(80% - 20px);
  overflow-x: auto;
  padding: 10px;
  text-align: right;
}
.main-bottom-bar-container-flex .main-bottom-bar-copyrights-logo {
  width: calc(20% - 20px);
  height: 50px;
  overflow-x: auto;
}
.main-bottom-bar-container-flex .main-bottom-bar-copyrights-logo img {
  width: 30px;
  height: 30px;
  padding: 10px;
  float: left;
  margin-left: 5px;
}
.main-bottom-bar-container-flex .main-bottom-bar-copyrights p {
  font-size: 10px;
  color: #b3b3b3;
  margin-right: 5px;
}

/*Circle button (scroll to top) style*/
.buttonCircle {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.overlayFixedScrollToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.overlayFixedScrollToTop img {
  width: 25px;
  height: 25px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  border: 3px solid black;
}

/* Image styles*/
.fullContainerSize {
  width: 100%;
  display: block;
}
.image-with-text {
  position: relative;
  display: inline-block;
}
.image-with-text:hover .centeredItemsOnImage {
  opacity: 1;
}
.image-with-text:hover .image-text {
  opacity: 0.1;
}

/* Image text transition*/
.image-text {
  transition: .5s ease;
}

.socialMedia {
  width: 30px;
  cursor: pointer;
}

/* Text inside item styles*/
.centeredItems{
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.centeredText {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
}
.centeredItemsOnImage {
  position: absolute;
  z-index: 999;
  margin: 0 auto !important;
  left: 0;
  right: 0;
  top: 40%;
  text-align: center;
  width: 80%;
  opacity: 0;
  transition: .5s ease;
  background-color: transparent !important;
  color: black;
}

/* Button styles*/
.mainButton {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 50px;
}

/* Button white to black on hover style*/
.buttonWhiteToBlack {
  background-color: white;
  color: black;
  border: 2px solid #555555;
}
.buttonWhiteToBlack:hover {
  background-color: #555555;
  color: white;
}

/* Button additional styles*/
.button-small {
  padding: 4px 8px;
}
.button-medium {
  padding: 8px 16px;
}
.button-center-div {
  margin:0 auto;
  display:block;
}

/* Table styles*/
table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
tr:hover {background-color: rgb(220, 220, 220);}

/* General styles*/
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
.text-center{
  text-align: center;
}
.text-small{
  font-size: 12px;
}

.mySlides {
  display: none;
  margin: 0 !important;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1250px;
  position: relative;
  margin: auto !important;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.captiontext {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: calc(100% - 44px);
  text-align: center;
  background-color: transparent !important;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #ffffff45 !important;
  border-radius: 50px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}

/* Styles for user input */
input 				{
  font-size:18px;
  padding:10px 10px 10px 10px;
  display:block;
  width:calc(100% - 20px);
  border:none;
  border-bottom:1px solid #757575;
}
textarea 				{
  font-size:18px;
  padding:10px 10px 10px 10px;
  display:block;
  width:calc(100% - 20px);
  height: 50px;
  border:none;
  border-bottom:1px solid #757575;
  resize: none;
}
input[type='date']{   
  text-align: right;
}
select 				{
  font-size:18px;
  padding:10px 10px 10px 10px;
  display:block;
  width: 100%;
  border:none;
  border-bottom:1px solid #757575;
}
input:focus, select:focus, textarea:focus { outline:none; }

/* Label styles for input */
label 				 {
  color:#999; 
  font-size:18px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

/* active state on input fields style */
input:focus ~ label, input:valid ~ label, input:disabled ~ label, select:focus ~ label, select:valid ~ label, select:disabled ~ label, textarea:focus ~ label, textarea:valid ~ label, textarea:disabled ~ label {
  top:-20px;
  font-size:14px;
  color:#000000;
}

/* Bottom bars on input field styles */
.bar 	{ position:relative; display:block; width:100%; }
.bar:before, .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#000000; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after, select:focus ~ .bar:before, select:focus ~ .bar:after, textarea:focus ~ .bar:before, textarea:focus ~ .bar:after {
  width:50%;
}

/* highlighter styles */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
input:focus ~ .highlight, select:focus ~ .highlight, textarea:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* form starting styles */
.group-20 { 
  position: relative;
  margin: 30px 10px 10px 10px !important;
  width: calc(20% - 20px);
  float: left;
}
.group-25 { 
  position: relative;
  margin: 30px 10px 10px 10px !important;
  width: calc(25% - 20px);
  float: left;
}
.group-30 { 
  position: relative;
  margin: 30px 10px 10px 10px !important;
  width: calc(30% - 20px);
  float: left;
}
.group-40 { 
  position: relative;
  margin: 30px 10px 10px 10px !important;
  width: calc(40% - 20px);
  float: left;
}
.group-50 { 
  position: relative;
  margin: 30px 10px 10px 10px !important;
  width: calc(50% - 20px);
  float: left;
}
.group-75 { 
  position: relative;
  margin: 30px 10px 10px 10px !important;
  width: calc(75% - 20px);
  float: left;
}
.group-100 { 
  position: relative;
  margin: 30px 10px 10px 10px !important;
  width: calc(100% - 20px);
  float: left;
}

/* Margin additional styles*/
.margin-top-10 {
  margin: 10px !important;
}
/* Margin additional styles*/
.no-scroll {
  overflow: hidden;
}

/* Order login form additional style*/
.centeredOrderLoginForm {
  margin: auto !important;
}

/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: all;
}
/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #eee;
}
/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #000000;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Use a media query to add a breakpoint at 600px and 1000px: */
@media screen and (min-width: 600px) and (max-width: 1000px) {
  /* Text on image style*/
  .centeredItemsOnImage {
    top: auto;
    bottom: 0;
    width: 100%;
    opacity: 1;
    background-color: #ffffffcc !important;
  }
  .image-with-text:hover .image-text {
    opacity: 1;
  }

  /*Overlay cart style*/
  .overlay .content-box-cart {
    width: calc(60% - 20px);
    max-width: 1000px;
    margin-top: 60px;
  }
}

/* Use a media query to add a breakpoint at 600px: */
@media screen and (max-width: 600px) {
  .main-top-bar-menu {
    display: block;
  }

  .main-top-bar-nav {
    display: none;
    position: fixed;
    width: 100%;
    margin-top: 50px;
    height: 100%;
  }
  .main-top-bar-nav button {
    width: 100%;
    padding: 14px 20px;
  }
  .main-top-bar-nav button:hover {
    border-bottom: none;
    background-color: #f0f0f0;
    font-weight: bold;
  }
  .main-top-bar-nav .active {
    border-bottom: none;
    background-color: #f0f0f0;
    font-weight: bold;
  }

  .main-bottom-bar-container-flex .container-box{
    width: calc(50% - 40px);
    overflow-x: auto;
  }

  /* Container items styles*/
  .main-container-flex .item-75{
    width: calc(100% - 20px);
  }
  .main-container-flex .item-70{
    width: calc(100% - 20px);
  }
  .main-container-flex .item-60{
    width: calc(100% - 20px);
  }
  .main-container-flex .item-50{
    width: calc(100% - 20px);
  }
  .main-container-flex .item-40{
    width: calc(100% - 20px);
  }
  .main-container-flex .item-30{
    width: calc(100% - 20px);
  }
  .main-container-flex .item-25{
    width: calc(100% - 20px);
  }
  .main-container-flex .item-20{
    width: calc(100% - 20px);
  }

  /* form starting styles */
  .group-20 { 
    width: calc(100% - 20px);
  }
  .group-25 { 
    width: calc(100% - 20px);
  }
  .group-30 { 
    width: calc(100% - 20px);
  }
  .group-40 { 
    width: calc(100% - 20px);
  }
  .group-50 { 
    width: calc(100% - 20px);
  }
  .group-75 { 
    width: calc(100% - 20px);
  }

  /* Overlay cookies styles*/
  .overlay .content-box-cookies .text {
    width: 100%;
  }
  .overlay .content-box-cookies .button {
    width: 50%;
  }

  /* Reverse main container flex flow*/
  .reverseOnMobile {
    flex-flow: wrap-reverse !important;
  }

  /* Copyrights styling*/
  .main-bottom-bar-container-flex .main-bottom-bar-copyrights-logo img {
    margin-left: 10px;
  }
  .main-bottom-bar-container-flex .main-bottom-bar-copyrights p {
    margin-right: 10px;
  }

  /* Slideshow container smaller font size*/
  .prev, .next,.text {
    font-size: 11px
  }

  /* Text on image style*/
  .centeredItemsOnImage {
    top: auto;
    bottom: 0;
    width: 100%;
    opacity: 1;
    background-color: #ffffffcc !important;
  }
  .image-with-text:hover .image-text {
    opacity: 1;
  }

  /*Overlay cart style*/
  .overlay .content-box-cart {
    width: calc(100% - 20px);
    max-width: 1000px;
    margin-top: 60px;
  }

  /* Order login form additional style*/
  .centeredOrderLoginForm {
    width: 90%;
  }
}