﻿* {
    box-sizing: border-box;
}

html {
    display: flex;
}

body {
    display: flex;
    width: 100%;
    font-family: 'PT Sans', sans-serif;
    margin: 0px !important;
    background-color: #F9F9F9
}

input, button, select {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
}

h1 {
    font-size: 2.5em;
    font-weight: normal;
}

h2 {
    font-weight: normal;
}

h3 {
    font-weight: normal;
}

h4 {
    font-weight: normal;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
}

.padded-table td, .padded-table th {
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #eeeeee;
}

tr.no-border {
    background-color: initial;
}

tr:hover {
    background-color: rgba(64, 64, 64, 0.1);
}

.no-border td, .no-border th {
    border: none;
}

input.wide {
    width: 350px;
}

input.extra-wide {
    width: 700px;
}

.sideNav {
    display: block;
    position: fixed;
    z-index: 1;
    width: 240px;
    height: 100%;
    min-height: 100vh;
    float: left;
    background-color: #003366;
    color: white;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    flex: 0 0 auto;
}

    .sideNav.visible {
        display: block;
    }

@media only screen and (max-width: 768px) {
    .sideNav {
        display: none;
        position: fixed;
        width: 200px;
    }
}

.sideNav-title {
    display: flex;
    align-items: center;
    height: 66px;
    background-color: #002850;
    font-size: 1.15em;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
}

.sideNav-link {
    display: block;
    padding: 12px 12px 12px 12px;
    font-size: 1.0em;
    color: white;
    border-radius: 4px;
}

    .sideNav-link:hover {
        background-color: rgba(255, 255, 255, 0.25);
    }

a.sideNav-link {
    text-decoration: none;
}

.sideNav-submenu {
    display: none;
    position: absolute;
    left: calc(240px - 16px - 12px - 16px);
    top: -12px;
    width: max-content;
    z-index: 1;
    background-color: #003366;
    color: white;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    padding: 0 0 0 16px;
}

@media only screen and (max-width: 768px) {
    .sideNav-submenu {
        left: calc(200px - 16px - 12px - 16px);
    }
}

.content {
    display: block;
    width: calc(100% - 240px);
    z-index: 0;
    position: relative;
    left: 240px;
}

.topBar {
    display: flex;
    align-items: center;
    justify-content: right;
    background-color: lightgray;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
    position: fixed;
    z-index: 1;
    left: 240px;
    width: calc(100% - 240px);
}

@media only screen and (max-width: 768px) {
    .content, .topBar {
        width: 100%;
        left: 0;
    }
}

.link:hover {
    cursor: pointer;
}

.plain-link {
    text-decoration: none;
    color: unset;
}

    .plain-link:hover {
        cursor: pointer;
    }

.btn {
    display: inline-block;
    padding: 6px 16px 6px 16px;
    border: 1px solid gray;
    border-radius: 3px;
    background-color: white;
    user-select: none;
}

    .btn:hover {
        background-color: rgba(192, 192, 192, 0.2);
        cursor: pointer;
    }

input.btn {
    text-decoration: none;
}

a.btn {
    text-decoration: none;
    color: black;
}

.btn-link {
    display: inline-block;
    text-decoration: none;
    padding: 2px 6px 2px 6px;
    color: #04A;
}

    .btn-link:hover {
        cursor: pointer;
        color: #026;
        text-decoration: underline;
    }

.btn-highlight {
    background-color: lightsteelblue;
}

    .btn-highlight:hover {
        background-color: #B0C4DEDD;
    }

    .btn-highlight:disabled {
        background-color: lightsteelblue;
        cursor: default;
    }

.menu-expand-dark, .menu-expand-light {
    background: transparent;
    padding: 3px;
    display: inline-block;
    visibility: hidden;
}

    .menu-expand-dark:hover {
        background-color: rgba(0, 0, 0, 0.2);
        cursor: pointer;
    }

    .menu-expand-light:hover {
        background-color: rgba(192, 192, 192, 0.2);
        cursor: pointer;
    }

@media only screen and (max-width: 768px) {
    .menu-expand-dark, .menu-expand-light {
        visibility: visible;
    }
}

.category-bar {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 420px) {
    .category-bar {
        flex-wrap: wrap;
    }
}

