/* ///  DECORATION CSS ///  */
.cont_select_center {
    max-width: 370px;
    height: 50px;
}

.icon_select_mate {
    position: absolute;
    top: 14px;
    right: 2%;
    font-size: 16px;
    height: 22px;
    transition: all 275ms;
}

.select_mate {
    position: relative;
    float: left;
    width: 100%;
    color: rgba(25, 26, 28, 1);
    font-weight: 300;
    background-color: rgba(240, 245, 248, 1);
    border-radius: 5px;
    transition: all 375ms ease-in-out;

    /* Oculto el elemento select */
    select {
        position: absolute;
        overflow: hidden;
        height: 0px;
        opacity: 0;
        z-index: -1;
    }

}

.cont_list_select_mate {
    position: relative;
    float: left;
    width: 100%;
}

.cont_select_int {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 999;
    overflow: hidden;
    height: 0px;
    width: 100%;
    background-color: #fff;
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 0px 0px 3px 3px;
    box-shadow: 1px 4px 10px -2px rgba(0, 0, 0, 0.2);
    transition: all 375ms ease-in-out;

    li {
        position: relative;
        float: left;
        width: 100%;
        /* border-bottom: 1px solid #E0E0E0; */
        background-color: white;
        list-style-type: none;
        padding: 17px 16px;
        margin: 0px;
        transition: all 275ms ease-in-out;
        display: block;
        cursor: pointer;
        font-size: 16px;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: 0em;
        text-align: left;

        &:last-child {
            border-radius: 3px;
            border-bottom: 0px;

        }

        &:hover {
            background-color: rgba(17, 171, 105, 1);
        }
    }

    .active {
        background-color: rgba(17, 171, 105, 1);
    }

}

/* etiqueta <p> con la opcion selecionada  */
.selecionado_opcion {
    padding: 17px 16px;
    width: auto;
    display: block;
    margin: 0px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    display: flex;
    align-items: center;

}

/* Media Query */
@media (max-width:480) {

    .cont_select_int li {
        font-size: 15px;
        line-height: 15px;
    }
}