/* Hide RunDate label*/
div.RunDateNotice {
    display: none;
}


/*Hide Application Title*/
.ApplicationTitle {
    display: none;
}

/* Set font family and font size for Oklahoma footer section*/
.OkSiteSection {
    font-family: "Poppins",-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 16px;
}

/*Site header --- Grey bar at top of screen*/
.SiteHeader {
    background-color: #464646;
}

/*Apply spacing around borders of footer*/
.FastPageFooterContent {
    padding-top: 20px;
    padding-bottom: 20px;
}

/*Size of OTC Imagine That Logo in Footer*/
.main-foot__logo {
    width: 12.5rem;
}

    /*Image Links - Might remove later*/
    .main-foot__logo a {
        width: 100%;
    }

    /*Make sure image takes up 100% of available width (12.5rem from above style)*/
    .main-foot__logo img {
        width: 100%;
    }

/*Set the margin on the left and right of footer link section. This is the section between the logo and social media links.*/
.main-foot__nav {
    margin-right: auto;
    margin-left: auto;
}

/*Make sure footer direction is horizontal instead of vertical*/
.main-foot__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/*Align each list of links horizontally*/
.nav__inner {
    display: inline-flex;
}

/*Place additional spacing to left and right of footer link lists*/
.foot-nav {
    padding-left: 3rem;
    padding-right: 3rem;
}

/*Apply spacing and text styles to copyright at bottom of footer*/
.main-foot__copy {
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
    font-size: 1pc;
}

/*Social Media image size*/
.Social-Image {
    height: 3rem;
}

/*Mobile Social Media image size*/
.Mobile-Social-Image {
    max-width: 3rem;
}

/*Align Mobile footer text to center*/
.mobile-foot__inner {
    text-align: center;
}

/*Mobile Logo size*/
.mobile-foot__image {
    max-width: 12.5rem;
}

/*Align Mobile Footer logo and navigation links to center*/
.mobile-foot__logo, .mobile-foot__nav {
    text-align: center;
}

/*Screen under 385px, Resize OkCARS logo when on small mobile devices*/
@media screen and (max-width:385px) {
    .ApplicationLogo {
        width: 100%;
        max-width: 7.8rem;
        min-width: 3.9rem;
        display: inline-block;
        height: auto;
        vertical-align: middle;
    }
}

/*Screen between 1009px and 1213px, remove space above social media links as the collapse to the left*/
@media screen and (max-width:1085px) {
    .btn-outside {
        margin-top: -4rem;
    }
}

/*Make sure mobile foot version display when screen is below 1009px*/
@media screen and (min-width:1009px) {
    .mobile-foot__inner {
        display: none;
    }
}

/*Make sure desktop footer version displays above 1008px*/
@media screen and (max-width:1008px) {
    .main-foot__inner {
        display: none;
    }
}

/*DEV ONLY - Hide environment label when screen is below 500px so we can access assistant and web cart easily*/
@media screen and (max-width:500px) {
    .EnvironmentNameLabel {
        display: none;
    }
}

/*Hide Menu Description Space*/
.DocTypeFAST_XDHOM0 .WebLinkPanelMenu .WebLinkPanelMenuDescription .FGNVT {
    display: none;
}

/*Add spacing beneath Web Menu Group Title*/
.DocTypeFAST_XDHOM0 .WebLinkPanelMenu .WebLinkPanelMenuCaption .FGNVT {
    margin-bottom: 10px;
}

/*Override Web menu Icons*/
.DocTypeFAST_XDHOM0 .FICF::before {
    content: '';
    background-image: url(../Image/ENG/GreenChevronSingle.png);
    background-repeat: no-repeat;
    margin-top: 5px;
    max-width: 1rem;
    background-size: contain;
}

/*Header Message Overrides*/
.DocTypeFAST_XDHOM0 .FastStatusPanel.FastStatusColorDefault {
    border-color: #0066b3;
}

.DocTypeFAST_XDHOM0 .FastStatusPanel.FastStatusColorDefault::before {
    background-color: #669b41;
}

/*Web Cart Spacing*/
.ManagerHeader .ManagerHeaderLinkShoppingCart {
    background-color: #0066b3;
    opacity: .95;
}

/*Assistant Image*/
.ManagerHeaderLink.ManagerHeaderLinkAssistant {
    background-image: url(../Image/ENG/OkCARS_Chatbot.png);
    background-repeat: no-repeat;
    background-size: 75px;
}

    /*Set assistant content to " " to blank out core image*/
    .ManagerHeaderLink.ManagerHeaderLinkAssistant::before {
        content: " ";
    }

/*Web profile icon*/
a.ManagerHeaderLink.ManagerHeaderLinkWebProfile {
    background-color: #fff;
    color: #000000;
    transition-property: background-color,color;
    transition-duration: .2s;
    transition-timing-function: ease;
}

    a.ManagerHeaderLink.ManagerHeaderLinkWebProfile:hover {
        background-color: #DCDCDC;
        color: #000000;
        transition-duration: .2s;
        transition-timing-function: ease;
    }


/*Make sure mobile foot version prints when screen is below 1009px*/
@media print and (min-width:1009px) {
    .mobile-foot__inner {
        display: none;
    }
}

/*Make sure desktop footer version prints above 1008px*/
@media print and (max-width:1008px) {
    .main-foot__inner {
        display: none;
    }
}

/*Fix issue with doc group table header*/
.DocTableBody+.FixTableGroupHeader::before {
  height:0px
}