@font-face {
  font-family: 'ma';
  src: url('https://greatgame.click/assets/fonts/ma-Regular.woff2') format('woff2'),
      url('https://greatgame.click/assets/fonts/ma-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Moniqa';
  src: url('https://greatgame.click/assets/fonts/Moniqa-BlackCondensedHeading.woff2') format('woff2'),
      url('https://greatgame.click/assets/fonts/Moniqa-BlackCondensedHeading.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Copilot';
  src: url('https://greatgame.click/assets/fonts/Copilot.woff2') format('woff2'),
      url('https://greatgame.click/assets/fonts/Copilot.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Doloman Pavljenko';
  src: url('https://greatgame.click/assets/fonts/DolomanPavljenkoLight.woff2') format('woff2'),
      url('https://greatgame.click/assets/fonts/DolomanPavljenkoLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mirra Auriolic';
  src: url('https://greatgame.click/assets/fonts/Mirra-Regular.woff2') format('woff2'),
      url('https://greatgame.click/assets/fonts/Mirra-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: #000;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: #da4954;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #da4954;
}

* {
  scrollbar-width: 2px;
  scrollbar-color: #000 #da4954;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: sans-serif;
  height: 100%;
  width: 100%;
}

body {
  max-width: 100%;
  min-width: 300px;
}
.dsp_none {
display:none;
}
    .wf-section-top-container-button {
    display: flex;
    width: 250px;
    height: 50px;
    background: url(https://greatgame.click/assets/images/wf_top_button.svg);
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    }
    .wf-section-top-container-button a {
    color: #f3f3ec !important;
    font-family: 'Doloman Pavljenko';
    text-decoration: none;
    font-size: 40px;
    font-weight: bold;
    }
    .wf-section-top-container-button a:hover { 
    color: #da4954;
    }
    .wheel-container {
    position: relative;
    width: 80vmin;
    height: 80vmin;
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('https://greatgame.click/assets/images/wheel.png');
    background-size: cover;
    background-position: center;
    transition: transform 5s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}

.pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #ff0000;
    z-index: 10;
}

.spin-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.spin-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.result {
    margin-top: 20px;
    font-weight: bold;
    color: #f3f3ec !important;
    font-family: 'Doloman Pavljenko';
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .wheel-container {
        width: 90vmin;
        height: 90vmin;
        max-width: 300px;
        max-height: 300px;
    }

    .pointer {
        top: -15px;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 30px solid #ff0000;
    }

    .spin-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .result {
        font-size: 20px;
    }
}

.container_nav {
  width: 100%;
  max-width: 1400px;
}

.header {
  transform: translateZ(0);
  //position: fixed;
  //top: 0;
  //left: 0;
  width: 100%;
  height: 100px;
  background: #292242;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.header {
  transition: transform 0.3s ease-in-out;
}

.header_hidden {
  transform: translateY(-100%);
}

.toggle_header_button {
  //position: fixed;
  //left: -20px;
  //top: 170px;
  //transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background-color: #da4954;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}



.toggle_header_button span {
  height: 3px;
  width: 15px;
  background: #f3f3ec;
  margin: 4px 0;
  transition: all 0.4s ease-in-out;
}

.toggle_header_button.toggled span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.toggle_header_button.toggled span:nth-child(2) {
  opacity: 0;
}

.toggle_header_button.toggled span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.toggle_header_button_balance {
  //position: fixed;
  //left: -20px;
  //top: 270px;
  //transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background-color: #da4954;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.toggle_header_button_balance img {
    position: absolute;
    width: 25px;
    transition: all 0.4s ease-in-out;
}

.toggle_header_button_balance span {
  background: transparent;
  height: 3px;
  width: 15px;
  margin: 4px 0;
  transition: all 0.4s ease-in-out;
}

.toggle_header_button_balance.toggled span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: #f3f3ec;
}

.toggle_header_button_balance.toggled span:nth-child(2) {
  opacity: 0;
}
.toggle_header_button_balance.toggled img {
  opacity: 0;
}

.toggle_header_button_balance.toggled span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #f3f3ec;
}

.toggle_header_button_fs {
  //position: fixed;
  //left: -20px;
  //top: 220px;
  //transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background-color: #da4954;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.toggle_header_button_fs img {
    position: absolute;
    width: 19px;
    padding-right: 2px;
    transition: all 0.4s ease-in-out;
}

.toggle_header_button_fs span {
  height: 3px;
  width: 25px;
  background: transparent;
  margin: 4px 0;
  transition: all 0.4s ease-in-out;
}

.toggle_header_button_fs.toggled span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #f3f3ec;
}

.toggle_header_button_fs.toggled span:nth-child(2) {
  opacity: 0;
}
.toggle_header_button_fs.toggled img {
  opacity: 0;
}

.toggle_header_button_fs.toggled span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #f3f3ec;
}


.toggle_header_button_games {
  //position: fixed;
  //left: -20px;
  //top: 270px;
  //transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background-color: #da4954;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.toggle_header_button_games img {
    position: absolute;
    width: 20px;
    transition: all 0.4s ease-in-out;
}

.toggle_header_button_games span {
  background: transparent;
  height: 3px;
  width: 15px;
  margin: 4px 0;
  transition: all 0.4s ease-in-out;
}

.toggle_header_button_games.toggled span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: #f3f3ec;
}

.toggle_header_button_games.toggled span:nth-child(2) {
  opacity: 0;
}
.toggle_header_button_games.toggled img {
  opacity: 0;
}

.toggle_header_button_games.toggled span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #f3f3ec;
}

