﻿/*TODO: Clean up CSS overrides */

/****************** Website Colors *********************/
/*******************************************************/
/*  Blue: #201c59       */
/*  Yellow: #ffe70a     */
/*  Dark Gray: #58585a  */
/*  Light Gray: #DAD9D6 */

/* Gray Test Color: #e8e8e8 */

/***************** General Colors **********************/
.primary-color {
    background-color: #201c59 !important;
}
.primary-color-text {
    color: #201c59 !important;
}

.secondary-color {
    background-color: #DAD9D6 !important;
}

.dropdown-secondary-color {
    background-color: #363269 !important;
    color: #fff !important;
}

.tertiary-color {
    background-color: #58585a !important;
}

.test-color {
    background-color: #e8e8e8 !important;
    color:#000 !important;
}

.text-white{
    color:#fff;
}

.shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.ultra-container-fluid {
    padding: 8px 16px 0 16px;
}


/******************* Loader Image Styles ****************************/
.loaderImage {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.50;
    z-index: 2;
    background-color: rgba(0, 0, 0, .5);
}

.loader {
    position: relative;
    text-align: center;
    top: 40%;
    left: 45%;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}








/******************* Well Styles ****************************/
.well-title {
    color: #201c59 !important;
    padding: 0;
    margin: 0;
}

.UC-well-dark-section {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    background-color: #fff;
    padding: 12px !important;
    color: #000 !important;
    border: 1px solid #CCCCCC;
}

.UC-well-dark-section-thumnail {
    background-color: #333;
    border: none !important;
    padding: 20px;
    color: #fff !important;
    border: 3px solid #000;
}





/******************* Primary Button Colors ***************************/

input[type="submit"], button[type=submit] {
    color: #58585a;
    background-color: #ffe70a;
    border-color: #ffe70a;
    font-weight: bold;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}


button[type="submit"].btn-danger {
    color: #ffffff;
    font-weight: bold;
    background-color: #d2322d;
    border-color: #ac2925;
    text-decoration: none;
}


    button[type="submit"].btn-danger:hover,
    button[type="submit"].btn-danger:focus,
    button[type="submit"].btn-danger:active,
    button[type="submit"].btn-danger.active,
    button[type="submit"].open .dropdown-toggle.btn-danger {
        color: #ffffff;
        background-color: #58585a;
        border-color: #58585a;
    }

    button[type="submit"].btn-danger:active,
    button[type="submit"].btn-danger.active,
    button[type="submit"].open .dropdown-toggle.btn-danger {
        background-image: none;
    }



    .btn-primary, input[type="submit"].btn-primary, button[type=submit] {
        font-weight: bold;
        color: #201c59;
        background-color: transparent;
        border-color: #201c59;
        text-decoration: none;

    }

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active,
    .open .dropdown-toggle.btn-primary {
        color: #ffffff;
        background-color: #58585a;
        border-color: #DAD9D6;
    }

    input[type="submit"]:hover, button[type=submit]:hover,
    input[type="submit"]:focus, button[type=submit]:focus,
    input[type="submit"]:active, button[type=submit]:active,
    input[type="submit"].active, button[type=submit].active {
        color: #ffffff;
        background-color: #58585a;
        border-color: #DAD9D6;
    }

/******************* Danger Button Colors ***************************/
.btn-danger {
    color: #ffffff;
    font-weight: bold;
    background-color: #d2322d;
    border-color: #ac2925;
    text-decoration: none;
}

    .btn-danger:hover,
    .btn-danger:focus,
    .btn-danger:active,
    .btn-danger.active,
    .open .dropdown-toggle.btn-danger {
        color: #ffffff;
        background-color: #58585a;
        border-color: #58585a;
    }

    .btn-danger:active,
    .btn-danger.active,
    .open .dropdown-toggle.btn-danger {
        background-image: none;
    }

a.text-danger {
    color: #d2322d;
    font-weight: bold;
    text-decoration: none;
}

    a.text-danger:hover,
    a.text-danger:focus,
    a.text-danger:active,
    a.text-danger.active {
        color: #58585a;
        font-weight: bold;
        text-decoration: none;
    }





