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 #258cfb;
}

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

body {
    margin-bottom: 60px;
}

.site-banner {
    background-image: url("../../images/main_banner.png");
    background-size: cover;
    height: 260px;
    width: 100%;
}

.btn-site-primary {
    background-color: #2ecc71;
    border-color: #2ecc71;
    font-size: larger;
    font-weight: bold;
    color: white;
    padding: 5px;
}

    .btn-site-primary:hover {
        background-color: #2ecc71;
        border-color: #2ecc71;
        font-size: larger;
        font-weight: bold;
        color: white;
        padding: 5px;
    }

.btn-site-secondary {
    background-color: gray;
    border-color: gray;
    font-size: larger;
    font-weight: bold;
    color: white;
    padding: 5px;
}

    .btn-site-secondary:hover {
        background-color: gray;
        border-color: gray;
        font-size: larger;
        font-weight: bold;
        color: white;
        padding: 5px;
    }

.basketstatus {
    cursor: pointer;
    display: inline-block;
    float: right;
    position: relative;
    transition: all 0.35s;
}
.basketstatus-badge {
    background-color: darkgray;
    border-radius: 50%;
    color: black;
    font-weight:bold;
    display: block;
    height: 1.5rem;
    left: 120%;
    position: absolute;
    text-align: center;
    top: 5%;
    transform: translateX(-38%);
    transition: all 0.35s;
    width: 1.5rem;
}