/*--Body styles--*/

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-size: 1.6rem;
    line-height: 25px;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
}

.disabled {
    opacity: 0.3;
}

#spinneroverlay {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

div.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border: 2px solid #ccc;
    z-index: 9;
}

@media only screen and (max-width: 768px) {
    img.sticky-assembly {
        max-height: 325px;
        width: auto;
    }
}

/*-----------Password Strength Checker-------------*/
#password-strength-status {
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 5px;
}

.medium-password {
    background-color: #fd0;
}

.weak-password {
    background-color: #FBE1E1;
}

.strong-password {
    background-color: #D5F9D5;
}

/*.modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}*/

/*---------Assembly mobile cards------------*/

.mobile-assembly-card-wrap {
    padding: 15px;
}

.mobile-assembly-card {
    border: 3px solid #ccc;
    padding: 15px;
}

.specialbg {
    background-color: #fff;
    /*padding-top: 25px;
    padding-bottom: 50px;*/
    margin-right: auto;
    margin-left: auto;
}

table.shipping-table td {
    padding-left: 5px;
}

.ui-autocomplete {
    background-color: lightgray;
    font-family: Arial;
    font-size: 12px;
    border: 2px solid #000;
    max-width: auto;
    max-height: 300px;
    overflow-y: scroll;
    cursor: pointer;
}

/*---------Text Styles----------*/
.address {
    font-weight: bold;
}

.required {
    font-weight: 900;
}

h1.title, .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-style: normal;
    line-height: 6rem;
    cursor: default;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
}

h2.subtitle, .subtitle {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 2.5rem !important;
    line-height: 4rem;
    font-weight: normal;
    font-style: normal;
    cursor: default;
    /*text-transform: uppercase;*/
    margin-top: 5px;
}

.display-1 {
    font-size: 1.5rem;
    line-height: 3rem;
    font-style: normal;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
}


.display-2 {
    font-size: 2rem;
    line-height: 3rem;
    font-style: normal;
    font-family: 'PT Sans Narrow', sans-serif;
}

.uppercase {
    text-transform: uppercase !important;
}

.text-white {
    color: #fff !important;
}

    .text-white a, .text-white a:visited {
        color: #fff !important;
        text-decoration: underline;
    }

        .text-white a:hover {
            text-decoration: none;
        }

.red {
    color: #d9132a;
    font-style: normal;
}

.handwritten {
    font-family: 'Yellowtail', cursive !important;
    font-style: normal;
}

small {
    font-size: 10px;
}

.align-center {
    text-align: center;
}

.shadow {
    box-shadow: 0 2px 24px 2px rgba(24,24,24,.35);
}

.overlaybg {
    background: url(images/background.jpg);
    background-size: cover;
}



hr.black {
    border-top: 3px solid #000;
    width: 70%;
}

hr.red {
    border-top: 6px solid #d9132a;
    width: 70%;
}

hr.white {
    border-top: 3px solid #fff;
    width: 70%;
}

hr.left {
    margin-left: 0;
}



/*--Equal rows--*/

@media (min-width: 992px) {
    .row.equal {
        display: flex;
        flex-wrap: wrap;
    }
}

.row.equal-mobile {
    display: flex;
    flex-wrap: wrap;
}



/*--End of equal rows--*/



/*--Flex center div--*/

.flex-center-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--End of flex center div--*/




/*--Button styles--*/


.btn {
    margin: .4rem .8rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: .25rem 2rem;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
}

.btn-addtocart {
    /*width: 94%;*/
    margin: 0em;
    
}

