/** FIXES MOBIL NAV **/
#MobileNavigation {
    z-index: 100;
}

#open-lit-cart {
    display: none;
}

#lit-cart {
    height: calc(100% - 96px);
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    margin-top: 0;
    transform: translateX(100vw);
    transition: transform 250ms ease-in-out;
    background: #fff;
    z-index: 1200;
}
@media (min-width: 576px) {
    #lit-cart {
        width: 550px;
        transform: translateX(550px);
    }
}

.open-lit-cart-toggle {
    background-color: #ff8a3d;
    position: fixed;
    right: 0;
    top: 110px;
    width: 40px;
    padding: 8px;
    border-radius: 30px 0 0 30px;
    padding-left: 19px;
    cursor: pointer;
    z-index: 90;
    box-shadow: 0 0 0 0 #ff8a3d;
}

@media (min-width: 1025px) {
    .open-lit-cart-toggle {
        top: 190px;
    }
}

.open-lit-cart-toggle-animate {
    animation: cart-pulse 2s infinite;
}

.open-lit-cart-toggle i {
    color: #fff;
}

input[type="checkbox"]:checked ~ #lit-cart {
    transform: translateX(0);
    box-shadow: -1px 0 19px 1px #aaa;
}

.lit-cart-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}

.lit-cart-header {
    box-sizing: border-box;
    padding: 18px;
    height: 110px;
    box-shadow: 0 1px 7px 0 #aaa;
    z-index: 1;
}

.lit-cart-body {
    box-sizing: border-box;
    padding: 18px;
    height: calc(100vh - 110px - 97px - 96px);
    background-color: #f7f7f7;
    overflow-y: scroll;
    overflow-x: hidden;
}

.lit-cart-body .lit-cart-item-container {
    height: 138px;
    background-color: #fff;
    border-radius: 2px;
    margin-bottom: 21px;
}

.lit-cart-body .lit-cart-item-container .lit-cart-item-inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

.lit-cart-item-inner img {
    height: 100%;
    width: 155px;
    flex-grow: 0;
}

.lit-cart-item-inner .lit-cart-item-inner-content {
    flex-grow: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 12px 20px;
    height: calc(100% - 24px);
}

.lit-cart-item-inner .lit-cart-item-inner-content .lit-cart-item-inner-title {
    width: 100%;
    font-family: Montserrat,sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #848889;
    letter-spacing: -0.71px;
}

.lit-cart-item-inner .lit-cart-item-inner-content .lit-cart-item-inner-code {
    width: 100%;
    font-family: Montserrat,sans-serif;
    font-weight: normal;
    font-size: 12px;
    color: #848889;
    min-height: 16px;
}

.lit-cart-item-inner .lit-cart-item-inner-content .lit-cart-item-inner-type {
    width: 100%;
    font-family: Montserrat,sans-serif;
    font-size: 12px;
    color: #848889;
}

.lit-cart-item-inner .lit-cart-item-inner-content .lit-cart-item-inner-quantity {
    align-self: flex-end;
}

.lit-cart-item-inner .lit-cart-item-inner-content .lit-cart-item-inner-quantity .input-group.input-group-select {
    margin: 0 !important;
}

