:root {
    --main-color: #f75d00;
    /* --body-bg: #181616; */
    --box-bg: #221f1f;
    --text-color: #ffffff;
    --nav-height: 80px;
    --space-top: 30px;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: var(--body-bg);
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 55px;
}

a {
    text-decoration: none;
    color: unset;
}

img {
    max-width: 100%;
}

.main-color {
    color: var(--main-color);
}

.container {
    max-width: 1920px;
    /* padding: 0 40px; */
    margin: auto;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}

ol,
ul {
    padding-left: 0rem;
}
.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.login_h3{
    color: #fff;
}
.hl-btn{
    font-family: var(--heading-font);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 1;
}
.btn-base span{
    color: white;
}
.btn-base {
    font-weight: 600;
    position: relative;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    /* background: linear-gradient(to right, #07253F -4%, #cd2341 31%, maroon, darkmagenta, #07253F); */
    background: linear-gradient(to right, #07253F -3%, black, #cd2341);
    box-shadow: 5px 2px 10px 0px rgba(45, 23, 70, 0.2) inset, -5px -3px 8px 0px rgba(71, 23, 11, 0.2) inset;
    background-size: 200% 100%;
    transition: all 0.4s ease-in-out;
}
.btn-base:hover {
    background-position: 90% 0;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 0px 20px rgba(255, 53, 144, 0.5);
}
/* Navbar background and height */

/* Show dropdown on hover */
.dropdown-menu{
    padding: 0;
}
.hover-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    color: white;
    border: none;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
}
.dropdown-menu a{
    text-align: center;
    text-transform: uppercase;
    /* border-bottom: 1px solid black; */
}
.dropdown-menu a:hover{
    background: none;
    color: #f75d00;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
    text-decoration: underline;
}
.dropdown-menu a.dropdown-item{
    line-height: 30px;
}
.dropdown-menu li{
    border-bottom: 1px solid black;
}
a:hover{
    text-decoration: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: #fff;
}
#navbar .header-logo {
    height: 50px;
    /* display: block; */
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
    background-size: cover;
    height: 60px;
    display: flex;
    align-items: center;
    padding-top: 0px;
    border-bottom: 2px solid #07253F;
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav a,
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: white;
    line-height: 1.7;
    padding: 0.45rem 1rem;
    font-weight: bold;
}

.nav-link:hover {
    color: #ff4302 !important;
}

.nav-link.active {
    color: #ff4302 !important;
    font-weight: bold;
    border-bottom: 2px solid #ff4302 ;
}

.btn-login {
    margin-right: 10px;
}
i.bi.bi-search{
    font-size: 23px;
}
i.bi.bi-search:hover{
    color: wheat;
}

@media(min-width:992px) and (max-width: 1040px){
    .navbar-nav a,.nav-link{
        font-size: 12px;
    }
    .slider{
        display: none;
    }
}
/* Sidebar styles */
/* ---------------------------
   MOBILE SIDEBAR (YOUR STYLE)
---------------------------- */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: linear-gradient(45deg, #cd2341, #07253F);
    color: #fff;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    padding-top: 20px;
    overflow-y: auto;
}

.mobile-sidebar.show {
    right: 0;
}

.sidebar-header {
    position: absolute;
    top: 10px;
    right: 20px;
}

#closeSidebar {
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* ---------------------------
   LINK STYLES
---------------------------- */
.sidebar-links {
    list-style: none;
    padding-left: 0;
}

.sidebar-links li {
    margin: 0;
    border-bottom: 1px solid rgba(212, 58, 0, .67);
    line-height: 3;
}

.sidebar-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    padding: 3px 15px;
    display: flex;
    align-items: center;
}

.sidebar-links a:hover {
    color: #007bff;
}

.ads-label {
    background-color: red;
    margin-left: 5px;
    font-size: 12px;
    border-radius: 9px;
    padding: 4px;
    font-weight: bold;
    color: #fff;
}


/* ---------------------------
   MOBILE DROPDOWN (NEW)
---------------------------- */

/* Parent clickable item */
/* .mobile-parent > a {
    cursor: pointer;
} */

/* Arrow icon (+ / -) */
.mobile-arrow {
    font-size: 16px;
    font-weight: bold;
    margin-left: auto;
}

/* Hidden submenu */
.mobile-submenu {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    padding-left: 10px;
}

/* Submenu link style */
.mobile-submenu li {
    border-bottom:1px solid rgba(212, 58, 0, .67) ;
    padding: 6px 0;
    list-style: none;
}

.mobile-submenu a {
    font-weight: normal;
    font-size: 15px;
    padding-left: 20px;
    opacity: 0.9;
    line-height: 2;
}

.mobile-row {
    display: flex;
    align-items: center;
    padding: 3px 15px;
    line-height: 2.3;
}

.mobile-arrow {
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}

/*------------login poopup----------*/
.modal-content{
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
    border: none;
}
.modal-title{
    text-align: center;
}
.modal-body{
    padding: 30px;
}
.modal-header h5{
    font-size: 26px;
    font-family: sans-serif;
    text-transform: uppercase;
    position: relative;
    color: white;
    padding: 0px 80px 0px;
    font-weight: 700;
}
.modal-body button{
    background-color: #07253f;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    color: white;
}
.modal-footer{
    font-size: 19px;
}
.modal-footer a:hover{
    text-decoration: underline;
}
.login-button-member{
    width: 50px;
}
/*-------register page-------*/
.register-container {
    max-width: 780px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.register-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #f75d00;
}

/* .form-control {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    height: 50px;
} */

/* .form-control::placeholder {
    color: #bbb;
} */

.already {
    text-align: center;
    margin-top: 15px;
    color: black;
}

.already a {
    color: #ff3c3c;
    text-decoration: none;
}

.register-btn {
    background-color: #f75d00;
    color: white;
    height: 50px;
    border: none;
}
.register-btn:hover{
    animation: backwards;
    background-color: #07253f;
    color: #fff;
}

button.register-btn {
    width: 200px;
    border-radius: 20px;
}
.center-grid{
    display: grid;
    place-items: center;
}


.btn {
    color: #ffffff;
    /* padding: 0.25rem 0.5rem; */
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    position: relative;
    align-items: center;
    border: none;
}

.btn-hover::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #f75d00;
    transition: 0.3s ease-in-out;
    animation: none;
}
.btn-hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /* border: 2px solid var(--main-color); */
    z-index: 0;
    border-radius: 4px;
    animation: glow-border 5s linear infinite;
}

@keyframes glow-border {
    0% {
        box-shadow: 0 0 0px var(--main-color);
    }

    50% {
        box-shadow: 0 0 8px #000;
    }

    100% {
        box-shadow: 0 0 0px var(--main-color);
    }
}

.btn-hover:hover::before {
    width: 100%;
    animation: none;
}

.btn i,
.btn span {
    z-index: 1;
}

.btn i {
    margin-right: 5px;
}

.hamburger-menu {
    --size: 30px;
    height: var(--size);
    width: var(--size);
    cursor: pointer;
    z-index: 101;
    position: relative;
    display: none;
    align-items: center;
}

.hamburger {
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: var(--size);
    height: 3px;
    border-radius: 0.5rem;
    background-color: var(--text-color);
    transition: 0.4s;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}

.hamburger-menu.active .hamburger {
    background-color: transparent;
}

.hamburger-menu.active .hamburger::before {
    transform-origin: top left;
    transform: rotate(45deg);
    left: 6px;
}

.hamburger-menu.active .hamburger::after {
    transform-origin: bottom left;
    transform: rotate(-45deg);
    left: 6px;
}



