/********** Template CSS **********/
:root {
    --primary: #00afff;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
    --yellow-dark: #edb830;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.nav-search {
  display: inline-block;
  float: right;
  cursor: pointer;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*Basic Colors*/
.color-white {
  color: #FFF !important;
}

.color-black {
  color: #000 !important;
}

.bg-white {
  background-color: #FFF !important;
}

.bg-black {
  background-color: #000 !important;
}

/*Main Color Settings*/
.theme-dark {
  background-color: #18191a;
}

.theme-dark .bg-theme {
  background-color: #0f1117 !important;
}

.theme-dark .border-theme {
  border-color: #0f1117 !important;
}

.theme-dark .color-theme {
  color: #FFF !important;
}

.theme-light {
  background-color: #f1f1f7;
}

.theme-light .bg-theme {
  background-color: #FFF !important;
}

.theme-light .border-theme {
  border-color: #FFF !important;
}

.theme-light .color-theme {
  color: #0f1117 !important;
}

/*Dark Theme Settings*/
.theme-dark p {
  color: #898989;
}

.theme-dark code {
  color: #898989;
  opacity: 0.7;
}

.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6,
.theme-dark #footer-bar a i,
.theme-dark #footer-bar a span .theme-dark p strong {
  color: #FFF;
}

/*Structural Dark Settings*/
.theme-dark .header,
.theme-dark #footer-bar {
  background: rgba(0, 0, 0, 0.55);
}

.theme-dark .card,
.theme-dark #preloader {
  background-color: #0f1117;
}

.card-style {
  overflow: hidden;
  border-radius: 30px;
  /* margin: 0px 15px 30px 15px; */
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 20px 25px -5px, rgba(0, 0, 0, 0.02) 0px 10px 10px -5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/*** Yellow Dark ***/
.border-yellow-dark {
  border-color: #edb830 !important;
}

.text-yellow-dark {
  color: #edb830 !important;
}

.btn-yellow-dark {
  background: linear-gradient(210deg,#ce8b0c 0%,#f8cc35 100%) !important;
  border: none;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.btn-primary {
  background: linear-gradient(210deg,#00afff 0%,#a0e9f8 100%);
  border: none;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--yellow-dark);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

.login-switch {
  display: inline-block;
  float: right;
  cursor: pointer;
  margin-right: 5px;
  color: #ffffff;
  background-image: linear-gradient(to bottom, #FFCE54, #F6BB42) !important;
  border: none;
  border-radius: 5px;
}

.signup-switch {
  display: inline-block;
  float: right;
  cursor: pointer;
  margin-right: 5px;
  color: #ffffff;
  background-image: linear-gradient(to bottom, #A0D468, #8CC152) !important;
  border: none;
  border-radius: 5px;
}

/*** Facts ***/
.facts {
  background-color: transparent !important;
  background-image: linear-gradient(0deg,#bc8408 0%,#ecbd1d 50%,#ffdb5e 100%) !important;
}

.facts p {
  color: #18191a;
}

.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 2px #18191a;
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}

.display-1 {
  font-size: 1.5rem;
  padding-right: 15px;
}

h1.display-1 {
  font-size: 1.6rem;
  color: transparent;
  -webkit-text-stroke: 2px #18191a;
}

.step-section {
  display: flex;
  flex-direction: row;
  padding: 20px;
  border-right: 3px solid #18191a;
}
.step-section:last-child {
  border: none;
}

/* Games Section */

.fullwidth {
  width: 100%;
  border-radius:10px;
}

.col-2 {
  padding-left: 10px;
  margin-top: 10px;
  padding-right: 10px;
}

.flow {
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}
.flow:hover {
  top: -10px;
}
/* Header */

.sticky-top {
  z-index: 10 !important;
}

@media only screen and (max-width: 767px) {
  .sticky-top {
    top: 0 !important;
    border-radius: 0px !important;
    padding-left: 1.5rem !important;
    padding-right: 0.3rem !important;
  }
  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler-icon:focus {
      outline: none;
      box-shadow: none;
  }
  .navbar-toggler {
    padding: .25rem .35rem !important;
  }
  .logo-img img {
    max-width: 140px !important;
  }
  .navbar-toggler {
    border: none;
  }
  .log-regis {
    position: absolute;
    top: 12px !important;
    right: 40px !important;
    /* margin: 0; */
  }
  .login-switch {
    padding: 5px;
  }
  .login-switch span {
    font-size: 14px;
  }
  .signup-switch {
    padding: 5px;
  }
  .signup-switch span {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler-icon:focus {
      outline: none;
      box-shadow: none;
  }
  .navbar-toggler {
    padding: .25rem .35rem !important;
    border: none;
  }
  .log-regis {
    position: absolute;
    top: 30px;
    right: 60px;
    /* margin: 0; */
  }
}

/* Footer */

.bank-logorow {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}

.bank-logorow img {
  width: 90px;
  height: 100%;
  margin: 5px;
  filter: grayscale(100%);
}

.game-logorow {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}

.game-logorow img {
  width: 50px;
  height: 100%;
  margin: 5px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}

.btn-block {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.form-border {
  border-radius: 5px;
}

.rejected {
  border-color: #c03131 !important;
  color: #c03131 !important;
}

.confirmed {
  border-color: #4fcf4f !important;
  color: #4fcf4f !important;
}

form span {
  position: absolute;
  color: #6ec1e4;
  font-size: 0.9rem;
}

.pwd_note {
  display: none;
  position: absolute;
  top: 107px;
  color: rgb(192, 49, 49);
  font-size: 12px;
}

.pwd_span {
  top: 79px;
  right: 25px;
}

.cpwd_span {
  top: 132px;
  right: 25px;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(/img/about-bg.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

@media (min-width: 1400px) {
  .container {
      max-width: 1140px !important;
  }
}