.lit-cart-item-inner .lit-cart-item-inner-content .lit-cart-item-inner-remove {
    align-self: flex-end;
    cursor: pointer;
    font-family: "Tungsten A","Tungsten B";
    text-transform: uppercase;
    font-size: 15px;
    color: #848889;
    letter-spacing: 0.28px;
    text-align: right;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.lit-cart-item-inner .lit-cart-item-inner-content .lit-cart-item-inner-remove i {
    font-size: 20px;
    padding-left: 8px;
}

.lit-cart-footer {
    box-sizing: border-box;
    padding: 18px;
    height: 97px;
    box-shadow: 0 1px 7px 0 #aaa;
    z-index: 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
}

.lit-cart-close {
    text-align: right;
    margin-left: auto;
    cursor: pointer;
}

.lit-cart-close i {
    color: #ff8a3d;
}

.lit-cart-title-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.lit-cart-title-container .lit-cart-title {
    font-family: "Tungsten A","Tungsten B";
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    font-size: 36px;
    color: #51555A;
    letter-spacing: 0;
}

.lit-cart-title-container i {
    margin-left: auto;
    font-size: 36px;
    color: #51555A;
}

.lit-cart-button {
    font-family: "Tungsten A","Tungsten B";
    font-size: 32px;
    letter-spacing: 0.6px;
    text-align: center;
    border-radius: 26px;
    height: 52px;
    padding: 0 30px;
    text-transform: uppercase;
    text-decoration: none;

    /*color: #51555A;*/
    /*background-color: #fff;*/
    /*border: 1px solid #51555A;*/
}

.lit-cart-button.lit-cart-button-primary {
    background-color: #ff8a3d;
    border: 1px solid #ff8a3d;
    color: #fff;
}

.lit-cart-button.lit-cart-button-secondary {
    background-color: #fff;
    border: 1px solid #51555A;
    color: #51555A;
}

.lit-products-section .lit-products-section-legend {
    display: flex !important;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100%;
    font-family: "Tungsten A","Tungsten B";
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 2.25rem;
}
section .container.lit-products-section:last-child {
    padding-top: 0 !important;
}

.lit-products-section fieldset {
    margin: 4px 0 0 0 !important;
}

.lit-products-section .lit-product-section-content {
    max-height: 0;
    overflow: hidden;

    box-sizing: border-box;
}

@media (min-width: 992px) {
    .lit-products-section .lit-product-section-content {
        padding: 0 70px;
    }
}

.lit-products-section.active .lit-product-section-content {
    /*display: block;*/
    max-height: 99999px;
}

.lit-products-section .lit-products-section-legend .lit-products-section-title {

}

.lit-products-section .lit-products-section-legend .lit-products-section-controls {
    color: #ff8a3d;
}

.lit-products-section .lit-products-section-legend .lit-products-section-controls .lit-products-section-control-open {
    display: inline-block;
}
.lit-products-section .lit-products-section-legend .lit-products-section-controls .lit-products-section-control-close {
    display: none;
}
.lit-products-section.active .lit-products-section-legend .lit-products-section-controls .lit-products-section-control-open {
    display: none;
}
.lit-products-section.active .lit-products-section-legend .lit-products-section-controls .lit-products-section-control-close {
    display: inline-block;
}

.lit-products-section-subtitle {
    font-family: "Tungsten A","Tungsten B";
    font-size: 28px;
    color: #51555A;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lit-products-list {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin-left: -10px;
    margin-right: -10px;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 70px;
}

.lit-products-list .lit-product-list-item {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
}

@media (min-width: 576px) {
    .lit-products-list .lit-product-list-item {
        width: 50%;
    }
}
@media (min-width: 768px) {
    .lit-products-list .lit-product-list-item {
        width: 33%;
    }
}
@media (min-width: 992px) {
    .lit-products-list .lit-product-list-item {
        width: 25%;
    }
}
@media (min-width: 1200px) {
    .lit-products-list .lit-product-list-item {
        width: 20%;
    }
}

.lit-products-list .lit-product-list-item .lit-product-list-item-body {
    box-shadow: 0 0 12px 8px #F3F3F3;
    border-radius: 3px;
    background: #FFFFFF;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

.lit-products-list .lit-product-list-item .lit-product-list-item-body img {
    width: 100%;
    height: auto;
    max-height: 200px;
}

.lit-product-list-item-content {
    padding: 16px;
}

.lit-product-list-item-quantity .input-group.input-group-select {
    margin: 0 !important;
}

.lit-product-list-item-title label {
    font-family: Montserrat,sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #848889;
    letter-spacing: -0.71px;
    text-align: center;
    line-height: 25px;
    margin-bottom: 12px;
    text-transform: none;
}

.lit-product-list-item-code {
    font-family: Montserrat,sans-serif;
    font-weight: normal;
    font-size: 12px;
    color: #848889;
    text-align: center;
    margin-bottom: 12px;
    min-height: 16px;
}

.lit-product-list-item-quantity {
    max-width: 78px;
    margin: 0 auto;
}

.lit-product-section-content .note.note-disclaimer {
    background-color: #F7F7F7;
}

@keyframes cart-pulse {
    0% {
        box-shadow: 0 0 0 0 #ff8a3dbb;
    }

    70% {
        box-shadow: 0 0 0 10px #ff8a3d00;
    }

    100% {
        box-shadow: 0 0 0 0 #ff8a3d00;
    }
}

.lit-box {
    background-color: #fff;
    margin-bottom: 38px;
}
.lit-box .lit-box-content {
    padding: 15px 30px;
}

.lit-page-title {
    margin-bottom: 100px;
}

.lit-section-secondary {
    background-color: #f7f7f7 !important;
    padding-top: 42px !important;
}

.lit-section-primary {
    background-color: #fff !important;
    padding-top: 42px !important;
}

.lit-section-products {
    padding-bottom: 0 !important;
}

#LiteratureRequest2 .box {
    margin-bottom: 42px;
}

#LiteratureRequest2 .box .box-content {
    padding: 30px;
}
#LiteratureRequest2 .container .form-content-wrap label {
    padding: 0 1.5rem 0 0;
}

