*{
    font-family: "Nunito", sans-serif;
}
:root{
    --primary-color: #FFA500;
}
body.auth-page{
    margin:0;
    min-height: 100vh;
    background: #F8F9FE;
    border: none;
}
.auth-page-inner{
    padding-top: 50px;
    padding-bottom: 50px;
}
body.auth-page .auth-card{
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-radius: 0.5em;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Quicksand", sans-serif;
    color: #02024f;
}

/* utils */
.center-xy, .center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}
.center-screen {
    min-height: 100vh;
}
.a-no-dec{
    text-decoration: none;
}

.breadcrumb{
    background: transparent;
    margin: 0;
}
.breadcrumb .breadcrumb-item::before {
  content: "-";
}
.breadcrumb .breadcrumb-item:first-of-type::before{
    content: none;
}

.shadow1{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05)!important;
}

.bg-1{
    background: var(--primary-color)!important;
}

.dropdown-menu{
    border: 1px solid #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}
.dropdown-menu .dropdown-item i{
    color: #9aa0ac;
    margin-right: 5px;
    font-size: 16px;
}

#fixed-bottom-overlay{
    position: fixed;
    bottom: 30px;
    right: 0.75rem;
    z-index: 999;
}

.summary-block{
    padding: 10px;
    border-radius: 3px;
    display: block;
    background: #fbfcfc;
}

/* Modals */
.modal.custom .modal-content{
    border-radius: 0.5em;
    border: none;
}
.modal h6.title{
    font-size: 1em;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

/* forms */
label{
    font-weight: 600;
    font-size: 0.9em;
}
input::placeholder{
    font-size: 13px;
}
input.form-control, select.form-select{
    height: 40px;
}
input.form-control, select.form-select, textarea.form-control{
    font-size: 0.9em;
    border-radius: 0.5em;
    box-shadow: none;
}
input.form-control:focus, textarea.form-control:focus, select.form-select:focus {
    border: solid 1px var(--primary-color);
    box-shadow: none;
}
input.form-control:hover, select.form-select:hover, textarea.form-control:hover{
    border: solid 1px var(--primary-color);
    box-shadow: none;
}
select.form-select:hover{
    cursor: pointer;
}

/* ---------------------------------- */
/* Input group
------------------------------------- */
.input-group.custom .input-group-text{
    border-radius: 0.5em;
    background: var(--primary-color);
    border: solid 0.1em var(--primary-color);
    color: #fff;
}
.input-group.custom input.form-control{
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


/* bootstrap select */
.bootstrap-select .btn.dropdown-toggle{
    border: 1px solid #ced4da;
    background: #fff;
    font-size: 14px;
    color: #6C757D;
    border-radius: 3px;
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
}
.bootstrap-select .btn.dropdown-toggle:focus, .bootstrap-select .btn.dropdown-toggle:hover{
    border: 1px solid #fc83bb;
}
.bootstrap-select a.dropdown-item{
    font-size: 14px;
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    color: #fc83bb;
}

.bootstrap-select .btn.dropdown-toggle[data-id=sms-type-filter], .filter-btn{
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
}
.bootstrap-select .dropdown-item.active, .dropdown-item:active {
    background-color: #a445b2;
}

.filter-btn i{
    vertical-align: -2px;
}

/*
Buttons and links
 */
.button {
    color: #fff;
    background: var(--primary-color);
    top: 0;
    padding: 10px 20px;
    line-height: 24px;
    text-decoration: none;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5em;
    border: none;
}

.button:hover {
    color: #fff;
}

/*
Buttons
 */
.btn{
    border-radius: 0.5em;
    font-family: "Quicksand", sans-serif;
}
.btn.btn-primary{
    background: var(--primary-color)!important;
    border: 1px solid var(--primary-color);
    box-shadow: none;
}
.btn.btn-primary:focus{
    box-shadow: none;
}

/* fonts */
.fs-4 {
  font-size: 2.0736rem !important;
}
.fs-md-5 {
    font-size: 2.48832rem !important;
}
.fs-xl-6 {
    font-size: 2.98598rem !important;
}
.fs-12{
    font-size: 12px;
}
.fs-14{
    font-size: 14px;
}
.fs-16{
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22{
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-26 {
    font-size: 26px;
}
.fs-40{
    font-size: 40px;
}

.fw-700{
    font-weight: 700;
}
.fw-600{
    font-weight: 600;
}
.fw-500{
    font-weight: 500;
}

/* Customize bootstrap card */
/* Customize bootstrap card */
.card.custom1{
    box-shadow: none;
    border: none;
    border-radius: 0.5em;
    overflow: hidden
}
.card.custom1 .card-header{
    border: none;
}
.card.custom1 .card-header h5{
    color: #fff;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Quicksand", sans-serif;
    font-size: 1em;
}


.card.custom2{
    border: none;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    border-radius: 10px;
}
.card.custom2 .more{
    text-decoration: none;
    color: #8884b1;
}
.card.custom2 h5{
    font-size: 18px;
}
.card.custom2 p{
    color: #8884b1;
}
.card.custom2 .icon-center-wrap{
    border-radius: 50%;
    box-shadow: none;
    width: 45px;
    height: 45px;
}
.card.custom2 .icon-center-wrap .icon{
    font-size: 16px;
}
.card.custom2.item1 .icon-center-wrap{
    background: #FEF3F1;
}
.card.custom2.item1 .icon-center-wrap .icon{
    color: #FD8A75;
}

.card.custom2.item2 .icon-center-wrap{
    background: #FCF6DE;
}
.card.custom2.item2 .icon-center-wrap .icon{
    color: #EAC52E;
}

.card.custom2.item3 .icon-center-wrap{
    background: #E1F4F8;
}
.card.custom2.item3 .icon-center-wrap .icon{
    color: #42B8D4;
}
.card.custom2.item4 .icon-center-wrap{
    background: #E1F8F2;
}
.card.custom2.item4 .icon-center-wrap .icon{
    color: #43D5B0;
}

.card.custom3{
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    border-radius: 10px;
}
.card.custom3 .info{
    background: #e8e7ee; padding: 10px; border-radius: 2px
}
/*************************
Dashboard
 *************************/

/* dashboard sidebar */
#dashboard-sidebar{
    height: 100vh; width: 250px; background: #F9F9F9;
    position: fixed; float: left;
    left: -250px;
    z-index: 20;
    transition: left .3s linear;
    border-right: 1px solid #ECEFF8;
}
#dashboard-sidebar.shown {
    left: 0;
}
.dashboard-sidebar-toggle{
    display: none;
}
#dashboard-sidebar-overlay{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: 15;
    display: none;
}
#dashboard-sidebar-overlay a{
    top: 5px; right: 5px; color: #fff; position: fixed;
    text-decoration: none;
}
#dashboard-sidebar-overlay a i{
    font-size: 30px;
}
#dashboard-sidebar-main{
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 50px;
}
/* width */
#dashboard-sidebar-main::-webkit-scrollbar {
    width: 3px;
}

