body {
    background-color: #F0F4FA;
}
header {
    padding: 11px;
    height: 70px;
    display: flex;
}
.logo-franq {
    width: 150px;
    height: 40px;
    object-fit: contain;
    object-position: left;
}
#slider-menu {
    position: absolute;
    width: 250px;
    top: 69px;
    bottom: 0;
    left: 0;
    padding: 5px;
    display: flex;
    flex-direction: column;
    color: #444746;
    transition: 0.3s;
}
.content {
    position: absolute;
    top: 70px;
    left: 250px;
    right: 0;
    bottom: 0;
    margin: auto;
    overflow: auto;
    padding: 15px 21px 15px 15px;
    border-radius: 10px;
    background-color: #ffffff;
}
.anexos-content {
    position: relative;
}
.anexo-content {
    border-radius: 5px;
    position: relative;
    float: left;
}
.anexo-content:hover {
    box-shadow: inset 0px 5px 10px #d1d1d1;
}
.anexo-content img {
    width: 150px;
    max-width: 250px;
    height: 150px;
    padding: 5px 3px;
    object-fit: cover;
}
.anexo-video {
    position: relative;
}
.anexo-video img {
    width: 250px;
    height: 150px;
    object-fit: cover;
}
.anexo-video .icon-video {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #ffffff;
    font-size: 30px;
}
.card {
    border: none;
}
.label-vist {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}
.label-vist i {
    margin-right: 5px;
    opacity: .5;
}
.ambientes {
    display: flex;
    flex-direction: column;
}
.ambientes button {
    margin-bottom: 5px;
    text-align: left;
}
.prop-anexo {
    background-color: #ffffff80;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #444746;
    font-weight: bold;
    position: absolute;
    bottom: 10px;
    right: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
    font-size: 20px;
}
.prop-anexo img {
    width: 33px;
    height: 33px;
    object-fit: cover;
    border-radius: 50%;
    padding: 0;
}
.btn-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 10px;
    align-items: center;
    border-radius: 50px;
}
.btn-header i {
    font-size: 20px;
    opacity: .6;
}
.btn-ambiente {
    font-size: 1em;
}
#slider-menu.open {
    left: 0;
}
.slider-menu-logo {
    display: none;
}
.anexo-img-show {
    display: block;
}
.anexo-img-hide {
    display: none;
}
.anexo-video-show {
    display: block;
}
.anexo-video-hide {
    display: none;
}
.item-show {
    display: block;
}
.item-hide {
    display: none;
}
.ambiente {
    display: flex;
    flex-direction: column;
}
#menu-toggle {
    display: none;
    margin-right: 8px;
}

/* Estilos para desktop */
@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }
    #slider-menu {
        position: absolute;
        top: 0;
        left: -260px;
        background-color: #F0F4FA;
        z-index: 1;
        box-shadow: -6px 0 13px 0 #000000;
    }
    .content {
        left: 0;
        padding: 0;
    }
    .anexo-content img {
        max-width: 122px;
        height: 200px;
    }
    .slider-menu-logo {
        display: block;
        padding: 15px 7px;
    }
}