@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap');

.topContentPanelUser{
  display: grid;
  width: 100%;
}

.buttonLogin {
  width: 100%;
  display: inline-block;
  padding: 10px 20px;
  background-color: #37485a;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.contentUser{
  display: table-row;
  background-color:#292d30;
  border-radius: 5px;
  width: 200px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.contentUser:hover{
  background-color:#28343f;
}
.contentUser span{
  margin-left: 10px;
  display: block;
  text-align: left;
  color: white;
  width: 100%;
}

.contentUser .userNameTopBar{
  font-size: 18px;
}

.contentLoginBar{
  display: grid;
  justify-content: center;
}

.textLoginLabel{
  width: 100%;
  text-align: center;
}

.spanoffset{
  margin-left: 20px;
  min-height: 100vh; /* Минимальная высота экрана */
            display: flex;
            flex-direction: column;
}


.contentsearch{
  padding: 10px;
  display: grid;
  grid-template-columns: auto;
  gap: 10px;
}

.contentItems{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 20px;
}

.contentItem{
  display: grid;
  align-items: stretch;
  width: 150px;
  min-height: 200px;
  height: auto;
  margin-top: 5px;
  box-sizing: border-box;
  float: left;
  text-align: center;
  border-radius: 1px;
  cursor: pointer;
  padding-top: 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  transition: .4f;
  background: #212529;
}

.contentItem:hover{
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translate(0px, -8px);
}

.nameItemText{
  font-size: 18px;
  text-align: center;
  margin-top: 0px;
  line-height: 90%;
  margin-left: 5px;
  margin-right: 5px;
}

.openAuction{
  text-align: center;
  font-size: 24px;
  color: black;
  width: 100%;
  height: 40px;
  border: 0;
  outline: none;
  cursor: pointer;
  margin-top: auto;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background: #43c2fd;
}

.nameBlowout{
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.site{
  display: grid;
  width: 100%;
  margin-top: 5px;
  background: transparent;
}

.blowoutContent{
  display: grid;
  background-color: #212529;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 1px;
  border-bottom: 2px solid #c5fd43;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.nameBlowoutTimer{
  color: #c4c4c4;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.topBarAuction{
  display: grid;
  width: 100%;
}

.nameTopBarAuction{
  color: white;
  text-align: center;
  font-size: 1.5rem;
  width: 100%;
}

.imageNotFound{
  width: 75%;
}

.historyView{
  width: 100%;
  background-color: #212529;
}

.chart_div{
  width: 100%;
}

.notItemsAuction{
  color: white;
  font-size: 1.5rem;
  text-align: center;
}

.notItemHistory{
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.5rem;
}

.spanEar{
  position: absolute;
  background: url(../image/s4.png);
  pointer-events: none;
  width: 50px;
  height: 50px;
  background-size: cover;
  animation: snowflakes 2s linear infinite;
}

/* Новые стили для футера */
.footer {
  display: grid;
  height: 100px;
  background-color: #31373d;
  color: #fff;
  padding: 5px;
  justify-content: center;
  position: fixed;
  bottom: 0px;
  width: 100%;
  gap: -20px;
}

.footer h1 {
  height: auto;
  font-size: 18px;
  color: #ffd700; /* Цвет золота *//* Небольшой отступ снизу */
  margin-bottom: -15px;
}

.footer p {
  margin-bottom: -5px;
  text-align: center;
  width: 100%;
  height: 15px;
}

.footer .info {
  display: grid;
  justify-content: center; /* Центрирование содержимого по горизонтали */
}

@keyframes snowflakes{
  0%{
    opacity: 1;
    filter: hue-rotate(0deg);
  }

  100%{
    transform: translate(50%, 1000%);
    opacity: 0;
    filter: hue-rotate(500deg);
  }
}

@media screen and (max-width: 990px) {
  .contentUser{
    width: 100%;
  }
}