/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --zero-color: #FFD369;
  --zero-color-rgba: 255, 211, 105;
  --first-color: #393E46;
  --first-color-rgba: 57, 62, 70;
  --second-color: #222831;
  --third-color: #EEEEEE;
  --third-color-rgba: 238, 238, 238;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background-image: url("../img/patternpad.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

a {
  color: var(--first-color);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.holder {
  height: 20px;
  z-index: 999;
  background-image: linear-gradient(to bottom, #fff, #FFD369);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--first-color);
  border-top-color: var(--zero-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--zero-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--third-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--first-color);
  color: var(--third-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(var(--zero-color-rgba), 0.9);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(var(--zero-color-rgba), 0.9);
  height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--zero-color);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#header .logo .darkLogo {
  color: var(--first-color);
}

#header .logo .lightColor {
  color: var(--third-color);
}

#navbar li i {
  font-size: 24px;
}

header .basketItemCounter {
  position: relative;
}
header .basketItemCount {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -1px;
  right: -20px;
  background-color: rgba(var(--first-color-rgba, 0.5));
  color: var(--third-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  header .basketItemCounter.mobile-nav-toggle {
    position: absolute;
    top: 2rem;
    right: 5rem;
    font-size: 18px;
  }
  header .basketItemCounter.mobile-nav-toggle .basketItemCount {
    font-size: 12px;
    right: -20px;
  }
  header .basketItemCounter:not(.mobile-nav-toggle) .basketItemCount {
    font-size: 12px;
    right: 5px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(var(--first-color-rgba), 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: var(--first-color);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--first-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--third-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: var(--zero-color);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--first-color);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: var(--first-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(var(--zero-color-rgba), 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: var(--third-color);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li > a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--first-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--first-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--first-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover > a {
  color: var(--first-color);
}

.navbar-mobile .dropdown > .dropdown-active,
.navbar-mobile .dropdown .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  padding: 120px 0 0 0;
  background-image: url("../img/hexagon.jpg");
  background-repeat: repeat;
  background-position: top;
  background-size: contain;
}

#hero:before {
  content: "";
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-img {
  position: relative;
  overflow: visible;
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#hero .hero-img img {
  display: block;
  margin: auto;
  max-height: 200px;
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  transform: rotate(45deg);
}

#hero h1 {
  font-size: 48px;
  font-weight: 1000;
  line-height: 56px;
  color: var(--second-color);
}

#hero h2 {
  color: var(--second-color);
  line-height: 26px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--third-color);
  background: var(--first-color);
}

#hero .btn-get-started:hover {
  background: var(--second-color);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  #hero .hero-img {
    background-size: cover;
  }
}
@keyframes fly-desktop {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
  z-index: 999;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 16px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--first-color);
  font-family: "Poppins", sans-serif;
  z-index: 999;
}
.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--zero-color);
}
.section-title img {
  position: absolute;
  top: -15px;
  max-height: 19px;
  max-width: 100%;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: var(--third-color);
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--second-color);
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--zero-color);
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--first-color);
  background: var(--first-color);
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: var(--zero-color);
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: var(--zero-color);
  border-color: var(--zero-color);
}

