/**
* Template Name: eNno - v2.0.0
* Template URL: https://bootstrapmade.com/enno-free-simple-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --main-color-rgba: 218, 0, 74;
    --main-color: #da004a !important;
    --second-color: #2c1302;
    --third-color: #ff0000;

}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background: #000;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 700px;
}

@media (max-width: 700px) {
    body {
        width: 100%
    }
}

a {
    color: #fff;
}

a:hover {
    color: #ffb9b9;
    /* color : black; */
    text-decoration: none;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #ffc107;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #e7bc39;
    color: #fff;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    background: #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    position: fixed;
    width: 100%;
    /* border-bottom: 2px solid rgb(255 200 0); */
    height: 70px;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#header .logo a {
    color: #5f687b;
}

#header .logo img {
    max-height: 40px;
}

#header img {
    width: 150px;
    margin: 0 auto;
}

@media (max-width: 410px) {
    #header img {
        width: 120px;
        margin-top: 5px;
    }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #5f687b;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #14c871;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #5f687b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #14c871;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* Get Startet Button */
.get-started-btn {
    margin-left: 25px;
    background: #fff;
    color: #5f687b;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 1px solid #cdd1d9;
}

.get-started-btn:hover {
    background: #206bfb;
    color: #fff;
    border-color: #206bfb;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    top: 16px;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #5f687b;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #5f687b;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #16df7e;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(73, 80, 94, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background: #fff;
    padding-top: 82px;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #3e4450;
}

#hero h2 {
    color: #858ea1;
    margin: 10px 0 30px 0;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #16df7e;
    box-shadow: 0 8px 28px rgba(22, 223, 126, 0.45);
}

#hero .btn-get-started:hover {
    background: #206bfb;
    box-shadow: 0 8px 28px rgba(32, 107, 251, 0.45);
}

#hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 8px 35px 8px 25px;
    transition: 0.5s;
    margin-left: 10px;
    color: #5f687b;
    position: relative;
}

#hero .btn-watch-video i {
    color: #949cac;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 8px;
}

#hero .btn-watch-video:hover i {
    color: #16df7e;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f9f9fa;
}

.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #5f687b;
    position: relative;
    z-index: 2;
}

.section-title span {
    position: absolute;
    top: 30px;
    color: #f0f1f3;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 0;
}

.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-title span {
        font-size: 38px;
    }
}

/*--------------------------------------------------------------
  # Featured Services
  --------------------------------------------------------------*/
.featured-services {
    padding: 0;
}

.featured-services .icon-box {
    padding: 20px;
    color: #5f687b;
    background: #f9f9fa;
    border-radius: 4px;
    border: 1px solid #f9f9fa;
    transition: 0.3s;
}

.featured-services .icon {
    margin: 0 0 15px 0;
}

.featured-services .icon i {
    color: #16df7e;
    font-size: 36px;
}

.featured-services .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.featured-services .title a {
    color: #5f687b;
    transition: 0.3s;
}

.featured-services .icon-box:hover {
    border-color: #eaecef;
}

.featured-services .icon-box:hover .title a {
    color: #16df7e;
}

