/* GLOBAL */

:root {
    --app-height: 100vh;
    --header-height: 8vh;
    --footer-height: 8vh;
    --content-height: calc(var(--app-height) - (var(--header-height)));
    --h1-font-size: 32px;
    --page-title-container-height: 7vh;
    --avatar-height: 5vh;
    --avatar-width: 5vh;
    --link-icon-width: 50px;
    --link-icon-height: 50px;
    --lfz-yellow: #FFCC00;
    --lfz-green: #33CC33;
    --app-max-width: 768px;
    --header-logo-max-width: 70%;
}

@media (min-width: 768px) {
    body {
        background-image: url('../img/abstract\ gold\ light\ line\ slash_1209439.jpg');
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width:1260px) {
    #sidebarMenu {
        position: fixed;
        left: 250px !important;
    }

    .sidebarIconToggle {
        display: none;
    }
}

ul {
    list-style-type: none;
}

#app {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: var(--app-height);
    background-image: url('../img/Descargar\ Pack\ Increibles\ fotos\ de\ vehiculos\ HD\ \(4\).jpg');
    max-width: var(--app-max-width);
    margin: 0px auto;
    padding-top: var(--header-height);
    min-height: var(--app-height);
}

#content {
    min-height: var(--content-height);
}

/* CMS */
.cms-item {
    padding: 3.5em;
}

/** BackBtn */
.back-btn-container {
    /* position: fixed;
    top: 30px;
    left: 20px;
    z-index: 99; */
    font-size: 24px;
    /* opacity: 0.8; */
    color: gray;
}

.back-btn-container>a {
    color: gray;
    text-decoration: none !important;
}

/* HOME */
/* SOCIAL LINKS */
.socials-icons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.social-icon>a>button {
    border-radius: 50%;
    border: 3px outset var(--lfz-yellow);
}

/* ScrollTop */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 60px;
    opacity: 0.8;
    color: gray;
}

/* EVENT */

.event-item>.event-item-img>.card-img-top {
    max-width: 100% !important;
    max-height: 500px !important;
    width: auto !important;
    height: auto !important;
}

.event-img-secondary-list {
    min-height: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.event-img-secondary-item {
    margin: 5px;
    min-height: 130px;
    min-width: 130px;
}

.delete-resa-btn {
    font-size: 0.7em !important;
    padding: 0.185rem 0.375rem !important;
}

.event-inactive {
    filter: grayscale(0.9);
}

/* USER List*/
.user-list-item {
    display: flex;
    flex-direction: row;
    margin: 10px 0px;
}

.user-list-item-avatar {
    height: calc(var(--avatar-height)/1.5);
    width: calc(var(--avatar-width)/1.5);
    border-radius: 50%;
    margin-right: 10px;
}

/* ImageModal */
.imgModal {
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#imgModalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.closeImgModal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.closeImgModal:hover,
.closeImgModal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}