#LiteratureRequest2 .container legend {
    font-family: "Tungsten A","Tungsten B";
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    font-size: 2.25rem;
}

#LiteratureRequest2 .container legend span.required {
    color: #848889;
    text-transform: uppercase;
    font-size: 1em;
}

.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}

.order-type-wrap {
    margin-bottom: 42px;
}
.order-type-wrap label {
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    text-transform: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.order-type-wrap label input {
    margin-right: 10px;
}

.lit-form-toast {
    display: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 10px 40px;
    font-family: Montserrat,sans-serif;
    font-size: 18px;
    line-height: 25px;
    position: fixed;
    top: 140px;
    width: calc(100% - 110px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}

@media (min-width: 830px) {
    .lit-form-toast {
        width: 800px;
    }
}
#lit-form-toast-info {
    color: #ff8a3d;
    border: 1px solid #ff8a3d;
    background-color: #ffdec8;
    box-shadow: 0 0 0 0 #ff8a3d;
    animation: toast-info-pulse 2s infinite;
}
#lit-form-toast-error {
    color: #842029;
    border: 1px solid #842029;
    background-color: #f8d7da;
    box-shadow: 0 0 0 0 #842029;
    animation: toast-error-pulse 2s infinite;
}
#lit-form-toast-success {
    color: #0f5132;
    border: 1px solid #0f5132;
    background-color: #d1e7dd;
    box-shadow: 0 0 0 0 #0f5132;
    animation: toast-success-pulse 2s infinite;
}

@keyframes toast-info-pulse {
    0% {
        box-shadow: 0 0 0 0 #ff8a3dbb;
    }

    70% {
        box-shadow: 0 0 0 10px #ff8a3d00;
    }

    100% {
        box-shadow: 0 0 0 0 #ff8a3d00;
    }
}

@keyframes toast-error-pulse {
    0% {
        box-shadow: 0 0 0 0 #842029bb;
    }

    70% {
        box-shadow: 0 0 0 10px #84202900;
    }

    100% {
        box-shadow: 0 0 0 0 #84202900;
    }
}

@keyframes toast-success-pulse {
    0% {
        box-shadow: 0 0 0 0 #0f5132bb;
    }

    70% {
        box-shadow: 0 0 0 10px #0f513200;
    }

    100% {
        box-shadow: 0 0 0 0 #0f513200;
    }
}

#LiteratureRequestThanks {
    display: none;
}

@media (max-width: 768px) {
    .lit-form-footer .lit-cart-button {
        display: block;
        width: 100%;
        margin-bottom: 28px;
    }
}

.express-note {
    margin-top: 0;
    font-size: 0.9em;
}
