﻿@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

:root {
    --primary-color: #89c7e7;
    --primary-color-hover: #6ab2d6;
    --secondary-color: #febd2f;
    --secondary-color-hover: #d49815;
    --box-shadow: #c9c9c9;
    --white: #ffffff;
    --font-family: 'Fredoka One', cursive;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

    a:hover {
        color: var(--secondary-color-hover);
        text-decoration: none;
    }

body *:not(span.material-icons) {
    font-family: var(--font-family);
}

hr.primary {
    border-color: var(--primary-color);
    border: 4px dotted;
    border-bottom: none;
    background: none;
    color: var(--primary-color);
    opacity: 0.87;
}

hr.secondary {
    border-color: var(--secondary-color);
    border: 4px dotted;
    border-bottom: none;
    background: none;
    color: var(--secondary-color);
    opacity: 0.87;
}

#hero {
    height: 100vh;
    background-image: url('../img/banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
.min-h-60vh {
    min-height: 70vh;
}
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/

.back-to-top {
    background: var(--secondary-color);
}

    .back-to-top:hover {
        background: var(--secondary-color-hover);
        color: #fff;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: var(--primary-color);
}

    #header.header-scrolled {
        background: var(--primary-color);
    }

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    background: var(--secondary-color);
    color: #fff;
}

.navbar .dropdown ul {
    box-shadow: 0px 0px 30px var(--primary-color);
}

    .navbar .dropdown ul a {
        color: var(--primary-color);
    }

.navbar-mobile {
    background: var(--primary-color);
}

    .navbar-mobile a,
    .navbar-mobile a:focus {
        color: var(--primary-color);
    }

    .navbar-mobile .dropdown ul {
        box-shadow: 0px 0px 30px var(--primary-color);
    }

#hero .btn-get-started {
    border: 2px solid var(--secondary-color);
}

    #hero .btn-get-started:hover {
        background: var(--secondary-color);
    }

.section-title h2::after {
    background: var(--secondary-color);
}


.section-title p {
    color: var(--primary-color);
    font-family: var(--font-family);
}

    .section-title p span.material-icons {
        margin-right: 0.25em;
        font-size: 1.5em;
    }

.about .content ul i {
    color: var(--secondary-color);
}

.about .content .btn-learn-more {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

    .about .content .btn-learn-more:hover {
        background: var(--secondary-color);
    }

.features .nav-link {
    color: var(--primary-color);
}

    .features .nav-link:hover {
        color: var(--secondary-color);
    }

    .features .nav-link.active {
        background: var(--secondary-color);
        color: #fff;
        border-color: var(--secondary-color);
    }

.cta {
    background: var(--primary-color);
}

    .cta .cta-btn {
        background: var(--secondary-color);
    }

        .cta .cta-btn:hover {
            background: #fff;
            color: var(--secondary-color);
        }

.services .icon-box {
    box-shadow: 0 2px 29px 0 var(--box-shadow);
}

    .services .icon-box:hover {
        box-shadow: 0 2px 35px 0 var(--primary-color-hover);
    }

.services .title a {
    color: var(--primary-color);
}

    .services .title a:hover {
        color: var(--secondary-color);
    }

#footer .social-links a {
    background: var(--secondary-color);
}

    #footer .social-links a:hover {
        background: var(--secondary-color);
    }

.pricing h4 {
    color: var(--secondary-color);
}


.pricing ul i {
    color: var(--secondary-color);
}

.pricing .btn-buy {
    background: var(--secondary-color);
}

    .pricing .btn-buy:hover {
        background: var(--secondary-color-hover);
    }

.pricing .featured {
    border: 2px solid var(--secondary-color);
}

    .pricing .featured h3 {
        background: var(--secondary-color);
    }

.pricing .advanced {
    background: var(--secondary-color);
}

.btn-gamely {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: var(--secondary-color);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 2em;
    align-items: center;
    display: inline-flex;
}

    .btn-gamely:hover {
        background: var(--secondary-color-hover);
        color: #fff;
        text-decoration: none;
    }

.btn-gamely-secondary {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: var(--primary-color);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--primary-color);
    margin-bottom: 2em;
    align-items: center;
    display: inline-flex;
}

    .btn-gamely-secondary:hover {
        background: var(--primary-color-hover);
        color: #fff;
        text-decoration: none;
    }

.form-control-margin {
    margin-bottom: 1.5em;
}

.error {
    color: #eb4141;
    margin-top: 0.5em;
    font-size: 0.85em;
}

.table {
    width: 100%;
}

    .table tr th {
        background-color: #febd2f;
        color: #fff;
    }

    .table tr td {
        font-size: 0.85em;
    }

.accordian .card-header {
    padding: 0 !important;
}

    .accordian .card-header button {
        margin: 0 !important;
    }

li a.subscription-item {
    border: 2px solid var(--primary-color);
}

#hero #banner-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.user_profile {
    min-height: 80vh;
    margin-bottom: 1em;
    background-color: #89c7e7;
}

    .user_profile .card {
        background: transparent;
        height: 100%;
        border: none;
    }

        .user_profile .card .user-details {
            list-style: none;
            color: #fff;
            padding: 0;
            text-align: center;
        }

            .user_profile .card .user-details li {
                align-items: center;
                display: flow-root;
                text-align: center;
                margin: auto;
                width: 100%;
            }

                .user_profile .card .user-details li h3 {
                    margin-bottom: 1em;
                }

                .user_profile .card .user-details li .material-icons {
                    margin-right: 0.5em;
                }

        .user_profile .card .img-container {
            text-align: center;
            padding: 2em 0em;
        }

            .user_profile .card .img-container .user_icon {
                width: 7em;
                border-radius: 100%;
                background: #fff;
            }

        .user_profile .card .action_buttons .btn-action-a {
            background-color: #febd2f;
            align-items: center;
            display: inline-flex;
            padding: 1em;
            margin: auto;
        }

