.modal {
    position: fixed;
    left: 50%;
    top: 0;
    width: 100%;
    transform: translate(-50%, 0);
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
}

.circle2 {
    height: 15px;
    width: 15px;
    border: 2px solid rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
}

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

input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 29px;
    height: 29px;
    border: 0;
    background: url('/images/normal_u44.svg');
    cursor: pointer;
}

input::-moz-range-thumb {
    width: 29px;
    height: 29px;
    border: 0;
    background: url('/images/normal_u44.svg');
    cursor: pointer;
}
#discription>ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

#discription>ul {
    list-style: disc;
    padding-left: 1.5rem;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #A91504 #F7E6E8;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: #F7E6E8;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #A91504;
    border-radius: 10px;
    border: 0px solid transparent;
  }
  .menu-btn {
    cursor: pointer;
    transition: all 0.5s ease-out;
}

/* Styling the hamburger lines */
.menu-btn .btn-line {
    width: 28px;
    height: 3px;
    margin: 0 0 5px 0;
    transition: all 0.5s ease-out;
}

/* Adding transform to the X */
.menu-btn.close {
    transform: rotate(180deg);
}

/* Styling the three lines 
    to make it an X */
.menu-btn.close .btn-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.close .btn-line:nth-child(2) {
    opacity: 0;
}

.menu-btn.close .btn-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}