@import url('css/open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css?family=Muli');

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Muli;
}

.no-decoration {
    text-decoration: none;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #000;
        stroke-width: 1rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #225fac;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    inset: calc(20vh + 1.15rem) 0 auto 0.1rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
        content: url('/images/SquareLogo.png');
    }

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
}

.menuLink {
    color: #000 !important;
    text-decoration: none;
}

.indent25 {
    text-indent: 25px;
}

.menuLinkMain {
    padding: 16px 20px;
}


.k-button-solid-primary {
    background-color: #000 !important;
    border-color: #000 !important;
}


.k-grid-header .k-grid-filter.k-active, .k-grid-header .k-header-column-menu.k-active, .k-grid-header .k-grid-header-menu.k-active, .k-grid-header .k-hierarchy-cell .k-icon.k-active, .k-grid-header .k-hierarchy-cell .k-svg-icon.k-active {
    color: white !important;
    background-color: #000 !important;
}

.resizable-editor {
    min-height: 250px;
}

.k-grid td.vertical-aligned-cell {
    vertical-align: top;
}

.popover {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

.seven-cols-header .col-xs-1 {
    width: 14.285714285714285714285714285714%;
    font-size: 1rem;
    color: #555;
    padding-left: 4px;
}

.seven-cols .col-xs-1 {
    width: 14.285714285714285714285714285714%;
    height: 80px;
    font-size: .75rem;
}

.calendar-container {
    border: 1px solid #DDD;
    padding: 0px !important;
    margin: 0px !important;
}

.calendar-cell {
    border: 1px solid #DDD;
    padding: 0px !important;
    margin: 0px !important;
}

.calendar-cell-header {
    height: 20px;
}

.calendar-cell-content {
    height: 60px;
    overflow-y: auto;
    overflow-x: hidden;
}

li p {
    margin-bottom: 0 !important;
}

.k-editor-content {
    max-height: 600px;
}

/*medium only*/
@media (min-width: 768px) and (max-width: 991px) {
    .seven-cols .col-xs-1 {
        height: 100px !important;
        font-size: .85rem;
    }

    .calendar-cell-header {
        height: 25px !important;
        background-color: transparent;
    }

    .calendar-cell-content {
        height: 75px !important;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

/*large*/
@media (min-width: 992px) and (max-width: 1199px) {
    .seven-cols .col-xs-1 {
        height: 125px !important;
        font-size: 1rem;
    }

    .calendar-cell-header {
        height: 25px !important;
        background-color: transparent;
    }

    .calendar-cell-content {
        height: 100px !important;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

/*extra large and higher*/
@media (min-width: 1200px) {
    .seven-cols .col-xs-1 {
        height: 150px !important;
        font-size: 1rem;
    }

    .calendar-cell-header {
        height: 25px !important;
        background-color: transparent;
    }

    .calendar-cell-content {
        height: 125px !important;
        overflow-y: auto;
        overflow-x: hidden;
    }
}


/*ViewerJS Hidden Tools*/
.viewer-play,
.viewer-prev,
.viewer-next {
    display: none;
}

.viewer-backdrop {
    background-color: rgba(0, 0, 0, .8) !important;
}

img.not-selected {
    opacity: 0.6;
}

.gallery-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .gallery-image-overlay img {
        opacity: 0.4;
    }



.gallery-image-overlay-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
}



/*Quick Grid Styling*/
.quickgrid[theme=default] tr td {
    vertical-align: middle;
}

.quickgrid[Virtualize=true] tr, .virtualize tr {
    height: 42px;
}


/* Nav & Links */

a.normalHyperLink {
    text-decoration: none;
}

    a.normalHyperLink:hover {
        text-decoration: underline;
    }

    a.normalHyperLink.active {
        color: rgba(var(--bs-secondary-rgb)) !important;
    }


.mainheader a{
    font-size: 1rem;
    letter-spacing: 1pt;
    font-weight: bold;
}

    .mainheader a.normalHyperLink.active {
        color: rgba(var(--bs-tertiary-rgb)) !important;

    }

    .mainheader a.normalHyperLink:hover {
        color: rgba(var(--bs-tertiary-rgb)) !important;
        text-decoration: none;
        /*border-bottom: 5px solid rgba(var(--bs-tertiary-rgb));*/
    }

label .form-label {
    font-weight: bold;
}

.floorplan-img-cap {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

.blog-img-cap {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}


#floorplan-nav a.active {
    color: rgba(var(--bs-tertiary-rgb));
}

.cursor-pointer {
    cursor: pointer;
}



/* QUILL OVERRIDES*/
.ql-snow.ql-toolbar button#savechanges {
    border: 1px solid rgba(var(--bs-primary-rgb));
    background: rgba(var(--bs-primary-rgb));
    color: white;
    height: auto;
}

    .ql-snow.ql-toolbar button#savechanges:hover {
        color: rgba(var(--bs-primary-rgb));
        background: white;
    }

div#home-alert {
    margin: 0;
}

    div#home-alert p {
        margin: 0;
    }

