﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
:root {
    --primary-color: #fff;
    --secondary-color: #888;
    --primary-text-color: #fff;
    --primary-gradient-text-color: #333;
    --secondary-text-color: #888;
    --primary-gradient: #fff;
}

body {
    font-family: 'Montserrat';
}
.flex-even {
    flex: 1 !important;
}
a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}
.bg-primary {
    background: var(--primary-color) !important;
    color: white !important;
}
.bg-secondary {
    background: var(--secondary-color) !important;
    color: white !important;
}
.bg-primary-gradient {
    background: var(--primary-gradient) !important;
    color: white !important;
}
.text-primary-gradient {
    color: var(--primary-gradient-text-color) !important;
}
.text-primary {
    color: var(--primary-text-color) !important;
}
.text-secondary {
    color: var(--secondary-text-color) !important;
}
.font-monospace{
    font-family: monospace;
}
.br-4 {
    border-radius: 4px;
}
.br-8 {
    border-radius: 8px;
}
.br-12 {
    border-radius: 12px;
}
.br-16 {
    border-radius: 16px;
}


.card .card-header.card-header-nav {
    padding: 6px 20px;
}
.card{
    border: 0;
}
.card .card-header {
    border-radius: 0;
}
.card .card-header .nav-tabs {
    border: 0;
}
    .card-header .nav-tabs .nav-link {
        color: #fff;
        border-radius: 8px;
        border: 0;
    }
    .card-header.bg-primary .nav-tabs .nav-link.active {
        border: 0;
        background: var(--secondary-color);
        border-radius: 8px;
    }
    .card-header.bg-secondary .nav-tabs .nav-link.active {
        border: 1px solid var(--primary-color);
        background: var(--primary-color);
        color: #fff;
        border-radius: 8px;
    }

.card .card-footer .card-toolbar {
    top: 50% !important;
}
.card .card-toolbar {
    position: absolute;
    top: 23.8px !important;
    right: 20px;
    transform: translate(0, -50%);
    z-index: 100;
}
@media only screen and (max-width: 768px) {
    .card .card-header.toolbar-block-mobile {
        display: flex;
        flex-direction: column-reverse !important;
    }
    .card .card-header.toolbar-block-mobile .card-toolbar {
        position: initial !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
    }
        .card .card-header.toolbar-block-mobile .card-toolbar > .d-flex {
            flex-wrap: wrap !important;
        }
}

.room_type.bedroom .bed-info {
    background: white;
    padding: 6px 0px;
    border-radius: 4px;
    box-shadow: 0 2px 3px 0px #999;
    margin-right: 1px;
}

    .room_type.bedroom .bed-info .bed-count {
        font-size: 18px;
        text-align: center;
        text-shadow: 0 2px 6px #777;
    }

    .room_type.bedroom .bed-info .bed-name {
        text-align: center;
        font-size: 13px;
        font-weight: 500;
    }

    .room_type.bedroom .bed-info .bed-svg {
    }

.room_type {
    box-shadow: 0px 2px 3px 0px #999;
    border-radius: 4px;
    padding: 15px 30px 15px;
}

    .room_type > h4 {
        margin-left: -15px;
    }

    .room_type.bathroom, .room_type.bedroom {
        height: calc(100% - 80px);
    }

    .room_type .amenities-box .amenity-box {
        background: white;
        display: inline-block;
        border-radius: 4px;
        padding: 0;
        margin-right: 5px;
        text-align: center;
        width: calc(100% - 5px);
    }

    .room_type.bathroom .amenities-box .amenity-box {
        box-shadow: 0px 2px 4px 0px #aaa;
    }

    .room_type .amenities-box .amenity-box > img {
        width: 40px;
        height: 40px;
        margin: 5px;
        margin-left: calc(50% - 20px);
    }

    .room_type .amenities-box .amenity-box > p {
        margin-bottom: 5px;
        padding: 0 5px;
    }

    .room_type.bathroom, .room_type.bedroom {
        position: relative;
        padding-top: 35px;
    }

        .room_type.bathroom .room_label,
        .room_type.bedroom .room_label {
            position: absolute;
            top: 0;
            left: 0;
            margin: 0;
            padding: 0.2rem 0.4rem;
            background: #a87c2c;
            color: #4b1853;
            border-top-left-radius: 4px;
            font-size: 17px;
        }

.amenity-image-box {
    background-color: #ececec;
    border-radius: 4px;
    margin-bottom: 30px;
}

.amenity-with-image {
    position: relative;
    padding-top: 66.666%;
    width: 100%;
}

.amenity-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.amenity-info {
    height: 48px;
}
    .amenity-info.amenity-info-compact {
        height: 24px;
    }

.amenity-image img {
    height: 100%;
    width: 100%;
    border-top-right-radius: 4px;
    object-fit: contain;
}

.amenity-info > div {
    font-weight: 500;
    font-size: 11px;
    text-align: center;
}
.min-height-40px {
    min-height: 40px;
}
.min-height-70px {
    min-height: 70px;
}
.property_description ul, .property_description li, .property_description div, .property_description ol, .property_description p {
    font-size: 14px;
    font-weight: 400;
}
.property_description h1, .property_description h2, .property_description h3, .property_description h4, .property_description h5, .property_description h6 {
    font-size: 15px;
    font-weight: 700;
}
.height-3rem {
    height: 3rem;
}
.height-70px {
    height: 70px;
}
ul.two-columns, ol.two-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
ul.list-style-none, ol.list-style-none {
    list-style: none;
}
ul.list-style-square, 
ol.list-style-square {
    list-style: square;
}
.fz-12px {
    font-size: 12px;
}
.fz-13px {
    font-size: 13px;
}
.fz-14px {
    font-size: 14px;
}
.fz-15px {
    font-size: 15px;
}
.fz-18px {
    font-size: 18px;
}
.amount{
    font-family: monospace;
}
.compact-proposal-card-left-btn {
    border-radius: 0;
    border-bottom-left-radius: 8px;
    border-right: 1px solid #ccc;
    font-weight: 500;
}
.compact-proposal-card-right-btn {
    border-radius: 0;
    border-bottom-right-radius: 8px;
    border-left: 1px solid #ccc;
    font-weight: 500;
}