.btn-primary, .btn-default {
    background-color: #be191f !important;
    border-color: #be191f !important;
    color: #ffffff !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

    .btn-primary:hover, .btn-default:hover {
        background-color: #000 !important;
        border-color: #000 !important;
        color: #ffffff !important;
    }

.btn-secondary {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #ffffff !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
}

    .btn-secondary:hover {
        background-color: #d9132a !important;
        border-color: #d9132a !important;
        color: #ffffff !important;
    }


.btn-white {
    background-color: transparent !important;
    border-color: #fff !important;
    color: #ffffff !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
}

    .btn-white:hover {
        background-color: transparent !important;
        border-color: transparent !important;
        color: #ffffff !important;
    }

/*--End of button styles--*/





/*--Floating text on icon--*/

#lblCartCount {
    font-size: 12px;
    background: #be191f;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    margin-left: -10px;
}

.badge {
    padding-left: 9px;
    padding-right: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}

.label-warning[href],
.badge-warning[href] {
    background-color: #c67605;
}


/*--end of floating text on icon--*/


/*--Parts search form in header--*/

.search-form {
    width: 90%;
}

    .search-form .input-lg {
        font-size: 15px;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-weight: 700;
    }

@media only screen and (max-width: 768px) {
    .search-form .input-lg {
        font-size: 12px;
        line-height: 15px;
    }

    .search-form {
        margin-top: 10px;
        width: 100%;
    }
}

.search-form .btn-search {
    height: 46px;
    background-color: #fff;
    color: #000;
    margin: 0px;
}

/*--end of search form in header--*/



/*------------------Headers-------------------*/


/*--Top banner--*/

.top-banner {
    background-color: #000;
    color: #fff;
    padding-top: 15px;
}

    .top-banner a:link, .top-banner a:visited {
        color: #fff;
        text-decoration: none;
    }

    .top-banner a:hover {
        color: #fff;
        text-decoration: none;
    }

    .top-banner a.phone {
        font-weight: 700;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .top-banner a.phone:hover {
            color: #be191f;
        }

    .top-banner #countdown {
        font-style: normal;
    }

    .top-banner a.details {
        color: #be191f;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .top-banner a.details:hover {
            color: #fff;
        }

/*--Mid banner--*/

.mid-banner {
    background-color: #000;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}


@media only screen and (max-width: 992px) {
    .mid-banner img.logo-img {
        margin-bottom: 15px;
    }
}

.mid-banner a:link, .mid-banner a:visited {
    color: #fff;
    text-decoration: none;
}

.mid-banner a:hover {
    color: #fff;
    text-decoration: none;
}

.mid-banner a.login-register {
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .mid-banner a.login-register:hover {
        color: #be191f;
    }


/*--Brands nav--*/

.brands-nav {
    background-color: #fff;
}

.brands-menu {
    padding-top: 10px;
    padding-bottom: 10px;
}


a.my-equipment {
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    a.my-equipment:hover {
        color: #be191f;
        text-decoration: none;
    }

mark.my-equipment {
    color: #fff;
    background-color: #be191f;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}


/*--Parts nav--*/

.parts-nav {
    background-color: #8b8b8b;
    color: #fff;
}


/*--Center navbar--*/
@media (min-width: 768px) {
    .partsMenu {
        display: inline-block;
        float: none;
        vertical-align: top;
    }
}
/*--end of center navbar--*/

/*Navbar toggle CSS*/

.navbar-toggle {
    border-color: #fff;
    color: #fff;
    float: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #be191f;
    border: 0px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .navbar-toggle:hover {
        border-color: #fff;
        background-color: #252733;
    }

    .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        border-color: #fff;
        background-color: #252733;
    }

    .navbar-toggle .icon-bar {
        background-color: #fff;
    }



@media (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse.collapse {
        display: none !important;
    }

        .navbar-collapse.collapse.in {
            display: block !important;
        }

    .navbar-header .collapse, .navbar-toggle {
        display: block !important;
    }

    .navbar-header {
        float: none;
    }
}


/*--End of navbar css--*/

.navbar {
    margin-bottom: 0px;
}

.partsMenu {
    list-style: none;
    color: #fff !important;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    margin-top: 15px;
}

@media only screen and (max-width: 768px) {
    .partsMenu {
        text-align: left;
        /*padding-inline-start: 0px;*/
    }

   .myEquipment { 
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .partsMenu li {
        display: inline-block;
        position: relative;
        padding: 0 15px;
    }

}


@media only screen and (min-width: 768px) {

    .partsMenu li::after {
        position: absolute;
        width: 2px;
        right: 0;
        content: ' ';
        height: 100%;
        background: rgba(255, 255, 255, 0.7);
    }

    .partsMenu li:last-child::after {
        width: 0;
    }
}


.partsMenu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
}

    .partsMenu a:hover {
        color: #000;
        font-weight: 500;
    }



/*------Parts brands menu----*/

#parts-brands-menu {
    padding-top: 20px;
    padding-bottom: 20px;
    display: none;
}

.parts-brands-menu-row {
    margin-top: 10px;
    margin-bottom: 10px;
}

.parts-menu-outer {
    padding: 5px;
}

.parts-menu-background {
    background-size: cover;
    border-radius: 5px;
    height: 100%;
}

.parts-menu-logo {
    background: rgba(190, 25, 31, 0);
    width: 100%;
    height: 100%;
    padding: 50px 5px;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
    border-radius: 5px;
}

    .parts-menu-logo:hover {
        background: rgba(190, 25, 31, 0.8);
        cursor: pointer;
    }

    .parts-menu-logo img {
        max-height: 31px;
    }

#parts-brands-equipment-menu {
    display: none;
}

    #parts-brands-equipment-menu a:hover {
        text-decoration: none;
    }

.parts-menu-equipment {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    background: rgba(000, 000, 000, 0.35);
    width: 100%;
    height: 100%;
    padding: 70px 5px;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
    border-radius: 5px;
}

    .parts-menu-equipment:hover {
        background: rgba(190, 25, 31, 0.8);
        cursor: pointer;
    }

#parts-numbers-list-menu {
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
}

