@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");
* {
  outline: none;
  scroll-behavior: smooth;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}
*::before, *::after {
  box-sizing: border-box;
}

:root {
  --swiper-theme-color: #e94057 !important;
}

body {
  background: #080402;
  margin: 0;
  display: flex;
}

.w-100 {
  width: 100% !important;
}

.margin {
  margin: 0.5rem;
}

.sidebar {
  background: #1c0e07;
  min-width: 250px;
  min-height: 100vh;
  transition: all 0.5s;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 15px 0 #000000;
}
.sidebar .SidebarWrap {
  position: sticky;
  top: 0;
}
.sidebar .close-btn {
  top: 0.5rem;
  right: 0.5rem;
  background: #e94057;
  position: absolute;
  display: flex;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: all 0.3s;
}
.sidebar .close-btn svg {
  padding: 0.2rem;
  fill: #fff;
  width: 1.5rem;
  height: 1.5rem;
}
.sidebar .close-btn:hover {
  filter: brightness(150%);
}
@media screen and (min-width: 801px) {
  .sidebar .close-btn {
    display: none;
  }
}
.sidebar .header {
  background: #30180c;
  padding: 10px;
}
.sidebar .header a {
  margin: auto;
  max-width: 165px;
  display: flex;
}
.sidebar .header a img {
  width: 100%;
}
.sidebar .devider {
  width: 100px;
  margin: auto;
  height: 1rem;
  background: #30180c;
  border-radius: 0 0 1rem 1rem;
  position: relative;
  display: flex;
}
.sidebar .devider::after {
  content: "";
  width: 50%;
  height: 0.2rem;
  margin: auto;
  display: block;
  background: #592d16;
  border-radius: 2rem;
}
.sidebar .btn-group {
  background: #30180c;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
}
.sidebar .btn-group a {
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #c28163;
  width: 50%;
  background: #452211;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: all 0.2s;
}
.sidebar .btn-group a svg {
  transition: all 0.1s;
  margin-bottom: 0.3rem;
  fill: #c28163;
  height: 64px;
  width: 64px;
}
.sidebar .btn-group a:first-child:hover {
  background: #da3807;
  color: #fff;
}
.sidebar .btn-group a:first-child:hover svg {
  fill: currentColor;
}
.sidebar .btn-group a:last-child:hover {
  background: #e94057;
  color: #fff;
}
.sidebar .btn-group a:last-child:hover svg {
  fill: currentColor;
}
.sidebar .btn {
  display: flex;
  align-items: center;
  background: #30180c;
  border-radius: 0.3rem;
  padding: 0.5rem;
  color: #c28163;
  transition: all 0.2s;
  font-size: 0.8rem;
}
.sidebar .btn svg {
  fill: #c28163;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  transition: all 0.1s;
}
.sidebar .btn:hover {
  color: #fff;
}
.sidebar .btn:hover svg {
  fill: currentColor;
}
.sidebar .nav {
  position: relative;
  overflow: hidden;
}
.sidebar .nav .btn {
  width: 100%;
  position: relative;
  border: none;
  background: #30180c;
  z-index: 1;
}
.sidebar .nav .btn svg:last-child {
  margin-left: auto;
  margin-right: 0rem;
  padding: 0.3rem;
  transform: rotate(90deg);
  border-radius: 0.3rem;
}
.sidebar .nav .btn:hover svg:last-child {
  background-color: #da3807;
}
.sidebar .nav .dropdownContent {
  overflow-Y: scroll;
  border-radius: 0.3rem;
  max-height: 300px;
  margin-top: -300px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
.sidebar .nav .dropdownContent::-webkit-scrollbar {
  width: 8px;
}
.sidebar .nav .dropdownContent::-webkit-scrollbar-thumb {
  background: #592d16;
  border-radius: 15px;
}
@media screen and (max-width: 1000px) {
  .sidebar .nav .dropdownContent {
    max-height: 250px;
    margin-top: -250px;
  }
}
.sidebar .nav .dropdownContent ul {
  margin: 0;
  padding: 0;
}
.sidebar .nav .dropdownContent ul li {
  display: flex;
}
.sidebar .nav .dropdownContent ul li a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  color: #c28163;
  font-size: 0.8rem;
  transition: all 0.2s;
}
.sidebar .nav .dropdownContent ul li a img {
  max-width: 1.5rem;
  margin-right: 0.5rem;
  filter: sepia(1) brightness(0.8) contrast(1.2) saturate(1.5) hue-rotate(312deg);
  opacity: 0.5;
  transition: all 0.2s;
}
.sidebar .nav .dropdownContent ul li a:hover {
  color: #fff;
}
.sidebar .nav .dropdownContent ul li a:hover img {
  filter: brightness(150%);
  opacity: 1;
}
.sidebar .nav .dropdownContent ul [current_page=active] a {
  color: #fff;
}
.sidebar .nav .dropdownContent ul [current_page=active] a img {
  filter: brightness(150%);
  opacity: 1;
}
.sidebar .nav .btn.open {
  color: #fff;
}
.sidebar .nav .btn.open svg {
  fill: #fff;
}
.sidebar .nav .btn.open svg:last-child {
  background: #da3807;
  transform: rotate(-90deg);
}
.sidebar .nav .dropdownContent.open {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 801px) {
  .sidebar {
    position: fixed;
    z-index: 10;
    transform: translateX(-100%);
  }
}