/* Track */
#dashboard-sidebar-main::-webkit-scrollbar-track {
    border-radius: 0;
}

/* Handle */
#dashboard-sidebar-main::-webkit-scrollbar-thumb {
    background: #7f7f7f;
    border-radius: 0;
}
#dashboard-wrapper{
    padding-left: 250px;
}

/* dashboard header */
#dashboard-header{
    position: fixed; top: 0;
    left: 0;
    width: 100%;
    padding-left: 250px;
    background: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: padding-top .4s linear, padding-bottom .4s linear;
    z-index: 10;
}
#dashboard-header .nav .nav-link{
    padding-right: 0;
}
#dashboard-header .nav{
    padding: 0!important;
}

#dashboard-header-search{
    border: none;
    font-size: 14px;
}
#dashboard-header-search:focus{
    box-shadow: none;
    outline: none;
}
#dashboard-header-search-text {
    background: #fff;
    border: none;
    padding-left: 0;
    padding-right: 0;
}
#dashboard-header-sm-search{
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    background: transparent;
    color: #fff;
}
#dashboard-header-sm-search::placeholder{
    color: #fff;
}
#dashboard-header-sm-search:focus{
    box-shadow: none;
    outline: none;
}
#dashboard-header-sm-search-text {
    background: transparent;
    border: none;
    padding-left: 0;
    padding-right: 0;
    color: #fff;
}

#dashboard-header #nav-sm .dashboard-sidebar-toggle{
    color: #02024f;
    text-decoration: none;
}
#dashboard-header #nav-sm .dashboard-sidebar-toggle i{
    font-size: 25px;
}

#dashboard-header #nav-sm .top-block{
    background: #F9F9F9;
    padding: 10px 0;
    border-bottom: 1px solid #ECEFF8;
}
#dashboard-header #nav-sm .top-block .brand{
    font-size: 24px;
    color: #02024f;
}
#dashboard-header #nav-sm .top-block .pkg-info, #dashboard-header #nav-sm .top-block .user-name{
    color: #02024f;
}

#dashboard-header #nav-sm .bottom-block{
    background: #f7f9fa;
    margin-top: 10px;
    padding: 10px 0;
}
#dashboard-header #nav-sm .bottom-block a{
    text-decoration: none;
    color: #333;
}
#dashboard-header #nav-sm .bottom-block a i{
    font-size: 18px;
}

/* dashboard footer */
#dashboard-footer{
    background: #fff;
    font-size: 14px;
    padding: 20px 0;
}
#dashboard-footer .copyright p {
    color: #202647;
}

@media (max-width: 768px) {
  #dashboard-footer .copyright, #dashboard-footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
#dashboard-footer ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    text-align: right;
}
#dashboard-footer ul li:first-child {
    margin-left: 0;
}
#dashboard-footer ul li {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
}
#dashboard-footer ul li::before {
    content: '';
    position: absolute;
    top: 5px;
    right: -12px;
    width: 1px;
    height: 12px;
    background-color: #3c62e9;
}
#dashboard-footer ul li:last-of-type::before {
    display: none;
}

@media only screen and (max-width: 992px) {
    #dashboard-sidebar {
        width: 70vw;
        left: -70vw;
    }
    .dashboard-sidebar-toggle{
        display: block;
    }
    #dashboard-wrapper{
        padding-left: 0;
    }
    #dashboard-header {
        padding: 0;
    }
    #dashboard-main-content .dashboard-inner{
        padding-top: 50px;
    }
}
@media only screen and (min-width: 992px) {
    #dashboard-sidebar-main{
        overflow-y: hidden;
    }
    #dashboard-sidebar-main:hover{
        overflow-y: auto;
    }
}
#dashboard-sidebar-main .panel-dark{
    padding: 30px 20px;
    background-color: #383a45;
    background-image: linear-gradient(135deg, #4f5261 0%, #383a45 50%);
}
#dashboard-sidebar .brand {
    margin: 15px 0;
    font-weight: 700;
    font-size: 25px;
}
#dashboard-sidebar .logo {
    width: 80px;
}
#dashboard-sidebar .panel-dark .user{
    margin-bottom: -100px;
}
#dashboard-sidebar .panel-light{
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
    border-right: 1px solid #dbe6e8;
}
#dashboard-sidebar .panel-light .link{
    margin-bottom: 20px;
    background: rgba(120, 84, 247, 0.08);
    box-shadow: 0 2px 15px rgba(120, 84, 247, 0.05);
    border-radius: 5px;
    padding: 10px;
}
#dashboard-sidebar .panel-light .link p{
    margin-bottom: 0;
}
#dashboard-sidebar .panel-light .link a{
    color: #838DB1;
    text-decoration: none;
    font-size: 14px;
}
#dashboard-sidebar .panel-light .link a i{
    font-size: 20px;
}
#dashboard-sidebar .panel-light .link:hover, #dashboard-sidebar .panel-light .link.active {
    background: rgb(120, 84, 247);
    box-shadow: 0 2px 15px rgba(120, 84, 247, 0.5);
    color: #fff;
}
#dashboard-sidebar .panel-light .link:hover a, #dashboard-sidebar .panel-light .link.active a{
    color: #fff;
}
.line-separator {
    width: 100%; height: 1px; background: #e3e8ea; display: inline-block;
    line-height: 8px;
}

#dashboard-main-content{
    background: #F8F9FE;
}