.featured-services .description {
    line-height: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #5f687b;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #16df7e;
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
.counts {
    padding-top: 0;
}

.counts .counters span {
    font-size: 48px;
    display: block;
    color: #16df7e;
    font-weight: 700;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #fff;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .icon-box .icon {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
    color: #16df7e;
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #5f687b;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #eaecef;
}

.services .icon-box:hover h4 a {
    color: #16df7e;
}

/*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #16df7e;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #5f687b;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #949cac;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #206bfb;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #16df7e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
}

/*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #e4e6ea;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: white;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.testimonials .owl-dot.active {
    background-color: #16df7e !important;
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}

/*--------------------------------------------------------------
  # Cta
  --------------------------------------------------------------*/
.cta {
    background: #16df7e;
    background-size: cover;
    padding: 60px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #206bfb;
    border-color: #206bfb;
}

/*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 20px;
    padding: 30px 20px;
    background: #fff;
}

.team .member img {
    max-width: 100%;
    margin: 0 0 30px 0;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #aaaaaa;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    color: #919191;
    transition: 0.3s;
}

.team .member .social a:hover {
    color: #16df7e;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #16df7e;
    border-bottom: 3px solid #16df7e;
    padding: 30px;
    width: 100%;
    background-color: #f9f9fa;
}

.contact .info i {
    font-size: 20px;
    color: #16df7e;
    float: left;
    width: 44px;
    height: 44px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #5f687b;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #949cac;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #16df7e;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #16df7e;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #16df7e;
    border-bottom: 3px solid #16df7e;
    padding: 30px;
    background-color: #f9f9fa;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #16df7e;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #16df7e;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #206bfb;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f9f9fa;
    min-height: 40px;
    margin-top: 82px;
}

.breadcrumbs h2 {
    font-size: 36px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #778196;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 58px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #16df7e !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

@media (max-width: 992px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    -webkit-box-shadow: 0px -8px 12px 0px var(--main-color);
    -moz-box-shadow: 0px -8px 12px 0px var(--main-color);
    box-shadow: 0px -8px 12px 0px var(--main-color);
    position: fixed;
    width: 100%;
    bottom: 0;
}

#footer .footer-top {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

#footer .footer-top h3 {
    font-size: 36px;
    font-weight: 700;
    color: #5f687b;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding-bottom: 0;
    margin-bottom: 0;
}

#footer .footer-top p {
    font-size: 15;
    font-style: italic;
    margin: 30px 0 0 0;
    padding: 0;
}

#footer .footer-top .footer-newsletter {
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    text-align: left;
    border: 1px solid #e4e6ea;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #16df7e;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #206bfb;
}

#footer .footer-top .social-links {
    margin-top: 30px;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #eaecef;
    color: #5f687b;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #16df7e;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    z-index: 2;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

#footer .copyright {
    text-align: center;
    color: #fff;
    font-size: 0.8rem
}

#footer .credits {
    float: right;
    font-size: 13px;
}

@media (max-width: 992px) {

    #footer .copyright,
    #footer .credits {
        float: none;
        -moz-text-align-last: center;
        text-align-last: center;
        font-size: 10px;
    }
}


.contact-section .bor {
    padding: 40px;
    margin: 0;
}

.dis-inline {
    display: inline
}

.contact-det p {
    color: #fff;
    margin-top: 0%
}

.twentyfourhours {
    margin: 0 auto;
    justify-content: center;

}

.download {
    position: absolute;
    width: 100%;
    bottom: -30px;
    display: flex;
    justify-content: center;
}

.download a:hover {
    transform: translate(0, -5px);
}

.download img {
    margin: 0 5px;
}

.bo-5 {
    border: 2px solid var(--main-color);
}

.kiosk-list {
    padding-top: 20;
}

.kiosk-list .col-lg-6 {
    margin-bottom: 80px;

}

.inactive-kiosk {
    filter: grayscale(100%);
}

.p-t-0 {
    padding-top: 0 !important;
}

.p-b-0 {
    padding-bottom: 0 !important;
}


.qr-scan {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 500;
}

.qr-scan img {
    width: 50px;
    cursor: pointer;
    height: 50px;
    /* transform: rotate(180deg); */
}

#qContact>img {
    width: 168px;
    height: 168px;
}

.sidepanel {
    position: fixed;
    z-index: 1;
    height: 250px;
    top: 45%;
    right: 0;
    overflow-x: hidden;
    transition: 0.5s;
}

.sidepanel img {
    width: 230px;
    margin: auto;
    display: flex;
    right: 0;
}

