.navActive {
    text-decoration: underline;
}

a.nav-link {
    color: black !important;
}
a.nav-link:hover {
    color: black;
}
a {
    text-decoration-line: none;
}
a, a:active, a:hover {
    color: #d40029;
}

h1 {
    font-size: 42px;
}

h1, h2, h3, h4 {
    font-family: 'Capture It', sans-serif;
}

p {
    font-size: 18px;
}

p, a, div {
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.btn {
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 30px;
}

.btn-primary {
    background: #d40029;
    border: none;
    font-family: 'Capture It', sans-serif;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background: darkred;
}

.btn-outline-primary {
    border: 2px solid #d40029;
    font-family: 'Capture It', sans-serif;
    color: #d40029;
}
.btn-outline-primary:hover {
    border-color: darkred;
    background-color: darkred;
}

.page-item.active .page-link {
    background: #d40029;
    border-color: #d40029;
}

.displayNone {
    display: none;
}

.width100 {
    width: 100%
}

.textRight {
    text-align: right;
}

.textCenter {
    text-align: center;
}

.marginAuto {
    margin-left: auto;
    margin-right: auto;
}

.noWrap {
    white-space: nowrap;
}

.boxShadow {
    box-shadow: 0 2px 5px #424242;
}

.textShadow, .textShadow p, .textShadow a, .textShadow div {
    text-shadow: 1px 1px 3px black;
}

.bolder {
    font-weight: bolder !important;
}

.pad5 {
    padding: 5px;
}
.pad10 {
    padding: 10px;
}
.pad20 {
    padding: 20px;
}

.mce-edit-focus {
    padding: 5px !important;
}

.fontPlay {
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.fontAmatic {
    font-family: "Amatic SC", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.fontCaptureIt {
    font-family: "Capture It", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font22, .font22 p {
    font-size: 22px;
}
.font18 {
    font-size: 18px;
}
.font16, .font16 p {
    font-size: 16px;
}
.font14, .font14 p {
    font-size: 14px !important;
}

.vibrantButton {
    background: linear-gradient(to right, #E90A89, #F26423) !important;
    color: white !important;
}
.aceBlack {
    color: black;
}
.aceRed {
    color: #d40029;
}
.aceRedBg {
    background-color: #d40029 !important;
}
.aceWhite {
    color: white !important;
}
.aceWhiteBg {
    background-color: white;
}
.aceGray {
    color: gray;
}
.aceGrayBg {
    background-color: gray;
}
.aceDarkGray {
    color: #424242;
}
.aceDarkGrayBg {
    background-color: #424242;
}
.aceLightGrayBg {
    background-color: #efefef;
}
.borderRadiusFive {
    border-radius: 5px;
}
.borderRadiusZero {
    border-radius: 0;
}

.hoverPointer:hover {
    cursor: pointer;
}
.hoverWhite:hover {
    color: white;
}

.thickUnderline {
    text-decoration-line: underline;
    text-decoration-color: #d40029;
    text-decoration-thickness: 3px;
    text-decoration-style: dashed;
}

.gridBg {
    background-image: url("/image/texture/old-grid.png");
    background-repeat: repeat;
}

.gridFadeBg {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 1.0)
        ),
        url("/image/texture/old-grid.png") repeat;
}

.osbBg {
    background-image: url("/image/texture/osb.jpg");
    background-repeat: repeat;
    background-size: 200px;
}

.collapser {
    border: 2px solid #efefef;
}
.collapser .collapserHeader {
    background-color: #efefef;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.collapser .icon {
    padding-right: 20px;
}
.collapser .collapserContent {
    padding: 10px;
}

.dropdown-item:hover {
    color: white;
    background: #d40029;
}

.aceLightGrayBorder {
    border: 2px solid #efefef;
}

.specTable {
    width: 100%;
}
.specTable thead tr:last-child th {
    font-weight: bolder;
    border-bottom: 2px solid #efefef;
}
.specTable td, .specTable th {
    padding: 7px;
}
.specTable td:not(:first-child) {
    font-weight: bolder;
}

#mobileItems {
    padding-left: 25px;
}
#mobileItems > a {
    color: white;
    font-size: 26px;
}
#mobileItems > a > svg {
    margin-top: -10px;
}

/** Mobile View */
@media only screen and (max-width: 900px) {
    #desktopNav {
        display: none !important;
    }
    #mobileNav {
        display: block !important;
    }
}

/** Desktop View */
@media only screen and (min-width: 901px) {
    #desktopNav {
        display: flex !important;
    }
    #mobileNav {
        display: none !important;
    }
}

.inStockLabel {
    position: relative;
}
.inStockLabel::after {
    content: url("/image/products-and-services/in-stock.png");
    position: relative;
    right: -25px;
    top: -40px;
}

#desktopNav a.nav-link {
    color: white !important;
    font-weight: bold;
}