.nav-container .navigation-main{
    padding-top: 2rem;
}
.nav-container .navigation-main .nv-item{
    margin-bottom: 20px;
    text-align: center;
}
.nav-container .navigation-main .nv-item a{
    text-decoration: none;
}
.nav-container .navigation-main .nv-item p{
    margin-bottom: 0;
    font-size: 12px;
    margin-top: 10px;
    color: #7986A6;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
}
.nav-container .navigation-main .nv-item:hover .icon-center-wrap.wrap7, .nav-container .navigation-main .nv-item.active .icon-center-wrap.wrap7{
    background: #5439FF;
    border: 1px solid #5439FF;
}
.nav-container .navigation-main .nv-item:hover .icon-center-wrap.wrap7 img, .nav-container .navigation-main .nv-item.active .icon-center-wrap.wrap7 img{
    filter: brightness(0) invert(1);
}
.nav-container .navigation-main .nv-item:hover p, .nav-container .navigation-main .nv-item.active p{
    color: #5439FF;
}
.nav-container .navigation-main .hr-line {
    width: 100%;
    border-top: 1px solid #ECEFF8;
}


.nav-container .navigation-main .nav-item {
    position: relative; }
.nav-container .navigation-main .nav-item a {
    display: block; overflow: hidden; padding: 15px 5px; margin-left: 15px;
    margin-right: 15px; color: #545454; position: relative;
    text-decoration: none;
}
.nav-container .navigation-main .nav-item a i {
    font-size: 20px; margin-right: 10px; display: inline-block; vertical-align: -4px;
}
.nav-container .navigation-main .nav-item a img {
    margin-right: 10px; display: inline-block; width: 20px;
}
.nav-container .navigation-main .nav-item a span {
    font-size: 13px; }
