/*Header*/
  .uc-nav-light, .uc-nav-dark {
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* чтобы не мешать кликам */
    opacity: 0;
    z-index: 999;
  }
  
/*  .uc-nav-dark .t396__artboard  {
    background-color: #E3E0D0D9 !important;
  }
  
  .uc-nav-light .t396__artboard {
    background-color: #1D1511D9 !important;
  }*/
  
  .uc-nav-light.active, .uc-nav-dark.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
  }

/*Button telegram*/
.btn-wrapper {
  display: flex;
  justify-content: start;
  align-items: start;

  box-sizing: border-box;

  margin: 0;
  padding: 0;
}

.btn-tg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  box-sizing: border-box;
  margin: 0;
  padding: 20px 25px;
  width: 100%;
  height: 55px;

  text-decoration: none;
  text-transform: uppercase;

  transition: all 0.2s ease;
}

.btn-yellow {
  background-color: #F3D171;

  color: #1D1511 !important;
}

.btn-yellow:hover {
  background-color: #FDCB44;
}

.btn-yellow:disabled {
  background-color: #413933;
}

.btn-dark {
  border: 1px solid #A2998F;

  color: #E3E0D0 !important;
}

.btn-dark:hover {
  border-color: #F3D171;

  color: #F3D171 !important;
}

.btn-dark:disabled {
  background-color: #413933;

  color: #413933;
}

.btn-tg svg {
  display: inline-block;

  position: relative;
  top: -2px;

  flex-shrink: 0;

  vertical-align: middle;

  fill: currentColor !important;
}

.btn-tg span {
  font-family: Anticva, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.36px;
}

/*Buttons social in footer*/
.btn-socials-icon svg path,
.btn-socials-text a,
.btn-legal a,
.btn-legal a::after {
  transition: all 0.2s ease;
}

.btn-socials-text a {
  background-color: #1D1511 !important;
}

.btn-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background-color: #A2998F;
}

.btn-socials-icon:hover svg path,
.btn-socials-text:hover a {
  fill: #F3D171;
  color: #F3D171 !important;
}

.btn-legal:hover a {
 color: #E3E0D0 !important; 
}

.btn-legal:hover a::after {
  background-color: #E3E0D0;
}

.btn-socials-icon:disabled svg path,
.btn-socials-text:disabled a {
  fill: #58524A;
  color: #58524A !important;
}

.btn-legal:disabled a {
 color: #58524A !important; 
}

.btn-legal-underline:hover {
  background-color: #58524A;
}