ul.part-numbers-menu {
    list-style: none;
    font-size: 25px;
    line-height: 35px;
    border-left: 3px solid #ccc;
    border-right: 3px solid #ccc;
    text-align: left;
    padding-inline-start: 0px;
}

    ul.part-numbers-menu li {
        padding-left: 5px;
        padding-right: 5px;
    }

.part-numbers-menu a {
    color: #000;
}

    .part-numbers-menu a:hover {
        text-decoration: none;
    }

.part-numbers-menu li:hover {
    background-color: transparent;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
}


.part-numbers-menu li:hover {
    background-color: #eee;
}



/*--------------------end of headers---------------*/


/*--Parts search--*/

.parts-search {
    background-color: #343940;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    .parts-search {
        padding-bottom: 5px;
    }
}

form.parts-search .form-control {
    width: 100% !important;
}

.parts-search .form-control {
    color: #000;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    width: 100% !important;
    height: auto;
}


@media only screen and (max-width: 768px) {
    .parts-search .form-control {
        font-size: 15px;
    }
}

.parts-search .form-control option {
    font-weight: 700;
}


/*--End of parts search--*/



/*--------Banner-----------*/

.banner-img {
    background-image: url(images/flexwing.jpg);
    background-size: 70% auto;
    background-position: bottom right;
    background-repeat: no-repeat;
    min-height: 400px;
}

@media only screen and (max-width: 992px) {
    .banner-img {
        background-image: none;
        min-height: auto;
    }
}


.banner-outer-container {
    background: url(images/banner-container-redbg.png);
    background-position: top right;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-left: 0px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 60px;
}

@media only screen and (max-width: 992px) {
    .banner-outer-container {
        background-color: #be191f;
        padding: 20px;
    }
}


.banner-text-container {
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: url(images/banner-container-graybg.png);
    background-position: top right;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 15px 30px;
}

@media only screen and (max-width: 992px) {
    .banner-text-container {
        background-color: #e5e5e5;
        height: auto;
    }
}

.banner-text-container .handwritten {
    font-size: 5rem !important;
}

.banner-text-container p {
    font-size: 20px !important;
    font-weight: bold;
}

}



