@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@300;500&family=Montserrat:wght@300;500;600&display=swap');

/*<editor-fold desc="Global">*/
* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'icons';
    src:  url('/fonts/icons/icons.eot');
    src:  url('/fonts/icons/icons.eot') format('embedded-opentype'),
    url('/fonts/icons/icons.ttf') format('truetype'),
    url('/fonts/icons/icons.woff') format('woff'),
    url('/fonts/icons/icons.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

:root {
    --padding-basis: 16px;
    --padding-basis-small: 8px;
    --primary-color: #3E608E;
    --secondary-color: #796B66;
    --tertiary-color: #3F8D6C;
    --background-color: #f0f0f0;
}

html {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 100;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

ul {
    margin: 0;
    padding-left: 30px;
}

li {
    /*margin: 0;
    padding: 0;*/
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

p, address, ul {
    line-height: 150%;
    font-style: normal;
}

a {
    text-decoration: none;
    font-weight: 100;
    color: var(--primary-color);
}

nav a {
    font-weight: 600;
}

.a-none:hover {
    filter: none;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:has(span) {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-bottom: 60px;
    flex-grow: 1;
}

main:not(:has(.hug-top:nth-child(1))) {
    padding-top: 60px;
}

form {
    display: flex;
    flex-direction: column;
    gap: var(--padding-basis-small);
}

label {
    display: flex;
    flex-direction: column;
    gap: var(--padding-basis-small);
}

label:has(input[type=checkbox]) {
    flex-direction: row;
    align-items: center;
}

input[type="checkbox"] {
    appearance: none;
    margin: 0;
    border-radius: 1000px;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: var(--primary-color);
}

input[type="checkbox"]:checked:after {
    content: "\2713";
    color: white;
    position: absolute;
    /* width: 100%; */
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-weight: 900;
}

label > span {
    font-size: .8em;
    font-weight: 600;
}

input, textarea, select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: var(--padding-basis-small);
    font-size: 1em;
    font-weight: 100;
    min-height: 44px;
    min-width: 44px;
}

select {
    appearance: none;
}

input[type="submit"] {
    background-color: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover {
    border: 2px solid var(--tertiary-color);
    background-color: white;
    color: var(--tertiary-color);
}

.icon {
    font-family: 'icons', sans-serif;
}

/*</editor-fold>*/

/*<editor-fold desc="Generic Custom Containers">*/
.content-fitter-full {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-fitter-full > *, .content-fitter {
    max-width: 1200px;
    width: calc(100% - calc(2 * var(--padding-basis)));
    align-self: center;
}

.content-fitter-small {
    max-width: 800px;
    width: calc(100% - calc(2 * var(--padding-basis)));
}

.content-fitter-small h3 {
    align-self: center;
}

.content-lister {
    display: flex;
    flex-direction: column;
    gap: var(--padding-basis);
    align-items: stretch;
}

.content-lister.small {
    gap: var(--padding-basis-small);
}

.content-lister.columns {
    flex-direction: row;
    flex-wrap: wrap;
}
.content-lister.columns > * {
    flex-basis: 200px;
    flex-grow: 1;
}

.content-lister.vertical {
    align-items: center;
}

.content-lister.horizontal {
    flex-direction: row;
    align-items: center;
}

.columns {
    text-align: center;
}

.content-columns {
    display: flex;
    flex-direction: row;
    gap: var(--padding-basis);
    justify-content: center;
}

.content-columns > * {
    flex-grow: 1;
    flex-basis: 0;
}

.banner-text {
    background-color: var(--secondary-color);
    padding: 60px 0;
    color: white;
}

.no-gap {
    gap: 0;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    gap: 7px;
}
/*</editor-fold>*/

/*<editor-fold desc="Generic Custom Text">*/
.notable-text {
    font-weight: 600;
}

.a-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a-button-secondary {
    font-weight: 600;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.a-button:hover {
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
}

.a-button-secondary:hover {
    text-decoration: underline;
}

.money {
    color: #10A34C;
}
/*</editor-fold>*/

/*<editor-fold desc="Header">*/
nav {
    box-shadow: 0 0 10px 0 #00000040;
    border-bottom: 2px solid var(--primary-color);
    z-index: 200;
    position: sticky;
    top: 0;
    background-color: white;
}

#nav-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}

#hamburger-menu, #hamburger-checkbox {
    display: none;
}

nav a {
    width: 150px;
    background-color: white;
    transition: 75ms;
    position: relative;
    border: 1px solid #eee;
    margin-left: -1px;
    margin-right: -1px;
    border-top: none;
    border-bottom: none;
}

nav a:hover {
    z-index: 101;
    padding-top: 8px;
    margin-bottom: -8px;
    box-shadow: 0 1px 4px 0 #00000020;
    border-bottom: 2px solid var(--primary-color);
    border-left: none;
    border-right: none;
    text-decoration: none;
    filter: none;
}

header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.logo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 300px;
    background-size: cover;
    background-position: center bottom;
}

#header-images-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-image-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

#advantage-logo {
    width: 100vw;
    max-width: 450px;
    position: relative;
    margin-bottom: -50px;
    z-index: 100;
}

#advantage-logo:hover {
    filter: none;
}

#advantage-logo img {
    display: block;
    width: 100%;
    height: auto;
}

#admin-nav {
    margin: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--padding-basis);
}
/*</editor-fold>*/

