html
{
    font-size: 16px;
}

@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: 0px;
}

.cursor-pointer
{
    cursor: pointer;
}

/* Show normal icon by default */
.btn-outline-dark .cart-default
{
    display: inline !important;
}

.btn-outline-dark .cart-hover
{
    display: none !important;
}

/* Swap icons on hover */
.btn-outline-dark:hover .cart-default
{
    display: none !important;
}

.btn-outline-dark:hover .cart-hover
{
    display: inline !important;
}

.sticky-col
{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    top: 100px;
}

.btn-check:checked + label > img
{
    border: 3px solid #dc2626 !important;
    box-shadow: none;
}

.fs-14
{
    font-size: 14px !important;
}

.btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active
{
    background-color: var(--bs-btn-active-bg);
    border-color: white;
    color: var(--bs-btn-active-color);
}

.popup-overlay
{
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.popup-content
{
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: auto;
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.text-underline-blue
{
    text-decoration: underline;
    text-decoration-color: #0069d1;
}