    #drawer {
      position: fixed;
      top: 0;
      right: 0;
      transform: translateX(100%);
      width: 400px;
      height: 100%;
      background-color: #fff;
      color: #fff;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease-in-out;
      z-index: 99999;
    }

    #drawer.active {
      transform: translateX(0);

    }
    

    button {
      font-size: 18px;
      cursor: pointer;
      border: none;
      /*background: none;*/
    }

    .customizer-setting {
      position: fixed;
      bottom: 40px;
      right: 20px;
      z-index: 1000;
    }

    .button-setting {
      padding: 16px;
      border-radius: 50%;
      background-color: #299cdb;
      color: #fff;
      font-size: 20px;
    }

    .button-setting i {
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 20px;
      animation: spin 2s linear infinite;


    }

    .header-drawer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 18px;
      color: #fff;
      font-weight: 600;
      background-color: #4b5b90;
      padding: 16px;
    }

    .header-drawer p {
      margin-bottom: 0;
    }

    .header-drawer #closeDrawer {
      color: #ccc;
    }

    .main-drawer {
      background: #fff;
      padding: 16px;
      overflow: auto;
      height: 100%;
      max-height: calc(100vh - 75px - 70px);

    }

    .main-drawer::-webkit-scrollbar {
      width: 0 !important;
      display: none;
    }
    .content-drawer {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: space-between;
    }

    .info-drawer {
      margin-bottom: 24px;
    }

    .title-drawer {
      font-size: 13px;
      color: #495057;
      text-transform: uppercase;
      font-weight: 600;
    }

    .desc-drawer {
      color: #878a99;
      font-size: 13px;
    }

    .drawer-item.active img {
      border: 1px solid #4b5b90;
    }
    
    .drawer-item img {
        border: 1px solid #e9ebec;
    }
    
    .drawer-item {
        /*flex: 1;*/
        max-width: 48%;
        text-align: center;
    }


    .drawer-item img {
      width: 100%;
      height: 124px;
      object-fit: cover;

    }
    @media (max-width: 768px) {
        .drawer-item img {
    
      height: 115px !important;
    

    }
    #drawer {
        width: 360px !important;
    }  
      
     .main-drawer {
      background: #fff;
      padding: 16px;
      overflow: auto;
      height: 100%;
      max-height: calc(100vh - 75px - 100px);

    }
   
    }

    .drawer-item p {
      margin: 8px 0;
      font-size: 13px;
      color: #495057;
    }

    .footer-drawer {
      padding: 16px;
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #ccc;
      gap: 12px;

    }

    .footer-drawer button {
      font-size: 13px;
      padding: 8px 14px;
      flex: 1;
      text-align: center;
      border-radius: 4px;
    }

    .footer-drawer .reset {
      background: #f3f6f9;
      color: #000;
    }

    .footer-drawer .buy {
      background: #405189;
      color: #fff;
    }


    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }