@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap");
body {
  font-family: "Jost", sans-serif;
}

.main-wrapper .btn-primary {
  background-color: #7367f0;
  border-color: #7367f0;
  -webkit-box-shadow: 0 8px 15px -8px rgba(115, 103, 240, 0.4);
          box-shadow: 0 8px 15px -8px rgba(115, 103, 240, 0.4);
}

.main-wrapper .btn-primary:hover {
  -webkit-box-shadow: 0 8px 25px -8px #7367f0;
          box-shadow: 0 8px 25px -8px #7367f0;
}

.main-wrapper header {
  margin-bottom: 50px;
}

.main-wrapper header .desc {
  font-size: 20px;
}

.main-wrapper .main-content .headline {
  margin: 0;
}

.main-wrapper .main-content .border-layer {
  width: 100%;
  height: 3px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background-color: #7367f0;
  /*margin: clamp(1rem, 5vw, 2.5rem) 0;*/
  margin-top: 30px;
    margin-bottom: 10px;
}
.main-wrapper .main-content .border-layer-2 {
    margin-bottom: 30px;
}

.main-wrapper .main-content .single-item {
  position: relative;
}

.main-wrapper .main-content .single-item .title {
  font-weight: bold;
  font-size: 18px;
}

.main-wrapper .main-content .single-item p.info {
  font-size: 16px;
  margin: 0;
}

.main-wrapper .main-content .single-item p.price {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
}

.tippy-box {
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding-top: 4px;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown button.active svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.custom-dropdown button svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-dropdown .menu-list {
  position: absolute;
  top: 60px;
  background-color: white;
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 150px;
  border-radius: 5px;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-dropdown .menu-list.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.custom-dropdown .menu-list li a {
  display: block;
  padding: 10px;
  color: #777;
  text-align: left;
  text-decoration: none;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-dropdown .menu-list li a:hover {
  color: #7367f0;
  background-color: rgba(115, 103, 240, 0.1);
}

.new-item-badge {
  position: absolute;
  top: -12px;
  right: -9px;
  color: white;
  z-index: 1;
  width: 80px;
}

.new-item-badge img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .main-wrapper .main-content .single-item {
    padding: 0 50px;
  }
}
/*# sourceMappingURL=style.css.map */