/* Product Page Styles */

body, h1, p {
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
background: transparent;
}

::-webkit-scrollbar-thumb {
background: #608769;
}

::-webkit-scrollbar-thumb:hover {
background: #46594a;
}

/* Container for the banner and product page */
.product-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Product page styles */
.product-page-container {
  margin: 5%;
}

.product-images-carousel {
  flex: 2;
  max-width: 80%;
  position: relative;
  cursor: pointer;
  outline:none;
}

.all-product-images {
  flex: 1;
  max-width: 80%;
  position: relative;
  cursor: pointer;
  outline:none;
  align-items: center;
  justify-content: center;
}

.carousel-slides {
  display: flex;
}

.carousel-slides img {
  width: 100%;
  height: auto;
}

.product-image-other img {
  width: 40%;
  height: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 20px;
  cursor: pointer;
  outline:none;
}

.product-name {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 18px;
  margin-bottom: 20px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quantity-button {
  background-color: #fff;
  color: #000;
  border: none;
  font-size: 18px;
  padding: 8px 12px;
  cursor: pointer;
}

.quantity-input {
  background-color: #fff;
  border: 0;
  font-size: 16px;
  padding: 8px;
  text-align: center;
}

.add-to-cart-button {
  background-color: #333;
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 12px 20px;
  cursor: pointer;
}

.carouselImg {
    border-radius: 5%;
    outline:none;
}

.otherImg {
    border-radius: 5%;
    outline:none;
}

.variation-button.selected {
  background-color: #242424; /* Grey background color */
  color: #fff; /* White text color */
}

.input-with-dollar-sign {
  position: relative;
}

.input-with-dollar-sign .dollar-sign {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-with-dollar-sign input[type="number"] {
  padding-left: 25px;
}


.carousel-btn {
  position: absolute;
  font-size: 24px;
  background-color: rgba(000, 000, 000, 0.8);
  border: none;
  cursor: pointer;
  padding: 20px;
  z-index: 1;
}

.product-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.product-images-carousel {
  margin-right: 0px;
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
  align-items: center;
  justify-content: center;
}

.all-product-images {
  margin-right: 0px;
  display: flex;
  flex-direction:column;
  flex: 0 0 60%;
  max-width: 60%;
  align-items: center;
  justify-content: center;
  margin-left:-15%;
}

.carouselImg {
  width: 100%;
  max-width: 50%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.prev-btn {
  left: 25%;
}

.next-btn {
  right: 25%;
}

.product-details {
  flex: 1;
  max-width: 50%;
  position: sticky;
  top: 0;
  padding-left: 20px;
  max-height: calc(100vh - 80px);
  overflow-y: scroll;
  scroll-behavior: smooth;
  transition: max-height 0.3s ease;
  vertical-align: top; 
  clear: both;
}

.stick{
    position: sticky;
  top: 240px;
  margin-top: -240px;
}

.otherImg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin:0;
  padding:0;
}

.otherImg img {
  width: 40%;
  height: auto;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin:0;
  padding:0;
}

.product-image-other {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-name {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 18px;
  margin-bottom: 20px;
}

.product-variations {
  margin-bottom: 20px;
}

.product-variations button {
  padding: 8px 12px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  background-color: #fff;
}

.product-image-other {
  width: calc(10% - 10px); /* Adjust the width as per your preference */
  margin-bottom: 10px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  
    flex-wrap:wrap;
}

.product-image-other img {
  width: 40%;
  height: auto;
  object-fit: cover;
  padding:3%;
}

@media(max-width: 768px){
    .product-variations button {
  margin-right: 0px;
}

}

.product-variations button.active {
  background-color: #54b569;
  color: #fff;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  max-width:20%;
}

.quantity-button {
  padding: 5px 10px;
  font-size: 16px;
  border: 0px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #fff;
}

.quantity-input {
  padding: 5px 10px;
  text-align: center;
  font-size: 16px;
  border: 0px;
  background-color: #fff;
  border-radius: 0px;
  width: 20px;
}

.add-to-cart-button {
  padding: 10px 40px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #54b569;
  color: #fff;
}

.add-to-cart-button:hover {
  background-color: #449b4f;
}

.add-to-cart-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.product-description {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
        display: flex;
  justify-content: center;
  border: 1px solid #000;
  align-items: center;
  flex-wrap: wrap;
  padding:4%;
}

/* styles.css */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: lighter;
}

.p link{
  color: #fff;
}

a {
  text-decoration: none;
  color: #000;
}

.remove-variation, .add-variation{
 width:100%;   
 text-align:center;
}


/* Navigation Menu */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: #132517;
      color: #fff;
      height: 120px;
      transition: height 0.3s ease;
      z-index: 100;
  }
  
  .logo{
      height:120px;
      max-width:40%;
  }
 
  .logo img {
    height: 100%;
  }
  
.menu {
    list-style: none;
    display: flex;
  }
  
  .menu-item {
    margin-right: 20px;
    margin-bottom: 10px;
    padding:5px;
    cursor: pointer;
    color: white;
    border-radius: 8px;
  }
  
  .menu-item:hover {
    background-color: #fff;
    color: #000;
  }
  
    .menu-item a {
    cursor: pointer;
  }
  
  .menu-item a:hover {
    color: #fff;
  }

  .submenu {
    display: none;
    list-style: none;
    position: absolute;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    color: #000;
  }
  
  .submenu:hover {
   color: #fff;   
  }
  
  .menu-item:hover .submenu {
    display: block;
  }
  
  .submenu li {
    margin-bottom: 5px;
    padding:3px;
  }
  
  .submenu li:hover {
    background-color: #132517;
    color: #496950;
  }

  .navbar.small {
    height: 40px;
  }
  .banner {
    height: 500px;
    margin-top: 120px;
  }

/* Image Banner */
.banner {
  background-image: url('images/banner-image.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: none;
  justify-content: center;
  align-items: center;
  outline: 255px solid rgba(0, 0, 0, 0.2);
    outline-offset: -255px;
  z-index:1;
}

.banner-content {
  text-align: center;
  color: #fff;
  padding:20px;
  z-index:2;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}

.banner-content h1 {
  font-size: 72px;
  font-weight:900;
      width:100%;
}

.divider {
  width: 100px;
  height: 0px;
  background-color: #fff;
  margin: 20px auto;
}

.banner-content p {
  font-size: 24px;
  font-weight:900;
}

.filter-section {
  display: none;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.filter-title {
  font-size: 24px;
}

.active-category {
  color: rgb(139, 60, 139);
}

.filter-title {
  font-size: 24px;
}

.filter-options {
  margin-right: 10px;
}

.search-bar {
  display: flex;
  align-items: center;
}

#search-input {
  margin-right: 10px;
  padding: 5px;
  text-align: center;
}

#search-button {
  padding: 5px 10px;
}

.filter-dropdown {
  position: relative;
  display: inline-block;
}

.filter-title {
  cursor: pointer;
  text-align: center;
}

.category-list {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.category-list li {
  padding: 8px 12px;
  cursor: pointer;
}

.category-list li:hover {
  background-color: #f0f0f0;
}

.show {
  display: block;
}

/* Basic button reset to remove default styles */
.upload {
  display: inline-block;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* Custom styles for the button */
.upload {
  background-color: #3498db;
  color: #ffffff;
  border-radius: 4px;
  padding: 15px;
  margin: 0px -20px;
  font-size: 16px;
  width:100%;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

/* Hover state */
.upload:hover {
  background-color: #2980b9;
}

/* Active state */
.upload:active {
  background-color: #1f618d;
}

/* Focus state */
.upload:focus {
  outline: none;
  box-shadow: 0 0 5px #3498db;
}

/* Disabled state */
.upload:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Product Section */
.products {
  display:none;
  padding: 20px;
  margin-bottom: 5%;
  margin-left: 5%;
  margin-right: 5%;
}

.product{
  position: relative;
    overflow:hidden;
}

.product-image {
  width: 100%;
  max-width: 500px;
  padding-bottom: 130%;
  position: relative;
  overflow:hidden;
}

.product-image img {
  position: absolute;
  overflow:hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform, 0.2s cubic-bezier(0,0,1,1);
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
}

/* CSS for the magnifying glass */
.magnifying-glass {
  position: absolute;
  width: 70px; /* Adjust the size of the magnifying glass */
  height: 70px; /* Adjust the size of the magnifying glass */
  pointer-events: none; /* Prevent the magnifying glass from blocking clicks on the image */
  display: none; /* Hide the magnifying glass initially */
  background-image: url('images/magnifying-glass.png'); /* Replace with the path to your magnifying glass icon */
  background-size: cover;
  opacity:0.7;
  z-index: 9999; /* Ensure the magnifying glass appears on top of other elements */
}


@media (min-width: 768px) {
  .product-grid {
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
  }

  .product {
    flex-basis: calc(25% - 2%);
    width: 25%;
    margin: 1%;
  }
  
  .otherImg{
    display:flex;
    flex-wrap:wrap;
    
  align-items: center;
  justify-content: center;
  padding:5%;
}
}

.product {
  flex: 0 0 calc(25% - 1%);
  margin: 0%;
}

.product-info {
  margin-top: 10px;
}

.product-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.product-info p {
  font-size: 16px;
}

.available {
  color: green;
  font-style: italic;
}

.unavail {
  color: red;
  font-style: italic;
}

/* Zoom effect on hover */
.product:hover .product-image img {
  transform: scale(1.27);
}

/* Filter Styles */

.filter-section {
  margin-left: 0px;
  margin-right: 0px;
  width: auto;
}

.filter-title {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  flex-grow: 1;
}

.filter-options {
  display: flex;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
}

#search-button {
  display: none;
}

.filter-dropdown {
  position: relative;
  display: inline-block;
}

.category-list {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.filter-dropdown:hover .category-list {
  display: block;
}

.filter-dropdown:hover .category-list li {
  width: 79%;
}

.filter-dropdown:hover .category-list li:hover {
  background-color: #f0f0f0;
  color: #000;
  border-radius: 5px;
}

.sort-select-container {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.sort-select-icon {
  margin-right: 5px;
  display: flex;
  align-items: center;
}


.filter-section,
.sort-select-container {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
}


.sort-select-icon::before {
  content: "\f00c";
  display: inline-block;
  width: 20px;
  height: 20px;
}

#search-input::before {
  content: "\f00c";
  display: inline-block;
  width: 20px;
  height: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.page-numbers{
  color: #54b569;
  font-size: 2em;
}

.pagination-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 0 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  cursor: pointer;
}

.pagination-button:hover {
  background-color: #000;
  color: #fff;
}

.pagination-button.active {
  background-color: #333;
  color: #fff;
}

.pagination-button:not(.active):hover {
  color: #000;
}

.pagination-button .icon {
  font-size: 18px;
  padding: 20px;
}

.next-page {
  display: flex;
  align-items: center;
}

.pagination-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  margin: 0 5px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  color: #132517;
}

.page-numbers.active {
  text-decoration: none;
  font-weight: bold;
}

.page-numbers:hover {
  text-decoration: none;
  background-color: transparent;
}

.page-numbers .icon {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .filter-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
    .menu {
        display: flex;
        flex-direction: column;
        padding-top:10px;
        padding-bottom:10px;
  }

  .category-list {
    top: 25px;
    z-index: 1;
  }
  
  .banner{
      margin-top: 140px;
  }

  .filter-options {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .filter-title {
    width: 40%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .filter-dropdown {
    width: 40%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search-bar {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0%;
    margin: 0 auto;
    max-width: 100%;
  }

  .product {
    flex: 0 0 calc(33.33% - 1%);
  }

  .products {
    padding: 0 0px;
    margin-bottom: 0%;
    margin-left: 0%;
    margin-right: 0%;
  }
  
  .product-grid {
    justify-content: flex-start;
  }

  .product {
    flex: 0 0 calc(50% - 10px);
    margin: 5px;
  }

  .products {
    padding: 0;
    margin: 0;
  }
  
  .product-image {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
}

.modal-btn {
  padding: 10px 20px;
  color: #01b491;
  font-size: 16px;
  outline: solid #01b491 2px;
  cursor: pointer;
  z-index:999;
}

#modal-toggle {
  display: none;
}

.modal-content,
.modal-backdrop {
  opacity: 0;
  position: fixed;
  padding: 15px;
  padding-top: 50px;
  z-index: -1;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.modal-content {
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  height: 550px;
  max-height: 98%;
  max-width: 600px;
  text-align: center;
  transform: translateX(300%);
}

.modal-backdrop {
  left: 0;
  top: 0;
  height: 100%;
  height: 100vh;
  width: 100%;
  width: 100vw;
  transform: scale(0);
}

#modal-toggle:checked ~ .modal-backdrop {
  opacity: 1;
  background-color: rgba(0, 70, 62, 0.5);
  z-index: 998;
  transform: scale(1);
}

#modal-toggle:checked ~ .modal-content {
  opacity: 1;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: auto;
  cursor: auto;
  z-index: 999;
  transform: translateX(0%);
}

@media (max-width: 768px) {
  #modal-toggle:checked ~ .modal-backdrop {
    opacity: 0;
  }

  .modal-content {
    top: 0;
    left: 0;
    height: 85vh;
    width: 90vw;
  }
}
.modal-close-btn {
  margin-top: 5px;
  display: inline-block;
  cursor: pointer;
 position: absolute;
    right: 10px;
    top: 5px;
}
.modal-close-btn svg {
  transition: 0.2s;
}
.modal-close-btn svg line {
  stroke-width: 5px;
  stroke: #01b491;
}
.modal-close-btn:hover svg {
  transform: rotate(90deg);
}

/* BASIC FUNCTIONALITY .tabs */
.tabs {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.tabs > .radio {
  display: none;
}
.tabs > .radio:checked + .table + .tabs-content {
  display: block;
}
.tabs > .table {
  order: -1;
  flex-basis: 50%;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tabs .tabs-content {
  width: 100%;
  display: none;
}

.tabs > .radio:checked + .table + .tabs-content {
  display: block;
}

/* END BASIC FUNCTIONALITY .tabs */
/*  THEME for .tabs with login & sign-in  */
.tabs > .table {
  padding: 20px 0;
  text-align: center;
  border-bottom: solid #01b491 5px;
  color: #01b491;
  cursor: pointer;
}

.tabs > .table:hover {
  color: #01b491;
  background: rgba(0, 121, 107, 0.2);
}
.tabs > .radio:checked + .table {
  color: #fff;
  background: #01b491;
  cursor: auto;
}
.tabs > .radio:checked + .table span {
  display: inline-block;
  transform: scale(1.2);
  transition: 0.1s;
}

/*  END THEME for .tabs with login & sign-in  */
/*  START style login & sign up  */
.tabs > .tabs-content .login_socnet {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: no-wrap;
  justify-content: space-around;
}
.tabs > .tabs-content .login_socnet a {
  margin: 20px;
  margin-bottom: 0;
  width: 100%;
  font-size: 60px;
  text-decoration: none;
  transition: 0.2s;
}
.tabs > .tabs-content .login_socnet a:hover {
  transform: scale(1.1);
  filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.2));
}
.tabs > .tabs-content .login_socnet .fa-vk {
  color: #7986CB;
}
.tabs > .tabs-content .login_socnet .fa-google-plus {
  color: #E57373;
}
.tabs > .tabs-content .login_socnet .fa-facebook {
  color: #5C6BC0;
}
.tabs > .tabs-content form {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.tabs > .tabs-content form input {
  padding: 10px;
  margin: 15px 0;
  border: none;
  border-bottom: solid 1px #01b491;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.1s;
}
.tabs > .tabs-content form input:focus {
  transform: translateX(10px);
  outline: none;
}
.tabs > .tabs-content input[type="submit"] {
  padding: 15px 0;
  width: 100%;
  background: #01b491;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.tabs > .tabs-content input[type="submit"]:focus {
  transform: none;
}
.tabs > .tabs-content .forgot-password label {
  margin: 0 auto;
  width: 50%;
  color: #01b491;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
}
.tabs > .tabs-content .forgot-password label:hover {
  text-decoration: underline;
}

/*  END style login & sign up  */
.forgot-password #forgot-password-toggle {
  display: none;
}
.forgot-password .forgot-password-content {
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease-in;
}
.forgot-password .forgot-password-content input[type="email"] {
  width: 80%;
  margin-right: 0px;
  border-right: none;
}
.forgot-password .forgot-password-content input[type="submit"] {
  width: 20%;
  margin-left: 0px;
}
.forgot-password #forgot-password-toggle:checked ~ .forgot-password-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: auto;
  cursor: auto;
  visibility: visible;
}

/* Style for upload */

.add-product-form {
  max-width: 400px;
  margin: 0 auto;
  padding-left:10px;
  padding-right:10px;
  overflow:hidden;
}

.add-product-form h2 {
  text-align: center;
  padding-bottom:5px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
textarea,
input[type="number"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  background-color:#fafafa;
}

.submit-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.submit-button:hover {
  background-color: #45a049;
}

/* checkbox styling */

.toggler-wrapper {
  display: block;
  width: 40px;
  height: 25px;
  cursor: pointer;
  position: relative;
}

.toggler-wrapper input[type="checkbox"] {
  display: none;
}

.toggler-wrapper input[type="checkbox"]:checked+.toggler-slider {
  background-color: #44cc66;
}

.toggler-wrapper .toggler-slider {
  background-color: #ccc;
  position: absolute;
  border-radius: 100px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.toggler-wrapper .toggler-knob {
  position: absolute;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*Style 1*/

.toggler-wrapper.style-1 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-1 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
}


/*Style 2*/

.toggler-wrapper.style-2 {
  width: 67.5px;
}

.toggler-wrapper.style-2 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:before {
  opacity: 0.4;
}

.toggler-wrapper.style-2 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  opacity: 1;
}

.toggler-wrapper.style-2 .toggler-knob {
  position: relative;
  height: 100%;
}

.toggler-wrapper.style-2 .toggler-knob:before {
  content: 'Off';
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 75%;
  text-transform: uppercase;
  color: white;
}

.toggler-wrapper.style-2 .toggler-knob:after {
  content: 'On';
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 75%;
  text-transform: uppercase;
  color: white;
  opacity: 0.4;
}


/*Style 3*/

.toggler-wrapper.style-3 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-3 .toggler-knob {
  width: calc(25px + 6px);
  height: calc(25px + 6px);
  border-radius: 50%;
  left: -3px;
  top: -3px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(153, 153, 153, 0.75);
  box-shadow: 0 2px 6px rgba(153, 153, 153, 0.75);
}


/*Style 4*/

.toggler-wrapper.style-4 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-4 .toggler-knob {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  left: 0;
  top: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(153, 153, 153, 0.75);
  box-shadow: 0 2px 6px rgba(153, 153, 153, 0.75);
}


/*Style 5*/

.toggler-wrapper.style-5 input[type="checkbox"]:checked+.toggler-slider {
  background-color: #ccc;
}

.toggler-wrapper.style-5 input[type="checkbox"]:checked+.toggler-slider:before {
  background-color: #e6e6e6;
}

.toggler-wrapper.style-5 input[type="checkbox"]:checked+.toggler-slider:after {
  background-color: #44cc66;
}

.toggler-wrapper.style-5 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-5 .toggler-slider:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -12.5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8.3333333333px;
  height: 8.3333333333px;
  border-radius: 50%;
  background-color: #b3b3b3;
}

.toggler-wrapper.style-5 .toggler-slider:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -17.5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12.5px;
  height: 12.5px;
  border-radius: 50%;
  background-color: #e6e6e6;
}

.toggler-wrapper.style-5 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
}


/*Style 6*/

.toggler-wrapper.style-6 {
  width: 54px;
  -webkit-box-shadow: 0 0.07em 0.1em -0.1em rgba(0, 0, 0, 0.4) inset, 0 0.05em 0.08em -0.01em rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.07em 0.1em -0.1em rgba(0, 0, 0, 0.4) inset, 0 0.05em 0.08em -0.01em rgba(255, 255, 255, 0.7);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.07)), to(rgba(255, 255, 255, 0))), #ddd;
  background: linear-gradient(rgba(0, 0, 0, 0.07), rgba(255, 255, 255, 0)), #ddd;
  border-radius: 100px;
}