.category-link {
    display: inline-block;
    padding: 6px 16px 6px 16px;
    color: black;
    user-select: none;
    text-decoration: none;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

    .category-link:hover {
        background-color: rgba(192, 192, 192, 0.2);
        cursor: pointer;
    }

    .category-link.active {
        border-bottom: 4px solid #003366;
        font-weight: 600;
    }

@media only screen and (max-width: 420px) {
    .category-link {
        display: block;
        width: 100px;
    }

        .category-link.active {
            border-bottom: none;
            font-weight: 600;
        }
}

.search-container {
    position: relative;
    margin: 4px 2px;
    width: 250px;
    flex-shrink: 0;
}

    .search-container input[type=text] {
        padding: 4px 8px;
        width: 100%;
    }

    .search-container button {
        background: transparent;
        border: none;
        position: absolute;
        right: 0;
        padding: 5.5px 7px;
    }

        .search-container button svg {
            display: block;
            width: 21px;
            height: 21px;
            stroke-width: 2px;
        }
            /* On hover: blue strokes */
            .search-container button svg:focus g, .search-container svg:hover g {
                stroke: #299ecc;
            }
            /* On click: thicker black strokes  */
            .search-container button svg:active g {
                stroke: #111516;
                stroke-width: 3px;
            }

img.thumb, .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.multiline-ellipse-2 {
    white-space: pre-wrap;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.multiline-ellipse-5 {
    white-space: pre-wrap;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.card-plain {
    margin: 5px;
    padding: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    background-color: white;
    transition: background 0.5s;
}

.card {
    margin: 5px;
    padding: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    background-color: white;
    transition: background 0.5s;
}

    .card:hover {
        background-color: #B0C4DE70;
    }

        .card:hover .add-to-cart {
            background-color: lightsteelblue;
        }

.wrap {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem -0.25rem;
}

    .wrap.image {
        line-height: 0;
    }

.add-to-cart {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.2rem 0.3rem;
    justify-content: center;
    text-align: center;
    transition: background 1.0s;
    background-color: gainsboro;
}

    .add-to-cart:hover {
        background-color: lightsteelblue;
    }

    .add-to-cart.clicked {
        transition: background 0.3s !important;
        background: #003060 !important;
    }

.cart-link {
    transition: font-size 1.0s ease-in-out;
}

    .cart-link.update {
        transition: font-size 0.1s;
        font-size: 1.3rem;
    }

.error {
    color: red;
    margin: 10px;
}

.red-circle {
    position: absolute;
    left: 0;
    bottom: 37%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.89rem;
    border-radius: 100%;
    background: red;
    color: white;
}

.flex-item.responsive1 {
    flex: 0 0 100%;
}

.flex-item.responsive2 {
    flex: 0 0 50%;
}

@media only screen and (max-width: 960px) {
    .flex-item.responsive2 {
        flex: 0 0 100%;
    }
}

.flex-item.responsive3 {
    flex: 0 0 33.33%;
}

@media only screen and (max-width: 1280px) {
    .flex-item.responsive3 {
        flex: 0 0 50%;
    }
}

@media only screen and (max-width: 640px) {
    .flex-item.responsive3 {
        flex: 0 0 100%;
    }
}

.flex-item.responsive4 {
    flex: 0 0 25%;
}

@media only screen and (max-width: 1440px) {
    .flex-item.responsive4 {
        flex: 0 0 33.33%;
    }
}

@media only screen and (max-width: 960px) {
    .flex-item.responsive4 {
        flex: 0 0 50%;
    }
}

@media only screen and (max-width: 480px) {
    .flex-item.responsive4 {
        flex: 0 0 100%;
    }
}

.flex-item.responsive5 {
    flex: 0 0 20%;
}

@media only screen and (max-width: 1536px) {
    .flex-item.responsive5 {
        flex: 0 0 25%;
    }
}

@media only screen and (max-width: 1152px) {
    .flex-item.responsive5 {
        flex: 0 0 33.33%;
    }
}

@media only screen and (max-width: 768px) {
    .flex-item.responsive5 {
        flex: 0 0 50%;
    }
}

@media only screen and (max-width: 384px) {
    .flex-item.responsive5 {
        flex: 0 0 100%;
    }
}

.flex-item.responsive6 {
    flex: 0 0 16.66%;
}

@media only screen and (max-width: 1600px) {
    .flex-item.responsive6 {
        flex: 0 0 20%;
    }
}

@media only screen and (max-width: 1280px) {
    .flex-item.responsive6 {
        flex: 0 0 25%;
    }
}

@media only screen and (max-width: 960px) {
    .flex-item.responsive6 {
        flex: 0 0 33.33%;
    }
}

@media only screen and (max-width: 768px) {
    .flex-item.responsive6 {
        flex: 0 0 33.33%;
    }
}

@media only screen and (max-width: 640px) {
    .flex-item.responsive6 {
        flex: 0 0 50%;
    }
}

@media only screen and (max-width: 320px) {
    .flex-item.responsive6 {
        flex: 0 0 100%;
    }
}

.flex-item.responsive8 {
    flex: 0 0 12.5%;
}

@media only screen and (max-width: 1680px) {
    .flex-item.responsive8 {
        flex: 0 0 14.28%;
    }
}

@media only screen and (max-width: 1440px) {
    .flex-item.responsive8 {
        flex: 0 0 16.66%;
    }
}

@media only screen and (max-width: 1200px) {
    .flex-item.responsive8 {
        flex: 0 0 20%;
    }
}

@media only screen and (max-width: 960px) {
    .flex-item.responsive8 {
        flex: 0 0 25%;
    }
}

@media only screen and (max-width: 720px) {
    .flex-item.responsive8 {
        flex: 0 0 33.33%;
    }
}

@media only screen and (max-width: 480px) {
    .flex-item.responsive8 {
        flex: 0 0 50%;
    }
}

@media only screen and (max-width: 240px) {
    .flex-item.responsive8 {
        flex: 0 0 100%;
    }
}

.dropdown {
    float: right;
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    margin-right: 10vw;
    border-radius: 5px;
}

.dropdown-btn {
    display: block;
    cursor: default;
    user-select: none;
    padding-top: 0em;
    padding-bottom: 0.8em;
    padding-left: 0.8em;
    padding-right: 0.8em;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    line-height: 0.8em;
}

.dropdown:hover {
    background-color: rgba(192, 192, 192, 0.2);
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a,
    .dropdown-content div {
        display: block;
        text-decoration: none;
        cursor: pointer;
        color: black;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        padding-left: 0.8em;
        padding-right: 0.8em;
    }

        .dropdown-content a:hover,
        .dropdown-content div:hover {
            background-color: rgba(192, 192, 192, 0.2);
        }

.banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 360px;
    text-align: center;
    background-position: 50% 50% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

    .banner.fade {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 1rem;
        background: linear-gradient(to bottom, transparent, #F9F9F9);
    }

.banner-title {
    font-size: 4rem;
}

.banner-subtitle {
    font-size: 2rem;
}

@media only screen and (max-width: 768px) {
    .banner {
        height: 240px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

.carousel-outer {
    position: relative;
    width: 100%;
}

.carousel {
    width: 100%;
    padding-top: 62.5%;
}

.carousel-inner {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
    transition: opacity ease-out 1s;
}

.arrow:hover {
    background: rgba(255,255,255,0.4);
}

.carousel-inner .arrow, .product-carousel .outer .arrow {
    display: none;
    object-fit: contain;
    padding: 6px;
    width: 36px;
    height: 50%;
    z-index: 100;
    margin-top: auto;
    margin-bottom: auto;
    pointer-events: auto;
}

.carousel-inner:hover .arrow, .product-carousel .outer:hover .arrow {
    display: block;
}

.carousel-selector {
    display: flex;
    padding: 0.5rem;
}

    .carousel-selector .box {
        display: inline-block;
        margin: 0 0.25rem;
        background: #00000033;
        height: 0.75rem;
        width: 0.75rem;
        border-radius: 0.375rem;
    }

        .carousel-selector .box:hover {
            background: #00306066;
        }

        .carousel-selector .box.active {
            background: #003060BB;
        }

.product-carousel {
    width: 100%;
    max-width: 970px;
    position: relative;
    overflow: hidden;
}

    .product-carousel .outer {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .product-carousel .inner {
        display: inline-flex;
        position: relative;
        justify-content: center;
    }

.container {
    display: block;
    max-width: 970px;
}

.content-normal {
    display: block;
    margin: 0 auto;
    max-width: 970px;
}

.content-dark {
    display: block;
    margin: 0 auto;
    max-width: 970px;
    background-color: dimgray;
    color: white;
}

.border {
    border: 1px solid rgb(118, 118, 118);
}

.fade-line-black {
    margin: 10px 0;
    height: 1px;
    background: black;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), to(transparent), color-stop(50%, black));
}

.fade-line-white {
    margin: 10px 0;
    height: 1px;
    background: white;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), to(transparent), color-stop(50%, white));
}

.has-submenu:after {
    content: ">";
    float: right;
    color: #ddd;
}

.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    display: block;
    width: 100%;
    max-width: 800px;
    margin: auto;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.25rem;
    margin-top: 1.0rem;
}

    .collapsible:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        font-size: 0.9rem;
        color: white;
        float: right;
        margin-left: 5px;
    }

    .collapsible.active, .collapsible:hover {
        background-color: #555;
    }

        .collapsible.active:after {
            content: "\2796"; /* Unicode character for "minus" sign (-) */
        }

.collapsible-content {
    background-color: #eee;
    padding: 0;
    display: block;
    max-width: 800px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 1.1rem;
    margin-bottom: 1.0rem;
}

.checkbox-wrapper-1 *,
.checkbox-wrapper-1 ::after,
.checkbox-wrapper-1 ::before {
    box-sizing: border-box;
}

.checkbox-wrapper-1 .substituted {
    margin: 0;
    width: 0;
    height: 0;
    display: inline;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .checkbox-wrapper-1 .substituted + label:before {
        content: "";
        display: inline-block;
        vertical-align: top;
        height: 1.15em;
        width: 1.15em;
        margin-right: 0.6em;
        color: rgba(0, 0, 0, 0.275);
        border: solid 0.06em;
        box-shadow: 0 0 0.04em, 0 0.06em 0.16em -0.03em inset, 0 0 0 0.07em transparent inset;
        border-radius: 0.2em;
        background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="white" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>') no-repeat center, white;
        background-color: #3B99FC;
        background-size: 0.75em;
        color: rgba(0, 0, 0, 0.075);
        will-change: color, border, background, background-size, box-shadow;
        transform: translate3d(0, 0, 0);
        transition: color 0.1s, border 0.1s, background 0.15s, box-shadow 0.1s;
    }

    .checkbox-wrapper-1 .substituted:disabled + label:before {
        opacity: 0.5;
    }

    .checkbox-wrapper-1 .substituted.dark + label:before {
        color: rgba(255, 255, 255, 0.275);
        background-color: #222;
        background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="rgba(34, 34, 34, 0.999)" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>');
    }

    .checkbox-wrapper-1 .substituted.dark:checked + label:before {
        background-color: #a97035;
        color: rgba(255, 255, 255, 0.075);
    }

.context-menu {
    position: absolute;
    display: none;
    z-index: 99;
    width: 120px;
    padding: 4px 0;
    border-radius: 4px;
    text-align: initial;
    background: #4A4A4A;
    color: white;
    font-family: 'Segoe UI';
    font-size: 12px;
    cursor: default;
    overflow: visible;
}

    .context-menu.active {
        display: block;
    }

.menu-item {
    padding: 8px;
}

    .menu-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.center-text {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: center;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.flex-row {
    display: flex;
    flex-wrap: nowrap;
}

@media only screen and (max-width: 950px) {
    .flex-row {
        flex-wrap: wrap;
    }

        .flex-row .flex-col-max100 {
            max-width: 100%;
        }
}

.flex-row-center {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

@media only screen and (max-width: 950px) {
    .flex-row-center {
        flex-wrap: wrap;
    }

    .flex-row .flex-col-max100 {
        max-width: 100%;
    }
}

.flex-col-25 {
    flex: 1 1 25%;
}

.flex-col-33 {
    flex: 1 1 33%;
}

.flex-col-50 {
    flex: 1 1 50%;
}

.flex-col-66 {
    flex: 1 1 66%;
}

.flex-col-75 {
    flex: 1 1 75%;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.size-50 {
    position: relative;
    width: 50px;
    height: 50px;
}

.size-100 {
    position: relative;
    width: 100px;
    height: 100px;
}

.size-150 {
    position: relative;
    width: 150px;
    height: 150px;
}

.size-200 {
    position: relative;
    width: 200px;
    height: 200px;
}

.size-250 {
    position: relative;
    width: 250px;
    height: 250px;
}

.size-300 {
    position: relative;
    width: 300px;
    height: 300px;
}

.strong {
    font-weight: 600 !important;
}

.fs-1 {
    font-size: 1.05rem;
}

.fs-2 {
    font-size: 1.10rem;
}

.fs-3 {
    font-size: 1.15rem;
}

.fs-4 {
    font-size: 1.20rem;
}

.fs-5 {
    font-size: 1.25rem;
}

.fs-6 {
    font-size: 1.30rem;
}

.fs-7 {
    font-size: 1.40rem;
}

.fs-8 {
    font-size: 1.50rem;
}

.fs-9 {
    font-size: 1.50rem;
}

.fs-10 {
    font-size: 1.60rem;
}

.fs-11 {
    font-size: 1.70rem;
}

.fs-12 {
    font-size: 1.80rem;
}

.fs-13 {
    font-size: 2.0rem;
}

.fs-14 {
    font-size: 2.2rem;
}

.fs-15 {
    font-size: 2.4rem;
}

.fs-16 {
    font-size: 2.6rem;
}

.fs-17 {
    font-size: 2.8rem;
}

.fs-18 {
    font-size: 3.0rem;
}

.m-auto {
    margin: auto;
}

.m-0 {
    margin: 0px;
}

.m-1 {
    margin: 0.5em;
}

.m-2 {
    margin: 1.0em;
}

.m-3 {
    margin: 1.5em;
}

.m-4 {
    margin: 2.0em;
}

.m-5 {
    margin: 2.5em;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.mx-1 {
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.mx-2 {
    margin-left: 1.0em;
    margin-right: 1.0em;
}

.mx-3 {
    margin-left: 1.5em;
    margin-right: 1.5em;
}

.mx-4 {
    margin-left: 2.0em;
    margin-right: 2.0em;
}

.mx-5 {
    margin-left: 2.5em;
    margin-right: 2.5em;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.my-1 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.my-2 {
    margin-top: 1.0em;
    margin-bottom: 1.0em;
}

.my-3 {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.my-4 {
    margin-top: 2.0em;
    margin-bottom: 2.0em;
}

.my-5 {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
}

.mt-auto {
    margin-top: auto;
}

.mt-0 {
    margin-top: 0px;
}

.mt-1 {
    margin-top: 0.5em;
}

.mt-2 {
    margin-top: 1.0em;
}

.mt-3 {
    margin-top: 1.5em;
}

.mt-4 {
    margin-top: 2.0em;
}

.mt-5 {
    margin-top: 2.5em;
}

.p-0 {
    padding: 0px;
}

.p-1 {
    padding: 0.5em;
}

.p-2 {
    padding: 1.0em;
}

.p-3 {
    padding: 1.5em;
}

.p-4 {
    padding: 2.0em;
}

.color-white {
    color: white !important;
}

.color-black {
    color: black !important;
}

.color-grey {
    color: grey !important;
}

.color-red {
    color: red !important;
}

.bcolor-white {
    background-color: white !important;
}

.bcolor-black {
    background-color: black !important;
}

.bcolor-grey {
    background-color: grey !important;
}

.color1 {
    color: #003060 !important;
}

.bcolor1 {
    background: #003060 !important;
}

.b-color1 {
    border-color: #003060 !important;
}

.color2 {
    color: #002850 !important;
}

.bcolor2 {
    background: #002850 !important;
}

.b-color2 {
    border-color: #002850 !important;
}

.transparent {
    opacity: 0.0 !important;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.d-flex-center {
    display: flex;
    justify-content: center;
}

.d-grid {
    display: grid;
}

.d-inline-grid {
    display: inline-grid;
}

.d-none {
    display: none !important;
}

.float-right {
    float: right !important;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.show {
    visibility: visible !important;
}

.hide {
    visibility: hidden !important;
}
