.cookie {
  width: 100%;
  margin-bottom: 25px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100000000;
  transition: 0.3s;
}

.cookie .maxwidth-theme.only-on-front {
	background: transparent;
}

.cookie._hidden {
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}

.cookie-wrp {
  display: flex;
  padding: 20px;
  align-items: center;
    box-shadow: var(--light, 0 5px 20px 0 #0000001f) var(--dark, 0 0 0 1px #ffffff33);
    border-radius: 5px;
	background-color: #fff;
}

.marketing-popup__title {
    font-size: 1em;
    padding: 0
}

.marketing-popup__text {
    font-size: .8667em;
    line-height: 1.54em;
    padding: 0;
}

.cookie-info {
  padding-right: 20px;
}

.cookie-desc a {
  margin: 0 5px;
  transition: 0.3s;
  color: #000;
  font-weight: bold;
  transition: color time ease-in-out;
}

.cookie-desc a:hover {
  text-decoration: underline;
}

.cookie-desc a:hover {
  border-color: transparent;
}

.cookie-btns {
    display: flex;
    flex-wrap: wrap; /* Позволяет элементам переноситься на новую строку */
    gap: 10px; /* Отступ между кнопками и ссылкой */
	min-width: 300px;
}

.cookie-btns .btn {
    flex: 1 1 calc(50% - 5px);
    box-sizing: border-box;
    text-align: center;
}

.cookie-btns #cookie-settings__btn {
    display: block;
    width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    .cookie-btns .btn {
        flex: 1 1 100%; /* Каждая кнопка занимает всю ширину строки */
    }
}

@media screen and (max-width: 990px) {
  .cookie-btn__orange {
    padding: 10px;
  }
  .cookie-btn__black {
    padding: 10px;
  }
}

@media screen and (max-width: 800px) {
  .cookie-wrp {
    flex-wrap: wrap;
  }
  .cookie-info {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 600px) {
  .cookie-btns {
    flex-wrap: wrap;
  }
  .cookie-btn__orange {
    margin-bottom: 10px;
  }
}




#cookie-modal.popup {
    position: fixed;
    align-items: center;
    justify-content: center;
    z-index: 1000000001;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    overflow: hidden;
	background: transparent;
}

#cookie-modal.popup._active {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

#cookie-modal .popup-content {
    max-width: 800px;
    width: 100%;
    max-height: 100%;
    overflow: hidden auto;
    z-index: 1;
    margin: 0 auto;
}

#cookie-modal .popup-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}

#cookie-modal .popup-container {
    position: relative;
    width: 100%;
    background: #fff;
    margin: 0 auto;
    padding: 50px;
    z-index: 1;
    overflow: auto;
}

#cookie-modal .checkbox-with-text {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  gap: 8px;
  cursor: pointer
}

#cookie-modal .checkbox-text {
  -webkit-transition: color .3s ease-in-out,opacity .3s ease-in-out;
  -o-transition: color .3s ease-in-out,opacity .3s ease-in-out;
  transition: color .3s ease-in-out,opacity .3s ease-in-out
}

#cookie-modal .checkbox [type=checkbox] {
  display: none
}

#cookie-modal .checkbox [type=checkbox]:checked~.checkbox-text {
  color: #000
}

#cookie-modal .checkbox [type=checkbox]:disabled~.checkbox-marker,
#cookie-modal .checkbox [type=checkbox]:disabled~.checkbox-text  {
  pointer-events: none;
  opacity: .5
}

#cookie-modal .checkbox-marker {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #333333;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
  position: relative
}


#cookie-modal .checkbox-marker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  z-index: 0;
}

#cookie-modal .checkbox-marker::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  background-image: url(/local/components/medialine/cookies.info/templates/modal/img/done.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain
}

#cookie-modal .checkbox [type=checkbox]:checked~.checkbox-marker::before,
#cookie-modal .checkbox [type=radio]:checked~.checkbox-marker::before {
  opacity: 1
}

#cookie-modal .checkbox [type=checkbox]:checked~.checkbox-marker::after,
#cookie-modal .checkbox [type=radio]:checked~.checkbox-marker::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}

#cookie-modal .popup-content {
  max-width: 800px;
}

#cookie-modal .popup-review__title h3 {
  margin-bottom: 15px;
}

#cookie-modal .popup-cookie__text {
  color: #333;
  font-size: .88rem;
}

#cookie-modal .popup-cookie__item-desc {
  color: #333;
  font-size: .75rem;
  font-weight: 300;
}

#cookie-modal .popup-cookie {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

#cookie-modal .popup-cookie__text {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

#cookie-modal .popup-cookie__form {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

#cookie-modal .popup-cookie__item-group {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

#cookie-modal .checkbox [type=checkbox]~.checkbox-text h6 {
  font-weight: 400;
    margin-bottom: 0;
}

#cookie-modal .popup-close {
  position: absolute;
  margin: 20px;
  right: 0;
  top: 0;
  padding: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: stroke .3s ease-in-out,border-color .3s ease-in-out,background-color .3s ease-in-out;
  -o-transition: stroke .3s ease-in-out,border-color .3s ease-in-out,background-color .3s ease-in-out;
  transition: stroke .3s ease-in-out,border-color .3s ease-in-out,background-color .3s ease-in-out;
  stroke: #00aeae;
  opacity: .8;
  stroke-width: 1px;
  z-index: 2
}

#cookie-modal .popup-close .icon {
  display: block;
  width: 24px;
  height: 24px
}

#cookie-modal .popup-close:hover {
  opacity: 1;
}

#cookie-modal .popup-cookie__text .link-underline-cookie {
  text-decoration: underline;
  display: inline;
  color: var(--blue);
}

#cookie-modal .popup-cookie__text .link-underline-cookie:hover {
  text-decoration: none;
} 

@font-face {
    font-family: 'FontAwesome';
    src: url('/bitrix/templates/aspro_max/vendor/fonts/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('/bitrix/templates/aspro_max/vendor/fonts/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('/bitrix/templates/aspro_max/vendor/fonts/font-awesome/css/../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('/bitrix/templates/aspro_max/vendor/fonts/font-awesome/css/../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('/bitrix/templates/aspro_max/vendor/fonts/font-awesome/css/../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('/bitrix/templates/aspro_max/vendor/fonts/font-awesome/css/../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-angle-right:before {
    content: "\f105";
}