.hamburger {
    cursor: pointer;
  }
  
  .hamburger input {
    display: none;
  }
  
  .hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 2em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }

/* like */
.con-like {
    --red: rgb(255, 50, 50);
    position: relative;
    width: 50px;
    height: 50px;
  }
  
  .con-like .like {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 20;
    cursor: pointer;
  }
  
  .con-like .checkmark {
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .con-like .outline,
  .con-like .filled {
    fill: var(--red);
    position: absolute;
  }
  
  .con-like .filled {
    animation: kfr-filled 0.5s;
    display: none;
  }
  
  .con-like .celebrate {
    position: absolute;
    animation: kfr-celebrate 0.5s;
    animation-fill-mode: forwards;
    display: none;
  }
  
  .con-like .poly {
    stroke: var(--red);
    fill: var(--red);
  }
  
  .con-like .like:checked ~ .checkmark .filled {
    display: block
  }
  
  .con-like .like:checked ~ .checkmark .celebrate {
    display: block
  }
  
  @keyframes kfr-filled {
    0% {
      opacity: 0;
      transform: scale(0);
    }
  
    50% {
      opacity: 1;
      transform: scale(1.2);
    }
  }
  
  @keyframes kfr-celebrate {
    0% {
      transform: scale(0);
    }
  
    50% {
      opacity: 0.8;
    }
  
    100% {
      transform: scale(1.2);
      opacity: 0;
      display: none;
    }
  }
  .btn-link{
     border: none;
  }
  .line{
    height: 2px;
    width: 360px;
    margin: auto;
    background-color: var(--purple);
    margin-bottom: 24px;
  }
  .group-links{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn-input{
    padding: 10px;
    color: #fff;
    background-color: var(--purple);
    cursor: pointer;
    border: none;
    border-radius: 4px;
  }
  .btn-classic{
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg,var(--purple), #85e881);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease-in-out;
    border: none;
  }
  .btn-classic-sm{
    padding: 5px;
    border-radius: 8px;
    background: linear-gradient(135deg,var(--purple), #436f41);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .btn-classic:hover{
    letter-spacing: 1.1px;
    background: linear-gradient(135deg, #85e881,var(--purple));
  }
  .btn-classic-sm:hover
  {
    background: linear-gradient(135deg,#436f41,var(--purple) );
    letter-spacing: 1.2px;
  }
  .form-group{
    width: 100%;
    margin-block: 10px;
    display: flex;
    flex-direction: column;
  }
  .form-group label{
    font-size: 24px;
    color: #000;
  }
  .form-group .form-controll{
    padding: 10px;
    border: 2px dashed var(--purple);
    background-color: var(--gren-light);
    outline: none;
  }
  .form-group .form-controll:focus{
    border: 2px dashed var(--light-purple);
  }
  .form-default{
    padding: 10px;
    border: 1px solid var(--purple);
    outline: none;
    color: var(--purple);
    font-size: 20px;
  }
  .btn-submit{
    width: 120px;
    padding: 10px;
    border: 2px dashed var(--purple);
    color: var(--gren-light);
    color: #000;
  }
  .event-shower{
    position: fixed;
    padding: 10px;
    border: 2px solid var(--purple);
    background-color: var(--white);
    color: var(--purple);
    right: 30px;
    bottom: 20px;
    z-index: 9999;
    gap: 10px;
    font-size: 17px;
    display: none;
  }
.event-shower.active{
  display: flex;
}
.cover-animate{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.8);
  z-index: 999;
  display: none;
}
.cover-animate.active{
  display: flex;
}
.cover-animate p{
  color: var(--purple);
  text-align: center;
  font-size: 20px;
  padding: 12px 0;
}
.btn-trans{
  background-color: transparent;
}
.form-count{
  width: 40px;
  padding: 5px 6px;
  height: 25px;
  background-color: #eee;
  color: var(--purple);
}
.price-default{
  text-decoration: line-through;
  color: red;
  margin-right: 5px;
}
.price-default i{
  margin-left: -7px;
  font-size: 15px;
}
.price-sale{
  color: var(--purple);
}
.cover-deals{
    position: fixed;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: rgba(255,255,255,0.94);
    z-index: 99;
    border-radius: 10px;
    padding: 20px;
    display: none;
}
.cover-deals.active{
    display: block;
}
.container-deals{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    flex-direction: column;
   height: 100%;
}
.container-deals div{
    display: none;
    height: 100%;
}
.container-deals div p{
    line-height: 32px;
     letter-spacing: 1.2px;
    font-size: 18px;
    font-family: var(--text-font);
}
.container-deals div.active{
    display: block;

}
.deals-menu{
    padding: 5px;
    color: var(--main-color);
    font-size: 25px;
    position: absolute;
    z-index: 100;
    top: 20px;
    right: 20px;
    background-color: #eee;
    cursor: pointer;
}