.ql-align-left {
    text-align: left;
}

.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}


h1, h2, h3, h4, h5, h6 {
    outline: none !important;
    border: none !important;
}

    h1:focus, h2:focus, h3:focus, h4:focus, h5:focus, h6:focus {
        outline: none !important;
        border: none !important;
    }


#blogbanner {
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ),url('images/sable_blogbanner.png');
    background-size: cover;
    background-position: center center;
    height: 400px;
    width: 100%;
    position: relative;
    text-align: center;
}

    #blogbanner h1, #singleblogbanner h1 {
        color: white;
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        font-weight: bold;
    }

#singleblogbanner {
    background-size: cover;
    background-position: center center;
    height: 400px;
    width: 100%;
    position: relative;
    text-align: center;
    background-repeat: no-repeat;
}

/* Blazor Bootstrap Google Map Floating Title. It's ugly as sin */
.gm-style-iw-a {
    display: none !important;
}

/* Blazor Bootstrap Carousel*/
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: black;
}

.carousel-indicators button:hover {
    opacity: 1;
}

#home-featured button.carousel-control-next, #home-testimonials button.carousel-control-next {
    right: -85px;
}

#home-featured button.carousel-control-prev, #home-testimonials button.carousel-control-prev {
    left: -85px;
}

/*small down*/
@media (max-width: 768px) {

    #home-featured button.carousel-control-next, #home-testimonials button.carousel-control-next {
        right: 0;
    }

    #home-featured button.carousel-control-prev, #home-testimonials button.carousel-control-prev {
        left: 0;
    }
}


/*medium only*/
@media (min-width: 768px) and (max-width: 991px) {
    #home-featured button.carousel-control-next, #home-testimonials button.carousel-control-next {
        right: 0;
    }

    #home-featured button.carousel-control-prev, #home-testimonials button.carousel-control-prev {
        left: 0;
    }
}


/* Agent Preview */
.listing-agent-viewer a {
    text-decoration: none;
}

.listing-agent-viewer .card-md2 {
    position: relative;
    width: 300px;
    height: 400px;
    background-color: white;
}

    .listing-agent-viewer .card-md2 .banner {
        position: relative;
        margin-top: -154px;
        width: 100%;
        height: 150px;
        background-color: rgba(var(--bs-primary-rgb));
        background-size: cover;
        border-bottom: solid 1px lightgrey;
    }


    .listing-agent-viewer .card-md2 .photo {
        z-index: 3;
        position: relative;
        border-radius: 50%;
        height: 150px;
        width: 150px;
        background-color: white;
        margin: 0 auto;
        background-size: cover;
        background-position: 50% 50%;
        top: 75px;
        -webkit-box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.3);
        -moz-box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.3);
        box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.3);
    }

    .listing-agent-viewer .card-md2 ul {
        list-style: none;
        text-align: center;
        padding-left: 0;
        margin-top: 87px;
        margin-bottom: 30px;
        font-size: 20px;
    }

    .listing-agent-viewer .card-md2 i {
        font-size: 25px;
        display: inline-block;
        margin-top: 10px;
        margin-left: 40px;
        margin-right: 150px;
        width: 300px;
        text-align: left;
    }

    .listing-agent-viewer .card-md2 .social-media-banner {
        width: 300px;
        height: 50px;
        text-align: center;
        position: absolute;
        bottom: 15px;
    }


        .listing-agent-viewer .card-md2 .social-media-banner a i {
            display: inline;
            width: auto;
            margin-right: 15px;
            margin-left: 10px;
        }

.social-media-banner a i:hover {
    color: rgba(var(--bs-secondary-rgb));
}



/*small*/
@media (max-width: 768px)  {

    div.home-div-img {
        min-height: 250px;
    }
}


.blockquote-footer {
    color: var(--bs-secondary);
}

.bg-primary .blockquote-footer {
    color: var(--bs-tertiary);
}