/* .hero-slide .hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.hero-slide-item {
    padding-top: 40%;
    position: relative;
    overflow: hidden;
}

.hero-slide-item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    display: flex;
}

.item-content-wraper {
    padding-left: 5rem;
    width: 40%;
    /* background-color: rgba(0, 0, 0, 0.8); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-top: 40px;
}

.item-content-wraper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 50%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); */
}

.item-content-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}
.movie-infoss {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.movie-infos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.movie-info {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.movie-info span {
    color: white;
}

.movie-info i {
    color: #f75d00;
}

.movie-info ~ .movie-info {
    margin-left: 5px;
    line-break: anywhere;
}

.item-content-description {
    font-size: 1.15rem;
    margin-top: 10px;
}

.item-action {
    margin-top: 10px;
}

.carousel-nav-center {
    position: relative;
}

.carousel-nav-center .owl-nav button i {
    font-size: 3rem;
}

.carousel-nav-center .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-nav-center .owl-nav .owl-prev {
    position: absolute;
    left: 5px;
}

.carousel-nav-center .owl-nav .owl-next {
    position: absolute;
    right: 5px;
}

.owl-nav button {
    border: none;
    outline: none;
}

.owl-nav button i {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

.owl-nav button:hover i {
    color: var(--main-color);
}

.top-down {
    transform: translateY(-50px);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.delay-8 {
    transition-delay: 0.8s;
}

.owl-item.active .top-down {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.movie-item {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 140%;
    cursor: pointer;
    border: 2px solid white;
}

.movie-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s linear;
}

.movie-item:hover img {
    transform: scale(1.2);
}

.movie-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    /* background-color: rgba(0, 0, 0, 0.8); */
}

.movie-item-content::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100px;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); */
}

.movie-item-title {
    color: var(--text-color);
    font-size: 1rem;
    position: relative;
    font-weight: 700;
}
.section {
    padding-top: 60px;
}

.section-header {
    margin-bottom: 30px;
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 4px solid var(--main-color);
    display: flex;
    align-items: center;
    background: white;
    color: black;
    width: 18%;
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-box {
    padding: 50px;
    margin: 15px 0;
    background-color: var(--box-bg);
    border-top: 5px solid transparent;
    transition: transform 0.3s ease-in-out;
}

.pricing-box:hover {
    transform: translateY(-20px);
}

.pricing-box.hightlight {
    border-top: 5px solid var(--main-color);
}

.pricing-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
}

.pricing-price {
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
}

.pricing-box-content {
    text-align: center;
    margin-top: 60px;
    font-size: 1.25rem;
}

.pricing-box-action {
    text-align: center;
    margin-top: 60px;
}

/* .footer-container{
    background: url('images/footer-bg-seat.png');
    background-repeat: no-repeat;
    background-size: cover;
} */
footer.section {
    margin-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 0px;
    border-top: 2px solid #fff;
}

footer a:hover {
    color: #f75d00;
}

footer a.logo {
    margin-top: -2.5rem;
    display: block;
}

footer a.logo:hover {
    color: unset;
}

.social-list {
    display: flex;
    align-items: center;
    /* margin-top: 20px; */
}

.social-item {
    --size: 30px;
    height: var(--size);
    width: var(--size);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--text-color);
    color: var(--main-color);
}

.social-item:hover {
    background-color: var(--main-color);
    color: var(--text-color);
}

.social-item ~ .social-item {
    margin-left: 20px;
}

footer .content {
    margin-top: 20px;
}

.footer-menu {
    list-style-type: none;
}

.footer-menu a {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.footer-menu a:hover {
    transform: translateX(5px);
}

.copyright {
    padding: 10px;
    border-top: 1px solid var(--body-bg);
    background-color: var(--box-bg);
    text-align: center;
}
/* a:hover{
    color: #fff;
} */


/* social icons */
.social-icons {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social-icon {
    font-size: 2.4rem;
    width: 45px;
    height: 35px;
    margin: 2px 10px 8px 0;
    line-height: 30px;
    border: 2px solid #ccc;
    border-radius: 25%;
    color: inherit;
    -webkit-transition: color 0.4s, border 0.4s, background-color 0.4s;
    transition: color 0.4s, border 0.4s, background-color 0.4s;
    text-align: center;
}
.social-icons-colored .social-icon.social-instagram{
    border-color: #cc0001;
    background-color: #cc0001;
}
.social-icons-colored .social-icon.social-facebook {
    border-color: #1b4f9b;
    background-color: #1b4f9b;
}
.social-icons-colored .social-icon.social-twitter {
    border-color: #00adef;
    background-color: #00adef;
}
/* RESPONSIVE */

@media only screen and (max-width: 1280px) {
    html {
        font-size: 14px;
    }

    .hero-slide-item {
        padding-top: 50%;
    }

    .item-content-wraper {
        width: 50%;
    }
}

@media only screen and (max-width: 850px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-slide-item {
        height: max-content;
        padding-top: unset;
    }

    .item-content-wraper {
        width: 100%;
        height: 100%;
        padding-bottom: 20px;
        padding-right: 5rem;
        /* background-color: rgba(0, 0, 0, 0.2); */
    }

    .hero-slide-item-content {
        position: relative;
    }

    .hero-slide-item img {
        height: 100%;
    }

    .item-content-title {
        font-size: 1.3rem;
    }

    .hamburger-menu {
        display: grid;
    }

    .nav-menu {
        /* display: none; */
        position: absolute;
        top: 100%;
        left: -100%;
        flex-direction: column;
        width: 50%;
        height: 100vh;
        padding: 20px;
        transition: 0.3s ease-in-out;
        background: linear-gradient(180deg, #07253F, #cd2341);
        border-right: 2px solid white;
    }

    .nav-menu li {
        margin: 10px 30px;
    }

    .nav-menu.active {
        left: 0;
    }
}


.bottom-catergorylisting>a {
    background: #cd2341;
    border: 1px solid #000;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    float: left;
    font-size: 12px;
    font-weight: 700;
    margin: 0 2px;
    padding: 7px 0;
    text-align: center;
    text-transform: none;
    vertical-align: top;
    width: 48%;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #050505), color-stop(1, #6E6B6E), color-stop(1, #1F1F1F));
    background-image: -o-linear-gradient(bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%);
    background-image: -moz-linear-gradient(bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%);
    background-image: -webkit-linear-gradient(bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%);
    background-image: -ms-linear-gradient(bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%);
    background-image: linear-gradient(to bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%)
}

.defcaategories .catgoryss li {
    display: inline-block
}

.defcaategories .catgoryss {
    background: #fff;
    border-bottom: 11px solid #fff;
    border-radius: 0;
    box-shadow: 0 0 0 #000;
    box-sizing: border-box;
    color: #fff;
    display: block;
    height: 190px;
    margin: 0px 0 0;
    overflow: auto;
    padding: 37px 7px;
    text-align: center
}

.defcaategories .catgoryss h2 {
    display: none
}

.defcaategories .catgoryss li {
    float: left;
    margin: 0;
    text-align: center
}

.defcaategories .catgoryss li a {
    background: #242424;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 11px;
    padding: 5px 8px
}

.defcaategories .catgoryss li a:hover {
    background: #cd2341
}

.bottom-catergorylisting {
    box-shadow: 0 0 0 #000;
    height: 41px;
    margin: 10px 0 0;
    padding: 5px
}

.footer-bottom-btn .four-btnss>li {
    display: inline-block;
    float: none;
    margin: 6px 2px 0 0;
    width: 48%
}

.footer-bottom-btn .four-btnss>li a {
    background: #141414;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 8px;
    text-align: center;
    width: 100%
}

.footer-bottom-btn .four-btnss {
    display: block;
    width: 100%
}

.footer-tab.d-flex {
    gap: 15px;
    text-decoration: underline;
}

.slide_show_li .new_add_main_images>img {
    height: auto !important;
    width: auto !important;
    max-width: 100%;
    display: block;
}
.mynewgame .cf #main #slideshowWrapper>ul.dimbutoonn {
    bottom: -188px;
    height: 34px !important;
    padding: 0 2px;
    position: absolute;
    top: auto !important;
    z-index: 99999999999999999
}

.mynewgame .cf #main #slideshowWrapper>ul.dimbutoonn li {
    display: inline-block;
    float: left !important;
    padding: 0 5px;
    width: 49% !important
}

.mynewgame .cf #main #slideshowWrapper>ul.dimbutoonn li a {
    background: #151515;
    color: #fff;
    display: block;
    font-size: 17px;
    padding: 8px 10px;
    text-align: center
}