.toggler-wrapper.style-6 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px + 5px);
}

.toggler-wrapper.style-6 .toggler-slider {
  -webkit-box-shadow: 0 0.08em 0.15em -0.1em rgba(0, 0, 0, 0.5) inset, 0 0.05em 0.08em -0.01em rgba(255, 255, 255, 0.7), 0 0 0 0 rgba(68, 204, 102, 0.7) inset;
  box-shadow: 0 0.08em 0.15em -0.1em rgba(0, 0, 0, 0.5) inset, 0 0.05em 0.08em -0.01em rgba(255, 255, 255, 0.7), 0 0 0 0 rgba(68, 204, 102, 0.7) inset;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.07)), to(rgba(255, 255, 255, 0.1))), #d0d0d0;
  background: linear-gradient(rgba(0, 0, 0, 0.07), rgba(255, 255, 255, 0.1)), #d0d0d0;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}

.toggler-wrapper.style-6 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: calc(3px - 5px);
  top: calc(3px - 5px);
  -webkit-box-shadow: 0 0.1em 0.15em -0.05em rgba(255, 255, 255, 0.9) inset, 0 0.2em 0.2em -0.12em rgba(0, 0, 0, 0.5);
  box-shadow: 0 0.1em 0.15em -0.05em rgba(255, 255, 255, 0.9) inset, 0 0.2em 0.2em -0.12em rgba(0, 0, 0, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #f5f5f5), to(#eeeeee));
  background: linear-gradient(#f5f5f5 10%, #eeeeee);
}


/*Style 7*/

.toggler-wrapper.style-7 input[type="checkbox"]:checked+.toggler-slider {
  background-color: white;
}

.toggler-wrapper.style-7 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-color: #44cc66;
}

