﻿:root {
    --main-color: #dbd4d4;
    --light-color: #eff0f2;
    --caption-color: #585858;
    --header-height: 40px;
}

body {
    background-color: var(--main-color);
    margin: 0;
}

.ps-pane-container-wait {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ps-pane-container {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

    .ps-pane-container .middle, .ps-pane-container-wait .middle {
        display: table-cell;
        width: 100%;
        vertical-align: middle;
    }

    .ps-pane-container .pane, .ps-pane-container .pane-2, .ps-pane-container-wait .pane-2 {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .ps-pane-container .pane {
        max-width: 460px;
    }

    .ps-pane-container .pane-2, .ps-pane-container-wait .pane-2 {
        max-width: 100px;
    }

    .ps-pane-container .inner-panel, .ps-pane-container-wait .inner-panel {
        margin: -20px;
        padding: 40px;
        vertical-align: middle;
    }

    .ps-pane-container .product-image, .ps-pane-container-wait .product-image {
        height: 68px;
    }

    .ps-pane-container img, .ps-pane-container-wait img {
        display: block;
    }

.list-inline {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
   
}

.list-inline-item {
    padding: 8px;
    float: left;
}

    .list-inline-item a {
        color: lightgray;
        display: block;
        text-align: center;
        text-decoration: none;
    }

    .list-inline-item:hover {
        /*background-color: #2b313d;*/
        cursor: pointer;
    }

        .list-inline-item:hover a {
            color: white;
        }


/* If the screen size is ... width or less, ... */
@media screen and (max-width: 770px) {
    .list-inline-item {
        padding: 6px 8px 7px 8px;
    }

        .list-inline-item a {
            font-size: 13px;
        }
}

/* If the screen size is ... width or less, ... */
@media screen and (max-width: 500px) {
    .list-inline-item {
        padding: 10px 2px 8px 2px;
    }

        .list-inline-item a {
            font-size: 10px;
        }
}

.contact-body {
    background-color: white;
}

.contact-body h2 {
    font-size: larger;
    color: var(--caption-color);
}


.contact-body h3 {
    font-size: medium;
    font-weight: bolder;
    color: var(--caption-color);
    padding-top: .3em;
}

.contact-header {
    background-color: var(--main-color);
    color: white;
    height: var(--header-height);
    padding-top: 0px;
    padding-bottom: 0px;
}

.navbar-brand-image {
    height: 30px; /*var(--header-height)-10px;*/
    margin: 5px 10px;
}

.contact-header-title {
    font-size: 25px;
    margin: 0px 5px 0px 5px;
}

.contact-header-subtitle {
    font-size: 15px;
    margin: 10px 10px 7px 10px;
}

.contact-content {
    background-color: white;
    padding-top: 1em;
   
}


.contact-content-title-container {
    background-color: var(--light-color);
    padding-top: var(--header-height);
}

.contact-content-title {
    padding-top: 1em;
    padding-bottom: 1em;
    color: var(--caption-color);
}


/* If the screen size is ... width or less, ... */
@media screen and (max-width: 500px) {
    .contact-header-subtitle {
        font-size: 10px;
        margin: 12px 5px 5px 5px;
    }

    .contact-content h1 {
        font-size: 30px;
    }
}

.contact-header-title, contact-header-subtitle {
    display: block;
}

/* If the screen size is ... width or less, ... */
@media screen and (max-width: 355px) {
    .contact-header-subtitle {
        display: none;
    }
}
/* If the screen size is ... width or less, ... */
@media screen and (max-width: 205px) {
    .contact-header-title {
        display: none;
    }
}