/*  GDPR - Mobile
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.gdpr[open] {
    width: 75vw;
    height: 35vh;
    background-color: var(--backgroundHighlight);
    border-radius: 10%;
    border-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    gap: 13px;
    position: fixed;
    overflow: hidden;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
  }

.gdpr::backdrop {
    background-color: black;
    opacity: 0.5;
}
  
  #cookieSvg {
    width: 30%;
  }
  
  #cookieSvg g path {
    fill: rgb(97, 81, 81);
  }
  
  .cookieHeading {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 0px;
    color: var(--text);
  }
  
  .cookieDescription {
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--textHighlight);
  }
  
  .buttonContainer {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 20%;
    gap: 20px;
    flex-direction: row;
  }
  
  .acceptButton {
    width: 30%;
    height: 100%;
    background-color: var(--primary);
    transition-duration: .2s;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
    border-radius: 20px;
  }
  
  .declineButton {
    width: 30%;
    height: 100%;
    background-color: var(--text);
    transition-duration: .2s;
    color: rgb(46, 46, 46);
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 20px;
  }
  
  .declineButton:hover {
    background-color: #ebebeb;
    transition-duration: .2s;
  }
  
  .acceptButton:hover {
    background-color: var(--primary);
    transition-duration: .2s;
  }


/*  GDPR - Desktop
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (min-width: 800px) {

    .gdpr[open] {
        width: 30vw;
        height: 60vh;
    }

    #cookieSvg {
        width: 20%;
      }

    .buttonContainer {
        height: 10%;
    }

}