.qr-modal h4 {
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.qr-modal h6 {
    color: #fff;
    text-align: center;
}

.qr-modal a {
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.qr-modal:hover {
    color: #ffe17b;
}


.tnc {
    background-color: #000;
    color: #fff;
    border: 2px solid var(--main-color);
    padding: 30px
}

.tnc p {
    font-size: 0.8rem;
}

.mobile-menu {
    width: 100%;
    display: flex;
}

.mobile-menu a {
    text-align: center;
    padding: 10px 0;
    margin: 10px 0;
}

.mobile-menu .home {
    background-color: #252525;
}

.mobile-menu .promotion {
    background: linear-gradient(var(--main-color), var(--second-color));
}

.contact-name {
    font-weight: bold;
    /* color: #F11E1D !important; */
}

.head-content {
    /* display: flex; */
    margin-top: 10px;
}

.h-menu {
    text-align: left;
    margin-top: 23px;
    margin-left: 5px;
}

.h-logo {
    text-align: center;
}

.h-login {
    height: 35px;
    width: 100px;
    float: right;
    text-align: right;
    margin-top: 20px;
    background: linear-gradient(var(--main-color), var(--second-color));
    text-align: center;
    border-radius: 50px 10px 10px 3px;
}

.h-login>a {
    font-family: Helvetica;
    position: relative;
    top: 4;
    right: -5px;
}

#logout {
    top: 6;
    font-size: 0.85rem;
}

@media (max-width:410px) {

    .h-login>a {
        top: 5;
        font-size: 0.8rem;
    }

    .h-login {
        height: 30px;
        width: 80px;
    }

    #logout {
        font-size: 0.7rem;
        margin-top: 7px;
    }
}

.download {
    left: 0;
    right: 0;
}

.download img {
    width: 50px;
    margin: 0 2px;
    background: #000;
}

.img-wrapper {
    border: 2px solid var(--main-color);
    height: 200px;
    border-radius: 5px;
    width: 100%;
}

.product-img {
    margin-top: 40px;
    width: 85%;
}

.mobile50 {
    width: 50%;
    text-align: center;
}

@media (max-width:420px) {
    .img-wrapper {
        height: 140px;
    }
}

@media (max-width:368px) {
    .download {
        bottom: -15px;
    }

    .download img {
        width: 38px;
    }
}

@media (max-width: 991px) {

    .contact-name {
        font-size: 0.8rem;
        font-weight: normal;
    }

    .pd-0 {
        padding: 0;
    }

    .contact-section .bor {
        padding: 10px;
    }

    .mobile30 {
        width: 30%
    }

    .mobile33 {
        width: 33%;
        flex-grow: 0;
        flex-shrink: 0;
    }

    .mobile33 img {
        width: 60%;
        margin-bottom: 10px;
    }

    .mobile70 {
        width: 70%;
    }

    .sm-menu {
        display: none;
    }
}

@media (max-width:480px) {
    .contact-name {
        font-size: 0.6rem;
    }
}

.disable {
    pointer-events: none;
    cursor: no-drop;
    filter: brightness(0.5);
}

.sm-menu a {
    line-height: 4rem;
    color: #ffe17b;
    margin-left: 2rem;
    float: right;
}

.tnc-tog {
    width: 100%;
    background-color: var(--main-color);
    padding: 3px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 0.8rem;
}

a:not([href]) {
    color: #fff;
}

a:not([href]):hover {
    color: #f9e2e2;
}

.promotion-toggle {
    width: 100%;
    background-color: #000;
    color: #fff;
    font-size: 0.8rem;
    border: 1px solid var(--main-color);
    border-radius: 0;
    padding: 10px;
}

.m-rl-0 {
    margin-left: 0;
    margin-right: 0;
}

.m-b-30 {
    margin-bottom: 30px;
}

.cursor-pointer {
    cursor: pointer;
}

