﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. 
    colors dark blue: #003AB6 or #003DAD
    bright blue #01D9F1
    bright blue 2 - #06E8ED #00F6F7 
    dark gray: #3C3C3C
    medium gray: #A0A4A5
    lighter medium gray: #B6B6B6
    https://html-color-codes.info/colors-from-image/

*/

/*Shopping Cart Icon*/
.cart-basket {
    font-size: .6rem;
    position: absolute;
    top: 3px;
    right: 123px;
    width: 15px;
    height: 15px;
    color: #fff;
    background-color: #007bff;
    border-radius: 50%;
}

.row {
    margin: 0px;
}

/*Breadcrumbs*/
.breadcrumb {
    background-color: transparent;
    padding: 12px 5px;
}

    .breadcrumb .separator {
        margin: 0px 4px;
    }

.breadcrumb-item.active {
    font-weight: bolder;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

select:invalid {
    color: lightgray;
}

option {
    /*background-color: #00FEFC; #0084F7*/
    background-color: #8ac7fc;
    color: black;
}
/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

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

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 30px;
}

.buffer {
    /*adds a buffer to the end of content page to prevent footer from covering it*/
    height: 50px;
}

.footer {
    display: flex;
    position: fixed;
    bottom: 0;
    color: #9da2ad !important;
    width: 100%;
    height: 37px;
    white-space: nowrap;
    line-height: 30px; /* Vertically center the text there */
    background-color: rgba(45, 50, 60, 0.5);
    border-top: 1px solid #393f4a;
    -webkit-box-shadow: 0px -1px 5px rgb(22 25 31 / 80%);
    box-shadow: 0px -1px 5px rgb(22 25 31 / 80%);
    background-color: #2e333c;
}


.custom-tooltip {
    overflow: visible;
}

    .custom-tooltip p {
        margin: 5px;
        white-space: nowrap;
    }

        .custom-tooltip p:first-of-type {
            font-weight: bold;
        }