:root {
    --my-black: #282c34;
    --my-blue: #052c65;
    --my-gray: #ececec;
    --my-gray-hover: #ced1d6;
    --my-green: #198754;
    --my-green-hover: #146c43;
    --my-red: #b61a2d;
    --my-red-hover: #c71c30;
    --my-orange: #fd7e14;
    --my-orange-hover: #fd9843;
}

@font-face {
    font-family: 'TitiliumRegular';
    src: url('Fonts/Titillium/TitilliumWeb-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    padding: 0;
    margin: 0;
    color: var(--my-blue);
    background-color: var(--my-gray);
    letter-spacing: 0.5px;
    font-family: sans-serif;
    font-size: 1rem;
}

#logo {
    width: 200px;
}

#banner {
    background-color: var(--my-blue);
    width: 100%;
    min-height: 450px;
    border-radius: 10px;
    position: relative;
}

#banner-content-container, #banner-image-container {
    min-width: 350px;
}

#banner-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
}

#banner-content {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    padding-left: 5%;
}

#banner-button {
    width: 300px;
    height: 80px;
    font-size: 1.5rem;
}

.section-card {
    width: 32%;
    min-width: 300px;
}

.leaflet-marker-icon {
    border-radius: 50% !important;
}

.btn-orange {
    color: white;
    background-color: var(--my-orange);
    border-color: var(--my-orange);
}
.btn-orange:hover {
    color: white;
    background-color: var(--my-orange-hover);
    border-color: var(--my-orange-hover);
}
.btn-orange:active {
    background-color: var(--my-orange-hover);
    border-color: var(--my-orange-hover);
}

.btn-danger {
    background-color: var(--my-red);
    border-color: var(--my-red);
}
.btn-danger:hover {
    background-color: var(--my-red-hover);
    border-color: var(--my-red-hover);
}
.btn-danger:active {
    background-color: var(--my-red-hover);
    border-color: var(--my-red-hover);
}

.bg-primary {
    background-color: var(--my-blue) !important;
    color: white;
}

.bg-gray {
    background-color: var(--my-gray);
}


.box-container {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 0 2px 8px;
    border-radius: 10px;
    padding: 20px;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
}

.icon-wrapper .bi {
    position: absolute;
    top: 5px;
    left: 12px;
}

.input-invalid {
    border: 2px solid var(--my-red) !important;
}

.my-spinner-container {
    width: 95%;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.my-spinner {
    width: 35px; height: 35px;
    z-index: 2000;
}

.content-header {
    font-size: 35px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.content-container {
    min-height: 90vh;
}

.right-radius-5 {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.word-break {
    word-break: break-all;
}

.pointer {
    cursor: pointer;
}

.section-card-image {
    max-width: 100px !important;
}

.order-property {
    width: 250px;
    margin-bottom: 1rem;
}

.profile-user-photo {
    width: 200px;
}



.sm-hide {
    display: block !important;
}
.sm-show {
    display: none !important;
}
.small-image {
    width: 48px;
    height: 48px;
}

@media (max-width: 992px) {
    .sm-hide {
        display: none !important;
    }
    .sm-show {
        display: block !important;
    }
    .small-image {
        width: 120px;
        height: 120px;
    }

    html {
        font-size: 32px;
    }

    #logo {
        width: 400px;
    }
    #banner {
        flex-direction: column !important;
        justify-content: space-around !important;
        min-height: 40vh !important;
    }
    #banner-content {
        font-size: 2rem !important;
        text-align: center;
    }
    #banner-button {
        width: 500px;
        height: 100px;
    }
    #banner-image {
        width: 80%;
        height: 80%;
        max-width: 750px;
        max-height: 750px;
    }



    .section-card {
        width: 100% !important;
    }
    .section-card-image {
        max-width: 250px !important;
    }
    .order-property {
        width: 350px;
    }
    .profile-user-photo {
        width: 500px;
    }

}