.content-wrapper {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.content-wrapper::-webkit-scrollbar {
    width: 0 !important;
}

.ft-col {
    height: 30px;
    width: 20%;
    float: left;
    position: relative;
    min-height: 1px;
    text-align: center;
}

.ft-col>a {
    text-decoration: none;
}

.ft-icon {
    width: 60px;
    margin: auto;
    cursor: pointer;
    margin-top: -12px;
    font-size: 0.7rem;
    color: #fff;
    text-shadow: 1px 1px 0px var(--main-color);
}

.ft-icon:hover {
    text-decoration: none;
    filter: contrast(50%);
}

.nav-icon {
    height: 35px;
    width: 35px;
    background-size: 100% 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:280px) {
    .ft-icon {
        font-size: 0.6rem;
    }

    .nav-icon {
        height: 30px;
        width: 30px;
    }
}

.navbar-side {
    font-size: 0.9rem;
    background: none;
    outline: none;
    border: none;
    margin-left: 5px;
}

.dropdown-menu {
    background-color: rgb(0 0 0 / 85%);
    min-width: 9rem;
    border: none;
    line-height: 35px;
}

.navbar-nav>li>a {
    display: block;
    padding-left: 10px;
    padding-top: 5px;
    font-size: 0.8rem;
    border-top: 2px solid rgb(128 128 128 / 50%);
}

.content-promo {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 58px;
}

.content-event {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 20px;
}

.content-event-carousel {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 100px;
}

.form-wrapper {
    margin: 110px 10px;
    background: rgb(0 0 0 / 50%);
    border-radius: 7px;
    border: 1px solid var(--main-color);
}

.form-group {
    margin: 10px 5%;
    color: #fff;
}

.form-control-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1px;
}

.form-control {
    height: calc(1.3em + .45rem + 0px);
    background: none;
    border: none;
    border-top: 0px;
    border-radius: 0px;
    border-bottom: 2px solid var(--third-color);
    padding-left: 0px;
    color: #ECF0F5;
    font-size: 0.85rem;
}

.form-control:focus {
    background: none;
    border-bottom: 2px solid #f5f5f5;
    color: white;
    outline: 0;
    box-shadow: none;
}

.form-submit {
    text-align: center;
}

.form-submit button {
    margin: 15px 5px;
    width: 90px;
    height: 40px;
    color: white;
    text-align: center;
    background: linear-gradient(var(--main-color), var(--second-color));
    border: 2px solid #fff;
    border-radius: 6px;
}

.profile-button-wrapper {
    width: 100%;
    padding: 10px 5px;
}

.profile-button {
    margin: 5px 0px;
    padding: 3px 0px 5px;
    font-size: 0.85rem;
    width: 100%;
    color: #fff;
    text-align: center;
    background: linear-gradient(var(--main-color), var(--second-color));
    border: 1px solid #fff;
    text-align: center;
    border-radius: 6px;
}

.custom-radio-btn>label {
    cursor: pointer;
    color: #fff;
    background: transparent;
    border: 2px solid;
    padding: 3px 10px;
    margin: 5px 5px 5px 0px;
    border-radius: 7px;
    width: 100px;
    text-align: center;
}

.custom-radio-input {
    margin-right: 5px;
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    visibility: hidden;
}

.custom-radio-input:checked+label {
    background: linear-gradient(var(--main-color), var(--second-color));
    color: #fff;
}

input:-webkit-autofill {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: white;
}

.form-submit button:hover {
    background: #fff;
    color: var(--third-color);
    border: 2px solid var(--third-color);
}

.form-button:active,
.form-button:focus {
    background: #fff;
    color: var(--third-color);
    border: 2px solid var(--third-color);
    outline: none;
}

.error-msg {
    color: red;
    background: rgb(0 0 0 / 60%);
    margin: 5px 5% 0;
}

.seg-title {
    font-size: 1rem;
    padding-left: 1%;
    padding-top: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ft-small {
    font-size: 0.85rem;
}

.seg-content {
    margin: 10px 5% 20px;
    color: #fff;
    display: flex;
}

.flex-space {
    flex-grow: 1;
    flex-basis: 0;
}

.form-select {
    width: 100%;
    background: none;
    margin-top: 3px;
    color: #fff;
    border: none;
    outline: none;
    border-bottom: 2px solid var(--third-color);
    font-size: 0.85rem;
}

.seg-option {
    background: #000;
}

.form-select::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.form-select::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.form-select::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--third-color);
}


#selectedProductImg {
    width: 20%;
}