.nav-container .navigation-main .nav-item a .badge {
    position: absolute; right: 30px; text-align: center; top: 16px; vertical-align: middle;
    white-space: nowrap; opacity: 1; visibility: visible; border-radius: 4px; font-size: 75%;
    padding: 4px 7px; margin-right: 5px; font-weight: 800; color: #fff;
    -webkit-transition: opacity 0.3s linear; transition: opacity 0.3s linear; text-transform: uppercase;
}
.nav-container .navigation-main .nav-item a.disabled {
    opacity: 0.5; cursor: not-allowed !important;
}
.nav-container .navigation-main .nav-item.has-sub a::before {
    content: "\e844"; font-family: "iconkit"; position: absolute; right: 3px; top: 15px;
    -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); transform: rotate(0deg);
    -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content {
    background-color: #F5F6FB;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .menu-item {
    padding: 10px 5px; font-size: 13px; padding-left: 50px; margin: 0;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .menu-item::before {
    display: none;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .menu-item.active {
    color: var(--primary-color);
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .nav-item::after {
    display: none;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .nav-item a {
    position: relative;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .nav-item a::before {
    content: "\e844"; font-family: "iconkit"; position: absolute; right: 20px; top: 10px;
    display: inline-block; -moz-transform: rotate(0deg); -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg);
    -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .nav-item .submenu-content .menu-item {
    padding-left: 70px;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .nav-item .submenu-content .menu-item::before {
    display: none;
}
.nav-container .navigation-main .nav-item.has-sub .submenu-content .nav-item.open a::before {
    -moz-transform: rotate(90deg); -o-transform: rotate(90deg); -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg); transform: rotate(90deg);
}
.nav-container .navigation-main .nav-item:not(.open) .submenu-content {
    display: none;
}
.nav-container .navigation-main .nav-item.open a::before {
    -moz-transform: rotate(90deg); -o-transform: rotate(90deg); -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg); transform: rotate(90deg);
}
.nav-container .navigation-main .nav-item.open::after {
    background: var(--primary-color); border-radius: 10px; color: #fff; content: " "; height: 30px; left: 0;
    position: absolute; top: 10px; width: 3px;
}
.nav-container .navigation-main .nav-item.active::after {
    background: var(--primary-color); border-radius: 10px; color: #fff; content: " ";
    height: 30px; left: 0; top: 10px; position: absolute; width: 3px;
}
.nav-container .navigation-main .nav-level {
    font-size: 14px; font-weight: 700;
    padding: 8px 20px;
    text-transform: uppercase; width: 100%; color: #02024f;
    font-family: "Quicksand", sans-serif;
    border-top: 1px solid #F5F6FB;
}


.sidebar-header {
    padding: 13px 15px; height: 60px;
    text-align: center;
}
.sidebar-header .header-brand {
    display: block; font-size: 25px;
    font-weight: 700; color: #02024f;
    font-family: "Quicksand", sans-serif;
    text-transform: uppercase;
}

.sidebar-head {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex;
    display: flex; -webkit-align-items: center; -moz-align-items: center;
    -ms-align-items: center; align-items: center; -webkit-justify-content: space-between;
    -moz-justify-content: space-between; -ms-justify-content: space-between;
    justify-content: space-between; -ms-flex-pack: space-between; padding: 13px 15px; height: 60px;
}
.sidebar-head .header-brand {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #02024f;
    font-family: "Quicksand", sans-serif;
}



.icon-center-wrap{
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #fff;
    background: transparent;
    position: relative;
    box-shadow: 0 8px 28px rgba(120, 84, 247, 0.2);
    }
    .icon-center-wrap .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    }
    .icon-center-wrap img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 20px;
    }
    .icon-center-wrap.wrap2{
        width: 70px;
        height: 70px;
        background: #7854F7;
        box-shadow: 0 8px 28px rgba(120, 84, 247, 0.2);
        border-radius: 8px;
        border: 1px solid #7854F7;
    }
    .icon-center-wrap.wrap2 .icon {
        font-size: 20px;
    }
    .icon-center-wrap.wrap3{
        width: 50px;
        height: 50px;
        background: #fff;
        box-shadow: 0 8px 28px rgba(120, 84, 247, 0.2);
        border-radius: 8px;
        border: 1px solid #7854F7;
    }
    .icon-center-wrap.wrap3 .icon {
        font-size: 20px;
        color: #7854F7;
    }
    .icon-center-wrap.wrap4{
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #fa4299 0%, #a445b2 100%);
        box-shadow: 0 4px 12px rgba(250, 66, 153, 0.15);
        border-radius: 50%;
        border: none;
        color: #fff;
        cursor: pointer;
    }
    .icon-center-wrap.wrap4:hover{
        background: linear-gradient(180deg, #fa4299 0%, #a445b2 100%);
    }
    .icon-center-wrap.wrap4 .icon {
        font-size: 20px;
    }

    .icon-center-wrap.wrap5{
        width: 35px;
        height: 35px;
        background: #fff;
        box-shadow: none;
        border-radius: 50%;
        border: 1px solid #fff;
        color: #333;
        cursor: pointer;
    }
    .icon-center-wrap.wrap5 .icon{
        color: #c1b9b9;
        font-size: 20px;
    }

    .icon-center-wrap.wrap6{
        border-radius: 50%;
        width: 80px;
        height: 80px;
        box-shadow: none;
        background: #f0f4fc;
    }
    .icon-center-wrap.wrap6 img{
        width: 40px;
    }
    .icon-center-wrap.wrap6:hover{
        background: #4457dc;
    }
    .icon-center-wrap.wrap6:hover img{
        filter: brightness(0) invert(1);
    }

    .icon-center-wrap.wrap7{
        background: #ECEFF8;
        border: 1px solid #ECEFF8;
        box-shadow: none;
        width: 50px;
        height: 50px;
    }
    .icon-center-wrap.wrap7 img{
        width: 20px;
    }

    .icon-center-wrap.wrap8{
        border-radius: 10px;
        width: 80px;
        height: 80px;
        box-shadow: none;
        background: #FF444F;
        border: 1px solid #FF444F;
    }
    .icon-center-wrap.wrap8 .icon{
        color: #fff;
        font-size: 30px;
    }

/* ---------------------------------- */
/* Tables
------------------------------------- */
table.basic-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: none;
	margin-bottom: 20px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
}

table.basic-table th {
	text-align: left;
	color: #fff;
	vertical-align: top;
	font-weight: 700;
}

table.basic-table th:first-child { border-radius: 4px 0 0 4px; }
table.basic-table th:last-child { border-radius: 0 4px 4px 0; }


table.basic-table th,
table.basic-table td {
	padding: 15px 28px;
}

table.basic-table tr:nth-child(odd) {
	background-color: #F5F6FB;
}

table.basic-table td:hover {
    cursor: pointer;
}

table.basic-table { margin-bottom: 0; }


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

	table { border: 0; }
	table th { display: none; }

	table tr {
		display: block;
		margin-bottom: 0;
        border-bottom: #F5F6FB 1px solid;
	}
	table td {
		border-bottom: 1px solid #F5F6FB;
		display: block;
		font-size: 14px;
		text-align: right;
	}

	table td:before {
		content: attr(data-label);
		float: left;
		font-weight: 600;
	}

	table tr:last-child, table tr:first-child { border-bottom: 0; }
}


/*user*/
.user{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: none;
    margin-bottom: 20px;
    position: relative; overflow: hidden;
}
.user .is-activated{
    color: #16df7e;
    cursor: pointer;
}
.user .activated-badge {
    color: #fff; margin-bottom: 0; display: inline-block;
    padding: 60px 50px 20px 20px; border-radius: 50%; position: absolute;
    top: -45px; right: -35px; transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 7px 0 rgba(62, 57, 107, 0.18);
    background: #0ACE8F;
    cursor: pointer;
}
.user:hover .activated-badge { padding: 65px 55px 30px 30px; text-shadow: 0 3px 5px rgba(62, 57, 107, 0.5); box-shadow: 0 4px 4px 0 rgba(62, 57, 107, 0.3); }

.user img{
    width: 70px;
    border-radius: 50%;
}
.user .name{
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}
.user .membership{
    font-size: 12px;
    margin: 0 0 15px 0;
    color: #9e9c9c;
}
.user .stats{
    border-top: 1px solid #d2d9de;
    padding: 15px 0;
}
.user .stats h5{
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}
.user .stats p{
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    color: #9e9c9c;
}

.user .star-rating .star.half:after,
.user .star-rating .star:before {
	font-size: 18px;
}
.user .rating-block .rating-value {
	font-size: 12px;
	font-weight: 500;
	margin-right: 10px;
    font-family: "Nunito", sans-serif;
}

/*
Users list
 */
.users-list .usr{
    border: none;
    margin-bottom: 1em;
}
.users-list .usr img{
    width: 40%;
    border-radius: 0.5em;
}
.users-list .usr .name{
    font-family: "Quicksand", sans-serif;
    color: #02024f;
    font-size: 1em;
    font-weight: 600;
    margin-top: 0.5em;
    margin-bottom: 0;
}
.users-list .usr .is-activated{
    color: #16df7e;
    cursor: pointer;
}
.users-list .usr .date-joined{
    font-size: 0.8em;
    color: #9e9c9c;
    margin-bottom: 1em;
    margin-top: 1em;
}
.users-list .usr .ref-info{
    background: #F8F9FE;
    padding: 0.5em;
    border-radius: 0.5em;
    margin-bottom: 1em;
}
.users-list .usr .ref-info .col{
    border-right: 0.1em solid #e0e0e0;
}
.users-list .usr .ref-info .col:last-of-type{
    border-right: none;
}
.users-list .usr .ref-info h6{
    font-weight: 600;
    font-size: 0.75em;
    font-family: "Quicksand", sans-serif;
    color: var(--primary-color);
}
.users-list .usr .ref-info p{
    margin: 0;
    font-size: 0.8em;
}
.users-list .usr .btn{
    box-shadow: none;
    font-family: "Quicksand", sans-serif;
    border-radius: 0.5em;
    font-size: 0.8em;
}
.users-list .usr .btn.activated{
    color: var(--primary-color);
    background: #EFEDFA;
}


/*Spin page*/
.spin-page .header{
    z-index: 4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
#spin-wheel-container{
    position: relative;
    margin-top: 5rem;
}
#spin-categories-nav-btns-wrapper{
    margin-bottom: 10rem;
}
#spin-wheel-container #wheel-canvas{
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(212, 127, 111, 0.8);
    border: 2px solid #c27162;
    background: #4c1a13 linear-gradient(120deg, #4c1a13 0%, #6f2a22 50%);
}
#spin-wheel-container .prize-pointer {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 48px;
}
#spin-wheel-container .spin-center{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70px;
}
.spin-bal-wrap{
    border: 2px solid #F2DF5A;
    padding: 10px 10px;
    border-radius: 5px 5px 20px 20px;
    background: #370443;
}
.spin-bal-wrap .top-up-btn{
    padding: 3px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: #F2DF5A!important;
    color: #66173d;
    font-weight: 600;
    -webkit-box-shadow:0 0 15px 4px rgba(242,224,90,0.8);
    -moz-box-shadow: 0 0 15px 4px rgba(242,224,90,0.8);
    box-shadow: 0 0 15px 4px rgba(242,224,90,0.8);
}
.spin-bal-wrap .spin-bal{
    color: #F2DF5A;
    font-weight: 700;
}
.spin-top-btn{
    border: 2px solid #F2DF5A;
    padding: 10px 10px;
    border-radius: 20px 5px 5px 5px;
    background: #5B201A;
    color: #F2DF5A;
    font-weight: 700;
    cursor: pointer;
}
.spin-top-btn.right{

}
.spin-top-btn.left{
    border-radius: 5px 20px 5px 5px;
}

