.main-wrapper {
    position: relative;
}

#content {
    width: 100%;
    min-height: 100%;
    transition: all 0.3s;
}

.map {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal.show .modal-dialog {
    margin-right: 0;
}

.modal {
    background: rgba(0, 0, 0, 0.5);
}

.modal button.close {
    position: absolute;
    right: 10px;
    font-size: 2em;
    top: 10px;
}

.modal .modal-title {
    margin-right: 1em;
}

.modal-footer {
    justify-content: start;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #CCC;
}

.modal-dialog-scrollable .modal-content {
    height: 100%;
}

#contentModal .modal-header .modal-title {
    font-size: 24px;
    line-height: 30px;
}

@media (min-width: 576px) {
    #contentModal .modal-dialog {
        width: 600px;
        margin-top: 0;
        height: 100%;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 1480px) {
    #contentModal .modal-header .modal-title {
        font-size: 24px;
        line-height: 30px;
    }
}

/** Filters **/
.filter-scroller {
    height: 200px;
    overflow-y: scroll;
    padding: 5px 10px;
    border: 1px solid var(--border-color);
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}