/* Base Styles */
.container {
    height: 100%;
}

.container-bg-set {
    position: relative;
    overflow: hidden;
}

.container-bg-set::before {
    content: "";
    position: absolute;
    width: 174%;
    height: 427%;
    top: -50%;
    left: -50%;
    z-index: -1;
    transform: rotate(213deg);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: white;
}

#loader-img {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    background-image: url('../images/loader.gif');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
}

/* Buttons & Forms */
button {
    background: none;
    border: none;
}

button:focus {
    outline: none;
}

.btn:focus, .form-control:focus {
    box-shadow: none;
}

.btn-signup {
    border: none !important;
    border-radius: 10px !important;
    color: #FFFFFF !important;
    background: linear-gradient(to right, #4dbc15 0, #7635f3 100%);
    font-weight: bold;
}

.btn-theme {
    border-radius: 15px;
    color: #FFFFFF !important;
    background-color: #7635f3;
}

/* Utility Classes */
.text-white {
    color: #FFFFFF !important;
}

.bg-content-color {
    background: #FFFFFF;
}

.bg-content-color-1 {
    background: #f5f5f5;
}

.theme-gradient:not(.overly) {
    background: linear-gradient(to right, #4dbc15 0, #7635f3 100%);
}

/* Header & Navigation */
#navbar {
    background: linear-gradient(to right, #4dbc15 0, #7635f3 100%);
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    margin: 37px 0 0 0;
}

#navbar.sticky {
    background: linear-gradient(to right, #4dbc15 0, #7635f3 100%);
    margin: 0;
    padding: 0;
}

.navbar .navbar-nav li a:hover,
.navbar .navbar-nav .active {
    background-color: #7635f3;
    color: white;
    border-radius: 8px;
}

/* Quiz Styles */
.shadow-box-quiz {
    background: linear-gradient(to right, #4dbc15 0, #7635f3 100%);
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    border-radius: 15px;
    color: white;
}

.progressBarGreen {
    border: 1px solid #4dbc15;
}

.progressBar_fill_green {
    background: #4dbc15;
}

.green_count {
    color: #4dbc15;
}

.progressBarRed {
    border: 1px solid #dc3545;
}

.progressBar_fill_red {
    background: #dc3545;
}

.red_count {
    color: #dc3545;
}

/* Card Styles */
.shadow-box {
    background-color: #FFFFFF;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    border-radius: 9px;
    color: black;
}

.shadow-box-theme {
    background: linear-gradient(to right, #4dbc15 0, #7635f3 100%);
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    border-radius: 9px;
    color: white;
}

.activebtn .active,
.shadow-box-lang:hover,
.shadow-box-button:hover,
.shadow-box-self:hover,
.shadow-box-category:hover {
    background: linear-gradient(to right, #4dbc15 0, #7635f3 100%) !important;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(to right, #4dbc15 0, #7635f3 100%);
    color: #FFFFFF;
}

footer .footer-copyright {
    background: #323232;
}

/* Responsive Adjustments */
@media only screen and (max-width: 991px) {
    .hight-box {
        height: 325px;
    }
}

@media only screen and (max-width: 767px) {
    .blank_space_between_bar_counts,
    .question-box {
        width: 70%;
    }
}

@media only screen and (max-width: 460px) {
    .title-gradient-color {
        font-size: 30px;
    }
}

/* Toast Notifications */
.toast {
    left: 50%;
    top: 20%;
    position: fixed;
    transform: translate(-50%, 0px);
    z-index: 9999;
}

#toastmsg {
    margin-top: 5px;
    background-color: rgba(255,255,255,.85);
    border-radius: .25rem;
    padding: .25rem;
    color: #dc3545;
}