::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: hsl(26deg, 100%, 55%);
  border-radius: 10px;
  border: 1px solid #EDE1D7;
}
::-webkit-scrollbar-thumb:hover {
  background: #db6104;
}

@supports (scrollbar-color: red blue) {
  * {
    scrollbar-color: #EDE1D7 hsl(26deg, 100%, 55%);
    scrollbar-width: thin;
  }
}
* {
  font-family: "Kumbh Sans", sans-serif;
}

body, .cart-parent, .cart_content {
  scroll-behavior: smooth;
}

.container {
  padding: 0;
}
@media screen and (min-width: 576px) and (max-width: 760px) {
  .container {
    max-width: 640px;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: hsl(0deg, 0%, 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

#load-logo > path:nth-child(2) {
  stroke-dasharray: 219.5168151855;
  stroke-dashoffset: 219.5168151855;
  animation: loading 2s ease-in infinite forwards;
}

#load-logo > path:nth-child(3) {
  stroke-dasharray: 268.6590881348;
  stroke-dashoffset: 268.6590881348;
  animation: loading 2s 300ms ease-in infinite forwards;
}

#load-logo > path:nth-child(4) {
  stroke-dasharray: 206.2070159912;
  stroke-dashoffset: 206.2070159912;
  animation: loading 2s 600ms ease-in infinite forwards;
}

#load-logo > path:nth-child(5) {
  stroke-dasharray: 217.9075927734;
  stroke-dashoffset: 217.9075927734;
  animation: loading 2s 900ms ease-in infinite forwards;
}

#load-logo > path:nth-child(6) {
  stroke-dasharray: 227.712097168;
  stroke-dashoffset: 227.712097168;
  animation: loading 2s 1200ms ease-in infinite forwards;
}

#load-logo > path:nth-child(7) {
  stroke-dasharray: 206.2099914551;
  stroke-dashoffset: 206.2099914551;
  animation: loading 2s 1500ms ease-in infinite forwards;
}

#load-logo > path:nth-child(8) {
  stroke-dasharray: 244.0299072266;
  stroke-dashoffset: 244.0299072266;
  animation: loading 2s 1800ms ease-in infinite forwards;
}

#load-logo > path:nth-child(9) {
  stroke-dasharray: 219.5178070068;
  stroke-dashoffset: 219.5178070068;
  animation: loading 2s 2100ms ease-in infinite forwards;
}

.loader.loaded {
  animation: fadeOut 1s forwards;
}

header {
  position: relative;
  padding: 2em 0;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 800px) {
  header {
    padding: 1.5em 0;
  }
}
@media screen and (max-width: 650px) {
  header {
    border-bottom: none;
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.hidden {
  visibility: hidden;
}

header nav {
  display: flex;
}
@media screen and (max-width: 650px) {
  header nav {
    justify-content: space-between;
    width: 90%;
  }
}

div.hamburger {
  display: none;
}
@media screen and (max-width: 650px) {
  div.hamburger {
    display: inline-block;
    cursor: pointer;
    margin-top: 2px;
    width: 5%;
  }
}
div.hamburger img {
  width: 100%;
}

div.logo {
  line-height: 2.5em;
}
@media screen and (max-width: 800px) {
  div.logo {
    width: 17%;
  }
}
@media screen and (max-width: 650px) {
  div.logo {
    width: 40%;
  }
}
div.logo img {
  width: 100%;
}

div.navLinks {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 650px) {
  div.navLinks {
    display: none;
  }
}
div.navLinks ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  div.navLinks ul {
    margin: 7px;
  }
}
div.navLinks ul li {
  list-style-type: none;
  padding: 0 5%;
}
div.navLinks ul li a {
  position: relative;
  text-decoration: none;
  color: hsl(220deg, 14%, 75%);
  font-weight: 500;
  transition: color 0.3s, font-weight 0.2s;
}
@media screen and (max-width: 800px) {
  div.navLinks ul li a {
    font-size: 0.85rem;
  }
}
div.navLinks ul li a:hover {
  font-weight: 900;
  color: rgba(0, 0, 0, 0.7);
}
div.navLinks ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  transition: height 0.3s ease-in-out;
  background: hsl(26deg, 100%, 55%);
  top: 4em;
}
@media screen and (max-width: 800px) {
  div.navLinks ul li a::before {
    top: 3.4em;
  }
}
div.navLinks ul li a:hover::before {
  height: 4px;
}

