* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;

    margin: 0;
    padding: 0;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

#mainContainer {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#mapContainer, #infoContainer {
    height: 50%;
}

#siteInfoSubFormGroup {
    text-align: center;
}

.w-80{width:80%!important}

.copy {
    width: 500px;
    color: grey;
    font-family: Roboto, Arial, sans-serif;
    font-style: italic;
    text-align: left;
    display: inline-block;
}

.hidden, .superhidden {
    visibility: hidden;
}

.superhidden {
    display:none;
}

#map {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#filterContainer {
    position: absolute;
    /*top: 200px;*/
    top: 90px;
    /*left: 20px;*/
    left: 185px;
    /*transform: translate(-10%, -10%);*/
    z-index: 1;
    width: 300px;
}

#filterContainer form, button#filterCollapseButton {
    box-shadow: rgb(0 0 0 / 30%) 0px 1px 4px -1px;
    border-radius: 1px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 17px;
}

#filterContainer form {
    width: 300px;
}

.filter-form-text, .filter-form-select, .filter-form-multiselect,  #filterPlacesButton {
    width: 100%; font-size: 11px;
}

.filter-form-text {
    height:10px;
}
.filter-form-multiselect {
    height:100px;
}

#placeInfoContainer table tr td:nth-of-type(1) {
    width: 150px;
}
#placeInfoContainer table tr td:nth-of-type(2) {
    width: 100%;
}
#previewImagesContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.carousel-item img {
    width: 400px;
    height:300px;
    object-fit: contain;
}

.diapo {
    margin: 20px;
    width: 300px;
    height:200px;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid darkgrey;
    background-color: white;
}

.diapo img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#siteImageGalleryLightboxBackdrop {
    display: none;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

#siteImageGalleryLightboxContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

#siteImageGalleryLightboxImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

#siteImageGalleryLightboxBackdropCloseButton {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.breadcrumb-item a, .breadcrumb-item a:link, .breadcrumb-item a:active {
    font-size: 14px;
    text-decoration: none;
}

#myPlacesContainer {
    width: 100%;
    height: 50vh;
}

#userProfileForm,#userLoginForm, #requestResetPasswordForm #resetPasswordForm,#registrationForm {
    min-width: 300px;
    max-width: 600px;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 500px) {
    #userProfileForm {
        min-width: 90%;
    }
}