.toggler-wrapper.style-7 .toggler-slider {
  background-color: white;
  -webkit-box-shadow: 2px 4px 8px rgba(200, 200, 200, 0.5);
  box-shadow: 2px 4px 8px rgba(200, 200, 200, 0.5);
  border-radius: 5px;
}

.toggler-wrapper.style-7 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 5px;
  left: 3px;
  top: 3px;
  background-color: #e6e6e6;
}


/*Style 8*/

.toggler-wrapper.style-8 input[type="checkbox"]:checked+.toggler-slider {
  background-color: #d9d9d9;
}

.toggler-wrapper.style-8 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background: conic-gradient(#43A047, #255827);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.toggler-wrapper.style-8 .toggler-slider {
  background-color: #d9d9d9;
}

.toggler-wrapper.style-8 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background: conic-gradient(#E53935, #9f1815);
}


/*Style 9*/

.toggler-wrapper.style-9 input[type="checkbox"]:checked+.toggler-slider {
  background-color: transparent;
}

.toggler-wrapper.style-9 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-color: #44cc66;
}

.toggler-wrapper.style-9 .toggler-slider {
  background-color: transparent;
  border: 2px solid #b3b3b3;
}

.toggler-wrapper.style-9 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #b3b3b3;
}


/*Style 10*/