.side_button_container {
    display: flex;
    width: 20px;
    position: fixed;
    flex-direction: column;
    flex-wrap: nowrap;
}
.side_button_container button {
    margin: 0 0 5px 0;
}
@media (max-height: 200px) {
  .side_button_container {
    top:5px;
  }
}
@media (min-height:200px) and (max-height: 250px) {
  .side_button_container {
    top:30px;
  }
}
@media (min-height:250px) and (max-height: 350px) {
  .side_button_container {
    top:70px;
  }
}

@media (min-height:350px) and (max-height: 3000px) {
  .side_button_container {
    top: calc(50% - 40px);
  }
}

#gg_game_singl
{
  width: 100%;
  height: calc(100vh - 100px);
  transition: height 0.3s ease-in-out;
}

#gg_game_singl.header_off
{
  height: 100vh;
}
.tooltip_arrow {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #da4954;
  color: #f3f3ec;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1001;
}

.tooltip_arrow::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #da4954;
}

.tooltip_arrow.visible {
  opacity: 1;
  visibility: visible;
}

.header_left_corner {
  position: fixed;
  left: 15px;
}

.header_center_to_corner_left {
  height: 100px;
  position: fixed;
  left: 95px;
  width: 10%;
  background: url(https://greatgame.click/assets/images/header_pc_menu_center_to_corner.svg);
}

.header_double_line_left {
  position: fixed;
  left: calc(95px + 10%);
}

.header_center_to_one_line {
  height: 100px;
  position: fixed;
  left: calc(175px + 10%);
  width: calc(80% - 350px);
  background: url(https://greatgame.click/assets/images/header_pc_menu_center_to_one_line.svg);
}

.header_double_line_right {
  position: fixed;
  right: calc(95px + 10%);
}

.header_center_romb {
  width: 150px;
  position: fixed;
  right: calc(50% - 75px);
  top: 79px;
}

.header_center_to_corner_right {
  height: 100px;
  position: fixed;
  right: 95px;
  width: 10%;
  background: url(https://greatgame.click/assets/images/header_pc_menu_center_to_corner.svg);
}

.header_right_corner {
  position: fixed;
  right: 15px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 190px);
  margin: 0 auto;
  z-index: 999;
}

.menu_section {
  display: flex;
  flex: 1;
  justify-content: space-around;
  font-size: clamp(12px, 2vw, 18px);
}

.logo {
  width: 100px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 999;
  margin-left: 50px;
}

.burger span {
  height: 3px;
  width: 25px;
  background: #da4954;
  margin: 4px 0;
  transition: 0.4s;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.side_menu {
  position: fixed;
  top: 0;
  right: -80%;
  width: 80%;
  height: 100vh;
  background: #292242;
  z-index: 999;
  transition: 0.3s ease-in-out;
  padding: 100px 20px 20px;
  overflow-y: auto;
}

.side_menu.open {
  right: 0;
}

.side_menu ul {
  list-style: none;
}

.side_menu ul li {
  padding: 15px 0;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
}

.menu_link, .menu_mb_link, .events_link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f3f3ec;
  font-family: 'Doloman Pavljenko';
  padding: 10px;
  font-weight: bold;
  position: relative;
}

.payment_link {
    background-color: #da4954;
    width: fit-content;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #f3f3ec;
    font-family: 'Doloman Pavljenko';
    font-weight: bold;
    position: relative;
    align-content: center;
    align-items: center;
    flex-direction: row;
    margin: 10px 10px 0 0;
    padding: 10px;
}
.payment_link:hover {
    color: #000;
}
.payment_link img {
  width: 20px;
  margin-right: 5px;
  content: url("https://greatgame.click/assets/images/icon_payment.svg");
}

.history_link {
    background-color: #da4954;
    width: fit-content;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #f3f3ec;
    font-family: 'Doloman Pavljenko';
    font-weight: bold;
    position: relative;
    align-content: center;
    align-items: center;
    flex-direction: row;
    margin: 10px 10px 0 0;
    padding: 10px;
    cursor: pointer;
}
.history_link:hover {
    color: #000;
}
.history_link img {
  width: 20px;
  margin-right: 5px;
  content: url("https://greatgame.click/assets/images/icon_history.svg");
}



.menu_link img, .menu_mb_link img {
  width: 20px;
  margin-right: 5px;
  content: url("https://greatgame.click/assets/images/menu_icon_red.svg");
}

.menu_link:hover, .menu_mb_link:hover {
  color: #da4954;
}

.events_link:hover {
    color: #000;
}

.menu_link:hover img, .menu_mb_link:hover img {
  content: url("https://greatgame.click/assets/images/menu_icon_hover.svg");
}

.menu_link_mobile {

}


.result_link{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #da4954;
  font-family: 'Doloman Pavljenko';
  padding: 0px;
  font-weight: bold;
  position: relative;
  font-size: 15px;
}

.result_link img, .menu_mb_link img {
  width: 20px;
  margin-right: 5px;
  content: url("https://greatgame.click/assets/images/menu_icon_red.svg");
}

.result_link:hover, .menu_mb_link:hover {
  color: #f3f3ec;
}

.result_link:hover img, .menu_mb_link:hover img {
  content: url("https://greatgame.click/assets/images/menu_icon_hover.svg");
}

.result_link_mobile {

}

.result_link.player {

}
.result_link.win {

}




main {
  
}
.main_content {
  //padding-top: 100px;
  transition: padding-top 0.3s ease-in-out;
}
.main_content_full {
  margin-top: -100px;
  transition: padding-top 0.3s ease-in-out;
}

.main_content.header_off {
  padding-top: 0px;
}

.profile_section_top {
  //height: calc(100vh - 100px);
  padding-top: 50px;
  //min-height: 700px;
  //background: url(https://greatgame.click/assets/images/bg_index_01.jpg) center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background-color: #292242;
}

.index_section_top {
  height: calc(100vh - 100px);
  min-height: 700px;
  background: url(https://greatgame.click/assets/images/bg_index_01.jpg) center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.index_section_top_container {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.index_section_top_container_name {
  font-size: 30px;
  color: #da4954;
  font-family: 'Doloman Pavljenko';
  font-weight: bold;
}

.index_section_top_container_desc {
  color: #f3f3ec;
  font-family: 'Moniqa';
  font-size: 100px;
}

.index_section_top_container_button {
  display: flex;
  width: 236px;
  height: 150px;
  background: url(https://greatgame.click/assets/images/index-top-button.svg);
  align-content: center;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.index_section_top_container_button a {
  color: #f3f3ec;
  font-family: 'Doloman Pavljenko';
  text-decoration: none;
  font-size: 40px;
  font-weight: bold;
}

.index_section_top_container_button a:hover {
  color: #da4954;
}

.game_types_section {
  background-color: #292242;
}

.game_types_container {
  display: flex;
  position: relative;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

.game_type_left {
  position: initial;
  left: 15px;
}

.game_type_center_point {
  position: absolute;
  top: 16px;
}

.game_type_center {
  width: 40%;
  background: url(https://greatgame.click/assets/images/gg_index_game_type_center_h200.svg);
  height: 200px;
}

.game_type_right {
  position: initial;
  right: 15px;
}
.game_types_slider_container {
  max-width:450px;
}


.game_types_items {
  position: absolute;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.game_type_item {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-top:20px;
}

.game_type_icon {
  width: 75px;
}

.game_type_name {
  font-family: 'Doloman Pavljenko';
  font-size: 20px;
  color: #f3f3ec;
}

.game_type_divider {
  width: 100px;
  border-bottom: 2px solid #f3f3ec;
}

.game_type_button a {
  font-family: 'Moniqa';
  font-size: 30px;
  text-decoration: none;
  color: #d94954;
  letter-spacing: 5px;
  margin-left: 10px;
}

.game_type_subline {
  width: 40%;
  margin: 0 auto;
}

.features_section {
  background-color: #292242;
  padding-top: 20px;
}

.features_border {
  height: 15px;
  background: url(https://greatgame.click/assets/images/gg_game_head_border_element.svg);
}

.features_items {
  display: flex;
  align-content: center;
  align-items: flex-start;
  margin Babel: Presto
    margin-top: 20px;
  justify-content: space-between;
  padding-bottom: 50px;
}

.feature_item.left {
  width: 30%;
  padding: 0 50px 0 0;
}

.feature_item.center {
  width: 30%;
  padding: 0 50px;
  text-align: center;
}

.feature_item.right {
  width: 30%;
  padding: 0 0 0 50px;
  text-align: right;
}

.feature_title {
  font-family: 'Moniqa';
  color: #f3f3ec;
  font-size: 60px;
  letter-spacing: 5px;
  border-top: 2px solid #f3f3ec;
  text-transform: uppercase;
  margin-top: 50px;
}

.feature_desc {
  font-family: 'Doloman Pavljenko';
  color: #f3f3ec;
  font-size: 20px;
}

.features_images {
  position: relative;
  margin-top: 0px;
}

    .feature_image_center {
        position: absolute;
        width: 120px;
        left: calc(50% - 60px);
        top: -40px;
        z-index: 2;
    }
    .feature_image_left {
        position: absolute;
        width: calc(50% - 60px);
        left: 0px;
        top: -40px;
    }
    .feature_image_right {
    position: absolute;
    width: calc(50% - 60px);
    right: 0px;
    top: -40px;
}

.games_section {
  background-color: #000;
}

.games_container {
    padding-bottom: 50px;
}

.games_title {
  font-family: 'Moniqa';
  color: #f3f3ec;
  font-size: 60px;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding-top: 50px;
  text-align: center;
}

.games_content {
  display: flex;
}

.games_menu {
  width: 200px;
}

.games_menu_top {
  margin-bottom: -5px;
}

.games_menu_center {
  height: fit-content;
  background: url(https://greatgame.click/assets/images/gg_index_game_list_menu_center.svg);
  padding-left: 10px;
  color: #f3f3ec;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
}

.games_menu_bottom {
  margin-top: -5px;
}


.games_menu_mobile {
    height: 200px;
    width: 100%;
    position: relative;
}
.games_menu_mobile_image_left {
    background:url(https://greatgame.click/assets/images/gg_index_game_list_menu_left.svg);
    height: 200px;
    width: 93px;
    position: absolute;
    left: 0;
}
.games_menu_mobile_image_right {
    background:url(https://greatgame.click/assets/images/gg_index_game_list_menu_rigth.svg);
    height: 200px;
    width: 93px;
    position: absolute;
    right: 0;
}
.games_menu_mobile_image_body {
    background:url(https://greatgame.click/assets/images/gg_index_game_list_menu_body.svg);
    height: 200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 93px;
}

.games_list {
  width: calc(100% - 220px);
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
}

.game_item {
  width: 300px;
  height: 200px;
  background: url(https://greatgame.click/assets/images/gg_index_game_block.svg);
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  margin-top: 20px;
}

.game_name {
    width: 200px;
    height: 200px;
    word-wrap: break-word;
    writing-mode: sideways-lr;
    padding-left: 10px;
    font-size: 20px;
    font-family: 'Doloman Pavljenko';
    font-weight: 600;
    color: #f3f3ec;
    text-align: center;
}

.game_image {
  height: 190px;
  width: 190px;
  position: absolute;
  left: 85px;
  top: 4px;
}

.results_section {
  background-color: #292242;
}

.results_container {
  position: relative;
  padding-bottom: 50px;
}

.results_head {
  display: flex;
  padding: 50px 50px;
}

.results_head_line_left {
  width: 50px;
  position: absolute;
  left: 50px;
}

.results_head_line_center {
  background: url(https://greatgame.click/assets/images/gg_index_report_head_line_center.svg);
  width: 100%;
  margin: 0 20px;
  height: 50px;
}

.results_head_line_right {
  width: 50px;
  position: absolute;
  right: 50px;
}

.results_title_block {
  display: flex;
  position: relative;
}

.results_head_left {
  width: 167px;
  position: absolute;
  left: 80px;
}

.results_title {
  background: url(https://greatgame.click/assets/images/gg_index_report_head_center.svg);
  width: calc(100% - 334px);
  margin: 0 167px;
  height: 130px;
  text-align: center;
  padding-top: 5px;
  font-size: 60px;
  color: #f3f3ec;
  font-family: 'Moniqa';
  text-transform: uppercase;
  letter-spacing: 10px;
}

.results_head_right {
  width: 167px;
  position: absolute;
  right: 80px;
}

.results_subtitle {
  font-family: 'Doloman Pavljenko';
  position: absolute;
  top: 260px;
  color: #f3f3ec;
  font-size: 30px;
  width: calc(100% - 25px);
  text-align: center;
}

.results_winners_title {
  text-align: center;
  padding: 30px;
  font-size: 30px;
  color: #f3f3ec;
  font-family: 'Moniqa';
  letter-spacing: 5px;
}

.results_winners {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    height: 300px;
    flex-direction: column;
}

.report_item {
  position: relative;
  max-width: 300px;
  width: 400px;
  margin: 0 auto;
}

.report_block_left {
  height: 100px;
  position: absolute;
  left: 0;
}

.report_block_right {
  height: 100px;
  position: absolute;
  right: 0;
}

.report_block_center {
  margin-left: 44px;
  width: calc(100% - 88px);
  height: 100px;
  background: url(https://greatgame.click/assets/images/gg_index_rebort_block_center.svg);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.report_icon {
  height: 80px;
}

.report_info {
  font-family: 'Doloman Pavljenko';
  font-size: 20px;
  color: #f3f3ec;
}

.results_footer {
  display: flex;
  max-width: 700px;
  position: relative;
  margin: 50px auto 0;
}

.results_footer_left {
  width: 14px;
  position: absolute;
  left: 0;
}

.results_footer_center_line_left {
  background: url(https://greatgame.click/assets/images/gg_index_report_footer_center_line.svg);
  width: calc(50% - 25px);
  margin-left: 14px;
  height: 50px;
}

.results_footer_center {
  width: 50px;
  position: absolute;
  left: calc(50% - 25px);
}

.results_footer_center_line_right {
  background: url(https://greatgame.click/assets/images/gg_index_report_footer_center_line.svg);
  width: calc(50% + 50px);
  margin-right: 14px;
  height: 50px;
}

.results_footer_right {
  width: 14px;
  position: absolute;
  right: 0;
}

.results_column_left, .results_column_right {
  position: absolute;
  top: 0;
  height: 700px;
}

.results_column_right {
  right: 20px;
}
.results_column_left {
  left: -30px;
}

.results_column_head {
  width: 50px;
  position: absolute;
  left: 0;
  top: -80px;
}

.results_column_body_line {
  width: 50px;
  position: absolute;
  left: 0;
  height: calc(50% - 25px);
  background: url(https://greatgame.click/assets/images/gg_index_report_col-body_line.svg);
}

.results_column_body {
  width: 50px;
  position: absolute;
  left: 0;
  top: calc(50% - 25px);
}

.results_column_body_line_bottom {
  width: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  height: calc(50% - 75px);
  background: url(https://greatgame.click/assets/images/gg_index_report_col-body_line_bottm.svg);
}

.results_column_foot {
  width: 50px;
  position: absolute;
  left: 0;
  bottom: -80px;
}

.events_section {
    background-color: #000;
}
.events_title {
    width: 100%;
    text-align: center;
    font-size: 60px;
    color: #f3f3ec;
    font-family: 'Moniqa';
    text-transform: uppercase;
    letter-spacing: 10px;
}
.events_title_sub {
    font-family: 'Doloman Pavljenko';
    color: #f3f3ec;
    font-size: 30px;
    width: 100%;
    text-align: center;
}
.events_item {
    width: 200px;
    background: url(https://greatgame.click/assets/images/gg_events_card.svg);
    height: 300px;
    margin: 0 auto;
    position: relative;
}
.events_item_container {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.events_item_title {
    text-align: center;
    font-size: 20px;
    color: rgb(243, 243, 236);
    font-family: Moniqa;
    letter-spacing: 5px;
    padding: 30px 10px 0 10px;
}
.events_item_image {
    text-align: center;
}
.events_item_image img{
    width: 50px;
}
.events_footer {
    height: 50px;
    position: relative;
    background: url(https://greatgame.click/assets/images/events_footer_center.svg);
    margin-top: 30px;
}
.events_footer img {
    height: 50px;
    position: absolute;
    left: calc(50% - 204px);
}


.events_item_button_block {
    position: absolute;
    bottom: 10px;
    left: 62px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 50px;
    background: url(https://greatgame.click/assets/images/gg_events_button.svg);
    background-position: center;
    background-size: cover;
}

.fs14 {
    font-size: 14px;
}

.payment_section {
    background-color:#292242;
}
.payment_title {
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #f3f3ec;
    font-family: 'Moniqa';
    text-transform: uppercase;
    letter-spacing: 10px;
}
.payment_title_sub {
    font-family: 'Doloman Pavljenko';
    color: #f3f3ec;
    font-size: 20px;
    width: 100%;
    text-align: center;
    
}
.payment_desk {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.payment_container {
    padding-top:50px;
    padding-bottom:50px;
}
.payment_imgage {
width:100%;
max-width:400px;
}

.payment_button {
    display: flex;
    width: 250px;
    height: 50px;
    background: url(https://greatgame.click/assets/images/gg_payment_button.svg);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
}

.payment_button a {
    color: #f3f3ec;
    font-family: 'Doloman Pavljenko';
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
}

.payment_button a:hover {
  color: #da4954;
}

.request_section {
    background-color:#000;
}
.request_container {
    padding-top: 50px;
    padding-bottom: 50px;
}
.request_item {
    height: 336px;
    max-width: 500px;
    background: url(https://greatgame.click/assets/images/gg_request_block.svg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.request_title {
    width: 100%;
    text-align: center;
    font-size: 60px;
    color: #f3f3ec;
    font-family: 'Moniqa';
    text-transform: uppercase;
    letter-spacing: 10px;
}
.request_item_title {
    font-family: 'Doloman Pavljenko';
    color: #f3f3ec;
    font-size: 20px;
    width: 100%;
    text-align: center;
}




.footer {

  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom:30px;
  padding-top:30px;
}

.footer_link, .footer_mb_link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f3f3ec;
  font-family: 'Doloman Pavljenko';
  padding: 10px;
  font-weight: bold;
  position: relative;
}

.footer_link:hover, .footer_mb_link:hover {
  color: #da4954;
}
.footer_deskription {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.footer_deskription_text {
    font-family: 'Doloman Pavljenko';
    color: #f3f3ec;
    font-size: 20px;
    width: 100%;
}
.footer_menu_block {
    display: flex;
    flex-direction: column;
}
.footer_menu {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.footer_copyright {
    font-family: 'Doloman Pavljenko';
    color: #f3f3ec;
    font-size: 20px;
    width: 100%;
    text-align: center;
}



/* Медиа-запросы для мобильных устройств (до 768px) */
@media  (max-width: 768px) {
.request_item_title {
    font-family: 'Doloman Pavljenko';
    color: #f3f3ec;
    font-size: 20px;
    width: 100%;
    text-align: center;
    padding: 0 30px;
}
.request_title {
    width: 100%;
    text-align: center;
    font-size: 40px;
    color: #f3f3ec;
    font-family: 'Moniqa';
    text-transform: uppercase;
    letter-spacing: 10px;
}
.events_footer img {
    height: 50px;
    position: absolute;
    left: calc(50% - 150px);
    max-width: 300px;
}
.payment_imgage {
max-width:200px;
}
.game_types_slider_container {
  max-width:450px;
}
  .menu_section {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav {
    justify-content: space-between;
    width: 100%;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .index_section_top_container {
    width: 80%;
  }

  .index_section_top_container_desc {
    font-size: 60px;
  }

  .game_types_items {
    flex-direction: column;
  }

  .game_type_item {
    margin-bottom: 0px;
  }

  .features_items {
    flex-direction: column;
    align-items: center;
  }

  .feature_item {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .feature_title {
    font-size: 40px;
  }

  .games_list {
    width: 100%;
    margin-left: 0;
  }

  .games_menu {
    width: 100%;
    text-align: center;
  }

  .report_item {
    width: 100%;
  }

  .results_head_left {
    height: 50px;
    position: absolute;
    left: 10px;
    width: auto;  
  }
  .results_head_right {
    height: 50px;
    position: absolute;
    right: 10px;
    width: auto;
}
    .results_title {
        background: url(https://greatgame.click/assets/images/gg_index_report_head_center.svg);
        width: 100%;
        margin: 0 50px;
        height: 50px;
        text-align: center;
        font-size: 25px;
        color: #f3f3ec;
        font-family: 'Moniqa';
        text-transform: uppercase;
        letter-spacing: 10px;
        padding-top: 1px;
    }
    .results_subtitle {
    font-family: 'Doloman Pavljenko';
    position: absolute;
    color: #f3f3ec;
    width: 60%;
    font-size: 12px;
    top: 105px;
    left: calc(50% - 30%);
    text-align: center;
}
    .results_winners_title {
    text-align: center;
    font-size: 20px;
    color: rgb(243, 243, 236);
    font-family: Moniqa;
    letter-spacing: 5px;
    padding: 20px 10px;
}
    .results_head {
    display: flex;
    padding: 10px 10px;
}
    .results_column_left, .results_column_right {
    position: absolute;
    top: 0;
    bottom: 0;
    height: unset;
}
    .results_column_left {
    left: -20px;
}
    .results_column_right {
    right: 30px;
}
    .results_container {
    background-color: #292242;
    position: relative;
}
    .results_footer_left {
    width: 14px;
    position: absolute;
    left: 10px;
}
    .results_footer_center_line_left {
    background: url(https://greatgame.click/assets/images/gg_index_report_footer_center_line.svg);
    width: calc(50% - 25px);
    margin-left: 24px;
    height: 50px;
}
    .results_footer_right {
    width: 14px;
    position: absolute;
    right: 10px;
}
    .results_footer_center_line_right {
    background: url(https://greatgame.click/assets/images/gg_index_report_footer_center_line.svg);
    width: calc(50% + 50px);
    margin-right: 24px;
    height: 50px;
}
    .results_head_line_center {
    background: url(https://greatgame.click/assets/images/gg_index_report_head_line_center.svg);
    width: calc(100% - 20%);
    margin: 0 auto;
    height: 50px;
}

    .report_info {
    font-family: 'Doloman Pavljenko';
    font-size: 15px;
    color: #f3f3ec;
}
    .games_title {
    font-family: 'Moniqa';
    color: #f3f3ec;
    font-size: 30px;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding-top: 50px;
    text-align: center;
}
    .feature_image_center {
        position: absolute;
        width: 80px;
        left: calc(50% - 40px);
        top: -20px;
        z-index: 2;
    }
    .feature_image_left {
        position: absolute;
        width: calc(50% - 0px);
        left: 0px;
        top: -11px;
    }
    .feature_image_right {
    position: absolute;
    width: calc(50% - 0px);
    right: 0px;
    top: -11px;
}
    .features_images {
    position: relative;
    margin-top: 0px;
}
//media768end
}
//media768end

/* Медиа-запросы для планшетов (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .games_menu {
  display: none;
  } 
  .menu_section {
  font-size: clamp(10px, 1.5vw, 16px);
  }
  
  .logo {
    width: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }
  .nav {
    width: calc(100% - 90px);
  }

  .menu_link {
    font-size: 16px;
  }

  .index_section_top_container {
    width: 70%;
  }

  .index_section_top_container_desc {
    font-size: 80px;
  }

  .game_types_items {
    flex-wrap: wrap;
  }

  .game_type_item {
    width: 45%;
    margin-bottom: 20px;
  }

  .features_items {
    flex-wrap: wrap;
  }

  .feature_item {
    width: 45%;
    padding: 0 20px;
  }

  .feature_title {
    font-size: 50px;
  }

  .games_list {
    width: calc(100% - 200px);
  }

  .game_item {
    width: 45%;
  }
  
    .report_icon {
    height: 60px;
}
    .report_info {
    font-family: 'Doloman Pavljenko';
    font-size: 12px;
    color: #f3f3ec;
}


}

/* Медиа-запросы для ПК (1025px и выше) */
@media (min-width: 1025px) {
  .menu_link {
    font-size: 18px;
  }

  .index_section_top_container {
    width: 50%;
  }

  .index_section_top_container_desc {
    font-size: 100px;
  }

  .game_types_items {
    flex-direction: row;
  }

  .feature_item {
    width: 30%;
  }

  .game_item {
    width: 300px;
  }
}





.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider_inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider_item {
  flex: 0 0 100%;
  display: none;
  justify-content: center;
}

.slider_item.active {
  display: flex;
}

.game_type_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 450px;
}

.game_type_icon {
  width: 55px;
  height: auto;
}

.game_type_name {
  font-family: 'Doloman Pavljenko', sans-serif;
  font-size: 20px;
  color: #f3f3ec;
  margin-top: 10px;
}

.game_type_divider {
  width: 100px;
  border-bottom: 2px solid #f3f3ec;
  margin: 0 0;
}

.game_type_button a {
  font-family: 'Moniqa', sans-serif;
  font-size: 30px;
  letter-spacing: 5px;
  color: #d94954;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
}

.game_type_button a:hover {
  color: #f3f3ec;
  
}

.slider_control_prev,
.slider_control_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #f3f3ec;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.slider_control_prev {
  left: 10px;
}

.slider_control_next {
  right: 10px;
}

.slider_control_all_prev,
.slider_control_all_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #f3f3ec;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.slider_control_all_prev {
  left: 10px;
}

.slider_control_all_next {
  right: 10px;
}



/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
  .game_type_item {
    max-width: 300px;
  }

  .game_type_name {
    font-size: 18px;
  }

  .game_type_button a {
    font-size: 24px;
    padding: 8px 16px;
  }
  
  .feature_title {
  font-size: 30px;
  }
  .games_content {
    display: flex;
    flex-direction: column;
}

.game_item {
    width: 200px;
    height: 300px;
    background: url(https://greatgame.click/assets/images/gg_index_game_block_mobile.svg);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    margin-top: 20px;
}
.game_image {
    height: 190px;
    width: 190px;
    position: absolute;
    left: 5px;
    top: 85px;
}
    .game_name {
        font-size: 20px;
        font-family: 'Doloman Pavljenko';
        font-weight: 600;
        color: #f3f3ec;
        text-align: center;
        writing-mode: unset;
        position: absolute;
        top: 10px;
    }


}

/* Планшеты (769px–1024px) !!!!!!!!!!!!!!!!!!!*/
@media (min-width: 769px) and (max-width: 1024px) {
.games_content {
    display: flex;
    flex-direction: column;
}
.games_list {
    width: 100%;
    margin-left: 0px;
    display: flex
;
    flex-wrap: wrap;
}
  .games_menu {
  display: none;
  }
  .slider_item {
    flex: 0 0 50%;
  }

  .game_type_item {
    max-width: 350px;
  }

  .game_type_name {
    font-size: 20px;
  }

  .game_type_button a {
    font-size: 28px;
  }
    .feature_image_center {
        top: -40px;
    }
    .feature_image_left {
        top: -19px;
    }
    .feature_image_right {
    top: -19px;
}

.feature_title {
    font-size: 27px;
    margin-top: 50px;
}
.feature_item.center {
    width: 30%;
    padding: 0;
    text-align: center;
}
.results_subtitle {
    top: 270px;
    font-size:20px;
}

.player {
font-size:12px;
}
.win {

}



}

/* Десктоп (1025px и выше) */
@media (min-width: 1025px) AND (max-width: 1379px) {

    .games_menu_mobile {
    display:none;
}
  .slider_item {
    flex: 0 0 33.33%;
    display: none;
  }

  .slider_item.active,
  .slider_item.active + .slider_item,
  .slider_item.active + .slider_item + .slider_item {
    display: flex;
  }

  .game_type_item {
    max-width: 400px;
  }
  
      .feature_image_center {
        position: absolute;
        width: 120px;
        left: calc(50% - 60px);
        top: -40px;
        z-index: 2;
    }
    .feature_image_left {
        position: absolute;
        width: calc(50% - 60px);
        left: 0px;
        top: -25px;
    }
    .feature_image_right {
    position: absolute;
    width: calc(50% - 60px);
    right: 0px;
    top: -25px;
}
    .feature_title {
    font-size:50px;
    }

}

/* Десктоп (1380px и выше) */
@media (min-width: 1380px) {
    .games_menu_mobile {
    display:none;
}
  .slider_item {
    flex: 0 0 33.33%;
    display: none;
  }

  .slider_item.active,
  .slider_item.active + .slider_item,
  .slider_item.active + .slider_item + .slider_item {
    display: flex;
  }

  .game_type_item {
    max-width: 400px;
  }
  
      .feature_image_center {
        position: absolute;
        width: 120px;
        left: calc(50% - 60px);
        top: -40px;
        z-index: 2;
    }
    .feature_image_left {
        position: absolute;
        width: calc(50% - 60px);
        left: 0px;
        top: -40px;
    }
    .feature_image_right {
    position: absolute;
    width: calc(50% - 60px);
    right: 0px;
    top: -40px;
}


}


@media (max-width: 350px) {
.player {
font-size:12px;
}
.results_winners_title {
    font-size: 20px;
    padding: 50px 0 30px 0;
    }
.results_subtitle {
    top: 120px;
}
.results_column_left {
    display:none;
}
.results_column_right{
    display:none;
}
.games_menu {
    display:none;
}
.game_types_slider_container {
  max-width:250px;
}
.feature_item.left {
    width: 100%;
    padding: 30px 0 0 0;
}
.feature_item.center {
    width: 100%;
    padding: 30px 0 0 0;
}
.feature_item.right {
    width: 100%;
    padding: 30px 0 0 0;
    text-align: center;
}
.feature_title {
    font-size: 30px;
}

.games_menu_mobile_image_left {
    background:url(https://greatgame.click/assets/images/gg_index_game_list_menu_left_mob.svg);
    height: 200px;
    width: 45.8px;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.games_menu_mobile_image_right {
    background:url(https://greatgame.click/assets/images/gg_index_game_list_menu_rigth_mob.svg);
    height: 200px;
    width: 45.8px;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.games_menu_mobile_image_body {
    margin: 0 45px;
}
.menu_link_mobile {
    font-size: 14px;
    padding: 5px;
}

    .feature_image_left {
        top: -9px;
    }
    .feature_image_right {
    top: -9px;
}

    .feature_item.left {
        width: 100%;
        padding: 0 0 0 0;
    }
    .feature_item.center {
        width: 100%;
        padding: 0 0 0 0;
    }
    .feature_item.right {
        width: 100%;
        padding: 0 0 0 0;
        text-align: center;
    }    
    .feature_title {
        font-size: 30px;
        margin-top: 20px;
    }
.events_title_sub {
font-size:20px;
}

}
@media (min-width: 350px) and (max-width: 500px) {
.events_title_sub {
font-size:20px;
}
.player {
font-size:12px;
}
.results_winners_title {
    font-size: 20px;
    padding: 50px 0 30px 0;
    }
.results_subtitle {
    top: 120px;
}
.results_column_left {
    display:none;
}
.results_column_right{
    display:none;
}
.games_menu {
    display:none;
}
.game_types_slider_container {
  max-width:300px;
}
.feature_item.left {
    width: 100%;
    padding: 30px 0 0 0;
}
.feature_item.center {
    width: 100%;
    padding: 30px 0 0 0;
}
.feature_item.right {
    width: 100%;
    padding: 30px 0 0 0;
    text-align: center;
}
.feature_title {
    font-size: 30px;
}

    .feature_image_left {
        top: -12px;
    }
    .feature_image_right {
    top: -12px;
}


.games_menu_mobile_image_left {
    background:url(https://greatgame.click/assets/images/gg_index_game_list_menu_left_mob.svg);
    height: 200px;
    width: 45.8px;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.games_menu_mobile_image_right {
    background:url(https://greatgame.click/assets/images/gg_index_game_list_menu_rigth_mob.svg);
    height: 200px;
    width: 45.8px;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.games_menu_mobile_image_body {
    margin: 0 45px;
}
.menu_link_mobile {
    font-size: 14px;
    padding: 5px;
}

    .game_name {
        width: 100%;
        font-size: 15px;
        font-family: 'Doloman Pavljenko';
        font-weight: 600;
        color: #f3f3ec;
        text-align: center;
        writing-mode: unset;
        position: absolute;
        top: 10px;
        padding-left: 0px;
    }

    .game_image {
        height: 135px;
        width: 135px;
        position: absolute;
        left: 8px;
        top: 55px;
    }  
        .game_item {
        width: 150px;
        height: 200px;
    } 
    .feature_item.left {
        width: 100%;
        padding: 0 0 0 0;
    }
    .feature_item.center {
        width: 100%;
        padding: 0 0 0 0;
    }
    .feature_item.right {
        width: 100%;
        padding: 0 0 0 0;
        text-align: center;
    }    
    .feature_title {
        font-size: 30px;
        margin-top: 20px;
    }
}
@media (min-width: 500px) and (max-width: 768px) {
.player {
font-size:12px;
}
.results_winners_title {
    font-size: 20px;
    padding: 50px 0 30px 0;
    }
.results_subtitle {
    top: 105px;
}
.results_column_left {
    display:none;
}
.results_column_right{
    display:none;
}
.games_menu {
    display:none;
}
.game_types_slider_container {
  max-width:300px;
}
.feature_item.left {
    width: 100%;
    padding: 0 0 0 0;
}
.feature_item.center {
    width: 100%;
    padding: 0 0 0 0;
}
.feature_item.right {
    width: 100%;
    padding: 0 0 0 0;
    text-align: center;
}
.feature_title {
    font-size: 30px;
    margin-top: 20px;
}

    .feature_image_left {
        top: -14px;
    }
    .feature_image_right {
    top: -14px;
}


}




.unique-reg-form-container {
    font-family: 'Doloman Pavljenko';
    max-width: 400px;
    margin: 0 auto;
}
.unique-form-group {
    position: relative;
    margin-bottom: 30px;
}
.unique-form-label {
    font-family: 'Moniqa';
    font-size: 30px;
    color: #f3f3ec;
    position: absolute;
    top: 60%;
    left: 15px;
    letter-spacing: 5px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}
.unique-form-input:focus + .unique-form-label,
.unique-form-input.active + .unique-form-label {
    top: -10px;
    font-size: 14px;
    color: #da4a54;
    background: #fff;
    padding: 0 5px;
}
.unique-form-input {
    font-family: 'Doloman Pavljenko';
    font-size: 16px;
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: all 0.3s ease;
    color:#f3f3ec;
    background-color: #000000;
}
.unique-form-input:focus {
    border-color: #da4a54;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}
.unique-checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.unique-form-checkbox {
    font-family: 'Doloman Pavljenko';
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 10px;
    background: transparent;
    border: 2px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.unique-form-checkbox:checked {
    border-color: #da4a54;
    background: #da4a54;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}
.unique-form-checkbox:focus {
    border-color: #da4a54;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}
.unique-form-checkbox:checked::before {
    content: '\2713';
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translate(-50%, -50%);
}
.unique-checkbox-label {
    font-family: 'Doloman Pavljenko';
    font-size: 14px;
    color: #f3f3ec;
    cursor: pointer;
    text-align: left;
}
.unique-checkbox-label a{
    font-family: 'Doloman Pavljenko';
    font-size: 14px;
    color: #f3f3ec;
}
.unique-checkbox-label a:hover{
    color: #da4a54;
}
.unique-reg-form-button {
    display: flex;
    width: 250px;
    height: 50px;
    background: url(https://greatgame.click/assets/images/gg_payment_button.svg);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    border: none;
    font-size: 25px;
    color: #f3f3ec;
}
.unique-reg-form-button:hover {
    color: #da4a54;
}
.unique-reg-form-error {
    font-family: 'Doloman Pavljenko';
    font-size: 16px;
    color: #f3f3ec;
    border-bottom: solid 2px #dc3545;
    margin-top: 10px;
    min-height: 20px;
}

.side_panel {
    position: fixed;
    left: -100%;
    //top: 170px;
    width: 100%;
    background-color: #000;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #fff;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
}

.side_panel.open {
  transform: translateX(100%);
}

.side_panel_menu {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.side_panel_link {
  display: block;
  padding: 10px 0;
  color: #f3f3ec;
  text-decoration: none;
  font-family: 'Doloman Pavljenko';
  font-size: 18px;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.side_panel_link img {
  width:20px;
}

.side_panel_link:hover {
  color: #da4954;
  //background-color: #333;
}




.side_panel_balance {
    position: fixed;
    left: -100%;
    //top: 220px;
    width: 100%;
    background-color: #000;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #fff;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    flex-direction: row;
    padding-left: 30px;
}

.side_panel_balance.open {
  transform: translateX(100%);
}

.side_panel_balance.open div {
    color: #f3f3ec;
    font-size: 20px;
    padding: 0 10px;
}

.side_panel_balance_menu {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.side_panel_balance_link {
  display: block;
  padding: 10px 0;
  color: #f3f3ec;
  text-decoration: none;
  font-family: 'Doloman Pavljenko';
  font-size: 18px;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.side_panel_balance_link img {
  width:20px;
}

.side_panel_balance_link:hover {
  color: #da4954;
  //background-color: #333;
}


.side_panel_games {
    position: fixed;
    left: -100%;
    //top: 220px;
    width: 100%;
    background-color: #000;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #fff;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
    flex-direction: row;
    padding-left: 30px;
}

.side_panel_games.open {
  transform: translateX(100%);
}

.side_panel_games.open div {
    color: #f3f3ec;
    font-size: 20px;
    padding: 0 10px;
}

.side_panel_games_menu {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.side_panel_games_link {
  display: block;
  padding: 10px 0;
  color: #f3f3ec;
  text-decoration: none;
  font-family: 'Doloman Pavljenko';
  font-size: 18px;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.side_panel_games_link img {
  width:20px;
}

.side_panel_games_link:hover {
  color: #da4954;
  //background-color: #333;
}




.user_block {
    font-family: 'Doloman Pavljenko';
    font-weight: 600;
    position: absolute;
    bottom: -50px;
    font-size: 16px;
    color: #da4a54;
    width: 100px;
    background: #f3f3ec;
    padding: 0 0 0 5px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    height: 50px;
    transition: transform 0.3s ease-in-out;
    flex-wrap: nowrap;
}

.user_block_hidden {
    transform: translateX(-100%);
}
.user_block_payment {
    background-color: #da4a54;
    color: #fff;
    text-decoration: none;
    padding: 6px;
    height: 40px;
}


.profile_user {
  width: 300px;
  height: 200px;
  background: url(https://greatgame.click/assets/images/gg_index_game_block.svg);
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  margin-top: 20px;
}

.profile_user_name {
    width: 200px;
    height: 200px;
    word-wrap: break-word;
    writing-mode: sideways-lr;
    padding-left: 10px;
    font-size: 20px;
    font-family: 'Doloman Pavljenko';
    font-weight: 600;
    color: #f3f3ec;
    text-align: center;
}


.games-list-demo {
    position: absolute;
    top: 10px;
    font-size: 30px;
    letter-spacing: 10px;
    font-weight: 900;
    font-family: 'Doloman Pavljenko';
    color: #da4954;
    width: calc(100% - 120px);
    text-align: center;
    background-color: #dddddd99;
    margin-left: 90px;

}