.bank-account-wrapper {
    padding: 0px 10px;
    background: rgb(255 255 255 / 15%);
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    height: 60px;
    font-size: 0.8rem;
}

.bank-account-wrapper>p {
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 9px;
    margin-bottom: 0;
}

.bank-account-wrapper>img {
    float: right;
    width: 30px;
    height: 30px;
    position: relative;
    top: 16px;
}

/* custom loading bar*/
.loading-bar {
    z-index: 999999;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.loading-bar-content {
    position: absolute;
    border: 5px solid #f3f3f3;
    /* Light grey */
    border-top: 5px solid var(--main-color);
    /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.white-text {
    color: #fff;
}

.form-control:disabled,
.form-control[readonly] {
    background: none;
    opacity: 1;
    color: grey;
    pointer-events: none;
}

.bank-list {
    /* background: rgb(255 255 255 / 15%); */
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    font-size: 0.8rem;
}

.no-border {
    border-bottom: none;
}

.bank-list:hover {
    background: rgb(255 255 255 / 15%);
}

.history-table {
    color: #fff;
    overflow-y: scroll;
}

.history-table::-webkit-scrollbar {
    width: 0px !important
}

.history-table-inner {
    width: 100%;
    font-size: 0.7rem;
    margin-bottom: 0px;
}

/* @media (max-width: 420px) {
    .history-table-inner {
        width: 420px;
    }
} */

.pagination {
    justify-content: center;
}

.page-link {
    background: none;
    border: none;
    color: #fff;
    font-weight: bold;
}

.page-link:hover {
    color: #fff;
    background: none;
}

.page-link:focus {
    box-shadow: none;
}

#ticket-detail>.form-group>.form-control[readonly] {
    color: white;
}

.detail-button {
    text-decoration: underline;
    text-transform: uppercase;
    color: var(--third-color);
    font-weight: bold;
    vertical-align: inherit !important;
}

.custom-detail {
    padding: 5px;
    text-transform: uppercase;
}


.custom-detail-info {
    padding: 4px;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    bottom: 2px;
    right: 4px;
}

.detail-button i {
    color: white !important;
}

.detail-button img,
.fpg-tab img,
.custom-detail-info img {
    filter: drop-shadow(1px 0px 0 #fff) drop-shadow(0px 0px 0 #fff);
}

.fpg-tab {
    display: flex;
    align-items: center;
}

.fpg-link {
    text-transform: uppercase;
    font-size: 14px;
    padding: 0 8px;
    background: var(--main-color);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    animation: blink-contact 2.3s linear infinite;
}

.fpg-link:focus {
    outline: none;
}

@keyframes blink-contact {
    0% {
        box-shadow: 0px 0px 3px #fff;
        color: white;
    }

    50% {
        box-shadow: 0px 0px 10px #fff;
        text-shadow: 0px 0px 10px #fff;
        color: white;
    }

    100% {
        box-shadow: 0px 0px 3px #fff;
        color: white;
    }
}

.detail-top-right {
    min-width: 150px;
}

.backdrop-fade {
    opacity: 0.5;
    pointer-events: none;
}

.nav-custom.active {
    color: white !important;
    background: linear-gradient(var(--main-color), var(--second-color));
    border: none !important;
    outline: none !important;
}

.nav-custom {
    border: none !important;
    outline: none !important;
}

.nav-tabs {
    border-bottom: 1px solid var(--main-color);
    font-size: 16px;
}

#copied {
    margin: 0px 5% 0px;
    color: green;
    display: none;
    font-size: 0.85rem;
}

.icon-position {
    float: right;
    position: relative;
    bottom: 15px;
    right: 15px;
}

.menu-pos {
    top: 10px;
}

.rotate-icon {
    transform: rotate(90deg);
}

.top-close-icon {
    position: relative;
    float: right;
    margin-right: 5%;
    color: #fff;
    bottom: 20px;
}

.file-input {
    cursor: pointer;
    border: 2px solid #fff;
    color: white;
    margin-top: 10px;
    padding: 10px 28px;
    border-radius: 10px;
}

.file-input:active {
    background: linear-gradient(var(--main-color), var(--second-color));
}

input[type=date]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

input[type=datetime-local]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

#promotion-info * {
    color: #fff;
    font-size: 0.7rem;
}