.sidebar.active {
  transform: translateX(0px) !important;
}

.wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.wrapper .header {
  background: #1c0e07;
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 801px) {
  .wrapper .header {
    position: fixed;
    top: 0px;
    z-index: 5;
  }
}
.wrapper .header .hamburger button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  height: 2rem;
  width: 2rem;
  border: none;
  border-radius: 0.2rem;
  background: #452211;
  transition: all 0.2s ease-in;
}
.wrapper .header .hamburger button svg {
  fill: #c28163;
  height: 1rem;
  width: 1rem;
  transition: all 0.2s ease-in;
}
.wrapper .header .hamburger button:hover {
  background: #da3807;
}
.wrapper .header .hamburger button:hover svg {
  fill: #fff;
}
@media screen and (min-width: 801px) {
  .wrapper .header .hamburger {
    display: none;
  }
}
.wrapper .header .logo {
  max-width: 100px;
  margin-left: 0.5rem;
}
@media screen and (min-width: 801px) {
  .wrapper .header .logo {
    display: none;
  }
}
.wrapper .header .logo a {
  display: flex;
}
.wrapper .header .logo a img {
  width: 100%;
}
.wrapper .header .button {
  display: flex;
  margin-left: auto;
  gap: 0.5rem;
}
.wrapper .header .button a {
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.3rem;
  min-width: 70px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s;
}
.wrapper .header .button a:hover {
  filter: brightness(150%);
}
.wrapper .header .button [data-button=login] {
  background: #da3807;
}
.wrapper .header .button [data-button=register] {
  background: #e94057;
}