/*---------Homepage cards----------*/

.cards-div {
    background-size: cover;
    background-position: bottom center !important;
    padding-left: 50px;
    padding-right: 50px;
}

@media only screen and (max-width: 992px) {
    .cards-div {
        padding: 50px;
    }
}

.top-left-card {    
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)), url(/Content/images/GB-Parts-Home-Page-TilesTop-Left.png);
    background-size: cover;
    background-position: top center;
}

.top-right-card {    
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)), url(/Content/images/GB-Parts-Home-Page-TilesTop-Right.png);
    background-size: cover;
    background-position: top center;
}

.bottom-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)), url(/Content/images/GB-Parts-Home-Page-TilesBottom.png);
    background-size: cover;
    background-position: center;
}

.news-card {
    border-top: 6px solid #be191f;
}

.item-card {
    border: 2px solid #be191f;
    background-color: #e5e5e5;
}

.news-card .news-header {
    font-size: 20px;
    font-weight: 700;
}

.news-card p {
    font-size: 1.4rem;
}

.news-card a {
    color: #be191f;
    font-weight: bold;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
}


    .news-card a:hover {
        color: #000;
        text-decoration: underline;
    }

.card-text {
    margin-top: 300px;
    margin-bottom: 30px;
    color: #fff;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 992px) {
    .card-text {
        margin-top: 0px;
    }
}

.card-text p {
    margin-top: 10px;
}

span.card-text-header {
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}


/*-------Cookies div---*/


.bottom-container {
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 99;
}

/*.affirm-banner {
  width: 100%; background-color: #fff;
}

.affirm-banner #close {
    display:inline-block;
    padding:2px 5px;
    position: absolute;
    top: 0px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
  }*/

.cookies-div {
    display: none;
    margin-top: 10px;
    background-color: #000;
    color: #fff;
    padding: 10px;
}

    .cookies-div a {
        color: #be191f;
    }

        .cookies-div a:hover {
            color: #fff;
        }

    .cookies-div .btn-cookies {
        font-size: 1.25rem;
        padding: 0.5rem;
    }



/*------------Sliding chat div-----*/

.message-window {
    position: fixed;
    right: 0;
    top: 35%;
    z-index: 500;
}

.side-panel {
    font-size: 1.5rem;
    position: relative;
    right: -150px;
    color: #000;
    height: 500px;
    width: 150px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 5px;
}

.side-panelCaller {
    position: absolute;
    top: 50px;
    right: 150px; /* same as #panel width */
    height: 170px;
    border-right: 0px;
    width: 75px;
    display: flex;
    padding: 10px;
    align-items: center;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 1.65rem;
    letter-spacing: 1px;
}

.chat-slideout img {
    height: 170px;
}

.chat-slideout:hover {
    cursor: pointer;
}






/*----------------------------Assemblies pages---------------------*/

/*--Search bar for assemblies page--*/

.assemblies-search-form {
    width: 90%;
}

@media only screen and (max-width: 992px) {
    .assemblies-search-form {
        width: 100%;
    }
}

.assemblies-toggle {
    border-color: #fff;
    color: #fff;
    float: none;
    background-color: #be191f;
    margin: 0px;
}

    .assemblies-toggle:hover {
        border-color: #fff;
        background-color: #252733;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse.collapse {
        display: none !important;
    }

        .navbar-collapse.collapse.in {
            display: block !important;
        }

    .navbar-header .collapse, .navbar-toggle {
        display: block !important;
    }

    .navbar-header {
        float: none;
    }
}