.mynewgame .cf #main #slideshowWrapper>ul.dimbutoonn li a:hover {
    color: #cd2341
}

.main-imagess {
    height: 410px !important;
    overflow: hidden
}

.slideshow-histroybox>ul {
    border-bottom: 1px dashed #999;
    color: #3b3b3b;
    padding: 29px 0
}

.slideshow-histroybox>ul p {
    color: orange;
    text-align: left
}

.slideshow-histroybox img {
    box-shadow: 0 2px 0 3px #e9e9e9;
    margin: 24px 0 20px;
    width: 100% !important
}

.p.text-muted{
    color: white;
}

#fssPrev {
    position: absolute;
    left: 0px;
    bottom: -43px;
    width: 50%;
    background: #333;
    color: #fff;
    padding: 1px 1px;
    box-shadow: inset 0 0 8px #000;
    text-align: center;
    margin: 0;
    border: 4px solid #fff;
    border-radius: 10em;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    text-indent: unset;
    top: auto;
    height: auto;
}

#fssNext {
    position: absolute;
    left: 118px;
    bottom: -43px;
    width: 50%;
    background: #333;
    color: #fff;
    padding: 1px 1px;
    box-shadow: inset 0 0 8px #000;
    text-align: center;
    margin: 0;
    border: 4px solid #fff;
    border-radius: 10em;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    text-indent: unset;
    top: auto;
    height: auto;
}


.earn_two_points {
    background-color: rgba(38, 38, 45, .5);
    transition: opacity .3s, border .3s;
    color: #fff;
    position: absolute;
    top: 0px;
    width: 100%;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
}




/* swiper-slider */
/* .swiper {
    position: relative;
}

.swiper>.swiper-container {
    position: static;
}

.swiper>.swiper-container>.swiper-pagination {
    bottom: -4.5rem;
}

.swiper-pagination {
    position: static;
    margin-top: 1.5rem;
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid #d7d7d7;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet:hover {
    background-color: #cd2341;
    border-color: #cd2341;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #cd2341;
    border-color: #cd2341;
}

.swiper-container-rtl .swiper-button-next::after,
.swiper-container-rtl .swiper-button-prev::after {
    content: "";
}

.swiper-container-rtl .swiper-button-next::before {
    content: "";
}

.swiper-container-rtl .swiper-button-prev::before {
    content: "";
}

.swiper-button-next,
.swiper-button-prev {
    padding: 0;
    z-index: 99;
    border: none;
    background-color: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
}

.swiper-button-next::before,
.swiper-button-prev::before {
    font-family: "Wolmart";
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: default;
    color: #ccc;
}

.swiper-button-next::before {
    content: "";
}

.swiper-button-prev::before {
    content: "";
}

.swiper-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
    width: auto;
}

.swiper-container:not(.swiper-container-initialized) .swiper-slide {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.row {
    width: calc(100% + 2rem);
}

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-no {
    width: 100%;
}

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-xs {
    width: calc(100% + 2*1px);
}

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-sm {
    width: calc(100% + 2*5px);
}

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-md {
    width: calc(100% + 2*10px);
}

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-lg {
    width: calc(100% + 2*15px);
}

.swiper-theme .swiper-button-prev,
.swiper-theme .swiper-button-next {
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 400;
    color: #336699;
}

.swiper-theme .swiper-button-prev:not(.swiper-button-disabled):hover,
.swiper-theme .swiper-button-prev:not(.swiper-button-disabled):active,
.swiper-theme .swiper-button-prev:not(.swiper-button-disabled):focus,
.swiper-theme .swiper-button-next:not(.swiper-button-disabled):hover,
.swiper-theme .swiper-button-next:not(.swiper-button-disabled):active,
.swiper-theme .swiper-button-next:not(.swiper-button-disabled):focus {
    color: #fff;
    background-color: #336699;
    border-color: #336699;
}

.swiper-theme .swiper-button-prev.swiper-button-disabled,
.swiper-theme .swiper-button-next.swiper-button-disabled {
    color: #ccc;
    opacity: 0.6;
}

.swiper-theme .swiper-button-prev {
    left: -40px;
}

.swiper-theme .swiper-button-next {
    right: -40px;
}

.swiper-theme .swiper-pagination .swiper-pagination-bullet {
    margin: 5px;
}

.swiper-theme .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #cd2341;
    border-color: #cd2341;
    width: 8px;
}

@media (max-width: 1300px) {
    .swiper-theme .swiper-button-prev {
        left: 20px;
    }

    .swiper-theme .swiper-button-next {
        right: 20px;
    }
}

.swiper-slide {
    position: relative;
} */

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 50px;
    color: white;
    z-index: 10;
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 300px;
}

.slide-content h3 {
    margin: 0;
    font-size: 24px;
}

.slide-content p {
    margin: 10px 0;
    font-size: 16px;
}

/*new CSS Start*/
.new_add_main_images {
    display: inline-block;
    overflow: hidden;
    max-height: 310px !important;
}

.slide_show_li .new_add_main_images>img {
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
}

.new_add_bottom_slider_txt {
    background: #fff !important;
    color: #797979;
    font-size: 12px;
    left: 0;
    padding: 6px;
    position: absolute;
    right: 0;
    bottom: 50px !important;
}

.new_add_bottom_slider_txt span {
    color: #ff0000;
}

.new_add_border_right {

    height: 16px;

    border-right: 1px solid #000;

    border-left: 1px solid #000;

}

.new_add_top_slider_txt {
    background: #f1f1f1 none repeat scroll 0 0;
    color: #000;
    font-size: 13px !important;
    font-weight: bold;
    height: auto;
    padding: 6px 8px;
}

.new_add_top_slider_txt span {
    color: #ff0000;
}

.new_add_paty1:first-child {
    width: 33.33%;
}

.new_add_paty1:last-child {
    width: 28.33%;
    float: right;
}

.new_add_tilter {
    width: 215px;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 18px;
}