.spin-top-btn i{
    vertical-align: -2px;
}

.spin-page .spin-categories-carousel .btn{
    background: #370443!important;
    border: 2px solid #F2DF5A;
    color: #F2DF5A;
    border-radius: 10px;
    font-weight: 700;
}
.spin-bal-wrap .spin-categories-carousel .btn:focus, .spin-page .spin-categories-carousel .btn:hover{
    outline: none;
    box-shadow: none;
    border: 2px solid #F2DF5A;
    border-radius: 10px;
    color: #F2DF5A;
    background: #370443!important;
}
.spin-page .spin-categories-carousel .btn.active{
    background: #F2DF5A!important;
    color: #66173d;
    border: 2px solid #F2DF5A;
}
.spin-categories-carousel .owl-dots{
    display: none;
}
.spin-categories-carousel-nav-btn{
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid #F2DF5A;
    background: #5B201A;
    color: #F2DF5A;
    position: relative;
    box-shadow: 0 8px 28px rgba(242, 223, 90, 0.2);
    cursor: pointer;
}
.spin-categories-carousel-nav-btn i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
}
.spin-type, .spin-min-win{
    color: #F2DF5A;
}

.spin-page .footer{
    z-index: 4;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
}

.spin-page .footer .spin-bal-wrap{
    border-radius: 20px 20px 5px 5px;
}

.spin-page a.custom{
    border: 2px solid #F2DF5A;
    padding: 8px 25px;
    border-radius: 10px;
    background: #5B201A;
    color: #F2DF5A;
    font-weight: 700;
    text-decoration: none;
}
.modal.spin-page .modal-content{
    border: 2px solid #F2DF5A;
    background: #370443;
    border-radius: 10px;
}
.modal.spin-page .title{
    font-weight: 700;
}
.spin-page .primary-color{
    color: #F2DF5A!important;
}
/*.spin-page .btn-primary, .spin-page .btn-primary:hover{*/
/*    background: #F2DF5A!important;*/
/*    color: #66173d;*/
/*    border: 2px solid #F2DF5A;*/
/*    border-radius: 10px;*/
/*    font-weight: 600;*/
/*}*/
/*.spin-page .btn-primary:focus{*/
/*    box-shadow: none;*/
/*}*/