.mobile-menu-parent {
  display: none;
}
@media screen and (max-width: 650px) {
  .mobile-menu-parent {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 15;
    width: 100%;
    height: 100vh;
  }
}

.mobile-menu {
  background-color: hsl(0deg, 0%, 100%);
  width: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.slide-in {
  animation: slide-in 500ms 100ms ease-in-out forwards;
}

.slide-out {
  animation: slide-out 500ms ease-in-out forwards;
}

.mobileNavLinks {
  margin-block: 2em;
}
.mobileNavLinks ul {
  list-style-type: none;
  padding-left: 0;
}
.mobileNavLinks li {
  margin-block: 1em;
}
.mobileNavLinks a {
  text-decoration: none;
  text-transform: capitalize;
  color: hsl(220deg, 13%, 13%);
  font-weight: bolder;
  transition: color 200ms;
  padding-block: 0.5em;
  position: relative;
}
.mobileNavLinks a::before {
  content: "";
  position: absolute;
  height: 6%;
  bottom: 0;
  background-color: hsl(26deg, 100%, 55%);
  transition: all 400ms;
  left: 50%;
  right: 50%;
}
.mobileNavLinks a:hover::before {
  left: 0;
  right: 0;
}

.mobileActive::before {
  width: 100% !important;
  left: 0 !important;
}

div.cartProfile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 800px) {
  div.cartProfile {
    width: 13%;
  }
}
@media screen and (max-width: 650px) {
  div.cartProfile {
    width: 25%;
  }
}

div.cart {
  width: 20%;
  position: relative;
  cursor: pointer;
}
div.cart svg {
  fill: #69707D;
  cursor: pointer;
  transition: fill 0.2s ease-in;
}
div.cart svg:hover {
  fill: #000;
}

.empty-cart {
  opacity: 0;
  position: absolute;
  background: hsl(26deg, 100%, 55%);
  color: hsl(0deg, 0%, 100%);
  top: -0.5em;
  right: 0.03em;
  padding: 0.7em 0;
  line-height: 0;
  width: 50%;
  border-radius: 30%;
  font-size: 0.7rem;
  text-align: center;
  transition: opacity 400ms linear;
}

.cart-number {
  position: absolute;
  background: hsl(26deg, 100%, 55%);
  color: hsl(0deg, 0%, 100%);
  top: -0.3em;
  right: 0.03em;
  padding: 0.7em 0;
  line-height: 0;
  width: 55%;
  border-radius: 30%;
  font-size: 0.7rem;
  text-align: center;
  opacity: 0;
  transition: all 400ms linear;
}
@media screen and (max-width: 800px) {
  .cart-number {
    top: -0.3em;
    right: -1em;
    width: 80%;
  }
}

div.profile {
  width: 40%;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: border 0.3s linear;
  cursor: pointer;
}
@media screen and (max-width: 650px) {
  div.profile {
    width: 42%;
  }
}
div.profile:hover {
  border: 2px solid hsl(26deg, 100%, 55%);
}
div.profile img {
  width: 100%;
  transition: width 0.1s ease-in;
}
div.profile img:hover {
  width: 99%;
}

.back-to-top {
  position: fixed;
  right: 3%;
  bottom: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4%;
  height: 8%;
  transition: transform 200ms linear;
  transform: translateX(350px);
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .back-to-top {
    right: 2%;
  }
}
@media screen and (max-width: 650px) {
  .back-to-top {
    width: 8%;
    right: 2%;
  }
}
.back-to-top:hover svg, .back-to-top:active svg {
  stroke: #eee;
}
.back-to-top:hover #svg-fill {
  fill: #ff7d1a;
}
.back-to-top svg {
  stroke: #ff7d1a;
  transition: stroke 0.2s;
  animation: bounce 0.9s infinite ease-out;
  border-radius: 3px;
}

.active {
  font-weight: 900 !important;
  color: rgba(0, 0, 0, 0.7) !important;
}

#svg-fill {
  fill: transparent;
  transition: fill 0.2s;
}

.height {
  height: 200%;
}
@media screen and (max-width: 650px) {
  .height {
    height: 500%;
  }
}