.new_add_content_price3 {
    padding: 4px 0px 4px 0px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.new_add_content_price3 span {
    color: #000;
    font-size: 16px;
    line-height: 14px;
    font-family: sans-serif;
    text-transform: lowercase;
    float: left;
}

.new_add_content_price3 h6 {
    color: var(--main-color);
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    float: left;
    margin: 0;
}

.new_add_content_price3 h5 {
    color: var(--main-color);
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 700;
    float: left;
    text-transform: uppercase;
    margin: -3px 0px 0px 0px;
}

.new_add_paty1 {
    float: left;
    display: inline-block;
    width: 38.33%;
}

.new_add_paty1 strong {
    font-size: 12px !important;
    display: inline-block;
    color: #000 !important;
    text-align: center;
    width: 100%;
}

.new_add_paty1 span {
    text-align: center;
    width: 100%;
    height: 50px;
    position: relative;
    top: 10px;
    display: inline-block;
}

.new_add_pri_bod {
    float: left;
    display: inline-block;
    width: 100%;
    margin-top: 0;
    padding: 4px 2px 0px 5px;
}

.new_add_sel_Price.new_add_pricess {
    line-height: 14px;
    font-size: 17.5px;
    color: #ff4201;
    font-family: 'Bebas';
    font-weight: 200 !important;
}

.new_add_paty1 span b {
    padding-bottom: 5px;
    line-height: 14px;
    font-size: 16.5px;
    color: #ff4201;
    font-family: 'Bebas';
    font-weight: 200 !important;
    text-align: center !important;
    width: 100%;
    display: inline-block;
}

.new_add_sel_by {
    float: right;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60%;
}

.new_add_sel_Price.new_add_pricess {
    color: #ff4201;
    float: left;
    width: auto;
}

.defcaategories .catgoryss {
    height: 177px;
}

.bottom-catergorylisting {
    background: #434343 none repeat scroll 0 0;
    height: 45px;
    margin: 2px 0 0;
    padding: 0;
    box-shadow: 0 0 0 #000;
}

.bottom-catergorylisting>a {
    background: #cd2341 linear-gradient(to bottom, #050505 0px, #6e6b6e 100%, #1f1f1f 100%) repeat scroll 0 0;
    border: 1px solid #000;
    border-radius: 0 0 10px 10px;
    color: #fff;
    display: inline-block;
    float: left;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    padding: 11px 0;
    text-align: center;
    text-transform: none;
    vertical-align: top;
    width: 50%;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #050505), color-stop(1, #6E6B6E), color-stop(1, #1F1F1F));
    background-image: -o-linear-gradient(bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%);
    background-image: -moz-linear-gradient(bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%);
    background-image: -webkit-linear-gradient(bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%);
    background-image: -ms-linear-gradient(bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%);
    background-image: linear-gradient(to bottom, #050505 0, #6E6B6E 100%, #1F1F1F 100%)
}


.mynewgame .cf #main .slider>div.defcaategories {
    margin: 47px 0 0 0;
    height: 178px;
    position: relative;
    /* overflow: hidden; */
}

.iterst-sec {
    display: block !important;
}

.mynewgame .cf #main .slider>div.defcaategories ul.iterst-sec {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 4px #000;
    list-style: none;
}

.mynewgame .cf #main .slider>div.defcaategories ul.iterst-sec li.actives,
.mynewgame .cf #main .slider>div.defcaategories ul.iterst-sec li:hover {
    background: var(--main-color);
}

.mynewgame .cf #main .slider>div.defcaategories ul.iterst-sec li {
    float: left;
    cursor: pointer;
    width: 50%;
    background: #333;
    color: #fff;
    padding: 5px 4px;
    box-shadow: inset 0 0 8px #000;
    text-align: center;
    margin: 0;
    border: 4px solid #fff;
    border-radius: 10em;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
}

.wmg-item {
    height: 170px !important;
}

.columns-container.eranvideoamps {
    margin-top: 0px;
}


#Mycontainer-right {
    width: auto;
    height: 177px;
    overflow-x: hidden;
    background-color: #fff;
    overflow-y: scroll;
    display: block;
    position: relative;
}

.wmg-container {
    filter: alpha(opacity=0);
    font-family: empty;
    font-size: 0;
    opacity: 0;
    position: relative;
    width: 100%;
    zoom: 1;
    background: #eee;
    margin: auto 0;
    text-align: center
}

.bs-example {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}


.bs-example .wmg-container {
    opacity: 1;
    /* width: 50%; */
    margin: 0 auto;
}

.wmg-container .wmg-item {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
}


.text-chackbox {
    background: #07253F;
    width: 100%;
    height: 30px;
    padding: 5px 0px;
    color: #ffffff;
    text-align: center;
}

.text-chackbox span {
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-family: sans-serif;
}

#checkboxin.checkboxin {
    -moz-appearance: none;
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    height: 100%;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    z-index: 9;
}

.checkboxin.ches+.wmg-thumbnail {
    background-attachment: scroll !important;
    background-clip: border-box !important;
    background-color: rgba(0, 0, 0, 0.8);
    background-image: url(assets/images/checks.png) !important;
    background-origin: padding-box !important;
    background-position: left 43px top -159px;
    background-repeat: no-repeat;
    background-size: auto auto;
}

.checkboxin.ches {
    opacity: 0 !important;
}

.checkboxin.ches+.wmg-thumbnail .wmg-thumbnail-content {
    opacity: 0.5;
}

.interestimg {
    width: 100%;
}


.laddProductDetail {
    text-align: center;
    padding-top: 0px;
    background: #f1f1f1;
    padding-bottom: 0px;
}

.laddProductPrice {
    font-size: 1.0rem;
    color: #333;
    font-weight: bold;
}

.laddFreeSection {
    font-size: 1.0rem;
    color: #333 !important;
    font-weight: bold;
    margin-top: 5px;
    line-height: 1.5;
}

.laddFreeSection span {
    color: #f75b10 !important;
}

.lineTrough {
    text-decoration: line-through;
}


.slide_show_li {
    background: #fff;

}

.mynewgame .cf #main #slideshow>li {
    height: 520px !important;
}

.givway_mian_img {

    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
}


.giveaway-catg {
    background: #d4ff00;
    color: #000;
    text-align: center;
    font-size: 17px;
    padding: 15px 0;
    font-weight: bold;
}

