﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    /*varcolors*/
    --light: #f8f9fa;
    --primary: #3498DB;
    --light-primary: #AED6F1;
    --dark-primary: #2874A6;
    --grey: #F0F3F4;
    --dark-grey: #2C3E50;
    --dark: #343a40;
    --danger: #E74C3C;
    --light-danger: #F1948A;
    --warning: #F39C12;
    --light-warning: #F8C471;
    --success: #27AE60;
    --light-success: #7DCEA0;
    --silver: #BDC3C7;
    --light-silver: #D7DBDD;
    --shadow: #D7DBDD;
    --darktransparent: rgba(251,252,252,0.7);
    --darkorange: #F39C12;
    --backcroundmenu: #2d3238;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    overflow: hidden;
}

li{
    list-style:none;
}

/*Page*/

.content-page {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 40px;
}

.section-header {
    width: 100%;
}

    .section-header h1 {
        font-size: 1.8em;
    }

.section-body {
    margin-top: 20px;
    padding-bottom: 30px;
}

    .section-body section {
        margin: 20px 0 0 0;
        padding: 20px;
        background-color: rgba(255,255,255,0.6);
        border-radius: 8px; /* Bordes redondeados */
        box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    }

        /*.section-body section:hover {
            transform: scale(1.02);*/ /* Aumenta ligeramente el tamaño */
        /*box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);*/ /* Sombra más marcada */
        /*}*/

        .section-body section h2 {
            font-size: 1.6em;
            font-weight: 400;
            padding-bottom: 10px;
        }

        .section-body section h3 {
            font-size: 1.2em;
            font-weight: 400;
        }

        .section-body section p {
            font-size: 1.1em;
            font-weight: 400;
        }

section {
    padding: 0px 0 20px 0;
}
    section .social-share {
        margin: 10px 0;
    }

        section .social-share a {
            margin: 0 5px;
            text-decoration: none;
            font-size: 1.6em;
        }

            section .social-share a:hover {
                opacity: 0.8;
            }

.styled-list {
    padding-left: 0px;
    margin: 20px 0 0 0;
}

    .styled-list li {
        padding: 20px 20px 10px 20px;
        margin-bottom: 10px;
        color: #333;
        list-style: none;
        background-color: rgba(255,255,255,0.6);
        border-radius: 8px; /* Bordes redondeados */
        box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    }

        .styled-list li h3 {
            font-size: 1.2em;
            font-weight: 400;
        }

        .styled-list li p {
            font-size: 1.1em;
            font-weight: 400;
        }

        .styled-list li a:hover {
            cursor: pointer;
            transform: scale(1.05);
            transition: all 0.3s ease;
            opacity: 0.8;
        }


.image-rounded-big {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}


.image-rounded-small {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.description-exercise {
    margin-top: 10px;
    padding-bottom: 10px;
    text-align: justify;
    font-size: 1.1em;
}

body.dark {
    --light: #1c2833;
    --grey: #212f3d;
    --dark: #fbfcfc;
    --shadow: 273746;
    --darktransparent: rgba(28,40,51,0.7);
}

body {
    background: var(--grey);
    overflow-x: hidden;
}


/*sidebar*/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--dark);
    width: 270px;
    height: 100%;
    z-index: 2000;
    overflow-x: hidden;
    scrollbar-width: none;
}

    .sidebar::-webkit-scrollbar {
        display: none;
    }

    .sidebar.close {
        width: 0px;
    }

    /*sidebar logo*/
    .sidebar .logo {
        color: var(--primary);
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
        height: 70px;
        border-bottom: 1px solid #4b545c;
        display: flex;
        align-items: center;
        justify-content: center;
    }


        .sidebar .logo .logo-name {
            color: var(--light);
            font-weight: 400;
            font-size: 1.5em;
        }

            .sidebar .logo .logo-name span {
                font-weight: 300;
            }

        .sidebar .logo img {
            border-radius: 50% 50%;
        }
    /*sideba menu*/
    .sidebar .side-menu {
        width: 100%;
        padding-top: 10px;
        padding-left: 0px;
    }

        .sidebar .side-menu .item-menu {
            width: 100%;
            overflow-x: hidden;
        }

            .sidebar .side-menu .item-menu a {
                width: 100%;
                display: flex;
                align-items: center;
                color: var(--light);
                overflow-x: hidden;
                padding: 10px 5px 10px 10px;
                font-weight: 200;
                font-size: 1em;
            }

                .sidebar .side-menu .item-menu a:hover {
                    background-color: var(--backcroundmenu);
                    color: var(--darkorange);
                }

            .sidebar .side-menu .item-menu div a {
                font-size: 0.9em;
            }

        .sidebar .side-menu .separator {
            border-bottom: 1px solid #4b545c;
            margin: 5px 0 5px;
        }


    .sidebar.close ~ .content {
        width: calc(100% - 0px);
        left: 0px;
    }