.about .icon-box:hover .icon i {
  color: var(--first-color);
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: var(--first-color);
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: var(--first-color);
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  border-top-left-radius: 25px !important;
  border-top-right-radius: 25px !important;
  height: 300px;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery .gallery-item img {
  transition: all ease-in 0.5s;
  object-fit: cover;
  min-height: 300px;
  width: auto;
}

.gallery .description {
  background-color: rgba(var(--zero-color), 1);
  border-right: 1px solid var(--zero-color);
  padding: 5px;
  border-bottom-left-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.gallery .description p.main {
  position: relative;
  display: inline-block;
  text-align: center;
}
.gallery .description p.main::after {
  text-align: center;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--zero-color);
  z-index: 1;
}
.gallery .description p.main, .gallery .description .price {
  color: var(--first-color);
  font-weight: bold;
}
.gallery .description p.long {
  min-height: 60px;
}
.gallery .description .colorHex {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}
.gallery button, .gallery a {
  font-size: 16px;
  border: none;
  background-color: var(--zero-color);
  color: var(--first-color);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.gallery button:hover, .gallery a:hover {
  background-color: var(--first-color);
  color: var(--zero-color);
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: var(--first-color);
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--zero-color);
}

@media (max-width: 768px) {
  .gallery .gallery-item {
    height: 200px;
  }
  .gallery .gallery-item img {
    min-height: 200px;
    width: auto;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  width: 80%;
  overflow: hidden;
  margin-bottom: 40px;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonial-item {
  text-align: center;
  color: var(--first-color);
}
.testimonials .testimonial-item img {
  border-radius: 25px;
  max-width: 200px;
  object-fit: cover;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--first-color);
}
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--zero-color-rgba), 0.9);
  font-size: 26px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  color: black;
  word-wrap: break-word;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  background-color: rgba(var(--zero-color-rgba), 0.5);
  border-radius: 25px;
}
.contact .info .contact-slide {
  padding: 20px;
}
.contact .info .contact-slide .contact-text {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--first-color);
  font-family: "Poppins", sans-serif;
}
.contact .info .contact-slide h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--zero-color);
}
.contact .info .contact-slide p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--zero-color);
}
.contact .info .contact-slide .message {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--first-color);
  font-family: "Poppins", sans-serif;
  z-index: 999;
}
.contact .info .contact-slide .message .loading-message {
  display: none;
  font-weight: 1000;
}
.contact .info .contact-slide .message .error-message {
  display: none;
  font-weight: 1000;
  color: red;
}
.contact .info .contact-slide .message .sent-message {
  display: none;
  font-weight: 1000;
}
.contact .info .contact-slide button {
  font-size: 16px;
  border: none;
  background-color: var(--first-color);
  color: var(--zero-color);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact .info .contact-slide button:hover {
  background-color: var(--zero-color);
  color: var(--first-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--zero-color);
  padding: 0 0 30px 0;
  color: var(--first-color);
  font-size: 14px;
}
#footer .info {
  padding-top: 30px;
  text-align: center;
}
#footer .copyright {
  border-top: 1px solid var(--zero-color);
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--first-color);
}

/*--------------------------------------------------------------
# Cookie banner
--------------------------------------------------------------*/
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #F1F6F4;
}
#cookie-consent-banner .cookie-consent-banner__inner {
  padding: 5px 0;
}
#cookie-consent-banner a {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
}
.features .icon-box.white {
  color: #fff;
}
.features .icon-box.black {
  color: var(--first-color);
}
.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}
.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.features .icon-box img {
  max-height: 60px;
  padding-right: 10px;
  width: auto;
}

/*--------------------------------------------------------------
# Basket
--------------------------------------------------------------*/
#basket-page {
  min-height: 95vh;
}
#basket-page .basket {
  min-height: 90vh;
}
#basket-page .basket .itemParent {
  position: relative;
}
#basket-page .basket .itemRowId {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 50px;
}
#basket-page .basket .btn {
  font-size: 16px;
  border: none;
  background-color: var(--second-color);
  color: var(--zero-color);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#basket-page .basket .btn:hover {
  background-color: var(--zero-color);
  color: var(--second-color);
}
#basket-page .basket p {
  color: var(--first-color);
  font-weight: bold;
}
#basket-page .basket .item {
  border-top: 1px solid var(--first-color);
  border-right: 1px solid var(--first-color);
  border-left: 1px solid var(--first-color);
  padding: 20px;
}
#basket-page .basket .item:last-of-type {
  border-bottom: 1px solid var(--first-color);
}
#basket-page .basket .item p {
  color: var(--first-color);
  font-weight: bold;
}
#basket-page .basket .item .deleteIcon {
  color: var(--zero-color);
  font-weight: bold;
}
#basket-page .basket .item .deleteIcon:hover, #basket-page .basket .item .deleteIcon:active {
  color: var(--first-color);
}
#basket-page .basket .item .itemName {
  color: var(--first-color);
}
#basket-page .basket .item img {
  max-height: 100px;
}
#basket-page .desktopOnly {
  display: initial;
}
#basket-page .mobileOnly {
  display: none;
}
@media (max-width: 575px) {
  #basket-page .basket .item {
    padding: 0px;
  }
  #basket-page .basket .desktopOnly {
    display: none !important;
  }
  #basket-page .basket .mobileOnly {
    display: initial !important;
  }
}