/* spin page form controls */
/*.spin-page input::placeholder{*/
/*    font-size: 13px;*/
/*    color: #fff!important;*/
/*}*/
/*.spin-page label{*/
/*    color: #F2DF5A;*/
/*}*/
/*.spin-page input.form-control, .spin-page select.form-select{*/
/*    height: 45px;*/
/*    background: transparent;*/
/*    color: #F2DF5A;*/
/*}*/
/*.spin-page input.form-control[readonly] {*/
/*    background: transparent;*/
/*}*/
/*.spin-page select.form-select option{*/
/*    color: black;*/
/*}*/
/*.spin-page input.form-control, .spin-page textarea.form-control, .spin-page select.form-select {*/
/*    box-shadow: none;*/
/*    border-radius: 6px;*/
/*    border: 1px solid #F2DF5A;*/
/*    color: #F2DF5A!important;*/
/*}*/
/*.spin-page input.form-control:focus, .spin-page textarea.form-control:focus, .spin-page select.form-select:focus {*/
/*    border: 1px solid #F2DF5A;*/
/*    box-shadow: none;*/
/*    background: transparent;*/
/*}*/
/*.spin-page input.form-control:hover, .spin-page select.form-select:hover {*/
/*    border: 1px solid #F2DF5A;*/
/*    box-shadow: none;*/
/*}*/
/*.spin-page select.form-select:hover{*/
/*    cursor: pointer;*/
/*}*/


 .bubbly-button {
	 display: inline-block;
	 font-size: 18px;
	 padding: 8px 30px;
	 -webkit-appearance: none;
	 appearance: none;
	 background-color: #FFEB00;
	 color: #66173d;
	 border-radius: 10px;
	 border: none;
	 cursor: pointer;
	 position: relative;
	 transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
	 box-shadow: 0 2px 25px rgba(255, 235, 0, 0.5);
     font-weight: 700;
}
 .bubbly-button:focus {
	 outline: 0;
}
 .bubbly-button:before, .bubbly-button:after {
	 position: absolute;
	 content: '';
	 display: block;
	 width: 140%;
	 height: 100%;
	 left: -20%;
	 z-index: -1000;
	 transition: all ease-in-out 0.5s;
	 background-repeat: no-repeat;
}
 .bubbly-button:before {
	 display: none;
	 top: -75%;
	 background-image: radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, transparent 20%, #FFEB00 20%, transparent 30%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, transparent 10%, #FFEB00 15%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%);
	 background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
 .bubbly-button:after {
	 display: none;
	 bottom: -75%;
	 background-image: radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, transparent 10%, #FFEB00 15%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%);
	 background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
 .bubbly-button:active {
	 transform: scale(0.9);
	 background-color: #FFEB00;
	 box-shadow: 0 2px 25px rgba(255, 235, 0, 0.2);
}
 .bubbly-button.animate:before {
	 display: block;
	 animation: topBubbles ease-in-out 0.75s forwards;
}
 .bubbly-button.animate:after {
	 display: block;
	 animation: bottomBubbles ease-in-out 0.75s forwards;
}
 @keyframes topBubbles {
	 0% {
		 background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
	}
	 50% {
		 background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
	}
	 100% {
		 background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
		 background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
	}
}
 @keyframes bottomBubbles {
	 0% {
		 background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
	}
	 50% {
		 background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
	}
	 100% {
		 background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
		 background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
	}
}

 /*
Wallet activities
 */
.w-activities .activity {
    border-top: 1px solid #726d61;
    padding-top: 10px;
    padding-bottom: 10px;
}
.w-activities .activity:last-of-type{
    padding-bottom: 0;
}

/* pagination */
.spin-page .paginate a{
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid #F2DF5A;
    background: #5B201A;
    color: #F2DF5A;
    position: relative;
    box-shadow: 0 8px 28px rgba(242, 223, 90, 0.2);
    text-decoration: none;
}
.spin-page .paginate a i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
}

/* Attention */
.sp-win-popup{
    width: 250px; border-radius: 5px;
    overflow: hidden;
    position: fixed;
    top: 30px;
    right: -250px;
    z-index: 999;
    transition: right .3s linear;
    border: 2px solid #F2DF5A;
    background: #370443;
}
.sp-win-popup.shown{
    box-shadow: 0 4px 12px rgba(88, 70, 249, 0.5);
    right: 0.75rem;
}
.sp-win-popup .user-pic img{
    width: 30px;
}
@media only screen and (max-width: 767px) {
	.sp-win-popup{
        width: 80vw;
        right: -80vw;
    }
}

/* ---------------------------------- */
/* Radio Button
------------------------------------- */

.radio {
	display: inline-block;
	vertical-align: top;
}

.radio label {
	margin: 3px 0;
	cursor: pointer;
	position: relative;
	padding-left: 29px;
	line-height: 25px;
}

.radio input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.radio input[type="radio"] + label .radio-label {
	content: '';
	background: #fff;
	border-radius: 100%;
	border: 2px solid #b4b4b4;
	display: inline-block;
	width: 18px;
	height: 18px;
	position: relative;
	margin-right: 5px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
	background-color: #fff;
	box-shadow: inset 0 0 0 8px #fff;
	z-index: 100;
	position: absolute;
	top: 2px;
	left: 0;
}

.radio input[type="radio"] + label .radio-label:after {
	background-color: #66676b;
	content: "";
	top: 3px;
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
	opacity: 1;
	transition: 0.3s;
	border-radius: 50%;
	transform: scale(0);
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.radio input[type="radio"]:checked + label .radio-label {
	background-color: #5439FF;
	border-color: #5439FF;
	box-shadow: inset 0 0 0 3px #fff;
}

.radio-label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	background-color: transparent;
	display: block
}

.interactive-effect label .radio-label:before {
	animation: radius-shadow 0.4s;
}

@keyframes radius-shadow {
  0% { box-shadow: 0 0 0 0 rgba(102,103,107,0.4); }
  100% { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
}

.small-label {
	border-radius: 4px;
	display: inline-block;
	background: #e0f5d7;
	color: #449626;
	padding: 0 8px;
	line-height: 27px;
	height: 26px;
	margin-left: 5px;
	position: relative;
	top: -1px;
}


/* ---------------------------------- */
/* Checkbox
------------------------------------- */
.checkbox {
	display: inline-block;
	margin-bottom: 0;
}

.checkbox input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.checkbox label {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
	line-height: 25px;
}

.checkbox label span.checkbox-icon {
	content:'';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #b4b4b4;
	height: 20px;
	width: 20px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
	border-radius: 4px;
	transition: 0.3s;
	position: absolute;
	left: 0;
	top: 1px;
}

.checkbox input + label span.checkbox-icon:after {
	position: absolute;
	top: 2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity: 0;
	content: '';
	display: block;
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: scale(0.5) rotate(45deg);
	transition: all 0.35s cubic-bezier(0.3,-.41,.19,2), opacity 0.3s;
}

.checkbox input:checked + label span.checkbox-icon {
	border-color: #5439FF;
	background-color: #5439FF;
}

.checkbox input:checked + label span.checkbox-icon:after {
	transform: scale(1) rotate(45deg);
	opacity: 1;
}


/* Loading */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #a445b2;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #a445b2 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* trivia questions */
.trivia-questions .question{
    border-bottom: 1px solid #e0e0e0;
    padding: 10px;
}
.trivia-questions .question:last-of-type{
    border-bottom: none;
}
.trivia-questions .question .answers, .quiz-complete-questions .question .answers{
    background: #f6f6f6; padding: 10px; border-radius: 2px
}

/* ckeditor */
.ck-editor__editable_inline {
    min-height: 200px;
}
.balloon-ckeditor-wrapper{
    border: 1px solid #ced4da;
    border-radius: 2px;
}
.balloon-ckeditor-wrapper.focused{
    border: none;
}
/* CKEditor content */
.CKEditor-content figure.image{
    text-align: center;
}
.CKEditor-content figure.image img{
    width: 80%;
    border-radius: 3px;
}
.CKEditor-content figure.media{
    display: flex;
    justify-content: center;
}
.CKEditor-content figure.media div[data-oembed-url]{
    width: 80%;
}
.CKEditor-content figure.media div[data-oembed-url] iframe {
    border-radius: 3px;
    overflow: hidden;
}
@media only screen and (max-width: 992px) {
    .CKEditor-content figure.media div[data-oembed-url]{
        width: 100%;
    }
    .CKEditor-content figure.image img{
        width: 100%;
    }
}

/*
Packages
 */
.package-info p{
    font-size: 14px;
    margin-bottom: 10px;
}

/*Spin page*/
body.spin-page{
    background:url('https://eu-central-1.linodeobjects.com/static/images/spin_bg.jpg') #440000 center fixed no-repeat;
    background-size: 100% 100%;
    padding: 10px 0;
    margin:0;
    min-height: 100vh;
}
.spin-page .header{
    z-index: 4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
#spin-wheel-container{
    position: relative;
    margin-top: 5rem;
}
#spin-categories-nav-btns-wrapper{
    margin-bottom: 10rem;
}
#spin-wheel-container #wheel-canvas{
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(212, 127, 111, 0.8);
    border: 2px solid #c27162;
    background: #4c1a13 linear-gradient(120deg, #4c1a13 0%, #6f2a22 50%);
}
#spin-wheel-container .prize-pointer {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 48px;
}
#spin-wheel-container .spin-center{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70px;
}
.spin-bal-wrap{
    border: 2px solid #F2DF5A;
    padding: 10px 10px;
    border-radius: 5px 5px 20px 20px;
    background: #370443;
}
.spin-bal-wrap .top-up-btn{
    padding: 3px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: #F2DF5A!important;
    color: #66173d;
    font-weight: 600;
    -webkit-box-shadow:0 0 15px 4px rgba(242,224,90,0.8);
    -moz-box-shadow: 0 0 15px 4px rgba(242,224,90,0.8);
    box-shadow: 0 0 15px 4px rgba(242,224,90,0.8);
}
.spin-bal-wrap .spin-bal{
    color: #F2DF5A;
    font-weight: 700;
}
.spin-top-btn{
    border: 2px solid #F2DF5A;
    padding: 10px 10px;
    border-radius: 20px 5px 5px 5px;
    background: #5B201A;
    color: #F2DF5A;
    font-weight: 700;
    cursor: pointer;
}
.spin-top-btn.right{

}
.spin-top-btn.left{
    border-radius: 5px 20px 5px 5px;
}

