.cookie-disclaimer-container {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0f0f0;
  padding: 10px;
  text-align: center;
}

.cookie-disclaimer-container p {
  max-width: 1514px;
  margin: 0 auto;
}

.cookie-action-buttons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 20px;
  align-items: center;
  flex-direction: row;
}

.cookie-accept-button {
  background: #ff6a10;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  min-width: 166px;
  padding: 12px;
  border-radius: 83px;
  height: 40px;
  border: none;
  cursor: pointer;
  position: relative;
}

.cookie-decline-button {
  background-color: #e2e2e2;
  color: #000000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  min-width: 166px;
  padding: 12px;
  border-radius: 83px;
  height: 40px;
  border: none;
  cursor: pointer;
  position: relative;
}

.cookie-settings-button {
  border: 1px solid #ff6a10 !important;
  background: white;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  min-width: 166px;
  padding: 12px;
  border-radius: 83px;
  height: 40px;
  border: none;
  cursor: pointer;
  position: relative;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 800px;
  background-color: white;
  box-shadow: 0 20px 4px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  padding: 30px;
}
.popup__title {
  color: #ff6a10;
  font-size: 30px;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 30px;
}
.popup__paragraph {
  margin-bottom: 24px;
}
.popup__cookie-services {
  font-size: 24px;
  color: #ff6a10;
  margin-bottom: 8px;
  margin-top: 0 !important;
}
.popup__cookie-description {
  max-width: 800px;
}
.popup__checkbox {
  width: 24px;
  height: auto;
  margin-right: 54px;
  filter: hue-rotate(180deg);
  box-shadow: none !important;
}
.popup__checkbox-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s;
}
.popup__checkbox-row:hover {
  box-shadow: 9px 9px 11px rgba(255, 106, 16, 0.3) !important;
  transform: scale(1.02);
}
.popup__checkbox-row:active {
  transform: scale(1);
  box-shadow: 5px 5px 7px rgba(255, 106, 16, 0.3) !important;
}
.popup__always-active {
  transform: scale(1.02);
}
.popup__always-active:hover {
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.2) !important;
}
.popup__buttons {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
.popup__button {
  padding: 10px 40px;
  border: solid 1px #ff6a10;
  text-decoration: none;
  border-radius: 24px;
  margin-left: 8px;
  transition: all 0.2s;
}
.popup__button:hover {
  background-color: #ff6a10;
  color: white;
}
.popup__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.popup__close:hover {
  color: #ff6a10;
}

@media only screen and (max-width: 1660px) {
  .popup__content {
    width: 40%;
    height: 820px;
  }
  .popup__buttons {
    position: static;
    text-align: center;
  }
}
@media only screen and (max-width: 1560px) {
  .popup__content {
    height: 850px;
  }
}
@media only screen and (max-width: 1300px) {
  .popup__content {
    height: 800px;
    width: 45%;
  }
  .popup__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    background: white;
    width: 100%;
    height: 100px;
    z-index: 99;
  }
  .popup__title {
    margin-top: 15px;
    padding-bottom: 15px;
  }
  .popup__header {
    position: fixed;
    top: 0;
    right: 0;
    background: white;
    width: 100%;
    height: 70px;
    z-index: 99;
    text-align: center;
    align-items: center;
  }
  .popup__paragraph {
    display: none;
  }
  .popup__body {
    margin-top: 70px;
    height: 650px;
    overflow-y: auto;
    padding: 10px;
  }
}
@media only screen and (max-width: 900px) {
  .popup__content {
    width: 80%;
    height: 650px;
  }
  .popup__body {
    height: 500px;
  }
}
@media only screen and (max-width: 400px) {
  .popup__buttons {
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-top: 12px;
  }
  .popup__button {
    padding: 5px 20px;
    margin-bottom: 5px;
  }
}

/*# sourceMappingURL=style-cookies.css.map */
