@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
/* common */
@-webkit-keyframes rotateY {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@keyframes rotateY {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

body {
  background: #222;
  color: #FFF;
  font-family: 'Noto Sans KR', sans-serif;
  /* input style */
  /* button style */
  /* button color */
}

body .modal {
  z-index: 9999;
}

body .wrap {
  overflow-x: hidden;
  padding-top: 0;
}

body .not-scroll {
  max-height: 100vh;
  overflow: hidden;
}

body .bg-fixed {
  background-size: cover;
  background-attachment: fixed;
}

body .align-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .col a {
  display: block;
  height: 100%;
}

body .basic-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
}

body .basic-scroll::-webkit-scrollbar-thumb {
  background-color: #345;
}

body .basic-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #456;
}

body .basic-scroll::-webkit-scrollbar-track {
  background: #234;
}

body .form-st1 .form-content > li {
  color: #000020;
  margin-bottom: 26px;
}

body .form-st1 .form-content > li:last-child {
  margin-bottom: 0;
}

body .form-st1 .form-content > li .left-tit {
  width: 100px;
  display: inline-block;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  padding-right: 10px;
  margin-right: 10px;
}

body .form-st1 .form-content > li .input-box {
  text-align: left;
  position: relative;
}

body .form-st1 .form-content > li .txt-guide {
  display: block;
  font-size: 12px;
  padding-top: 8px;
  color: #fff;
  font-weight: 500;
  padding-left: 3px;
}

body .form-st1 .btn-st1 {
  padding: 0 16px;
  width: 134px;
  height: 40px;
}

body .nav-tabs {
  border: 0;
}

body .ir-img {
  text-indent: -9999px;
  font-size: 0;
}

body .input-st1 {
  padding: 8px 18px;
  border-radius: 27px !important;
  font-size: 14px;
  width: 170px;
  background: rgba(0, 0, 0, 0.5);
  color: #FFF;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body .input-st1:focus{
  border: 1px solid #72ACFF;
}

body .input-st1::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

body .input-st1:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

body .input-st1::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

body .input-st1::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

body .input-st2 {
  padding: 5px 20px;
  font-size: 16px;
  background: #333;
  color: #FFF;
  width: 280px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}

body .input-st2:focus {
  border: 1px solid #72ACFF;
}

@media (max-width: 420px) {
  body .input-st2 {
    height: 34px;
  }
}

