html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #cacaca;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


.hero-section {
    background: linear-gradient(rgba(220, 53, 69, 0.85), rgba(220, 53, 69, 0.85)), url('../img/bike.png') center/cover no-repeat;
    min-height: 100vh;
    color: #fff;
}

.fade-in {
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.btn-glow {
    box-shadow: 0 0 15px rgba(220,53,69,0.7);
    transition: all 0.3s ease;
}

    .btn-glow:hover {
        box-shadow: 0 0 25px rgba(220,53,69,0.9);
        transform: scale(1.05);
    }


.select2-selection__rendered {
    line-height: 35px !important;
}

.select2-container .select2-selection--single {
    height: 40px !important;
}

.select2-selection__arrow {
    height: 40px !important;
}

#navFinder {
    background-color: #E60000;
}

    #navFinder .title {
        color: white;
    }

.btn-nav {
    background-color: white;
    color: black;
}

.btn-primary {
    color: #fff;
    background-color: #E60000;
    border-color: #E60000;
}

    .btn-primary:hover {
        background-color: #F90000;
        border-color: #F90000;
    }

    .btn-primary:focus {
        background-color: #F90000;
        border-color: #F90000;
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #F90000;
    }

.card.selected {
    background-color: #E60000;
}

tr.selected {
    background-color: #cacaca;
}


svg text {
    cursor: pointer;
}

.list-group-item.active {
    background-color: #cacaca;
    border-color: #cacaca;
    color: unset;
}

#quantityInput::-webkit-outer-spin-button, #quantityInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#quantityInput[type=number] {
    -moz-appearance: textfield;
}

::-webkit-scrollbar {
    width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #E60000;
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #E60000;
}

#imageHolder {
    background: white;
}

#imageControls button:focus {
    box-shadow: none;
}
