@charset "UTF-8";
#cookie_notification {
  display: none;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 85px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 1050;
}
#cookie_notification .cookie_buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cookie_notification .cookie_accept {
  background: #5cc5fd;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 30px;
  white-space: nowrap;
  border: none;
}
#cookie_notification .cookie_accept:hover {
  text-decoration: none;
  box-shadow: none;
}
#cookie_notification .cookie_accept:focus, #cookie_notification .cookie_accept:active {
  text-decoration: none;
  box-shadow: none;
  background: #4F6BB1;
}
#cookie_notification .cookie_accept:last-child {
  margin-left: 10px;
}

#cookie_notification p {
  margin: 0;
  font-size: 12px;
  text-align: left;
  color: #525251;
}

/*------ Для управления окошком настройки cookie (начало) ------*/
.manage-consent {
  display: none;
}

body.visible-cookie {
  overflow: hidden;
}
body.visible-cookie .manage-consent {
  display: block;
}

/*------ Для управления окошком настройки cookie (конец) ------*/
.manage-consent {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
  line-height: 1.3;
}
.manage-consent p {
  padding: 0 0 24px;
  margin: 0 !important;
  font-size: 16px;
  color: #525251;
}
.manage-consent__bg {
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #323E48;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.manage-consent__modal {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  max-height: 100%;
  max-width: 1050px;
  display: flex;
  flex-direction: column;
}
.manage-consent__head {
  position: relative;
  flex-shrink: 0;
}
.manage-consent__close {
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  fill: none;
  color: #000000;
}
.manage-consent__close:hover {
  color: #4BC1F0;
}
.manage-consent__title {
  margin: 0 0 10px 0;
  max-width: 80%;
  font-size: 34px;
  font-weight: bold;
  line-height: 43px;
  letter-spacing: -0.05em;
  padding: 0 0 20px;
  color: #213039;
  text-align: left;
}
.manage-consent__text {
  font-size: 14px;
  line-height: 1.3;
}
.manage-consent__text a {
  color: #337ab7;
  text-decoration: none;
}
.manage-consent__text a:hover {
  color: #23527c;
  text-decoration: underline;
}
.manage-consent__body {
  max-width: 1000px;
  height: 100%;
  overflow-y: auto;
}
.manage-consent__list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}
.manage-consent__item {
  margin-bottom: 10px;
}
.manage-consent .checkbox-item {
  display: flex;
  align-items: center;
}
.manage-consent input[type=checkbox] {
  display: none;
}
.manage-consent input[type=checkbox] + label {
  display: inline-block;
  vertical-align: top;
  font: 16px/24px "pfbeausanspro-thin", Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  text-transform: none;
  cursor: pointer;
  position: relative;
}
.manage-consent input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 24px;
  width: 24px;
  border-radius: 3px;
  background: #4BC1F0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodâ€¦IgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #4BC1F0 0%, #4BC1F0 50%, #1E6E9F 100%);
  background: -webkit-linear-gradient(-45deg, #4BC1F0 0%, #4BC1F0 50%, #1E6E9F 100%);
  background: linear-gradient(135deg, #4BC1F0 0%, #4BC1F0 50%, #1E6E9F 100%);
}
.manage-consent input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  height: 20px;
  width: 20px;
  border-radius: 2px;
  background: #fff;
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.25);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.manage-consent input[type=checkbox] + label > span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 2px 0 2px 40px;
  z-index: 2;
}
.manage-consent input[type=checkbox] + label > span:after, .manage-consent input[type=checkbox] + label > span:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background: #fff;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.manage-consent input[type=checkbox] + label > span:after {
  transform: rotate(-50deg);
  transform-origin: 0 1em;
  left: 21px;
  top: 12px;
}
.manage-consent input[type=checkbox] + label > span:before {
  transform: rotate(45deg);
  transform-origin: 0 0.6em;
  left: -2px;
  top: 8px;
}
.manage-consent input[type=checkbox]:disabled + label {
  color: #bdbdbd;
}
.manage-consent input[type=checkbox]:disabled + label:before {
  background: #ececec;
}
.manage-consent input[type=checkbox]:disabled + label > span:before, .manage-consent input[type=checkbox]:disabled + label > span:after {
  background: #b9b9b9;
}
.manage-consent input[type=checkbox]:checked + label > span:before {
  width: 0.6em;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.manage-consent input[type=checkbox]:checked + label > span:after {
  width: 1em;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.manage-consent input[type=checkbox]:checked + label:after {
  opacity: 0;
}
.manage-consent p.manage-consent__description {
  font-size: 12px;
  color: #525251;
  margin: 0;
}
.manage-consent__item {
  margin-bottom: 10px;
}
.manage-consent__buttons {
  flex-shrink: 0;
}
.manage-consent__button {
  background: #5cc5fd;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 30px;
  white-space: nowrap;
  border: none;
}
.manage-consent__button:hover {
  text-decoration: none;
  box-shadow: none;
}
.manage-consent__button:focus, .manage-consent__button:active {
  text-decoration: none;
  box-shadow: none;
  background: #4F6BB1;
}
.manage-consent__browsers {
  margin-bottom: 24px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.manage-consent__browser {
  display: inline-block;
  cursor: pointer;
}
.manage-consent__browser:last-child {
  margin-right: 0;
}
.manage-consent__browser:hover img {
  transform: scale(1.15, 1.15);
}
.manage-consent__browser-icon {
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/****************************************   Для экранов меньше 992px   ************************************************/
@media (max-width: 991.98px) {
  #cookie_notification .cookie_buttons {
    margin-left: 10px;
  }
}
/****************************************   Для экранов меньше 768px   ************************************************/
@media (max-width: 767.98px) {
  #cookie_notification .cookie_buttons {
    flex-direction: column;
    margin-left: 25px;
  }
  #cookie_notification .cookie_accept {
    width: 100%;
  }
  #cookie_notification .cookie_accept:first-child {
    margin-bottom: 10px;
  }
  #cookie_notification .cookie_accept:last-child {
    margin-left: 0;
  }
}
/****************************************   Для экранов больше 576px   ************************************************/
@media (min-width: 576px) {
  #cookie_notification.cookie-show {
    display: flex;
  }
}
/****************************************   Для экранов меньше 575px   ************************************************/
@media (max-width: 575px) {
  #cookie_notification.cookie-show {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  #cookie_notification .cookie_buttons {
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
  }

  .manage-consent h2.manage-consent__title {
    font-size: 20px !important;
    line-height: 130%;
    text-align: left !important;
    margin: 0;
  }
  .manage-consent__button {
    width: 100%;
  }
}

/*# sourceMappingURL=manage-consent.css.map */
