.howto {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
user-select: none;
pointer-events: none;
}
.auction-stats h3, .dkp-stats h2 {text-align: center;
  padding: 2vh;}
.page-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
top:-5%;
}
/* Состояние при включенном чекбоксе */
#toggleHowTo:checked ~ .howto {
  opacity: 1;
  pointer-events: auto; /* Разрешаем клики */
user-select: auto;
}
.pax-image {position:relative; margin:0 auto;display: block;}
 
/* Стили кнопки */
.toggle-button {
position:fixed;
  display: block;
top:0;
left:50%;
transform: translateX(-50%);
  background-color: rgb(37 34 28/1);
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
  padding-top: 5px;
  width: 64px;
height: auto;
padding-bottom: 14px;
  clip-path: polygon(0 0,100% 0,100% 100%,50% calc(100% - 10px),0 100%);
  user-select: none; /* Отключаем выделение текста */
cursor: pointer;
}
.toggle-wrapper
{filter: drop-shadow(1px -1px 5px rgba(220,221,212,.5));}

/* Эффект при наведении */
.toggle-button:hover,.toggle-button:active,.toggle-button:focus {
  padding-top: 14px;
}
/* Кнопка закрыть */
.close-button {
  position: relative;
  top: 0;
margin-left: auto;
  background: none;
rgb(37 34 28/1);
  border: none;
  cursor: pointer;
  user-select: none; /* Отключаем выделение текста */
width:50px !important;
}
.close-button svg{
filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
}
.close-button:hover {
}
.auction-stats a {text-decoration:none; color:#8e7747; transition: all 0.3s ease; font-weight:bold;}
.auction-stats a:hover, .auction-stats a:focus {text-decoration:underline; color:#824416;transition: all 0.3s ease;}
.auction-stats a:active, .auction-stats a:visited {text-decoration:underline; color:#824416;transition: all 0.3s ease;}