.tr-link:hover {
    background: rgb(128 128 128 / 50%);
    cursor: pointer;
}

.tr-link:active {
    background: rgb(128 128 128 / 50%);
}

.announce-area {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    background: var(--second-color);
    border: 1px solid #fff;
    border-radius: 3px;
    color: white;
    width: 100%;
}

.ann-icon {
    padding: 4px 8px;
    display: flex;
    align-items: center;
}

.ann-content {
    display: flex;
    align-items: center;
    width: calc(100% - 68px);
    font-size: 12px;
    padding: 3px;
}

.ann-content>marquee>* {
    margin-right: 30%;
}

.home-promo-padding {
    padding-bottom: 10px;
    margin-top: 85px;
}

#announcementContent * {
    display: inline;
}

.pop-up-ann-inner {
    max-width: 700px;
    text-align: center;
    background: white;
    font-size: 15px;
    color: black;
    border-radius: 5px;
    padding: 2px;
}

.pop-up-ann-inner>* *,
.pop-up-ann-inner>*,
.pop-up-ann-inner {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0 !important;
}

.contact-sec {
    display: flex;
    overflow-x: scroll;
    margin-bottom: 15px;
}

.contact-sec::-webkit-scrollbar {
    -webkit-appearance: none;
}

.contact-sec::-webkit-scrollbar:vertical {
    width: 5px;
}

.contact-sec::-webkit-scrollbar:horizontal {
    height: 3px;
}

@media(min-width:700px) {
    .contact-sec::-webkit-scrollbar:horizontal {
        height: 8.5px;
    }
}

.contact-sec::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
    border: 2px solid #eee;
}

.contact-sec::-webkit-scrollbar-track {
    background-color: rgb(0 0 0 / 60%);
}

.product-wrapper {
    display: flex;
    color: #fff;
    justify-content: space-between;
    padding: 10px 6px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    margin: 8px 0;
    font-size: 14px;
    overflow-x: scroll;
}

.product-wrapper::-webkit-scrollbar {
    width: 0px !important;
}

.product-logo>img {
    /* width: 100px; */
    height: 36px;
}

.product-logo,
.product-info,
.product-actions {
    align-self: center;
}

.product-info {
    width: 200px;
    text-align: start;
}

.product-username,
.product-password {
    padding: 8px 5px;
    display: flex;
}