.toggler-wrapper.style-10 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-10 .toggler-slider {
  background-color: #ccc;
}

.toggler-wrapper.style-10 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/*Style 11*/

.toggler-wrapper.style-11 input[type="checkbox"]:checked+.toggler-slider:after {
  content: 'On';
}

.toggler-wrapper.style-11 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-11 .toggler-slider:after {
  content: 'Off';
  position: absolute;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 75%;
  text-transform: uppercase;
  opacity: 0.7;
}

.toggler-wrapper.style-11 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
}


/*Style 12*/

.toggler-wrapper.style-12 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-image: url(../img/lock-fill.svg);
}

.toggler-wrapper.style-12 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
  background-image: url(../img/lock-unlock-fill.svg);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}


/*Style 13*/

.toggler-wrapper.style-13 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-13 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  content: 'On';
}

.toggler-wrapper.style-13 .toggler-knob {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  left: 0;
  top: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(153, 153, 153, 0.75);
  box-shadow: 0 2px 6px rgba(153, 153, 153, 0.75);
}

.toggler-wrapper.style-13 .toggler-knob:after {
  content: 'Off';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 65%;
  text-transform: uppercase;
  opacity: 0.7;
}


/*Style 14*/

.toggler-wrapper.style-14 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 18.75px);
}

.toggler-wrapper.style-14 .toggler-knob {
  width: 12.5px;
  height: 12.5px;
  top: 50%;
  left: 6.25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
}


/*Style 15*/

.toggler-wrapper.style-15 {
  left: 30px;
}

.toggler-wrapper.style-15 input[type="checkbox"]:checked+.toggler-slider:before {
  opacity: 0.5;
}

.toggler-wrapper.style-15 input[type="checkbox"]:checked+.toggler-slider:after {
  opacity: 1;
}

.toggler-wrapper.style-15 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-15 .toggler-slider:before {
  content: 'Off';
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 75%;
  text-transform: uppercase;
}

.toggler-wrapper.style-15 .toggler-slider:after {
  content: 'On';
  position: absolute;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 75%;
  text-transform: uppercase;
  opacity: 0.5;
}

.toggler-wrapper.style-15 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
}


/*Style 16*/

.toggler-wrapper.style-16 input[type="checkbox"]:checked+.toggler-slider {
  background-color: white;
}

.toggler-wrapper.style-16 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-color: #44cc66;
}

.toggler-wrapper.style-16 .toggler-slider {
  background-color: white;
  -webkit-box-shadow: 2px 4px 8px rgba(200, 200, 200, 0.5);
  box-shadow: 2px 4px 8px rgba(200, 200, 200, 0.5);
  border-radius: 0;
}

.toggler-wrapper.style-16 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  left: 3px;
  top: 3px;
  background-color: #e6e6e6;
}


