.wrapperIcon{
  display: flex!important;
  justify-content: center;
  align-items: center; 
}

.wrapperIcon svg {
  fill: rgba(204, 204, 204, 0.8);  
  transition: all 0.4s;
}

.wrapperIcon:hover svg {
  fill: white;  
}
/** Numbers block */
.numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 182px));
  justify-content: center;
  margin-top: 48px;
}

.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 182px;
  /*min-width: 182px;*/
}

.numbers__item-title, .numbers__item-description  {
  font-family: "Akrobat", Sans-Serif;
  font-weight: 900;
}

.numbers__item-title {
  font-size: 85px;
}

.numbers__item-description {
  font-size: 25px;
  text-transform: uppercase;
}

.numbers-rounds {
  background-image: url("/img/green_rectangles.png");
  background-position: 100% 100%;
}

.numbers-hours {
  background-image: url("/img/pink_rectangles.png");
  background-position: 100% 0%;
}

.numbers-questions {
  background-image: url("/img/blue_rectangles.png");
  background-position: 100% 100%;
}

.numbers-rounds, .numbers-hours, .numbers-questions {
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .numbers {
    grid-gap: 20px;
  }

  .numbers__item-title {
    font-size: 48px;
  }

  .numbers__item-description {
    font-size: 15px;
  }
}