.cart-parent {
  width: 30%;
  background: #fff;
  position: absolute;
  top: 90%;
  right: -3%;
  z-index: -10;
  box-shadow: 0 11px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .cart-parent {
    width: 35%;
    right: -2vw;
  }
}
@media screen and (max-width: 800px) {
  .cart-parent {
    width: 40%;
  }
}
@media screen and (max-width: 650px) {
  .cart-parent {
    width: 95%;
    right: 0;
    top: 110%;
    left: 2.5%;
  }
}
.cart-parent p.cart-text {
  text-transform: capitalize;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  padding: 0.5em 1em 1em;
  font-weight: 900;
}
@media screen and (max-width: 800px) {
  .cart-parent p.cart-text {
    font-size: 0.9rem;
  }
}
.cart-parent p.empty-cart-text {
  width: 70%;
  margin: 20% auto;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
}
@media screen and (max-width: 800px) {
  .cart-parent p.empty-cart-text {
    font-size: 0.8rem;
  }
}

.close-cart {
  animation: scale-out 400ms ease-in-out;
  transform-origin: top right;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}

.open-cart {
  animation: scale-in 400ms ease-in-out;
  transform-origin: top right;
  z-index: 10;
}

.cart-content-checkout-btn {
  display: none;
  padding: 0 0 0.5em 0;
}

.cart_content {
  max-height: 250px;
  overflow-y: scroll;
}

.cart-product {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  align-items: center;
}

.cart-product-image {
  width: 14%;
  overflow: hidden;
  border-radius: 8px;
  height: 48px;
}
@media screen and (max-width: 1200px) {
  .cart-product-image {
    width: 15%;
    height: 47px;
  }
}
@media screen and (max-width: 800px) {
  .cart-product-image {
    width: 13%;
    border-radius: 5px;
    height: 35px;
  }
}
@media screen and (max-width: 650px) {
  .cart-product-image {
    width: 13%;
    height: 48px;
  }
}
.cart-product-image img {
  width: 100%;
  height: 100%;
}

.cart-product-details {
  width: 70%;
}
.cart-product-details p {
  padding: 0;
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: 0;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .cart-product-details p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 650px) {
  .cart-product-details p {
    font-size: 0.9rem;
  }
}
.cart-product-details span {
  font-size: 0.8rem;
}
@media screen and (max-width: 800px) {
  .cart-product-details span {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 650px) {
  .cart-product-details span {
    font-size: 0.8rem;
  }
}

.reviewed-price {
  font-weight: 900;
  font-size: 1.1rem;
}

.delete-btn {
  width: 5%;
  cursor: pointer;
}
@media screen and (max-width: 650px) {
  .delete-btn {
    width: 4%;
  }
}
.delete-btn img {
  width: 100%;
}

.checkout-btn {
  width: 90%;
  margin: 0.5em auto;
}
@media screen and (max-width: 800px) {
  .checkout-btn {
    width: 95%;
  }
}
.checkout-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsl(26deg, 100%, 55%);
  border: none;
  padding: 1em 2em;
  width: 100%;
  letter-spacing: 0.05em;
  color: hsl(0deg, 0%, 100%);
  font-weight: 800;
  border-radius: 10px;
  transition: all 0.2s linear;
}
@media screen and (max-width: 800px) {
  .checkout-btn button {
    padding: 1em 1.3em;
    font-size: 0.8rem;
    justify-content: space-around;
  }
}
@media screen and (max-width: 650px) {
  .checkout-btn button {
    padding: 1em 10em;
  }
}
@media screen and (max-width: 400px) {
  .checkout-btn button {
    padding: 1em 7.5em;
  }
}
@media screen and (max-width: 325px) {
  .checkout-btn button {
    padding: 1em 5.5em;
  }
}
.checkout-btn button:hover {
  opacity: 0.6;
}
.checkout-btn button svg {
  width: 23%;
  fill: hsl(0deg, 0%, 100%);
}
@media screen and (max-width: 650px) {
  .checkout-btn button svg {
    width: 30%;
  }
}
@media screen and (max-width: 325px) {
  .checkout-btn button svg {
    width: 15%;
  }
}

.button {
  position: relative;
  overflow: hidden;
}

.button span {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  animation: animate 1s linear infinite;
  z-index: -999;
}