.assemblies-search-form .input-lg {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.assemblies-search-form .btn-search {
    height: 46px;
    background-color: #be191f;
    color: #fff;
    margin: 0px;
}


.assemblies-menu-search-form {
    width: 90%;
}

    .assemblies-menu-search-form .input-lg {
        font-size: 15px;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-weight: 700;
    }

    .assemblies-menu-search-form .btn-search {
        height: 46px;
        background-color: #000;
        color: #fff;
        margin: 0px;
    }


.assemblies-banner {
    background-size: cover;
    background-position: right center;
    padding-top: 20px;
    padding-bottom: 20px;
}

img.assemblies-brand {
    max-height: 50px;
}

.assemblies-title {
    font-style: normal;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    vertical-align: bottom;
}


.assembly-container {
    padding: 15px;
}

.assembly-inner {
    border: 1px solid #ccc;
    padding: 10px;
    height: 100%;
}

    .assembly-inner .btn-secondary {
        font-size: 1.15rem !important;
    }

@media only screen and (max-width: 992px) {
    .assembly-inner {
        height: auto;
    }
}

a.schematics-link {
    color: #000;
    text-decoration: underline;
    text-transform: uppercase;
}

    a.schematics-link:hover {
        text-decoration: none;
    }


/*--Assemblies nav--*/

@media only screen and (max-width: 992px) {
    .assemblies-panel-group {
        max-height: 400px;
        overflow: auto;
    }
}


/*--Fitment Panel--*/
/* Style to reverse the caret icon from pointing downwards to upwards */


.btn-fitment {
    background-color: transparent;
    border: 0px;
    font-weight: 700;
    font-size: 18px;
}

/*--End of Fitment Panel--*/
.panel-assemblies .panel-title {
    color: #000 !important;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .panel-assemblies .panel-title {
        font-size: 18px;
        line-height: 20px;
    }
}

.panel-assemblies .panel-title > a {
    color: #000;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
    text-decoration: none;
}


    .panel-assemblies .panel-title > a:hover {
        color: #be191f;
    }

.panel-assemblies .panel-title a:hover {
    color: #be191f;
    text-decoration: none;
}

.panel-assemblies .panel-title a:visited {
    text-decoration: none;
}

.panel-assemblies .panel-footer {
    border-bottom: 1px solid #ccc;
}

.assembliesMenu {
    list-style: none;
    color: #000 !important;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: 40px;
    font-weight: 500;
    text-align: left;
    width: 100%;
    margin-top: 15px;
    padding-inline-start: 0px;
}

    .assembliesMenu li {
        display: block;
        position: relative;
        padding: 0 15px;
        border-bottom: 1px solid #ccc;
    }

    .assembliesMenu a {
        color: #000;
        text-decoration: none;
        -webkit-transition: all 0.2s ease-in-out !important;
        -moz-transition: all 0.2s ease-in-out !important;
        transition: all 0.2s ease-in-out !important;
    }

        .assembliesMenu a:hover {
            color: #be191f;
        }


.parts-table input.quantity {
    width: 30px;
    text-align: center;
}

.parts-table th {
    color: #be191f;
}

.parts-table td {
    vertical-align: middle !important;
}

.parts-table .btn {
    font-size: 1.25rem !important;
}

.item-img-container, .item-description-container {
    padding: 15px;
}

.item-name {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: underline;
}

.item-description {
    background-color: #d8d8d8;
    width: 100%;
    height: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
}



@media only screen and (max-width: 992px) {
    .item-description {
        height: auto;
        padding-bottom: 30px;
        font-size: 18px;
        font-weight: 700;
    }
}

span.price {
    font-size: 22px;
    font-weight: 700;
}

.item-img {
    border: 6px solid #be191f;
    width: 100%;
    height: 100%;
}

    .item-img img {
        max-height: 1500px;
    }

@media only screen and (max-width: 992px) {
    .item-img {
        height: auto;
    }
}

