@charset "UTF-8";
/* magic */
:root {
	--yell: #98BC74;
	--main: #010101;
}
.updated{}
table.ester {
    width: 100%;
    margin: 25px 0;
}
.agree{}
.agree ul{}
.agree ul li{
    display: flex;
    justify-content: flex-start;
}
.agree ul li label{text-align: left;font-size: 13px !important;}
.agree ul li label a{
    color: var(--yell);
    border-bottom: 1px solid !important;
    /* line-height: 1; */
}
.agree ul li label a:hover{
    border-bottom: 1px dashed var(--yell) !important;
}
table.ester th {
    border: 1px solid #a3a3a3;
    padding: 5px 15px;
    font-size: 17px;
}
.footer__logo p{
    color: #fff;
    font-size: 13px;
    margin-top: 5px;
}
.footer__logo p span{
    display: block;
    font-size: 16px;
}
.footer__logo p a{border-bottom: 1px dashed !important;text-decoration: none;color: #fff;}
.footer__logo p a:hover{border-bottom: 1px solid !important;}
table.ester td {
    border: 1px solid #a3a3a3;
    padding: 5px 15px;
    font-size: 16px;
}
/* --- Баннер cookie --- */
#cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--main);
  padding: 25px 0;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  background: rgba(255,255,255,.96);
  -webkit-box-shadow: 0px 0px 48px -5px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 48px -5px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 48px -5px rgba(0,0,0,0.15);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
#cookie-notification[hidden] {
  display: none !important;
}
.cpent {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cpp {
  flex: 0 0 60%;
  text-align: left;
}
.cpp p {
  margin: 0;
  font-size: 15px;
}
.cpp p a {
  /* font-size: 14px; */
  color: var(--yell);
  border-bottom: 1px solid;
  text-decoration: none;
}
.cpp p a:hover {
  border-bottom: 1px dashed;
  color: var(--yell);
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex: 0 0 40%;
}
.cookie-buttons button{
  color: var(--yell);
  border: 1px solid var(--yell);
  padding: 10px 25px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.3s, color 0.3s;
  letter-spacing: 1px;
  font-weight: 500;
  background: #fff;
  font-family: 'Futura PT';
  }
#cookie-accept-all{
    /* background: var(--yell); */
    color: #fff;
    background: -webkit-gradient(linear, left bottom, left top, from(#98BC74), to(#B9D38C));
    background: linear-gradient(0deg, #98BC74 0%, #B9D38C 100%);
}
#cookie-accept-all:hover{
    color: var(--main);
}
#cookie-customize{}
#cookie-customize:hover{}
#cookie-reject-all{
}
#cookie-reject-all:hover{}
.cookie-buttons button:hover{
    color: var(--main);
}
#cookie-necessary {
  
}
#cookie-necessary:hover {
}
/* --- Модальное окно --- */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  font-family: 'Futura PT';
}
.cookie-modal.is-open {
  display: flex;
}
body.cookie-modal-open {
  overflow: hidden;
}
.cookie-modal-content {
  background: #fff;
  color: #333;
  max-width: 600px;
  width: 90%;
  padding: 30px;
  border-radius: 8px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.cookie-modal-content h3 {
  margin: 0 0 20px 0;
  font-size: 22px;
  color: var(--yell);
  font-weight: 500;
}
.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.cookie-category:last-of-type {
  border-bottom: none;
}
.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-category-name {
  font-weight: 500;
  font-size: 16px;
  color: #222;
}
.cookie-category-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 15px 6px;
  border-radius: 20px;
  font-weight: 500;
}
.cookie-category-badge.always {
  background: var(--yell);
  color: #fff;
  border: 1px solid var(--yell);
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 1.25;
  color: #555;
  margin: 0 0 5px 0;
}
.cookie-category-services {
  font-size: 12px;
  color: #888;
  margin: 5px 0 0 0;
  font-style: italic;
}
.cookie-modal-actions {
  text-align: center;
  margin-top: 25px;
}
#cookie-save-preferences {
  background: var(--yell);
  color: #fff;
  border: none;
  padding: 12px 40px 10px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Futura PT';
}
#cookie-save-preferences:hover {color: var(--main);}
/* --- Toggle switch --- */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--yell);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--yell);
}
input:checked + .slider:before {
  transform: translateX(20px);
}
.footer__social{
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
    flex: 0 0 16%;
}
.footer__social p{
    color: #fff;
    font-size: 12px;
    text-align: right;
    margin-top: 15px;
}
@media screen and (max-width : 1140px) {
.cpent{        flex-direction: column;}
}
@media screen and (max-width : 992px) {
    table.ester th {
        border: 1px solid #a3a3a3;
        padding: 5px 5px;
        font-size: 11px;
        line-height: 14px;
    }
    table.ester td {
        border: 1px solid #a3a3a3;
        padding: 5px;
        font-size: 10px;
    }
    .bottom-block-info {
        flex-direction: column;
    }
  .cpent {
    flex-direction: column;
  }
  .cpp p {
    text-align: center;
    font-size: 13px;
  }
  .cpp p a {
    /* font-size: 12px; */
  }
  .cookie-buttons button{
    font-size: 10px;
    padding: 10px 10px 8px;
    flex: 1 0 auto;
}
  .cookie-buttons {
    justify-content: space-between;
    width: 100%;
  }
  .cookie-modal-content {
    padding: 20px;
  }
}