/*content*/
.content {
    width: calc(100% - 270px);
    position: relative;
    left: 270px;
}

    /*content fixedtop*/
    .content .fixedtop {
        position: fixed;
        top: 0;
        height: 56px;
        background: var(--light);
        color: var(--dark);
        width: 100%;
        z-index: 10000000;
    }

        /* content fixedtop navbar*/
        .content .fixedtop nav {
            height: 56px;
            background: var(--light);
            padding: 0 24px 0 15px;
            grid-gap: 24px;
            position: sticky;
            display: flex;
            align-items: center;
            top: 0;
            left: 0;
            width: calc(100% - 270px);
        }

            .content .fixedtop nav a {
                color: var(--dark);
            }

            .content .fixedtop nav .fa.fa-bars {
                cursor: pointer;
                color: var(--dark);
            }

            .content .fixedtop nav .divleft {
                display: flex;
                align-items: center;
                width: 100%;
                grid-gap: 24px;
            }

            .content .fixedtop nav .divright {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: end;
                grid-gap: 24px;
            }

                .content .fixedtop nav .divright .dropdown-group {
                    position: relative;
                    display: inline-block;
                }

                    .content .fixedtop nav .divright .dropdown-group:hover .dropdown-menu {
                        display: block;
                    }

                    .content .fixedtop nav .divright .dropdown-group .dropdown-menu {
                        background: var(--darktransparent);
                        padding: 5px 20px 5px 10px;
                        cursor: pointer;
                        grid-gap: 20px;
                        border: 0px;
                        box-shadow: var(--shadow) 0px 0px 20px;
                        display: none;
                        min-width: 100px;
                        position: absolute;
                        right: 0;
                        border-radius: 20px;
                    }

            .content .fixedtop nav .dropdown-group .dropdown-menu li {
                background: transparent;
                width: 100%;
                padding: 5px 5px 5px 15px;
            }

                .content .fixedtop nav .dropdown-group .dropdown-menu li:hover {
                    background: var(--light-primary);
                    color: var(--light);
                    border-radius: 20px;
                }

                .content .fixedtop nav .dropdown-group .dropdown-menu li a {
                    min-width: 270px;
                    color: var(--dark);
                }

                    .content .fixedtop nav .dropdown-group .dropdown-menu li a:hover {
                        color: var(--primary);
                    }

            .content .fixedtop nav .divright .notif {
                font-size: 24px;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
            }


                .content .fixedtop nav .divright .notif .count {
                    position: absolute;
                    top: -6px;
                    right: -6px;
                    width: 20px;
                    height: 20px;
                    background: var(--warning);
                    border-radius: 50%;
                    color: var(--light);
                    border: 2px solid var(--light);
                    font-weight: 700;
                    font-size: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

            .content .fixedtop nav .divright .profile img {
                width: 35px;
                height: 35px;
                object-fit: cover;
                border-radius: 50%;
            }

    /*content main*/
    .content main {
        width: 100%;
        margin-top: 75px;
        padding-left: 20px;
        padding-right: 30px;
        padding-bottom: 20px;
        max-height: calc(100vh - 112px);
    }


    /*content footer*/
    .content footer {
        position: fixed;
        bottom: 0;
        background: var(--light);
        color: var(--dark);
        z-index: 100000;
        width: 100%;
    }

        .content footer #divfooterr {
            text-align: center;
            vertical-align: middle;
            width: calc(100% - 270px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
        }

.puck {
    width: 100%;
    height: 475px;
}

.puckd {
    position: absolute;
    top: 9px;
    right: 3px;
    background-color: black;
    height: 20px;
    z-index: 10;
    width: 120px;
    background-color: #f7f7f7;
}

.puckdiv {
    position: relative;
    height: 475px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}
/*media sreen*/

@media screen and (max-width: 768px) {
    .sidebar {
        width: 270px;
    }

    .content {
        width: calc(100% - 60px);
        left: 270px;
    }

    section {
        padding: 15px;
        margin: 10px;
    }

    .section-header {
        font-size: 1.2em;
    }

    .section-body {
        font-size: 0.9em;
    }
}



@media screen and (max-width: 480px) {
    .content footer .divfooter {
        width: calc(100% - 60px);
    }

    .content .fixedtop nav .divright {
        display: none;
    }
}