/*<editor-fold desc="Contact Information">*/
#contact-information {

}
#contact-information h4 {
    font-size: .8em;
    font-weight: 600;
}

#contact-information p, #contact-information address {
    font-weight: 100;
}

.contact-icon-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-background {
    position: absolute;
}

.contact-icon {
    z-index: 1;
    position: relative;
    width: 60%;
    height: 60%;
}

.contact-info-wrapper:hover {
    filter: brightness(1.3);
    text-decoration: none;
}

.contact-info-wrapper * {
    transition: 75ms;
}

.contact-info-wrapper:hover .contact-icon-background {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-wrapper:hover .contact-icon {
    transform: scale(1.2) rotate(-10deg);
}
/*</editor-fold>*/

/*<editor-fold desc="Slideshow">*/
#slideshow {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: var(--tertiary-color);
}

.slide {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 50px);
    max-width: 500px;
    height: 250px;

    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stars img {
    opacity: 0;
    height: 30px;
    width: 30px;
}

.star-in {
    animation: star-in .6s;
    animation-fill-mode: both;
}

.star-out {
    opacity: 1!important;
}

.stars img:nth-child(1) {animation-delay: 500ms;}
.stars img:nth-child(2) {animation-delay: 650ms;}
.stars img:nth-child(3) {animation-delay: 800ms;}
.stars img:nth-child(4) {animation-delay: 950ms;}
.stars img:nth-child(5) {animation-delay: 1100ms;}

@keyframes star-in {
    from {opacity: 0; transform: translateY(30px) rotate(30deg); scale(.7);}
    50% {opacity: 1; transform: scale(1.4);}
    59% {filter: brightness(100%); transform: scale(.8);}
    60% {filter: brightness(190%); transform: scale(.8);}
    to {opacity: 1; filter: brightness(100%); transform: scale(1);}
}

.large-quote {
    font-size: 32px;
    line-height: 1em;
    font-weight: 300;
    font-family: 'Courgette', cursive;
    margin: 10px 0 20px;
}

.large-quoter {
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.slide-in {
    animation: slide-in 1s;
    animation-fill-mode: both;
}

.slide-out {
    animation: slide-out 1s;
    animation-fill-mode: both;
}

@keyframes slide-in {
    from {opacity: 0; transform: translateY(20px);}
    15% {opacity: 0; transform: translateY(20px);}
    to {opacity: 1;}
}

@keyframes slide-out {
    from {opacity: 1;}
    60% {opacity: 0; transform: translateY(-20px);}
    to {opacity: 0; transform: translateY(-20px);}
}
/*</editor-fold>*/

/*<editor-fold desc="Misc">*/
.service-wrapper {
    background-color: var(--primary-color);
    color: white;
    margin-top: 40px;
    padding: 10px 0;
}

.service-text {
    margin: 30px 0;
}

.service-image > img {
    width: 150px;
}

.service {
    display: flex;
    align-items: center;
    gap: var(--padding-basis);
}
/*</editor-fold>*/

/*<editor-fold desc="Properties">*/

.property-wrapper {
    width: 100%;
    border-radius: 16px;
}

.a-property-list {
    background-color: var(--primary-color);
    color: white;
    border-radius: 16px;
    /* overflow: hidden; */
    border: 2px solid var(--primary-color);
}
.a-property-list:hover {
    filter: none;
    text-decoration: none;
    background-color: white;
    color: var(--primary-color);
}

.property-list-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}