mark.in-stock {
    background-color: #2e9f0e;
    padding: 5px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

mark.out-of-stock {
    background-color: #be191f;
    padding: 5px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}


/* -- quantity box -- */

.quantity {
    display: inline-block;
}

    .quantity .input-text.qty {
        width: 35px;       
        padding: 0 5px;
        text-align: center;
        background-color: #fff;
        border: 1px solid #be191f;
    }

    .quantity.buttons_added {
        text-align: left;
        position: relative;
        white-space: nowrap;
        vertical-align: top;
    }

        .quantity.buttons_added input {
            display: inline-block;
            margin: 0;
            vertical-align: top;
            box-shadow: none;
        }

        .quantity.buttons_added .minus,
        .quantity.buttons_added .plus {
            padding: 1px 5px 2px;            
            background-color: #be191f;
            color: #fff;
            border: 0px;
            cursor: pointer;
        }

        .quantity.buttons_added .minus {
            border-right: 0;
        }

        .quantity.buttons_added .plus {
            border-left: 0;
        }

            .quantity.buttons_added .minus:hover,
            .quantity.buttons_added .plus:hover {
                background: #be191f;
            }

    .quantity input::-webkit-outer-spin-button,
    .quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
    }

    .quantity.buttons_added .minus:focus,
    .quantity.buttons_added .plus:focus {
        outline: none;
    }


/*--Footer--*/

.footer {
    padding-top: 2rem;
    padding-bottom: 40px;
    margin-top: 50px;
    border-top: 6px solid #191919;
    background: #000;
    color: #fff !important;
}

    .footer a:link, .footer a:visited {
        color: #000;
        text-decoration: underline;
    }

        .footer a:link.btn, .footer a:visited.btn {
            text-decoration: none;
        }

    .footer a:hover {
        text-decoration: none;
    }

    .footer .form-control {
        color: #000;
        font-size: 14px;
        font-family: 'PT Sans Narrow', sans-serif;
        text-transform: uppercase;
        font-weight: bold;
    }


/*--End of footer CSS--*/

/*--Hose builder modal--*/

h1.hosemodal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-style: normal;
    line-height: 5rem;
    cursor: default;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
}

.btn-hosemodal {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #ffffff !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    width: 100%;
    height: inherit;
    white-space: normal !important;
}

    .btn-hosemodal:hover {
        background-color: #d9132a !important;
        border-color: #d9132a !important;
        color: #ffffff !important;
    }

select.hose-fittings {
    margin-bottom: 15px;
}

@media only screen and (min-width: 992px) {
    #inputOverallLength {
        width: 50%;
    }
}

.hose-builder-options-price {
    font-weight: bold;
    float: right;
}

.hose-option-label {
    font-weight: bold;
    text-transform: uppercase;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    color: #000;
    font-weight: bold;
}

hr.hose-builder-red {
    border-top: 3px solid #d9132a;
    margin-top: 10px;
    width: 70%;
}

/*--My garage modal--*/

#MyGarageModal {
    color: #000 !important;
}

form.add-a-ride .form-control {
    width: 100%;
}

.add-a-ride .form-control {
    color: #000;
    font-size: 14px;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-trashicon {
    border: 0px;
    background: transparent;
    padding: 0px;
    line-height: 0px;
}

    .btn-trashicon img {
        width: 20px;
    }

a.garage-equipment {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 1.75rem;
    line-height: 40px;
    text-transform: uppercase;
    text-decoration: none !important;
}

.garage-ride {
    background-color: #fff;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
}

    .garage-ride:hover {
        background-color: #ededed;
    }

}



/*---------------------Parts Landing Page-----------*/


.parts-brands-landing-row {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
}

.parts-landing-outer {
    padding: 5px;
}

.parts-landing-background {
    background-size: cover;
    background-position: left center;
    border-radius: 5px;
    height: 100%;
}

.parts-landing-equipment {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    background: rgba(000, 000, 000, 0.35);
    width: 100%;
    height: 100%;
    padding: 30px 5px;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
    border-radius: 5px;
}



@media only screen and (max-width: 992px) {
    .parts-landing-equipment {
        font-size: 15px;
        padding: 15px 5px;
        min-height: 80px;
    }
}

.parts-landing-equipment:hover {
    background: rgba(190, 25, 31, 0.8);
    cursor: pointer;
}