/*--------------------------------------------------------------
  # Details inner-page
-------------------------------------------------------------*/
#inner-page {
  min-height: 95vh;
}
#inner-page button, #inner-page a {
  font-size: 16px;
  border: none;
  background-color: var(--zero-color);
  color: var(--first-color);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#inner-page button:hover, #inner-page a:hover {
  background-color: var(--first-color);
  color: var(--zero-color);
}
#inner-page .details .swiper {
  position: relative;
  max-height: 100%;
  max-width: 500px;
}
#inner-page .details .swiper .swiper-wrapper {
  max-height: 100%;
  max-width: 500px;
}
#inner-page .details .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background-color: var(--zero-color);
  max-height: 100%;
  max-width: 500px;
}
#inner-page .details .swiper .swiper-slide img {
  max-width: 600px;
  object-fit: cover;
}
#inner-page .details .my-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
#inner-page .details .my-card .my-card-info div {
  display: flex;
  align-items: center;
}
#inner-page .details .my-card .my-card-info h6 {
  cursor: pointer;
  margin-right: 10px;
  padding: 5px 10px;
  background-color: var(--first-color);
  color: var(--zero-color);
  border-radius: 5px;
}
#inner-page .details .my-card .my-card-info span {
  font-size: 14px;
}
#inner-page .details .colors div:first-of-type {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
#inner-page .details .colors div:last-of-type {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
#inner-page .details .colors .icon-box {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px;
  transition: ease-in-out 0.3s;
}
#inner-page .details .colors .icon-box.white {
  color: #fff;
}
#inner-page .details .colors .icon-box.black {
  color: var(--first-color);
}
#inner-page .details .colors .icon-box i {
  font-size: 15px;
  padding-right: 10px;
  line-height: 1;
}
#inner-page .details .colors .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 15px;
}
@media (max-width: 768px) {
  #inner-page .details .swiper {
    max-height: 100%;
    max-width: 300px;
  }
  #inner-page .details .swiper .swiper-wrapper {
    max-height: 100%;
    max-width: 300px;
  }
  #inner-page .details .swiper .swiper-slide {
    max-height: 100%;
    max-width: 300px;
  }
  #inner-page .details .swiper .swiper-slide img {
    max-width: 300px;
  }
  #inner-page .details .swiper-button-prev,
  #inner-page .details .swiper-button-next {
    display: none;
  }
}
#inner-page .input-quantity {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: inherit;
  -moz-appearance: textfield;
  appearance: textfield;
  width: 4ch;
}

.colorHex {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

p.main, .price {
  color: var(--first-color);
  font-weight: bold;
}

input, select, textarea, option {
  margin-top: 2px;
  padding: 2px;
  border: none !important;
  background-color: white !important;
  font-size: inherit !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
  max-width: 100% !important;
}

#confirmation-page {
  min-height: 95vh;
  /* Close button */
}
#confirmation-page input::placeholder {
  opacity: 0.5;
}
#confirmation-page button, #confirmation-page a {
  font-size: 16px;
  border: none;
  background-color: var(--zero-color);
  color: var(--first-color);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#confirmation-page button:hover, #confirmation-page a:hover {
  background-color: var(--first-color);
  color: var(--zero-color);
}
#confirmation-page #zasilkovnaConfirmed {
  margin-left: 2rem;
}
#confirmation-page form span {
  color: var(--first-color);
  font-weight: bold;
}
#confirmation-page .confirmation-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
#confirmation-page .confirmation-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
#confirmation-page .confirmation-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
#confirmation-page .confirmation-close:hover,
#confirmation-page .confirmation-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.instagram-link {
  font-size: 16px;
  border: none;
  background-color: var(--zero-color);
  color: var(--first-color);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.instagram-link:hover {
  background-color: var(--first-color);
  color: var(--zero-color);
}
.instagram-link .instagram-icon {
  margin-left: 5px; /* Add some space between text and icon */
  vertical-align: middle; /* Align icon vertically with text */
  font-size: 1.2em; /* Adjust icon size */
}

