﻿/*menu amarrillo flotante*/
.actividades-menu {
    background-color: #fcce18;
    border-radius: 25px 0 0 25px;
    display: flex;
    z-index: 100;
    position: fixed;
    right: 0px;
    overflow: hidden;
    /*https://stackoverflow.com/a/26962247*/
    top: 50%;
    transform: translate(0, -50%);
}

    .actividades-menu .hed {
        background-color: #000;
        position: relative;
        width: 45px;
        min-height: 225px;
    }

        .actividades-menu .hed > a {
            color: #fff;
            letter-spacing: 2.6px;
            background-color: #000;
            transform: translateX(-50%) translateY(-50%) rotate(-90deg);
            position: absolute;
            top: 50%;
            left: 50%;
            cursor: pointer;
            font-size: 1.25rem;
            display: block;
        }


    .actividades-menu ul {
        list-style: none;
        margin: 15px 35px 15px 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        color: #000;
    }

        .actividades-menu ul a {
            font-family: "GothamHTFLight";
            display: inline-block;
            cursor: pointer;
            color: #000;
            letter-spacing: 1.2px;
            font-weight: 900;
        }


/*panel*/
.bottom {
    min-height: 150px;
    display: flex;
    position: relative;
    margin-bottom: 25px;
    flex-wrap: wrap;
    background-color: #E6E6E6;
    border-radius: 25px;
}

    .bottom > * {
        flex: 1 1;
        padding: 0 10px;
        margin-bottom: 10px;
    }

    .bottom .circle {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        background-color: cornflowerblue;
        display: flex;
        flex-direction: column;
        color: #fff;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        line-height: 0.90;
        letter-spacing: -1px;
    }

    .bottom .mentor-title1 {
        text-align: center;
    }

    .bottom .btn-link {
        color: #000;
    }

/*top*/
.top {
    height: 350px;
    display: flex;
    position: relative;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

    .top > * {
        flex: 1 0 300px;
    }

    .top .item {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
        background-position: center;
        /*height: 100%;*/
    }

        .top .item:not(.active):before {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            background: rgba(0,0,0,0.55);
        }


    .top .item-title {
        padding: 15px 10px;
        color: #fff;
        text-transform: uppercase;
        background-color: #FD8501;
        font-family: "GothamHTFBold";
        letter-spacing: 1.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .top .item-img {
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top .item .item-img img {
        height: 95%;
        width: auto;
        display: none;
    }

    .top .item:not(.active) .item-img img:not(.on) {
        display: block;
    }

    .top .item.active .item-img img.on {
        display: block;
    }

    .top .item .btn {
        padding: 5px 40px;
        border-radius: 25px;
        margin: 0 auto 5px;
        white-space: pre-line;
        font-size: 1.25rem;
        background-color: transparent;
    }

    .top .item.active .btn {
        background-color: #000;
    }

.cilindro {
    background-color: #fff;
    height: 100px;
    width: 100px;
    padding: 10px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "GothamHTFBlack";
    font-size: 18px;
    letter-spacing: 2.2px;
    position: relative;
    overflow: hidden;
}

    .cilindro.mediolleno:before {
        content: "";
        position: absolute;
        height: 50%;
        width: 100%;
        top: 63%;
        left: 0;
        background-color: #FFCC0F;
    }


.panel1-mentor {
    background-color: #E6E6E6;
    /*padding: 10px 25px;*/
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/*titulo*/
.mentor-title1 {
    background-color: #E6E6E6;
    font-family: "GothamHTFBold";
    color: #000;
    letter-spacing: 2.25px;
    padding: 4px 15px 2px 15px;
    border-radius: 25px 25px 0 0;
    text-transform: uppercase;
    text-align: left;
    font-size: 1.25rem;
    width: 96%;
    margin: 0 auto;
}

    .mentor-title1 .btn-hist {
        color: #000;
        float: right;
        font-family: "GothamHTFBook";
        font-size: 0.75rem;
        letter-spacing: 1.25px;
    }
