/*
--------------------------------- 
RECONOCIMIENTOS GENERAL STYLES 
---------------------------------
*/

#recCont { margin-top: 50px; }

/*
--------------------------------- 
RECONOCIMIENTOS BUTTONS STYLES 
---------------------------------
*/

.recSortBtnsCont { margin: 10px; width: 100%;}

.recBtn, .recMedalOverlayBtn, .recInfoBtn {
    text-align: center;
    align-content: center;
    border-radius: 25px;
    cursor: pointer;
    background-color: var(--main-details-dark-color);
    color: white !important;
    font-weight: bold;
}

.recBtn {
    flex:1;
    height: 50px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0px;
    border: 1px solid var(--main-bg-color);
}

#recBeerSortBtn { border-radius: 15px 0 0 15px; }
#recYearSortBtn { border-radius: 0 15px 15px 0 }

.recBtn:hover, .recMedalOverlayBtn:hover, .recInfoBtn:hover { background-color: var(--main-details-darker-color); }

/*
--------------------------------- 
RECONOCIMIENTOS GROUPS STYLES 
---------------------------------
*/

.recGroup {
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
    display: flex;
    flex-flow: row wrap;
    gap: 1%;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.recGroup .rec { margin: 0px; }

.recGroupHeader {
    border-top: 1px solid var(--main-details-color);
    border-bottom: 1px solid var(--main-details-color);
    font-weight: bold;
    width: 90%;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

/*
--------------------------------- 
RECONOCIMIENTOS MEDAL STYLES 
---------------------------------
*/

.rec {
    position: relative;
    margin: 5%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.recMedal { width: 200px; }

.recMedalOverlay {
    background-color: rgba(224, 206, 186, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.recMedalOverlay:hover { opacity: 1; }

.recMedalOverlayBtn, .recInfoBtn { padding: 5%; width: 50%; }

/*
--------------------------------- 
RECONOCIMIENTOS INFO STYLES 
---------------------------------
*/

.recInfoCont {
    position: fixed;
    z-index: 99;
    top: 15dvh;
    left: 25dvw;
    height: 70%;
    width: 50%;
    margin: auto;
    background-color: var(--main-bg-color);
    display: none;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--main-details-darker-color);
}
.recInfoHeader {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.recInfoBtn {
    position: absolute;
    bottom: 15px;
    width: 150px;
    height: 40px;
    padding: 0;
}

.recShow { display: flex; flex-direction: column; }


@media (max-width: 768px) {
    .recInfoCont{
        width: 80%;
        height: 80dvh;
        top: 10dvh;
        left: 10dvw;
    }
    .recMedal{ width: 150px; }
}