.property-list-content-image {
    width: 300px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.property-list-content-image > img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.property-list-content-text h3 {
    font-weight: 300;
}

.property-list-content-text h4 {
    font-size: 15px;
}

.property-list-content-text p {
    font-size: 20px;
}

.bed-bath {
    font-size: 15px;
}

.manage-properties-property {
    border-radius: 5px;
    padding: 3px 1px;
    margin: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.active-properties-list .manage-properties-property:hover {
    cursor: move;
    background-color: #aDf2a3;
}

.manage-properties-property-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.manage-properties-property p, .add-property-button p {
    width: auto;
    margin: 0 4px;
}

.manage-properties-property a {
    font-size: 15px;
    padding: 2px;
    border-radius: 5px;
    margin: 0px 15px;
    text-align: center;
    color: rgba(0,0,0,.3);
    font-weight: 600;
}

.manage-properties-property a:hover {
    color: rgba(255,255,255,.8);
}

.active-properties-list .manage-properties-property {
    background-color: #7DE273;
    border: 1px solid #3BB213;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

.inactive-properties-list .manage-properties-property {
    background-color: #FC8B6F;
    border: 1px solid #DD674F;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

.add-property-button {
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #eeeeee;
    font-weight: 300;
    color: #bbbbbb;
    transition: 100ms;
    border: 1px solid #cccccc;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.add-property-button:hover {
    background-color: #dddddd;
    border-color: #bbbbbb;
    color: #aaaaaa;
    text-decoration: none;
}

.add-property-button:hover .plus-button {
    color: #dddddd;
    background-color: #aaaaaa;
}

.plus-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    margin-left: 2px;
    transition: 100ms;
    background-color: #cccccc;
    color: #eeeeee;
}

.plus-button p {
    display: block;
    text-align: center;
    font-weight: 900;
    font-size: 19px;
}

.form-item-wrapper {
    padding: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.property-info-fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.property-info-fields .input-large {
    width: 100%;
}

.property-info-fields .input-medium {
    width: 50%;
}

.property-info-fields .input-small {
    width: calc(100%/3);
}

.property-info-fields .input-checkbox {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.delete-information form {

    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.delete-information p {
    text-align: center;
}

.image-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 850px;
}

.secondary-images-wrapper .image-info-wrapper {
    cursor: move;
}

.image-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.image-info-image {
    height: 200px;
    width: 200px;
    background-size: cover;
    background-position: center;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #777777;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.primary-image-wrapper .image-info-image {
    width: calc(200px * 4 + 30px);
    height: 300px;
}

.secondary-images-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 5px;
}

.image-info-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
    padding: 5px;
    /*min-height: 60px;*/
    height: 100%;
    transition: 100ms;
    box-shadow: inset 0 -60px 30px -30px rgba(0,0,0,0);
}

.primary-image-wrapper .image-info-text {
    justify-content: flex-end;
    align-items: stretch;
}

.secondary-images-wrapper .image-info-wrapper:hover .image-info-text {
    background-color: rgba(255,255,255,.3);
}

.image-info-wrapper:hover .image-info-text a, .image-info-wrapper:hover .image-info-text > div {
    opacity: 1;
}

.image-info-wrapper:hover .image-info-text {
    box-shadow: inset 0 -40px 20px -20px rgba(0,0,0,0.3);
}

.image-info-text a, .image-info-text > div {
    opacity: 0;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    font-weight: 500;
    /*transform: translateY(60px);*/
    transition: transform 150ms, color 100ms, background-color 100ms, border-color 100ms, opacity 100ms;
    text-align: center;
    padding: 2px;
    background-color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    border-radius: 3px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.image-info-text a:hover {
    color: white;
    background-color: rgba(255,255,255,.7);
    border-color: rgba(255,255,255,.5);
}

.button-make-primary {
    width: 100%;
}

.button-make-primary:hover, .button-small-delete:hover {
    filter: unset;
    text-decoration: none;
}

.button-small-delete {
    width: 22px;
    height: 22px;
    background-color: rgba(255,100,100,.5)!important;
}

a:has(.add-new-image):hover {
    filter: unset;
    text-decoration: none;
}

.add-new-image {
    background-color: #eeeeee;
    border-color: #cccccc;
    text-align: center;
    color: #bbbbbb;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    transition: 100ms;
}

.add-new-image:hover {
    background-color: #dddddd;
    border-color: #bbbbbb;
    color: #aaaaaa;
}

.add-new-image:hover .large-plus-button {
    background-color: #cccccc;
    color: #dddddd;
}

.add-new-image p {
    margin: 0;
}

.large-plus-button {
    transition: 100ms;
    border-radius: 50%;
    background-color: #dddddd;
    color: #eeeeee;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.large-plus-button p {

    font-size: 40px;
}

.view-property-primary-image {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    overflow: hidden;
}

.view-property-primary-image-text-wrapper {
    min-height: 60px;
    padding: 5px;
    /*box-shadow: inset 0 -60px 60px -30px rgba(0,0,0,1);*/
    background-color: rgba(0,0,0,.6);
    text-shadow: 0 0 5px rgba(0,0,0,.7);
}

.view-property-primary-image-text-wrapper h3 {
    font-weight: 300;
    font-size: 36px;
    flex-basis: 100%;
}

.view-property-primary-image-text-wrapper p {
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 1;
}

.view-property-primary-image-text-wrapper p > span:nth-child(1) {
    margin-right: 20px;
}

.view-property-primary-image-text-wrapper > * {
    margin: -2px 0px;
    padding: 0;
}

.view-property-info, .view-property-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--padding-basis);
}

.view-property-info > *, .view-property-contact > * {
    flex-grow: 1;
    flex-basis: 0;
}

.view-property-info p, .view-property-contact p {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #e5e5e5;
    border: 1px solid #d5d5d5;
    border-radius: 7px;
    font-size: 16px;
    padding: 3px;
}

.view-property-tiny-header {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 130%;
    padding: 5px;
}

.view-property-images-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.view-property-image {
    width: 600px;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 5px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.view-property-image > img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/*</editor-fold>*/

/*<editor-fold desc="Application">*/
#application form {
    display: flex;
    flex-direction: column;
}

#application h3 {
    font-size: 24px;
    font-weight: 700;
}

.application-row {
    display: flex;
    flex-direction: row;
    gap: var(--padding-basis);
    /* flex-wrap: wrap; */
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    /* border-width: 1px 0; */
    flex-wrap: wrap;
}

.application-row:nth-last-child(1) {
    border-bottom: none;
}

.application-question {
    font-size: 12px;
    font-weight: 700;
}

.application-answer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.application-question-answer {
    /* padding: 5px; */
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    flex-shrink: 1;
    align-items: stretch;
    gap: var(--padding-basis-small);
}

#application p {
    margin: 3px 0;
    padding: 3px;
}
/*</editor-fold>*/