.spin-top-btn i{
    vertical-align: -2px;
}

.spin-page .spin-categories-carousel .btn{
    background: #370443!important;
    border: 2px solid #F2DF5A;
    color: #F2DF5A;
    border-radius: 10px;
    font-weight: 700;
}
.spin-bal-wrap .spin-categories-carousel .btn:focus, .spin-page .spin-categories-carousel .btn:hover{
    outline: none;
    box-shadow: none;
    border: 2px solid #F2DF5A;
    border-radius: 10px;
    color: #F2DF5A;
    background: #370443!important;
}
.spin-page .spin-categories-carousel .btn.active{
    background: #F2DF5A!important;
    color: #66173d;
    border: 2px solid #F2DF5A;
}
.spin-categories-carousel .owl-dots{
    display: none;
}
.spin-categories-carousel-nav-btn{
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid #F2DF5A;
    background: #5B201A;
    color: #F2DF5A;
    position: relative;
    box-shadow: 0 8px 28px rgba(242, 223, 90, 0.2);
    cursor: pointer;
}
.spin-categories-carousel-nav-btn i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
}
.spin-type, .spin-min-win{
    color: #F2DF5A;
}

.spin-page .footer{
    z-index: 4;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
}

.spin-page .footer .spin-bal-wrap{
    border-radius: 20px 20px 5px 5px;
}

.spin-page a.custom{
    border: 2px solid #F2DF5A;
    padding: 8px 25px;
    border-radius: 10px;
    background: #5B201A;
    color: #F2DF5A;
    font-weight: 700;
    text-decoration: none;
}
.modal.spin-page .modal-content{
    border: 2px solid #F2DF5A;
    background: #370443;
    border-radius: 10px;
}
.modal.spin-page .title{
    font-weight: 700;
}
.spin-page .primary-color{
    color: #F2DF5A!important;
}
.spin-btn.btn-primary, .spin-btn.btn-primary:hover{
    background: #F2DF5A!important;
    color: #66173d;
    border: 2px solid #F2DF5A;
    border-radius: 10px;
    font-weight: 600;
}
.spin-btn.btn-primary:focus{
    box-shadow: none;
}
/* spin page form controls */
/*.spin-page input::placeholder{*/
/*    font-size: 13px;*/
/*    color: #fff!important;*/
/*}*/
/*.spin-page label{*/
/*    color: #F2DF5A;*/
/*}*/
/*.spin-page input.form-control, .spin-page select.form-select{*/
/*    height: 45px;*/
/*    background: transparent;*/
/*    color: #F2DF5A;*/
/*}*/
/*.spin-page input.form-control[readonly] {*/
/*    background: transparent;*/
/*}*/
/*.spin-page select.form-select option{*/
/*    color: black;*/
/*}*/
/*.spin-page input.form-control, .spin-page textarea.form-control, .spin-page select.form-select {*/
/*    box-shadow: none;*/
/*    border-radius: 6px;*/
/*    border: 1px solid #F2DF5A;*/
/*    color: #F2DF5A!important;*/
/*}*/
/*.spin-page input.form-control:focus, .spin-page textarea.form-control:focus, .spin-page select.form-select:focus {*/
/*    border: 1px solid #F2DF5A;*/
/*    box-shadow: none;*/
/*    background: transparent;*/
/*}*/
/*.spin-page input.form-control:hover, .spin-page select.form-select:hover {*/
/*    border: 1px solid #F2DF5A;*/
/*    box-shadow: none;*/
/*}*/
/*.spin-page select.form-select:hover{*/
/*    cursor: pointer;*/
/*}*/


 .bubbly-button {
	 display: inline-block;
	 font-size: 18px;
	 padding: 8px 30px;
	 -webkit-appearance: none;
	 appearance: none;
	 background-color: #FFEB00;
	 color: #66173d;
	 border-radius: 10px;
	 border: none;
	 cursor: pointer;
	 position: relative;
	 transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
	 box-shadow: 0 2px 25px rgba(255, 235, 0, 0.5);
     font-weight: 700;
}
 .bubbly-button:focus {
	 outline: 0;
}
 .bubbly-button:before, .bubbly-button:after {
	 position: absolute;
	 content: '';
	 display: block;
	 width: 140%;
	 height: 100%;
	 left: -20%;
	 z-index: -1000;
	 transition: all ease-in-out 0.5s;
	 background-repeat: no-repeat;
}
 .bubbly-button:before {
	 display: none;
	 top: -75%;
	 background-image: radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, transparent 20%, #FFEB00 20%, transparent 30%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, transparent 10%, #FFEB00 15%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%);
	 background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
 .bubbly-button:after {
	 display: none;
	 bottom: -75%;
	 background-image: radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, transparent 10%, #FFEB00 15%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%), radial-gradient(circle, #FFEB00 20%, transparent 20%);
	 background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
 .bubbly-button:active {
	 transform: scale(0.9);
	 background-color: #FFEB00;
	 box-shadow: 0 2px 25px rgba(255, 235, 0, 0.2);
}
 .bubbly-button.animate:before {
	 display: block;
	 animation: topBubbles ease-in-out 0.75s forwards;
}
 .bubbly-button.animate:after {
	 display: block;
	 animation: bottomBubbles ease-in-out 0.75s forwards;
}
 @keyframes topBubbles {
	 0% {
		 background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
	}
	 50% {
		 background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
	}
	 100% {
		 background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
		 background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
	}
}
 @keyframes bottomBubbles {
	 0% {
		 background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
	}
	 50% {
		 background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
	}
	 100% {
		 background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
		 background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
	}
}


/* Attention */
.attention{
    width: 250px; border-radius: 5px;
    overflow: hidden;
    background: #fff;
    position: fixed;
    bottom: 30px;
    right: -250px;
    z-index: 999;
    transition: right .3s linear;
}
.attention.shown{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    right: 0.75rem;
}
.attention .img{
    position: relative;
  overflow: hidden;
}
.attention .overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
}
.attention img{
    z-index: 2;
}
.attention .close-btn{
    position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  text-align: center;
    z-index: 4;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(120, 84, 247, 0.2);
    cursor: pointer;
}
.attention .close-btn i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
}
@media only screen and (max-width: 767px) {
	.attention{
        width: 80vw;
        right: -80vw;
    }
}
@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}