@media (max-width: 576px) {
  .numbers {
    margin-top: 40px;
    grid-template-columns: repeat(3, 80px);
  }

  .numbers__item-title {
    margin: -15px 0 0 -10px;
  }
  .numbers__item-title.ml{
    margin-left: 6px;
  }

  .numbers__item-description{
    margin: 0 0 0 -10px;
  }

  .numbers__item {
    min-height: 88px;
    background-size: 78px;
  }

  .numbers-rounds, .numbers-questions  {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .numbers-hours {
    align-items: flex-start;
    justify-content: flex-end;
  }
}

/** About game block */
.about-game {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 60px;
}

.about-game__item {
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  grid-gap: 26px;
  padding: 25px;
}

.about-game__item-description {
  font-family: "Akrobat", Sans-Serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
}

.about-game__item:nth-child(1) {
  border: 8px solid #2AE2A3;
}

.about-game__item:nth-child(2) {
  border: 8px solid #FFE400;
}

.about-game__item:nth-child(3) {
  border: 8px solid #FC1AA3;
}

.about-game__item:nth-child(4) {
  border: 8px solid #27B3F4;
}

@media all and (min-width: 993px){
  .about-game__item{
    min-height: 196px;
  }
}

@media (max-width: 992px) {
  .about-game {
    grid-gap: 10px;
  }

  .about-game__item {
    padding: 15px;
    min-height: 118px;
  }

  .about-game__item-description {
    font-size: 15px;
    line-height: 18px;
  }
}

@media (max-width: 576px) {
  .about-game {
    grid-template-columns: 1fr;
  }
  .about-game__item {
    padding: 10px 11px;
    /* min-height: initial; */
  }
  .about-game__item {
    grid-template-columns: auto 1fr;
    grid-gap: 19px;
    padding: 10px 11px;
    height: 127px;
  }
  .about-game__item-description {
    padding: 10px;
  }
  .about-game__item-description br {
    display: none;
  }
}
@media all and (max-width: 374px){
  .about-game__item-description {
    padding: 0;
  }
}

/** Media block */
.media {
  display: flex;
  width: 100%;
  grid-column-gap: 30px;
  margin-top: 80px;
}

.media > .photos {
  width: 55%;
}

.media > .questions {
  width: calc(45% - 30px);
}

.media__title {
  margin-bottom: 24px;
  font-size: 40px;
}

.photos__title {
  color: #27b3f4;
}

.questions__title {
  color: #fc1aa3;
}

.media .photos img {
  object-fit: cover;
}

.about-game__item-picture{
  max-width: max-content;
}

@media (max-width: 1200px) {
  .media > .photos, .media > .questions {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .media {
    flex-wrap: wrap;
  }

  .about-game__item-picture{
    max-width: auto;
  }

  .media > .photos, .media > .questions {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container.media-container {
    padding: 0 !important;
  }

  .photos__title, .questions {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/** Questions */
.questions-content {
  border: 8px solid #FC1AA3;
  padding: 32px;
  background: #421B75;
  min-height: 500px;
  max-height: 540px;
  height: 100%;
  position: relative;
}

.questions-content__tabs {
  display: flex;
  align-items: flex-start;
  grid-column-gap: 16px;
  position: relative;
}

.questions-content__tabs .tab {
  color: #8C63B7;
  font-family: "Akrobat", Sans-Serif;
  font-weight: 900;
  font-size: 20px;
  cursor: pointer;
  padding-bottom: 6px;
  height: auto;
}

.questions-content__tabs .tab.active {
  color: #fc1aa3;
  border-bottom: 2px solid #fc1aa3;
}

.questions-content__tab{
  margin-top:24px;
  height: 412px;
  overflow: auto;
}

.questions-content__tab::-webkit-scrollbar-thumb {
  width: 4px!important;
  height: 66px!important;
  background-color: #8C63B7!important;
}

.questions-slider-item__title {
  font-size: 18px;
  line-height: 24px;
  font-family: "Raleway", Sans-Serif;
  font-weight: 700;
}

.questions-arrow, .questions-arrow-without-text {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: none !important;
  justify-content: center;
  align-items: center;
  padding: 10px !important;
  border: 2px solid #27B3F4 !important;
  color: #27B3F4 !important;
  font-size: 16px !important;
  font-weight: 900;
  font-family: "Akrobat", Sans-Serif;
}
.questions-arrow-without-text, .questions-arrow{
  height: 40px !important;
}

.questions-arrow{
  width: auto !important;
}

.slick-prev.questions-arrow-without-text{
  width: 40px !important;
  display: none;
}


.questions-arrow.slick-next {
  right: 0;
  top: auto;
  bottom: -130px;
}

.questions-arrow__prev {
  transform: rotate(-180deg);
}

.questions-arrow.slick-prev {
  left: 0;
  top: auto;
  bottom: -130px;
}

.image-component__preview-image {
  max-width: 78px;
  max-height: 78px;
  object-fit: contain;
  opacity: 1;
  transition: opacity .2s;
  cursor: pointer;
}

.image-component__preview-image:hover{
  opacity: 0.5;
}

.image-component__preview{
  position: relative;
}
.image-component__preview .icon_search{
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.image-component__full {
  position: absolute;
  /*height: calc(100% + 28px); !* высота табов *!*/
  width: 100%;
  top: -28px;
}

.audio {
  display: flex;
  align-items: center;
  grid-column-gap: 20px;
  margin-top: 15px;
}

.block__answer .audio__button {
  z-index: 1001;
}

.audio__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  grid-column-gap: 9px;
  width: 137px;
  padding: 10px 0;
  border: 2px solid #FFE400;
  color: #FFE400;
  background: transparent;
  font-family: "Akrobat", Sans-Serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.audio__duration {
  color: #8C63B7;
  font-size: 16px;
  font-weight: 900;
  font-family: "Akrobat", Sans-Serif;
}

.answers {
  list-style: none inside;
  margin-top: 12px;
  max-width: 387px;
  min-height: 176px;
}

.wrapper-slide-open ~ .answers{
  min-height: fit-content;
}

.answers__item {
  display: flex;
  padding: 8px 5px;
  border: 2px solid #7742A9;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
}

.answers__item:hover {
  color: #FFE400;
  border-color: #FFE400;
}

.answers__item:hover::before {
  color: #FFE400;
}

.answers__item::before {
  content: attr(data-symbol);
  color: #CDCFD7;
  margin-right: 8px;
}

.answers__item.error-answer,
.answers__item.error-answer:hover,
.answers__item.error-answer::before {
  color: #FF002E;
  border-color: #FF002E;
}

.answers__item.correct-answer,
.answers__item.correct-answer:hover,
.answers__item.correct-answer::before {
  background: #FFE400;
  color: #212226;
}

.answers__item.error-answer::before{
  background: url("/img/incorrect_answer.svg") 18px/18px  no-repeat ;
  content: '\00a0 \00a0 \00a0'attr(data-symbol);
  width: 40px;
  background-position-x: left;
  text-align: end;

}

/** Bonuses block */
.bonuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minMax(300px, 1fr));
  justify-content: space-between;
  align-items: center;
  grid-gap: 30px;
  margin-top: 80px;
  /* margin-bottom: 80px; */
}

.bonuses__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 8px solid #fc1aa3;
  padding: 20px;
  height: 100%;
}

.bonuses__item-image {
  margin-top: -58px;
}

.bonuses__item-text {
  font-family: "Akrobat", Sans-Serif;
  text-align: center;
  font-weight: 900;
  font-size: 25px;
  line-height: 35px;
  margin-top: -88px;
}

.bonuses__item:nth-child(1) .bonuses__item-text {
  margin-top: -80px;
}

.bonuses__item:nth-child(2) {
  border-color: #FFE400;
}

.bonuses__item:nth-child(3) {
  border-color: #27B3F4;
}

/* slick-slider custom */
.questions-content .slick-slider.slick-initialized{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  height: 100%;
  grid-column-gap: 15px;
  max-width: 397px;
}
.questions-content .slick-slide {
  width: 395px;
}

.questions-content .questions-slider-item{
  width: 100%;
  min-width: 399px;
}

.questions-content .slick-list{
  order: -1;
  height: 324px;
}

.questions-content .slick-prev, .questions-content .slick-next{
  position: initial;
  transform: none;
  align-self: flex-end;
  margin-top:10px;
  text-transform: uppercase;
}
.questions-content .slick-next{
  margin-right: 8px;
}
.questions-content .slick-prev[disabled="true"], .questions-content .slick-next[disabled="true"]{
  opacity: 0.5;
}
/* slider media block */
#game_photos .slick-list.draggable{
  height: 540px!important;
}
#game_photos .slick-track{
  height: 100%;
}

/* style for vue-slick-carousel */
.wrapper-slide {
  position: relative;
  overflow: hidden;
  margin-right: 8px;
}

.wrapper-slide-open {
  overflow: visible;
  height: auto!important;
}

.wrapper-slide-open .toggle {
  display: none;
}



.toggle {
  background-image: -webkit-linear-gradient(180deg, rgba(66, 27, 117, 0) 0%, #421B75 100%);
  background-image: -moz-linear-gradient(180deg, rgba(66, 27, 117, 0) 0%, #421B75 100%);
  background-image: -o-linear-gradient(180deg, rgba(66, 27, 117, 0) 0%, #421B75 100%);
  background-image: linear-gradient(180deg, rgba(66, 27, 117, 0) 0%, #421B75 100%);
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.toggle_full_question{
  font-weight: 800;
  font-size: 19px;
  line-height: 20px;
  text-decoration-line: underline;
  color: #8C63B7;
  cursor: pointer;
  margin-top: 4px;
}
 .wrapper_full_image{
   display: none;
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
 }

 .wrapper_full_image.open-image{
  display: flex;
  z-index: 100;
  flex-direction: column;
  padding: 26px 34px;
  background: #421B75;
 }

 .wrapper_full-image{
  height: 418px;
  width: 100%;
  align-self: center;
  margin-top: 20px;
 }

 #full_image_question{
   width: 100%;
   height: 100%;
   object-fit: contain;
 }

.btn_full-image{
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #27B3F4;
  padding: 8px 15px;
  align-self: flex-end;
  font-family: Akrobat;
  font-style: normal;
  display: flex;
  align-items: center;
  border: 2px solid #27B3F4;
  background: transparent;
}

.btn_full-image::after {
  display: block;
  content: ' ';
  background-image: url("/img/close_full.svg");
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
  margin-left: 6px;
}

.media-component{
  width: max-content;
  margin: 14px 0 6px;
}

.questions-content__tab .slick-dots{
  position: initial;
  bottom: 0;
  width: auto;
  display: flex!important;
  align-items: flex-end;
  margin-bottom: 1px;
  order: -1;
  flex-grow: 1;
}
.count_questions{
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #8C63B7;
  font-family: Akrobat;
  font-style: normal;
}
.count_questions_current{
  color: #27B3F4;
}

/* animate block */

.wrapper__animate_answer{
  display: none;
  position: absolute;
  z-index: 1000;
}
.animate_answer{
  position: relative;
  height: 100%;
  width: 100%;
}
.animate_el{
  width: 2px;
  height: 2px;
  position: absolute;
  background: #FF002E;
  opacity: 1;
  transition: all .6s;
}
.animate_el.correct {
  background:  #FFE400;
}
.animate_el:nth-child(1){
  top: 0;
  left: -7px;
}
.animate_el:nth-child(2){
  top: -7px;
  left: 0;
}
.animate_el:nth-child(3){
  top: -5px;
  left: -5px;
}
.animate_el:nth-child(4){
  bottom: 0;
  left: -7px;
}
.animate_el:nth-child(5){
  bottom: -7px;
  left: 0;
}
.animate_el:nth-child(6){
  bottom: -5px;
  left: -5px;
}
.animate_el:nth-child(7){
  top: 0;
  right: -7px;
}
.animate_el:nth-child(8){
  top: -7px;
  right: 0;
}
.animate_el:nth-child(9){
  top: -5px;
  right: -5px;
}
.animate_el:nth-child(10){
  bottom: 0;
  right: -7px;
}
.animate_el:nth-child(11){
  bottom: -7px;
  right: 0;
}
.animate_el:nth-child(12){
  bottom: -5px;
  right: -5px;
}


.wrapper__animate_answer.start .animate_el{
  opacity: 0;
}
.wrapper__animate_answer.start .animate_el:nth-child(1){
  top: 0;
  left: -17px;
}
.wrapper__animate_answer.start .animate_el:nth-child(2){
  top: -17px;
  left: 0;
}
.wrapper__animate_answer.start .animate_el:nth-child(3){
  top: -13px;
  left: -13px;
}
.wrapper__animate_answer.start .animate_el:nth-child(4){
  bottom: 0;
  left: -17px;
}
.wrapper__animate_answer.start .animate_el:nth-child(5){
  bottom: -17px;
  left: 0;
}
.wrapper__animate_answer.start .animate_el:nth-child(6){
  bottom: -13px;
  left: -13px;
}
.wrapper__animate_answer.start .animate_el:nth-child(7){
  top: 0;
  right: -17px;
}
.wrapper__animate_answer.start .animate_el:nth-child(8){
  top: -17px;
  right: 0;
}
.wrapper__animate_answer.start .animate_el:nth-child(9){
  top: -13px;
  right: -13px;
}
.wrapper__animate_answer.start .animate_el:nth-child(10){
  bottom: 0;
  right: -17px;
}
.wrapper__animate_answer.start .animate_el:nth-child(11){
  bottom: -17px;
  right: 0;
}
.wrapper__animate_answer.start .animate_el:nth-child(12){
  bottom: -13px;
  right: -13px;
}


/* answer */
.block__answer {
  margin: 20px 0;
  flex-grow: 1;
}
.answer__header{
  display: flex;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #CDCFD7;
  flex-wrap: wrap;
  grid-column-gap: 10px;
}
.answer_correct-text{
  color: white;
}

.answer__details{
  margin-top: 16px;
}

.answer__details .details_heading{
  color: #CDCFD7;
  font-weight: 700;
}

.answer__details .details_text{
  color: white;
  font-weight: 400;
  margin-top: 4px;
  margin-right: 8px;
}

.answer__details .details_heading,
.answer__details .details_text{
  font-size: 16px;
  line-height: 26px;
  word-break: break-word;
}

/* result */

.wrapper__result_answer{
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  z-index: -101;
  background: #421B75;
  align-items: center;
  padding: 40px 25px;
  max-height: 525px;
  justify-content: space-between;
}
.wrapper__result_answer.open{
  z-index: 101;
}
.result_answer-head{
  font-weight: 900;
  font-size: 40px;
  line-height: 40px;
  color: white;
  margin-top: 30px;
  margin-bottom: 0;
}
.result_answer-content,
.result_answer-text{
  font-weight: 900;
  font-size: 24px;
  line-height: 35px;
  color: white;
}
.result_answer-content{
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result_answer-content .dedicated_answer{
  color: #FFE400;
}
.dedicated_answer{
  min-height: 35px;
}
.result_answer-text{
  min-height: 70px;
}
.result_answer-line,
.result_answer-text,
.result_answer-desc{
  margin-top: 24px;
}
.result_answer-line{
  width: 124px;
  min-height: 2px;
  background: #8C63B7;
}

.result_answer-text{
  text-align: center;
  font-size: 20px;
  line-height: 28px;
}

.result_answer-tab{
  color: #FC1AA3;
  border-bottom: 2px solid #FC1AA3;
}
.result_answer-tab:hover{
text-decoration:none;
}

.result_answer-desc{
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: white;
  text-align: center;
}
.result_answer-btn{
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 10px 32px;
  background: #FC1AA3;
  box-shadow: 0px 4px 0px #A70C55;
  justify-self: flex-end;
  margin-top: 35px;
}
.media-component.answer-image .image-component__preview-image{
  max-width: 290px;
  max-height: 228px;
}
.questions-content .slick-next > div {
  display: flex;
  align-items: center;
}
.questions-content .slick-next .questions-arrow__next{
  margin-left: 3px;
}
.questions-content__shadow-tabs{
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.1s;
}
.questions-content__tab .slick-dots>li{
  opacity: 0;
}
.questions-content__tab .slick-track,
.questions-content__tab .slick-slide,
.questions-content__tab .slick-slide > div,
.questions-content__tab .slick-slide .questions-slider-item{
  height: min-content;
}
.questions-content__tab .slick-slide .questions-slider-item{
  display: flex!important;
  flex-direction: column;
  justify-content: space-between;
  height:max-content;
  padding-left: 1px;
}
.questions-content__tab .slick-slide .questions-slider-item.auto-height{
  height:100%;
  min-height: 332px;
}

@media all and (max-width: 768px){
  .questions-content .slick-slider.slick-initialized{
    max-width: 650px;
  }
}
@media all and (max-width: 700px){
  .questions-content .slick-slider.slick-initialized{
    max-width: 650px;
  }
  .questions-content .questions-slider-item{
    min-width: min-content;
  }
  .questions-content .slick-next{
    margin-right: 0;
  }
}
@media all and (max-width: 500px){
  .questions-content{
    padding: 20px;
  }
  .questions-content .slick-slider.slick-initialized{
    max-width: 330px;
  }
  .questions-content .questions-slider-item{
    min-width: min-content;
  }
  .questions-content .questions-arrow.slick-arrow.slick-next{
    width: 40px!important;
  }
  .questions-content .questions-arrow.finish.slick-arrow.slick-next{
    width: max-content!important;
  }
  .questions-content .questions-arrow.slick-arrow.slick-next span:not(.show_result_text){
    display: none;
  }
  .questions-content__tabs .tab{
    white-space: nowrap;
  }
  .questions-content__tabs{
    overflow-x: auto;
  }
}
@media all and (max-width: 450px){
  .wrapper__result_answer.open{
    padding: 19px 13px;
  }
  .questions-content__shadow-tabs{
    display: block;
    width: 20px;
    background: linear-gradient(270deg, #421B75 0%, rgba(66, 27, 117, 0) 100%);
    height: 100%; 
  }
  .btn_full-image{
    align-self: center;
  }
  .result_answer-content{
    margin-top: 32px;
  }
  .result_answer-content{
    font-size: 20px;
    line-height: 28px;
  }
  .result_answer-text{
    font-size: 18px;
    line-height: 28px;
  }
  .result_answer-btn{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .dedicated_answer{
    min-height: 28px;
  }
  .result_answer-text{
    min-height: 84px;
  }
}
@media all and (max-width: 375px){
  .questions-content .slick-slider.slick-initialized{
    max-width: 296px;
  }
  .media-component.answer-image .image-component__preview-image{
    max-width: 286px;
  }
  
  .result_answer-text{
    font-size: 19px;
  }
  .questions-content{
    padding: 12px;
  }
}
@media all and (max-width: 325px){
  .result_answer-text{
    font-size: 16px;
  }
  .result_answer-content{
    font-size: 19px;
  }
  .result_answer-btn{
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 15px;
  }
  .result_answer-desc{
    text-align: center;
  }
  .media__title{
    font-size: 32px;
  }
  .questions-content .slick-slider.slick-initialized,
  .media-component.answer-image .image-component__preview-image{
    max-width: 242px;
  }
  .answer__header{
    flex-wrap: wrap;
    width: 70%;
    line-height: 28px;
  }
  .answer_correct-text{
    margin-left: 0;
  }
  .questions-arrow{
    font-size: 11px!important;
  }
  .slick-dots{
    flex-grow: 0;
  }
  .questions-content .slick-slider.slick-initialized{
    justify-content: flex-start;
  }
}

.what-happens-row .what-happens-info{
  margin: 0 auto 35px;
}

/* dropdown */
.what-happens-info__buttons-mobile{
  display: none;
}

.dropdown-content .what-happens-info-btn {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0; 
}

.dropbtn {
	width:100%;
	border: none;
	background-color: transparent;
	text-transform: uppercase;
	padding:0 0 0 15px;
  -webkit-box-shadow: 0px 4px 0px #D29A21;
  box-shadow: 0px 4px 0px #D29A21;
}

.dropdown.openDrop .dropbtn{
  -webkit-box-shadow: 0px 2px 0px #D29A21;
  box-shadow: 0px 2px 0px #D29A21;
}

.dropbtn>a{
	width:100%;
	color:black;
}

.dropbtn::after{
	margin-left: 18px;
	content: '';
	display: inline-block!important;
	width: 16px;
	height: 11px;
	background: url("/img/corp_dropdown.svg");
	transition: all .2s ease;
}

.dropdown {
    position: relative;
    max-height: 42px;
    line-height: 42px;
    background: #FFE400;
    color: #000000;
    font-family: "Akrobat - Black";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.25px;
    outline: none;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}
.dropdown.openDrop{
  max-height: 124px;
}

.dropdown-content {
	width:224px;
  display: none;
  /* position: absolute; */
  z-index: 5;
	top:56px;
  margin-top: 2px;
}

.dropdown.openDrop >.dropbtn:after{
	transition: all .2s ease;
	transform: rotate(180deg);
}

.dropdown-content>div{
	width:100%;
	background-color: #FFE400;
}
.dropdown-content>div:last-child{
	box-shadow: 0px 4px 0px #D29A21;
}
.dropdown-content a {
	margin: 0 auto;
	width: 85%;
	height:52px;
    color: black;
    display: block;
	text-transform: uppercase;
	text-align: start;
}
.dropdown-content div:not(:last-child) a{
	border-bottom:2px solid #D29A21;
}
.show {
	display:block;
}
.buttons-block .dropdown{
  margin-bottom:24px;
}
.dropdown .dropdown-content{
  width: 100%;
  top:44px;
}
.dropdown .dropdown-content a{
  width: 100%;
}
.what-happens-info__buttons-mobile .btn-warning.mobile{
  background-color: transparent;
  text-align: center;
}

/*end dropdown */
@media all and (max-width: 1200px){
  .media .what-happens-photo-slider-arrow {
    bottom: 35px;
  }
  .media .what-happens-photo-slider .slick-list {
    padding-bottom: 0px;
  }
}

@media all and (max-width: 992px){
  .media .what-happens-photo-slider-arrow {
    bottom: 75px;
  }
  .media .what-happens-photo-slider .slick-list {
    padding-bottom: 40px;
  }
} 
@media all and (max-width: 989px) and (min-width: 768px){
  .bonuses{
    row-gap: 45px;
  }
  .bonuses__item:nth-child(3){
    grid-column: 1 / 3; 
    place-self: center;
  }
  .bonuses__item{
    height: 230px;
    max-width: 354px;
  }
  
}
@media all and (max-width:767px){
  #what-happens-anchor .what-happens-row{
    margin-right: -15px;
    margin-left: -15px;
  }
  .what-happens-info .what-happens-info__buttons{
    display: none;
  }
  .what-happens-info .what-happens-info__buttons-mobile{
    display: block;
  }
  .what-happens-row .what-happens-info{
    margin: 11px auto 0;
  }
  .media{
    margin-top: 40px;
  }
  .media__title{
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  #game_photos .slick-list.draggable{
    height: auto!important;
  }
  .media .what-happens-photo-slider-arrow {
    bottom: 55px;
  }
  #game_photos .what-happens-photo-slider-item-info-title{
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  #game_photos .what-happens-photo-slider-item-info-date{
    font-size: 14px;
    line-height: 24px;
  }
  .photos .btn {
    padding: 0 19px;
  }
  .bonuses{
    grid-gap: 10px;
    margin-top: 40px;
    margin-bottom: 0;
  }
  .bonuses__item{
    padding: 7px 16px;
  }
  .bonuses__item{
    flex-direction: row;
  }
  .bonuses__item-image,
  .bonuses__item-text,
  .bonuses__item:nth-child(1) .bonuses__item-text{
    margin-top: 0;
  }
  .bonuses__item-text{
    font-size: 20px;
    line-height: 26px;
    text-align: left;
  }
  .bonuses__item-image{
    max-width: 50%;
    margin: 10px 10px -30px -20px;
  }
  .bonuses__item-text{
    width: 100%;
  }
  .bonuses__item{
    height: 155px;
  }
}
@media all and (max-width: 375px){
  .bonuses__item{
    height: 134px;
  }
  .about-game__item{
    height: initial;
  }
  .about-game__item:nth-child(3),
  .about-game__item:nth-child(4){
    max-height: 123px;
  }
}
@media all and (max-width:320px){
  .bonuses__item{
    max-width: calc(100% - 10px);
  }
  .bonuses__item{
    height: 112px;
  }
}
@media all and (max-width: 576px){
  .about-game__item-picture{
    height: 87px;
  }
}
