body.page-login,
.sidebar {
    background-color: #e4e5e6;
}

#main-menu .menu .menu-item.active:not(.expanded) a {
    color: #c3002f;
}

.icon-selector-target {
    background-color: white;
    border: 1px solid #ced4da;
    padding: 5px;
    height: auto;
    width: 100px;
}

.input-group > span {
    padding: 18px;
}

#header-logo {
    margin-bottom: 35px;
}

#header-logo img {
    width: 150px;
    display: block;
    margin: 0 auto;
}

.btn-primary {
    background: #AF4F52;
    border-radius: 0;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: #AF4F52 !important;
    box-shadow: none;
}

fieldset {
    margin: 0;
    border: 0;
    padding: 5px;
}

#segment > .mb-3 > legend {
    display: none;
}

#flash-messages {
    flex: auto;
    margin-bottom: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .content-header {
        flex-direction: column;
    }

    .content-header .page-actions {
        margin-left: auto;
    }
}

.vehicle-data,
.vehicle-data textarea {
    background: lightgrey;
    height: 1000px;
    border: none;
    padding: 5px;
    width: 100%;
}

.list-group-item {
    cursor: pointer;
}

.list-group-item:hover {
    background: #c3002f;
    color: white;
}

.text-bold {
    font-weight: 700;
}

#loader {
    display: none;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

#loading {
    border: 2px solid #ccc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border-top-color: #1ecd97;
    border-left-color: #1ecd97;
    animation: spin 1s infinite ease-in;
}

.fade-half {
    opacity:0.5;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}