.product-username>div,
.product-password>div {
    margin: 0 3px;
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-username>*,
.product-password>* {
    align-self: center;
}

.product-actions>a {
    width: 70px;
    margin: 5px;
    padding: 2px;
    height: 25px;
    border: none;
    outline: none;
    border-radius: 5px;
    text-align: center;
    -webkit-appearance: button;
}

.product-actions>a:active,
.product-actions>a:focus {
    border: none;
}

.bg-in {
    background: #1b9405;
}

.bg-out {
    background: #FF0000;
}

.product-actions>a:hover {
    color: #FF0000;
    background: #fff;
}

.copy {
    margin: 0px 5% 0px;
    color: green;
    display: none;
    font-size: 0.85rem;
}

.pm-game {
    text-decoration: underline;
    margin-top: 10px;
}

.text-orange {
    color: #ddb523 !important;
}

.notification-margin {
    margin-left: 1.25rem !important;
}

.notify {
    color: #fff;
    background-color: #dc3545;
    position: relative;
    bottom: 1px;
}

.promo-img {
    border: 2px solid var(--main-color);
}

.mb-01 {
    margin-bottom: 1px;
}

.fpg-container {
    display: flex;
    flex-wrap: wrap;
}

.fpg-inner {
    display: flex;
    /* flex: 1 1 0; */
    margin: 8px 10px 0;
    /* margin-top: 8px; */
}

.fpg-bank-img {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-left: 5px;
}

.fpg-radio {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.custom-label-fpg {
    margin-bottom: 0 !important;
}

.custom-label-duitnow {
    margin-bottom: 0 !important;
}

.duitNow-container {
    display: flex;
    flex-wrap: wrap;
}

.duitNow-inner {
    display: flex;
    margin: 8px 10px 0;
}

.duitNow-bank-img {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-left: 5px;
}

.duitNow-radio {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

#agreement{
    min-height: 1.2rem;
    min-width: 1.2rem;
    margin-top: 0.2rem;
}

.swal2-close {
    border: 1px solid white !important;
    border-radius: 25px !important;
    color: black !important;
    background: #d7d2d2eb !important;
    font-size: 30px !important;
    margin-right:-16px !important;
    padding-bottom:3px !important;
    box-shadow: rgb(147 140 140 / 95%) 0px 4px 16px !important;
    font-weight :bold;
    margin-top: -18px !important;
}

.swal2-html-container{
    padding:0 !important;
    margin:0 !important;
}
.swal2-popup {
    padding:0 !important;
}

.custom-receipt-format {
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.flex-container {
    margin: 0px 10px;
    display: flex;
}

.flex-container > div {
margin: 0 10px;
    width:50%
}
.plus-product{
    font-size: 14px;
    margin-top: 10px;
    width: 40%;
    margin-right: 25px;
    color: var(--third-color);
    padding: 1px 10px;
    border-radius: 25px;
    background: white;
    border: 1px solid white;
    cursor: pointer;
}
  
.remove-product {
    border: 1px solid white;
    border-radius: 25px;
    font-size: 12px;
    color: white;
    padding: 1px 5px;
    cursor: pointer;
    box-shadow: inset 1px 1px 1px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
   }

.remove-product:hover {
    box-shadow: inset 1px 1px 1px 0px rgba(27, 253, 156,.5),
    7px 7px 20px 0px rgba(27, 253, 156, 0.1),
    4px 4px 5px 0px rgba(27, 253, 156,.1);
    background:   linear-gradient(var(--main-color), var(--second-color));
    color:white;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.add-product-btn {
    width: 25%;
    font-size: 13px;
    padding: 0.5em 0px 0.5em 1em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid white;
    background: transparent;
    color: white;
    box-shadow: inset 0 0 10px var(--third-color), 0 0 9px 3px rgba(27, 253, 156, 0.1);
}
   
.add-product-btn:hover {
    color: white;
    box-shadow: inset 0 0 10px var(--third-color), 0 0 9px 3px var(--third-color);
}

.add-product-btn:before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
    transition: transform .4s ease-in-out;
    background: linear-gradient(to right, transparent 1%, rgba(1,205,244, 0.4) 40%,rgba(7, 154, 184, 0.4) 60% , transparent 100%);
}

.add-product-btn:hover:before {
    transform: translateX(15em);
}

.progress {
    margin:40px 0px;
    position: relative;
    height: 3vh;
}

.progress span {
    position: absolute;
    display: block;
    width: 100%;
    color: black;
    font-weight:bold;
 }

 .content-multipleTicket-carousel {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 50px;
    margin-bottom:50px;
}

.daily-check-in-title {
    text-shadow:
    -1.25px 0px 0px var(--main-color),
    1.25px 0px 0px var(--main-color),
    0px -1.25px 0px var(--main-color),
    0px 1.25px 0px var(--main-color);
    color: white;
    font-weight: bold;
    margin: 0 1em;
    transform: skewX(-10deg);
    font-size: 18px;
}

.custom-label-crypto {
    margin-bottom: 0 !important;
}

.crypto-container {
    display: flex;
    flex-wrap: wrap;
}

.crypto-inner {
    display: flex;
    margin: 8px 10px 0;
}

.crypto-bank-img {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-left: 5px;
}

.crypto-radio {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

@keyframes rotating {
    from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

.refreshIcon{
    background: white;
    border-radius: 5px;
    padding: 3px;
    cursor: pointer;
}

hr {
    background: var(--third-color);
}