body .select-st1 {
  padding: 5px 20px;
  font-size: 16px;
  width: 280px;
  background: rgba(0, 0, 0, 0.5);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body .select-st2 {
  padding: 5px 20px;
  -webkit-appearance: none;
  font-size: 16px;
  min-width: 213px;
  color: #FFF;
  background: #000;
  overflow: hidden;
  position: relative;
  background-image: url(../img/icons/icon-select-down-1.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

body .select-st2::after {
  content: "";
  width: 9px;
  height: 15px;
  position: absolute;
  right: 16px;
  background: url(../img/icons/icon-select-down-1.svg) no-repeat;
  background-size: contain;
}

body .btn-check:focus + .btn, body .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

body .btn-st1 {
  display: inline-block;
  border: 0;
  color: #FFF;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  line-height: 1.25;
}

body .btn-st2 {
  display: inline-block;
  border: 0;
  color: #FFF;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 30px;
}

body .btn-red {
  background: -webkit-gradient(linear, left top, left bottom, from(#883a3a), to(#5f2222));
  background: linear-gradient(#883a3a, #5f2222);
  -webkit-box-shadow: 0 2px 6px #5f2222;
          box-shadow: 0 2px 6px #5f2222;
  color: #FFF;
}

body .btn-red:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#5f2222), to(#883a3a));
  background: linear-gradient(#5f2222, #883a3a);
}

body .btn-charcoal {
  background: -webkit-gradient(linear, left top, left bottom, from(#3d372c), to(#1a1812));
  background: linear-gradient(#3d372c, #1a1812);
  color: #FFF;
}

body .btn-charcoal:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#1a1812), to(#3d372c));
  background: linear-gradient(#1a1812, #3d372c);
}

body .btn-green {
  color: #FFF;
  background-color: transparent;
  border: 2px solid #E75919;
}

body .btn-green:hover {
  background-color:#456;
  -webkit-box-shadow: 0 0 6px #72ACFF;
          box-shadow: 0 0 6px #72ACFF;
}

body .btn-yellow {
  background: -webkit-gradient(linear, left top, left bottom, from(#dfa300), to(#8d6700));
  background: linear-gradient(#dfa300, #8d6700);
  -webkit-box-shadow: 2px 2px 8px rgba(141, 103, 0, 0.49);
          box-shadow: 2px 2px 8px rgba(141, 103, 0, 0.49);
  color: #FFF;
}

body .btn-yellow:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#8d6700), to(#dfa300));
  background: linear-gradient(#8d6700, #dfa300);
}

body .btn-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#4B99FF), to(#3464a1));
  background: linear-gradient(#4B99FF, #3464a1);
  -webkit-box-shadow: 2px 2px 8px rgba(0, 89, 255, 0.49);
          box-shadow: 2px 2px 8px rgba(0, 89, 255, 0.49);
  color: #FFF;
}

body .btn-blue:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#3464a1), to(#4B99FF));
  background: linear-gradient(#3464a1, #4B99FF);
  -webkit-transition: 1s;
  transition: 1s;
  color: #FFF;
}

body .btn-pupple {
  background: -webkit-gradient(linear, left top, left bottom, from(#9949D7), to(#2A1B30));
  background: linear-gradient(#9949D7, #2A1B30);
  -webkit-box-shadow: 0 2px 6px #9949D7;
          box-shadow: 0 2px 6px #9949D7;
}

body .btn-pupple:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#2A1B30), to(#9949D7));
  background: linear-gradient(#2A1B30, #9949D7);
}

body .btn-navy {
  background: -webkit-gradient(linear, left top, right bottom, from(#FA4FC5), to(#2FB1DF));
  background: linear-gradient(to right, #E95F10, #CB1670);
  color: #FFF;
  border-radius: 30px;
}

body .btn-navy:hover {
  background: -webkit-gradient(linear, left top, right bottom, from(#ff00af), to(#006aff));
  background: linear-gradient(135deg, #ff00af, #006aff);
  -webkit-box-shadow: 0 0 6px #ff00af;
          box-shadow: 0 0 6px #ff00af;
  color: #FFF;
  
}

body .btn-close-white {
  width: 30px;
  height: 30px;
  background: url(../img/icons/icon-close-1.svg) no-repeat;
  background-size: cover;
  top: 15px;
  right: 15px;
  filter: none;
}

@media (max-width: 1024px) {
  body .btn-close-white {
    width: 30px;
    height: 30px;
    top: 22vh;
    right: 3vw;
  }
}

@media (max-width: 992px) {
  body .btn-close-white {
    top: 6vh;
    right: 4vw;
  }
}

@media (max-width: 420px) {
  body .btn-close-white {
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
  }
}

body .modal .btn-box-m {
  display: none;
}

@media (max-width: 420px) {
  body .modal .btn-box-m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

body .fs-12 {
  font-size: 12px;
}

body .fs-16 {
  font-size: 16px;
}

@media (max-width: 992px) {
  body .fs-16 {
    font-size: 12px;
  }
}

body .fs-18 {
  font-size: 18px;
}

@media (max-width: 1024px) {
  body .fs-18 {
    font-size: 14px;
  }
}

body .fs-20 {
  font-size: 20px;
}

@media (max-width: 1024px) {
  body .fs-20 {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  body .fs-20 {
    font-size: 16px;
  }
}

body .fs-26 {
  font-size: 26px;
}

body .fs-28 {
  font-size: 28px;
}

@media (max-width: 1024px) {
  body .fs-28 {
    font-size: 22px;
  }
}

body .fs-30 {
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 1024px) {
  body .fs-30 {
    font-size: 24px;
  }
}

body .fs-32 {
  font-size: 32px;
  line-height: 1;
}

@media (max-width: 1024px) {
  body .fs-32 {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  body .fs-32 {
    font-size: 16px;
  }
}

body .fs-34 {
  font-size: 34px;
  line-height: 1;
}

@media (max-width: 1024px) {
  body .fs-34 {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  body .fs-34 {
    font-size: 24px;
  }
}

body .fs-50 {
  font-size: 50px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  body .fs-50 {
    font-size: 44px;
  }
}

@media (max-width: 992px) {
  body .fs-50 {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  body .fs-50 {
    font-size: 24px;
  }
}

body .fw-300 {
  font-weight: 300;
}

body .fw-500 {
  font-weight: 500;
}

body .fw-700 {
  font-weight: 700;
}

body .fw-900 {
  font-weight: 900;
}

body .navbar-toggler {
  padding: 0;
}

body .navbar-toggler-icon {
  width: auto;
  height: auto;
}

body .u-money span {
  background: -webkit-gradient(linear, left top, left bottom, from(#F0F9F3), to(#E6AA1D));
  background: linear-gradient(#F0F9F3 0%, #E6AA1D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

body .u-point span {
  background: -webkit-gradient(linear, left top, left bottom, from(#F0F9F3), to(#3DE048));
  background: linear-gradient(#F0F9F3 0%, #3DE048 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

body .user-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

body .user-box li {
  padding: 0 10px  !important;
  width: 50%;
}

body .user-box li .sidebar-link {
  font-size: 14px;
}

body .user-box .user-msg .sidebar-link {
  background: url(../img/icons/icon-msg.png) no-repeat left center;
  background-size: 16px;
  padding-left: 24px;
  display: inline-block;
}

body .user-box .user-msg .msg-new {
  position: relative;
}

body .user-box .user-msg .msg-new::after {
  #content: "10";
  #width: 20px;
  #height: 20px;
  #position: absolute;
  #right: -27px;
  #top: 2px;
  #background: red;
  #border-radius: 50%;
  #font-size: 10px;
  #line-height: 20px;
  #text-align: center;
}

body .user-box .user-info-modify .sidebar-link {
  background: url(../img/icons/icon-info.png) no-repeat left center;
  background-size: 16px;
  padding-left: 24px;
  display: inline-block;
}

body .sidebar-body-menu {
  border: 0;
}

body .sidebar-body-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #99A4CB;
}

body .sidebar-body-menu .user-info .user-id {
  font-size: 16px;
}

body .sidebar-body-menu .user-info .user-id * {
  vertical-align: middle;
}

body .sidebar-body-menu .user-info .user-id img {
  margin-right: 5px;
}

body .sidebar-body-menu .user-info .user-id span {
  color: #FFF;
}

body .sidebar-body-menu .user-info .user-level {
  font-size: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FEDCFD), to(#FF4CF4));
  background: linear-gradient(#FEDCFD 0%, #FF4CF4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

body .sidebar-body-menu .user-wallet {
  background: rgba(255, 255, 255, 0.1);
  padding-top: 21px;
  padding-bottom: 16px;
  margin-bottom: 10px;
}

body .sidebar-body-menu .user-wallet ul {
  width: 100%;
}

body .sidebar-body-menu .user-wallet ul li {
  padding: 0 5px 0 5px !important;
}

body .sidebar-body-menu .user-wallet ul li span {
  font-size: 20px;
}

body .sidebar-body-menu .user-wallet ul .u-money {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px !important;
}

body .sidebar-body-menu .user-wallet ul .u-money2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px !important;
  padding-top: 16px !important;
}

body .sidebar-body-menu .user-wallet ul .u-point {
  padding-top: 16px !important;
}

body .sidebar-body-menu .logout {
  border-top: 1px solid rgba(153, 164, 203, 0.2);
}

body .sidebar-body-menu .logout .sidebar-link {
  background: url(../img/icons/icon-logout.png) no-repeat left center;
  background-size: 19px;
  padding-left: 32px;
}

body label.error {
  position: absolute;
  color: red;
  font-size: 12px;
  bottom: -18px;
  left: 3px;
}

@media (max-width: 1024px) {
  body .wrap {
    padding-top: 13%;
  }
}

@media (max-width: 992px) {
  body .wrap {
    padding-top: 53px;
  }
}

@media (max-width: 420px) {
  body .modal-dialog {
    margin: 0;
  }
}

.sidebar {
  top: 0;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: .5s all;
  transition: .5s all;
  min-height: 100vh;
  position: fixed;
  z-index: 9999;
  left: -1000px;
  right: 3000px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
}

.sidebar .sidebar-wrap {
  width: 300px;
  background: #111 !important;
  padding: 20px 15px 37px 20px;
  overflow-y: auto;
  height: 100%;
}

.sidebar .sidebar-link {
  display: block;
  color: #fde0cc;
  font-size: 18px;
  padding-left: 18px;
}

.sidebar .sidebar-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar .sidebar-head span {
  display: inline-block;
}

.sidebar .sidebar-head .logo-wrapper .logo {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

.sidebar .sidebar-head .logo-wrapper .logo img {
  width: 100%;
  margin-top: -5px;
}

.sidebar .sidebar-head .logo-wrapper .logo-text {
  display: inline-block;
  font-size: 20px;
}

.sidebar .sidebar-head .logo-wrapper .logo-text .logo-title {
  background: -webkit-gradient(linear, left top, left bottom, from(#F9FCFF), to(#67B3FF));
  background: linear-gradient(#F9FCFF 0%, #67B3FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.sidebar .sidebar-body .before-login {
  padding: 20px 20px 0;
}

.sidebar .sidebar-body .before-login .input-st1 {
  width: 100%;
  border-radius: 0;
  margin-bottom: 8px;
}

.sidebar .sidebar-body .before-login .input-st1:first-child {
  margin-bottom: 5px;
}

.sidebar .sidebar-body .before-login .btn-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}

.sidebar .sidebar-body .before-login .btn-box .btn-charcoal {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .sidebar-body .before-login .btn-box .btn-join {
  color: #FFF;
  font-size: 14px;
  padding: 0 0 0 30px;
  background: url(../img/icons/icon-pop-login-1.svg) no-repeat left center;
  background-size: 20px;
}

.sidebar .sidebar-body .after-login .user-box {
  padding: 0 6px;
}

.sidebar .sidebar-body .after-login .btn-box {
  padding: 0 12px;
  text-align: right;
}

.sidebar .sidebar-body .after-login .btn-box div {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .sidebar-body .after-login .btn-box div .btn-logout {
  color: #FFF;
  font-size: 14px;
  padding: 0 0 0 30px;
  background: url(../img/icons/icon-logout.png) no-repeat left center;
  background-size: 20px;
}

.sidebar .sidebar-body .sidebar-body-menu li {
  padding: 18px 0;
}

@media (max-width: 992px) {
  .sidebar {
    display: block;
  }
}

.sidebar.left .sidebar-body-menu li:nth-child(1) a {
  background: url(../img/icons/icon-gnb-1.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(1) a:active {
  background: url(../img/icons/icon-gnb-1-on.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(2) a {
  background: url(../img/icons/icon-gnb-2.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(2) a:active {
  background: url(../img/icons/icon-gnb-2-on.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(3) a {
  background: url(../img/icons/icon-gnb-3.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(3) a:active {
  background: url(../img/icons/icon-gnb-3-on.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(4) a {
  background: url(../img/icons/icon-gnb-4.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(4) a:active {
  background: url(../img/icons/icon-gnb-4-on.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(5) a {
  background: url(../img/icons/icon-gnb-5.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(5) a:active {
  background: url(../img/icons/icon-gnb-5-on.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(6) a {
  background: url(../img/icons/icon-gnb-6.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(6) a:active {
  background: url(../img/icons/icon-gnb-6-on.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(7) a {
  background: url(../img/icons/icon-gnb-7.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(7) a:active {
  background: url(../img/icons/icon-gnb-7-on.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(8) a {
  background: url(../img/icons/icon-gnb-8.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.left .sidebar-body-menu li:nth-child(8) a:active {
  background: url(../img/icons/icon-gnb-8-on.png) no-repeat left center;
  background-size: 19px;
}

.sidebar.right {
  left: 3000px;
  right: -2000px;
  text-align: right;
}

.sidebar.right .sidebar-wrap {
  width: 245px;
  position: relative;
  display: inline-block;
  padding: 0;
  text-align: left;
  height: 100%;
}

.sidebar.right .sidebar-head {
  padding-right: 6px;
}

.sidebar.right .sidebar-body ul > li {
  padding: 8px;
}

.sidebar.right .sidebar-body ul > li:first-child {
  padding-top: 30px;
}

.sidebar.right .sidebar-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 15px 4vh 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar.right .sidebar-footer .sidebar-link {
  background: url(../img/icons/icon-logout.png) no-repeat left center;
  background-size: 19px;
  padding-left: 30px;
}

@media (max-width: 375px) {
  .sidebar.right .sidebar-body ul > li {
    padding: 9px;
  }
  .sidebar.right .sidebar-body ul > li:first-child {
    padding-top: 20px;
  }
  .sidebar.right .sidebar-body ul > li .sidebar-link {
    font-size: 14px;
  }
}

.sidebar.hidden {
  left: 0;
  right: 0;
}

.sidebar.right.hidden {
  left: 0;
  right: 0;
}

.transparent-btn {
  background-color: transparent;
  border: 2px solid transparent !important;
  padding: 0;
  display: none;
}

@media (max-width: 992px) {
  .transparent-btn {
    display: block;
  }
}

.transparent-btn span {
  display: block;
  color: #FFF;
}

.sidebar-toggle {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.sidebar-toggle-right {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.sidebar-toggle.rotated, .sidebar-toggle-right.rotated {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.menu-toggle {
  background: url(../img/icons/icon-menu-close.svg) no-repeat center;
  background-size: 14px;
  width: 30px;
  height: 30px;
  vertical-align: bottom;
}

.modal-backdrop {
  z-index: 1;
}

.btn-login-m {
  width: 34px;
  padding: 0;
  display: none;
}

@media (max-width: 992px) {
  .btn-login-m {
    display: block;
  }
}

.btn-login-m .icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url(../img/icons/icon-pop-login-1.svg) no-repeat center;
  vertical-align: bottom;
}

section {
  padding: 50px 0 30px;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: transparent;
  top: -1px;
}

section::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #FFBA00;
  bottom: -1px;
}

section .tit-box {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services-wrap {
  margin-bottom: 25px;
  text-align: center;
  min-height: 220px;
  padding: 20px;
  background: #0004;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 10px 20px #0008;
  cursor: pointer;
  transition: .25s all;
  -moz-transition: .25s all;
  -webkit-transition: .25s all;
  -o-transition: .25s all;
  position: relative;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, transparent, #fff4, transparent);
  border-image-slice: 1;
  background: rgb(85,85,85);
  background: -moz-linear-gradient(135deg, rgba(85,85,85,1) 0%, rgba(34,34,34,0) 50%, rgba(85,85,85,1) 100%);
  background: -webkit-linear-gradient(135deg, rgba(85,85,85,1) 0%, rgba(34,34,34,0) 50%, rgba(85,85,85,1) 100%);
  background: linear-gradient(135deg, rgba(85,85,85,1) 0%, rgba(34,34,34,0) 50%, rgba(85,85,85,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#555555",endColorstr="#555555",GradientType=1);
}




.media, .media-body {
    overflow: inherit;
    zoom: 1;
}
.media:first-child {
    margin-top: 0;
}


.media.eventBg1{
  background: url(../img/banner/eventBg1.png);
  border: 0;
  height: 244px;
}

.media.eventBg2{
  background: url(../img/banner/eventBg2.png);
  border: 0;
  height: 244px;
}


.feature-wrap {
    overflow: hidden;
    text-align: center;
}

.services-wrap .feature-wrap{
    text-align: left;
}

.icon_128 {
    width: 128px;
    margin-bottom: 20px;
}

.rb {
    position: absolute;
    bottom: 0;
    right: 20px;
    transition: .5s all;
    -moz-transition: .5s all;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    width: 256px;
    margin-bottom: 0;
    opacity: 0.8;
}


.eventBg2 .rb, .eventBg1 .rb{
  opacity: 1;
  width: 244px;
}
.services-wrap .feature-wrap p, .services-wrap3 .feature-wrap p {
    font-size: 18px;
    top: 70px;
    margin: 0;
    font-weight: 100;
}

.services-wrap .feature-wrap p.btn-event.btn-orange{
  background: linear-gradient(180deg, #fa0, #f60);
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 50px;
  margin-top: 20px;
  height: 30px;
  line-height: 1.5;
  width: 140px;
  text-align: center;
  font-weight: bold;
}

.services-wrap .feature-wrap p.btn-event.btn-purple{
  background: linear-gradient(180deg, #BF79FF, #5500BA);
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 50px;
  margin-top: 20px;
  height: 30px;
  line-height: 1.5;
  width: 140px;
  text-align: center;
  font-weight: bold;
}


.services-wrap:hover {
    color: #fff;
    box-shadow: 0 5px 10px #0008;
    margin-top: -3px;
}

.services-wrap:hover .rb{
    transform: rotateY(360deg);
    opacity: 1;
}

.eventBg1:hover .rb, .eventBg2:hover .rb{
    transform: translateX(10px);
    opacity: 1;
}

.services-wrap .gameTitle{
  font-size: 1.5rem;
  color: #eee;
  background: linear-gradient(rgba(255, 255, 255,1) 0%, rgba(245, 245, 245,1) 25%, rgba(170, 170, 170,1)50%, rgba(248, 248, 248,1)75%,  rgba(206, 206, 206,1)100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
  line-height: 1.5;
  font-weight: 700;
  filter: drop-shadow(0 4px 6px #0008);
  text-stroke: 1px #fff8;
  -webkit-text-stroke: 1px #fff;
  
}





section .tit-box .txt-box {
  text-align: left;
  margin-left: 15px;
}

section .tit-box .txt-box span {
  color: #FFF;
  display: block;
  line-height: 1;
  margin: 0 0 5px 3px;
}

@media (max-width: 992px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 420px) {
  section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  section .tit-box .txt-box span {
    margin-left: 0;
  }
  section .tit-box span {
    display: block;
  }
  section .tit-box .btn-link-more {
    display: none;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}

/* common end */
.logo {
  width: 80px;
  height: 45px;
}

.logo a {
  display: block;
  height: 100%;
  background: url(../img/common/logo.svg) no-repeat;
  background-size: contain;
}

@media (max-width: 420px) {
  .logo {
    top: 5px;
    -webkit-animation: none;
            animation: none;
  }
}

.header {
  text-align: center;
  background-color: #333e;
  box-shadow: 0 5px 10px #0008;
}

.header * {
  -webkit-transition: .3s;
  transition: .3s;
}

.header .header-wrap {
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.header .header-top {
  padding: 20px var(--bs-gutter-x, 0.75rem);
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(64, 64, 64, 1) 15%, rgba(128, 128, 128, 1) 30%, rgba(255, 255, 255, 1) 50%, rgba(128, 128, 129, 1) 70%, rgba(64, 64, 64, 1) 85%, rgba(0, 0, 0, 0) 100%) 1;
}

.header .header-top .login-box {
  position: absolute;
  top: 22px;
  right: var(--bs-gutter-x, 0.75rem);
}

.header .header-top .login-box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.header .header-top .login-box form * {
  margin-left: 10px;
}

.header .header-top .login-box form button {
  border-radius: 27px;
}

.header .header-top .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: var(--bs-gutter-x, 0.75rem);
  top: 24px;
  text-align: left;
  font-size: 14px;
}

.header .header-top .info-box .btn-myinfo {
  font-size: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
          margin-left: 20px;
}

.header .header-top .info-box .btn-myinfo::after {
  border: 0;
  width: 15px;
  height: 8px;
  background: url(../img/icons/icon-select-down-2.svg) no-repeat center;
  background-size: contain;
  vertical-align: baseline;
}

.header .header-top .info-box .btn-myinfo.show {
  background: -webkit-gradient(linear, left top, right bottom, from(#ff00af), to(#006aff));
  background: linear-gradient(135deg, #ff00af, #006aff);
  -webkit-box-shadow: 0 0 6px #ff00af;
          box-shadow: 0 0 6px #ff00af;
}

.header .header-top .info-box .btn-myinfo.show::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

.header .header-top .info-box .dropdown-menu {
  background: #0e031c;
  border-radius: 0;
  color: #99A4CB;
  padding: 0;
  width: 300px;
}

.header .header-top .info-box .dropdown-menu li {
  padding: 17px 16px;
}

.header .nav-mobile {
  display: none;
}

.header .navbar {
  padding: 0;
  background: none;
  position: absolute;
  top: 15px;
  left: 150px;
}

.header .navbar .navbar-nav {
  width: 100%;
}

.header .navbar .navbar-nav .nav-item {

}

.header .navbar .navbar-nav .nav-item .nav-link {
  display: block;
  height: 100%;
  color: #aaa;
  font-size: 16px;
  padding: .7rem 1rem;
}

.header .navbar .navbar-nav .nav-item .nav-link:hover {
  color:#cf0;
  position: relative;
}



.header .navbar .navbar-nav .nav-item .nav-link.active {
  color:#cf0;
  position: relative;
}

.header .navbar .navbar-nav .nav-item .nav-link.active:after{
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #cf0;
  left: 50%;
  bottom: 0;
  margin-left: -20px;
}

.header .navbar .container-fluid{
  background-color:#1118;
  border-radius: 50px;
  box-shadow: inset 0 5px 10px #000, 1px 1px 0 #fff2;
}
.header .popup-member .join-form ul {
  max-height: 300px;
  overflow: auto;
  margin-bottom: 30px;
  padding: 20px 0 10px;
  border: 1px solid #ddd;
}

.header .popup-member .join-form ul li span {
  font-size: 14px;
}

@media (max-width: 1600px) {
  .header .navbar .navbar-nav .nav-item {
    /*
    width: 14.28571428571429%;
    */
  }
}

@media (max-width: 992px) {
  .header .header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header .header-top .login-box {
    display: none;
  }
  .header .header-top .info-box {
    display: none !important;
  }
  .header .nav-mobile {
    display: block;
    background: #232735;
  }
  .header .nav-mobile .navbar-toggler:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .nav-mobile .navbar-toggler .navbar-toggler-icon {
    color: #FFF;
    font-size: 30px;
  }
  .header .nav-mobile .navbar-toggler .navbar-toggler-icon i {
    vertical-align: middle;
    font-weight: 500;
  }
  .header .nav-mobile .navbar-nav {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .header .nav-mobile .navbar-nav .nav-link {
    color: #FFF;
  }
  .header .nav-mobile .btn-pop-login {
    width: 30px;
    height: 30px;
    background: url(../img/icons/icon-pop-login.png) no-repeat center;
  }
}

.header.scroll-top {
  border-bottom: 1px solid #323232;
  -webkit-box-shadow: 0 3px 10px #000;
          box-shadow: 0 3px 10px #000;
}

.header.scroll-top .header-top .logo img {
  width: 100%;
}

.header.scroll-top .header-top .info-box .logout .sidebar-link {
  font-size: 16px;
}

.user-id .u-money img, .user-id .u-point img{
  width: 12px;
  height: 12px;
  margin: 5px;
}

.banner {
  padding: 0;
  position: relative;
  max-height: 593px;
  background: #181818;
  position: relative;
}

.banner::before {
  display: none;
}

.banner .carousel.mobile {
  display: none;
}

.banner .btn-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.banner .btn-box .carousel-control-btn {
  width: auto;
  position: static;
  height: 95px;
  background: transparent;
  opacity: 0.25;
}

.banner .btn-box .carousel-control-btn:hover {
  opacity: 1;
}
.banner .btn-box .carousel-control-prev {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.banner .btn-box .carousel-control-prev .carousel-control-prev-icon {
  background-image: url(../img/icons/icon-arrow-white.svg);
  background-size: 20px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.banner .btn-box .carousel-control-next {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.banner .btn-box .carousel-control-next .carousel-control-next-icon {
  background-image: url(../img/icons/icon-arrow-white.svg);
  background-size: 20px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media (max-width: 1024px) {
  .banner {
    max-height: 204px;
  }
}

@media (max-width: 992px) {
  .banner {
    max-height: 199px;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .banner .sb-slider {
    max-width: 100% !important;
  }
  .banner .sb-slider img {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .banner {
    max-height: 312px;
    margin-top: 60px;
  }
  .banner .container {
    padding: 0;
  }
  .banner .container .carousel {
    display: none;
  }
  .banner .container .carousel.mobile {
    display: block;
  }
  .banner .btn-box {
    display: none;
  }
}

.games .row {
  margin-bottom: 27px;
}

.games .row:last-child {
  margin-bottom: 0;
}

.games .col {
  padding-top: 15px;
  padding-bottom: 15px;
}

.games .col, .games .col-lg-3 {
  text-align: center;
}

.games .col .game-box, .games .col-lg-3 .game-box {
    display: block;
    position: relative;
    border-radius: 20px;
    border-top: 2px solid #fff4;
    border-image-slice: 1;
    background: rgb(85, 85, 85);
    background: -moz-linear-gradient(135deg, rgba(85, 85, 85, 1) 0%, rgba(34, 34, 34, 0) 50%, rgba(85, 85, 85, 1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(85, 85, 85, 1) 0%, rgba(34, 34, 34, 0) 50%, rgba(85, 85, 85, 1) 100%);
    background: linear-gradient(135deg, rgba(85, 85, 85, 1) 0%, rgba(0, 0, 0, 100) 50%, rgba(85, 85, 85, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#555555",endC);
    z-index: 0;
    overflow: hidden;
}

.games .col .game-box .img-game, .games .col-lg-3 .game-box .img-game {
  width: 100%;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
}

.games.slot-game .col .game-box .img-game {
  width: auto;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  margin: 37px 0;
  max-width: 100%;
}

.games.sub-slot-game .col .game-box .img-game {
  width: 100%;
  margin: 0;
}

.games .col .game-box .hover-box, .games .col-lg-3 .game-box .hover-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 70%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    background: linear-gradient(180deg, transparent, #0008);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    padding: 10px;
    border-radius: 20px;
}


#bestGame .hover-box{
  top: 50%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#bestGame .game-box:hover .hover-box{
  top: -1px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(10%), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), 10%, black);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#liveCasino .hover-box{
  top: 60%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#liveCasino .game-box:hover .hover-box{
  top: -1px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(10%), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), 10%, black);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.games .col .game-box .hover-box div, .games .col-lg-3 .game-box .hover-box div {
  margin: auto;
}

.games .col .game-box .hover-box div p, .games .col-lg-3 .game-box .hover-box div p {
  margin: 5px 0 20px;
}

.games .col .game-box:hover .hover-box, .games .col-lg-3 .game-box:hover .hover-box {
  top: -1px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(10%), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), 10%, black);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.games .col .game-box:hover .hover-box div button, .games .col-lg-3 .game-box:hover .hover-box div button {
  margin: 0 auto 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}


.hover-box img{
  max-width: 150px;
  height: auto;
  max-height: 30px;
}

.games .col .game-box.best-game, .games .col-lg-3 .game-box.best-game {
  position: relative;
}

.games .col .game-box.best-game::after, .games .col-lg-3 .game-box.best-game::after {
  content: "HOT";
  width: 62px;
  height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8A3B), to(#ED5F00));
  background: linear-gradient(#FF8A3B, #ED5F00);
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  font-size: 12px;
  line-height: 30px;
  font-weight: 600;
  text-align: left;
  padding-left: 15px;
  border-radius: 20px 0 0 0;
}

.games .col .game-box.new-game, .games .col-lg-3 .game-box.new-game {
  position: relative;
}

.games .col .game-box.new-game::after, .games .col-lg-3 .game-box.new-game::after {
  content: "NEW";
  width: 62px;
  height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#78EA59), to(#47BE26));
  background: linear-gradient(#78EA59, #47BE26);
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  font-size: 12px;
  line-height: 30px;
  font-weight: 600;
  text-align: left;
  padding-left: 15px;
  color: #FFF;
  border-radius: 20px 0 0 0;
}

.games .col-lg-3 .game-box .hover-box {
  top: 64%;
}

.games .col6 .game-box .line {
  display: none;
}

.games .col6 .game-box:hover {
  border: 1px solid #FFCB00;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.games .col7 .game-box .line {
  display: none;
}

.games .col7 .game-box:hover {
  border: 1px solid #FFCB00;
}

.games .col7 .game-box:hover .hover-box {
  -webkit-box-shadow: inset 0 0 15px #FFCB00;
          box-shadow: inset 0 0 15px #FFCB00;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.games .ani-st-3 .game-box .line {
  display: none;
}

.games .ani-st-3 .game-box:hover {
  border: 1px solid #870eef;
}

.games .ani-st-3 .game-box:hover .hover-box {
  -webkit-box-shadow: inset 0 0 10px #870eef;
          box-shadow: inset 0 0 10px #870eef;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.games .ani-st-2 .game-box .line {
  display: none;
}

.games .ani-st-2 .game-box:hover {
  border: 1px solid #b2ffff;
}


.games .ani-st-2 .game-box:hover .hover-box {
  -webkit-box-shadow: inset 0 0 10px #00FFFF;
          box-shadow: inset 0 0 10px #00FFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.games .ani-st-1 .game-box:hover {
  border: 1px solid #2FB1DF;
}
.games .ani-st-1 .game-box.glow:hover{
  border: none;
}

.games .ani-st-1 .game-box.glow:hover:before, .games .ani-st-1 .game-box.glow:hover:after {
  color: #fff;
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(to right, #f800, #f804, #fc0, #f804, #f800);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
  border: 0;
  border-radius: 20px;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}


.games .ani-st-1 .game-box.glow:hover:after{
  filter: blur(10px);
}

.games .ani-st-1 .game-box:hover .line {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  padding: 8px;
}

.games .ani-st-1 .game-box:hover .line::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,#FA4FC500, #2FB1DF, #FA4FC500);
  border-radius: 50%;
  -webkit-animation: animate 1s linear infinite;
          animation: animate 1s linear infinite;
}

.games .ani-st-1 .game-box:hover .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: -70%;
}

.games .ani-st-1 .game-box:hover .line:nth-child(2) {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  left: -57px;
  top: -80%;
}

.games .ani-st-1 .game-box:hover .line:nth-child(3) {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  right: -70%;
}

.games .ani-st-1 .game-box:hover .line:nth-child(4) {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  left: 57px;
  bottom: -80%;
}

.games .ani-st-1 .game-box:hover .img-game {
  -webkit-transform: rotateY(360deg);
  /*  크롬 */
  /* FireFox */
  /* Opera */
  transform: rotateY(360deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
}

.games .ani-st-1 .game-box:hover .hover-box {
  -webkit-box-shadow: inset 0 0 10px #2FB1DF;
          box-shadow: inset 0 0 10px #2FB1DF;
}

.games .ani-st-1 .game-box.glow:hover .hover-box {
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 0;
  background: #0008;
}
.games .ani-st-2 .game-box:hover {
  border: 1px solid #2FB1DF;
}

.games .ani-st-2 .game-box:hover .img-game {
  -webkit-transform: scale(1.2);
  /*  크롬 */
  /* FireFox */
  /* Opera */
  transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
}

.games .ani-st-2 .game-box:hover .hover-box {
  -webkit-box-shadow: inset 0 0 5px #c08e19;
          box-shadow: inset 0 0 5px #c08e19;
}

.games .ani-st-1c .game-box:hover {
  border: 1px solid #00FFFF;
}

.games .ani-st-1c .game-box:hover .line {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  padding: 8px;
}

.games .ani-st-1c .game-box:hover .line::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #00FFFF;
  border-radius: 50%;
  -webkit-animation: animate 1s linear infinite;
          animation: animate 1s linear infinite;
}

.games .ani-st-1c .game-box:hover .line:nth-child(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  left: -50%;
}

.games .ani-st-1c .game-box:hover .line:nth-child(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: -7px;
  top: -50%;
}

.games .ani-st-1c .game-box:hover .line:nth-child(3) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: -50%;
}

.games .ani-st-1c .game-box:hover .line:nth-child(4) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  left: 7px;
  bottom: -50%;
}

.games .ani-st-1c .game-box:hover .img-game {
  -webkit-transform: rotateY(360deg) scale(1.2);
  /*  크롬 */
  /* FireFox */
  /* Opera */
  transform: rotateY(720deg) scale(1.2);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
}

.games .ani-st-1c .game-box:hover .hover-box {
  -webkit-box-shadow: inset 0 0 10px #00FFFF;
          box-shadow: inset 0 0 10px #00FFFF;
}

.games .col11 .game-box:hover {
  border: 1px solid #00FFFF;
}

.games .col11 .game-box:hover .hover-box {
  -webkit-box-shadow: inset 0 0 100px #00FFFF;
          box-shadow: inset 0 0 100px #00FFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .games .col .game-box .hover-box div img {
    max-height: 27px;
  }
  .games .col .game-box .hover-box div p {
    margin-top: 3px;
  }
}

@media (max-width: 420px) {
  .games .col-lg-2 p {
    padding-bottom: 20px;
  }
}

.jackpot {
  height: 200px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../img/bg/bg-jackpot.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}

.jackpot::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(225deg, #FA4FC5, #2FB1DF);;
  bottom: -1px;
}

.jackpot .container {
  height: 180px;
}

.jackpot .container .row {
  height: 100%;
}

.jackpot .container .row .col-lg-6:first-child .txt-box {
  padding: 17px 0 0 76px;
}

.jackpot .container .row .col-lg-6:first-child .txt-box span {
  display: inline-block;
  padding-right: 190px;
  height: 58px;
  line-height: 1.8;
  background: url(../img/text/txt-jackpot.png) no-repeat right 12px;
  margin-bottom: 8px;
}

.jackpot .container .row .col-lg-6:first-child .txt-box p {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFD36D), to(#FF6F00));
  background: linear-gradient(#FFD36D, #FF6F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jackpot .container .row .col-lg-6 ul {
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.jackpot .container .row .col-lg-6 ul li {
  float: left;
  width: 50%;
}

.jackpot .container .row .col-lg-6 ul li .txt-box {
  padding: 20px 33px;
  width: 90%;
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.jackpot .container .row .col-lg-6 ul li .txt-box p {
  margin-top: 5px;
}

.jackpot .container .row .col-lg-6 ul li .left {
  -webkit-box-shadow: inset 0 3px 4px #000;
          box-shadow: inset 0 3px 4px #000;
  background: rgba(0, 0, 0, 0.5);
}

.jackpot .container .row .col-lg-6 ul li .right {
  -webkit-box-shadow: inset 0 3px 4px #2F2002;
          box-shadow: inset 0 3px 4px #2F2002;
  background: rgba(101, 77, 29, 0.4);
}

.jackpot .container .row .col-lg-6 ul li .right span {
  color: #FFC500;
}

@media (max-width: 1024px) {
  .jackpot .container {
    top: 30px;
    height: 140px;
  }
  .jackpot .container .row .col-lg-6 ul li .txt-box {
    padding: 20px;
    margin: auto;
    width: 96%;
  }
  .jackpot .container .row .col-lg-6 ul li .txt-box * {
    vertical-align: top;
  }
  .jackpot .container .row .col-lg-6 ul li .txt-box p {
    font-size: 24px;
    margin: 0;
  }
  .jackpot .container .row .col-lg-6:first-child .txt-box {
    padding: 6px 0 0 2px;
  }
  .jackpot .container .row .col-lg-6:first-child .txt-box span {
    padding-left: 5px;
    margin-bottom: 0;
    line-height: 1;
    padding-top: 16px;
    background: url(../img/text/txt-jackpot.png) no-repeat right bottom;
    background-size: 40%;
    padding-right: 154px;
    height: 48px;
  }
}

@media (max-width: 992px) {
  .jackpot {
    height: 187px;
  }
  .jackpot .container .row .col-lg-6 ul li .txt-box {
    padding: 10px 14px;
  }
  .jackpot .container .row .col-lg-6 ul li .txt-box .fs-20 {
    font-size: 13px;
  }
  .jackpot .container .row .col-lg-6 ul li .txt-box p {
    font-size: 16px;
    margin: 0;
  }
  .jackpot .container .row .col-lg-6:first-child .txt-box span {
    padding-top: 26px;
    padding-right: 128px;
    background: url(../img/text/txt-jackpot.png) no-repeat right 16px;
    background-size: 40%;
  }
}

@media (max-width: 768px) {
  .jackpot .container {
    top: 0;
    border-radius: 0;
    height: auto;
  }
  .jackpot .container .row .col-lg-6:first-child {
    padding-bottom: 15px;
  }
  .jackpot .container .row .col-lg-6:first-child .txt-box {
    text-align: center;
    padding: 0;
  }
  .jackpot .container .row .col-lg-6:first-child .txt-box span {
    padding-top: 15px;
    background: url(../img/text/txt-jackpot.png) no-repeat right center;
    background-size: 40%;
  }
  .jackpot .container .row .col-lg-6:last-child {
    padding-bottom: 0;
  }
  .jackpot .container .row .col-lg-6:last-child .txt-box {
    border-radius: 5px;
  }
}

@media (max-width: 420px) {
  .jackpot {
    margin-bottom: 60px;
    height: 240px;
  }
  .jackpot .container .row .col-lg-6:first-child .txt-box p {
    font-size: 50px;
  }
}

@media (max-width: 420px) and (max-width: 400px) {
  .jackpot .container .row .col-lg-6:first-child .txt-box p {
    font-size: 40px;
  }
}

@media (max-width: 420px) {
  .jackpot .container .row .col-lg-6:last-child {
    padding-bottom: 15px;
  }
}

.games.best-game {
  /*
  background: url(../img/bg/bg-section-best.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  */
  background-color: #222222;
}

.games-wrap {
  padding-top: 10px;
  background: url(../img/bg/bg-section-games.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  padding-bottom: 100px;
}

@media (max-width: 420px) {
  .games-wrap {
    padding-bottom: 60px;
  }
}

.games.slot-game {
  padding-top: 30px;
}

.games.slot-game .tit-box {
  /*
  margin-top: 110px;
  */
}

@media (max-width: 420px) {
  .games.slot-game .tit-box {
    margin-top: 10px;
  }
}

.games.live-casino {
  padding-top: 30px;
}

@media (max-width: 420px) {
  .games.live-casino {
    padding-top: 10px;
  }
}

.notice {
  background: #333;
}

.notice::after {
  display: none;
}

.notice .depth1 {
  margin-bottom: 50px;
}

.notice .depth1 .col-lg-4 .col-box {
  border: 1px solid #444;
  border-radius: 10px;
  background-color: #383838;
}

.notice .depth1 .col-lg-4 .col-box .col-header {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #444;
}

.notice .depth1 .col-lg-4 .col-box .col-header h5 {
  padding-left: 48px;
  color: #ffc500;
}

.notice .depth1 .col-lg-4 .col-box .col-header .btn-link-more {
  font-size: 12px;
      color: #fff;
      background: #0cf;
      width: 71px;
      height: 22px;
      padding-left: 7px;
      line-height: 22px;
      position: relative;
      border-radius: 30px;
}

.notice .depth1 .col-lg-4 .col-box .col-header .btn-link-more::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  -webkit-clip-path: polygon(100% 100%, 0% 100%, 100% 0);
          clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: 8px;
  top: 9px;
}

.notice .depth1 .col-lg-4 .col-box .col-content {
  padding: 3px 20px;
}

.notice .depth1 .col-lg-4 .col-box .col-content li {
  padding: 13px 10px 11px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 500;
}

.notice .depth1 .col-lg-4 .col-box .col-content li:first-child {
  border-top: 0;
}

.notice .depth1 .col-lg-4 .col-box .col-content li a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  color: #E8E8E8;
}

.notice .depth1 .col-lg-4 .col-box .col-content li a::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 10px;
  background: #FFF;
}

.notice .depth1 .col-lg-4 .col-box .col-content li a .nt-title {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 260px;
  white-space: nowrap;
  margin-right: 10px;
}

.notice .depth1 .col-lg-4 .col-box .col-content li a em {
  font-style: normal;
  color: #FFF;
  font-size: 14px;
  color: #6D6D6D;
}

.notice .depth1 .ntc-box h5 {
  background: url(../img/icons/icon-ntc-3.png) no-repeat 10px center;
}

.notice .depth1 .event-box h5 {
  background: url(../img/icons/icon-ntc-4.png) no-repeat 10px center;
}

.notice .depth1 .realtime-box h5 {
  background: url(../img/icons/icon-ntc-5.png) no-repeat 10px 7px;
}

.notice .depth1 .realtime-box .col-box .col-content li a span::before {
  display: none;
}

.notice .depth1 .realtime-box .col-box .col-content li a em {
  color: #E8E8E8;
}

.notice .depth1 .realtime-box .col-box .col-content li a .userid {
  color: #B4D4FF;
}

.notice .depth1 .realtime-box .col-box .col-content li a .price {
  color: #FF8383;
}

@media (max-width: 1024px) {
  .notice .depth1 .col-lg-4 .col-box .col-header {
    padding: 15px;
  }
  .notice .depth1 .col-lg-4 .col-box .col-header h5 {
    padding-left: 30px;
    font-size: 18px;
    background-size: 20px;
    background-position: left center;
  }
  .notice .depth1 .col-lg-4 .col-box .col-content {
    padding: 3px 10px;
  }
}

@media (max-width: 420px) {
  .notice .depth1 .realtime-box {
    margin-bottom: 60px !important;
  }
}

.notice .depth2 {
  padding-top: 50px;
  border-top: 1px solid #4F5B71;
}

.notice .depth2 .col-lg-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid rgba(79, 91, 113, 0.5);
}

.notice .depth2 .col-lg-4:first-child {
  border: 0;
}

.notice .depth2 .col-lg-4 a {
  display: inline-block;
  padding-left: 68px;
  color: rgba(255, 255, 255, 0.5);
}

.notice .depth2 .col-lg-4 a p {
  color: #FFF;
}

.notice .depth2 .col-lg-4 .link-pt {
  background: url(../img/icons/icon-cs-1.png) no-repeat left center;
}

.notice .depth2 .col-lg-4 .link-qa {
  background: url(../img/icons/icon-cs-2.png) no-repeat left center;
}

.notice .depth2 .col-lg-4 .link-cs {
  background: url(../img/icons/icon-cs-3.png) no-repeat left center;
}

@media (max-width: 1024px) {
  .notice .depth2 .col-lg-4 a {
    font-size: 14px;
  }
  .notice .depth2 .col-lg-4 a p {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .notice .depth2 .col-lg-4:last-child a p {
    font-size: 12px;
  }
  .notice .depth2 .col-lg-4 a {
    background-size: 40px !important;
    padding-left: 58px;
    min-height: 42px;
  }
}

@media (max-width: 420px) {
  .notice .depth2 {
    padding-top: 0;
    padding-bottom: 30px;
    border-top: 0;
  }
  .notice .depth2 .col-lg-4 {
    display: block;
    border-left: 0;
  }
  .notice .depth2 .col-lg-4 a {
    display: block;
    padding: 26px 0 16px;
    background-position: center 16px !important;
    background-size: 25px !important;
    text-indent: -9999px;
    text-align: center;
    background: #1E242D;
    border-radius: 10px;
  }
  .notice .depth2 .col-lg-4 a p {
    text-indent: 0;
    font-size: 12px;
  }
  .notice .depth2 .col-lg-4:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .notice .depth1 .col-lg-6 .img-box .txt-box .btn-st1 {
    margin-top: 26px;
  }
  .notice .depth2 div a {
    background-size: contain !important;
  }
}

@media (max-width: 992px) {
  .notice .depth1 .col-lg-6 .img-box .txt-box {
    padding: 20px 20px 0;
  }
  .notice .depth1 .col-lg-6 .img-box .txt-box .btn-st1 {
    min-width: 142px;
    height: 50px;
    margin-top: 16px;
  }
  .notice .depth2 .col-lg-4 .link-pt {
    background: url(../img/icons/icon-cs-1.png) no-repeat left center;
  }
  .notice .depth2 .col-lg-4 .link-qa {
    background: url(../img/icons/icon-cs-2.png) no-repeat left center;
  }
  .notice .depth2 .col-lg-4 .link-cs {
    background: url(../img/icons/icon-cs-3.png) no-repeat left center;
  }
  .notice .depth2 .col-lg-4 .col-box {
    padding: 16px 10px;
  }
  .notice .depth2 .col-lg-4 .col-box .col-header .btn-link-more {
    width: 18px;
    height: 18px;
    right: 6px;
    top: 1px;
  }
  .notice .depth2 .col-lg-4 .col-box .col-content li {
    padding: 10px 10px 8px 5px;
  }
  .notice .depth2 .col-lg-4 .col-box .col-content li em {
    display: none;
  }
  .notice .depth2 .col-lg-4 .col-box .col-content li:first-child {
    padding-top: 3px;
  }
}

@media (max-width: 430px) {
  .notice {
    padding-bottom: 0;
  }
  .notice .container .depth1 > div {
    margin-bottom: 24px;
  }
  .notice .container .depth1 {
    margin-bottom: 0;
  }
  .notice .container .depth1 .col-xs-6:first-child {
    margin-bottom: 10px;
  }
  .notice .container .depth2 .col-lg-4 .col-box .col-content li em {
    display: block;
  }
  .notice .depth2 {
      padding-top: 20px;
  }
  
  .notice .depth2 > div a{
    margin-bottom: 10px; 
    padding: 10px;
    border-bottom: 1px solid #888 !important;
  }
  .notice .depth2 > div:last-child a{
    border-bottom: 0 !important;
  }
}

.games.sub-slot-game {
  padding: 0px 0 30px;
  margin: 0;
  background: url(../img/bg/bg-section-games.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}

.games.sub-slot-game::after {
  display: none;
}

.games.sub-slot-game .tit-box {
  margin-bottom: 30px;
}

.games.sub-slot-game .select-box {
  display: none;
}

.games.sub-slot-game .tab-box {
  margin-bottom: 45px;
}

.games.sub-slot-game .tab-box ul li {
  height: 146px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 0;
  border-bottom: 0;
}

.games.sub-slot-game .tab-box ul li:nth-child(6n+1) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.games.sub-slot-game .tab-box ul li:nth-last-child(-n+6) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games.sub-slot-game .tab-box ul li .nav-link {
  border-radius: 0;
  height: 100%;
  color: #FFF;
  background: rgba(6, 12, 20, 0.5);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.games.sub-slot-game .tab-box ul li .nav-link:hover {
  border: 2px solid #FFBE24;
  background: rgba(29, 24, 9, 0.6);
}

.games.sub-slot-game .tab-box ul li .nav-link:hover p {
  color: #FFB43C;
  text-shadow: 0px 0px 10px #FFB43C;
  bottom: 15px;
}

.games.sub-slot-game .tab-box ul li .nav-link img {
  margin-bottom: 20px;
  max-width: 120px;
}

.games.sub-slot-game .tab-box ul li .nav-link p {
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
}

.games.sub-slot-game .tab-box ul li .nav-link.active {
  border: 1px solid #FFBE24;
  background: rgba(29, 24, 9, 0.5);
}

.games.sub-slot-game .tab-box ul li .nav-link.active p {
  color: #FFB43C;
  text-shadow: 0px 0px 6px #FFB43C;
}

.games.sub-slot-game .tab-pane .row > div {
  padding-top: 15px;
  padding-bottom: 15px;
}

.games.sub-slot-game .tab-pane .row > div a .hover-box .title {
  height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  color: #FFF;
}

.games.sub-slot-game .tab-pane .row > div a:hover .hover-box .title {
  height: auto;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .games.sub-slot-game .tab-box ul li .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .games.sub-slot-game .tab-box ul li .nav-link img {
    margin-bottom: 10px;
  }
  .games.sub-slot-game .tab-box ul li .nav-link p {
    font-size: 14px;
  }
  .games.sub-slot-game .tab-pane .row > div a .hover-box .title {
    height: 100px;
  }
  .games.sub-slot-game .tab-pane .row > div a .hover-box button {
    width: 100%;
    height: 40px;
    font-size: 16px;
  }
  .games.sub-slot-game .tab-pane .row > div a:hover .hover-box .title {
    margin-bottom: 16px;
  }
}

@media (max-width: 922px) {
  .games.sub-slot-game .tab-box ul li {
    height: 100px;
  }
  .games.sub-slot-game .tab-box ul li .nav-link p {
    font-size: 12px;
    width: 94%;
    margin: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .games.sub-slot-game .tab-pane .row > div a .hover-box .title {
    height: 50px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .games.sub-slot-game .select-box {
    display: block;
    text-align: center;
  }
  .games.sub-slot-game .select-box .btn-select {
    display: block;
    padding: 15px;
    height: 50px;
    font-size: 14px;
    color: #FFF;
    font-weight: 500;
    background: #060C14;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .games.sub-slot-game .select-box .btn-select::before {
    content: "";
    width: 14px;
    height: 10px;
    position: absolute;
    right: 16px;
    top: 20px;
    background: url(../img/icons/icon-select-down.svg) no-repeat center;
    background-size: contain;
  }
  .games.sub-slot-game .select-box .btn-select img {
    max-width: 100px;
    margin-right: 20px;
  }
  .games.sub-slot-game .tab-box {
    display: block;
    position: relative;
    margin-bottom: 0;
  }
  .games.sub-slot-game .tab-box .nav-tabs {
    position: absolute;
    z-index: 999;
    top: 5px;
    left: 0;
    right: 0;
    background: rgba(6, 12, 20, 0.8);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    height: 0;
    overflow: hidden;
  }
  .games.sub-slot-game .tab-box .nav-tabs li {
    padding: 0;
  }
  .games.sub-slot-game .tab-box .nav-tabs li .nav-link {
    border-radius: 0;
  }
  .games.sub-slot-game .tab-box .nav-tabs.on {
    height: auto;
    border: 2px solid #3C3C3C;
  }
  .games.sub-slot-game .tab-box .nav-tabs.on li {
    border-left: 2px solid #3C3C3C;
    border-bottom: 2px solid #3C3C3C;
  }
  .games.sub-slot-game .tab-box .nav-tabs.on li:nth-child(3n+1) {
    border-left: 0;
  }
  .games.sub-slot-game .tab-box .nav-tabs.on li:nth-last-child(-n+3) {
    border-bottom: 0;
  }
}

.footer{
  background-color: #222;
}
.footer .container {
  padding-top: 50px;
  padding-bottom: 80px;
}

.footer .container .partners {
  width: 100%;
  display: block;
  margin-bottom: 50px;
  filter: grayscale(1);
}

.footer .container .copylight-box {
  text-align: center;
}

.footer .container .copylight-box img{
  width: 150px;
}

.footer .container .copylight-box .copylight {
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .footer .container {
    padding-top: 34px;
    padding-bottom: 100px;
  }
}

@media (max-width: 420px) {
  .footer .container {
    padding-top: 18px;
    padding-bottom: 76px;
  }
  .footer .container img {
    width: 80px;
  }
  .footer .container .partners {
    margin-bottom: 20px;
  }
  .footer .container .copylight-box .copylight {
    margin-top: 26px;
  }
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes animate {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