/*Style 17*/

.toggler-wrapper.style-17 input[type="checkbox"]:checked+.toggler-slider {
  background-color: white;
}

.toggler-wrapper.style-17 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-color: #44cc66;
}

.toggler-wrapper.style-17 .toggler-slider {
  background-color: transparent;
  border-radius: 0;
  border: 2px solid #b3b3b3;
}

.toggler-wrapper.style-17 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  left: 3px;
  top: 3px;
  background-color: #b3b3b3;
}


/*Style 18*/

.toggler-wrapper.style-18 input[type="checkbox"]:checked+.toggler-slider {
  background-color: #44cc66;
}

.toggler-wrapper.style-18 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-18 .toggler-slider {
  -webkit-box-shadow: 2px 4px 8px rgba(200, 200, 200, 0.5);
  box-shadow: 2px 4px 8px rgba(200, 200, 200, 0.5);
  border-radius: 0;
}

.toggler-wrapper.style-18 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  left: 3px;
  top: 3px;
  background-color: white;
}


/*Style 19*/

.toggler-wrapper.style-19 input[type="checkbox"]:checked+.toggler-slider {
  background-color: white;
  border-color: #44cc66;
}

.toggler-wrapper.style-19 input[type="checkbox"]:checked+.toggler-slider:after {
  content: 'Yes';
}

.toggler-wrapper.style-19 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-color: #44cc66;
}

.toggler-wrapper.style-19 .toggler-slider {
  background-color: transparent;
  border-radius: 0;
  border: 2px solid #b3b3b3;
}

.toggler-wrapper.style-19 .toggler-slider:after {
  content: 'No';
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 75%;
  text-transform: uppercase;
  opacity: 0.7;
}

.toggler-wrapper.style-19 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  left: 3px;
  top: 3px;
  background-color: #b3b3b3;
}


/*Style 20*/

.toggler-wrapper.style-20 {
  width: 81px;
  text-align: center;
}

.toggler-wrapper.style-20 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  background-image: url(../img/check-fill.svg);
}

.toggler-wrapper.style-20 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:before {
  opacity: 0.4;
}

.toggler-wrapper.style-20 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  opacity: 1;
}

.toggler-wrapper.style-20 .toggler-slider {
  background-color: #eb4f37;
}

.toggler-wrapper.style-20 .toggler-knob {
  position: relative;
  height: 100%;
  background-image: url(../img/close-fill.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  display: inline-block;
  left: -2px;
}

.toggler-wrapper.style-20 .toggler-knob:before {
  content: 'No';
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 75%;
  text-transform: uppercase;
  color: white;
}

.toggler-wrapper.style-20 .toggler-knob:after {
  content: 'Yes';
  position: absolute;
  top: 50%;
  right: -23px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 75%;
  text-transform: uppercase;
  color: white;
  opacity: 0.4;
}


/*Style 21*/

.toggler-wrapper.style-21 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-image: url(../img/shut-down-line-on.svg);
}

.toggler-wrapper.style-21 .toggler-slider {
  background-color: #eb4f37;
}

.toggler-wrapper.style-21 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
  background-image: url(../img/shut-down-line-off.svg);
  background-repeat: no-repeat;
  background-position: center;
}


/*Style 22*/

.toggler-wrapper.style-22 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.toggler-wrapper.style-22 .toggler-slider {
  background-color: #eb4f37;
}

.toggler-wrapper.style-22 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: white;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}


/*Style 23*/

.toggler-wrapper.style-23 input[type="checkbox"]:checked+.toggler-slider {
  background-color: transparent;
  border-color: #44cc66;
}

.toggler-wrapper.style-23 input[type="checkbox"]:checked+.toggler-slider:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 0.7;
}

.toggler-wrapper.style-23 input[type="checkbox"]:checked+.toggler-slider:after {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.toggler-wrapper.style-23 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-color: #44cc66;
}

.toggler-wrapper.style-23 .toggler-slider {
  background-color: transparent;
  border: 2px solid #eb4f37;
}

.toggler-wrapper.style-23 .toggler-slider:before {
  content: 'Accept';
  position: absolute;
  top: 8px;
  right: -60px;
  font-size: 75%;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.toggler-wrapper.style-23 .toggler-slider:after {
  content: 'Decline';
  position: absolute;
  top: 8px;
  right: -60px;
  font-size: 75%;
  text-transform: uppercase;
  opacity: 0.7;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.toggler-wrapper.style-23 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #eb4f37;
}


/*Style 24*/

.toggler-wrapper.style-24 {
  width: 90px;
}

.toggler-wrapper.style-24 input[type="checkbox"]:checked+.toggler-slider {
  border-color: #44cc66;
}

.toggler-wrapper.style-24 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 37.5px);
}

.toggler-wrapper.style-24 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  content: 'On';
}

.toggler-wrapper.style-24 .toggler-slider {
  border-radius: 0;
  background-color: #eb4f37;
  border: 2px solid #eb4f37;
}

.toggler-wrapper.style-24 .toggler-knob {
  width: 37.5px;
  height: 25px;
  border-radius: 0;
  left: 0;
  top: 0;
  background-color: #fff;
}

.toggler-wrapper.style-24 .toggler-knob:after {
  content: 'Off';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 75%;
  text-transform: uppercase;
  opacity: 0.7;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}


/*Style 25*/

.toggler-wrapper.style-25 input[type="checkbox"]:checked+.toggler-slider {
  background-color: white;
}

.toggler-wrapper.style-25 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-color: #44cc66;
  background-image: url(../img/check-fill.svg);
}

.toggler-wrapper.style-25 .toggler-slider {
  background-color: white;
  -webkit-box-shadow: 2px 4px 8px rgba(200, 200, 200, 0.5);
  box-shadow: 2px 4px 8px rgba(200, 200, 200, 0.5);
  border-radius: 5px;
}

.toggler-wrapper.style-25 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 5px;
  left: 3px;
  top: 3px;
  background-color: #ccc;
  background-image: url(../img/close-fill.svg);
  background-repeat: no-repeat;
  background-position: center;
}


/*Style 26*/

.toggler-wrapper.style-26 input[type="checkbox"]:checked+.toggler-slider {
  background-color: #d9d9d9;
}

.toggler-wrapper.style-26 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  left: calc(100% - 19px - 3px);
  background-color: #44cc66;
}

.toggler-wrapper.style-26 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  content: '1';
}

.toggler-wrapper.style-26 .toggler-slider {
  background-color: #d9d9d9;
}