.profile-top-bar {
    background-color: #f7f8f9;
    padding: 1em;
    border-radius: 0.5em;
    margin-bottom: 1em;
}

    .profile-top-bar .btn-bubble-profile-button {
        align-items: center;
        display: inline-flex;
        border: 2px solid #89c7e7;
        border-radius: 5em;
        font-weight: 100;
        padding: 0.5em 1em;
        color: #89c7e7;
        text-transform: uppercase;
        font-size: 0.8em;
    }

        .profile-top-bar .btn-bubble-profile-button.active {
            background-color: #89c7e7;
            color: #fff;
        }

        .profile-top-bar .btn-bubble-profile-button:hover {
            background-color: #89c7e7;
            color: #fff;
        }

.profile-content-area {
    background-color: #f7f8f9;
    padding: 1em;
    border-radius: 0.5em;
    margin-bottom: 1em;
    min-height: 100vh;
}

#profile_daily_activities .activity_item {
    border-radius: 1em;
    border: none;
    margin-bottom: 0.5em;
}

    #profile_daily_activities .activity_item .activity_icon_container {
        align-items: center;
        display: grid;
        text-align: center;
    }

    #profile_daily_activities .activity_item .material-icons {
        font-size: 3em;
        margin: 0.25em;
        color: #f4b035;
    }

    #profile_daily_activities .activity_item .item_head {
        font-size: 1.3em;
    }

    #profile_daily_activities .activity_item .item_description {
        font-size: 0.9em;
        margin-bottom: 0.5em;
    }

    #profile_daily_activities .activity_item .item_time {
        font-size: 0.8em;
        color: #9d9d9d;
    }

.btn-resend-confirm-email {
    background: #febd2f;
    font-size: 0.75em;
    color: #fff;
}

#Confirm_Email_Send_Label {
    font-size: 0.75em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

#btn_userinfo_edit {
    background-color: #febd2f;
    color: #fff;
    padding: 0.5em 0.4em;
    align-items: center;
    display: inline-flex;
    font-size: 0.75em;
    padding-left: 2em;
    padding-right: 2em;
}

.form-group {
    margin-bottom: 1em;
}

#loader_gamelyschool {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0 / 66%);
    text-align: center;
    align-items: center;
    display: grid;
    z-index: 100;
}

    #loader_gamelyschool img {
        margin: auto;
        width: 15vh;
    }

/* The snackbar - position it at the bottom and in the middle of the screen */
#rk_snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #rk_snackbar.show {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

#rk_snackbar.success {
    background-color: #89c7e7;
    color: #fff;
}

#rk_snackbar.error {
    background-color: #f14f3a;
    color: #fff;
}

.alert-email-verification {
    background-color: #e0f4ff;
}

.user-card {
    border: 3px solid var(--primary-color);
    border-radius: 1em;
}

    .user-card .user_details {
        list-style: none;
    }

        .user-card .user_details li {
            margin-bottom: 0.75em;
        }

            .user-card .user_details li h5 {
                color: #a5a5a5;
                width: 100%;
                margin-bottom: 0;
            }

            .user-card .user_details li p {
                width: 100%;
                margin-bottom: 0;
            }

.player-card {
    border-radius: 1em;
    overflow: hidden;
}

    .player-card .card-header {
        background-color: var(--primary-color);
        border-bottom: none;
    }

        .player-card .card-header .material-icons {
            font-size: 5em;
            color: #fff;
        }

    .player-card .card-body h3.player-name {
        font-family: var(--font-family);
        color: var(--primary-color);
    }

    .player-card .card-body ul {
        list-style: none;
        padding: 0;
    }

        .player-card .card-body ul li {
            font-family: var(--font-family);
            text-align: center;
        }

            .player-card .card-body ul li span.data {
                color: var(--secondary-color);
            }

            .player-card .card-body ul li span.status.success {
                color: #0bcb50;
            }

            .player-card .card-body ul li span.status.danger {
                color: #c40909;
            }

div.card.player-details {
}

div.card.player-details {
    list-style: none;
}

    div.card.player-details .details span.material-icons {
        color: var(--secondary-color);
        font-size: 4em;
    }

.card.player-details .details label.title {
    font-family: var(--font-family);
}

.card.player-details .details p.data {
    font-family: var(--font-family);
    color: var(--primary-color);
    font-size: 1.5em;
}

#user-profile .user_details li p {
    overflow-wrap: break-word;
}


#user-profile .profile_icon_wrapper {
    background-color: var(--primary-color-hover);
    display: inline-flex;
    align-items: center;
    text-align: center;
    border-radius: 100%;
}

    #user-profile .profile_icon_wrapper .material-icons {
        color: #fff;
        font-size: 12em;
        margin: auto;
    }

#user-profile .profile_email {
    font-size: 2em;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 0.25em;
    margin-bottom: 1em;
}

#user-profile .profile_name {
    font-size: 3em;
    text-align: center;
    margin-top: 0.25em;
}

.body-card {
    background-color: #ecf5ff;
    border-radius: 2em;
    padding: 1em 3em;
    box-shadow: 1px 4px 5px #bfbfbf;
}

@media only screen and (max-width:991px){
    .body-card {
        padding: 1em 1em;
    }
}

#header .logo img {
    max-height: 6em;
}