/*<editor-fold desc="Footer">*/
footer {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: var(--padding-basis-small);
    font-size: .8em;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

footer a {
    color: #ccddff;
    font-weight: 600;
}

footer a:hover {
    color: white;
}

.footer-business-info {
    display: flex;
    flex-direction: column;
    gap: var(--padding-basis-small);
    justify-content: flex-end;

}
/*</editor-fold>*/

#map {
    height: 450px;
    width: 100%;
    z-index: 0;
}

#property-display {
    border-radius: 20px;
    overflow: hidden;
    margin-top: -60px;
    box-shadow: 0 0 1px 0px #00000080, 0 0 5px 0 #00000040;
    position: relative;
    z-index: 1;
}

.property-display-primary-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.property-display-primary-image {
    position: absolute;
    width: 100%;
    height: calc(100% + 120px);
    object-fit: cover;
    object-position: top;
    z-index: -100;
}

.property-display-address {
    position: absolute;
    bottom: 7px;
    left: 7px;
    right: 7px;
    background-color: #ffffffa0;
    padding: 10px;
    color: white;
    text-shadow: 0 1px 3px #000000a0, 0 2px 7px #00000030;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 #00000070, 0 3px 7px 0 #00000030, inset 0 0 0 1px #ffffff40;
}

.property-display-address h3 {
    font-weight: 700;
    font-size: 1.4em;
}