.toggler-wrapper.style-26 .toggler-knob {
  width: calc(25px - 6px);
  height: calc(25px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #eb4f37;
}

.toggler-wrapper.style-26 .toggler-knob:after {
  content: '0';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 75%;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: white;
}


/*Style 27*/

.toggler-wrapper.style-27 {
  width: 54px;
  height: 30px;
}

.toggler-wrapper.style-27 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:before {
  left: -100%;
}

.toggler-wrapper.style-27 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  right: 3px;
}

.toggler-wrapper.style-27 .toggler-knob {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.toggler-wrapper.style-27 .toggler-knob:before {
  content: 'No';
  position: absolute;
  width: calc(30px - 6px);
  height: calc(30px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 75%;
}

.toggler-wrapper.style-27 .toggler-knob:after {
  content: 'Yes';
  position: absolute;
  width: calc(30px - 6px);
  height: calc(30px - 6px);
  border-radius: 50%;
  right: -100%;
  top: 3px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 75%;
}


/*Style 28*/

.toggler-wrapper.style-28 {
  width: 54px;
  height: 30px;
}

.toggler-wrapper.style-28 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:before {
  top: -100%;
}

.toggler-wrapper.style-28 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  top: 3px;
}

.toggler-wrapper.style-28 .toggler-knob {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.toggler-wrapper.style-28 .toggler-knob:before {
  content: 'No';
  position: absolute;
  width: calc(30px - 6px);
  height: calc(30px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 75%;
}

.toggler-wrapper.style-28 .toggler-knob:after {
  content: 'Yes';
  position: absolute;
  width: calc(30px - 6px);
  height: calc(30px - 6px);
  border-radius: 50%;
  right: 3px;
  top: -100%;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 75%;
}


/*Style 29*/

.toggler-wrapper.style-29 {
  width: 54px;
  height: 30px;
}

.toggler-wrapper.style-29 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:before {
  top: 100%;
}

.toggler-wrapper.style-29 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  top: 3px;
}

.toggler-wrapper.style-29 .toggler-knob {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.toggler-wrapper.style-29 .toggler-knob:before {
  content: 'No';
  position: absolute;
  width: calc(30px - 6px);
  height: calc(30px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 75%;
}

.toggler-wrapper.style-29 .toggler-knob:after {
  content: 'Yes';
  position: absolute;
  width: calc(30px - 6px);
  height: calc(30px - 6px);
  border-radius: 50%;
  right: 3px;
  top: 100%;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 75%;
}


/*Style 30*/

.toggler-wrapper.style-30 {
  width: 54px;
  height: 30px;
  -webkit-perspective: 100px;
  perspective: 100px;
}

.toggler-wrapper.style-30 input[type="checkbox"]:checked+.toggler-slider {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.toggler-wrapper.style-30 input[type="checkbox"]:checked+.toggler-slider .toggler-knob {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.toggler-wrapper.style-30 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:before {
  left: -100%;
}

.toggler-wrapper.style-30 input[type="checkbox"]:checked+.toggler-slider .toggler-knob:after {
  right: 3px;
}

.toggler-wrapper.style-30 .toggler-knob {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.toggler-wrapper.style-30 .toggler-knob:before {
  content: 'No';
  position: absolute;
  width: calc(30px - 6px);
  height: calc(30px - 6px);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 75%;
}

.toggler-wrapper.style-30 .toggler-knob:after {
  content: 'Yes';
  position: absolute;
  width: calc(30px - 6px);
  height: calc(30px - 6px);
  border-radius: 50%;
  right: -100%;
  top: 3px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 75%;
}

.buttons-wrapper>div {
  display: inline-block;
    position: relative;
  left: 32%;
  transform: translateX(-50%);
  background-color: #e8e8e8;
  padding: 20px;
  margin: 5px;
  width: 20%;
  border-radius: 8px;
  border: 1px solid rgba(200, 200, 200, 0.1);
  box-shadow: 2px 2px 7px rgba(80, 80, 80, 0.1);
}

.buttons-wrapper {
  margin: 5%;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

header {
  padding: 5px 10px 40px 10px;
  margin-bottom: 20px;
}

header h1 {
  font-size: 50px;
}

header p {
  color: #999;
}

header strong {
  margin-top: 10px;
  display: inline-block;
  color: #3bc7ea;
}

section.row {
  display: flex;
  margin-bottom: 4em;
  align-items: flex-end;
}

section.row h2 {
  font-size: 34px;
  margin-bottom: 5px;
  color: #ccc;
}

.badge {
  font-size: 75%;
  /*background-color: #f2eee0;*/
  display: inline-block;
  /*padding: 3px 8px;*/
  margin: 10px 0px;
  border-radius: 4px;
}

.helper .putin {
  margin-bottom: 6em;
}


/*Normalize*/


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */


/* Document
   ========================================================================== */


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}


/* Sections
   ========================================================================== */


/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}


/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}


/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}


/* Grouping content
   ========================================================================== */


/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  /* 1 */
  font-size: 1em;
  /* 2 */
}


/* Text-level semantics
   ========================================================================== */


/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}


/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}


/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */



/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  /* 1 */
  font-size: 1em;
  /* 2 */
}


/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}


/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}


/* Embedded content
   ========================================================================== */


/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}


/* Forms
   ========================================================================== */


/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}


/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}


/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}


/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}


/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}


/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}


/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}


/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}


/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}


/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}


/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}


/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}


/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}


/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}


/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}


/* Interactive
   ========================================================================== */


/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}


/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}


/* Misc
   ========================================================================== */


/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}


/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}


/*Utility*/


/* Basscss Margin */

.m0 {
  margin: 0;
}

.mt0 {
  margin-top: 0;
}

.mr0 {
  margin-right: 0;
}

.mb0 {
  margin-bottom: 0;
}

.ml0 {
  margin-left: 0;
}

.mx0 {
  margin-left: 0;
  margin-right: 0;
}

.my0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m1 {
  margin: var(--space-1);
}

.mt1 {
  margin-top: var(--space-1);
}

.mr1 {
  margin-right: var(--space-1);
}

.mb1 {
  margin-bottom: var(--space-1);
}

.ml1 {
  margin-left: var(--space-1);
}

.mx1 {
  margin-left: var(--space-1);
  margin-right: var(--space-1);
}

.my1 {
  margin-top: var(--space-1);
  margin-bottom: var(--space-1);
}

.m2 {
  margin: var(--space-2);
}

.mt2 {
  margin-top: var(--space-2);
}

.mr2 {
  margin-right: var(--space-2);
}

.mb2 {
  margin-bottom: var(--space-2);
}

.ml2 {
  margin-left: var(--space-2);
}

