:root {
  --cookies-container-bg-color: #437be1;
  --cookies-text-color: #fff;
  --cookies-link-color: #1c4287 !important;
  --cookies-link-hover-color: #fff;
  --cookies-check-color: #000;
  --checkbox-checked-color: #1c4287 !important;
  --checkbox-cookies-background-color: #f7f7f7 !important;
  --cookies-btn-close-hover-color: #000;
  --cookies-btn-close-hover-color: #1c4287 !important;
  --cookies-check-font-size: 0.813rem;
}

.cookies-policy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cookies-container-bg-color);
  text-align: center;
  color: var(--cookies-text-color);
  padding: 25px 0 30px;
  line-height: 20px;
  z-index: 99;
  transition: bottom 1s ease-in-out;
  display: none;
  transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.cookies-policy .cookie-banner-link {
  color: var(--cookies-link-color);
}
.cookies-policy .cookie-banner-link:hover {
  color: var(--cookies-link-hover-color);
}
.cookies-policy-container {
  padding: 0 4rem;
  position: relative;
  margin: 0 auto;
  max-width: 80%;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cookies-check {
  height: 10px;
  position: relative;
  margin: 10px 0 2px;
  cursor: pointer;
  display: flex;
  margin-bottom: 10px;
}
.cookie-text {
  max-width: 325px;
}

.cookies-close-btn {
  background: transparent;
  height: 25px;
  width: 25px;
  border: none;
  cursor: pointer;
  margin-top: 0;
}
.cookies-close-btn svg {
  width: 20px;
}
.cookies-policy input {
  padding: 0;
  margin: 0;
}
.cookies-policy p {
  /*font-size: 1.5rem !important;*/
  font-size: 16px !important;
  font-family: var(--cookies-check-font-family);
  text-align: left;
  /*font-size: var(--cookies-check-font-size);*/
  margin-bottom: 0;
  line-height: 1.5;
}

.cookies-input-check:disabled {
  background-color: var(--checkbox-disabled-color);
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cookies-input-check:checked {
  background-color: var(--checkbox-checked-color);
  border: none;
  filter: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none !important;
}
.cookies-input-check {
  vertical-align: text-bottom;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.6);
  border-radius: 0.125em !important;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  float: left;
  margin-top: 1.5px;
  background: var(--checkbox-cookies-background-color);
}
.cookies-input-check:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.cookies-input-check:focus {
  border-color: rgba(0, 0, 0, 0.6);
  outline: 0;
  box-shadow: unset;
  -moz-appearance: none;
}
.cookies-check p {
  display: inline-block;
  position: absolute;
  left: 25px;
  margin-top: 0;
}

.cookies-policy .cookie-text-title {
  /*font-size: 1.5rem !important;*/
  font-size: 16px !important;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cookies-close-btn {
  color: var(--cookies-btn-close-color);
  height: 32px;
  width: 32px;
  padding: 0;
}
.cookies-close-btn:hover {
  color: var(--cookies-btn-close-hover-color);
}
.cookies-close-btn:focus {
  outline: none;
}
.cookie-content .cookie-text {
  flex: 1;
}

.label-cookies {
  margin-left: 10px;
  /* font-size: var(--cookies-check-font-size); */
  /*font-size: 1.25rem !important;*/
  font-size: 16px !important;
  cursor: pointer;
}

.cookie-text-no-title {
  margin-top: 35px;
}

.btn-cookies-container {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  right: 30px;
  top: 20px;
}
@media (max-width: 1000px) {
  .cookie-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
  .cookie-text {
    max-width: 100% !important;
  }
  .btn-cookies-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  .cookies-policy p {
    line-height: 1.25;
  }

  .cookies-policy {
    padding: 50px 0px 25px;
  }
  .cookie-text-no-title {
    margin-top: 0;
  }
}

@media (max-width: 1000px) {
  .cookies-policy {
    padding: 40px 0 65px;
    max-height: 60vh;
    max-height: 50vh;
  }

  .cookies-policy-container {
    padding: 0 2rem;
    position: relative;
    margin: 0 auto;
    max-width: 90rem;
    overflow-y: scroll;
    max-height: 48vh;
    max-height: 38vh;
  }

  .btn-cookies-container {
    position: fixed;
    top: unset;
    right: 23px;
    bottom: 14px;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: center;
    justify-content: flex-start;
  }
  .cookies-close-btn svg {
    width: 19px;
    height: 19px;
  }