.part-numbers-landing {
    font-size: 18px;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
    .part-numbers-landing:nth-child(odd) > div:nth-child(-n+4) {
        background-color: #eee;
    }
}

@media only screen and (max-width: 768px) {
    .part-numbers-landing > div:nth-child(-n+2) {
        background-color: #eee;
    }
}


.part-numbers-landing a {
    color: #be191f;
    font-weight: bold;
}

    .part-numbers-landing a:hover {
        text-decoration: none;
    }

.part-numbers-landing-div {
    padding: 10px 5px;
    border: 1px solid #ccc;
    height: inherit;
}


/*-------end of parts landing page css--*/

/*----Account dashboard cards--*/

@media only screen and (min-width: 768px) {
    .well-dashboard {
        min-height: 182px !important;
    }
}

.acct-equip-card-row {
    background-color: #fff;
    border: 3px solid #be191f;
    padding: 5px;
    border-radius: 4px;
    margin-top: 5px;
}

.account-btn-cards {
    font-size: 1.25rem;
    padding: 5px;
}

.account-btn-cards-shop {
    font-size: 1.25rem;
    padding: 5px;
    margin: 0px;
}

.acct-equip-name {
    font-weight: bold;
}

/*---------end of account dashboard card css----*/


/*---Autocomplete styling---*/


.ui-autocomplete {
width: fit-content !important;
background-color: #fff;
font-family: 'Montserrat', sans-serif !important;
font-size: 13px !important;
 /*list-style: none !important;*/
}

li.ui-menu-item {
line-height: 25px;
}

@media only screen and (min-width: 992px) {
.ui-autocomplete {
      left: 50% !important;
      margin-right: -50% !important;
      transform: translate(-50%, -50%) !important;
}
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
.ui-autocomplete {
width: 100% !important;
overflow-x: scroll !important;
      left: 50% !important;
      margin-right: -50% !important;
      transform: translate(-50%, -50%) !important;
}
}

@media only screen and (max-width: 768px) {
.ui-autocomplete {
width: 70% !important;
left: 55px !important;
overflow-x: scroll !important;

}
}


.ui-state-hover,
.ui-state-active,
.ui-state-focus {
  text-decoration: none;
  color: #000;
  background-color: #f5f5f5;
  cursor: pointer;
}


/*-------------------Banners for Categories and Models---------------*/

.cat-model-banner {
font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;

}

@media only screen and (min-width: 992px) {
    .cat-model-banner {
            max-height:  75px;
    }
}

.cat-model-banner .text-div {
        display: flex;
    align-items: center;
    padding-left: 30px;
}

.cat-model-banner-logo {
    float:  right;
    max-height: 75px;
    padding-right: 30px;
}



@media only screen and (max-width: 992px) {
    .cat-model-banner .text-div {
        padding-top: 10px;
        padding-bottom: 10px;
    }

}


/*--Background colors for brands--*/

#gehl {
    background-color: #ffc324;
}

#kubota {
    background-color: #ef4f1f;
}

#bush-hog {
    background-color: #cd2127;
}

#schulte {
    background-color: #7cbc4e;
}

#woods {
    background-color: #f8891d;
}

#harley {
    background-color: #bf322c;
}

#sweepster {
    background-color: #bf322c;
}

#befco {
    background-color: #ea642e;
}

#land-pride {
    background-color: #e49640;
}

#ffc {
    background-color: #bf322c;
}

#servis-rhino {
    background-color: #f47b20;
}

#bradco {
    background-color: #0065a5;
}

#snowex {
    background-color: #878686;
}

#mcmillen {
    background-color: #f67a21;
}

#erskine {
    background-color: #000;
}

#exmark {
    background-color: #bb3829;
}

#manitou {
    background-color: #e20714;
}

/*---Ellipsis---*/

.ellipsis-text {
    width: 500px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
}

@media only screen and (max-width: 992px) {
    .ellipsis-text {
        width: 200px;
    }
}