.giveaway-catg:hover {
    background: #ff4301;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

.entries-d {

    font-weight: bold;
}

.entries-d {
    border-top: 1px solid #DDD;
    clear: both;
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #000;
    padding-bottom: 10px;
    font-weight: bold;
}

.blog-text-a a {
    text-align: center;
    height: 54px;
    overflow: hidden;
}


/* movie detail section */
.slide_show_li {
    background: #fff;

}

.mynewgame .cf #main #slideshow>li {
    height: 520px !important;
}
.game_banner_background {
    background: url('../images/moviescreen_1.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.givway_mian_img {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
}

.rating-div-select {
    width: 100%;
}
.rating-div-select .btn {
    border-radius: 4px;
    width: auto !important;
    height: auto !important;
    line-height: 18px;
    border: 2px solid white;
}
.review-block-description {
    margin-top: 15px;
}

.starrr {
    margin-bottom: 10px;
    margin-top: 10px;
}

.starrr .glyphicon-star,
.glyphicon-star-empty {
    color: #cd2341;
    font-size: 23px;
}


.review-block {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}

.btn-add-cart{
    height: 35px;
    width: auto;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    clear: both;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 3px;
    font-size: 18px;
    background-color: var(--main-color);
}

.game-wrapper.mynewgame.makeactive-full .catgoryss {
    display: none;
}


.rating-div-select {
    width: 100%;
}

.review-block-description {
    margin-top: 15px;
}

.dislaystarbtn {
    padding: 3px 5px 5px 5px;
}

.starrr {
    margin-bottom: 10px;
    margin-top: 10px;
}

.starrr .glyphicon-star,
.glyphicon-star-empty {
    color: #f75d00;
    font-size: 23px;
}

.review-block {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}

/*image popsme*/
.popsup {
    background: #000000 none repeat scroll 0 0;
    bottom: auto;
    color: #ffffff;
    font-size: 11px;
    left: 4%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 56px;
    z-index: 99999;
    top: 258px;
}

.main-wpappers {
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    border: 1px solid #000;
    box-sizing: border-box;
    font-family: arial;
    overflow: hidden;
    padding: 0;
    width: 369px;
    height: 260px !important;
    display: block !important;
    position: relative !important;
    margin: 0 auto;
    margin-top: 10px !important;
}

.main-wpappers .images-popsme {
    border: 3px solid #000;
    width: 367px;
    height: 257px;
    position: absolute;
    cursor: pointer;
    z-index: 3;
}

.ap_wt_add {
    font-size: 20px;
    font-weight: bold;
    margin: 15px;
    background-color: #f75d00;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    border: 3px solid #000;
}


/* Hide by default */
/* .Myadvertisement,
.ap_wt_add {
    display: none;
} */

@media (max-width: 1024px) {

    .Myadvertisement,
    .ap_wt_add {
        display: block;
    }
    .main-wpapperss{
        display: none;
    }
}


/* sidebar */
.sidebar-booking-box {
    position: relative;
}

.sidebar-booking-box h3 {
    background:  var(--main-color);
    color: #FFF;
    padding: 10px 39px 22px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}

/* .sidebar-booking-box h3::after {
    background: #cd2341;
    border-radius: 50%;
    color: #FFF;
    content: "";
    font-family: FontAwesome;
    left: 41%;
    padding: 10px 17px;
    position: absolute;
    top: 63%;
    font-size: 18px;
} */

.booking-box-body {
    background: darkgray;
    box-shadow: 0 0 5px #E6E6E6;
    padding: 15px 5px 0;
}

.no-space,
.pull-left .qty {
    padding: 0;
}

.booking-box-body label {
    font-family: sans-serif;
    font-size: 13px;
    margin-top: 14px;
    font-weight: 400;
    text-align: left;
    width: 100%;
    color: black;
}

.booking-box-body .input-group {
    margin: 7px 0 0;
}

.custom.pull-left {
    width: 58% !important;
    margin-top: 3px;
}

.pull-left .qty,
.pull-left .qty-a {
    border: 2px solid #DDD;
    color: #000;
    font-weight: 700;
    margin-right: 0;
    width: 38% !important;
    float: none !important;
    max-width: none !important;
    background: #FFF;
    text-align: center;
    font-size: 14px;
}

.pull-left .qty-a {
    padding: 7px 0 !important;
}

.custom button.items-count.reduced {
    margin-right: 2px;
}

.custom button.items-count {
    background-color: #F5F5F5;
    transition: color .3s ease-in-out 0s, background-color .3s ease-in-out 0s, background-position .3s ease-in-out 0s;
    border: none;
    clear: both;
    color: #999;
    font-size: 14px;
    line-height: normal;
    padding: 9px 11px;
    text-align: center;
}

button {
    cursor: pointer;
}

button,
input {
    outline: 0;
    background: 0 0;
}

.booking-box-body .grand-total1 {
    margin-top: 10px;
    margin-left: -5px;
    margin-right: -5px;
    overflow: hidden;
    background: 0 0;
    padding: 2px 0;
}

.booking-box-body .grand-total1 span {
    background: 0 0;
    color: #07253F;
    margin: 11px 0 0 5px;
    padding: 0;
    text-transform: capitalize;
    font-size: 14px;
    float: left;
}

.booking-box-body .grand-total1 .res-collection-sub,
.booking-box-body .grand-total1 h4 {
    color: var(--main-color);
    text-transform: capitalize;
    font-size: 16px;
    background: 0 0;
    font-weight: 700;
    float: left;
}

.booking-box-body .grand-total1 h4 {
    margin: 13px 0 0;
    padding: 0 5px 0 3px;
}

.booking-box-body .grand-total1 .res-collection-sub {
    padding: 0;
    margin: 10px 0 0;
}

#contact .page-subheading,
.checkout-page .checkout-sep,
.contact-me,
.layered .layered_subtitle,
.page-heading span.page-heading-title2,
.page-product-box .heading,
.product-tab .nav-tab>li,
.testimonials .client-mane {
    text-transform: uppercase;
}

.booking-box-body .grand-total {
    margin-top: 15px;
    margin-left: -5px;
    margin-right: -5px;
    overflow: hidden;
    background: #07253F;
    padding: 15px 0;
}


/*._1RWYc {
    padding-top: 35px;
}*/

.at_watchadd {
    padding: 10px 0;
    width: 100%;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    margin: 10px auto;
   border: 2px solid #fff;
    border-radius: 5px;
    background: linear-gradient(90deg, #cd2341 0%, #000 41%, darkgray 100%);
}

._1rGOt ._1RWYc {
    position: relative;
    padding-top: calc(56.25vw + 87.5px)
}

.add-cart-submit{
    float: right;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    ._1rGOt ._1RWYc._1zAaa {
        padding-top: 212px
    }
}

._3C4Be, ._3gB2s ._1FkBi {
    width: 100%;
}

/*.Container { max-width: 1920px;margin-right: auto; margin-left: auto;}*/
._3C4Be ._3KtU0 ._1tYUX {
    width: 100%;
    padding: 12px 0
}

@media (min-width: 960px) {
    ._3C4Be ._3KtU0 ._1tYUX {
        padding: 0
    }
}

.Row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.Col {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px
}

.Col-20 {
    flex: 0 0 20%;
    max-width: 20%;
}

.Col-80 {
    flex: 0 0 80%;
    max-width: 80%;
}

._3C4Be ._3KtU0 ._3yigH ._2TykB {
    width: 100%;
    padding-top: 142.7%;
    background-position-x: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative
}

._3C4Be ._3KtU0 ._3yigH ._2TykB ._1xDPJ {
    position: absolute;
    left: 4px;
    bottom: 8px;
    height: 4px;
    z-index: 1
}

._244KQ {
    min-width: 2%;
    background-color: #ff501a;
    border-radius: 25px
}

._3C4Be ._3KtU0 ._3yigH ._1pkfZ {
    margin-top: 16px;
}

._12zMM .qpSdT {
    display: flex;
    margin-top: 8px;
    position: relative
}

@media (min-width: 960px) {
    ._12zMM .qpSdT {
        flex-wrap: wrap
    }
}

._12zMM .qpSdT ._1FBAg {
    margin-right: 8px;
    flex-grow: 1;
    width: 150px
}

@media (min-width: 960px) {
    ._12zMM .qpSdT ._1FBAg {
        margin-right: 0;
        margin-bottom: 8px
    }
}

.Button--block {
    display: block;
    width: 100%
}

.Button--secondary {
    color: #26262d !important;;
    text-shadow: none !important;
}

.Button {
    display: inline-block;
    position: relative;
    width: 150px;
    height: 40px;
    padding: 0;
    border: 0;
    opacity: 1;
    background: none;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.25;
    text-shadow: 0 0 2px rgba(0, 0, 0, .5);
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.Button__bg:not(:root:root) {
    -webkit-transform: translateZ(0);
}

.Button--secondary .Button__bg {
    background: #fff;
}

.Button__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .2s cubic-bezier(.75, 0, .28, 1);
    border-radius: 2px;
    background: #ff501a;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05)
}

.Button__content {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

@media (min-width: 960px) {
    ._12zMM .qpSdT ._2bQwF {
        position: relative
    }

    ._12zMM .qpSdT ._2bQwF .ZRq0D {
        width: auto
    }
}

._12zMM .qpSdT ._2bQwF {
    display: flex;
    flex-grow: 1;
    min-width: 50%
}

._12zMM .qpSdT ._2bQwF .ZRq0D {
    border: 1px solid #fff;
    flex-grow: 1;
}

.Button--transparent .Button__bg {
    background: none;
    box-shadow: none
}

._12zMM .qpSdT ._2bQwF .ZRq0D span {
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: .5px
}

.Col-55 {
    flex: 0 0 55%;
    max-width: 55%;
    padding-left: 15px;
}

.Col-25 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 15px;
}

@media (min-width: 960px) {
    ._3C4Be ._3KtU0 ._14LNo {
        padding: 16px 0 30px;
        border-bottom: 1px solid rgba(211, 215, 219, .1)
    }
}

._3C4Be ._3KtU0 ._1mbQP {
    color: #fff;
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: .5px
}

@media (min-width: 768px) {
    ._3C4Be ._3KtU0 ._1mbQP {
        font-size: 43px;
        font-weight: 700;
        line-height: 48px;
        letter-spacing: -1px
    }
}

@media (min-width: 960px) {
    ._3C4Be ._3KtU0 ._1mbQP {
        margin: 0;
        font-size: 42px;
        font-weight: 700;
        line-height: 64px;
        letter-spacing: -1px
    }
}

._3C4Be ._3KtU0 ._3u_yN {
    padding-left: 0 !important;
    padding-bottom: 20px !important
}

@media (min-width: 960px) {
    ._3C4Be ._3KtU0 ._3u_yN {
        padding-bottom: 35px !important;
        padding-top: 35px !important
    }
}

._f49X {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 20px 5px;
    letter-spacing: .5px
}

.FgXyu, .FgXyu ._2uKs4, .FgXyu .POOsG {
    display: flex;
    justify-content: space-between;
}

.FgXyu {
    align-items: center;
    /*color: hsla(0, 0%, 100%, .5);*/
    color: #fff;
    margin: auto 0 0;
}

.FgXyu ._2uKcs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
}

.FgXyu ._2uKcs ._3zBGD {
    height: 18px;
    width: 28px;
    margin-right: 10px;
}

._2rWrR {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: fill;
    transition-duration: .3s;
}

.qEWU6 {
    display: inline-block;
}

div._1fJFV {
    display: inline-block;
    margin-left: 8px;
}

._30bN1 {
    border-radius: 2px;
    background-color: hsla(0, 0%, 100%, .2);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 5px 10px 2px;
    line-height: 12px;
    font-size: 11px;
    white-space: nowrap;
}

.jcZAz {
    color: #fff;
    margin-left: 8px;
}

._1WqYG, ._3BhXb, .yPcUu {
    /*color: hsla(0, 0%, 100%, .5);*/
    color: #fff;
}

.FgXyu ._2uKs4 .yEocd, .FgXyu .POOsG .yEocd {
    margin: 0 3px;
}

._3QwYD {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

._3QwYD ._2mtiN, ._3QwYD ._14iz5 {
    margin-bottom: 0.5rem;
}

.pKIeQ {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


._30bN1 {
    border-radius: 2px;
    background-color: hsla(0, 0%, 100%, .2);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 5px 10px 2px;
    line-height: 12px;
    font-size: 11px;
    white-space: nowrap
}

._30bN1.bFpZo {
    border-radius: 20px;
    padding: 5px 15px
}

._1eEIa {
    text-transform: capitalize;
    margin: 0 5px 5px 0
}

._3C4Be ._3KtU0 ._1_hc6 {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .5px;
    color: #fff;
}

@media (min-width: 960px) {
    ._3C4Be ._3KtU0 ._1_hc6 {
        padding-bottom: 30px
    }
}

._3C4Be ._3KtU0 .H28ar {
    color: #fff;
    border-top: 1px solid rgba(211, 215, 219, .1);
    border-bottom: 1px solid rgba(211, 215, 219, .1)
}

._3jt7E {
    width: 100%;
    display: flex;
    align-items: flex-start;
    min-height: 2.6rem;
    padding: 15px 0;
    font-size: 15px;
}

._3jt7E ._3JPtP {
    display: flex;
    max-width: 9rem;
    width: 25%
}

@media (min-width: 768px) {
    ._3jt7E ._3JPtP {
        max-width: 8rem
    }
}

@media (min-width: 1170px) {
    ._3jt7E ._3JPtP {
        max-width: 6rem
    }
}

._3jt7E ._3JPtP ._25ABH {
    /*color: hsla(0, 0%, 100%, .5);*/
    color: #fff;
    flex: 0 0 auto;
    width: 100%;
}

._3jt7E ._1yVRz {
    /* margin-left: 25px; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    bottom: 2px;
}

.ATag:not(.active) {
    opacity: 1;
}

.ATag {
    display: inline-block;
    position: relative;
    transition: opacity .3s;
    color: #ff501a;
    line-height: 1.5;
    cursor: pointer;
}

._3x069 {
    width: 50%;
    height: 1px;
    background: rgba(211, 215, 219, .1);
}


.MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 5px 5px 20px 5px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(211, 215, 219, .1);
    margin-bottom: 20px;
}

.MultiCarousel .MultiCarousel-inner {
    transition: 1s ease all;
    float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
    float: left;
}

.MultiCarousel .MultiCarousel-inner .item > div {
    margin: 5px;
}

.MultiCarousel .leftLst, .MultiCarousel .rightLst {
    position: absolute;
    border-radius: 50%;
    top: calc(50% - 85px);
}

.MultiCarousel .leftLst {
    left: 0;
    background: #fff;
    color: #000;
    font-weight: bold;
}

.MultiCarousel .rightLst {
    right: 0;
    background: #fff;
    color: #000;
    font-weight: bold;
}

.MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over {
    pointer-events: none;
    background: #fff;
    color: #000;
    font-weight: bold;
}

.category_title {
    margin: 10px 0px 10px 0px;
}

.category_title_span {
    color: #fff;
    font-size: 25px;
    padding: 10px;
    font-weight: bold;
}

._1E5mg, ._1E5mg .qMEiZ {
    position: relative;
    overflow: hidden;
}

._1E5mg {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}

._1E5mg .qMEiZ {
    cursor: pointer;
}

._1E5mg .qMEiZ .N_9fS {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    color: #fff;
}

._2nlZl, ._2xdfB, ._3jWWw, ._35buT {
    opacity: 0;
    transform: scale(.8);
}

._2rWrR {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: fill;
    transition-duration: .3s
}


._2zJlU {
    width: 4rem;
    height: 4rem;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    color: #fff;
    transition: color .2s
}

._2zJlU circle {
    transition: r .2s ease-in-out
}

._2zJlU:hover {
    color: #ff501a
}

.kids-mode ._2zJlU:hover {
    color: #fea534
}

._2zJlU:hover circle {
    r: 28px
}

@media (min-width: 768px) {
    ._2zJlU {
        width: 5rem;
        height: 5rem
    }
}

._1E5mg .qMEiZ .Da6xa {
    width: 100%;
    padding: 71.75% 0;
    background-size: 100% 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid hsla(0, 0%, 100%, .1);
    position: relative;
}

._1E5mg .qMEiZ .Da6xa .FeNml {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%), 0 20px 30px 0 rgb(0 0 0 / 20%);
    background-color: rgba(38, 38, 45, .5);
    transition: opacity .3s, border .3s;
}

._1E5mg ._3b4X9 {
    color: #fff;
    z-index: 1;
    padding: 8px;
}

._8ys0x {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

._8ys0x .JB9zq {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 6px;
}

._8ys0x .JB9zq h3 {
    margin: 0 0 1rem;
    font-weight: 700;
}

._8ys0x .JB9zq h3 .zIZVd {
    display: block;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: .5px;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    transition: color .3s;
}

.ATag:not(.active) {
    opacity: 1;
}

.ATag {
    display: inline-block;
    position: relative;
    transition: opacity .3s;
    color: #ff501a;
    line-height: 1.5;
    cursor: pointer;
}

._8ys0x .JB9zq .faTDN {
    width: 100%;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .5px;
    /*color: hsla(0, 0%, 100%, .5);*/
    color: #fff;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}

._8ys0x .JB9zq .faTDN .cgy7a {
    display: flex;
    margin-bottom: 2px;
}

._1WqYG, ._3BhXb, .yPcUu {
    /*color: hsla(0, 0%, 100%, .5);*/
    color: #fff;
}

.RmVOo {
    border-radius: 0;
    background: none;
    padding: 0;
    text-transform: capitalize;
    /*color: hsla(0, 0%, 100%, .5);*/
    color: #fff;
}

.qEWU6 {
    display: inline-block;
}

div._1fJFV {
    display: inline-block;
    margin-left: 8px;
}

._30bN1 {
    border-radius: 2px;
    background-color: hsla(0, 0%, 100%, .2);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 5px 10px 2px;
    line-height: 12px;
    font-size: 11px;
    white-space: nowrap;
}

._5k7XQ {
    color: #fff;
    margin-left: 8px;
    position: relative;
    bottom: 4px;
}

._1E5mg .qMEiZ._2nGfw .Da6xa {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2), 0 20px 30px 0 rgba(0, 0, 0, .2)
}

._1E5mg .qMEiZ._2nGfw .Da6xa .FeNml {
    opacity: 1
}

._1E5mg .qMEiZ._2nGfw .N_9fS {
    z-index: 1
}

._1E5mg .qMEiZ .N_9fS:hover {
    color: #ff501a;
}

_1FECY, ._3YNUN, .Kz9Fr {
    opacity: 1;
    transform: scale(1)
}

._2-JB4._3T5QT {
    color: #fff;
}

.youmay {
    color: #fff;
}

.calculator-container {
    border: 2px solid #fff;
    border-radius: 4px;
}

.booking-box-body .grand-total1 button {
    color: #ffffff;
    background-color: #07253f;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    margin: 0 0 0 0%;
    font-size: 13px;
}

.booking-box-body .grand-total1 button:hover {
    background: orangered;
    color: #fff;
    border-color: #fff;
}

.nopadding {
    padding: 0px;
}

.booking-box-body .grand-total1 h4 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: orangered;
    margin: 11px 0;
    padding: 0;
    text-transform: capitalize;
    font-size: 14px;
    width: 30%;
    float: left;
}

.booking-box-body .grand-total1 .res-collection-sub {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: orangered;
    margin: 11px -6% 0 0;
    padding: 0;
    text-transform: capitalize;
    font-size: 14px;
    width: 20%;
    float: left;
}

.form-action {
    padding: 5px !important;
    background: #fff;
}

.social-share {
    width: 100%;
    font-size: 22px;
}
.social-share i {
    padding: 4px;
    border-radius: 5px;
    animation: normal;
}
.social-share i:hover{
    background-color: white;
    color: black;
    box-shadow: 0px 4px 4px black;
}

.form-action-a {
    position: absolute;
    text-align: left;
    top: -10px;
    left: -7px;
    z-index: 999999;
    right: -11px;
    bottom: -27px;
}

.social-share {
    position: relative;
}

.at-share-tbx-element .at-icon-wrapper {
    vertical-align: middle;
    height: 25px !important;
    width: 25px !important;
}

.at-icon {

    width: 25px !important;
    height: 25px !important;
}

#at15s .at-icon-wrapper {
    width: 25px !important;
    height: 25px !important;
    vertical-align: middle;
}

.input-group .form-control {
    color: #000;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {

    h3.login_h3 {
        color: #fff;
        font-size: 18px !important;
    }

    a.btn.btn-primary.mv_signin_btn {

        font-size: 16px !important;

        margin-right: 15px !important;

        padding: 10px 15px 10px 15px !important;
    }

    a.btn.btn-primary.mv_signup_btn {

        padding: 10px 15px 10px 15px !important;

        margin-right: 0px !important;

        font-size: 16px !important;
    }

    .Col-20 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .Col-55 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
    }

    .Col-25 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
    }

    .Col-80 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    ._3C4Be ._3KtU0 ._3yigH ._2TykB {
        width: 50%;
        padding-top: 67%;
        background-position-x: 50%;
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
        float: left;
    }

    ._3C4Be ._3KtU0 ._3yigH ._1pkfZ {
        margin-top: 0px;
        float: left;
        width: 50%;
        margin-bottom: 11px;
    }

    ._12zMM .qpSdT {
        display: flex;
        margin-top: 0px;
        position: relative;
        width: 100%;
    }

    ._12zMM .qpSdT ._1FBAg {
        margin-right: 0px;
        flex-grow: 1;
        width: 100%;
    }

    .form-action {
        padding: 5px !important;
        background: #fff;
        float: left;
        width: 50%;

    }

    .Col {

        padding-bottom: 25px;
    }

    .empty_div {
        display: none;
    }

    .qEWU6 {
        display: none;
    }


}

