@font-face {
  font-family: 'Beer Money';
  src: url(../fonts/beer.ttf);
  font-weight: normal;
  font-style: normal;
}
body.board {
  background: url(../images/black.jpg) 0 0 / cover no-repeat;
  position: relative;
  height: 100vh;
  max-height: 100vh;
  padding: 35px 50px 50px;
  color: #fff;
  font-family: 'Beer Money';
  font-size: 40px;
  line-height: 1;
}
.z-index-2 {
  position: relative;
  z-index: 2;
}
.overlay-background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.5);
}
h2 {
  color: #ef7f1b;
  font-size: 1em;
}
.menu {
  margin-top: 10px;
  padding: 0;
  font-size: 0.9em;
}
.menu > li {
  align-items: center;
  display: flex;
  margin-bottom: 0.5em;
}
.menu > li::before {
  content: '';
  border-bottom: 5px dotted #ccc;
  flex-grow: 1;
  order: 2;
  margin: 0 15px;
}
.menu > li .product .description {
  font-size: 0.55em;
  color: #ef7f1b;
}
.menu .value {
  order: 3;
  list-style: none;
  padding: 0;
}
.menu .value li {
  padding: 0;
  margin: 0;
}
.menu .value li .volume {
  font-size: 0.7em;
}
.menu .value .price {
  font-size: 1em;
}
.menu .value .price::after {
  font-size: 0.6em;
  content: 'руб.';
}
/*.tara {*/
/*  position: fixed;*/
/*  background: #ef7f1b;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  padding: 10px;*/
/*  width: 100%;*/
/*  height: 30px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-around;*/
/*}*/
/*.tara p {*/
/*  margin: 0;*/
/*}*/

.swiper {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img, .swiper-slide video {
    object-fit: contain;
    height: 100% !important;
    margin: 0 auto;
}
video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;}


.star-twelve {
    background: #32557f;
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;
}

.star-twelve::before,
.star-twelve::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
    background: #32557f;
}

.star-twelve::before {
    transform: rotate(30deg);
}

.star-twelve::after {
    transform: rotate(60deg);
}

.product .name {
    display: flex;
    align-items: center;
}

.badge {
    font-family: 'Impact';
    text-transform: uppercase;
    background: #ef7f1b;
    padding: 7px;
    font-size: 36px;
    margin-left: 10px;
    box-shadow: 0 0 0 0 rgba(239, 127, 27, 1);
    transform: scale(1);
    --pulse-color: #ef7f1b;
    animation: pulse-var 1.5s infinite;
}

.badge.promotion {
    background: #ef341b;
    box-shadow: 0 0 0 0 rgba(239, 52, 27, 1);
    --pulse-color: #ef341b;
}


@keyframes pulse-var {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--pulse-color) 70%, transparent);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px color-mix(in srgb, var(--pulse-color) 0%, transparent);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--pulse-color) 0%, transparent);
    }
}
