﻿.directory__container {
    position: relative;
}

.directory__item  {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #D3D3D3;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    padding: 10px 25px 10px 10px;
}

.directory__text {
    cursor: pointer;
    position: relative;
}

.directory__text:before {
    background: url("/Portals/cens/Images/iconos/arrow-directory.svg") no-repeat;
    content: "";
    height: 8px;
    right: -10px;
  
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
    width: 14px;
    z-index: 2;
}

.directory__text.active:before {
    transform: translateY(-50%) rotate(180deg);
}

.directory__title{
    color: #333333;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    margin: 5px 0 5px 0;
}

.directory__subtitle{
    color: #666666;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin: 5px 0 0 0;
}

.directory__content {
    display: none;
    padding: 20px 0 0 0;
}

.directory__description {
    color: #333333;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin: 15px 0 15px 0;
    padding: 0 0 0 30px;
    position: relative;
}

.directory__description:before {
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 18px;
    z-index: 2;
}

.directory__address:before{
    background: url("/Portals/cens/Images/iconos/direccion.svg") no-repeat;
}

.directory__phone:before{
    background: url("/Portals/cens/Images/iconos/telefono.svg") no-repeat;
}

.directory__wsp:before{
    background: url("/Portals/cens/LaboratorioCens/Wsp_ico/wsps_f.svg") no-repeat;
}


.directory__emails {
    padding: 0 0 0 30px;
    position: relative;
}

.directory__emails:before {
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 18px;
    z-index: 2;
}

.directory__emails:before{
    background: url("/Portals/cens/Images/iconos/email.svg") no-repeat;
}

.directory__emails .directory__description {
    margin:0 5px 0 0;
    padding: 0;
}

.directory__emails .directory__description:before {
    content: normal;
}

.directory__button {
    margin: 10px 0 10px 0;
}

@media (min-width: 768px){

    .directory__item  {
        padding: 10px 40px 10px 40px;
    }

    .directory__text:before {
        right: 0;
    }

}

@media (min-width: 992px){

    .directory__emails {
        display: flex;
    }

    .directory__emails .directory__description {
        margin:0 5px 10px 0;
    }
    
}