/** STYLES EU COOKIES **/
.eu-popup {
  overflow-y: scroll;
  max-width: 800px;
  border-radius: 0px !important;
  box-shadow: 1px 3px 10px -2px rgb(0 0 0 / 75%) !important;
  position: fixed !important;
  max-height: 85%;
  margin: 0 20px 0 20px;
  padding: 15px;
  overflow: auto;
}

.eu-popup .title {
  font-size: 1.25em;
  border-bottom: 1px solid #e1e1e1;
}

.eu-popup .subtitle {
  font-size: 1.1em;
  padding-top: 15px;
  display: block;
  border-bottom: 1px solid #f1f1f1;
}

.eu-popup-button,
.settings-button {
  background-color: #333e48 !important;
  padding: 7px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  border-radius: 0px !important;
  color: #fff;
  border: 0px;
}

.eu-popup-button:hover {
  background-color: #2b3238 !important;
}

#saveButton,
.settings-button {
  background-color: #fff !important;
  color: #363f48;
  border: 1px solid #363f48;
}

#saveButton:hover,
.settings-button:hover {
  background-color: #fbfbfb !important;
}

button:focus {
  outline: none;
  outline-color: transparent;
  outline-style: none;
  outline-width: 0px;
}

.eu-popup .cookies-box {
  visibility: hidden;
  opacity: 0%;
  max-height: 0px;
  transition: all 0.45s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.eu-popup .cookies-box-opened {
  visibility: visible;
  opacity: 100%;
  height: 100%;
  max-height: 1000px;
  transition: all 0.45s ease-in-out;
}

.eu-popup .show-all-box {
  display: block;
  width: 100%;
  text-align: right;
}

@media (min-width: 720px) {
  .eu-popup {
    display: flex;
    margin: 20px;
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .eu-popup {
    overflow: hidden;
    height: auto;
  }
}