/******************** Page Header ********************/
.page-header {
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 5px solid #201c59;
    padding-bottom:0;
}

    .page-header h1 {
        margin-top:15px;
        margin-bottom: 0px;
        font-size:25px;
    }
.page-header-connect {
    border-bottom: 2px solid #201c59;
}
    .page-header-connect h1 {
        font-size: 70px;
        font-weight: 600;
        color: #000000;
        background-clip: text;
        -webkit-background-clip: text;
    }




/******************** Panel ********************/
.panel-default {
    margin-bottom:30px;
}
.panel-default > .panel-heading {
    color: #000000;
}
.panel-heading{
    padding:0;
}

.panel-heading > h3.panel-h3 {
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}

    .panel-heading > h4.panel-h4 {
        padding: 10px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
.panel-default > .panel-body {
    background-image: none;
    background-color: #ffffff;
}


/************* Danger Panel *************/
.panel-danger > .panel-heading.UC-md-heading {
    background-image: none;
    color: #b94a48;
    background-color: #DAD9D6 !important;
}


/************* Connect Panel *************/
.panel-heading-connect {
    background-color: #201c59 !important;
    color: #fff;
    padding: 10px;
    border-radius: 4px 4px 0px 0px;
}
.panel-connect-h4 {
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size:18px;
}

.connect-collapse {
    color: #000 !important;
}
    .connect-collapse:hover {
        color: #dad9d6 !important;
    }


/*********************** Table Colors ***********************/
thead {
    background-color: #DAD9D6;
    color: #000;
}

.table-number {
    text-align: right;
}







/*************** UC Quote Nav Buttons *********************/
    .UC-Quote-NavButton {
        font-weight: bold !important;
        text-decoration: none !important;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }

        .UC-Quote-NavButton:hover {
            padding-left: 15px;
            padding-right: 15px;
            background-color: #58585a !important;
            color: #ffffff !important;
            border: 1px solid #58585a;
        }





/**************** Breadcrumbs ********************/
.breadcrumb {
    margin-bottom:10px;
}

.breadcrumb > li {
    display: inline-block;
}

    .breadcrumb > li + li:before {
        padding: 0 5px;
        color: #58585a;
        content: "/\00a0";
    }

    .breadcrumb > li > a {
        color: #58585a;
        text-decoration-color: #58585a;
    }

.breadcrumb-btn {
    margin-top: 2px !important;
    padding-top: 0px !important;
    background: none !important;
    color: #58585a !important;
    border: none !important;
    text-decoration: underline !important;
    text-decoration-color: black;
}
        .breadcrumb-btn:hover {
            margin-top: 2px !important;
            padding-top: 0px !important;
            background: none !important;
            color: dimgray !important;
            border: none !important;
            text-decoration: none !important;
            text-decoration-color: black !important;
        }





/************** Pagination Navigation *******************/
ul.pagination > li.active > a {
    border-color: #201c59;
    background-color: #201c59;
    color: #fff;
}

    ul.pagination > li.active > a:hover {
        border-color: #201c59;
        background-color: #201c59;
        color: #fff;
    }

ul.pagination > li > a {
    border-color: #201c59;
    color: #201c59;
}

    ul.pagination > li > a:hover {
        border-color: #201c59;
        color: #201c59;
    }





/********** Product Image Styling ****************/
.product-image {
    display: block;
    margin-left: auto;
    margin: auto;
}





/************** Badge Counter *************/
.notify-badge {
    position: absolute !important;
    right: 5px;   
    background: #ffe70a;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color: #000;
    margin-top:5px;
    padding: 5px 10px;
}




/**************** ISO Code Styling ****************/
.mat-iso-code {
    padding: 4px 10px;
    font-family: 'Open Sans Regular','Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
    color: #4a4a49;
    font-style: normal;
    font-weight: 800 !important;
    line-height: 1.42857143;
    border:none;
}

.mat-iso-code-table {
    margin-top: 0px;
    margin-bottom: 6px;
}

.mat-iso-code-P-title {
    background-color: #03bafc
}

.mat-iso-code-P-value {
    background-color: #bfe2f8
}

.mat-iso-code-M-title {
    background-color: #fef26a
}

.mat-iso-code-M-value {
    background-color: #fff8c3
}

.mat-iso-code-K-title {
    background-color: #de664e
}

.mat-iso-code-K-value {
    background-color: #edc3ad
}

.mat-iso-code-N-title {
    background-color: #8cbd6e
}

.mat-iso-code-N-value {
    background-color: #d2e2c5
}

.mat-iso-code-S-title {
    background-color: #f6b55b
}

.mat-iso-code-S-value {
    background-color: #fde1ba
}

.mat-iso-code-H-title {
    background-color: #c6c6c6
}

.mat-iso-code-H-value {
    background-color: #e3e3e3
}



/**************** Mega Dropdown Styling ********************/
.navbar{
    min-height:inherit
}

.mega-dropdown {
    position: static !important;
}

.menu-tab {
    color: #fff;
    text-decoration: none;
    font-weight:800;
    margin: 0;
    margin-top: 6px !important;
    padding: 4px 8px !important;
}
.menu-tab-dark {
    margin-top: 0px !important;
}
.icon-button {
    padding: 5px !important;
    margin-top: 3px;
}

.menu-icon {
    margin-top: 2px !important;
    color: #fff;
}

.navbar-nav > li > a.menu-tab {   
    /* Styling to mimic dropdown spacing*/
    border-radius: 0px !important;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav-dark > li > div > div >  a.menu-tab {
    color: #4C4E56;    
}
.navbar-nav-dark > li > button.menu-tab {
    color: #4C4E56;
}

.navbar-nav-dark > li > div > div > a.menu-tab:hover {
    color: #ffffff;
}

.navbar-nav-dark > li > button.menu-tab:hover {
    color: #ffffff;
}


.menu-icon:hover {
    color: #777777;
}

.dropdown-menu {
    border-radius: 0px !important;
    padding-top:0;
    padding-bottom: 0;
    margin-top:-2px;    
}

.dropdown-submenu {
    position: relative;
    border: none;
    margin-top:0;
    padding-top: 0;
    padding-bottom: 0;
    z-index:4;
}

.dropdown-submenu > .dropdown-menu {
    top: 0px;
    left: 100%;
    margin-top: -5px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu:hover > a {
    color: #fff;
    background-color: #58585a;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

    .dropdown-submenu.pull-left > .dropdown-menu {
        left: -100%;
        margin-left: 10px;
        -webkit-border-radius: 6px 0 6px 6px;
        -moz-border-radius: 6px 0 6px 6px;
        border-radius: 6px 0 6px 6px;
    }

.dropdown-toggle > .active {
    color: #fff;
    border-radius: 0px;
}

.dropdown-toggle > .fa-chevron-down {
    font-size:10px;
    font-weight:500!important;
}

.dropdown-menu > li > .link {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 500;
    line-height: 1.428571429;
    color: #000000;
    white-space: nowrap;
}

.dropdown-menu > li > a, .dropdown-menu > li > .link {
    text-decoration: none !important;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight:500;
    color: #fff;
}

    .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > li > a:active,
    .dropdown-menu > li > .link:hover, .dropdown-menu > li > .link:focus, .dropdown-menu > li > .link:active {
        background-color: #58585a;
        color: #ffffff;
    }

.dropdown-submenu:hover > a {
    text-decoration: none;
}

.dropdown-toggle.btn-default:hover {
    margin-bottom: 0;
    color: #fff;
    /*background-color: #DAD9D6;*/
    border-color: #adadad;
    border-radius: 0px;
}

.dropdown-toggle.btn-default:focus,
.open .dropdown-toggle.btn-default {
    margin-bottom: 0px !important;
    color: #fff;
    /*background-color: #4C4E56;*/
    border-color: #adadad;
    border-radius: 0px;
    border-bottom: 2px solid #FFE900;
}





/**************** Mini Nav Bar Styling ****************/
/*Collopse padding change to allow menu to fit on one line untill collopse*/
@media(max-width:1100px){
    .navbar-collapse {
        padding: 0;
    }
}

/*Used to collapse the nav bar menu when the screen resolution is small*/
@media(max-width:991px) {
    .navbar-header {
        float: none;
    }

    .navbar-left, .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }

        .navbar-nav > li {
            float: none;
        }

            .navbar-nav > li > a {
                padding-top: 10px;
                padding-bottom: 10px;
            }

    .collapse.in {
        display: block !important;
    }
}





/**************** Modal Formating ***********/
@media(min-width:720px){
    .wide-modal{
        width: 700px;
    }
}
.modal-header {
    border-radius: 5px;
    text-align: center;
}

.modal-header.primary-color {
    color: #fff;
}




/**************** PageScroller **************/
#scroll-footer {
    position: fixed;
    bottom: 0;
    color: #fff;
    padding-bottom: 20px;
    z-index: 1000;
    margin-left: 48%;
}



/**************** Classes ***********/
.item-description {
    color: #000;
}
@media (min-width: 768px) {
    .item-description {
        font-weight: 700
    }
}


    /**************** General Html Classes ***********/
    .break-word {
        word-wrap: break-word !important;
    }

    .no-text-decoration{
        text-decoration: none;
    }

    .title-bottom-border {
        border-bottom: 5px solid #201c59;
    }

    .floatleft {
        float: left
    }

    .floatright {
        float: right
    }

    .alignleft {
        float: left;
        margin-right: 15px;
    }

    .alignright {
        float: right;
        margin-left: 15px;
    }

    .aligncenter {
        display: block;
        margin: 0 auto 15px;
    }

    a:focus {
        outline: 0px solid
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .fix {
        overflow: hidden
    }

    /*h1,*/
    h1 {
        font-weight:700;
    }
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 700;
        margin: 0 0 15px;
    }
    /**************** Media Size Formating ***********/
.menu-tab {
    font-size: 13px;
}
.ultra-footer-link {
    font-size: 12px;
}

.menu-icon {
    font-size: 20px;
}

    .page-header h1, /*h1*/ {
        font-size: 25px;
    }

    .uc-title {
        font-size: 16px;
    }

    body {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
    }



    @media (min-width:576px) and (max-width:768px) {
      /*  .menu-tab {
            font-size: 8px;
        }*/
        .ultra-footer-link {
            font-size: 12px;
        }

        .page-header > h1,
        .page-header > div > div > div > h1 /* h1*/ {
            font-size: 25px;
        }

        .uc-title {
            font-size: 14px;
        }

        body, p {
            font-size: 12px;
        }
    }

    @media (min-width:768px) and (max-width:992px) {
        /*.menu-tab {
            font-size: 8px;
        }*/
        .ultra-footer-link {
            font-size: 12px;
        }

        .page-header > h1,
        .page-header > div > div > div > h1/* h1*/ {
            font-size: 25px;
        }

        .uc-title {
            font-size: 14px;
        }

        body, p {
            font-size: 12px;
        }
    }

    @media (min-width:992px) and (max-width: 1200px) {
       /* .menu-tab {
            font-size: 9px;
        }*/
        .ultra-footer-link {
            font-size: 12px;
        }
        /*.menu-icon {
            font-size: 16px;
        }*/

        .page-header > h1,
        .page-header > div > div > div > h1 /* h1*/ {
            font-size: 25px;
        }

        .uc-title {
            font-size: 14px;
        }

        body, p {
            font-size: 12px;
        }
    }

    @media (min-width:1200px) {
        /*.menu-tab {
            font-size: 11px;
        }*/

        .ultra-footer-link {
            font-size: 12px;
        }
        /*.menu-icon {
            font-size: 18px;
        }*/

        .page-header > h1,
        .page-header > div > div > div > h1 /* h1*/ {
            font-size: 30px;
        }

        .uc-title {
            font-size: 16px;
        }

        body, p {
            font-size: 15px;
        }
    }

