/*Accesos directos*/
.access__container{
    margin: 0 0 40px 0;
}

.access__space {
    margin-bottom: 30px;
}

.access__link{
    display: block;
    text-decoration: none;
}

.access__link:hover .access__title{
    background: #006633;
    color: #fff;
    text-decoration: none;
}

.access__link:hover .access__title-text{
    color: #fff;
}

.access {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.access__icon {
    align-items: center;
    background: #fff;
    border: 2px solid #006633;
    border-radius: 50%;
    box-shadow: 0px 3.50537px 7.01075px 2.62903px rgb(0 0 0 / 15%), 0px 0.876344px 2.62903px rgb(0 0 0 / 30%);
    display: flex;
    flex: 0 0 80px;
    height: 80px;
    justify-content: center;
    width: 80px;
}

.access__title {
    align-items: center;
    background: #C0E0D0;
    border-radius: 0px 17px 17px 0px;
    display: flex;
    margin: 0 0 0 -40px;
    min-height: 65px;
    padding: 10px 35px 10px 50px;
    transition: 0.5s ease all;
    z-index: -1;
    /* width: auto;*/
    width: 100%;
}

.access__title-text {
    color: #002914;
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    padding: 0 0 5px 0;
    transition: 0.5s ease all;
}


.access__gif img[src=""], 
.access__gif img:not([src]) {
  display: none;
}

.access__gif{
    background: none;
    border-radius: 10px;
    bottom: -150px;
    opacity: 0;
    /* padding: 10px 10px 10px 10px; */
    padding: 0;
    position: absolute;
    right: 2px;
    transition: opacity 0.3s;
    visibility: hidden;
    z-index: 30;
}

.access__gif img{
    border-radius: 15px;
    box-shadow: -1px -1px 12px 0px rgba(0, 0, 0, 0.65);
}

.access__show-gif {
    align-items: center;
    display: flex;
    height: 20px;
    justify-content: center;
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s;
    width: 20px;
    z-index: 20;
}

.access__show-gif svg {
    fill: #002914;
}

.access__show-gif.active svg{
    transform: rotate(180deg);
}

.access__show-gif.active svg{
    fill: #fff;
}

.access__gif.active {
    opacity: 1;
    visibility: visible;
}						  
@media(min-width: 768px){

    .access {
        justify-content: unset;
    }

    .access__title {
        left: 40px;
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: calc(100% - 40px);    
    }
}

@media (min-width: 1200px) {
    .access__show-gif {
        display: none;
    }

    .access__link:hover .access__gif {
        opacity: 1;
        visibility: visible;
    }
}

/*Fin Accesos directos*/
/*Fin Accesos directos*/