html {
    background-color: #93d4ff;
}

body {
    background-color: transparent;
    font-size: 14px;
}

.header {
    position: fixed;
    height: 106px;
    width:100%;
    top: 0px;
    padding: 20px;
    background-color: #00a2e0;
    text-align: center;
    z-index: 10;
}

.header .logo {
    position: absolute;
    left: 20px;
    top: 10px;
    background-image: url('/storage/images/logo_header.png');
    background-repeat: no-repeat;
    height: 86px;
    width: 100%;
    display: inline-block;
}

.header h1 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
}

#propertyImageSlider .carousel-inner .carousel-item img {
    object-fit: cover;
    object-position: center;
    height: 80vh;
    overflow: hidden;
}

#main-wrapper {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;

    position: relative;
    top: 20px;
    padding:0px;
    background-color: white;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    min-height: 20vh;
}

#main-wrapper .photo img {
    width: 80%;
    padding: 10px;
    background-color: white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    filter: drop-shadow(5px 5px 10px #000000);
}

.page-wrapper {
    padding:30px 15px;
}

.btn:hover, .btn:focus {
    color:white !important;
}
.btn-blue {
    color:white !important;
    background-color: #00a2e0 !important;
}
.btn-blue:hover, .btn-blue:focus {
    color:white !important;
    background-color: #0895cb !important;
}
.btn-green {
    color:white !important;
    background-color: #08c847 !important;
}
.btn-green:hover, .btn-green:focus {
    color:white !important;
    background-color: #0bbd46 !important;
}
.btn-orange {
    color:white !important;
    background-color: #ffa900 !important;
}
.btn-orange:hover, .btn-orange:focus {
    color:white !important;
    background-color: #eb9e06 !important;
}
.btn-red {
    color:white !important;
    background-color: #fc2c2c !important;
}
.btn-red:hover, .btn-red:focus {
    color:white !important;
    background-color: #d92323 !important;
}
.btn-purple {
    color:white !important;
    background-color: #da00f7 !important;
}
.btn-purple:hover, .btn-purple:focus {
    color:white !important;
    background-color: #c908e3 !important;
}
.btn-teal {
    color:white !important;
    background-color: #008080 !important;
}
.btn-teal:hover, .btn-teal:focus {
    color:white !important;
    background-color: #0c6868 !important;
}

.section-hidden {
    display: none;
}

@media (max-width: 576px) {
    #propertyImageSlider .carousel-inner .carousel-item img {
        height: 50vh;
    }
    #main-wrapper {
        top: 36px;
    }
}