.ContentWrap {
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.ContentWrap .Carousel {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 0.8rem;
}
.ContentWrap .Carousel .swiper-slide {
  display: flex;
}
@media screen and (max-width: 600px) {
  .ContentWrap .Carousel {
    border-radius: 0.3rem;
  }
}
.ContentWrap .games_wrap {
  margin-bottom: 1rem;
}
.ContentWrap .games_wrap:last-child {
  margin-bottom: 0;
}
.ContentWrap .games_wrap .title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  padding: 5px 0 9px 1rem;
  margin-bottom: 10px;
}
.ContentWrap .games_wrap .title::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  height: 80%;
  width: 4px;
  background: #da3807;
  border-radius: 10px;
}
.ContentWrap .games_wrap .title .text {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 650px) {
  .ContentWrap .games_wrap .title .text {
    font-size: 12px;
  }
}
.ContentWrap .games_wrap .title .button {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.ContentWrap .games_wrap .title .button a {
  color: #fff;
  margin-right: 10px;
  background-color: #da3807;
  padding: 3px 8px;
  border-radius: 0.2rem;
  font-size: 13px;
  transition: all 0.2s;
}
.ContentWrap .games_wrap .title .button a:hover {
  opacity: 0.5;
}
.ContentWrap .games_wrap .title .button .nav {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  height: 1.5rem;
  gap: 0.5rem;
}
.ContentWrap .games_wrap .title .button .nav div {
  border-radius: 0.2rem;
  position: relative !important;
  background: #30180c;
  width: 1.5rem;
  height: 1.5rem;
  left: auto !important;
  right: auto !important;
  z-index: 1 !important;
}
.ContentWrap .games_wrap .title .button .nav div::after {
  color: #c28163;
  font-weight: 700;
  font-size: 12px;
}
.ContentWrap .games_wrap .games-box {
  background: #1c0e07;
  overflow: hidden;
  border-radius: 0.5rem;
}
.ContentWrap .games_wrap .games-box .BoxHeader {
  position: relative;
  overflow: hidden;
  display: flex;
}
.ContentWrap .games_wrap .games-box .BoxHeader .btn-hover {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7333333333);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 3;
}
.ContentWrap .games_wrap .games-box .BoxHeader .btn-hover a {
  margin: auto 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.3rem 0.9rem;
  display: block;
  background: #e94057;
  color: #fff;
  text-transform: uppercase;
  border-top-left-radius: 5px;
  font-weight: bold;
  transition: all 0.4s;
  transform: translateX(100%);
}
.ContentWrap .games_wrap .games-box .BoxHeader img {
  transition: all 0.3s;
  width: 100%;
}
.ContentWrap .games_wrap .games-box .BoxFooter {
  padding: 0.5rem;
  font-size: 13px;
}
.ContentWrap .games_wrap .games-box .BoxFooter h3 {
  margin: auto;
  font-weight: lighter;
  width: 122px;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  color: #c28163;
  overflow: hidden;
}
.ContentWrap .games_wrap .games-box:hover img {
  transform: scale(110%);
  z-index: 1;
}
.ContentWrap .games_wrap .games-box:hover .BoxHeader .btn-hover {
  opacity: 1;
  visibility: visible;
}
.ContentWrap .games_wrap .games-box:hover .BoxHeader .btn-hover a {
  transform: translateX(0);
}

.ContentBar .bottom {
  margin-top: 1rem;
}
.ContentBar .breadcrumb {
  display: flex;
  align-items: center;
  background: #30180c;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0.8rem;
  color: #c28163;
  border-radius: 0.3rem;
  font-size: 13px;
}
.ContentBar .breadcrumb svg {
  fill: #c28163;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.ContentBar .breadcrumb a {
  color: #ccc;
  transition: all 0.2s;
}
.ContentBar .breadcrumb a:hover {
  color: #fff;
}
.ContentBar .date {
  margin-left: auto;
  display: flex;
  align-items: center;
  background: #30180c;
  overflow: hidden;
  border-radius: 0.3rem;
  font-size: 13px;
}
.ContentBar .date .tanggal {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #452211;
  color: #c28163;
  padding: 0 0.7rem;
}
.ContentBar .date .clock {
  width: 70px;
  text-align: center;
  color: #c28163;
}
.ContentBar .SearchBar {
  margin-left: auto;
  display: flex;
  align-items: center;
  background: #1c0e07;
  padding: 0.5rem 0.6rem;
  border-radius: 0.3rem;
  border: 2px solid #30180c;
  width: 100%;
}
.ContentBar .SearchBar svg {
  width: 1rem;
  height: 1rem;
  fill: #c28163;
  margin-right: 0.5rem;
}
.ContentBar .SearchBar input {
  padding: 0 0.5rem;
  display: flex;
  border: none;
  border-left: 2px solid #30180c;
  background: none;
  color: #fff;
  width: 100%;
}
.ContentBar .SearchBar input::-moz-placeholder {
  color: #c28163;
  opacity: 0.7;
}
.ContentBar .SearchBar input::placeholder {
  color: #c28163;
  opacity: 0.7;
}
.ContentBar .top {
  display: flex;
}

