.games_completed_count {
    background: #995e0e;
    width: 90%;
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    text-align: center;
    margin: auto;
    display: block;
}

.games_completed_count p {
    margin: 0px;
    padding: 0px 0px 0px 0px;
    font-size: 20px;
}

.games_completed_count h2 {
    margin: 0px;
    font-size: 20px;
}

.aligncenter {
    align-items: center;
}

.accordion-panel {
    position: relative;
}

.ganesh_papa_profile img {
    width: 100%;
}

.view_ganesh_button {
    background: #f25d21;
    width: 100%;
    padding: 5px;
    border-radius: 20px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: 100%;
    margin: -20px 0px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.view_ganesh_button a {
    text-decoration: none;
    color: #fff;
}

section.dashboard_top_section {
    padding: 20px 0px;
}

.person_details h2 {
    margin: 0px 0px 10px 0px;
    font-size: 18px;
    color: #000;
}

.person_details img {
    width: 40%;
    margin: 0px 0px 10px 0px;
}

.ganesh_papa_profile {
    width: 90%;
    margin: auto;
}

.accordion-horizontal {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    height: 370px;
    gap: 15px;
}

.accordion-panel {
    /*      flex: 1;*/
    transition: flex 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid #f25d21;
    background: #f6c97f;
}

.accordion-panel.active {
    flex: 4;
    background-color: transparent;
}

.accordion-content {
    padding: 1rem;
    display: none;
}

.accordion-panel.active .accordion-content {
    display: block;
}

.dayhead {
    font-size: 30px;
    padding: 10px 20px;
    position: relative;
}

section.game_center_section {
    padding: 20px 0px;
    position: relative;
}

.games_boxes_group {
    display: flex;
    gap: 15px;
}

.game_box {
    background: #c5c2af;
    width: 300px;
    height: auto;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin: auto;
    height: 210px;
    align-content: center;
    justify-content: center;
}

img.icon_on {
    display: none;
}

.game_name p {
    margin: 0px;
    font-size: 16px;
    color: #6e6e6e;
}

.game_name {
    height: 70px;
    padding: 10px 0px;
}

.game_start_button {
    background: #636363;
    width: fit-content;
    margin: auto;
    padding: 5px 20px;
    color: #000;
    border-radius: 5px;
    margin: 0px auto 10px auto;
}

.game_start_button a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
}

.game_box.lock .game_start_button {
    display: none;

}

.lock_button {
    display: none;
}

.game_box.lock .lock_button {
    display: block;
}

.game_box.active {
    background: #eadfc2;
    border: 2px solid #f25d21;
}

.game_box.active p {
    color: #995e0e;
}

.game_box.active .game_start_button {
    background: #f25d21;
    color: #fff;
    border: 2px solid #feab22;
    border-radius: 10px;
}

.game_box.active .game_start_button a {
    color: #fff;
}

.game_box.lock {
    cursor: default;
}

.lock_button img {
    width: 45px;
    border-radius: 50%;
}

.tick_button {
    display: none;
}

.completed .tick_button {
    display: block;
}

.ganesh_papa_profile img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.game_box.completed {
    background: #f6c97f;
}

.game_box.completed .game_start_button {
    display: none;
}

.game_box.completed .icon_on,
.game_box.active .icon_on {
    display: block;
    margin: auto;
}

.game_box.completed .icon_off,
.game_box.active .icon_off {
    display: none;
}

.game_box.completed .game_name p:last-child {
    font-family: 'nordique_probold';
    color: #000;
}

.game_box.completed .game_name p {
    color: #000;
}

.timer_count {
    background: #f6c97f;
    padding: 10px 20px;
    font-family: 'nordique_probold';
    color: #fff;
    font-size: 20px;
    width: fit-content;
    float: right;
    clear: both;
    border-radius: 10px;
    margin: -20px 0px 15px 0px;
    position: absolute;
    right: 5%;
    top: 30px;
    background: #F25D21;
    background: linear-gradient(353deg, rgba(242, 93, 33, 1) 0%, rgb(226 39 38) 61%);
}

.games_boxes_group {
    clear: both;
}

.tick_button img {
    width: 45px;
}

@media (max-width: 768px) {
    .accordion-horizontal {
        flex-direction: column;
        height: auto;
    }

    .accordion-panel {
        height: auto;
    }

    .person_details img {
        width: 100%;
    }

    .person_details {
        padding: 0px 0px 0px 0px;
        text-align: left;
    }

    .person_details h2 {
        font-size: 18px;
    }

    .games_boxes_group {
        display: block;
        gap: 0px;
    }

    .game_box {
        width: 100%;
        margin: 10px auto;
        height: 100%;
    }

    .timer_count {
        margin: 0px auto 10px auto;

    }

    .tick_button img {
        width: 35px;
    }

    .ganesh_papa_profile {
        width: 100%;
        margin: initial;
    }

    .view_ganesh_button {
        padding: 10px 2px;
        font-size: 12px;
    }

    .dashboard_top_section .col-7 {
        padding: 0px 5px;
    }

    .games_completed_count {
        margin: 10px auto;
    }

    .games_completed_count p {
        font-size: 20px;
    }

    .games_completed_count h2 {
        font-size: 25px;
    }

    section.game_center_section {
        padding: 0px 0px 10px 0px;
    }

    .timer_count {
        right: unset;
        top: unset;
        position: relative;
        float: unset;
        width: 100%;
    }
}