.property-display-address h4 {
    font-weight: 100;
    font-size: .9em;
}

.property-display-info-wrapper {
    padding: 20px;
}

.property-display-details {
    display: grid;
    grid-template: "a b c d" 0fr / auto 1fr auto auto;
    gap: 20px;
}

.property-display-details > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.property-display-details > .property-display-detail-displays {
    grid-area: a;
}

.property-display-details > .property-display-detail-display-price {
    grid-area: c;
}

.property-display-details > .property-display-detail-apply-button {
    grid-area: d;
}

.detail-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    line-height: 1.3;
}

.detail-display .label {
    font-size: .8em;
    font-weight: 400;
}

.detail-display .value {
    font-size: 1.2em;
    font-weight: 600;
}

.property-display-images-wrapper img {
    width: 100%;
    display: block;
}

.property-list-property {
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 1px 0px #00000080, 0 0 5px 0 #00000040;
}

.property-list-property-info-wrapper {
    display: grid;
    grid-template: "a b c" 0fr "d d d" auto / auto 1fr auto;
    flex-grow: 1;
    gap: 20px;
    padding: 20px;
    align-content: space-between;
}


.property-detail-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.property-list-property-info-wrapper > .property-display-details {
    grid-area: a;
}

.property-list-property-info-wrapper > .property-detail-money {
    grid-area: c;
}

.property-list-property-info-wrapper > .property-detail-buttons {
    grid-area: d;
}

.property-list-property > .property-display-primary-image-wrapper {
    flex-basis: 70%;
    min-height: 400px;
}

@media (max-width: 1100px) {
    .property-list-property {
        flex-direction: column;
    }
}


@media (max-width: 700px) {
    nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 10px;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
    }
    #nav-list {
        display: none;
        flex-direction: column;
        align-items: stretch;
        font-size: 1.5em;
        gap: 20px;
    }
    #nav-list a {
        box-shadow: none;
        width: unset;
        border: none;
    }
    nav:has(#hamburger-checkbox:checked) {
        bottom: 0;
    }
    #hamburger-menu {
        display: flex;
        align-items: flex-start;
        color: var(--primary-color);
    }
    #hamburger-close, #hamburger-open {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8em;
    }
    nav a:hover {
        padding-top: unset;
        margin-bottom: unset;
        box-shadow: none;
        border-bottom: none;
    }

    #hamburger-close {
        display: none;
    }
    #hamburger-checkbox:checked ~ #hamburger-menu > #hamburger-open {
        display: none;
    }
    #hamburger-checkbox:checked ~ #hamburger-menu > #hamburger-close {
        display: flex;
    }
    #hamburger-checkbox:checked ~ #nav-list {
        display: flex;
    }


    .content-columns {
        flex-direction: column;
    }

    .property-list-content {
        flex-direction: column;
        align-items: stretch;
    }

    .property-list-content-image {
        width: 100%;
        height: 180px;
    }

    .property-list-content-text h3 {
        margin: 10px 0 0;
    }

    .property-list-content-text h4 {
        margin: -2px 0 10px;
    }

    .property-list-content-text p {
        margin: 0;
    }

    .application-row {
        flex-direction: column;
    }

    #slideshow {
        height: 400px;
    }

    .view-property-info, .view-property-contact {
        flex-direction: column;
    }

    .manage-properties-property {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .manage-properties-property-buttons {
        flex-direction: column;
    }

    .footer-content-wrapper {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: var(--padding-basis);
        display: flex;
    }

    .property-display-details {
        display: grid;
        grid-template: "a b c" 0fr "d d d" auto / auto 1fr auto;
    }

    .property-display-details .apply-wrapper {
        align-self: stretch;
        flex-direction: column;
        justify-content: space-between;
    }

    .apply-wrapper .a-button {
        width: 100%;
    }
}

