.propertyDetailsHeader {
    margin: 0 auto;
    padding-top: 6rem;
    max-width: 1200px;
}

.headerBtns {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.backBtn {
    align-self: center;
    color: #222;
    font-weight: 600;
    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: #4E4E4E;
}

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

.listOptions {
    margin-bottom: 0 !important;
    /* margin-left: 4rem; */
}

.list-group-item {
    border: none !important;
}

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

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

.photosContainer {
    display: flex;
    gap: 2rem;
    margin: 1rem auto 0 auto;
    width: 98%;
}

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

.mainImg {
    flex: 2;
}

.propertyDetailImg,
.sidePhoto {
    border-radius: .5rem;
}

.imgContainer {
    position: relative;
}

.imgContainer img {
    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: 0.5rem;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

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

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

.mainPhoto {
    height: 500px;
}

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

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

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

@media (min-width: 690px) {
    .listOptions {
        margin-left: 4rem;
    }
}

@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;
    }
}