dialog:-internal-dialog-in-top-layer::backdrop {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(4px);
}

.div-dialog{
  margin-top: 50px;
}

dialog{
    display: grid;
    justify-content: center;
    align-items: center;
    border: none;
    max-width: 800px;
    width: 85%;
    z-index: -11111111;
    border-radius: 6px;
}

.accordion-box{
  width: 100%;
  padding: 40px 20px;
  z-index: -11111111;
}

.accordion {
    width: 100%;
    padding-bottom: 40px ;
  }

.accordion h1{
  font-size: 35px;
  margin-bottom: 10px;
  color: #3993ff;
}

.accordion p{
  color: #666;
  font-size: 15px;
  line-height: 25px;
}
  
  /* Inputs and Labels*/
  
  .accordion input[name=panel] {
    display: none;
  }
  .accordion .label {
    position: relative;
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
  }
  .accordion .label:after {
    content: "+";
    position: absolute;
    right: 1em;
    width: 1em;
    height: 1em;
    color: black;
    text-align: center;
    opacity: 1;
    transition: opacity 300ms ease;
  }
  
  .accordion input:checked + .label:after {
    content: "-";
    line-height: 1;
  }
  
  .accordion input:checked + .label{
    border-bottom: 0px solid rgba(0, 0, 0, 0.15);
  }
  
  
  /* Content */
  
  .accordion .accordion__content {
    overflow: hidden;
    height: 0px;
    position: relative;
    padding: 0 1.5em;
    background: white;
    color: black;
    transition: height 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
  }
  
  .accordion .accordion__content .accordion__body {
    color: #666;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4em;
    padding-top: 0.5em;
  }
  
  /* Add Height to Expand */
  
  .input[name=panel]:checked ~ .accordion__content {
    height: 100%;
    padding: 10px 25px;
  }

  .btn-flex{
    display:flex;
    justify-content: center;
    align-items: center;
  }

  .switch {
    font-size: 10px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(182, 182, 182);
    transition: .4s;
    border-radius: 6px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 1.4em;
    border-radius: 8px;
    left: 0.3em;
    bottom: 0.3em;
    transform: rotate(270deg);
    background-color: rgb(255, 255, 255);
    transition: .4s;
  }
  
  .switch input:checked + .slider {
    background-color: #3993ff;
  }
  
  .switch input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  .switch input:checked + .slider:before {
    transform: translateX(1.5em);
  }

  .accordion-check{
    color: #2196F3 !important;
  }

  .flex-d{
    display: flex;
  }

  .wd50{
    width: 48%;
  }


  @media (max-width: 750px) {
    .btn-flex{
      flex-direction: column;
    }
    .cookies__btn2{
      margin-right: 0px;
    }
    .accordion h1{
      font-size: 30px;
    }
    .accordion p{
      font-size: 13px;
      line-height: 21px;
    }
    .cookies__btn--accept{
      margin-right: 0px;
    }
     .cookies__btn--reject{
      margin-right: 0px;
    }
    .cookies__buttons {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 15px;
  }
    .cookies__text{
      font-size: 12px;
    }
  }