.mobileBar {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.mobileBar a {
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #30180c;
}
.mobileBar a svg {
  fill: #c28163;
  width: 2rem;
  height: 2rem;
}
.mobileBar a:nth-child(2) {
  border-top-right-radius: 10px;
}
.mobileBar a:nth-child(4) {
  border-top-left-radius: 10px;
}
.mobileBar a:nth-child(3) {
  background: none;
}
.mobileBar a:nth-child(3) svg {
  border-radius: 10px;
  background: #da3807;
  padding: 0.5rem;
  fill: #fff;
  width: 3rem;
  height: 3rem;
}

@media screen and (max-width: 801px) {
  .WebContent {
    padding: 4rem 0 4rem 0;
  }
}

.games_wrap_list {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem 0.75rem;
}
.games_wrap_list .games-box {
  overflow: hidden;
  border-radius: 0.4rem;
  background: #1c0e07;
  transition: all 0.3s;
}
.games_wrap_list .games-box .header_wrapper_games {
  display: flex;
  position: relative;
  overflow: hidden;
}
.games_wrap_list .games-box .header_wrapper_games img {
  width: 100%;
  transition: all 0.3s ease-in;
}
.games_wrap_list .games-box .header_wrapper_games .btn-hover {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.662745098);
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.games_wrap_list .games-box .header_wrapper_games .btn-hover a {
  transform: translateX(100%);
  margin: auto 0 0 auto;
  padding: 0.4rem 1rem;
  color: #fff;
  background: #e94057;
  border-top-left-radius: 0.4rem;
  transition: all 0.5s;
}
.games_wrap_list .games-box .header_wrapper_games .btn-hover a:hover {
  filter: brightness(80%);
}
.games_wrap_list .games-box .footer_game_wrapper {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.6rem;
  background: #30180c;
}
.games_wrap_list .games-box .footer_game_wrapper .name h3 {
  margin: 0;
  color: #c28163;
  font-size: 14px;
  max-width: 125px;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.games_wrap_list .games-box .footer_game_wrapper .rtp_progress {
  margin-left: auto;
  display: flex;
}
.games_wrap_list .games-box .footer_game_wrapper .rtp_progress svg {
  fill: #da3807;
  margin: auto;
  width: 1.3rem;
  height: 1.3rem;
}
.games_wrap_list .games-box:hover .header_wrapper_games .btn-hover {
  visibility: visible;
  opacity: 1;
}
.games_wrap_list .games-box:hover .header_wrapper_games .btn-hover a {
  transform: translateX(0px);
}
.games_wrap_list .games-box:hover .header_wrapper_games img {
  transform: scale(110%);
}

.modal {
  visibility: hidden;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  background-color: rgba(0, 0, 0, 0.831372549);
  padding: 1rem 1rem 1rem 250px;
  transition: all 0.2s;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .modal {
    padding: 1rem;
  }
}
.modal .modal-content {
  margin: auto;
  transform: scale(80%);
  transition: all 0.5s;
  opacity: 0;
  background: #1c0e07;
  padding: 0.5rem;
  border-radius: 0.4rem;
  max-width: 550px;
}
.modal .modal-content .modal-header {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 0.5rem;
}
.modal .modal-content .modal-header .btn-close svg {
  width: 1rem;
  height: 1rem;
  fill: #c28163;
}
.modal .modal-content .modal-header h3 {
  color: #c28163;
  margin: 0 auto 0 0;
  font-size: 14px;
}
.modal .modal-content .wrap-modal {
  display: grid;
  font-size: 13px;
}
.modal .modal-content .wrap-modal .modal-image {
  margin-bottom: 0.5rem;
  display: flex;
}
.modal .modal-content .wrap-modal .modal-image img {
  border: 2px solid #592d16;
  border-radius: 0.8rem;
  max-width: 100px;
  margin: auto;
  aspect-ratio: 0.1/0.1;
}
.modal .modal-content .wrap-modal .games-data {
  height: -moz-fit-content;
  height: fit-content;
}
.modal .modal-content .wrap-modal .description_modal {
  margin-bottom: 0.5rem;
  background: #30180c;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #c28163;
}
.modal .modal-content .wrap-modal .description_modal:last-child {
  margin-bottom: 0;
}
.modal .modal-content .wrap-modal .description_modal .percent-rate-box {
  display: flex;
  align-items: center;
}
.modal .modal-content .wrap-modal .description_modal .percent-rate-box .rate-box-wrap {
  background: #1c0e07;
  width: 100%;
  height: 50%;
  border-radius: 1rem;
  margin-right: 0.5rem;
  position: relative;
  overflow: hidden;
}
.modal .modal-content .wrap-modal .description_modal .percent-rate-box .rate-box-wrap .percent-bar {
  position: absolute;
  bottom: 0;
  height: 100%;
}
.modal .modal-content .wrap-modal .description_modal .percent-rate-box .rate-box-wrap .red {
  background: #dc3545;
}
.modal .modal-content .wrap-modal .description_modal .percent-rate-box .rate-box-wrap .yellow {
  background: #ffc107;
}
.modal .modal-content .wrap-modal .description_modal .percent-rate-box .rate-box-wrap .green {
  background: #198754;
}
.modal .modal-content .wrap-modal .title_pattern {
  color: #c28163;
  margin-bottom: 0.5rem;
}

.modal.show-modal {
  visibility: visible;
  opacity: 1;
}
.modal.show-modal .modal-content {
  opacity: 1;
  transform: scale(100%);
}

.box404 {
  width: 350px;
  height: 100%;
  max-height: 600px;
  min-height: 450px;
  border-radius: 20px;
  padding: 30px 50px;
}
.box404 .box__ghost {
  padding: 15px 25px 25px;
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -30%);
}
.box404 .box__ghost .symbol:nth-child(1) {
  opacity: 0.2;
  animation: shine 4s ease-in-out 3s infinite;
}
.box404 .box__ghost .symbol:nth-child(1):before, .box404 .box__ghost .symbol:nth-child(1):after {
  content: "";
  width: 12px;
  height: 4px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  bottom: 65px;
  left: 0;
}
.box404 .box__ghost .symbol:nth-child(1):before {
  transform: rotate(45deg);
}
.box404 .box__ghost .symbol:nth-child(1):after {
  transform: rotate(-45deg);
}
.box404 .box__ghost .symbol:nth-child(2) {
  position: absolute;
  left: -5px;
  top: 30px;
  height: 18px;
  width: 18px;
  border: 4px solid;
  border-radius: 50%;
  border-color: #fff;
  opacity: 0.2;
  animation: shine 4s ease-in-out 1.3s infinite;
}
.box404 .box__ghost .symbol:nth-child(3) {
  opacity: 0.2;
  animation: shine 3s ease-in-out 0.5s infinite;
}
.box404 .box__ghost .symbol:nth-child(3):before, .box404 .box__ghost .symbol:nth-child(3):after {
  content: "";
  width: 12px;
  height: 4px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  top: 5px;
  left: 40px;
}
.box404 .box__ghost .symbol:nth-child(3):before {
  transform: rotate(90deg);
}
.box404 .box__ghost .symbol:nth-child(3):after {
  transform: rotate(180deg);
}
.box404 .box__ghost .symbol:nth-child(4) {
  opacity: 0.2;
  animation: shine 6s ease-in-out 1.6s infinite;
}
.box404 .box__ghost .symbol:nth-child(4):before, .box404 .box__ghost .symbol:nth-child(4):after {
  content: "";
  width: 15px;
  height: 4px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  top: 10px;
  right: 30px;
}
.box404 .box__ghost .symbol:nth-child(4):before {
  transform: rotate(45deg);
}
.box404 .box__ghost .symbol:nth-child(4):after {
  transform: rotate(-45deg);
}
.box404 .box__ghost .symbol:nth-child(5) {
  position: absolute;
  right: 5px;
  top: 40px;
  height: 12px;
  width: 12px;
  border: 3px solid;
  border-radius: 50%;
  border-color: #fff;
  opacity: 0.2;
  animation: shine 1.7s ease-in-out 7s infinite;
}
.box404 .box__ghost .symbol:nth-child(6) {
  opacity: 0.2;
  animation: shine 2s ease-in-out 6s infinite;
}
.box404 .box__ghost .symbol:nth-child(6):before, .box404 .box__ghost .symbol:nth-child(6):after {
  content: "";
  width: 15px;
  height: 4px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  bottom: 65px;
  right: -5px;
}
.box404 .box__ghost .symbol:nth-child(6):before {
  transform: rotate(90deg);
}
.box404 .box__ghost .symbol:nth-child(6):after {
  transform: rotate(180deg);
}
.box404 .box__ghost .box__ghost-container {
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px 100px 0 0;
  position: relative;
  margin: 0 auto;
  animation: upndown 3s ease-in-out infinite;
}
.box404 .box__ghost .box__ghost-container .box__ghost-eyes {
  position: absolute;
  left: 50%;
  top: 45%;
  height: 12px;
  width: 70px;
}
.box404 .box__ghost .box__ghost-container .box__ghost-eyes .box__eye-left {
  width: 12px;
  height: 12px;
  background: #e94057;
  border-radius: 50%;
  margin: 0 10px;
  position: absolute;
  left: 0;
}
.box404 .box__ghost .box__ghost-container .box__ghost-eyes .box__eye-right {
  width: 12px;
  height: 12px;
  background: #e94057;
  border-radius: 50%;
  margin: 0 10px;
  position: absolute;
  right: 0;
}
.box404 .box__ghost .box__ghost-container .box__ghost-bottom {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.box404 .box__ghost .box__ghost-container .box__ghost-bottom div {
  flex-grow: 1;
  position: relative;
  top: -10px;
  height: 20px;
  border-radius: 100%;
  background-color: #fff;
}
.box404 .box__ghost .box__ghost-container .box__ghost-bottom div:nth-child(2n) {
  top: -12px;
  margin: 0 0px;
  border-top: 15px solid #e94057;
  background: transparent;
}
.box404 .box__ghost .box__ghost-shadow {
  height: 20px;
  box-shadow: 0 50px 15px 5px #e94057;
  border-radius: 50%;
  margin: 0 auto;
  animation: smallnbig 3s ease-in-out infinite;
}
.box404 .box__description {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.box404 .box__description .box__description-container {
  color: #fff;
  text-align: center;
  width: 200px;
  font-size: 16px;
  margin: 0 auto;
}
.box404 .box__description .box__description-container .box__description-title {
  font-size: 24px;
  letter-spacing: 0.5px;
}
.box404 .box__description .box__description-container .box__description-text {
  color: #8C8AA7;
  line-height: 20px;
  margin-top: 20px;
}
.box404 .box__description .box__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #FF5E65;
  border: 1px solid transparent;
  border-radius: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  line-height: 50px;
  font-size: 18px;
  padding: 0 70px;
  white-space: nowrap;
  margin-top: 25px;
  transition: background 0.5s ease;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.box404 .box__description .box__button svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  fill: #fff;
}
.box404 .box__description .box__button:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100px;
  background: #fff;
  bottom: -25px;
  left: 0;
  border: 2px solid #fff;
  transform: translateX(-50px) rotate(45deg);
  transition: transform 0.5s ease;
}
.box404 .box__description .box__button:hover {
  background: transparent;
  border-color: #fff;
}
.box404 .box__description .box__button:hover:before {
  transform: translateX(250px) rotate(45deg);
}

@keyframes upndown {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes smallnbig {
  0% {
    width: 90px;
  }
  50% {
    width: 100px;
  }
  100% {
    width: 90px;
  }
}
@keyframes shine {
  0% {
    opacity: 0.2;
  }
  25% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}/*# sourceMappingURL=style.css.map */