@media (min-width: 768px) and (max-width: 991px) {
    #header {
        display: none !important;
    }

    /* .MovieInfoContainerDiv {
        display: none;
    } */

    .moovana_footer {
        display: none;
    }
}
/* @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

    .columns-container.MoviePlayredContainerDiv {
        padding-top: 75px;
    }

    .MoviePlayredContainerDiv .container.nopadding {
        padding: 0px 0px 0px 15px;
    }

    .MovieInfoContainerDiv .container.nopadding {
        padding: 0px 8px 0px 8px;
    }
} */

/* Container setup */
.movie-item {
    position: relative;
    overflow: hidden;
    display: block;
    color: #fff;
}

/* Image zoom on hover */
.movie-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.movie-item:hover img {
    transform: scale(1.05);
}

/* Gradient overlay hidden by default */
.movie-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.movie-item:hover::before {
    opacity: 1;
}

.movie-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 15px;
}

.movie-item-title{
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.movie-item:hover .movie-item-title{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.movie-item:hover .movie-infos{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.movie-info {
    margin-bottom: 5px;
    font-size: 14px;
}
.movie-item {
    position: relative;
    display: block;
    overflow: hidden;
}

.movie-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.movie-item:hover .play-icon {
    opacity: 1;
}

.movie-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.movie-item:hover img {
    transform: scale(1.05);
}



.main-wpappers.social-videoplayer {
    background: #5b5b5b;
    border-radius: 0;
    margin: 0 auto 15px;
    padding: 10px;
    width: 1162px
}

.main-wpappers.social-videoplayer>.video-game-show {
    border: 1px solid #ebebeb;
    float: left;
    min-height: 336px;
    overflow: hidden;
    width: calc(100% - 222px)
}

.video-game-show>h2 {
    border: 1px solid red;
    color: red;
    font-size: 16px;
    padding: 10px 11px
}

.main-wpappers.social-videoplayer>.video-game-show .first-forth li {
    border: 1px solid #cbcbcb;
    border-radius: 0;
    color: #000;
    display: inline-block !important;
    height: 177px !important;
    margin: 0 7px 12px;
    overflow: hidden;
    padding: 0;
    width: 23.2% !important
}

.main-wpappers.social-videoplayer>.video-game-show .first-forth li iframe {
    height: 98px;
    width: 100%
}

.main-wpappers.social-videoplayer>.video-game-show .first-forth {
    background: #fff;
    border: 0 solid #999
}

.social-videoplayer>.div-menu .game_video a {
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid #e2e2e2 !important;
    border-radius: 0 !important;
    color: #353535 !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    margin: 0;
    padding: 2px 7px !important;
    text-align: left;
    text-transform: capitalize;
    width: 100% !important
}

.game-left-box>.frame {
    bottom: 0;
    height: 519px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.game-left-box>.frame .mediaplayer>iframe {
    height: 519px;
    width: 100%
}


@media(min-width:320px) and (max-width: 767px){
    .section-header{
        width: 30%;
    }
}


/* new section */
.section.cta {
    /* background-color: #11141a; */
    padding-bottom: 140px;
}
.cta-sponser-ticker-single-wrap{
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    flex: none;
    display: flex;
}
.cta-img-wrap._1{
    position: absolute;
    inset: 73px auto 0% -20px;
    transform: rotate(-15deg);
}

.section.cta {
    /* background-color: #11141a; */
    padding-bottom: 140px;
}

.section.cta.cta-v2 {
    padding-bottom: 137px;
}
.cta-main-wrapper {
    background-image: url("https://cdn.prod.website-files.com/6583dd9a0b79e91fb0e95177/6587dd32f416b9312936cde2_Cta%20Section%20Img.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #ffffff26;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding-top: 77px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    height: 430px;
}

.cta-title-main-wrapper {
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
}

.cta-main-title-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.cta-details {
    text-align: center;
    margin-bottom: 32px;
}

.cta-img-wrap {
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-img-wrap._2 {
    grid-row-gap: 40px;
    flex-direction: row;
    flex: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 0px -20px 0% auto;
    overflow: visible;
    transform: rotate(0deg);
}

.cta-img-wrap._2.v2-cta {
    top: 15px;
    right: 50px;
    transform: rotate(15deg);
}

.cta-img-wrap._1 {
    position: absolute;
    inset: 73px auto 0% -20px;
    transform: rotate(0deg);
}

.cta-single-img {
    flex: none;
}

.cta-img {
    border: 6px solid #fff;
    border-radius: 8px;
    max-width: 87%;
    height: 374px;
    width: 320px;
}

.cta-button-wrapper {
    grid-column-gap: 16px;
    justify-content: center;
    display: flex;
}

.cta-sponser-ticker {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    transform: translate(20px, -120px);
}

.cta-sponser-ticker-sizing {
    grid-row-gap: 40px;
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
}
.cta-img-wrap._2 {
    right: 45px;
}

.cta-img-wrap._1 {
    top: 0px;
    left: 35px;
}
.section.cta,
.section.cta.cta-v2,
.section.faq {
    padding-bottom: 100px;
}
.cta-title{
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui;
    font-size: 32px;
    font-weight: 600;
    line-height: 50px;
}
.cta-sponser-ticker-sizing {
    overflow: hidden;
    height: 500px;
    /* adjust height as needed */
    position: relative;
}

.cta-sponser-ticker-single-wrap {
    display: flex;
    flex-direction: column;
    animation: slide-vertical 10s linear infinite;
}

@keyframes slide-vertical {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-33.33%);
        /* Scroll one full group up */
    }
}

@media(min-width: 320px) and (max-width: 1279px) {
    .cta-sponser-ticker-single-wrap{
        display: none;
    }
}


.get-started-btn{
    color: rgb(255, 255, 255);
    text-align: center;
    background: maroon;
    padding: 5px 10px;
    border-radius: 7px;
    border: 1px solid white;
}
.get-started-btn:hover{
    box-shadow: 0px 0px 30px 5px tomato;
}

.btn:hover{
    text-decoration: none;
}



/* about-us page */
.page-heading-title{
    border-bottom: 2px solid #cd2341;
}

.numlist li {
    list-style: inherit;
    margin: 10px 0px 0px 10px;
}

.mtop10px {
    margin-top: 10px;
}

h2.policy_head {
    height: 80px;
    border-bottom: 1px solid #EAEAEA;
    line-height: 40px;
    position: relative;
    font-size: 24px;
    margin: 0 0 11px;
}

span.policy_head_span {
    border-bottom: 3px solid #F75D00;
    position: absolute;
    bottom: -1px;
    padding: 0;
}

#columns {

    background: #fff;
    border: 5px solid #fff;
    padding: 30px 15px 30px 35px;
    border-radius: 10px;
    color: black;
}

.policy-h li {
    margin-top: 10px;
}
.policy h2 {
    height: auto;
    border: none;
    line-height: normal;
    font-size: 20px;
    margin: 3px 0 6px;
}
.content p {
    font-size: 15px;
    line-height: 24px;
}
.ab_p {
    margin-bottom: 15px;
    margin-top: 15px;
}

.ab_p_head {
    margin-bottom: 10px;
    margin-top: 10px;
}
.privacy {
    margin-left: 14px !important;
}
ul.policy-h.nav-list {
    margin-left: 20px;
}


.form-group label{
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}



.user__menu_card {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  top: 5px;
  right: 30px;
}

.user__menu_img_wrapper {
  float: left;
  margin: 0;
  padding: 0 5px 0 0;
  border-right: 1px dotted #cd2341;
}

.user__avatar {
  float: left;
  height: 49px;
  width: 49px;
  border-width: 3px;
  border-style: solid;
  border-color: rgb(209, 209, 209);
  border-image: initial;
  border-radius: 50%;
  margin: 0px;
}

.user__menu_amples_count {
  font-size: 16px;
  text-align: center;
  padding: 0px;
  font-weight: 600;
}
.user__menu_amples_label {
  font-size: 15px;
  text-align: center;
  padding: 0;
}
.user__menu_wrapper {
  position: relative;
  display: inline-block;
}
@media(min-width: 320px) and (max-width: 767px){
  .user__menu_amples_count{
    font-size: 14px;
    text-align: justify;
  }
  .user__menu_amples_label{
    font-size: 13px;
  }
  .user__avatar{
    width: 49px;
  }
  .user__menu_data_wrapper{
    padding-left: 5px;
  }
  .user__menu_toggle_icon {
    right: 10px;
    top: 40%;
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) and (max-width: 1024px){
  .user__menu_card {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    top: 5px;
  }
  .user__menu_amples_label {
    font-size: 13px;
    padding: 0;
  }
  .user__menu_amples_count {
    font-size: 16px;
    text-align: justify;
    padding: 5px;
    font-weight: 600;
  }
}

.user__menu_data_wrapper{
    width: auto;
    float: left;
    /* margin-top: -9px; */
    margin-left: 5px;
}


.user__menu_toggle_icon {
  position: absolute;
  right: 30px;
  top: 91%;
  transform: translateY(-50%);
}

.user__menu_list {
  position: absolute;
  visibility: hidden;
  left: 0;
  top: 30px;
  transform: translateY(20px) !important;
  list-style: none;
  padding-left: 0;
  width: 100%;
  min-width: 160px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 12px 8px;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
}

.user__menu_card:hover .user__menu_list {
  visibility: visible;
}

.user__menu_list li {
  width: 100%;
  float: left;
  padding: 10px 4px 10px 8px;
  border-bottom: 1px dotted rgb(187, 187, 187);
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  color: #fff !important;
}
.user__menu_list i{
    color: #fff;
}
.user__menu_list li a {
  color: #ffffff !important;
  padding-left: 5px;
}
.user__menu_list a:hover{
    text-decoration: underline;
}
.user__menu_list .amplevalue_a span {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0px 18px;
}

.user__menu_list .amplevalue_a span:first-child {
  background-color: #031b33;
  color: #fff;
}

.user__menu_list .amplevalue_a span:last-child {
  background-color: #cd2341;
  color: #fff;
}

.navbar-toggler{
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  width: 2em;
  height: 2em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F75B10' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Responsive fix */
@media (max-width: 991px) {
  .user__menu_list {
    right: 0;
    left: auto;
    width: 220px;
  }
}

@media (max-width: 768px) {
  .navbar__item{
    border-right: none !important;
    padding: 0 !important;
  }
  .navbar__item a{
    text-align: left !important;
  }
  .navbar__dropdown{
    left: 5vw;
    z-index: 99;
  }
  .navbar__dropdown_item{
    color: white;
    width: 80vw;
    background-color: rgba(0, 0, 0, 0.95);
  }
  .navbar__item .navbar__dropdown_item{
    text-align: center !important;
  }
}

.user__menu_data_wrapper h1{
    margin: 0;
}

/*----- search input -----*/

.right-search-box {
    position: fixed;
    top: 60px;
    right: 12px;
    width: 0;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
    padding: 0;
    z-index: 99999;
}

.right-search-box.open {
    width: 300px;
    padding: 5px 15px;
}