.added {
  position: fixed;
  background: green;
  color: hsl(0deg, 0%, 100%);
  width: 30%;
  left: 40%;
  bottom: 7%;
  z-index: 1;
  text-align: center;
  padding: 0.5em;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 350ms;
}
@media screen and (max-width: 650px) {
  .added {
    width: 50%;
    left: 25%;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes blurred-in {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes scale-in {
  0% {
    opacity: 0;
    transform: rotateX(60deg) scale(2);
  }
  100% {
    transform: rotateX(0deg) scale(1);
    opacity: 1;
  }
}
@keyframes scale-out {
  0% {
    transform: rotateX(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: rotateX(60deg) scale(2);
    filter: blur(10px);
  }
}
@keyframes slide-in {
  from {
    width: 0;
    padding: 0;
  }
  to {
    width: 70%;
    padding: 1em;
  }
}
@keyframes slide-out {
  to {
    width: 0;
    padding: 0;
  }
  from {
    width: 70%;
    padding: 1em;
  }
}
@keyframes transitionIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loading {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animate {
  from {
    width: 0;
    height: 0;
    opacity: 0.4;
  }
  to {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}
div.product-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(100%, auto);
  grid-gap: 5em;
  margin: 5em;
}
@media screen and (max-width: 1200px) {
  div.product-info {
    margin: 5em 2em;
    width: 90%;
  }
}
@media screen and (max-width: 650px) {
  div.product-info {
    margin: 0;
    width: 100%;
    grid: none;
    grid-gap: 0;
  }
}

@media screen and (max-width: 650px) {
  div.product-image {
    display: none;
  }
}

div.main-image {
  width: 95%;
  border-radius: 5%;
  overflow: hidden;
  cursor: pointer;
}
div.main-image img {
  width: 100%;
  object-fit: cover;
  height: 500px;
}
@media screen and (max-width: 1200px) {
  div.main-image img {
    height: 328px;
  }
}
@media screen and (max-width: 800px) {
  div.main-image img {
    height: 270px;
  }
}

div.thumbnail {
  display: flex;
  margin: 2em auto;
}
div.thumbnail span {
  width: 20%;
  height: 108px;
  border-radius: 15%;
  overflow: hidden;
  margin: 0px 2.5%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  div.thumbnail span {
    height: 78px;
  }
}
@media screen and (max-width: 800px) {
  div.thumbnail span {
    height: 57px;
  }
}
div.thumbnail span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transition: border 100ms ease-out, background 200ms ease-out;
}
div.thumbnail span:hover::before {
  content: "";
  position: absolute;
  border-radius: 15%;
  background: #fff;
  opacity: 0.7;
}
div.thumbnail span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div.thumbnail > span:nth-child(1) {
  margin-left: 0;
}

div.thumbnail > span:nth-child(4) {
  margin-right: 0;
}

div.product-details {
  padding: 5em 2em;
}
@media screen and (max-width: 1200px) {
  div.product-details {
    padding: 2em 0;
  }
}
@media screen and (max-width: 800px) {
  div.product-details {
    padding: 1em 0;
  }
}
@media screen and (max-width: 650px) {
  div.product-details {
    padding: 1em;
    position: relative;
  }
}
div.product-details small {
  text-transform: uppercase;
  font-weight: 900;
  color: hsl(26deg, 100%, 55%);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 800px) {
  div.product-details small {
    font-size: 0.6rem;
  }
}
div.product-details h2 {
  width: 100%;
  font-weight: 900;
  font-size: 2.5rem;
  margin: 0.5em 0;
}
@media screen and (max-width: 800px) {
  div.product-details h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
}
@media screen and (max-width: 650px) {
  div.product-details h2 {
    width: 90%;
    font-size: 1.8rem;
  }
}
div.product-details .product-details-text {
  margin: 2em 0;
  width: 100%;
  max-width: 90%;
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(220deg, 7%, 56%);
}
@media screen and (max-width: 800px) {
  div.product-details .product-details-text {
    font-size: 0.6rem;
    max-width: 95%;
  }
}
@media screen and (max-width: 650px) {
  div.product-details .product-details-text {
    font-size: 0.8rem;
    margin: 1.5em 0;
  }
}
div.product-details span {
  display: flex;
  width: 30%;
  justify-content: space-between;
}
div.product-details span p:nth-child(1) {
  margin: 0;
  font-size: 1.5rem;
  color: #000;
  font-weight: 900;
}
@media screen and (max-width: 800px) {
  div.product-details span p:nth-child(1) {
    font-size: 1.2rem;
  }
}
div.product-details span p:nth-child(2) {
  margin: 0 1em;
  line-height: 2;
  background-color: hsl(25deg, 100%, 94%);
  color: hsl(26deg, 100%, 55%);
  font-weight: 900;
  padding: 0 0.5em;
  border-radius: 10%;
}
div.product-details p:nth-child(5) {
  margin: 0.2em 0;
  font-weight: 900;
  text-decoration: line-through;
  color: hsl(220deg, 14%, 75%);
}
@media screen and (max-width: 800px) {
  div.product-details p:nth-child(5) {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 650px) {
  div.product-details p:nth-child(5) {
    display: inline-block;
    position: absolute;
    right: 6%;
    top: 52%;
  }
}
@media screen and (max-width: 400px) {
  div.product-details p:nth-child(5) {
    top: 56%;
  }
}
@media screen and (max-width: 325px) {
  div.product-details p:nth-child(5) {
    top: 54%;
  }
}

.add-to-cart {
  display: flex;
  margin: 2em 0;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .add-to-cart {
    margin: 1em 0;
  }
}
@media screen and (max-width: 650px) {
  .add-to-cart {
    flex-direction: column;
  }
}

div.number-of-product {
  display: flex;
  justify-content: space-between;
  padding: 0.8em 1em;
  width: 40%;
  border-radius: 10px;
  background-color: hsl(223deg, 64%, 98%);
}
@media screen and (max-width: 800px) {
  div.number-of-product {
    height: 45px;
  }
}
@media screen and (max-width: 650px) {
  div.number-of-product {
    width: 100%;
    margin: 0.5em 0;
  }
}
div.number-of-product p {
  margin: 0;
  font-weight: 900;
  font-size: 1.3rem;
}
@media screen and (max-width: 800px) {
  div.number-of-product p {
    font-size: 1.1rem;
    line-height: 0.9;
  }
}
@media screen and (max-width: 650px) {
  div.number-of-product p {
    font-size: 1.5rem;
    line-height: 0.5;
  }
}

div.number-of-product > p:nth-child(1), div.number-of-product > p:nth-child(3) {
  color: hsl(26deg, 100%, 55%);
  cursor: pointer;
  transition: all 0.2s linear;
}

div.number-of-product > p:nth-child(1) {
  opacity: 0.4;
}

div.number-of-product > p:nth-child(1):hover, div.number-of-product > p:nth-child(3):hover {
  opacity: 0.8;
}

@media screen and (max-width: 650px) {
  div.number-of-product > p:nth-child(2) {
    line-height: 0.9;
  }
}

div.add-to-cart-btn {
  width: 55%;
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 400ms;
}
@media screen and (max-width: 800px) {
  div.add-to-cart-btn {
    width: 60%;
  }
}
@media screen and (max-width: 650px) {
  div.add-to-cart-btn {
    width: 100%;
  }
}
div.add-to-cart-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsl(26deg, 100%, 55%);
  border: none;
  padding: 1em 2em;
  width: 100%;
  letter-spacing: 0.05em;
  color: hsl(0deg, 0%, 100%);
  font-weight: 800;
  border-radius: 10px;
  transition: all 0.2s linear;
}
@media screen and (max-width: 800px) {
  div.add-to-cart-btn button {
    padding: 1em 1.3em;
    font-size: 0.8rem;
    justify-content: space-around;
  }
}
@media screen and (max-width: 650px) {
  div.add-to-cart-btn button {
    padding: 1em 10em;
  }
}
@media screen and (max-width: 400px) {
  div.add-to-cart-btn button {
    padding: 1em 7.5em;
  }
}
@media screen and (max-width: 325px) {
  div.add-to-cart-btn button {
    padding: 1em 5.5em;
  }
}
div.add-to-cart-btn button:hover {
  opacity: 0.6;
}
div.add-to-cart-btn button svg {
  width: 23%;
  fill: hsl(0deg, 0%, 100%);
}
@media screen and (max-width: 650px) {
  div.add-to-cart-btn button svg {
    width: 30%;
  }
}
@media screen and (max-width: 325px) {
  div.add-to-cart-btn button svg {
    width: 15%;
  }
}

.active-thumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  border: 2px solid #ff7d1a;
  background: #fff;
  border-radius: 15%;
  transition: border 100ms ease-out, background 200ms ease-out;
}

.active-thumbnail-black::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  border: 2px solid #000;
  background: #fff;
  border-radius: 15%;
  transition: border 100ms ease-out, background 200ms ease-out;
}

.active-thumbnail-blue::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  border: 2px solid #535bcf;
  background: #fff;
  border-radius: 15%;
  transition: border 100ms ease-out, background 200ms ease-out;
}

.mobileCarousel {
  display: none;
}
@media screen and (max-width: 650px) {
  .mobileCarousel {
    display: block;
  }
}

.mobileCarousel .carousel-inner {
  border-radius: 0;
}

.mobileCarousel .carousel-inner .carousel-item img {
  height: 425px;
  object-fit: cover;
}
@media screen and (max-width: 400px) {
  .mobileCarousel .carousel-inner .carousel-item img {
    height: 325px;
  }
}
@media screen and (max-width: 325px) {
  .mobileCarousel .carousel-inner .carousel-item img {
    height: 320px;
  }
}

.mobileCarousel button[class^=carousel-control] {
  color: white;
  opacity: 0.9;
}
.mobileCarousel button[class^=carousel-control]:hover svg {
  stroke: hsl(26deg, 100%, 55%);
}

.mobile-carousel-span {
  width: 3rem;
  height: 3rem;
  background-color: hsl(0deg, 0%, 100%);
  border-radius: 50%;
  line-height: 2.7;
}
.mobile-carousel-span svg {
  stroke: #1D2026;
  transition: stroke 200ms linear;
}

.mobile-carousel-button-prev {
  left: 0.5em;
}

.mobile-carousel-button-next {
  right: 0.5em;
}

.carousel-closed {
  animation: fade-out 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.product-carousel-parent {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
  backdrop-filter: blur(5px);
}

.carousel-open {
  animation: wide-in 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  visibility: visible;
}

.product-carousel {
  width: 400px;
  height: 50%;
  margin: 15vh auto;
}
@media screen and (max-width: 800px) {
  .product-carousel {
    width: 300px;
  }
}

.carousel-inner {
  border-radius: 15px;
}

.product-carousel .carousel-item img {
  width: 100%;
  object-fit: cover;
  height: 430px;
}
@media screen and (max-width: 800px) {
  .product-carousel .carousel-item img {
    height: 300px;
  }
}

.carousel-btn {
  color: white;
  opacity: 0.9;
  top: 3em;
}
.carousel-btn:hover svg {
  stroke: hsl(26deg, 100%, 55%);
}
.carousel-btn span {
  width: 3rem;
  height: 3rem;
  background-color: hsl(0deg, 0%, 100%);
  border-radius: 50%;
  line-height: 2.7;
  position: absolute;
  top: 140px;
}
@media screen and (max-width: 800px) {
  .carousel-btn span {
    width: 2.5rem;
    height: 2.5rem;
    top: 90px;
    line-height: 2.3;
  }
}
.carousel-btn span svg {
  stroke: #1D2026;
  transition: stroke 200ms linear;
}
@media screen and (max-width: 800px) {
  .carousel-btn span svg {
    width: 28%;
  }
}

@media screen and (max-width: 800px) {
  button.carousel-control-prev.carousel-btn.carousel-prev-btn > span.carousel-control-prev-icon > svg {
    width: 40%;
  }
}

.carousel-prev-btn {
  left: -1.8em;
}
@media screen and (max-width: 800px) {
  .carousel-prev-btn {
    left: -1.4em;
  }
}

.carousel-next-btn {
  right: -1.7em;
}
@media screen and (max-width: 800px) {
  .carousel-next-btn {
    right: -1.4em;
  }
}

.close-btn {
  position: absolute;
  top: -2em;
  left: 95%;
  z-index: 100;
  cursor: pointer;
}
.close-btn svg {
  fill: hsl(0deg, 0%, 100%);
  transition: fill 100ms linear;
}
.close-btn svg:hover {
  fill: hsl(26deg, 100%, 55%);
}

.product-carousel .thumbnail span {
  width: 22%;
  height: 85px;
}
@media screen and (max-width: 800px) {
  .product-carousel .thumbnail span {
    height: 64px;
  }
}

@keyframes wide-in {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.black-border {
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.4);
}

.blue-border {
  box-shadow: 0px 0px 6px 1px rgba(83, 91, 207, 0.4);
}

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