﻿.container {
    margin-top: 1rem;
    margin-bottom: 20px;
    padding-left: 0px !important;
    padding-right: 0px !important;
    background-color: white;
    border: 1px solid #8c8c8c26;
    border-radius: 5px;
}

@media only screen and (max-width: 768px) {
    .container {
        margin-top: 0rem;
    }
}

/**************** HEADER ***************/
.header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0.5rem;
    align-items: center;
}

.header-clasico {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .header img {
        height: 4rem;
    }

    .header .space {
        width: 1rem;
    }

    .header .names {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
/**************** HEADER ***************/
    /**************** CONTENT ***************/
    .content {
    }

        .content .text {
            padding: 15px;
        }

        .content img {
            /*object-fit: cover;*/
            /*width: 100%;*/
            height: 20rem;
        }

        .content .img-container {
            position: relative;
            text-align: center;
        }

        .content .fecha {
            position: absolute;
            right: 0;
            bottom: 0;
            color: white;
            background-color: #00afb0;
            padding: 2px 10px 2px 10px;
            font-weight: 500;
            border-top-left-radius: 5px;
        }

    @media screen and (max-width: 800px) {
        .content img {
            height: 10rem;
        }
    }

    .content #subtitle {
        color: #00AFB0;
    }

    .content #desc::before {
    }
    /**************** CONTENT ***************/



    /* =========================
   LANG BAR (FORCE)
   ========================= */

    body {
        padding-bottom: 76px !important;
    }

    #langBar.lang-bar {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 10px 12px !important;
        padding-bottom: calc(10px + env(safe-area-inset-bottom)) !important;
        background: rgba(255,255,255,0.92) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        backdrop-filter: blur(10px) !important;
        border-top: 1px solid rgba(0,0,0,0.06) !important;
        box-shadow: 0 -10px 26px rgba(0,0,0,0.12) !important;
        z-index: 99999 !important;
        transform: translateZ(0) !important;
    }

        #langBar.lang-bar a.lang-link {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            min-width: 44px !important;
            height: 32px !important;
            padding: 0 12px !important;
            border-radius: 999px !important;
            text-decoration: none !important;
            font-weight: 700 !important;
            font-size: 13px !important;
            line-height: 1 !important;
            color: #0b5ed7 !important;
            border: 1px solid rgba(11,94,215,0.25) !important;
            background: rgba(11,94,215,0.08) !important;
            transition: transform .08s ease, background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease !important;
        }

            #langBar.lang-bar a.lang-link:hover {
                transform: translateY(-1px) !important;
                background: rgba(11,94,215,0.12) !important;
                box-shadow: 0 8px 18px rgba(11,94,215,0.12) !important;
            }

            #langBar.lang-bar a.lang-link.active {
                color: #fff !important;
                background: #0b5ed7 !important;
                border-color: #0b5ed7 !important;
                box-shadow: 0 10px 22px rgba(11,94,215,0.25) !important;
            }

    @media (max-width: 360px) {
        body {
            padding-bottom: 92px !important;
        }

        #langBar.lang-bar {
            gap: 6px !important;
        }

            #langBar.lang-bar a.lang-link {
                min-width: 44px !important;
                height: 38px !important;
                padding: 0 12px !important;
            }
    }