/* Youtube video */
.card.yt-vid{
    border: none;
    border-radius: 5px;
    overflow: hidden;
}
.youtube-video{
    position: relative;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
.youtube-video .overlay{
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
}
.youtube-video .iframe-wrapper{
    z-index: 1;
}

/*
Header
 */
#header{
    padding-top: 30px; padding-bottom: 30px;
    z-index: 4;
    position: fixed; top: 0; left: 0;
    width: 100%;
    transition: padding-top .4s linear, padding-bottom .4s linear;
    }
    #header.scrolled {
    background: #fff;
    padding-top: 15px; padding-bottom: 15px;
    }
    #header .brand {
        font-weight: 700;
        font-size: 30px;
        color: #2a2a2a;
    }
    #header .logo {
        width: 140px
    }
    #header .mobile-menu-toggle{
        text-decoration: none;
        margin-left: 10px;
    }
    #header .mobile-menu-toggle i{
        color: #272D4E;
        font-size: 30px;
    }
    #header .link, #dashboard-header .link{
        margin-right: 15px;
        text-decoration: none;
        font-weight: 600;
        color: #272D4E;
    }
    #dashboard-header .link{
        font-weight: 500;
        font-size: 14px;
    }
    #header .link:last-of-type, #dashboard-header .link:last-of-type{
        margin-right: 0;
    }
    #header .button{
        padding: 5px 20px;
    }
    #header .avatar{

    }
    #header .avatar img{
        width: 35px; border-radius: 0.3em
    }

    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #f3f4f6;
  color: #5f687b;
  font-size: 14px;
  position: relative;
}
#footer .footer-bottom {
  z-index: 2;
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
}

#footer .copyright {
  float: left;
    font-size: 14px;
}

#footer .credits {
  float: right;
  font-size: 14px;
}

@media (max-width: 992px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
  }
}

.hero {
  width: 100%;
  height: 100vh;
}
.hero h1{
  color: #272D4E;
}
.hero p{
  font-size: 18px;
  color: #585858;
}
          @media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px!important;
  }
  .hero p {
    font-size: 18px!important;
  }
}

.bg-light-gradient {
          background: -webkit-gradient(linear, left top, left bottom, from(rgba(236, 240, 253, 0)), color-stop(14.32%, rgba(236, 240, 253, 0.53)), color-stop(45.83%, #ECF0FD), color-stop(84.33%, rgba(236, 240, 253, 0.43)), to(rgba(236, 240, 253, 0)));
          background: -o-linear-gradient(top, rgba(236, 240, 253, 0) 0%, rgba(236, 240, 253, 0.53) 14.32%, #ECF0FD 45.83%, rgba(236, 240, 253, 0.43) 84.33%, rgba(236, 240, 253, 0) 100%);
          background: linear-gradient(180deg, rgba(236, 240, 253, 0) 0%, rgba(236, 240, 253, 0.53) 14.32%, #ECF0FD 45.83%, rgba(236, 240, 253, 0.43) 84.33%, rgba(236, 240, 253, 0) 100%);
        }
          .bg-holder {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}

          /*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .details {
  transition: all ease-in-out 0.3s;
  background: #fff;
  position: relative;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.05);
}

.services .details h3 {
  color: #1a1f24;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item{
    margin-top: 20px;
}
.services .service-item:hover .details h3 {
  color: #FF444F;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #f3f1f5;
  color: #FF8C00;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;

}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
    font-family: "Quicksand", sans-serif;
}

.section-title h3 span {
  color: #a92c37;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
    font-family: "Nunito", sans-serif;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
    text-align: center;
}

.values .icon i {
    line-height: 1;
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
    font-size: 36px;
    color: #333;
    background: #ffecec;
    border-radius: 3px;
    padding: 10px 6px;
    display: inline-block;
}

.values .title {
    font-size: 20px;
    margin-bottom: 9px;
    display: block;
    font-weight: 700;
    color: #333;
    font-family: "Quicksand", sans-serif;
}

.values .title a {
  color: #111;
}

.values .description {
  margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #686f7a;
}

/*
Alerts
 */
.alert.custom{
    border-radius: 0.5em;
}

/*
Wallet summary
 */
.wallet-summary .item{
    margin-top: 1em;
    background: var(--background);
    border-radius: 0.5em;
    padding: 25px 15px;
}
.wallet-summary .item .icon-wrap {
    width: 3em;
    height: 3em;
    border-radius: 0.5em;
    background: rgba(255,255,255,0.2);
    position: relative;
}
.wallet-summary .item .icon-wrap img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.3em;
}
.wallet-summary .item p{
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 0.75em;
    margin-bottom: 0;
    color: #fff;
    opacity: 0.8;
}
.wallet-summary .item h6{
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    margin-top: 0.25em;
    margin-bottom: 0;
    color: #fff;
}


.featured{
    padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
  border-radius: 0.5em;
  z-index: 1;
    margin-bottom: 20px;
}

.featured .icon{
    margin-bottom: 15px;
}
.featured .icon i {
  font-size: 40px;
  line-height: 1;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.featured .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
    font-family: "Quicksand", sans-serif;
}

.featured .description {
  font-size: 14px;
  margin-bottom: 0;
    font-family: "Nunito", sans-serif;
}

/* steps */
.step{
    margin-bottom: 20px;
}
.step .icon-wrap{
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: var(--primary-color);
    position: relative;
    box-shadow: none;
}
.step .icon-wrap .icon{
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
     color: #fff;
  font-size: 35px;
}
.step p{
    font-size: 1em;
}