.propertyDetailsHeader {
    margin-top: 7rem;
    max-width: 1200px;
}

.btnContainer {
    max-width: 200px !important;
}

.backBtn {
    align-self: center;
    border-radius: 3px;
    color: #FFF;
    transition: all .3s ease-in-out;
}

.backBtn::before {
    display: inline-block;
    padding-left: .5rem;
    content: "\2190 ";
    transition: transform 0.3s ease-out;
}

.backBtn:hover {
    color: #fdfdfd;
}

.backBtn:hover::before {
    transform: translateX(-4px);
}

.list-group-item a,
.printBtn {
    color: #FFF !important;
    cursor: pointer;
    transition: all .1s ease-in;
}

.list-group-item a:hover,
.printBtn:hover {
    color: #eeeeee !important;
}

.photosContainer {
    width: 98%;
}

@media (min-width: 1250px) {
    .photosContainer {
        width: 10%0;
    }
}

.imgContainer {
    position: relative;
}

.imgContainer img {
    border-radius: 3px;
    object-fit: cover;
}

.imgTextContainer {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    transition: all .5s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.imgTextContainer::before {
    background-color: rgba(0, 0, 0, .3);
    border-radius: 3px;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.imgText {
    background-color: #000;
    border-radius: 2px;
    color: #FFF;
    padding: 4px 8px;
    z-index: 1;
}

.imgContainer:hover .imgTextContainer {
    opacity: 1;
}

.mainPhoto {
    height: 500px;
}

.mainPhoto img {
    display: inline-block;
    height:100%;
    object-fit: cover;
    width:100%;
}

.sidePhotos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidePhoto {
    cursor: pointer;
    height: 242px;
    object-fit: cover;
}

.noscroll {
    position: fixed !important
}

@media (max-width: 767px) {
    .listOptions {
        justify-content: center;
    }

    .photosContainer,
    .mainPhoto {
        height: 300px;
    }

    .sidePhotos {
        display: none;
    }

    .photosContainer .col-md-8 {
        padding-right: 0 !important;
    }
}

@media print {
    .noPrint {
        display: none !important;
    }
}