: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;
}

@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-size: 18px !important;
    font-family: sans-serif;
}

.leaflet-marker-icon {
    border-radius: 50% !important;
}

.btn-primary {
    background-color: var(--my-red);
    border-color: var(--my-red);
}

.btn-primary:hover {
    background-color: var(--my-red-hover);
    border-color: var(--my-red-hover);
}
.btn-primary:active {
    background-color: var(--my-red-hover);
    border-color: var(--my-red-hover);
}

.bg-gray {
    background-color: var(--my-gray);
}

.footer {
    background-color: white;
    height: 200px;
    font-size: 14px !important;
}

.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;
}

#logo {
    width: 150px;
    border-radius: 35px;
}

.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;
}

.sm-hide {
    display: block;
}
.sm-show {
    display: none;
}

.right-radius-5 {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

@media (max-width: 1000px) {
    .sm-hide {
        display: none;
    }
    .sm-show {
        display: block;
    }

    #logo {
        width: 200px;
    }
}