.mx2 {
  margin-left: var(--space-2);
  margin-right: var(--space-2);
}

.my2 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
}

.m3 {
  margin: var(--space-3);
}

.mt3 {
  margin-top: var(--space-3);
}

.mr3 {
  margin-right: var(--space-3);
}

.mb3 {
  margin-bottom: var(--space-3);
}

.ml3 {
  margin-left: var(--space-3);
}

.mx3 {
  margin-left: var(--space-3);
  margin-right: var(--space-3);
}

.my3 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}

.m4 {
  margin: var(--space-4);
}

.mt4 {
  margin-top: var(--space-4);
}

.mr4 {
  margin-right: var(--space-4);
}

.mb4 {
  margin-bottom: var(--space-4);
}

.ml4 {
  margin-left: var(--space-4);
}

.mx4 {
  margin-left: var(--space-4);
  margin-right: var(--space-4);
}

.my4 {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.mxn1 {
  margin-left: calc(var(--space-1) * -1);
  margin-right: calc(var(--space-1) * -1);
}

.mxn2 {
  margin-left: calc(var(--space-2) * -1);
  margin-right: calc(var(--space-2) * -1);
}

.mxn3 {
  margin-left: calc(var(--space-3) * -1);
  margin-right: calc(var(--space-3) * -1);
}

.mxn4 {
  margin-left: calc(var(--space-4) * -1);
  margin-right: calc(var(--space-4) * -1);
}

.m-auto {
  margin: auto;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

:root {
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 4rem;
}


/* Basscss Padding */

.p0 {
  padding: 0;
}

.pt0 {
  padding-top: 0;
}

.pr0 {
  padding-right: 0;
}

.pb0 {
  padding-bottom: 0;
}

.pl0 {
  padding-left: 0;
}

.px0 {
  padding-left: 0;
  padding-right: 0;
}

.py0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p1 {
  padding: var(--space-1);
}

.pt1 {
  padding-top: var(--space-1);
}

.pr1 {
  padding-right: var(--space-1);
}

.pb1 {
  padding-bottom: var(--space-1);
}

.pl1 {
  padding-left: var(--space-1);
}

.py1 {
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
}

.px1 {
  padding-left: var(--space-1);
  padding-right: var(--space-1);
}

.p2 {
  padding: var(--space-2);
}

.pt2 {
  padding-top: var(--space-2);
}

.pr2 {
  padding-right: var(--space-2);
}

.pb2 {
  padding-bottom: var(--space-2);
}

.pl2 {
  padding-left: var(--space-2);
}

.py2 {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.px2 {
  padding-left: var(--space-2);
  padding-right: var(--space-2);
}

.p3 {
  padding: var(--space-3);
}

.pt3 {
  padding-top: var(--space-3);
}

.pr3 {
  padding-right: var(--space-3);
}

.pb3 {
  padding-bottom: var(--space-3);
}

.pl3 {
  padding-left: var(--space-3);
}

.py3 {
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.px3 {
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}

.p4 {
  padding: var(--space-4);
}

.pt4 {
  padding-top: var(--space-4);
}

.pr4 {
  padding-right: var(--space-4);
}

.pb4 {
  padding-bottom: var(--space-4);
}

.pl4 {
  padding-left: var(--space-4);
}

.py4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.px4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

/* Full-screen modal overlay styles */
  .modal-carousel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 200vh;
    width:100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Styles for the modal content */
  .modal-carousel-content {
    background-color: #fff;
    padding: 20px;
    position: relative;
    height: 100%;
    overflow-y:hidden;
    justify-content: center;
    align-items: center;
  }

  /* Styles for the second carousel inside the modal */
  .carousel-slides-modal {
    top: 50%;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    max-height: 100vh;
    justify-content: center;
    align-items: center;
    overflow-y:hidden;
  }

  .carousel-slides-modal img {
    top: 50%;
    left: 0;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    cursor: pointer;
    overflow-y:hidden;
      display: flex;
  justify-content: center;
  align-items: center;
  }
  
  @media (max-width: 768px){
    .carousel-slides-modal img {
    top: 50%;
    height: 100vh;
    max-width:30000px;
    object-fit: cover;
    overflow:hidden;
  }
  
    .modal-carousel-content {
    height: 100vh;
    max-width:30000px;
    object-fit: cover;
    overflow:hidden;
  }
  }

  .modal-carousel-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
      background-color: rgba(000, 000, 000, 0.8);
  border: none;
  padding: 20px;
    color: #fff;
    z-index: 10000;
  }


/* Footer Styles */
.footer {
  color: #fff;
  padding: 20px;
  text-align: center;
  background-color: #132517;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item {
  margin: 0 10px;
}

@media (max-width: 768px){
.footer {
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom:10px;
}
}

.link-location, .link-phone, .link-email{
    color:#fff;
}

.link-location:hover, .link-phone:hover, .link-email:hover{
    color:#ffa;
}

.gochi-link:hover{
    color:#fffc5c;
}

.social-icons a:hover{
  background-color: #000;
  color:#fff;
}

.contact-item i {
  margin-right: 5px;
}

.rights-section {
  margin-bottom: 10px;
}

.rights-section a {
  color: #fff;
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  width:100%;
}

.social-icons a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #333;
  text-align: center;
  font-size:40px;
  line-height: 50px;
  margin: 0 5px;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color, color 0.3s ease;
}

/* FontAwesome Icons Styles */
.fa-solid,
.fa-phone,
.fa-envelope,
.fa-map-marker-alt {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.fa-facebook,
.fa-instagram {
  font-family: "Font Awesome 5 Brands";
}

/* Container for the other image */
.product-images-other {
  display: flex;
  flex-direction:row;
  max-width:60%;
  align-items: center;
  justify-content: space-between;
  overflow-X: scroll;
  margin:0;
  padding:0;
}

/* Styles for the other image */
.product-images-other img {
  height: auto;
  object-fit: contain;
  width: 50%;
  margin:0;
  padding:0;
  border-radius: 0%;
}

.center {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}
.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(45deg, #eb9be8, #a5e8f0);
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}
.wave:nth-child(2) {
  animation-delay: 0.1s;
}
.wave:nth-child(3) {
  animation-delay: 0.2s;
}
.wave:nth-child(4) {
  animation-delay: 0.3s;
}
.wave:nth-child(5) {
  animation-delay: 0.4s;
}
.wave:nth-child(6) {
  animation-delay: 0.5s;
}
.wave:nth-child(7) {
  animation-delay: 0.6s;
}
.wave:nth-child(8) {
  animation-delay: 0.7s;
}
.wave:nth-child(9) {
  animation-delay: 0.8s;
}
.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.main-container{
  display: none;
}

.cart-container {
  margin-top: 20px;
  font-weight: lighter;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index:999999999;
}

.popup-box {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.cart-container {
    max-width:80vw;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: lighter;
    
}

.cart-container h1 {
    text-align: left;
    font-size:3.5em;
  font-weight: lighter;
}

.cart-items {
    margin-top: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    flex-direction:row;
    justify-content:space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    padding-top: 20px;
}

.cart-item img {
    max-width: 140px;
    margin-right: 10px;
}

.cart-item-details {
    display: flex;
    align-items: center;
    flex-direction:row;
    justify-content:space-between;
    flex: 1;
    padding-bottom: 20px;
    padding-top: 20px;
}

.cart-item-price {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.cart-subtotal {
    text-align: right;
    padding-bottom: 20px;
    padding-top: 20px;
    font-weight: bold;
}

.checkout-container {
    text-align: center;
    margin-top: 20px;
}
.delete-container{
    display: flex;
    background:none;
    border:none;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction:row;
    width:10%;
    height:10%;
    margin-left: -1.5%;
    padding-bottom: 20px;
    padding-top: 20px;
}

.delete-btn{
    width:10%;
    height:10%;
    font-size:2em;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:none;
    border:none;
    transform: translateX(-50%);
}

.delete-btn:hover{
    color: #132517;
    cursor: pointer;
}

.quantity-cart{
    max-width:10%;
}

#checkout-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#checkout-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@media(max-width:768px){


.cart-container {
    max-width: 90vw; /* Adjust this as needed */
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: lighter;
}

.cart-container h1 {
    text-align: center;
    font-size: 2.5em; /* Adjust this as needed */
    margin-bottom: 15px;
  font-weight: lighter;
}

.cart-items {
    margin-top: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    flex-direction: column; /* Adjust for mobile */
    padding: 30px;
    border-bottom: 1px solid #ccc;
}

.item-price {
    padding-bottom: 30px;
    padding-top: 30px;
}

.cart-item img {
    max-width: 100%; /* Make images responsive */
    margin-bottom: 10px; /* Add spacing */
}

.cart-item-details {
    display: flex;
    align-items: center;
    flex-direction: column; /* Adjust for mobile */
    flex: 1;
    text-align: center; /* Center text */
}

.cart-item-price {
    font-weight: bold;
    margin-top: 5px;
}

.cart-subtotal {
    text-align: right;
    margin-top: 20px;
    font-weight: bold;
}

.checkout-container {
    text-align: center;
    margin-top: 20px;
}

.delete-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Take full width */
    margin-top: 10px; /* Add spacing */
}

.delete-btn {
    font-size: 1.5em;
    background: none;
    border: none;
}

.delete-btn:hover {
    color: #132517;
    cursor: pointer;
}

.quantity-cart {
    max-width: 100%; /* Make quantity input responsive */
    text-align: center; /* Center text */
}

#checkout-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%; /* Take full width */
    margin-top: 20px; /* Add spacing */
}

#checkout-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.delete-btn{
    padding-bottom: 10px;
    font-size:4em;
}

}

/* profile page styles */

.main-content {
  display: none;
  margin: 200px 0 50px 0;
  min-height:50vh;
}

/* Style for the left menu */
.left-menu {
  width:30%;
  background-color: #132517;
  padding: 20px;
}

.left-menu h2 {
  margin-bottom: 10px;
  font-size: 18px;
  color:#fff;
}

.left-menu ul {
  list-style: none;
}

.left-menu ul li {
  margin: 10px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.left-menu ul li:hover {
  color: #132517;
}

.left-menu ul ul {
  margin-top: 5px;
  padding-left: 20px;
  display: none;
}

.left-menu ul ul li {
  margin: 5px 0;
  cursor: pointer;
  color: #132517;
  transition: color 0.3s;
}

.left-menu ul ul li:hover {
  color: #ffa;
}

.page-content {
  flex: 1;
  padding: 20px;
}

/* banner upload */

/* Style for image upload */
.image-upload-container {
  width: 100%;
  max-width: 400px;
  margin: auto;
  text-align: center;
  border: 2px dashed #ccc;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

#banner-preview {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

#upload-button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  width:100%;
}

#upload-button:hover {
  background-color: #0056b3;
}
/* manager styles */

/* Style for the products list */
.products-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list-product {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.products-section {
  display: flex;
  flex-direction: column;
}

.product-list-product h3 {
  margin: 0;
  font-size: 18px;
}

.product-list-info {
  display: flex;
  flex-direction: column;
}

.product-list-product p {
  margin: 5px 0;
}

.variations {
  margin-top: 10px;
}

.variation {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 10px;
}

.edit-button {
  margin-top: 20px;
}

.edit-button a {
  color: #007bff;
  text-decoration: none;
}

/* Style for banner section */
.banner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-upload-container {
  text-align: center;
}

#banner-preview {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

#upload-button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Style for color theme section */
.color-theme-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#color-picker {
  margin-top: 10px;
}

/* Style for reset section */
.reset-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-preview-container {
  margin-top: 10px;
}

.image-preview {
  max-width: 100%;
  max-height: 200px;
  margin-top: 10px;
}

@media (max-width: 768px){
    
.product-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
  flex-wrap: wrap;
  margin:5%;
  width:100%;
  max-width:100%;
  margin-left:0%;
}

.all-product-images{
    width:100%;
    max-width:98%;
    margin-right:0;
    margin-left:2%;
}

.product-images-carousel{
    width:100%;
    max-width:100%;
}

.product-details {
  flex: 1;
  max-width: 90%;
  position: sticky;
  top: 0;
  padding-left: 20px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scroll-behavior: smooth;
  transition: max-height 0.3s ease;
  vertical-align: top; 
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
  text-align:center;
  flex-wrap: wrap;
  margin-right:5%;
}

.quantity-selector{
    width:100%;
    max-width:90%;
}

.quantity-input{
    width:100%;
    max-width:90%;
}

.quantity-button{
    width:100%;
    max-width:90%;
}

.product-images-other-destroy {
    display: none;
}

.product-details-shift {
  padding-top:250px;
}

.cart-subtotal {
    text-align:left;
}

.cart-item-total{
    margin-left:-10px;
}

.delete-btn{
    margin-left:-0px;
}
}

/* Style the table for desktop view */
table {
  width: 10%;
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

/* Make the table responsive using media queries */
@media screen and (max-width: 768px) {
  table {
    display: block;
  }

  th, td {
    width: 100%;
    display: block;
  }

  th {
    text-align: left;
  }
}

