@import "https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap";
/* [project]/src/styles/globals.css [client] (css, ) */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  letter-spacing: .5px;
}

html {
  scroll-behavior: smooth !important;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth !important;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
}

.border-gradient {
  background: radial-gradient(circle at 100% 100%, #fff 0 26px, #0000 26px) 0 0 / 30px 30px no-repeat, radial-gradient(circle at 0 100%, #fff 0 26px, #0000 26px) 100% 0 / 30px 30px no-repeat, radial-gradient(circle at 100% 0, #fff 0 26px, #0000 26px) 0 100% / 30px 30px no-repeat, radial-gradient(circle at 0 0, #fff 0 26px, #0000 26px) 100% 100% / 30px 30px no-repeat, linear-gradient(#fff, #fff) 50% / calc(100% - 8px) calc(100% - 60px) no-repeat, linear-gradient(#fff, #fff) 50% / calc(100% - 60px) calc(100% - 8px) no-repeat, linear-gradient(90deg, #f7b114 0%, #48abe0 100%);
  padding: 4px;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #15c505;
  border-radius: 100px;
}

@keyframes slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 -900px;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.main-dashboard-section-wrap {
  min-height: 100dvh;
  background-color: #fff;
}

.main {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

video {
  display: block;
  height: 100%;
  object-fit: contain;
}

.Toastify__toast-container {
  z-index: 100000 !important;
}

.MuiDrawer-root.MuiDrawer-modal {
  z-index: 99999;
}

.cus-comment-wrap::-webkit-scrollbar-thumb {
}

.cus-comment-wrap::-webkit-scrollbar {
  width: 5px;
  display: none;
  opacity: 0;
  transition: all .3s ease-in-out;
  background-color: #eeeef0;
  border-radius: 10px;
}

.cus-comment-wrap:hover::-webkit-scrollbar {
  opacity: 1;
  display: block;
}

.height-55dvh-wrap {
  min-height: 50dvh;
  max-height: 50dvh;
}

@media screen and (width <= 575px) {
  .height-55dvh-wrap {
    min-height: 50dvh;
    max-height: 50dvh;
  }
}

.share-slider-wrap .swiper-wrapper {
  height: auto !important;
}

input[type="password"]::-ms-reveal, input[type="password"]::-ms-clear {
  display: none;
}

input[type="password"]::-webkit-textfield-decoration-container {
  display: none;
}

img {
  max-width: 100%;
}


/* [project]/public/fonts/fonts.css [client] (css, ) */
@font-face {
  font-family: nulshock-bd;
  src: url("../media/nulshock-bd.25327b6f.otf");
}

@font-face {
  font-family: arial-round-bold;
  src: url("../media/arial-round-bold.345d7abe.ttf");
}

.nulshock-bd {
  font-family: nulshock-bd;
}

.arial-round-bold {
  font-family: arial-round-bold !important;
}


/* [project]/src/styles/index.scss.css [client] (css) */
.header-component.hidden {
  top: -100px;
  transition: top .4s ease-out;
}

.header-component {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10000;
  left: 0;
  transition: top .5s ease-in-out;
  pointer-events: none;
}

.header-component .header-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 1px 5px 1px #00000024;
  pointer-events: all;
  width: 100%;
}

.header-component .header-container .logo-img {
  height: 62%;
}

.header-component .header-container .main-logo-wrap, .header-component .header-container .search-icon-wrap {
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.header-component .header-container .main-logo-wrap:hover, .header-component .header-container .search-icon-wrap:hover {
  scale: 1.05;
}

.header-component .header-container .game-category {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
}

.header-component .search-row-container .logo-container .border-gradient {
  width: 100%;
}

.header-component .search-row-container .search-bar-wrap {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.header-component .search-row-container .search-bar-wrap .search-bar-container {
  display: flex;
  align-items: center;
  position: relative;
  padding: 2px 5px;
  height: 100%;
  width: 100%;
  border: 1px solid;
  border-color: #dcbebe;
  border-radius: 20px;
}

.header-component .search-row-container .search-bar-wrap .search-bar-container .remove-search-text-icon {
  transition: scale .4s ease-in-out;
}

.header-component .search-row-container .search-bar-wrap .search-bar-container .remove-search-text-icon:hover {
  scale: 1.11;
  animation: 20s ease-in-out infinite zoom-in-zoom-out;
  cursor: pointer;
}

.header-component .search-row-container .search-bar-wrap .search-bar-container .search-input-sidebar {
  padding: 12px 8px;
  margin-left: 12px;
  margin-right: 12px;
}

.header-component .badge-game-type {
  background-color: #f8f9fa;
  color: #212529;
  border-radius: 50px;
  padding: 16px;
  margin: 4px;
  transition: scale .4s ease-in-out;
  font-size: 12px;
  font-weight: 700;
}

.header-component .badge-game-type:hover {
  scale: 1.11;
  animation: 20s ease-in-out infinite zoom-in-zoom-out;
  background: #f7b114;
  color: #fff;
  cursor: pointer;
}

@media (width >= 576px) {
  .search-bar-wrap {
    flex-direction: row !important;
  }
}

@media only screen and (width <= 375px) {
  .scroll-side-wrap {
    min-height: 33dvh;
    height: 33dvh;
    overflow: auto;
    padding-bottom: 20px;
  }
}

@media only screen and (width >= 376px) and (width <= 500px) {
  .scroll-side-wrap {
    min-height: 50dvh;
    height: 50dvh;
    overflow: auto;
    padding-bottom: 20px;
  }
}

@media only screen and (width >= 501px) and (width <= 786px) {
  .scroll-side-wrap {
    min-height: 700px;
    height: 700px;
    overflow: auto;
    padding-bottom: 50px;
  }
}

@media only screen and (width >= 786px) and (width <= 1100px) {
  .scroll-side-wrap {
    min-height: 590px;
    height: 590px;
    overflow: auto;
    padding-bottom: 150px;
  }
}

@media only screen and (width >= 1100px) {
  .scroll-side-wrap {
    min-height: 590px;
    height: 590px;
    overflow: auto;
    padding-bottom: 150px;
  }
}

@media only screen and (width >= 1600px) {
  .scroll-side-wrap {
    min-height: 800px;
    height: 800px;
    overflow: auto;
    padding-bottom: 150px;
  }
}

.scroll-side-wrap {
  overflow-y: auto;
}

.scroll-side-wrap::-webkit-scrollbar {
  width: 0;
}

@keyframes zoom-in-zoom-out {
  0% {
    background-size: 700px;
  }

  50% {
    background-size: 850px;
  }

  100% {
    background-size: 700px;
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    background-size: 700px;
  }

  50% {
    background-size: 850px;
  }

  100% {
    background-size: 700px;
  }
}

.categories-side-wrap {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  cursor: pointer;
  padding: 20px 10px;
  height: 100dvh;
  overflow: auto;
}

.categories-side-wrap .categories-side-list-wrap {
  padding: 5px 10px;
  border-radius: 10px;
  transition: all .2s ease-in-out;
}

.categories-side-wrap .categories-side-list-wrap .categories-side-image-wrap {
  transition: all .35s ease-in-out;
}

.categories-side-wrap .categories-side-list-wrap:hover {
  background: #143195;
  background: linear-gradient(65deg, #143195 0%, #182a67 100%);
}

.categories-side-wrap .categories-side-list-wrap:hover .categories-side-image-wrap {
  transform: scale(1.1);
}

.categories-side-wrap .categories-side-list-wrap:hover .categories-side-text-wrap {
  color: #fff;
}

.categories-side-wrap .categories-side-list-wrap-active {
  background: #143195;
  background: linear-gradient(65deg, #143195 0%, #182a67 100%);
}

.categories-side-wrap .categories-side-list-wrap-active .categories-side-image-wrap {
  transform: scale(1.1);
}

.categories-side-wrap .categories-side-list-wrap-active .categories-side-text-wrap {
  color: #fff;
}

.categories-side-wrap .k9-small-logo-wrap {
  cursor: default;
  background-color: #0000 !important;
}

.categories-side-wrap .categories-side-text-wrap {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: .96rem;
}

.categories-side-wrap::-webkit-scrollbar {
  width: 3px;
  height: 6px;
}

.categories-side-wrap::-webkit-scrollbar-thumb {
  border-radius: 100px;
}

.right-header-main-wrap {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 18px;
}

.header-menu-list-wrap > a {
  text-decoration: none;
}

.header-menu-list-wrap .title-main-wrap {
  color: #000;
  font-weight: 500;
  margin: 0;
}

.main-login-btn-wrap {
  background-color: #143195;
  position: relative;
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  padding: 5px 15px;
  gap: 5px;
  font-weight: 500;
  align-items: center;
  border-radius: 20px;
}

@media screen and (width <= 991px) {
  .cus-mas-col-wrap {
    margin-top: 4em;
  }

  .header-menu-list-wrap .title-main-wrap {
    font-size: .9rem;
  }

  .main-logo-wrap {
    width: 168px;
  }

  .side-menu-icon-wrap {
    width: 22px;
  }

  .search-main-new-wrap {
    position: fixed;
    transition: all .3s ease-in-out;
    right: -100%;
    background-color: #fff;
    z-index: 100;
    width: 100%;
  }

  .search-main-new-wrap.open-search-wrap {
    right: 0%;
  }

  .right-header-main-wrap {
    position: fixed;
    bottom: 10px;
    background: #fff;
    padding: 10px;
    width: 95%;
    box-shadow: 1px -1px 10px 2px #00000059;
    justify-content: space-between;
    border-radius: 15px;
    left: initial;
  }

  .header-menu-list-wrap, .heart-menu-wrap, .login-main-header-wrap {
    width: 100%;
  }

  .header-menu-list-wrap {
    text-align: center;
  }

  .login-main-header-wrap {
    text-align: end;
  }

  .heart-menu-wrap {
    text-align: center;
  }
}

.k9-logo-wrap {
  border-radius: 10px;
  box-shadow: 0 1px 5px #e1e1e1;
  cursor: pointer;
}

.profile-tag-wrap {
  position: relative;
  cursor: pointer;
}

.profile-tag-wrap > img {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.profile-tag-wrap .profile-name-tag-wrap {
  font-weight: 500;
  text-overflow: ellipsis;
  min-width: 50px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 70px;
}

.profile-tag-wrap .profile-dropdown-wrap {
  position: absolute;
  left: 0;
  top: 50px;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 2px 10px #8f8b8b;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

@media screen and (width <= 991px) {
  .profile-tag-wrap .profile-dropdown-wrap {
    top: -90px;
    min-width: 150px;
    max-width: 150px;
    right: 0;
    left: auto;
  }
}

.profile-tag-wrap .profile-dropdown-wrap .profile-dropdown-item-wrap a {
  font-size: 13px;
  text-decoration: none;
  color: #212529;
  font-weight: 500;
}

.profile-tag-wrap .profile-dropdown-wrap .profile-dropdown-item-wrap a p {
  padding: 0;
  margin: 0;
}

.profile-tag-wrap:hover .profile-dropdown-wrap {
  visibility: visible;
  opacity: 1;
}

.header-menu-list-wrap > a {
  position: relative;
}

.header-menu-list-wrap > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #f7b114;
  transition: all .3s ease-in-out;
}

.header-menu-list-wrap > a:hover:before {
  width: 100%;
}

.header-menu-list-wrap > a.active:before {
  width: 100%;
}

.sidebar {
  pointer-events: all;
  height: 100%;
  border-top-right-radius: 10px;
  width: 15%;
  position: fixed;
  top: 0;
  left: -955px;
  z-index: 100;
  background-color: #fff;
  transition: all .4s ease-in-out;
  overflow: visible;
  box-shadow: 2px 0 3px #4242424a;
}

.sidebar .close-btn {
  position: absolute;
  top: 15px;
  right: -18px;
  cursor: pointer;
  transition: all .3s ease-in-out;
  z-index: 10;
  width: 40px;
}

.sidebar .close-btn:hover {
  scale: 1.05;
}

.sidebar .sidebar-logo-container {
  flex: 0 0 25%;
  max-width: 25%;
  margin-top: 0;
  margin-bottom: .5rem;
  margin-bottom: 0;
}

.sidebar .sidebar-logo-container .sidebar-logo {
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.sidebar .sidebar-logo-container .logo-container.border-gradient {
  border-radius: 28px;
}

.sidebar-open {
  left: 0;
}

.bg-shade-wrap {
  pointer-events: all;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100vh;
  top: 0;
  background: #0000008a;
  z-index: 0;
  transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.sidebar-open + .bg-shade-wrap {
  opacity: 1;
  visibility: visible;
}

@media only screen and (width <= 1600px) {
  .sidebar {
    width: 20%;
  }
}

@media only screen and (width <= 992px) {
  .sidebar {
    width: 50%;
    left: -100%;
  }

  .sidebar-open {
    left: 0;
  }
}

@media only screen and (width <= 768px) {
  .sidebar {
    width: 70%;
    left: -100%;
  }

  .sidebar-logo-container {
    margin-bottom: 0 !important;
  }

  .sidebar-open {
    left: 0;
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    background-size: 700px;
  }

  50% {
    background-size: 850px;
  }

  100% {
    background-size: 700px;
  }
}

.logo-container {
  min-width: 130px;
  height: 57px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
}

.logo-container .main-logo-wrap {
  height: 80%;
  cursor: pointer;
  width: 85%;
}

.loader-container {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  transition: opacity .15s ease-in-out;
  z-index: 999999;
  background-color: #2e378d;
  pointer-events: none;
  overflow: hidden;
}

.loader-container .dot {
  width: 20px;
  height: 20px;
  background-color: #ffce06;
  border-radius: 50%;
  margin: 0 5px;
  animation: 1.1s infinite bounce;
}

.loader-container .dot:first-child {
  animation-delay: 0s;
}

.loader-container .dot:nth-child(2) {
  animation-delay: .1s;
}

.loader-container .dot:nth-child(3) {
  animation-delay: .2s;
}

.loader-container .dot:nth-child(4) {
  animation-delay: .3s;
}

.loader-container .dot:nth-child(5) {
  animation-delay: .4s;
}

.loader-container.loading {
  opacity: 1;
  pointer-events: unset;
}

body .loader-container.loading {
  overflow: hidden;
}

body ~ .root ~ .App ~ .loading {
  overflow: hidden;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-60px);
  }

  60% {
    transform: translateY(25px);
  }
}

.search-input {
  width: 100%;
  border: none;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: .825px;
  transition: all .2s ease-in-out;
  background: none;
}

.search-input::placeholder {
  color: #f47516;
  opacity: 1;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

@media only screen and (width <= 992px) {
  .search-input::placeholder {
    font-size: 12px;
  }
}

.search-input:focus-visible {
  outline: none;
}

.icon-btn {
  width: 33px;
  cursor: pointer;
  transition: all .3s ease-in-out;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.icon-btn:hover {
  scale: 1.05;
}

.icon-like-btn {
  width: 30px;
  cursor: pointer;
  transition: all .3s ease-in-out;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.icon-like-btn:hover {
  scale: 1.05;
}

@keyframes loader {
  15% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(230px);
  }

  65% {
    transform: translateX(230px);
  }

  95% {
    transform: translateX(0);
  }
}

@keyframes loading-text {
  0% {
    content: "Loading";
  }

  25% {
    content: "Loading.";
  }

  50% {
    content: "Loading..";
  }

  75% {
    content: "Loading...";
  }
}

.fetch-loader-container {
  height: 100%;
  width: 100%;
  font-family: Helvetica;
}

.fetch-loader-container .loader {
  height: 20px;
  width: 250px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.fetch-loader-container .loader .loader-dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: #000;
  position: absolute;
  border: 2px solid #fff;
}

.fetch-loader-container .loader .loader-dot:first-child {
  background-color: #8cc759;
  animation-delay: .5s;
}

.fetch-loader-container .loader .loader-dot:nth-child(2) {
  background-color: #8c6daf;
  animation-delay: .4s;
}

.fetch-loader-container .loader .loader-dot:nth-child(3) {
  background-color: #ef5d74;
  animation-delay: .3s;
}

.fetch-loader-container .loader .loader-dot:nth-child(4) {
  background-color: #f9a74b;
  animation-delay: .2s;
}

.fetch-loader-container .loader .loader-dot:nth-child(5) {
  background-color: #60beeb;
  animation-delay: .1s;
}

.fetch-loader-container .loader .loader-dot:nth-child(6) {
  background-color: #fbef5a;
  animation-delay: 0s;
}

.fetch-loader-container .loader .loader-text {
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  width: 4rem;
  margin: auto;
}

.fetch-loader-container .loader .loader-text:after {
  content: "Loading";
  font-weight: bold;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.game-display {
  box-shadow: 0 0 6px #00000040;
  color: #f0f8ff;
  transition: all .1s ease-in-out;
  cursor: pointer;
  border-radius: 12px;
  position: relative;
}

@media only screen and (width <= 376px) {
  .game-display {
    height: 100px;
  }
}

@media only screen and (width >= 377px) and (width <= 480px) {
  .game-display {
    height: 110px;
  }
}

@media only screen and (width >= 481px) and (width <= 575px) {
  .game-display {
    height: 125px;
  }
}

@media only screen and (width >= 576px) and (width <= 767px) {
  .game-display {
    height: 125px;
  }
}

@media only screen and (width >= 768px) and (width <= 992px) {
  .game-display {
    height: 135px;
  }
}

@media only screen and (width >= 992px) and (width <= 1024px) {
  .game-display {
    height: 125px;
  }
}

@media only screen and (width >= 1025px) and (width <= 1199px) {
  .game-display {
    height: 145px;
  }
}

@media only screen and (width >= 1200px) and (width <= 1400px) {
  .game-display {
    height: 135px;
  }
}

@media only screen and (width >= 1401px) {
  .game-display {
    height: 140px;
  }
}

@media screen and (width >= 1600px) {
  .game-display {
    height: 160px;
  }
}

@media screen and (width >= 1850px) {
  .game-display {
    height: 190px;
  }
}

.game-display img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.game-display:hover {
  border: 2px solid #00ffb2;
  box-shadow: 0 2px 4px #000000b5;
  transform: scale(1);
}

.game-display:hover .ab-title-wrap {
  display: flex;
}

.game-display:hover .ab-title-wrap p {
  text-align: center;
  color: #fff;
  letter-spacing: .11em;
  text-shadow: 2px 2px 6px #000;
  padding: 5px;
}

.game-display .tag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -11px;
  top: 5px;
  z-index: 1;
}

.game-display .tag-container .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-display .ab-title-wrap {
  background: linear-gradient(#0000 53.54%, #000000d4 86.59%);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999108;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  border-radius: 12px;
  display: none;
}

.game-display .ab-title-wrap p {
  padding: 0;
  margin: 0;
  padding-bottom: 5px;
  font-size: 10px;
  font-family: nulshock-bd;
}

@media screen and (width <= 600px) {
  .game-display .ab-title-wrap p {
    font-size: 8px;
  }
}

@media screen and (width <= 500px) {
  .game-display .tag-container {
    top: 0;
    left: -8px;
  }

  .game-display .tag-container .icon-container {
    width: 80px;
  }
}

@media screen and (width >= 1200px) {
  .game-display .tag-container {
    left: -10px;
    top: 5px;
  }

  .game-display .tag-container .icon-container {
    width: 100px;
  }
}

.custom-button {
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, #0a0728 0%, #122046 99.95%);
}

.custom-button:disabled {
  background: gray;
}

.description-container {
  width: 100%;
  background: #ffffffb3;
  background-size: 780px 780px;
  background-position: center;
  border: 1px solid #eee0e0;
  border-radius: 10px;
  padding: 22px;
}

.description-container h1 {
  text-align: start;
  font-size: 20px;
}

.description-container h2 {
  text-align: start;
  font-size: 20px;
}

.description-container p {
  text-align: start;
  font-size: 14px;
}

.mail-link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.tag-about-wrap {
  display: inline-block;
  padding: 10px;
  background: #f0f8ff;
  border-radius: 15px;
}

.home-about-game-list li {
  cursor: pointer;
  text-decoration: underline !important;
}

.home-about-game-list li::marker {
  color: #000;
}

.footer-container {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #eee0e0;
}

.footer-container .copyright {
  color: #6d5c5c;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer-container .copyright .terms-and-policy-container {
  color: #6d5c5c;
  text-decoration: none;
  cursor: pointer;
}

.footer-container .copyright .terms-and-policy-container:hover {
  color: #4d4dc3;
}

.footer-container .company-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 0 4px #00000040;
}

.footer-container .company-logo img {
  width: 110px;
}

@media only screen and (width >= 1100px) {
  .footer-container .company-logo img {
    width: 100%;
  }
}

.footer-container .logo-container.border-gradient.my-auto {
  border-radius: 28px;
}

.p-right-3 {
  padding-right: 16px;
}

.privacy-policy-container {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  width: 96%;
  background: url("../media/bg-pattern-drawer.13729e61.webp"), #fafafa 50% / cover no-repeat;
  background-size: 780px 780px;
  background-position: center;
  border: 1px solid #eee0e0;
  border-radius: 10px;
  padding: 22px;
}

.privacy-policy-container h1 {
  color: #f47516;
  font-style: italic;
}

.privacy-policy-container h2 {
  text-align: start;
  font-style: italic;
}

.privacy-policy-container p {
  text-align: start;
  font-style: italic;
}

.privacy-policy-container li {
  text-align: start;
  font-style: italic;
}

.cus-input-container .cus-input-label {
  font-size: 13px;
  font-weight: 600;
}

.cus-input-container .cus-input {
  border-radius: 5px;
  border: 1px solid #1c1c1e61;
  padding: 6px;
  font-size: 14px;
}

.cus-input-container .cus-input-error {
  font-size: 13px;
  padding-left: 4px;
}

.icon-input-label {
  font-weight: 500;
  font-size: 14px;
}

.icon-input-container {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #1c1c1e7a;
  background: #fff0;
  resize: none;
}

.icon-input-container .input {
  border: none;
  outline: none;
  background: #fff0;
}

.icon-input-container .input:focus {
  background: #fff0;
}

.file-input-container .file-input-label {
  font-size: 12px;
  background: #fff;
  padding: 0 5px;
  color: #00000080;
}

.file-input-error {
  color: #e74c3c;
  margin: 0;
  text-align: start;
  font-size: 12px;
  padding: 2px 0 0 12px;
}

.file-input-container-error {
  border: 1px solid #e74c3c;
}

.file-input-container-error .file-input-label {
  color: #e74c3c;
}

.cus-tag-input-components .rti--container {
  --rti-main: black;
  padding: 4px 8px;
}

.cus-tag-input-components .rti--container .rti--tag {
  font-size: 13px;
  font-weight: 600;
  padding: 3px 0 0 8px !important;
}

.cus-tag-input-components .rti--container .rti--tag span {
  margin: 0;
}

.cus-tag-input-components .rti--container .rti--input {
  width: 100% !important;
}

.cus-tag-input-components .rti--container .rti--input::placeholder {
  font-size: 14px;
}

.cus-tag-input-components .ReactTags__tag {
  --rti-main: black;
  background-color: red;
  font-size: 13px !important;
}

.cus-otp-container .inputStyle {
  height: 45px;
  border-radius: 7px;
  border: 0;
  margin-left: 0;
  margin-right: 0;
  background: #ddd;
  font-size: 20px;
  width: 100% !important;
}

.cus-otp-container > div {
  gap: 10px;
}

.rating-label {
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.error-p {
  font-weight: 500;
  font-size: 14px;
}

.rating-title-wrap {
  font-size: .7rem;
}

.feedback {
  --normal: #41405287;
  --normal-shadow: #ffffff59;
  --normal-shadow-top: #39375b9e;
  --normal-mouth: #00000075;
  --normal-eye: #0505065e;
  --active: #f8da69;
  --active-shadow: #f4b555;
  --active-shadow-top: #fff6d3;
  --active-mouth: #f05136;
  --active-eye: #313036;
  --active-tear: #76b5e7;
  --active-shadow-angry: #e94f1d;
  --hover: #454456;
  --hover-shadow-top: #59586b;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.feedback label {
  position: relative;
  transition: transform .3s;
  cursor: pointer;
}

.feedback label input {
  appearance: none;
  outline: none;
  border: none;
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--sb, var(--normal));
  box-shadow: inset 3px -3px 4px var(--sh, var(--normal-shadow)), inset -1px 1px 2px var(--sht, var(--normal-shadow-top));
  transition: background .4s, box-shadow .4s, transform .3s;
  -webkit-tap-highlight-color: #0000;
}

.feedback label div {
  width: 40px;
  height: 40px;
  position: relative;
  transform: perspective(240px)translateZ(4px);
}

.feedback label div svg, .feedback label div:before, .feedback label div:after {
  display: block;
  position: absolute;
  left: var(--l, 9px);
  top: var(--t, 13px);
  width: var(--w, 8px);
  height: var(--h, 1px);
  transform: rotate(var(--r, 0deg)) scale(var(--sc, 1)) translateZ(0);
}

.feedback label div svg {
  fill: none;
  stroke: var(--s);
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .4s;
}

.feedback label div svg.eye {
  --s: var(--e, var(--normal-eye));
  --t: 17px;
  --w: 7px;
  --h: 4px;
}

.feedback label div svg.eye.right {
  --l: 23px;
}

.feedback label div svg.mouth {
  --s: var(--m, var(--normal-mouth));
  --l: 11px;
  --t: 23px;
  --w: 18px;
  --h: 7px;
}

.feedback label div:before, .feedback label div:after {
  content: "";
  z-index: var(--zi, 1);
  border-radius: var(--br, 1px);
  background: var(--b, var(--e, var(--normal-eye)));
  transition: background .4s;
}

.feedback label.angry {
  --step-1-rx: -24deg;
  --step-1-ry: 20deg;
  --step-2-rx: -24deg;
  --step-2-ry: -20deg;
}

.feedback label.angry div:before {
  --r: 20deg;
}

.feedback label.angry div:after {
  --l: 23px;
  --r: -20deg;
}

.feedback label.angry div svg.eye {
  stroke-dasharray: 4.55;
  stroke-dashoffset: 8.15px;
}

.feedback label.angry input:checked {
  animation: 1s linear angry;
}

.feedback label.angry input:checked + div:before {
  --middle-y: -2px;
  --middle-r: 22deg;
  animation: .8s linear forwards toggle;
}

.feedback label.angry input:checked + div:after {
  --middle-y: 1px;
  --middle-r: -18deg;
  animation: .8s linear forwards toggle;
}

.feedback label.angry input:hover {
  animation: 1s linear angry;
}

.feedback label.angry input:hover + div:before {
  --middle-y: -2px;
  --middle-r: 22deg;
  animation: .8s linear forwards toggle;
}

.feedback label.angry input:hover + div:after {
  --middle-y: 1px;
  --middle-r: -18deg;
  animation: .8s linear forwards toggle;
}

.feedback label.sad {
  --step-1-rx: 20deg;
  --step-1-ry: -12deg;
  --step-2-rx: -18deg;
  --step-2-ry: 14deg;
}

.feedback label.sad div:before, .feedback label.sad div:after {
  --b: var(--active-tear);
  --sc: 0;
  --w: 5px;
  --h: 5px;
  --t: 15px;
  --br: 50%;
}

.feedback label.sad div:after {
  --l: 25px;
}

.feedback label.sad div svg.eye {
  --t: 16px;
}

.feedback label.sad div svg.mouth {
  --t: 24px;
  stroke-dasharray: 9.5;
  stroke-dashoffset: 33.25px;
}

.feedback label.sad input:checked + div:before, .feedback label.sad input:checked + div:after {
  animation: .6s linear forwards tear;
}

.feedback label.sad input:hover {
  background: var(--active);
  box-shadow: inset 3px -3px 4px var(--active), inset -1px 1px 2px var(--active);
  transition: background .4s, box-shadow .4s, transform .3s;
}

.feedback label.sad input:hover + div:before, .feedback label.sad input:hover + div:after {
  animation: .6s linear forwards tear;
}

.feedback label.ok {
  --step-1-rx: 4deg;
  --step-1-ry: -22deg;
  --step-1-rz: 6deg;
  --step-2-rx: 4deg;
  --step-2-ry: 22deg;
  --step-2-rz: -6deg;
}

.feedback label.ok div:before {
  --l: 12px;
  --t: 17px;
  --h: 4px;
  --w: 4px;
  --br: 50%;
  box-shadow: 12px 0 0 var(--e, var(--normal-eye));
}

.feedback label.ok div:after {
  --l: 13px;
  --t: 26px;
  --w: 14px;
  --h: 2px;
  --br: 1px;
  --b: var(--m, var(--normal-mouth));
}

.feedback label.ok input:checked + div:before {
  --middle-s-y: .35;
  animation: .2s linear forwards toggle;
}

.feedback label.ok input:checked + div:after {
  --middle-s-x: .5;
  animation: .7s linear forwards toggle;
}

.feedback label.ok input:hover {
  background: var(--active);
  box-shadow: inset 3px -3px 4px var(--active), inset -1px 1px 2px var(--active);
  transition: background .4s, box-shadow .4s, transform .3s;
}

.feedback label.ok input:hover + div:before {
  --middle-s-y: .35;
  animation: .2s linear forwards toggle;
}

.feedback label.ok input:hover + div:after {
  --middle-s-x: .5;
  animation: .7s linear forwards toggle;
}

.feedback label.good {
  --step-1-rx: -14deg;
  --step-1-rz: 10deg;
  --step-2-rx: 10deg;
  --step-2-rz: -8deg;
}

.feedback label.good div:before {
  --b: var(--m, var(--normal-mouth));
  --w: 5px;
  --h: 5px;
  --br: 50%;
  --t: 22px;
  --zi: 0;
  opacity: .5;
  box-shadow: 16px 0 0 var(--b);
  filter: blur(2px);
}

.feedback label.good div:after {
  --sc: 0;
}

.feedback label.good div svg.eye {
  --t: 15px;
  --sc: -1;
  stroke-dasharray: 4.55;
  stroke-dashoffset: 8.15px;
}

.feedback label.good div svg.mouth {
  --t: 22px;
  --sc: -1;
  stroke-dasharray: 13.3;
  stroke-dashoffset: 23.75px;
}

.feedback label.good input:checked + div svg.mouth {
  --middle-y: 1px;
  --middle-s: -1;
  animation: .8s linear forwards toggle;
}

.feedback label.happy div {
  --step-1-rx: 18deg;
  --step-1-ry: 24deg;
  --step-2-rx: 18deg;
  --step-2-ry: -24deg;
}

.feedback label.happy div:before {
  --sc: 0;
}

.feedback label.happy div:after {
  --b: var(--m, var(--normal-mouth));
  --l: 11px;
  --t: 23px;
  --w: 18px;
  --h: 8px;
  --br: 0 0 8px 8px;
}

.feedback label.happy div svg.eye {
  --t: 14px;
  --sc: -1;
}

.feedback label.happy input:checked + div:after {
  --middle-s-x: .95;
  --middle-s-y: .75;
  animation: .8s linear forwards toggle;
}

.feedback label input {
  transition: all .3s ease-in-out;
  box-shadow: 0 0 4px 2px #0000 !important;
}

.feedback label input:checked {
  --sb: var(--active);
  --sh: var(--active-shadow);
  --sht: var(--active-shadow-top);
  box-shadow: 0 0 4px 2px #a9a0377d !important;
}

.feedback label input:checked + div {
  --m: var(--active-mouth);
  --e: var(--active-eye);
  animation: .8s linear forwards shake;
}

.feedback label input:not(:checked):hover {
  --sb: var(--hover);
  --sht: var(--hover-shadow-top);
}

.feedback label input:not(:checked):active {
  transform: scale(.925);
}

.feedback label input:not(:checked):active + div {
  transform: scale(.925);
}

.feedback label input:hover {
  background: var(--active);
  box-shadow: inset 3px -3px 4px var(--active), inset -1px 1px 2px var(--active);
  transition: background .4s, box-shadow .4s, transform .3s;
}

.feedback label input:hover + div {
  --m: var(--active-mouth);
  --e: var(--active-eye);
  animation: .8s linear forwards shake;
}

@keyframes shake {
  30% {
    transform: perspective(240px) rotateX(var(--step-1-rx, 0deg)) rotateY(var(--step-1-ry, 0deg)) rotateZ(var(--step-1-rz, 0deg)) translateZ(10px);
  }

  60% {
    transform: perspective(240px) rotateX(var(--step-2-rx, 0deg)) rotateY(var(--step-2-ry, 0deg)) rotateZ(var(--step-2-rz, 0deg)) translateZ(10px);
  }

  100% {
    transform: perspective(240px)translateZ(4px);
  }
}

@keyframes tear {
  0% {
    opacity: 0;
    transform: translateY(-2px)scale(0)translateZ(0);
  }

  50% {
    transform: translateY(12px)scale(.6, 1.2)translateZ(0);
  }

  20%, 80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(24px)translateX(4px)rotateZ(-30deg)scale(.7, 1.1)translateZ(0);
  }
}

@keyframes toggle {
  50% {
    transform: translateY(var(--middle-y, 0)) scale(var(--middle-s-x, var(--middle-s, 1)), var(--middle-s-y, var(--middle-s, 1))) rotate(var(--middle-r, 0deg));
  }
}

@keyframes angry {
  40% {
    background: var(--active);
  }

  45% {
    box-shadow: inset 3px -3px 4px var(--active-shadow), inset 0 8px 10px var(--active-shadow-angry);
  }
}

.feedback-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background-color: #fff;
  box-shadow: 0 0 24px #00000040;
  padding: 16px 24px;
  border-radius: 10px;
  z-index: 10001;
}

.feedback-wrap:focus-visible {
  outline: none;
}

.not-found-image-wrap {
  display: flex;
  justify-content: center;
  margin-top: 120px;
}

.not-found-desc-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: nulshock-bd;
}

.not-found-desc-wrap h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: .055em;
  text-align: left;
  color: #f47516;
  opacity: 1;
}

.not-found-desc-wrap h2 {
  border-radius: 5px;
  border: 1px;
  background: linear-gradient(270deg, #ff1e27 5.29%, #f47516 63.99%, #1c3bd3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #0000;
}

.cookie-wrapper {
  margin: 0;
  z-index: 10;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  position: fixed;
  bottom: 23px;
  right: 23px;
  margin-left: 23px;
  max-width: 538px;
  border-radius: 10px;
  border: 0 solid #000;
  background: #00000078;
  box-shadow: 0 4px 4px #00000040;
  backdrop-filter: blur(21px);
  padding: 25px 25px 30px;
  text-align: center;
}

.cookie-wrapper .content {
  margin-top: 10px;
}

.cookie-wrapper .content header {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}

.cookie-wrapper .content p {
  color: #fff;
}

.cookie-wrapper .content .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cookie-wrapper .content .buttons button {
  padding: 10px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: #fcba7f;
  transition: all .3s;
}

.cookie-wrapper .content .buttons button:hover {
  transform: scale(.97);
}

.cookie-wrapper .content .buttons .decline-btn {
  margin-top: 15px;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-wrapper-new {
  margin: 0;
  z-index: 101;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  position: fixed;
  bottom: 0;
  left: 0;
  border: 0 solid #000;
  background: #2b373b;
  box-shadow: 0 4px 4px #00000040;
  padding: 10px 20px;
  width: 100%;
  color: #fff;
  font-size: 14px;
}

.cookie-btn-wrap {
  padding: 8px 20px;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  transition: all .3s;
}

.cookie-btn-wrap:hover {
  transform: scale(.97);
}

.game-play {
  margin-top: 5.5em;
  padding: 15px;
}

.game-play .description {
  width: 100%;
  background: #fafafa80;
  background-size: 780px 780px;
  background-position: center;
  border: 1px solid #eee0e0;
  border-radius: 10px;
  padding: 22px;
}

.game-play .description .category-container .category-name {
  padding: 0;
  margin: 0;
  margin-left: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  background: linear-gradient(270deg, #ff1e27 5.29%, #f47516 63.99%, #1c3bd3 100%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #0000;
  -moz-background-clip: text;
  -moz-text-fill-color: #0000;
}

.game-play .description .game-name {
  color: #1a1878;
  text-align: start;
  text-shadow: 0 0 2px #00000021;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: .5rem;
}

.game-play .description .normal-text {
  color: #816868;
  text-align: start;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 1rem;
  background-color: #0000 !important;
}

.title-game-play-wrap {
  padding: 15px 10px;
  padding-top: 20px;
  font-size: 48px;
  margin-bottom: 32px;
  font-weight: 700;
  background: linear-gradient(270deg, #ff1e27 27.29%, #f47516 20.99%, #1c3bd3 84%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: #0000;
  -moz-text-fill-color: #0000;
}

.out-card-game-play-wrap {
  width: 100%;
  background: #fafafa80;
  background-size: 780px 780px;
  background-position: center;
  border: 1px solid #eee0e0;
  border-radius: 10px;
  padding: 5px;
}

@media only screen and (width <= 481px) {
  .title-game-play-wrap {
    margin-bottom: 0;
    font-size: 20px !important;
  }

  .game-play {
    margin-top: 4.5em;
  }
}

@media only screen and (width >= 481px) and (width <= 786px) {
  .title-game-play-wrap {
    font-size: 32px;
    margin-bottom: 0;
  }

  .game-play {
    margin-top: 4.5em;
  }
}

@media only screen and (width >= 786px) and (width <= 1100px) {
  .title-game-play-wrap {
    font-size: 35px;
  }
}

@media only screen and (width >= 1100px) {
  .title-game-play-wrap {
    font-size: 32px;
  }
}

@media only screen and (width >= 1600px) {
  .title-game-play-wrap {
    font-size: 35px;
  }
}

.ad-container {
  background: #d6cbe163;
  border-radius: 10px;
  position: relative;
  padding: 0;
  color: #2c2323;
}

.ad-container:before {
  content: "Advertisement";
  position: absolute;
  left: 0;
  bottom: -18px;
  font-size: 11px;
  letter-spacing: .1em;
}

@media only screen and (width >= 1025px) and (width <= 1199px) {
  .game-play-rec-fe-game-wrap > * {
    gap: .5rem !important;
  }
}

@media only screen and (width >= 1200px) and (width <= 1400px) {
  .game-play-rec-fe-game-wrap > * {
    gap: .5rem !important;
  }
}

@media only screen and (width >= 1401px) {
  .game-play-rec-fe-game-wrap > * {
    gap: .2rem !important;
  }
}

@media screen and (width >= 1600px) {
  .game-play-rec-fe-game-wrap > * {
    gap: .4rem !important;
  }
}

@media screen and (width >= 1850px) {
  .game-play-rec-fe-game-wrap > * {
    gap: .5rem !important;
  }
}

@media only screen and (width >= 1025px) and (width <= 1199px) {
  .game-play-rec-fe-game-wrap .game-display {
    height: 145px;
  }
}

@media only screen and (width >= 1200px) and (width <= 1400px) {
  .game-play-rec-fe-game-wrap .game-display {
    height: 90px;
  }
}

@media only screen and (width >= 1401px) {
  .game-play-rec-fe-game-wrap .game-display {
    height: 100px;
  }
}

@media screen and (width >= 1600px) {
  .game-play-rec-fe-game-wrap .game-display {
    height: 115px;
  }
}

@media screen and (width >= 1850px) {
  .game-play-rec-fe-game-wrap .game-display {
    height: 137px;
  }
}

.cus-textarea-wrap {
  resize: none;
  border: 1px solid #eed8d8;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
}

.close-report-box-wrap {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 20px;
}

.close-report-box-wrap img {
  width: 20px;
}

.game-play-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.game-play-container .game-iframe {
  border-radius: 12px 12px 0 0;
  background-color: #000;
  overflow: hidden !important;
}

@media only screen and (width <= 481px) {
  .game-play-container .game-iframe {
    min-height: 450px;
  }
}

@media only screen and (width >= 481px) and (width <= 786px) {
  .game-play-container .game-iframe {
    min-height: 450px;
  }
}

@media only screen and (width >= 786px) and (width <= 1100px) {
  .game-play-container .game-iframe {
    min-height: 450px;
  }
}

@media only screen and (width >= 1100px) {
  .game-play-container .game-iframe {
    min-height: 450px;
  }
}

@media only screen and (width >= 1600px) {
  .game-play-container .game-iframe {
    min-height: 600px;
  }
}

.game-play-container .game-action-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #0a0728 0%, #122046 99.95%);
  border-radius: 0 0 12px 12px;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
}

.game-play-container .game-action-container .game-details-container-left {
  display: flex;
}

.game-play-container .game-action-container .game-details-container-left .game-title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 10px;
}

.game-play-container .game-action-container .game-details-container-left .game-title-container .game-name {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  text-align: left;
}

@media only screen and (width <= 576px) {
  .game-play-container .game-action-container .game-details-container-left .game-title-container .game-name {
    font-size: 13px !important;
  }
}

@media only screen and (width <= 991px) {
  .game-play-container .game-action-container .game-details-container-left .game-title-container .game-name {
    font-size: 15px;
  }
}

.game-play-container .game-action-container .game-details-container-left .game-title-container .game-created-by {
  color: #e5d0d0;
  font-size: 14px;
}

@media only screen and (width <= 581px) {
  .game-play-container .game-action-container .game-details-container-left .game-title-container .game-created-by {
    font-size: 11px;
  }
}

.mobile-game-play-container {
  background: #122046;
  width: 100%;
  border-radius: 20px;
  position: relative;
}

.mobile-game-play-container .mobile-game-img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.mobile-game-play-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #00000061;
  border-radius: 10px;
}

.mobile-game-play-wrap .mobile-game-play-btn {
  box-shadow: 0 0 8px #000;
  border-radius: 14px;
  cursor: pointer;
}

.mobile-game-play-wrap .mobile-game-play-btn-p {
  font-size: 12px;
  font-weight: 700;
  color: #e5d0d0;
}

.tab-full-screen-demo #fullscreen-div {
  display: flex;
}

@media only screen and (width <= 512px) {
  .tab-full-screen-demo .game-play-container .fullscreen-container .game-iframe {
    min-height: 450px;
    height: 92dvh;
  }
}

@media only screen and (width >= 513px) {
  .tab-full-screen-demo .game-play-container .fullscreen-container .game-iframe {
    min-height: auto;
    height: 100dvh;
  }
}

.tab-full-screen-demo .game-play-container .game-iframe {
  border-radius: 0;
}

.tab-full-screen-demo .game-play-container .game-action-container {
  height: 8dvh;
  border-radius: 0;
}

.tab-full-screen-demo .game-details-container-left {
  justify-content: space-between;
  width: 100%;
}

.align-self-start svg {
  width: 80px;
}

.game-category-container {
  background: #fff;
  width: 100%;
  border: 1px solid #e9e6e6;
  border-radius: 12px;
  box-shadow: 0 4px 6px #e9e6e6;
  transition: transform .5s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.game-category-container .category-name-container {
  float: right;
  display: flex;
  align-items: center;
}

.game-category-container .category-name-container .category-name {
  font-weight: bold;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  background: linear-gradient(270deg, #ff1e27 5.29%, #f47516 63.99%, #1c3bd3 100%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #0000;
  -moz-background-clip: text;
  -moz-text-fill-color: #0000;
}

.game-category-container .image-container {
  padding: 10px;
}

.game-category-container .category-image {
  width: 100px;
  height: 100px;
  transition: all .3s ease-in-out;
}

.game-category-container .button-container {
  width: fit-content;
  right: 0;
  position: absolute;
  bottom: 0;
}

.game-category-container .category-btn {
  background: #f5b800;
  width: 50px;
  height: 50px;
  border: none;
  border-top-left-radius: 9px;
  border-bottom-right-radius: 10px;
}

.game-category-container .category-btn:focus {
  border: none;
  outline: none;
}

.game-category-container:hover {
  transform: scale(1.05);
  z-index: 100;
  position: relative;
}

@media only screen and (width <= 576px) {
  .game-category-container .category-name-container .category-name {
    font-size: 14px;
    font-weight: 700;
  }

  .game-category-container .category-btn {
    width: 32px;
    height: 32px;
  }

  .game-category-container .category-image {
    margin: 3px;
    width: 56px;
    height: 56px;
  }
}

.comment:before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ebebeb;
}

.en-comment:before {
  left: 24px;
}

.ar-comment:before {
  right: 24px;
}

.comment.reply:before {
  content: "";
  position: absolute;
  top: 18px;
  width: 37px;
  height: 10px;
  background-color: #fff;
  transform: translateY(-50%);
  border-bottom: 1.5px solid #ebebeb;
}

.en-comment.reply:before {
  left: -35.5px;
  border-bottom-left-radius: 6px;
}

.ar-comment.reply:before {
  right: -35.5px;
  border-bottom-right-radius: 6px;
}

.comment.reply:after {
  content: "";
  position: absolute;
  top: 0%;
  width: 1px;
  height: 100%;
  background-color: #ebebeb;
}

.en-comment.reply:after {
  left: -36px;
}

.ar-comment.reply:after {
  right: -36px;
}

.cus-comment-wrap .comment:last-child:before {
  height: 0;
}

.cus-comment-wrap .comment:last-child:after {
  height: 100%;
}

.cus-comment-wrap .comment.reply:last-child:before {
  height: 10px;
}

.cus-comment-wrap .reply-outer-box-wrap:last-child .comment:last-child:after {
  height: 19px;
}

.cus-comment-wrap > .comment.reply:last-child:after {
  height: 18px;
}

.main {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cus-main-video-new-wrap {
  background-color: #000;
  border-radius: 10px;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

video {
  display: block;
  height: 100%;
  object-fit: contain;
}

.Btn {
  content: "▶";
  font-size: 3em;
  color: red;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 60px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.user-details {
  display: flex;
  margin-left: 20px;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.vidoe-game-play {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px;
  background: #46433f96;
  box-shadow: 0 0 8px #00000054;
  backdrop-filter: blur(3px);
  margin-left: 20px;
  margin-bottom: 10px;
  padding: 10px;
  padding-top: 5px;
}

.vidoe-game-play .game-title {
  font-size: 13px;
  line-height: 26px;
  color: #fff;
  padding-bottom: 5px;
}

.ab-mb-new-controls-wrap {
  cursor: pointer;
  position: absolute;
  z-index: 100;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.video-wrapper .control-box-main-wrap {
  display: contents;
}

.inner-control-new-wrap {
  transition: all .2s ease-in-out;
}

.swiper-wrapper {
  height: 80dvh !important;
}

@media screen and (width >= 992px) {
  .swiper-wrapper {
    height: 80dvh !important;
  }
}

.social-media-icon-bg-wrap {
  background-color: #000000b8;
  border-radius: 50%;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySwiper.new-video-section-wrap {
  overflow: visible;
}

@media screen and (width >= 600px) {
  .desktop-tex-color-wrap {
    color: #000 !important;
  }
}

.avatar-video-pr-wrap {
  border: 1px solid #fff;
  width: 35px !important;
  height: 35px !important;
}

.cus-slider-wrap {
  position: relative;
}

.prev-cus-wrap {
  cursor: pointer;
  position: absolute;
  top: 10%;
  left: -18px;
  background: none;
  box-shadow: none;
  border: none;
}

.rtl-prev-cus-wrap {
  position: absolute;
  top: 10%;
  left: -18px;
  background: none;
  box-shadow: none;
  border: none;
}

.next-cus-wrap {
  cursor: pointer;
  position: absolute;
  top: 10%;
  right: -18px;
  background: none;
  box-shadow: none;
  border: none;
}

.rtl-next-cus-wrap {
  position: absolute;
  top: 10%;
  right: -18px;
  background: none;
  box-shadow: none;
  border: none;
}

.share-slider-wrap {
  padding: 0 20px !important;
}

.share-slider-wrap .swiper-wrapper {
  justify-content: space-between;
}

.share-slider-wrap .swiper-button-prev {
  top: 23px;
  left: -7px;
  color: #000;
}

.share-slider-wrap .swiper-button-next {
  top: 23px;
  right: -9px;
  color: #000;
}

.share-slider-wrap.swiper-rtl .swiper-button-prev {
  top: 25px;
  right: -7px;
  color: #000;
}

.share-slider-wrap.swiper-rtl .swiper-button-next {
  top: 25px;
  left: -7px;
  right: auto;
  color: #000;
}

.swiper-button-prev:after, .swiper-button-next:after {
  color: #000;
  font-weight: 900;
  font-size: 15px !important;
}

.player {
  padding: 0;
  margin: 0;
}

.player video {
  border-radius: 6px;
  object-fit: cover;
}

@media only screen and (device-width >= 768px) and (device-width <= 1024px) and (orientation: landscape) {
  .player video {
    object-fit: contain;
  }
}

.player-vertical video {
  border-radius: 6px;
  object-fit: contain;
}

.control-hidden {
  opacity: 0;
  transition: opacity .6s, transform .3s;
}

.control-visible {
  opacity: 1;
  transition: opacity .6s, transform .3s;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.audio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.audio-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.audio-container audio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-shade-gd-wrap {
  background-image: linear-gradient(0deg, #000000a6, #0000);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.play-btn-new-wrap {
  box-shadow: 0 0 7.144px #00000054;
  border-radius: 10px;
  background: #fff !important;
}

.play-btn-new-wrap button {
  color: #000;
  font-size: 12px;
  border-radius: 10px;
  background: #fff !important;
}

.card-wrap:hover {
  transition: all .3s ease-in-out;
  transform: scale(1.05);
}

.custom-masonry > :nth-child(2n) {
  margin-top: 15px;
}

.cus-mas-col-wrap {
  margin-top: 5em;
  padding: 15px;
}

.category-list-main-wrap {
  text-align: center;
  padding-top: 80px;
}

.category-list-main-wrap + .home-container .custom-masonry.cus-mas-col-wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.category-description {
  width: 100%;
  background: #ffffffb3;
  background-size: 780px 780px;
  background-position: center;
  border: 1px solid #eee0e0;
  border-radius: 10px;
  padding: 22px;
}

.category-types {
  padding: 15px;
}

.about-container {
  padding: 15px;
}

.category-game-type {
  display: flex;
  cursor: pointer;
  width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -7px;
  cursor: pointer;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.category-game-type a {
  color: #3f3e3e;
  text-decoration: none;
}

.category-game-type .sub-game-type {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #e5e3e3;
  transition: background-color .3s ease-in-out;
}

.category-game-type .sub-game-type:hover {
  background-color: #ccc;
}

.no-flash-message {
  text-align: center;
  font-size: 26px;
  color: #555;
  padding: 20px;
  margin-top: 100px;
  border-radius: 8px;
  font-weight: 500;
  width: 100%;
}

@media only screen and (width <= 376px) {
  .cus-new-grid-wrap {
    height: 100px;
  }
}

@media only screen and (width >= 377px) and (width <= 480px) {
  .cus-new-grid-wrap {
    height: 110px;
  }
}

@media only screen and (width >= 481px) and (width <= 575px) {
  .cus-new-grid-wrap {
    height: 125px;
  }
}

@media only screen and (width >= 576px) and (width <= 767px) {
  .cus-new-grid-wrap {
    height: 125px;
  }
}

@media only screen and (width >= 768px) and (width <= 992px) {
  .cus-new-grid-wrap {
    height: 135px;
  }
}

@media only screen and (width >= 992px) and (width <= 1024px) {
  .cus-new-grid-wrap {
    height: 125px;
  }
}

@media only screen and (width >= 1025px) and (width <= 1199px) {
  .cus-new-grid-wrap {
    height: 145px;
  }
}

@media only screen and (width >= 1200px) and (width <= 1400px) {
  .cus-new-grid-wrap {
    height: 135px;
  }
}

@media only screen and (width >= 1401px) {
  .cus-new-grid-wrap {
    height: 140px;
  }
}

@media screen and (width >= 1600px) {
  .cus-new-grid-wrap {
    height: 160px;
  }
}

@media screen and (width >= 1850px) {
  .cus-new-grid-wrap {
    height: 190px;
  }
}

.bg-popup-wrap {
  height: 100vh;
  width: 100%;
  background: #00000074;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
}

.upload-video-box-wrap {
  width: 55%;
  height: 610px;
  overflow: auto;
  background-color: #fff;
  position: fixed;
  top: 50%;
  right: 50%;
  z-index: 10002;
  transform: translate(50%, -50%);
  border-radius: 20px;
}

@media screen and (width <= 1500px) {
  .upload-video-box-wrap {
    width: 75%;
  }
}

.upload-video-box-wrap .inner-upload-step-one-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.info-tag-wrap {
  padding-top: 20px;
}

.info-tag-wrap p {
  margin-bottom: 0;
  color: #000;
  font-size: 17px;
  font-weight: 500;
}

.info-tag-wrap span {
  font-size: 15px;
}

.blue-btn-wrap {
  background-color: #143195;
  position: relative;
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  padding: 5px 15px;
  gap: 5px;
  font-weight: 500;
  align-items: center;
  border-radius: 20px;
}

.input-dash-wrap {
  width: 100%;
  resize: none;
  border: 1px solid #ada3a3;
  border-radius: 4px;
  padding: 10px;
}

.video-box-display-wrap {
  width: 100%;
  height: 300px;
  background-color: #000;
  border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 1px 1px 2px 1px #252020;
}

.video-box-display-wrap video {
  width: 100%;
  height: 100%;
}

.table-mainbox-wrap p {
  padding: 0;
  margin: 0;
}

.choose-file-wrap {
  opacity: 0;
  width: 100%;
  cursor: pointer;
  height: 100%;
  position: relative;
  z-index: 10;
}

.choose-file-title-wrap {
  padding: 0;
  margin: 0;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  border: 1px solid gray;
  border-radius: 5px;
  padding: 10px;
}

.input-new-wtap textarea {
  width: 100%;
  border: 1px solid #ada3a3;
  border-radius: 4px;
  padding: 10px;
}

.published-btn-wrap button {
  width: auto;
  background-color: #143195;
}

.table-dash-thumbnail-wrap {
  margin: 5px 0;
  width: 180px;
  height: 90px;
  border-radius: 5px;
  object-fit: contain;
  background-color: #000;
}

.thumb-upload-img-wrap {
  object-fit: contain;
  background: #000;
}

.video-actions {
  display: flex;
  gap: 15px;
}

.user-overview-profile-wrap {
  margin-top: -90px;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.user-overview-profile-wrap .container {
  max-width: 90%;
}

.user-overview-profile-wrap .left-profile-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 1px 6px #000;
  width: 160px;
  min-width: 160px;
  height: 160px;
  object-fit: cover;
}

.user-overview-profile-wrap .left-profile-img-wrap .profileAvatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 100px;
}

.user-overview-profile-wrap .ab-profile-edit-icon-wrap {
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  gap: 10px;
  align-items: center;
  color: #fff;
  display: flex;
  transition: all .3s ease-in-out;
}

.user-overview-profile-wrap .right-profile-desc-wrap {
  width: 100%;
  justify-content: space-between;
}

.bg-profile-thumb-wrap {
  position: relative;
  min-height: 450px;
}

.bg-profile-thumb-wrap > img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-loading {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #000000c7;
  backdrop-filter: blur(10px);
}

.bg-profile-loader {
  background-color: #ffffff8c;
  backdrop-filter: blur(3px);
  z-index: 999999;
}

.edit-bg-profile-wrap {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 110;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cus-dropdown-profile-wrap ul li {
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
}

.cus-dropdown-profile-wrap ul li p {
  line-height: normal;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.cus-dropdown-profile-wrap .MuiMenu-paper {
  border-radius: 12px;
}

.video-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

h2.video-section-title {
  color: #4a90e2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.video-play-main-section-wrap {
  min-height: 95dvh;
  background-color: #fff;
}

.inner-video-mainsection-wrap {
  height: 80dvh;
  box-shadow: 0 0 2px 1px #dbd5d5;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (width >= 992px) {
  .inner-video-mainsection-wrap {
    height: 80dvh;
  }
}

@media screen and (width <= 599px) {
  .inner-video-mainsection-wrap {
    height: 100dvh;
  }

  .right-comments-section {
    z-index: 9999;
    background-color: #000;
    left: 0;
    top: 0;
    height: 100dvh;
    width: 100%;
    position: fixed !important;
  }

  .left-video-play-section {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10000;
    height: 100dvh;
    padding: 0;
    border-radius: 0 !important;
  }

  .cus-main-video-new-wrap {
    border-radius: 0;
  }
}

@media screen and (width >= 576px) {
  .swiper-slide {
    min-height: auto !important;
  }
}

@media screen and (width <= 1400px) {
  .video-play-main-section-wrap .container-fluid {
    max-width: 90%;
  }
}

@media screen and (width >= 768px) {
  .video-play-main-section-wrap .container-fluid {
    max-width: 95%;
  }
}

@media screen and (width >= 990px) {
  .video-play-main-section-wrap .container-fluid {
    max-width: 100%;
  }
}

@media screen and (width >= 1500px) {
  .video-play-main-section-wrap .container-fluid {
    max-width: 95%;
  }
}

.pop-up-sign-in-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-new-pop-up-wrap {
  background-color: #00000049;
  height: 100dvh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.main-signin-new-wrap {
  max-width: 400px;
  width: 400px;
  overflow: hidden;
  margin: 0 auto;
  z-index: 11;
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 19px 1px gray;
}

@media screen and (width <= 600px) {
  .main-signin-new-wrap {
    max-width: 95%;
    width: 95%;
  }
}

.left-video-play-section {
  margin: 0 auto;
  transition: right .3s linear;
}

@media screen and (width <= 599px) {
  .pop-up-sign-in-wrap.desk-comment-wrap {
    display: none;
  }
}

@media screen and (width >= 600px) {
  .pop-up-sign-in-wrap.desk-comment-wrap .main-signin-new-wrap {
    max-width: 500px;
    width: 500px;
  }
}

@media screen and (width >= 1600px) {
  .pop-up-sign-in-wrap.desk-comment-wrap .main-signin-new-wrap {
    max-width: 600px;
    width: 600px;
  }
}

.pop-up-sign-in-wrap.desk-comment-wrap.desk-description-wrap {
  display: flex;
}

.information-data-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.information-data-wrap h3 {
  display: block;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
}

.information-data-wrap h3 span {
  padding-top: 5px;
  display: block;
  font-size: .7rem;
  color: gray;
}

.description-paragraph-wrap {
  max-height: 50dvh;
  overflow: auto;
}

.inner-main-about-card-wrap {
  border-radius: 15px;
  background: #fff6;
  box-shadow: 0 0 3.5px #00000082;
  backdrop-filter: blur(5px);
}

.dual-title-wrap span {
  color: #f47516;
}

.tag-about-wrap.about-page-tag {
  background-color: #2c144f;
  color: #fff;
}

.searching-main-box-wrap {
  min-height: 100dvh;
  background-color: #fff;
}

.no-games-found-cus-wrap + .custom-masonry.cus-mas-col-wrap {
  margin-top: 10px;
}

.auth-btn-wrap {
  background-color: #143195;
  height: auto;
  border-radius: 20px;
  font-weight: 600;
}

.google-btn-wrap {
  border-radius: 20px !important;
  box-shadow: none !important;
  border: 1px solid #cfc6c6 !important;
  height: 45px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.google-btn-wrap svg {
  width: 20px;
  height: 20px;
}

@media only screen and (width <= 481px) {
  .card-auth-wrap {
    height: auto;
    border-radius: 30px;
    padding: 20px;
    background: #fff;
    filter: drop-shadow(0 4px 70px #0000001a);
    border: 0;
    position: relative;
    z-index: 10;
  }

  .ab-auth-object-bg-wrap {
    display: none;
  }

  .right-image-auth-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-image-auth-wrap img {
    width: 220px;
    height: auto;
  }

  .auth-container-wrap {
    width: 100% !important;
    min-width: 100% !important;
    padding: 20px 0 !important;
  }

  .ab-close-auth-btn {
    position: absolute;
    right: 0;
    top: 10px;
    width: 60px;
    z-index: 10;
    cursor: pointer;
  }

  .auth-btn-wrap {
    padding: 10px;
  }
}

@media only screen and (width >= 481px) and (width <= 786px) {
  .card-auth-wrap {
    height: auto;
    border-radius: 30px;
    padding: 30px;
    background: #fff;
    filter: drop-shadow(0 4px 70px #0000001a);
    border: 0;
    position: relative;
    z-index: 10;
  }

  .ab-auth-object-bg-wrap {
    position: fixed;
    left: -100px;
    bottom: -10px;
    width: 300px;
    z-index: 0;
  }

  .right-image-auth-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-image-auth-wrap img {
    width: 320px;
    height: auto;
  }

  .ab-close-auth-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 60px;
    z-index: 10;
    cursor: pointer;
  }
}

@media only screen and (width >= 786px) and (width <= 1100px) {
  .card-auth-wrap {
    height: auto;
    border-radius: 30px;
    padding: 30px;
    background: #fff;
    filter: drop-shadow(0 4px 70px #0000001a);
    border: 0;
    position: relative;
    z-index: 10;
  }

  .ab-auth-object-bg-wrap {
    position: fixed;
    left: -100px;
    bottom: -10px;
    width: 300px;
    z-index: 0;
  }

  .right-image-auth-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-image-auth-wrap img {
    width: 320px;
    height: auto;
  }

  .ab-close-auth-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 60px;
    z-index: 10;
    cursor: pointer;
  }
}

@media only screen and (width >= 1100px) {
  .card-auth-wrap {
    height: auto;
    border-radius: 30px;
    padding: 30px;
    background: #fff;
    filter: drop-shadow(0 4px 70px #0000001a);
    border: 0;
    position: relative;
    z-index: 10;
  }

  .ab-auth-object-bg-wrap {
    position: fixed;
    left: -150px;
    bottom: -10px;
    width: 400px;
    z-index: 0;
  }

  .right-image-auth-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-image-auth-wrap img {
    width: 320px;
    height: auto;
  }

  .ab-close-auth-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 60px;
    z-index: 10;
    cursor: pointer;
  }
}

@media only screen and (width >= 1600px) {
  .card-auth-wrap {
    height: auto;
    border-radius: 30px;
    padding: 30px;
    background: #fff;
    filter: drop-shadow(0 4px 70px #0000001a);
    border: 0;
    position: relative;
    z-index: 10;
  }

  .ab-auth-object-bg-wrap {
    position: fixed;
    left: -100px;
    bottom: -10px;
    width: 500px;
    z-index: 0;
  }

  .right-image-auth-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right-image-auth-wrap img {
    width: 390px;
    height: auto;
  }

  .ab-close-auth-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 60px;
    z-index: 10;
    cursor: pointer;
  }
}

@media screen and (width <= 575px) {
  .blog-main-section .container {
    max-width: 1050px;
    width: 95%;
  }

  .blog-title-wrap {
    font-size: 20px;
    font-weight: 600;
  }

  .blog-title-wrap span {
    background-color: #143195;
    border-radius: 7px;
    color: #fff;
    line-height: 0;
    padding: 0 8px 3px;
    margin-right: 7px;
  }

  .blog-card-main-wrap {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap .blog-thumbh-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap .blog-thumbh-wrap .MuiSkeleton-root {
    height: 210px;
    border-radius: 10px;
  }

  .blog-card-main-wrap .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap .tag-blog-wrap p {
    font-size: .8rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 13.4px;
  }

  .blog-card-main-wrap .blog-desc-info-wrap p {
    color: #555;
    font-size: 15px;
  }
}

@media screen and (width >= 576px) and (width <= 767px) {
  .blog-main-section .container {
    max-width: 1050px;
    width: 95%;
  }

  .blog-title-wrap {
    font-size: 20px;
    font-weight: 600;
  }

  .blog-title-wrap span {
    background-color: #143195;
    border-radius: 7px;
    color: #fff;
    line-height: 0;
    padding: 0 8px 3px;
    margin-right: 7px;
  }

  .blog-card-main-wrap {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap .blog-thumbh-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap .blog-thumbh-wrap .MuiSkeleton-root {
    height: 210px;
    border-radius: 10px;
  }

  .blog-card-main-wrap .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap .tag-blog-wrap p {
    font-size: .8rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 13.4px;
  }

  .blog-card-main-wrap .blog-desc-info-wrap p {
    color: #555;
    font-size: 15px;
  }

  .blog-card-main-wrap.small-blog-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 110px;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap p {
    font-size: .7rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 12.4px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap img {
    height: 226px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 226px;
  }
}

@media screen and (width >= 768px) and (width <= 991px) {
  .blog-main-section .container {
    max-width: 1050px;
    width: 95%;
  }

  .blog-title-wrap {
    font-size: 20px;
    font-weight: 600;
  }

  .blog-title-wrap span {
    background-color: #143195;
    border-radius: 7px;
    color: #fff;
    line-height: 0;
    padding: 0 8px 3px;
    margin-right: 7px;
  }

  .blog-card-main-wrap {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap .blog-thumbh-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap .blog-thumbh-wrap .MuiSkeleton-root {
    height: 210px;
    border-radius: 10px;
  }

  .blog-card-main-wrap .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap .tag-blog-wrap p {
    font-size: .8rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 13.4px;
  }

  .blog-card-main-wrap .blog-desc-info-wrap p {
    color: #555;
    font-size: 15px;
  }

  .blog-card-main-wrap.small-blog-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 110px;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap p {
    font-size: .7rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 12.4px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap img {
    height: 226px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 226px;
  }
}

@media screen and (width >= 992px) and (width <= 1199px) {
  .blog-main-section .container {
    max-width: 1050px;
    width: 85%;
  }

  .blog-title-wrap {
    font-size: 20px;
    font-weight: 600;
  }

  .blog-title-wrap span {
    background-color: #143195;
    border-radius: 7px;
    color: #fff;
    line-height: 0;
    padding: 0 8px 3px;
    margin-right: 7px;
  }

  .blog-card-main-wrap {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap .blog-thumbh-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap .blog-thumbh-wrap .MuiSkeleton-root {
    height: 210px;
    border-radius: 10px;
  }

  .blog-card-main-wrap .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap .tag-blog-wrap p {
    font-size: .8rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 13.4px;
  }

  .blog-card-main-wrap .blog-desc-info-wrap p {
    color: #555;
    font-size: 15px;
  }

  .blog-card-main-wrap.small-blog-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 110px;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap p {
    font-size: .7rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 12.4px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap img {
    height: 226px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 226px;
  }
}

@media screen and (width >= 1200px) {
  .blog-main-section .container {
    max-width: 1550px;
    width: 95%;
  }

  .blog-title-wrap {
    font-size: 22px;
    font-weight: 600;
  }

  .blog-title-wrap span {
    background-color: #143195;
    border-radius: 7px;
    color: #fff;
    line-height: 0;
    padding: 0 10px 3px;
    margin-right: 7px;
  }

  .blog-card-main-wrap {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap .blog-thumbh-wrap img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap .blog-thumbh-wrap .MuiSkeleton-root {
    height: 270px;
    border-radius: 10px;
  }

  .blog-card-main-wrap .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap .tag-blog-wrap p {
    font-size: .8rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 13.4px;
  }

  .blog-card-main-wrap .blog-desc-info-wrap p {
    color: #555;
    font-size: 15px;
  }

  .blog-card-main-wrap.small-blog-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 110px;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap p {
    font-size: .7rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 12.4px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap img {
    height: 226px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 226px;
  }
}

@media screen and (width >= 1400px) {
  .blog-main-section .container {
    max-width: 1550px;
    width: 90%;
  }

  .blog-title-wrap {
    font-size: 22px;
    font-weight: 600;
  }

  .blog-title-wrap span {
    background-color: #143195;
    border-radius: 7px;
    color: #fff;
    line-height: 0;
    padding: 0 10px 3px;
    margin-right: 7px;
  }

  .blog-card-main-wrap {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap .blog-thumbh-wrap img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap .blog-thumbh-wrap .MuiSkeleton-root {
    height: 270px;
    border-radius: 10px;
  }

  .blog-card-main-wrap .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap .tag-blog-wrap p {
    font-size: .8rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 13.4px;
  }

  .blog-card-main-wrap .blog-desc-info-wrap p {
    color: #555;
    font-size: 15px;
  }

  .blog-card-main-wrap.small-blog-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4e6e6;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 110px;
    border-radius: 10px;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap {
    display: inline-block;
    background-color: #dff1f0;
    border-radius: 13px;
    padding: 2px 10px;
    width: max-content;
  }

  .blog-card-main-wrap.small-blog-card .tag-blog-wrap p {
    font-size: .7rem;
    color: #15214e;
    letter-spacing: .02em;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .blog-card-main-wrap.small-blog-card .blog-auther-thumbh-wrap p {
    color: #777;
    font-size: 12.4px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap img {
    height: 226px;
  }

  .blog-card-main-wrap.med-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 226px;
  }
}

@media screen and (width >= 1600px) {
  .blog-card-main-wrap .blog-thumbh-wrap img {
    height: 300px;
  }

  .blog-card-main-wrap .blog-thumbh-wrap .MuiSkeleton-root {
    height: 300px;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap img {
    height: 126px;
  }

  .blog-card-main-wrap.small-blog-card .blog-thumbh-wrap .MuiSkeleton-root {
    height: 126px;
  }
}

.blog-inner-main-thumbh-wrap {
  height: 433px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 8px 1px #efe7e7;
}

@media screen and (width <= 575px) {
  .blog-inner-main-thumbh-wrap {
    height: 233px;
  }
}

.sticky-right-blog-wrap {
  position: sticky;
  top: 69px;
  left: 0;
  z-index: 10;
}

.sub-blog-image-wrap {
  height: 300px;
  object-fit: cover;
  margin: 10px 0;
  border-radius: 10px;
}

@media screen and (width <= 575px) {
  .sub-blog-image-wrap {
    height: 200px;
  }
}


/* [project]/src/components/ClosableComponent/ClosableMessage.scss.css [client] (css) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility 0s .3s;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s;
}

.modal-container {
  position: relative;
  background-color: #fff;
  width: 80%;
  max-width: 1000px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(-30px);
  animation: .5s forwards slideIn;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-image {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 10px;
}

.modal-description {
  margin-top: 20px;
  padding: 0 20px;
  text-align: center;
  font-size: 1.1rem;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 1100;
}

.close-btn:hover {
  opacity: .8;
}

.modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility 0s .3s;
}


/*# sourceMappingURL=_e71f47._.css.map*/
