﻿/* GENERAL */
h1
{
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: #444;
    margin-bottom: 0px;
    padding-bottom: 5px;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    clear: both;
    text-transform: uppercase;
}

h2
{
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: #444;
    margin-bottom: 1rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    clear: both;
    text-transform: uppercase;
}

h3
{
    font-size: 26px;
    color: #444;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 0px solid #ccc;
}

h4
{
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
    padding-bottom: 2px;
    border-bottom: 1px solid #ccc;
}

h5
{
    font-size: 1rem;
    color: #023144;
    margin-bottom: 10px;
    padding-bottom: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

p
{
    font-size: 1rem;
    margin-bottom: 20px;
    /*font-weight: 300;*/
}

a
{
    text-decoration: none;
    color: #023144;
}

    a:hover
    {
        text-decoration: underline;
    }

select
{
    float: left;
    height: 34px;
    border-radius: 3px;
}

strong, b
{
    font-weight: 700;
}

input
{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.MainWrapper ul, ol
{
    padding-left: 34px;
    margin-bottom: 20px;
}

.MainWrapper ul li
{
    list-style-type: disc;
}

/* GLOBAL CLASSES */
/*.Button { background: none; border: 0px; margin-top: 10px; padding: 10px; padding-left: 30px; padding-right: 30px; text-align: center; box-sizing: border-box; text-transform: uppercase; font-size: 1rem; font-weight: 700; border-radius: 0px; color: #FFE400; background-color: #009453; cursor: pointer; display: inline-block; line-height: normal; transition: background-color 200ms linear; }
    .Button:hover { background-color: #00aa60; text-decoration: none; }*/
.Relative {position:relative;}

/* HIDE ADDTOCART 
.AddToCart {
    display:none !important;
}*/

.AddToCart
{
    border: 2px solid #444;
    border-radius: 10px;
    padding-left: 40px;
    font-size: 1rem;
    background-color: #fff;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #444;
    text-decoration: none;
    transition: all linear 200ms;
    cursor: pointer;
}

    .AddToCart:hover
    {
        background: #444;
        color: #fff;
        text-decoration: none;
    }

.Button
{
    border: 2px solid #444;
    border-radius: 3px;
    padding-left: 40px;
    font-size: 1rem;
    background-color: #fff;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.2rem;
    color: #444;
    text-decoration: none;
    transition: all linear 200ms;
    cursor: pointer;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: inline-block;
}

    .Button:hover
    {
        background: #444;
        color: #fff;
        text-decoration: none;
    }

.BlueButton
{
    border: 2px solid #444;
    background-color: #01476B;
    color: #fff;
}

    .BlueButton:hover
    {
        background: #CDE1E9;
        color: #444;
        text-decoration: none;
    }

.Hidden
{
    display: none;
}

.Grey
{
    color: #aaa !important;
}

.Fullsize
{
    width: 100%;
}

.ClearLeft
{
    clear: left;
}

.ClearRight
{
    clear: right;
}

.ClearNone
{
    clear: none !important;
}
.ClearBoth
{
    clear: both;
}
.FloatLeft
{
    float:left !important;
}

.UserMessage
{
    padding: 10px;
    display: block;
    padding-left: 40px;
    margin-bottom: 20px;
    padding-right: 40px;
    position: relative;
    cursor: default;
}

    .UserMessage span.CloseIcon
    {
        position: absolute;
        right: 0px;
        top: 0px;
        bottom: 0px;
        width: 38px;
        cursor: pointer;
        color: #aaa;
        background-color: #fff;
    }

        .UserMessage span.CloseIcon:hover
        {
            color: #444;
        }

        .UserMessage span.CloseIcon:before
        {
            content: '\f057';
            font-family: 'FontAwesome5';
            font-size: 24px;
            margin-top: -10px;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -12px;
        }

    .UserMessage:before
    {
        font-family: 'FontAwesome5';
        float: left;
        font-size: 24px;
        margin-left: -30px;
        margin-right: 0px;
    }

    .UserMessage.Error
    {
        color: #C00000;
        background-color: #F7DDDD;
        border: 2px solid #F7DDDD;
    }

        .UserMessage.Error:before
        {
            content: '\f06a';
            color: #C00000;
        }

    .UserMessage.Success
    {
        color: #3c763d;
        background-color: #dff0d8;
        border: 2px solid #dff0d8;
    }

        .UserMessage.Success:before
        {
            content: '\f058';
            color: #3c763d;
        }

    .UserMessage.Info
    {
        color: #31708f;
        background-color: #d9edf7;
        border: 2px solid #d9edf7;
    }

        .UserMessage.Info:before
        {
            content: '\f05a';
            color: #31708f;
        }

.Center
{
    text-align: center;
}

.Website
{
    padding-left: 30px;
    position: relative;
}

    .Website:before
    {
        font-family: 'FontAwesome5';
        content: '\f7a2';
        position: absolute;
        font-size: 24px;
        left: 0;
        /*top: 50%;
        margin-top: -12px;*/
    }

    .Website:hover:before
    {
        color: #444;
    }

.Home:before
{
    content: '\f015';
    font-family: FontAwesome5;
    font-size: 16px;
    color: #FBAD17;
    line-height: 14px;
    padding-right: 5px;
}
.CustomerRegister:before
{
    content: '\f007';
    font-family: FontAwesome5;
    font-size: 16px;
    line-height: 14px;
    padding-right: 5px;
}

.CustomerLogin:before
{
    content: '\f090';
    font-family: FontAwesome5;
    font-size: 16px;
    line-height: 14px;
    padding-right: 5px;
}

.CustomerLoggedIn:before
{
    content: '\f007';
    font-family: FontAwesome5;
    font-size: 16px;
    line-height: 14px;
    padding-right: 7px;
}

.CustomerOrder:before
{
    content: '\f022';
    font-family: FontAwesome5;
    font-size: 16px;
    line-height: 14px;
    padding-right: 7px;
}

.CustomerLogout:before
{
    content: '\f08b';
    font-family: FontAwesome5;
    font-size: 16px;
    line-height: 14px;
    padding-right: 4px;
}

.Heart:before {
    content: '\f004';
    font-family: FontAwesome5;
    font-size: 16px;
    line-height: 14px;
    padding-right: 7px;
}

.QuickCart:before {
    content: '\f217';
    font-family: FontAwesome5;
    font-size: 16px;
    line-height: 14px;
    padding-right: 7px;
}

/* ARTICLES */
.ArticleWrapper h2
{
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #444;
    margin-bottom: 1rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    clear: both;
    text-transform:none;
}

.ArticleWrapper ul
{
    list-style-type:disc;
    padding-left:30px;
    margin-bottom:20px;
}

.lbClearFilter  {
    float:right;
}

.DataTooltip
{
    position: absolute;
    z-index: 999;
    background: #e2e599;
    padding: 5px 10px 5px 10px;
    border-radius: 3px;
    top: 0px;
    left: 0px;
    font-size: 12px;
    display: none;
    border: 1px solid #a0a45a;
    color: #444;
}
/* LOADER */
.SearchLoaderWrapper
{
    position: fixed;
    background-color: rgba(255,255,255,0.8);
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 101;
    display: none;
}
    .SearchLoaderWrapper .Loader:not(:required):before
    {
        content: '';
        border-radius: 50%;
        border: 2px solid rgba(0, 0, 0, .3);
        border-top-color: rgba(0, 0, 0, .6);
        animation: spinner .6s linear infinite;
        -webkit-animation: spinner .6s linear infinite;
    }

    .SearchLoaderWrapper .Loader:before
    {
        content: 'Loading...';
        position: absolute;
        top: 300px;
        left: 50%;
        width: 16px;
        height: 16px;
        margin-top: -10px;
        margin-left: -10px;
    }

    .SearchLoaderWrapper .Loader:before
    {
        min-width: 24px;
        min-height: 24px;
    }
@keyframes spinner
{
    to
    {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner
{
    to
    {
        -webkit-transform: rotate(360deg);
    }
}


.StorageInfoWrapper
{
}
    .StorageInfoWrapper .StorageInfo {
        padding-left: 10px;
    }

    .StorageInfoWrapper .StorageInfo:after
    {
        content: '\f111';
        font-size: 18px;
        font-family: 'FontAwesome5Solid';
    }

    .StorageInfoWrapper .StorageInfo.Green
    {
        color: #3c763d;
    }

    .StorageInfoWrapper .StorageInfo.Yellow
    {
        color: #FBAD17;
    }

    .StorageInfoWrapper .StorageInfo.Red
    {
        color: #C00000;
    }