.cookie {
  width: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  transition: 0.3s;
  box-shadow: 0px -8px 23px 0px rgba(34, 60, 80, 0.2);
}

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

.cookie-wrp {
  display: flex;
  padding: 10px 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: inline-grid;
	gap: 0 10px;
	grid-template-columns: 1fr 1fr;
}

.cookie-btn__orange {
  border: 1px solid #818181;
  color: #fff;
  background-color: #818181;
  text-align: center;
  padding: 10px 15px;
  transition: 0.3s;
  cursor: pointer;
  margin-right: 10px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-btn__orange:hover {
  color: #000;
  background-color: #fff;
}

.cookie-btn__black {
  border: 1px solid #818181;
  text-align: center;
  padding: 10px 15px;
  transition: 0.3s;
  cursor: pointer;
  min-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.cookie-btns .to-issue.button {
    line-height: 45px;
}

button.button.button-transparent,
a.button.button-transparent {
    background: transparent;
    color: #88c437;
    border: 1px solid #88c437;
}

button.button.button-transparent:hover,
a.button.button-transparent:hover {
	background: transparent !important;
	color: #88c437 !important;
}

.cookie-btn__black:hover {
  background-color: #818181;
  color: #fff;
}

@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;
  }
}

.popup-review {
    position: relative;
    max-width: 768px;
    margin: 0 auto;
    background: #fff;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
}

svg.icon.icon-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    fill: #414141;
    margin: 20px;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    cursor: pointer;
}

.popup-cookie__item-info .info {
    position: relative;
    padding: 16px;
    border-radius: 14px;
    font-size: 1rem;
    background-color: #f3f9eb;
    color: #0c2251;
}

.popup-review__head {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px
}

.popup-review__title {
    margin-bottom: 16px;
    text-align: center;
}

.popup-review__text {
    /*max-height: 60vh;*/
    /*overflow: auto;*/
}

.popup-cookie {
    display: -ms-grid;
    display: grid;
    gap: 32px;
}

.popup-cookie__text {
    display: -ms-grid;
    display: grid;
    gap: 16px;
}

.popup-cookie__form {
    display: -ms-grid;
    display: grid;
    gap: 24px;
}

.popup-cookie__item {
    display: -ms-grid;
    display: grid;
    gap: 16px;
    border: 1px solid #f0f5fc;
    border-radius: 14px;
}

.popup-cookie__item-group {
    display: -ms-grid;
    display: grid;
    gap: inherit;
    padding: 16px;
}

.checkbox-with-text, .radiobutton-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;
}

.checkbox-text, .radiobutton-text {
    font-weight: 600;
    color: #3c3c3c;
    -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;
}

.popup-cookie__item-desc {
    padding-left: 24px;
}

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

.checkbox-marker::before {
    content: "";
    border-radius: inherit;
    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;
    background: #88c437
}

.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);
}

.checkbox [type=checkbox] {
    display: none;
}

.checkbox [type=checkbox]:checked~.checkbox-marker,.checkbox [type=radio]:checked~.checkbox-marker {
    border-color: transparent;
}

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

.checkbox [type=checkbox]:checked~.checkbox-marker::after,.checkbox [type=radio]:checked~.checkbox-marker::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    width: 10px;
    height: 5px;
    margin: 3px 0 0 3px;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.checkbox [type=checkbox]:disabled~.checkbox-text {
	pointer-events: none;
    opacity: .5;
}

.popup-cookie__submit {
    display: inline-grid;
    gap: 0 10px;
    grid-template-columns: 1fr 1fr;
}

.to-issue__body .popup-cookie__submit .button {
    margin-top: 0;
}