#gallery #filters button.active {
  background-color: var(--first-color);
  color: var(--zero-color);
}
#gallery .swiper {
  position: relative;
  max-height: 500px;
  max-width: 500px;
}
#gallery .swiper .swiper-wrapper {
  max-height: 500px;
  max-width: 500px;
}
#gallery .swiper .swiper-slide {
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: var(--first-color);
  max-height: 500px;
  max-width: 500px;
  background-color: rgba(var(--zero-color-rgba), 0.4);
}
#gallery .swiper .swiper-slide img {
  object-fit: cover;
}
#gallery .swiper .item-text {
  padding: 5px;
}
#gallery .swiper .item-text p {
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #gallery .swiper .item-text {
    padding: 5px;
  }
  #gallery .swiper .item-text p {
    font-size: 8px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  z-index: 9999 !important;
  width: 48px !important;
  height: 48px !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  color: rgba(var(--zero-color-rgba), 0.8) !important;
  background-color: rgba(var(--first-color-rgba), 0.2) !important;
  font-size: 24px !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: 0.3s !important;
}
.swiper-button-prev:after:hover,
.swiper-button-next:after:hover {
  background-color: rgba(var(--first-color-rgba), 0.8) !important;
}

/*--------------------------------------------------------------
  # Admin-page
-------------------------------------------------------------*/
#admin-page {
  min-height: 95vh;
}
#admin-page button, #admin-page a {
  font-size: 16px;
  margin: 10px;
  padding: 10px;
  border: none;
  background-color: var(--zero-color);
  color: var(--first-color);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#admin-page button:hover, #admin-page a:hover {
  background-color: var(--first-color);
  color: var(--zero-color);
}
#admin-page .alertMessage {
  position: fixed;
  top: 10%;
  left: 50%;
  width: 80%;
  max-width: 800px;
  z-index: 999;
  text-align: center;
  transform: translate(-50%, -50%);
}

.generic-button {
  font-size: 16px;
  border: none;
  background-color: var(--zero-color);
  color: var(--first-color);
  line-height: 3;
  border-radius: 15px;
  padding: 5px;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none !important;
}
.generic-button:hover {
  background-color: var(--first-color);
  color: var(--zero-color);
}
.generic-button.negative {
  font-size: 11px;
  background-color: rgba(var(--first-color-rgba), 0.2);
}
.generic-button.negative:hover {
  background-color: var(--first-color);
}

.why-us .remove-background {
  mix-blend-mode: multiply;
}
.why-us .content {
  padding: 60px 100px 0 100px;
}
.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--zero-color);
}
.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.why-us .content p {
  font-size: 15px;
  color: var(--zero-color);
}
.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}
.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}
.why-us .accordion-list li + li {
  margin-top: 15px;
}
.why-us .accordion-list li {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
  transition: all ease-in-out 0.4s;
  border-radius: 25px;
}
.why-us .accordion-list li a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}
.why-us .accordion-list li a span {
  color: var(--first-color);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}
.why-us .accordion-list li a i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.why-us .accordion-list li a p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.why-us .accordion-list li a.collapsed {
  color: var(--zero-color);
}
.why-us .accordion-list li a.collapsed:hover {
  color: var(--zero-color);
}
.why-us .accordion-list li a.collapsed .icon-show {
  display: inline-block;
}
.why-us .accordion-list li a.collapsed .icon-close {
  display: none;
}
.why-us .accordion-list .icon-show {
  display: none;
}
@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}
.why-us .swiper {
  margin-top: 0;
  padding-top: 0;
  width: 100%;
  overflow: hidden;
}
.why-us .swiper .swiper-slide {
  background-position: center;
  background-size: cover;
}

.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
  transition: all ease-in-out 0.4s;
  border-radius: 25px;
}
.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: var(--second-color);
  transition: ease-in-out 0.3s;
}
.services .icon-box:hover {
  transform: translateY(-10px);
}
.services .icon-box:hover h4 {
  color: var(--second-color);
}
.services .icon-box:hover h4 a {
  text-decoration: none;
  color: var(--zero-color);
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

/*# sourceMappingURL=style.css.map */
