/* general rules */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto'!important;
    font-size: 15px;
}

.grid {
    max-width: 1180px;
    min-width: 300px;
    margin: 0 auto;
}

input,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

img {
    max-width: 100%;
}

.how_it_works_section {
    font-family: 'Roboto';
}

.floor_plan_section_cta:hover {
    color: white!important;
    text-decoration: none!important;
}

.review-btn:hover {
    color: white!important;
}


/* fonts */

@font-face {
    font-family: Nexa;
    src: url("../fonts/NexaRegular.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: NexaThin;
    src: url("../fonts/NexaThin.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: NexaBold;
    src: url("../fonts/NexaBold.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: Helvetica;
    src: url("../fonts/Helvetica.ttf") format("ttf");
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeue.ttf") format("ttf");
    font-display: swap;
}

@font-face {
    font-family: LatoRegular;
    src: url("../fonts/LatoRegular.ttf");
    font-display: swap;
}

@font-face {
    font-family: LatoBold;
    src: url("../fonts/LatoBold.ttf");
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto.ttf");
    font-display: swap;
}


/* loader styles */

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    from {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.image_loader {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    z-index: 5;
}

@media only screen and (max-width: 650px) {
    .image_loader {
        min-height: 60px;
    }
}

.image_loader::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: whitesmoke;
}

.image_loader.loaded::before {
    background-color: rgba(255, 255, 255, 0) !important;
}

.image_loader::after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -19px;
    z-index: -1;
    -webkit-animation-name: spin;
    -moz-animation-name: spin;
    -o-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 2000ms;
    -moz-animation-duration: 2000ms;
    -o-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    content: "\f1ce";
    font-size: 35px;
    color: #379fe8;
    background: none;
    opacity: 1;
}


/* imageLoaderUI styles */

.imageUploadUI {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.imageUploadUI li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 60px;
    margin: 3px;
}

.imageUploadUI li.ImageItem {
    display: block;
    position: relative;
}

.imageUploadUI li.ImageItem a {
    display: block;
    position: relative;
    z-index: 1;
    height: 60px;
}

.imageUploadUI li.ImageItem img {
    display: block;
    background: white;
}

.imageUploadUI li.addImage {
    position: relative;
    cursor: pointer;
}

.imageUploadUI li.addImage label,
.imageUploadUI li.removeImages a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #529FFF;
    line-height: 60px;
    font-size: 17px;
    margin: 0 !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: -1;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -moz-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s, -moz-box-shadow ease-in-out .15s;
}

.imageUploadUI li.removeImages {
    display: none;
}

.imageUploadUI li.removeImages a {
    font-size: 19px;
    color: darkred;
}

.imageUploadUI li.addImage label:active,
.imageUploadUI li.removeImages a:active {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.imageUploadUI li.addImage label:hover,
.imageUploadUI li.removeImages a:hover {
    background: whitesmoke;
}

.imageUploadUI .hiddenFileInput {
    display: none !important;
}

.imageUploadUI li a {
    display: block;
    width: 100%;
}


/* page styles */

.page_title {
    color: #2671af;
    font-size: 30px!important;
    font-family: 'Roboto';
    font-weight: 700!important;
    padding: 5px 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page_title.centered {
    text-align: center;
}

.flex_title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-width: 280px;
    -webkit-align-items: flex-start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex_title img {
    max-width: 35px;
    min-width: 25px;
    margin: 0 10px 2px 0;
}

.flex_title p {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.lazyload[data-src] {
    overflow: hidden;
    white-space: nowrap;
}

.lazyload[data-src],
.lazyload[src] {
    opacity: 0;
}

body>section:first-of-type {
    margin-top: 0 !important;
}


/* content area globals */

.custom_content_area {
    padding: 0 10px;
    line-height: 25px;
    font-size: 15px;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.custom_content_area_clean {
    line-height: 25px;
    font-size: 15px;
}

.custom_content_area a,
.custom_content_area_clean a {
    color: #337ab7;
    text-decoration: none;
}

.browse_section_list_toggle {
    font-size: 15px;
}
.browse_section_list_toggle h2{
    font-size: 15px!important;
}

/* .custom_content_area a:hover, */

.custom_content_area_clean a:hover {
    color: #23527c!important;
    text-decoration: underline!important;
}

.browse_section_by_use_list a:hover {
    text-decoration: none!important;
}

.browse_section_providers_list a:hover {
    color: white!important;
    text-decoration: none!important;
}

.custom_content_area p,
.custom_content_area_clean p {
    margin: 10px 0;
}

.custom_content_area ul,
.custom_content_area ol,
.custom_content_area_clean ul,
.custom_content_area_clean ol {
    margin: 10px 0;
    padding: 0 0 0 25px;
}


/*b2b page */

.b2b_sec1 {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6.5rem 0;
}

.b2b_s1Title h1 {
    max-width: 700px;
    margin: auto;
    font-family: 'Roboto';
    font-size: 52px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    font-weight: normal;
}

.b2b_s1Links {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 2.5rem;
}

.b2b_s1Link1 {
    width: 274px;
    height: 55px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #379fe8;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.b2b_s1Link2 {
    width: 282px;
    height: 53px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: solid 2px #379fe8;
    margin-left: 9px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
}

.b2b_s1Link1 a {
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
}

.b2b_sec2BG {
    width: 100%;
    background-color: #f2efef;
}

.b2b_sec2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    max-width: 920px;
    margin: auto;
    padding: 4rem 0;
}

.b2b_sec2TextSecTitle {
    font-family: 'Roboto';
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #379fe8;
    margin-bottom: 0.8rem;
}

.b2b_sec2TextSecItem {
    max-width: 345px;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #292929;
    position: relative;
    margin-bottom: 2rem;
    padding-left: 37px;
}

.itemN {
    width: 17px;
    height: 17px;
    background-color: #379fe8;
    font-family: 'Roboto';
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    position: absolute;
    top: 6px;
    left: 0px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#b2b_name:before {
    position: absolute;
    left: 0;
    top: 30%;
    content: 'url(./imgs/fulname.svg)';
}

.b2b_sec2TextSec {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 38%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 38%;
    flex: 0 0 38%;
    max-width: 38%;
}

.b2b_sec2FormSec {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 10px solid #eb6c1f;
}

.b2b_sec2 .b2b_sec2FormSec form {
    max-width: 353px;
    padding: 20px 0 10px;
}

.b2b_sec2 .b2b_sec2FormSec form input,
.b2b_sec2 .b2b_sec2FormSec form textarea {
    width: 100%;
    max-width: 352px;
    height: 56px;
    opacity: 0.6;
    border: solid 1px rgba(112, 112, 112, 0.33);
    background-color: #ffffff;
    margin-bottom: 18px;
    padding-left: 35px;
}

.b2b_sec2 .b2b_sec2FormSec form span {
    position: relative;
    display: block;
}

.b2b_sec2 .b2b_sec2FormSec form i {
    position: absolute;
    left: 15px;
    top: 30%;
    max-width: 20px;
    font-size: 11px;
    z-index: 1;
}

.b2b_sec2 .b2b_sec2FormSec form i.fa-file-alt {
    position: absolute;
    left: 15px;
    top: 25%;
    max-width: 20px;
    font-size: 11px;
    z-index: 1;
}

.b2b_text {
    display: block;
}

.b2b_sec2 .b2b_sec2FormSec form textarea {
    padding-top: 15px;
    font-family: 'Roboto';
}

.b2b_text>img {
    top: 17px !important;
}

#b2b_submit {
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    width: 162px;
    height: 53px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #379fe8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    margin: auto;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-appearance: none;
}

.b2b_sec3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1320px;
    margin: auto;
    padding: 4rem 0;
}

.b2b_sec3ContTitle {
    font-family: 'Roboto';
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.46;
    letter-spacing: normal;
    text-align: left;
    color: #379fe8;
}

.b2b_sec3ContText p {
    max-width: 333px;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #292929;
    margin: 1em 0;
    padding-top: 5px;
}

.b2b_sec3Img {
    max-width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.b2b_sec3Cont {
    max-width: 37%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 37%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 37%;
    flex: 0 0 37%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.b2b_sec3ContButton {
    width: 260px;
    height: 53px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #eb6c1f;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 3.6rem;
}

.b2b_sec4Top {
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.b2b_sec4TopInner {
    position: relative;
    z-index: 1;
}

.b2b_sec4Top:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.b2b_sec4TopTitle {
    font-family: 'Roboto';
    font-size: 45px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    max-width: 50%;
    margin: 1em auto;
}

.b2b_sec4TopTitle img {
    position: absolute;
    right: -25px;
    top: 25px;
}

.b2b_sec4TopFiltr1,
.b2b_sec4TopFiltr2 {
    width: 380px;
    height: 300px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #288dd4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.b2b_sec4TopFiltr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 778px;
    margin: auto;
}

.b2b_sec4TopFiltrName {
    font-family: 'Roboto';
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.36;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
}

.b2b_sec4TopFiltrInput input {
    position: relative;
    display: block;
    z-index: 999;
    margin: 0;
    width: 20px;
    height: 20px;
}

.b2b_sec4TopFiltrInput input:checked:before {
    content: '';
    background: #1bd576;
    -webkit-box-shadow: 0 0 0 4px #fff, 0 0 0 8px #1bd576;
    -moz-box-shadow: 0 0 0 4px #fff, 0 0 0 8px #1bd576;
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px #1bd576;
    border: none;
    height: 10px;
    width: 10px;
    position: absolute;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.b2b_sec4TopFiltrInput input:before {
    content: '';
    background: #fff;
    -webkit-box-shadow: 0 0 0 #fff, 0 0 0 4px #1bd576;
    -moz-box-shadow: 0 0 0 #fff, 0 0 0 4px #1bd576;
    box-shadow: 0 0 0 #fff, 0 0 0 4px #1bd576;
    border: none;
    height: 20px;
    width: 20px;
    position: absolute;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
}

.b2b_sec4Bot {
    width: 100%;
    background-color: #152534;
    padding: 2.65rem 0;
}

.b2b_sec4BotLefy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.b2b_sec4BotInner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 555px;
    margin: auto;
}

.b2b_sec4BotLefyText {
    max-width: 217px;
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
}

.b2b_sec4BotLefyImg {
    max-width: 42px;
    margin-right: 20px;
}

.b2b_sec4BotRight {
    width: 236px;
    height: 89px;
    -webkit-box-shadow: 3px 5px 6px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 3px 5px 6px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 3px 5px 6px 0 rgba(0, 0, 0, 0.15);
    background-color: #75c043;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.36;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Roboto';
}

.b2b_sec5 {
    width: 100%;
    background-color: #fff;
    padding: 4.5rem 0;
}

.b2b_sec5Title {
    font-family: 'Roboto';
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.46;
    letter-spacing: normal;
    text-align: center;
    color: #379fe8;
}

.b2b_sec5Item {
    max-width: 250px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 4% 8.5% 4%;
}

.b2b_sec5Items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1190px;
    margin: auto;
    padding-top: 4rem;
}

.b2b_sec5ItemName {
    font-family: 'Roboto';
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    color: #152534;
}

.b2b_sec5ItemImg {
    max-width: 115px;
    margin: auto auto 10px auto;
}

.b2b_sec5Bot {
    width: 100%;
    background-color: #f2efef;
    padding: 1.6rem 0;
}

.b2b_sec5BotInner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1210px;
    margin: auto;
}

.b2b_sec5BotItem {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 158px;
}

.b2b_sec6 {
    text-align: center;
    width: 100%;
}

.b2b_sec6Title {
    font-family: 'Roboto';
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.46;
    letter-spacing: normal;
    text-align: center;
    color: #379fe8;
}

.b2b_sec6Img {
    max-width: 880px;
    margin: 3rem auto;
}

.b2b_sec6Content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 900px;
    margin: auto;
}

.b2b_sec6ContItem p {
    max-width: 385px;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #292929;
    position: relative;
    margin: 1em 0;
}

.b2b_sec6Content>div:nth-of-type(1) {
    border-right: 1px solid silver;
    padding-right: 60px;
}

.b2b_sec6ContItem p:before {
    content: '';
    width: 23px;
    height: 23px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #75c043;
    position: absolute;
    top: 4px;
}

.b2b_sec6Content div p:before {
    left: -8%;
}

.b2b_sec6Button {
    width: 202px;
    height: 55px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #379fe8;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    margin: 3.5rem auto 6.5rem;
    cursor: pointer;
}

.b2b_testimonialTitle {
    font-family: 'Roboto';
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.46;
    letter-spacing: normal;
    text-align: center;
    color: #379fe8;
    margin-bottom: 4.5rem;
}

.b2b_slideItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 270px;
    width: 100%;
    margin: auto;
    font-family: 'Roboto';
}

.b2b_slideItemL {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
    text-align: center;
    background-color: #f5f5f5;
    max-width: 245px;
}

.b2b_slideItemR {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: inherit;
    background-color: #f5f5f5;
    max-width: 685px;
    margin-left: 30px;
}

.b2b_slideItemLImg {
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.b2b_slideItemLTitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .3px;
    text-align: left;
    color: #172943;
    margin-top: 15px;
    margin-bottom: 20px;
}

.b2b_slideItemLText p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.29;
    letter-spacing: .1px;
    color: #6d6d6d;
    margin: 1em 0;
}

.b2b_slideItemLRaiting {
    height: 18px;
    -webkit-background-size: auto 200%;
    -moz-background-size: auto 200%;
    background-size: auto 200%;
    background-position: bottom left;
    background-repeat: repeat-x;
    width: 90px;
    text-align: left;
}

.b2b_slideItemLRaiting span {
    display: inline-block;
    height: 18px;
    -webkit-background-size: auto 200%;
    -moz-background-size: auto 200%;
    background-size: auto 200%;
    background-position: top left;
    background-repeat: repeat-x;
    width: 100%;
}

.b2b_slideItemRName {
    font-size: 12px;
    letter-spacing: 2.4px;
    color: #6d6d6d;
    text-transform: uppercase;
    text-align: left;
    font-weight: 700;
}

.b2b_slideItemRTitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.57;
    letter-spacing: .1px;
    text-align: left;
    color: #3a495d;
    max-width: 50%;
}

.b2b_slideItemRText p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: .1px;
    text-align: left;
    color: #6d6d6d;
    margin: 1em 0;
}

.b2b_slideItemRLink {
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
    background-color: #3bc740;
    border-color: #3bc740 !important;
    border: 3px solid;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 220px;
    margin: auto auto auto 0;
    height: 49px;
}

.b2b_slideItemLText {
    max-width: 75%;
    margin: 0 auto;
}

.b2b_slideItemRImg {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.b2b_slideItemRContent {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 55%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
}

.b2b_testimonial {
    width: 100%;
    margin: 6.5rem auto;
    position: relative;
}


/* .b2b_slide{
  max-width: 1100px;
  margin: 2rem auto;
  position: relative;
} */


/* lightslider CSS */

.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lightSlider:before,
.lightSlider:after {
    content: " ";
    display: table;
}

.lightSlider {
    overflow: hidden;
    margin: 0;
}

.installation_page_form_rows>li>input.is-invalid,
.installation_page_form_rows>li>select.is-invalid,
.installation_page_form_rows>li>textarea.is-invalid {
    border-color: #DC143C !important;
}

.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.lSSlideWrapper>.lightSlider:after {
    clear: both;
}

.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform, height;
    -moz-transition-property: -moz-transform, height;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: height, -o-transform;
    -moz-transition-property: transform, height, -moz-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform, -moz-transform, -o-transform;
    -webkit-transition-duration: inherit !important;
    -moz-transition-duration: inherit !important;
    -o-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    -moz-transition-timing-function: inherit !important;
    -o-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}

.lSSlideWrapper .lSFade {
    position: relative;
}

.lSSlideWrapper .lSFade>* {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}

.lSSlideWrapper.usingCss .lSFade>* {
    opacity: 0;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    -moz-transition-duration: inherit !important;
    -o-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    -moz-transition-timing-function: inherit !important;
    -o-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}

.lSSlideWrapper .lSFade>*.active {
    z-index: 10;
}

.lSSlideWrapper.usingCss .lSFade>*.active {
    opacity: 1;
}


/** /!!! End of core css Should not edit !!!/**/


/* Pager */

.lSSlideOuter .lSPager.lSpg {
    margin: 5px 0 0;
    padding: 0;
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.lSSlideOuter .lSPager.lSpg>li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}

.lSSlideOuter .lSPager.lSpg>li a {
    background-color: transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    overflow: hidden;
    text-indent: -999em;
    width: 10px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    -webkit-transition: all 0.8s linear 0s;
    -o-transition: all 0.8s linear 0s;
    -moz-transition: all 0.8s linear 0s;
    transition: all 0.8s linear 0s;
    background: #869791
}

.lSSlideOuter .lSPager.lSpg>li:hover a,
.lSSlideOuter .lSPager.lSpg>li.active a {
    background-color: #2d2d33;
    outline: none;
}

.lSSlideOuter .media {
    opacity: 0.8;
}

.lSSlideOuter .media.active {
    opacity: 1;
}


/* End of pager */


/* slider actions */

.lSAction>a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -16px;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    -o-transition: opacity 0.35s linear 0s;
    -moz-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}

.lSAction>a:hover {
    opacity: 1;
}

.lSAction>.lSPrev {
    background-position: 0 0;
    left: 10px;
}

.lSAction>.lSNext {
    background-position: -32px 0;
    right: 10px;
}

.lSAction>a.disabled {
    pointer-events: none;
}

.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}


/* vertical */

.lSSlideOuter.vertical {
    position: relative;
}

.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}

.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}

.lSSlideOuter.vertical .lightSlider>* {
    width: 100% !important;
    max-width: none !important;
}


/* vertical controlls */

.lSSlideOuter.vertical .lSAction>a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}

.lSSlideOuter.vertical .lSAction>.lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}

.lSSlideOuter.vertical .lSAction>.lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}


/* vertical */


/* Rtl */

.lSSlideOuter.lSrtl {
    direction: rtl;
}

.lSSlideOuter .lightSlider,
.lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}

.lSSlideOuter.lSrtl .lightSlider,
.lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}

.lSSlideOuter .lightSlider>*,
.lSSlideOuter .lSGallery li {
    float: left;
}

.lSSlideOuter.lSrtl .lightSlider>*,
.lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}


/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }
    50% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}

@-moz-keyframes rightEnd {
    0% {
        left: 0;
    }
    50% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}

@-o-keyframes rightEnd {
    0% {
        left: 0;
    }
    50% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}

@keyframes rightEnd {
    0% {
        left: 0;
    }
    50% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }
    50% {
        top: -15px;
    }
    100% {
        top: 0;
    }
}

@-moz-keyframes topEnd {
    0% {
        top: 0;
    }
    50% {
        top: -15px;
    }
    100% {
        top: 0;
    }
}

@-o-keyframes topEnd {
    0% {
        top: 0;
    }
    50% {
        top: -15px;
    }
    100% {
        top: 0;
    }
}

@keyframes topEnd {
    0% {
        top: 0;
    }
    50% {
        top: -15px;
    }
    100% {
        top: 0;
    }
}

@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }
    50% {
        left: 15px;
    }
    100% {
        left: 0;
    }
}

@-moz-keyframes leftEnd {
    0% {
        left: 0;
    }
    50% {
        left: 15px;
    }
    100% {
        left: 0;
    }
}

@-o-keyframes leftEnd {
    0% {
        left: 0;
    }
    50% {
        left: 15px;
    }
    100% {
        left: 0;
    }
}

@keyframes leftEnd {
    0% {
        left: 0;
    }
    50% {
        left: 15px;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }
    50% {
        bottom: -15px;
    }
    100% {
        bottom: 0;
    }
}

@-moz-keyframes bottomEnd {
    0% {
        bottom: 0;
    }
    50% {
        bottom: -15px;
    }
    100% {
        bottom: 0;
    }
}

@-o-keyframes bottomEnd {
    0% {
        bottom: 0;
    }
    50% {
        bottom: -15px;
    }
    100% {
        bottom: 0;
    }
}

@keyframes bottomEnd {
    0% {
        bottom: 0;
    }
    50% {
        bottom: -15px;
    }
    100% {
        bottom: 0;
    }
}

.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    -moz-animation: rightEnd 0.3s;
    -o-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}

.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    -moz-animation: leftEnd 0.3s;
    -o-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}

.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    -moz-animation: topEnd 0.3s;
    -o-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}

.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    -moz-animation: bottomEnd 0.3s;
    -o-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}

.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    -moz-animation: leftEnd 0.3s;
    -o-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}

.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    -moz-animation: rightEnd 0.3s;
    -o-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}


/*/  GRab cursor */

.lightSlider.lsGrab>* {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: default;
}

.lightSlider.lsGrabbing>* {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: default;
}


/*end slider*/

.lSSlideOuter .lSPager.lSpg {
    bottom: -35px;
}

@media (max-width: 1024px) {
    .b2b_sec5BotInner,
    .b2b_sec6Img,
    .b2b_sec6Content,
    .b2b_sec3,
    .b2b_sec4TopFiltr {
        max-width: 90%;
    }
    .b2b_sec5BotItem {
        max-width: 100px;
    }
    .b2b_sec5Items {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .b2b_s1Title h1 {
        font-size: 40px;
    }
    .b2b_sec2TextSecTitle {
        font-size: 32px;
    }
    .b2b_sec2 {
        max-width: 95%;
    }
    .b2b_sec2 .b2b_sec2FormSec form {
        max-width: 275px;
    }
    .b2b_sec2TextSecItem {
        margin-bottom: 1.5rem;
    }
    .b2b_sec4TopFiltr1,
    .b2b_sec4TopFiltr2 {
        width: 340px;
    }
    .b2b_sec4TopTitle {
        font-size: 38px;
    }
    .b2b_sec4TopTitle img {
        right: -25%;
        top: 0px;
    }
    .b2b_sec5ItemName {
        font-size: 26px;
    }
    .b2b_slideItem {
        height: 310px;
    }
    .b2b_slideItemR {
        margin-left: 15px;
        max-width: 440px;
    }
    .b2b_sec6Content>div:nth-of-type(1) {
        border-right: none;
    }
    .b2b_slideItemRLink {
        max-width: 165px;
    }
}

@media (max-width: 767px) {
    .b2b_sec2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .b2b_s1Links,
    .b2b_sec3 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .b2b_s1Link2 {
        width: 275px;
        margin: 15px auto;
    }
    .b2b_s1Title h1 {
        font-size: 33px;
    }
    .b2b_sec2TextSec,
    .b2b_sec2FormSec,
    .b2b_sec3Img,
    .b2b_sec3Cont {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .b2b_sec2 .b2b_sec2FormSec form {
        max-width: 95%;
        margin: auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
    .b2b_sec2 .b2b_sec2FormSec form span {
        width: 100%;
        text-align: center;
    }
    .b2b_sec2 {
        max-width: 90%;
    }
    .b2b_sec2TextSec,
    .b2b_sec3Img {
        margin-bottom: 2.5rem;
    }
    .b2b_sec3ContButton {
        margin-top: 1.6rem;
    }
    .b2b_sec4TopTitle {
        font-size: 28px;
        max-width: 80%;
    }
    .b2b_sec4TopFiltrName {
        font-size: 20px;
    }
    .b2b_sec4TopFiltr1,
    .b2b_sec4TopFiltr2 {
        width: 47%;
        height: 260px;
    }
    .b2b_sec4TopTitle img {
        right: -10%;
        top: 5px;
        max-width: 50px;
    }
    .b2b_sec4BotInner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .b2b_sec4BotRight {
        width: 45%;
        height: 55px;
        font-size: 20px;
        line-height: normal;
        margin-top: 1.5rem;
    }
    .b2b_sec5BotInner {
        -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
        flex-flow: wrap;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .b2b_sec5BotItem {
        margin-bottom: 1rem;
    }
    .b2b_sec5ItemImg {
        max-width: 38%;
        margin: auto auto 10px auto;
    }
    .b2b_sec5ItemName {
        font-size: 20px;
    }
    .b2b_sec5Items {
        padding-top: 2rem;
    }
    .b2b_sec5Title {
        font-size: 28px;
    }
    .b2b_sec5 {
        padding: 2.5rem 0;
    }
    .b2b_sec5Items {
        padding-top: 1.5rem;
    }
    .b2b_sec6Content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .b2b_sec6Content>div:nth-of-type(1) {
        padding-right: 0;
    }
    .b2b_sec6ContItem {
        max-width: 100%;
        font-size: 16px;
        padding-left: 10%;
        margin-bottom: 1rem;
    }
    .b2b_sec6Content>div p:before {
        width: 15px;
        height: 15px;
        top: 5px;
    }
    .b2b_sec6Title,
    .b2b_testimonialTitle {
        font-size: 28px;
        line-height: normal;
    }
    .b2b_sec6Button {
        width: 40%;
        height: 45px;
        font-size: 16px;
    }
    .b2b_slideItem {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
    }
    .b2b_slide,
    .b2b_slideItemL,
    .b2b_slideItemR {
        height: 100% !important;
    }
    .b2b_slideItemL,
    .b2b_slideItemR {
        max-width: 85%;
        margin: auto;
        width: 100%;
        padding: 1rem 0;
    }
    .b2b_slideItemR {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .b2b_slideItemRImg {
        max-width: 100%;
    }
    .b2b_slideItemRName,
    .b2b_slideItemRTitle,
    .b2b_slideItemRText p {
        text-align: center;
    }
    .b2b_slideItemRTitle {
        width: 100%;
        max-width: 100%;
    }
    .b2b_slideItemRLink {
        max-width: 165px;
        margin: auto;
    }
    .b2b_slideItemRContent {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 90%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 90%;
        flex: 0 0 90%;
        max-width: 90%;
    }
}


/* hideen form sections*/

.b2b_hiddenForm1 {
    background-color: #f2efef;
    width: 100%;
    padding: 5rem 0;
}

#b2b_hiddenForm1,
#b2b_hiddenForm2,
#b2b_hiddenForm3 {
    display: none;
}

.b2b_hiddenForm1 form input,
.b2b_hiddenForm1 form textarea {
    width: 100%;
    max-width: 100%;
    height: 56px;
    opacity: 0.6;
    border: solid 1px rgba(112, 112, 112, 0.33);
    background-color: #ffffff;
    margin-bottom: 18px;
    padding-left: 35px;
}

.b2b_hiddenForm1 form {
    max-width: 500px;
    padding: 3rem 2.5rem;
    margin: auto;
    background: #fff;
}

.b2b_hiddenForm1 form span {
    position: relative;
    display: block;
}

.b2b_hiddenForm1 form textarea {
    padding-top: 20px;
}

.b2b_hiddenForm1 form i {
    position: absolute;
    left: 15px;
    top: 30%;
    max-width: 20px;
    font-size: 11px;
    z-index: 1;
}

.b2b_hiddenForm1 form #b2b_submit {
    margin: auto !important;
}

#b2b_form1close,
#b2b_form2close,
#b2b_form3close {
    max-width: 500px;
    margin: auto;
    text-align: right;
}

#b2b_form1close svg,
#b2b_form2close svg,
#b2b_form3close svg {
    cursor: pointer;
}

textarea::-webkit-input-placeholder {
    /* Edge */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

textarea:-moz-placeholder {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

textarea::-moz-placeholder {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

textarea::-ms-input-placeholder {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

textarea::placeholder {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

#b2b_hidenForm2_select {
    width: 100%;
    max-width: 100%;
    height: 56px;
    opacity: 0.6;
    border: solid 1px rgba(112, 112, 112, 0.33);
    background-color: #ffffff;
    margin-bottom: 18px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-indent: 35px;
}

.b2b_sec5ItemText p {
    text-align: center;
    line-height: 1.5;
    font-family: Roboto;
    font-size: 15px;
    color: #333;
    padding-top: 0.5rem;
}

.b2b_s1Link2,
#b2b_submit,
.b2b_sec3ContButton,
#b2b_toForm3,
#b2b_toForm4 {
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    -moz-transition: all .6s ease;
    transition: all .6s ease;
}

.b2b_s1Link2:hover {
    background: #379fe8;
    border: 2px solid rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    text-shadow: -1px -1px 0 #379fe8;
}

#b2b_submit:hover,
#b2b_toForm4:hover {
    background-color: #288dd4;
}

.b2b_sec3ContButton:hover {
    background-color: #d35c13;
    color: white!important;
}

#b2b_toForm3:hover {
    background-color: #478e17;
}

.b2b_hiddenForm1 form input[aria-invalid='true'],
.b2b_sec2 .b2b_sec2FormSec form input[aria-invalid='true'] {
    border: 1px solid red;
}

select[aria-invalid='true'] {
    color: red;
}

.wpcf7-not-valid-tip,
.wpcf7-mail-sent-ok {
    display: none !important;
}

.reseller_success_message_wrapper *::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.reseller_success_message {
    background: white;
    display: block;
    max-width: 600px;
    padding: 20px;
    position: relative;
    z-index: 20;
}

.reseller_success_message h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2671af;
    font-size: 30px;
    font-family: 'Roboto';
}

.reseller_success_message p {
    display: block;
    padding: 0 10px;
    margin: 0 0 15px;
    line-height: 25px;
    text-align: center;
}

.reseller_success_message a.cta {
    display: block;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    padding: 12px 12px;
    font-size: 16px;
    text-align: center;
    border-color: #b94e0d;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #b94e0d;
    color: white;
    text-decoration: none;
    background-color: #ec6615;
    cursor: pointer;
}

.reseller_success_message a.cta:active {
    outline: none;
    background-color: #3E8241;
    border-color: #2B562D;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.reseller_success_message_wrapper>.close {
    cursor: default;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
}

.reseller_success_message .close {
    color: #2671af;
    text-decoration: none;
    position: absolute;
    right: 15px;
    font-size: 15px;
    top: 15px;
    z-index: 10;
}

.resellers_success_message_wrapper_toggle {
    display: none;
    position: relative;
    z-index: 200;
}

.resellers_success_message_wrapper {
    font-family:'Roboto';
    font-size: 15px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.resellers_success_message_wrapper *::before,
.resellers_page_grid *::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.resellers_success_message {
    background: white;
    display: block;
    max-width: 600px;
    min-width: 550px;
    padding: 20px;
    position: relative;
    z-index: 20;
}

.resellers_success_message h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2671af;
    font-size: 30px;
    font-family: 'Roboto';
}

.resellers_success_message p {
    display: block;
    padding: 0 10px;
    margin: 0 0 15px;
    line-height: 25px;
    text-align: center;
}

.resellers_success_message a.cta {
    display: block;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    padding: 12px 12px;
    font-size: 16px;
    text-align: center;
    border-color: #b94e0d;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #b94e0d;
    color: white;
    text-decoration: none;
    background-color: #ec6615;
    cursor: pointer;
}

.resellers_success_message a.cta:active {
    outline: none;
    background-color: #3E8241;
    border-color: #2B562D;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.resellers_success_message_wrapper>.close {
    cursor: default;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
}

.resellers_success_message .close {
    color: #2671af;
    text-decoration: none;
    position: absolute;
    right: 15px;
    font-size: 15px;
    top: 15px;
    z-index: 10;
}

@media only screen and (max-width: 650px) {
    .resellers_success_message {
        min-width: 260px;
    }
}

#woo_pp_ec_button_checkout {
    display: none !important;
}


/* new css */

.featured_section_product_info_link:before {
    display: none;
}

.installation_page_form_rows>li>input[type=file] {
    position: relative;
}

.installation_page_form_rows>li>input[type=file]:after {
    content: "";
    height: 100%;
    width: 136px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
}

.installation_page_form {
    position: relative;
    margin: 0;
    background-color: #234354;
    padding: 40px 10px;
    color: #e2e2e2;
    font-family: 'Roboto';
    font-size: 15px;
}

.installation_page_form_loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    padding: 30px 0;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.installation_page_grid {
    max-width: 1180px;
    min-width: 250px;
    margin: 0 auto;
    font-family: 'Roboto';
    font-size: 15px;
}

.installation_page_form_loader i {
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    display: inline-block;
    width: 40px;
    border: 5px solid #234354;
    border-right-color: white;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    border-radius: 100%;
    height: 40px;
    position: sticky;
    top: 45%;
    font-size: 55px;
    color: #379fe8;
}

.installation_page_form_rows>li>div label {
    font-weight: bold;
}

.installation_page_form_rows>li>div {
    margin-top: 20px;
}

.installation_page_form_title {
    color: #439c61;
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 24px;
    padding: 0 10px 15px;
}

.installation_page_form_subtitle {
    color: #439c61;
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 21px!important;
    padding: 0 0 0;
}

.installation_page_form_rows>li>textarea {
    padding: 10px 12px!important;
    height: 115px!important;
    resize: vertical!important;
    line-height: 1.5!important;
}

.installation_page_form_desc {
    padding: 0 10px;
    line-height: 25px;
}

.installation_page_form {
    color: #e2e2e2;
}

.installation_page_form_rows {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.installation_page_form_rows>.rowspan {
    width: 100%;
}

.installation_page_form_rows>li {
    padding: 10px;
}

.installation_page_form_rows>.row {
    flex: 50%;
    min-width: 260px;
}

.installation_page_form_rows>.tri {
    flex: 33%;
    min-width: 160px;
}

.review-avatar-wrapper.pull-left {
    height: auto !important;
}

.installation_page_form_rows>li>label:first-of-type {
    padding: 0 0 0;
}

.installation_page_form_rows>li>label {
    display: block;
    font-weight: bold;
    padding: 20px 0 0;
}

.installation_page_form_rows>li>input[type=text],
.installation_page_form_rows>li>input[type=email],
.installation_page_form_rows>li>input[type=number],
.installation_page_form_rows>li>select,
.installation_page_form_rows>li>input[type=file],
.installation_page_form_rows>li>textarea {
    display: block;
    width: 100%;
    padding: 0px 12px 0 12px;
    height: 35px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.installation_page_form_rows>li>input[type=submit] {
    display: block;
    width: 100%;
    max-width: 150px;
    margin-left: auto;
    padding: 12px 12px;
    font-size: 16px;
    text-align: center;
    border-color: #b94e0d;
    border-radius: 4px;
    border: 1px solid #b94e0d;
    color: white;
    text-decoration: none;
    background-color: #ec6615;
    cursor: pointer;
}

.installation_page_form_rows>li>label.radio {
    display: inline-block;
    padding: 5px 0;
}

.installation_page_form_rows>li>input[type=radio] {
    display: inline-block;
}

.installation_page_grid input,
.installation_page_grid button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.installation_page_form_rows>li>label.radio {
    display: inline-block;
    padding: 5px 0;
}

@media (max-width: 1100px) {
    .cart_page_footer>ul>li>.main .woocommerce {
        max-width: 100% !important;
        min-width: 150px !important;
    }
    .blog_list_page_list>li .main>a:first-of-type h2 {
        font-size: 26px;
    }
    .why_choose_us_section_list,
    .shop_page_filter,
    .product_page_description_tabs_tech_list,
    .product_page_faq_list {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .why_choose_us_section_list>li,
    .shop_page_products>li,
    .shop_page_filter>li {
        -webkit-box-flex: inherit !important;
        -moz-box-flex: inherit !important;
        -webkit-flex: inherit !important;
        -ms-flex: inherit !important;
        flex: inherit !important;
    }
    .product_page_description_tabs_tech_list>.title,
    .product_page_faq_list>li,
    .product_page_main_info {
        -webkit-box-flex: inherit !important;
        -moz-box-flex: inherit !important;
        -webkit-flex: inherit !important;
        -ms-flex: inherit !important;
        flex: inherit !important;
    }
}

@media (max-width: 767px) {
    .product_page_description_tabs_tech_list,
    .product_page_reviews_header {
        flex-direction: column;
    }
    .product_page_description_tabs_tech_list>.row {
        -webkit-box-flex: inherit !important;
        -moz-box-flex: inherit !important;
        -webkit-flex: inherit !important;
        -ms-flex: inherit !important;
        flex: inherit !important;
    }
    .entry_section_subtitle {
        font-size: 24px;
        line-height: 34px;
    }
    .entry_section_title {
        color: #fff;
        font-size: 28px;
    }
    .why_choose_us_section_list>li {
        background-size: 100px 100px;
        padding: 95px 10px 10px;
    }
    .why_choose_us_section_list_title {
        font-size: 16px;
    }
    .header_main .header_search {
        display: none;
    }
    .shop_page_filter>li>h2 {
        font-size: 28px;
    }
    .blog_list_page_list>li {
        padding: 0 0 10px;
    }
    .blog_post_page_content>.grid h2 {
        font-size: 24px;
    }
    .featured_section_product_list>li,
    .service_section_list>li,
    .header_benefits_list>li,
    .browse_section_list>li,
    .footer_content_row,
    .footer_content_row_wide,
    .footer_side>li {
        -webkit-box-flex: inherit !important;
        -moz-box-flex: inherit !important;
        -webkit-flex: inherit !important;
        -ms-flex: inherit !important;
        flex: inherit !important;
    }
    .header_benefits_list>li {
        max-width: 133px;
    }
    .browse_section_list>li {
        width: 47%;
    }
}

@media (max-width: 650px) {
    .footer_side>li>img {
        max-width: 350px;
        width: 100%;
    }
    .blog_post_page_content img {
        height: auto;
    }
    .blog_post_page_title {
        font-size: 26px;
    }
    .header_card {
        max-width: 50px;
        min-width: 50px;
    }
    .header_nav_mobile_toggle_button {
        height: 32px;
        width: 36px;
    }
    .loginsignup {
        margin-top: 8px;
    }
    .header_nav_mobile_toggle_button>div:nth-child(1):empty {
        top: 6px;
    }
    .support_section_title {
        font-size: 18px;
    }
    .help_section_title {
        font-size: 24px;
    }
    .help_section_content_main p,
    .blog_post_page_content {
        font-size: 13px;
        line-height: 20px;
    }
    .browse_section_dropdowncontent p,
    .browse_section_dropdowncontent li,
    .certified_section_content_main p {
        font-size: 13px;
        line-height: 20px;
    }
    .how_it_works_section_content_main p,
    .how_it_works_section_content_main ol {
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 20px;
    }
    .how_it_works_section_content_main h3 {
        padding: 2px 0;
    }
    .help_section_content_side {
        max-width: 200px;
        min-width: 200px;
    }
    .product_page_faq_list>li>a {
        font-size: 17px;
    }
    .page_title {
        font-size: 26px;
    }
    .product_page_faq_list>li>div p {
        margin: 8px 0;
        font-size: 14px;
        line-height: 20px;
    }
    .cart_page_footer>ul>li {
        min-width: 100%;
        margin: 0;
    }
    .cart_page_footer>ul>li>.side {
        min-width: 80px;
        max-width: 80px;
        height: 70px;
    }
    .cart_page_footer>ul>li>.main {
        min-width: 180px;
    }
    .case_study_page_list_content_title {
        font-size: 20px;
    }
    .faq_page_phone_link {
        font-size: 26px;
    }
    .installation_page_title {
        font-size: 22px;
        padding: 0 10px 20px;
    }
    .installation_page {
        padding: 30px 0 0;
    }
    .installation_page_steps {
        padding: 10px 10px 10px;
    }
    .installation_page_steps>li {
        padding: 20px 0px;
    }
    .resellers_page_subtitle {
        font-size: 24px;
        margin: 30px 0 10px;
    }
    .resellers_page_subtext {
        line-height: 22px;
    }
    .custom_content_area {
        margin-top: 10px !important;
    }
    .resellers_page_contact_form {
        margin: 30px 0 10px;
    }
    .help_section {
        padding: 10px 10px 10px;
    }
    .certified_section {
        margin: 10px 10px;
    }
    .installation_page_steps>li>.content {
        padding: 10px;
    }
}

@media (max-width: 400px) {
    .loginsignup a {
        padding: 12px 10px !important;
        font-size: 12px;
    }
    .loginsignup span {
        padding: 6px 6px;
    }
    .by_provider_section_title {
        font-size: 28px;
    }
    .checkout_page_content_payment .payment_method_paypal img {
        max-width: 60px;
    }
    .checkout_page_content_payment .payment_method_stripe img {
        max-width: 32px;
    }
    .browse_section .grid {
        min-width: 280px;
    }
    .browse_section_dropdowncontent {
        padding: 10px;
    }
    .comment_list_app_content>article>.main>p {
        line-height: 15px;
        font-size: 13px;
    }
    .comment_list_app_content article {
        padding: 10px 5px 10px;
    }
}


/* End new css */


/* Black Friday css */

.blackFriday_fixed_header {
    background-image: url("https://www.boostersdirect.com/wp-content/uploads/2021/11/banner-black-friday.png");
    background-repeat: no-repeat;
    height: 124px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.blackFriday_content {
    max-width: 1210px;
    width: 100%;
    margin: auto;
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.bF_logo_mob {
    display: none;
}

.blackFriday_logo {
    padding-top: 12px;
}

.blackFriday_logo_elements {
    width: 45%;
}

.blackFriday_logo_elements,
.blackFriday_logo_elements_2 {
    position: relative;
    display: flex;
    justify-content: center;
}

.blackFriday_logo_elements:before {
    content: url("https://www.boostersdirect.com/wp-content/uploads/2021/11/circles.png");
    position: absolute;
    top: 10px;
    height: 24px;
    width: 56px;
    display: block;
    left: 10px;
}

.blackFriday_logo_elements:after {
    content: url("https://www.boostersdirect.com/wp-content/uploads/2021/11/circles.png");
    position: absolute;
    bottom: 10px;
    height: 24px;
    width: 56px;
    display: block;
    right: 10px;
}

.bF_logo_1 {
    width: 245px;
    max-height: 104px;
    height: 100%;
}

.line1_left,
.line1_right {
    max-width: 192px;
    width: 100%;
    height: 124px;
    position: absolute;
}

.line1_left {
    left: 0;
}

.line1_right {
    right: 0;
}

.line2_left,
.line2_right {
    height: 48px;
}

.up_to_off_content {
    position: relative;
}

.up_to_off_content img {
    width: 96px;
    height: 105px;
}

.up_to_number,
.up_to_off {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    color: #FFFFFF;
}

.up_to_off_div {
    position: absolute;
    top: 26px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.blackFriday_right_content {
    position: relative;
    padding-left: 90px;
}

.blackFriday_right_elements {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.copy_text_div {
    padding-top: 15px;
    position: relative;
}

.copy_text_div #copy_text {
    width: 280px;
    height: 60px;
    border: 1.5px solid #FFFFFF;
    box-sizing: border-box;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    color: #DA4B45;
    text-align: center;
    padding-top: 9px;
}

.copy_text_div button {
    background: transparent !important;
    width: 280px;
    height: 60px;
    border: none !important;
    position: absolute;
    top: 15px;
    cursor: pointer;
}

.bl-F_use_code {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
    padding-right: 20px;
    padding-top: 15px;
}

.bf_right_lineTop,
.bf_right_lineBottom {
    position: absolute;
}

.bf_right_lineTop {
    top: 0;
    left: 80px;
}

.bf_right_lineBottom {
    bottom: 0;
    left: -25px;
}

.line1_right_mob {
    display: none;
}

@media (max-width: 1220px) {
    .line1_left,
    .blackFriday_logo_elements:before,
    .blackFriday_logo_elements:after,
    .bf_right_lineTop,
    .bf_right_lineBottom {
        display: none;
    }
    .line1_left,
    .line1_right {
        max-width: 120px;
    }
    .blackFriday_logo_elements,
    .blackFriday_logo_elements_2 {
        justify-content: flex-start;
    }
    .blackFriday_logo_elements {
        width: 320px;
    }
    .blackFriday_right_elements {
        flex-direction: column;
        padding-top: 0;
    }
    .blackFriday_right_content {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .bF_logo_1,
    .line1_right {
        display: none;
    }
    .bF_logo_mob {
        display: block;
    }
    .line1_right_mob {
        display: block;
        position: absolute;
        left: -32px;
        right: 0;
        margin: auto;
    }
    .up_to_off_content img {
        width: 45px;
        height: 52px;
    }
    .up_to_number,
    .up_to_off {
        font-size: 14px;
        line-height: 1;
    }
    .up_to_off_div {
        top: 18px;
    }
    .bl-F_use_code {
        font-size: 16px;
        line-height: 10px;
    }
    .copy_text_div #copy_text {
        font-size: 18px;
        padding-top: 1px;
    }
    .copy_text_div #copy_text,
    .copy_text_div button {
        width: 164px;
        height: 40px;
    }
    .blackFriday_fixed_header {
        height: 80px;
    }
    .copy_text_div {
        padding-top: 6px;
    }
    .blackFriday_logo {
        padding-top: 0;
    }
    .blackFriday_logo_elements {
        width: 115px;
    }
    .up_to_off_content {
        margin-left: -45px;
    }
    .copy_text_div button {
        top: 5px;
    }
}

@media (max-width: 340px) {
    .copy_text_div #copy_text,
    .copy_text_div button {
        width: 120px;
        height: 38px;
    }
    .copy_text_div #copy_text {
        font-size: 14px;
        padding-top: 0;
    }
    .line1_right_mob {
        display: none;
    }
}


/* End Black Friday css */

#fc_frame.h-open-container,
#fc_frame.fc-widget-normal.h-open-container {
    min-height: 720px !important;
}

/* CHECKOUT CSS */
.checkout_page_order_table h2 {
    margin-top: 0!important;
    margin-bottom: 0!important;
}

.woocommerce .blockUI.blockOverlay,
.woocommerce .loader {
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.woocommerce .blockUI.blockOverlay:before,
.woocommerce .loader:before {
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    font-family: "Font Awesome 6 Free";
    font-weight: 500;
    content: "\f1ce";
    font-size: 35px;
    color: #379fe8;
    background: none;
    opacity: 1;
}


/* woo fields */

.payment_box br {
    display: none;
}

.payment_box input[type="checkbox"]+label {
    margin-top: 15px !important;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: #DC143C !important;
}

.woocommerce form .form-row label {
    line-height: inherit;
    display: block;
    margin: 5px 0;
    /* font-weight: bold; */
    color: #646669;
    position: relative;
}

.woocommerce form .form-row {
    margin: 0;
    padding: 0;
    width: 100%;
}

.woocommerce-input-wrapper strong {
    margin-top: 10px;
    display: block;
}

.woocommerce form .form-row .optional {
    display: none;
}

.woocommerce-checkout #payment {
    border-radius: 0;
    background: none;
}

.checkout_page_content_payment .woocommerce-error,
.checkout_page_content_payment .woocommerce-info,
.checkout_page_content_payment .woocommerce-message {
    margin: 0;
    line-height: 1.5;
}


/* woo payment */

.payment_box {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1;
    flex: 1;
    min-width: 100%;
    padding: 15px;
    color: #5e6a6e;
    line-height: 1.5;
    background-color: #eff4f6;
}

.payment_box fieldset {
    border: 0;
}

.form-row {
    width: 100%;
    display: unset!important;
}

.row {
    margin-left: unset!important;
    margin-right: unset!important;
}

.payment_box * {
    list-style: none;
}

.woocommerce-SavedPaymentMethods>li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.woocommerce-SavedPaymentMethods>li input[type=radio] {
    margin-right: 10px;
}

.about_paypal {
    padding-left: 10px;
}


/* woo bpay fixes */

.woocommerce,
#bpay_form {
    max-width: 1180px;
    min-width: 300px;
    margin: 0 auto;
}

.woocommerce>ul.order_details,
#bpay_form {
    padding: 0 20px;
}


/* woo end */

.cart_header {
    border-bottom: 2px solid #d8e1e8;
    margin-bottom: 30px;
}

.cart_header ul {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.cart_header ul>li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    padding: 25px 10px;
    line-height: 20px;
    color: #b8c8d5;
}

.cart_header ul>li.active {
    color: #1c1c1c;
}

.checkout_page {
    margin: 35px auto 25px;
    padding: 0 10px;
}

.checkout_page.grid {
    max-width: 950px;
    min-width: 260px;
}

.checkout_page_title {
    color: #2671af;
    font-size: 30px;
    padding: 0 0 10px;
    font-family: 'Roboto';
    font-weight: bold;
    line-height: 1.0;
}

.checkout_page_coupon_form {
    padding: 10px;
    border: 1px solid #dee9ed;
    border-radius: 5px;
    text-align: center;
}

.checkout_page_coupon_form>form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.checkout_page_coupon_form input[type=text] {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 10px 5px;
    padding: 0px 12px 0 12px;
    height: 35px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
    border-radius: 4px;
    font-family: inherit;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.checkout_page_coupon_form input[type=text]:focus {
    border-color: #66afe9;
    outline: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.checkout_page_coupon_form input[type=button]:hover {
    border-color: #76bf42;
    color: #76bf42;
}

.checkout_page_coupon_form input[type=button]:focus {
    outline: none;
}

.checkout_page_coupon_form input[type=button] {
    display: inline-block;
    margin: 10px 5px;
    padding: 0px 12px 0 12px;
    height: 35px;
    border: 1px solid #379fe8;
    background-color: #fff;
    line-height: 1.5;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    color: #379fe8;
}

.checkout_page_content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-width: 280px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0;
}

.checkout_page_content>div {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 260px;
}

.checkout_page_content>div.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    align-self: flex-start;
}

.checkout_page_content .inner_grid {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /*padding: 0 5px;*/
}

.checkout_page_content .inner_grid>.row {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 50%;
    min-width: 50%;
    padding: 5px;
}

.checkout_page_content .inner_grid>.row p {
    margin: 0;
    width: 100%;
    padding: 0;
    float: none;
}

.checkout_page_content .inner_grid>.rowspan {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
    min-width: 100%;
    padding: 5px;
}

.checkout_page_content_steps {
    list-style: none;
}

.checkout_page_content_steps_title {
    position: relative;
    font-family: 'Roboto';
    font-weight: bold;
    margin: 15px 5px 5px;
    padding-bottom: 5px;
    font-size: 18px;
}

.checkout_page_content_steps_title i {
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    color: dimgray;
}

.checkout_page_content_steps_title::after {
    content: "";
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 100%;
    height: 1px;
    background-color: #379fe8;
}

.checkout_page_content_steps_title span {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 4px 0 0;
    margin-right: 10px;
    color: white;
    background-color: #379fe8;
    border-radius: 100%;
}

.checkout_page_content label {
    display: block;
    margin: 5px 0;
    font-weight: bold;
    color: #646669;
    position: relative;
}

.checkout_page_content label>b {
    color: red;
}

.checkout_page_content input[type="checkbox"]+label {
    padding: 0 0 0 32px;
    cursor: pointer;
    line-height: 1.2;
    margin: 5px 10px;
    display: block !important;
}

.checkout_page_content .terms_label {
    margin: 15px 10px 15px !important;
}

.checkout_page_content input[type="checkbox"] {
    display: none;
}

.checkout_page_content input[type="checkbox"]+label::before {
    content: "";
    background-color: #8fc55b;
    display: block;
    position: absolute;
    left: 5px;
    top: -1px;
    text-align: center;
    font-size: 12px;
    padding: 3px 0 0;
    width: 19px;
    height: 19px;
    color: white;
    border-radius: 5px;
}

.checkout_page_content input[type="checkbox"]:checked+label::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
}

.checkout_page_content input[type=text],
.checkout_page_content input[type=number],
.checkout_page_content textarea,
.checkout_page_content input[type=tel],
.checkout_page_content input[type=email] {
    display: block !important;
    width: 100% !important;
    padding: 0px 12px 0 12px;
    height: 35px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #555!important;
    line-height: 1.5;
    font-size: 14px !important;
    border-radius: 4px;
    font-family: inherit;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.checkout_page_content textarea {
    margin: 5px 0 0;
    padding: 10px 12px !important;
    height: 115px !important;
    resize: vertical;
    line-height: 1.2 !important;
}

.checkout_page_content input[type=text]:focus,
.checkout_page_content textarea:focus,
.checkout_page_content input[type=tel]:focus,
.checkout_page_content input[type=number]:focus,
.checkout_page_content input[type=email]:focus {
    border-color: #66afe9;
    outline: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6) !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6) !important;
}

.checkout_page_content input[type=submit] {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #f5751e;
    font-weight: 700;
    font-size: 18px;
    font-family: inherit;
    color: white;
    border: 0;
    padding: 15px 5px;
    cursor: pointer;
    border-radius: 5px;
    background-clip: padding-box;
    border-bottom: 2px solid #d65c0a;
}

.checkout_page_content input[type=submit]:hover {
    background-color: #d65c0a;
}

.checkout_page_content input[type=submit]:focus {
    outline: none;
}

.coupon_toggle {
    display: block;
    width: 100%;
    color: #379fe8;
    text-align: center;
    text-decoration: none;
    padding: 0 6px;
}

.coupon_toggle:hover,
.coupon_toggle.active {
    border-color: #76bf42;
    color: #76bf42 !important;
}

.checkout_page_order_table {
    background-color: #f2f2f2;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    color: #333;
}

.checkout_page_order_table>h2 {
    display: block;
    padding: 15px 15px 10px;
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 21px;
}

.checkout_page_order_table_product_list {
    list-style: none;
    border-bottom: 1px solid #D9D9D9;
}

.checkout_page_order_table_product_list>li {
    border-top: 1px solid #D9D9D9;
    padding: 15px;
}

.checkout_page_order_table_product_list>li a {
    color: #333;
}

.checkout_page_order_table_product_list>li a:hover {
    color: #333;
}

.checkout_page_order_table_product_list>li>header a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    white-space: nowrap;
}

.checkout_page_order_table_product_list>li>header a .name {
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout_page_order_table_product_list>li>header a .qty {
    padding: 0 10px;
    font-weight: bold;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
}

.checkout_page_order_table_product_list>li>header a .total {
    font-weight: bold;
}

.checkout_page_order_table_product_list>li>header a .qty::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    display: inline-block;
    font-size: 10px;
    margin-right: 2px;
    content: '\f00d';
}

.checkout_page_order_table_product_list>li>h4 {
    font-weight: bold;
    font-size: 15px;
    margin: 10px 0 5px;
}

.order_details_page_list_product_list ul li {
    line-height: 25px;
}

.checkout_page_order_table_product_list>li>.extra {
    list-style: none;
    line-height: 25px;
}

.checkout_page_order_table_product_footer {
    list-style: none;
    padding: 11px 15px;
    font-weight: bold;
}

.checkout_page_order_table_product_footer>li {
    padding: 4px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.checkout_page_content a {
    color: #337ab7;
    text-decoration: none;
}

.checkout_page_content a:hover {
    color: #23527c;
    text-decoration: none;
}

.checkout_page_order_table_product_footer>li>.title {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.checkout_page_content_payment {
    list-style: none;
    border-bottom: 1px solid #D9D9D9;
}

.checkout_page_content_payment>li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.checkout_page_content_payment>li>input:first-of-type {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 15px;
    min-width: 15px;
    margin-left: 10px;
}

.checkout_page_content_payment>li:last-of-type {
    margin-bottom: 10px;
}

.checkout_page_content_payment>li>label {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1;
    flex: 1;
    padding-left: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-width: 80%;
    max-width: 100%;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    cursor: pointer;
}

.checkout_page_content_payment>li>label img {
    max-height: 35px;
    max-width: 70px;
    margin: 3px 0 3px 8px;
}

.checkout_page_content_payment>li>label>p {
    margin: 5px 15px 5px 0;
}

.checkout_page_content_payment>li>.dropdown {
    display: none;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    z-index: 10;
    min-width: 100%;
    max-height: 100%;
    padding: 15px;
    color: #5e6a6e;
    line-height: 1.5;
    background-color: #eff4f6;
}

.checkout_page_content_payment>li>.dropdown::before {
    content: "";
    position: absolute;
    left: 25px;
    bottom: 100%;
    width: 15px;
    height: 15px;
    margin-bottom: -7px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #eff4f6;
}

.checkout_page_content .security {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    align-content: flex-start;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    height: 100px;
    padding: 0 15px;
    max-width: 330px;
    margin: 0 auto;
}

.checkout_page_content .security>a {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.checkout_page_content .security>a>img {
    width: 80px;
}

@media only screen and (max-width: 650px) {}

/* CART */


.cart_header {

	border-bottom: 2px solid #d8e1e8;
	border-top: 1px solid #d8e1e8;

}


.cart_page label.screen-reader-text {
	display: none;
}

.coupon-error {
    color: red;
    font-weight: bold;
    margin: 10px 0;
}
.coupon-success {
    color: green;
    font-weight: 600;
    margin: 10px 0;
}



.woocommerce-notices-wrapper {

	max-width: 930px;
	min-width: 260px;
	margin: 0 auto;

}



.cart_page .woocommerce-notices-wrapper {
	max-width: 100%;
}



.woocommerce-notices-wrapper>* {
	margin: 15px auto;
}



.woocommerce-notices-wrapper:empty {

	display: none;

}



.woocommerce-message {

	border-top: 2px solid #d8e1e8;

	background: none;

}



.woocommerce-error {

	background: none;

	line-height: 25px;

	border-top-width: 2px;

	margin: 15px auto;

	max-width: 930px;

	min-width: 260px;

}



.woocommerce-message::before {

	color: #2671af;

}



.woocommerce-notices-wrapper a {

	color: #337ab7;

	text-decoration: none;

}



.woocommerce-notices-wrapper a:hover {

	color: #23527c;

	text-decoration: underline;

}



.cart_header ul {

	list-style: none;

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-justify-content: space-around;

	justify-content: space-around;
	margin-bottom: 0;

}



.cart_header ul>li {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	text-align: center;

	padding: 25px 10px;

	line-height: 20px;

	color: #b8c8d5;

}



.cart_header ul>li.active {

	color: #1c1c1c;

}



.cart_page {

	margin: 15px auto;

	padding: 0 10px;

}



.cart-empty {

	font-size: 16px;

	margin-bottom: 10px;

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 100%;

	max-width: 100%;

}



.cart_page.grid {

	max-width: 1000px;

	min-width: 260px;

	overflow: hidden;

}



.cart_page_header {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-justify-content: flex-start;

	justify-content: flex-start;

	-webkit-align-items: center;

	align-items: center;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

}



.cart_page_header>.cart_page_title {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1 1 auto;

	-ms-flex: 1;

	flex: 1;

	min-width: 100%;

	max-width: 100%;

	padding: 0 10px;

	margin-top: 2px;

}



.cart_page_header.none>.cart_page_title {

	min-width: 100%;

	max-width: 100%;

	margin: 10px 0 20px;

	text-align: center;

}



.cart_page_header.none>.cart_page_cta {

	margin: 0 auto;

}



.cart_page_header>.cart_page_cta {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	position: relative;

	align-self: flex-end;

}



.cart_page_title,

.cart-empty {

	color: #2671af;

	font-size: 30px;

	margin: 10px 0;

	font-family: 'Roboto';

	font-weight: bold;

	line-height: 1.0;

}



.cart_page_cta {

	display: block;

	width: 100%;

	max-width: 180px;

	min-width: 180px;

	text-align: center;

	padding: 8px;

	border: 1px solid #379fe8;

	color: #379fe8;

	text-decoration: none;

	border-radius: 4px;

}



.cart_page_cta:hover {

	border-color: #76bf42;
	color: #76bf42;
	text-decoration: none;

}



.cart_page_product_list {

	list-style: none;

	margin: 15px 0 0;

	border-bottom: 2px solid #d8e1e8;

	color: #333;

}



.cart_page_product_list>li {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

	-webkit-justify-content: flex-start;

	justify-content: flex-start;

	border-top: 2px solid #d8e1e8;

}



.cart_page_product_list>li>.remove {

	padding: 10px;

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 25px;

	max-width: 50px;

	font-size: 14px;

	font-weight: bold;

}



.cart_page_product_list>li>.remove>i {

	display: inline-block;

	vertical-align: middle;

	font-size: 16px;

}



.cart_page_product_list>li>.remove p {

	padding: 0 0 0 5px;

	display: none;

	vertical-align: middle;

	font-size: 12px;

}



.cart_page_product_list>li>.image {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	max-width: 200px;

	min-width: 150px;

	padding: 10px;

}



.cart_page_product_list>li>.content {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 200px;

	padding: 10px;

}



.cart_page_product_list>li a {

	color: #337ab7;

	text-decoration: none;

}



.cart_page_product_list>li a:hover {

	color: #23527c;

	text-decoration: underline;

}



.cart_page_product_list>li>.content>h3 {

	margin: 12px 0 3px!important;

	font-size: 15px!important;

}



.cart_page_product_list>li>.content>ul {

	margin: 3px 0;

	font-size: 14px;

	list-style: none;

	line-height: 25px;

}



.cart_page_product_list>li>.content>ul>li {

	position: relative;

	padding: 0 0 0 15px;

}



.cart_page_product_list>li>.content>ul>li::before {

	position: absolute;

	left: 3px;

	top: 10px;

	content: "";

	width: 4px;

	height: 4px;

	background-color: #333;

}



.cart_page_product_list>li>.price {

	padding: 10px;

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 80px;

	max-width: 130px;

}



.cart_page_product_list>li>.qty {

	padding: 10px;

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 100px;

	max-width: 100px;

}



.cart_page_product_list>li>.qty input::-webkit-outer-spin-button,

.cart_page_product_list>li>.qty input::-webkit-inner-spin-button {

	-webkit-appearance: none;

}



.cart_page_product_list>li>.qty .quantity {

	display: inline-block;

}



.cart_page_product_list .qty_input {

	position: relative;

	display: inline-block;

}



.cart_page_product_list .qty_input i {

	opacity: 0;

	-webkit-transition: opacity 0.1s;

	transition: opacity 0.1s;

}



.cart_page_product_list .qty_input:hover i {

	opacity: 1;  

}



.cart_page_product_list .qty_input .up {

	position: absolute;

	right: 6px;

	font-size: 12px;

	top: 4px;

	color: #555;

	cursor: pointer;

}

.cart_page_product_list .qty_input .down {

	position: absolute;

	right: 6px;

	bottom: 3px;

	color: #555;

	font-size: 12px;

	cursor: pointer;

}



.cart_page_product_list>li>.qty input[type=number] {

	text-align: center;

	display: inline-block;

	vertical-align: middle;

	width: 45px;

	-moz-appearance: textfield;

	padding: 0px 12px 0 12px;

	width: 45px;

	text-align: left;

	height: 30px;

	border: 1px solid #ccc;

	background-color: #fff;

	color: #555;

	line-height: 1.5;

	font-size: 14px;

	border-radius: 4px;

	font-family: inherit;

	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;

	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

}



.cart_page_product_list>li>.qty input[type=number]:focus {

	border-color: #66afe9;

	outline: none;

	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);

	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);

}



.cart_page_product_list>li>.qty>button {

	display: inline-block;

	vertical-align: middle;

	margin-left: 2px;

	width: 25px;

	-moz-appearance: textfield;

	padding: 0px 2px 0 2px;

	height: 25px;

	border: 0;

	background-color: #fff;

	color: #555;

	line-height: 1.0;

	cursor: pointer;

	font-size: 14px;

	border-radius: 4px;

	font-family: inherit;

}



.cart_page_product_list>li>.qty>button:focus {

	outline: none;

}



.cart_page_product_list>li>.qty>button i {

	-webkit-transition: all ease-in-out .3s;

	-o-transition: all ease-in-out .3s;

	transition: all ease-in-out .3s;

}



.cart_page_product_list>li>.qty>button:hover i {

	-ms-transform: rotate(180deg);

	/* IE 9 */

	-webkit-transform: rotate(180deg);

	/* Safari 3-8 */

	transform: rotate(180deg);

}



.cart_page_product_list>li> .product-quantity>b {

	display: block;

	margin: 0 0 5px;

}

.cart_page_product_list>li> .product-quantity{

	padding: 10px;

}

.cart_page_product_list>li>.price>b {

	display: block;

	margin: 0 0 5px;

}



.cart_page_product_list>li>.total {

	padding: 10px;

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 50px;

	max-width: 100px;

	text-align: center;

}



.cart_page_product_list>li>.total>b {

	display: block;

	margin: 0 0 5px;

}



.cart_page_total {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-justify-content: center;

	justify-content: center;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

	-webkit-align-items: flex-start;

	align-items: flex-start;

}



.cart_page_total_coupon {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	margin: 20px 10px;

	color: #333;

	min-width: 260px;

}



.cart_page_total_coupon label {

	display: block;

	font-weight: bold;

	padding-left: 8px;

	margin-bottom: 5px;

}



.cart_page_total_coupon ul {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

	-webkit-justify-content: flex-start;

	justify-content: flex-start;

	list-style: none;

}



.cart_page_total_coupon ul>li {

	padding-right: 10px;

}



.cart_page_total_coupon ul>li:first-of-type {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

}



.cart_page_total_coupon ul>li.coupon_item {

	min-width: 100%;

	list-style: square;

	padding: 0 0 0 10px;

	margin: 10px 0 0;

	line-height: 25px;

	list-style-position: inside;

}



.cart_page_total_coupon ul>li.coupon_item a {

	color: #337ab7;

	text-decoration: none;

}



.cart_page_total_coupon ul>li.coupon_item a:hover {

	color: #23527c;

}



.cart_page_total_coupon h3 {

	font-size: 14px;

	margin: 8px;

}



.cart_page_total_coupon.applied {

	text-align: center;

	align-self: center;

}



.cart_page_total_coupon .applied {

	margin: 0;

	display: inline-block;

	padding: 12px;

	border: 1px solid #379fe8;

	background-color: #fff;

	line-height: 15px;

	font-weight: normal;

	font-size: 14px;

	border-radius: 4px;

	color: #379fe8;

}



.cart_page_total_coupon input[type=text] {

	display: block;

	width: 100%;

	padding: 0px 12px 0 12px;

	height: 35px;

	border: 1px solid #ccc;

	background-color: #fff;

	color: #555;

	line-height: 1.5;

	font-size: 14px;

	border-radius: 4px;

	font-family: inherit;

	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;

	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

}



.cart_page_total_coupon .apply-btn {

	display: block;

	width: 100%;

	padding: 0px 12px 0 12px;

	height: 35px;

	border: 1px solid #379fe8;

	background-color: #fff;

	line-height: 1.5;

	font-size: 14px;

	border-radius: 4px;

	cursor: pointer;

	color: #379fe8;

}



.cart_page_total_coupon button[type=submit]:hover {

	border-color: #76bf42;

	color: #76bf42;

}



.cart_page_total_coupon button[type=submit]:focus {

	outline: none;

}



.cart_page_total_coupon label.error {

	display: block;

	font-weight: bold;

	color: red;

	margin: 5px 0;

	font-size: 14px;

}



.cart_page_total_coupon input.error {

	border-color: red !important;

}



.cart_page_total_coupon input[type=text]:focus {

	border-color: #66afe9;

	outline: none;

	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);

	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);

}



.cart_page_total_checkout {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	padding: 15px;

	background-color: #c0e1f8;

	min-width: 280px;

	margin: 20px 0;

	border-radius: 6px;

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-justify-content: center;

	justify-content: center;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

	text-align: center;

}



.cart_page_total_checkout>.side {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	/* max-width: 160px; */

	/* min-width: 140px; */

	padding: 5px;

}



.cart_page_total_checkout>.main {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	font-size: 14px;

	padding: 5px;

	min-width: 280px;

	min-width: 180px;

}



.cart_page_total_checkout>.side>.total {

	font-size: 28px;

	display: block;

	text-align: center;

	font-weight: bold;

	color: #5d5d5d;

	margin: 7px 0 0;

}



.cart_page_total_checkout>.main>a {

	display: block;

	width: 100%;

	text-align: center;

	background-color: #f5751e;

	font-size: 14px;

	font-family: inherit;

	color: white;

	border: 0;

	padding: 10px 5px;

	margin: 5px 0 0;

	text-decoration: none;

	cursor: pointer;

	border-radius: 5px;

	background-clip: padding-box;

	border-bottom: 2px solid #d65c0a;

}



.cart_page_total_checkout>.main>a:hover {

	background-color: #d65c0a;

}



.cart_page_footer.grid {

	max-width: 1000px;

	margin: 15px auto;

}



.cart_page_footer>ul {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-justify-content: center;

	justify-content: center;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

	list-style: none;

}



.cart_page_footer>ul>li {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	min-width: 380px;

	margin: 5px 0 15px;

}



.cart_page_footer>ul>li>.side {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	padding: 0 10px;

	min-width: 100px;

	max-width: 140px;

	height: 120px;

	margin: 0 auto;

}



.cart_page_footer>ul>li>.side img {

	display: block;

}



.cart_page_footer>ul>li>.main {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 220px;

	padding: 10px;

	line-height: 20px;

	color: rgb(51, 51, 51);
}



.cart_page_footer>ul>li>.main h3 {

	margin: 0 0 10px 0;
	font-size: 1.17em;
    font-weight: bold;

}
@media (max-width: 1500px) {
    #fc_frame.h-open-container,
    #fc_frame.fc-widget-normal.h-open-container {
        min-height: 500px !important;
    }
}

/* @media (max-width: 500px) {
    #fc_frame,
    #fc_frame.fc-widget-normal {
        min-height: auto !important;
    }
} */

@media only screen and (max-width: 650px) {



	.cart_page_product_list .qty_input i {

		display: none;

	}

	.cart_page_product_list>li>.qty input[type=number] {

		text-align: center;

	}

	.cart_page_product_list>li>.content>a {

		display: block;

		text-align: center;

		margin-bottom: 10px;

	}

	.cart_page_product_list>li>.qty>b,

	.cart_page_product_list>li>.price>b,

	.cart_page_product_list>li>.total>b,

	.cart_page_product_list>li>.qty>b {

		float: left;

	}

	.cart_page_footer>ul>li {

		min-width: 260px;

		-webkit-flex-wrap: wrap;

		flex-wrap: wrap;

	}

	.cart_page_total_checkout {

		margin: 0 0 20px;

		min-width: 100%;

		max-width: 100%;

	}

	.cart_page_product_list>li>.remove {

		min-width: 100%;

		max-width: 100%;

		text-align: right;

	}

	.cart_page_product_list>li>.remove p {

		display: inline-block;

	}

	.cart_page_product_list>li>.image {

		min-width: 100%;

		max-width: 100%;

		text-align: center;

	}

	.cart_page_product_list>li>.image img {

		max-width: 250px;

	}

	.cart_page_product_list>li>.content>h3 {

		border-top: 1px solid #d8e1e8;

		padding: 10px 10px 5px;

		margin: 10px 0 0;

		margin: 0 -10px;

	}

	.cart_page_product_list>li>.price,

	.cart_page_product_list>li>.qty,

	.cart_page_product_list>li>.total {

		border-top: 1px solid #d8e1e8;

		padding: 5px 10px;

		min-width: 100%;

		max-width: 100%;

		text-align: right;

		line-height: 30px;

	}

	.cart_page_product_list>li {

		padding: 5px 0;

	}

}

/* FAQ POSTS */
@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto.ttf");
    font-display: swap;
}
.faq_list_page {

	padding: 30px 10px;

}



.faq_list_page_search {

	position: relative;

	width: 250px;

	margin: 0 0 0 auto;

}



.faq_list_page_search>.faq_list_page_search_status>i:last-of-type {

	display: none;

}



.faq_list_page_search.active>.faq_list_page_search_status>i:last-of-type {

	display: block !important;

}



.faq_list_page_search.active>.faq_list_page_search_status>i:first-of-type {

	display: none !important;

}



.faq_list_page_search>input[type=text] {

	padding: 0px 35px 0 12px;

	height: 35px;

	border: 1px solid #ccc;

	background-color: #fff;

	color: #555;

	width: 100%;

	line-height: 1.5;

	font-size: 14px;

	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;

	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

}



.faq_list_page_search>input[type=text]:focus {

	border-color: #66afe9;

	outline: none;

	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);

	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);

}



.faq_list_page_search_status {

	position: absolute;

	top: 1px;

	right: 1px;

	bottom: 1px;

	display: block;

	height: 33px;

	padding: 0 0 0 5px;

	font-size: 15px;

	padding-right: 10px;

}



.faq_list_page_search_status>i {

	display: inline-block;

	line-height: 33px;

	cursor: pointer;

}



.faq_list_page_search_output {

	position: absolute;

	z-index: 100;

	top: 100%;

	left: 0;

	right: 0;

	background-color: white;

	border: 1px solid #ccc;

	border-top: 0;

	list-style: none;

	display: none;

}



.faq_list_page_search_output>li {

	padding: 12px;

	text-align: center;

	font-size: 14px;

	line-height: 20px;

	border-bottom: 1px solid #ccc;

}



.faq_list_page_search_output>li:last-of-type {

	border-bottom: 0;

}



.faq_list_page_search_output>li>a {

	display: block;

	color: #337ab7;

	text-decoration: none;

	text-align: left;

}



.faq_list_page_search_output>li>a:hover {

	color: #23527c;

}



.faq_list_page_content_wrapper {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-justify-content: center;

	justify-content: center;

	-webkit-flex-wrap: wrap-reverse;

	flex-wrap: wrap-reverse;

	padding: 5px 0 0;

	position: relative;

}



.faq_list_page_nav {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	max-width: 300px;

	min-width: 280px;

	list-style: none;

}



.faq_list_page_nav>li {

	border-right: 1px solid #ccc;

}



.faq_list_page_nav>li>a.active>i {

	-ms-transform: rotate(90deg);

	-webkit-transform: rotate(90deg);

	transform: rotate(90deg);

}



.faq_list_page_nav>li>a {

	display: block;

	padding: 10px 15px;

	font-size: 17px;

	line-height: 25px;

	text-decoration: none;

	color: #333;

	font-weight: 700;

	position: relative;

}



.faq_list_page_nav>li>a>i {

	position: absolute;

	top: 50%;

	right: 20px;

	z-index: -1;

	display: block;

	height: 20px;

	line-height: 20px;

	margin-top: -10px;

	-webkit-transition-duration: 0.2s;

	transition-duration: 0.2s;

}



.faq_list_page_nav>li>ul {

	display: none;

	padding: 0 15px 10px;

	list-style: none;

}



.faq_list_page_nav>li>ul>li>a {

	font-size: 14px;

	color: #888;

	text-decoration: none;

	line-height: 20px;

	font-weight: 600;

	display: block;

	padding: 10px;

	border-top: 1px solid #E7E7E7;

}



.faq_list_page_nav>li>ul>li:first-of-type a {

	border-top: 0;

}



.faq_list_page_nav>li>ul>li>a:hover,

.faq_list_page_nav>li>ul>li>a.active {

	color: #77be44;

}



.faq_list_page_nav>li>ul.active {

	display: block;

}



.faq_list_page_content {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 280px;

	overflow: hidden;

	padding: 10px 10px 10px 25px;

	line-height: 25px;

	color: #323232;

	font-size: 16px

}



.faq_list_page_content h1 {

	font-weight: bold;

	font-size: 20px;

	margin: 10px 0 15px;

}



.faq_list_page_content h2 {

	font-weight: bold;

	font-size: 20px;

	margin: 15px 0 10px;

}



.faq_list_page_content h3 {

	font-weight: bold;

	font-size: 18px;

	margin: 15px 0 7px;

}



.faq_list_page_content p {

	margin: 10px 0;

}



.faq_list_page_content a {

	color: #337ab7;

	text-decoration: none;

}



.faq_list_page_content a:hover {

	color: #23527c;

}



.faq_list_page_content ul,

.faq_list_page_content ol {

	margin: 10px 0;

	padding: 0 0 0 25px;

}



.faq_list_page_subtitle {

	text-align: center;

	font-size: 30px;

	font-family: 'Roboto';

	font-weight: bold;

	padding: 35px 0 25px;

}



.faq_list_page_info_list {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	display: flex;

	-webkit-justify-content: center;

	justify-content: center;

	-webkit-align-items: flex-start;

	align-items: flex-start;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

	list-style: none;

	max-width: 650px;

	margin: 0 auto;

}



.faq_list_page_info_list>li {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 200px;

	margin: 2px;

}



.faq_list_page_info_list>li>a {

	text-align: center;

	white-space: nowrap;

	display: block;

	width: 100%;

	border: 2px solid rgb(181, 181, 181);

	color: black;

	font-weight: bold;

	text-decoration: none;

	padding: 10px 15px;

}



.faq_list_page_info_list>li.active>a {

	background: black;

	border-color: black;

	color: white;

}



.faq_list_page_info_list>li>a>i {

	margin-right: 10px;

}



.faq_list_page_loading {

	position: absolute;

	left: 0;

	top: 0;

	bottom: 0;

	right: 0;

	width: 100%;

	height: 100%;

	background-color: rgba(255, 255, 255, 0.5);

	z-index: 2000;

	display: none;

}



.faq_list_page_loading i {

	position: absolute;

	left: 50%;

	top: 80px;

	margin-left: -21px;

	font-size: 50px;

}



@media only screen and (max-width: 650px) {

	.faq_list_page_content {

		padding: 10px;

	}

	.faq_list_page_subtitle {

		font-size: 25px;

	}

	.faq_list_page_content_wrapper {

		max-width: 550px;

		margin: 0 auto;

	}

	.faq_list_page_nav {

		padding: 20px 0 0;

		max-width: 550px;

	}

	.faq_list_page_nav>li {

		border: 0;

	}

	.faq_list_page_search {

		margin: 0 auto;

	}

}

/* CATEGORY SINGLE */
.category_single_page {

	padding: 0 10px;

	margin: 20px auto;

}



.category_single_page img {

	display: block;

	width: 100%;

}



.category_single_page_content {

	margin: 10px 0;

}


.footer-content {
    background: #f7f7f7;
}
/* FOOTER */
.footer {

	display: block;

	padding: 20px 10px 5px;

}
.footer_side>li a:hover {
    text-decoration: underline!important;;
	color: #337ab7!important;;
}



.footer_content {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	list-style: none;

	-webkit-justify-content: space-between;

	justify-content: space-between;

	-webkit-align-items: flex-start;

	align-items: flex-start;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

	padding: 0 0 5px;

}



.footer_content_row:first-child {

	margin: 0 !important;

}



.footer_content_row {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	padding: 0 10px;

	max-width: 290px;

	min-width: 290px;

	font-size: 15px;

	line-height: 25px;

	color: #a5a5a5;

}



.footer_content_row:empty {

	display: none;

}



.footer_content_row p, .footer_content_row address {

	margin-bottom: 5px;

}



.footer_content_row_wide {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	min-width: 290px;

}



.footer_content_row_wide>ul {

	-webkit-justify-content: space-around;

	justify-content: space-around;

}



.footer_content_row_wide>ul>li:first-of-type {

	margin: 0 auto;

}



.footer_content_row> p.footer-title  {

	color: #379fe8;

	font-family: 'Roboto';

	font-weight: bold;

	padding: 10px 0;

	font-size: 18px;
    margin-bottom: 0.5rem;   
    line-height: 1.2;

}



.footer_content_row>ul {

	list-style: none;

	line-height: 1.4;

	padding: 0 0 10px;

}



.footer_content_row>ul>li {

	padding: 1px 0;

}



.footer_content_row address i {

	margin-right: 5px;

}



.footer_content_row address {

	font-style: normal;

}



.footer_content_row a {

	color: #a5a5a5;

	text-decoration: none;

}



.footer_content_row a:hover {

	text-decoration: underline;

}



.footer_side {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	list-style: none;

	-webkit-justify-content: space-around;

	justify-content: space-around;

	-webkit-flex-wrap: wrap;

	flex-wrap: wrap;

}



.footer_side>li {

	-webkit-box-flex: 1;

	-moz-box-flex: 1;

	-webkit-flex: 1;

	-ms-flex: 1;

	flex: 1;

	padding: 5px;

	white-space: nowrap;

	text-align: center;

	line-height: 38px;

}



.footer_side>li:empty {

	display: none;

}



.footer_side>li>img {

    max-width: 100%;
	width: auto;

}



.footer_side>li a {

	color: #337ab7;

	text-decoration: none;

}



.footer_side>li a:hover {

	text-decoration: underline;

}



.footer_socials {

	display: -webkit-box;

	display: -moz-box;

	display: -ms-flexbox;

	display: -webkit-flex;

	list-style: none;

	font-size: 23px;

	-webkit-justify-content: center;

	justify-content: center;

}



.footer_socials>li {

	margin: 0 5px;

}



.footer_socials>li>a {

	display: block;

	border: 1px solid #337ab7;

	color: #337ab7;

	height: 38px;

	width: 38px;

	text-align: center;

	text-decoration: none;

	border-radius: 100%;

}



.footer_socials>li>a:hover {

	color: #23527c;

	border-color: #23527c;

}




@media only screen and (max-width: 1180px) {

	

	.footer_side>li {

		min-width: 290px;

		white-space: normal;

	}

}



@media only screen and (max-width: 650px) {

	.footer_content_row_wide>ul {

		-webkit-justify-content: flex-start;

		justify-content: flex-start;

	}

	.footer_content_row_wide>ul>li:first-of-type {

		margin: 0;

	}

}

.category_single_page {
    padding: 0 10px;
    margin: 20px auto;
}

.children{
    list-style: none outside;
    margin: 20px 0 0 50px;
    margin-left: 0px!important;
    border-left: 2px solid #accee9;
    margin-top: 25px!important;
    padding-left: 8px!important;
}
.li-comment-child {
    border-top: 1px solid #e3e3e3!important;
    /* font-family: Open Sans!important; */
    padding: 25px 0 22px!important;
    margin: 0 10px!important;
}
.review-avatar-wrapper.pull-left{
    position: relative;
    width: 45px;
    height: 45px;
    margin-right: 8px;
    float: left;
}

/* .featured_section_product_description>li {
    align-items: center;
} */

p.featured_section_product_description_content {
    margin-bottom: 0;
    font-size: 15px;
    line-height: normal;
}

.featured_section_product_description_title {
    margin-bottom: 0;
}

/* @media (max-width: 768px) {    */


    .mob-shop .shop-container{
        padding:0 16px;
        font-family: "Inter";
    }
    .mob-shop .mob-shop-banner{
        width: 100%;
        min-height:168px;
        margin-bottom:12px;
    }
    .mob-shop img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mob-shop .mob-banner-title{
        font-weight: 800;
        font-size: 20px;
        line-height: 28px;       
        color: #000000;
        margin-bottom:20px;
    }
    .mob-shop .mob-banner-bottom p{
        display:none;
    }
    .mob-shop .mob-banner-bottom li{
        display:flex;   
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;             
        color: #000000;
    }
    .mob-shop .mob-banner-bottom li strong{
        display: contents;
    }
    .mob-shop .mob-banner-bottom li:not(:last-child){
        margin-bottom:16px;
    }
    .mob-shop .mob-banner-bottom li:before{
        content:"";
        background-image:url('../img/list-icon.svg');
        background-repeat: no-repeat;
        background-size: contain;
        min-width:12px;
        height:12px;   
        margin-right:8px;  
        margin-top:5px;
    }
   
    .mob-shop .category-banner .category-banner-logo img {
        margin-right:24px;
    }
    .mob-shop .category-banner .category-banner-logo img:last-child {
        margin-right:0;
    }
    .mob-shop .category-banner .category-banner-logo{
        justify-content: center;
    }
    .mob-shop .category-banner .category-checkout-img {
        width: 151px;
    }
    .mob-shop .find-booster-filter{
        position: relative;
        width: 100%;
        background: #FDFDFD;
        border: 1px solid rgba(183, 187, 191, 0.72);
        border-radius: 4px;       
        padding:32px 6px 40px;
    }
    .mob-shop .category-banner {
        margin-top:12px;
        margin-bottom: 36px;
    }
    .mob-shop .find-booster-title{
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        color: #000000;
        margin-bottom:24px;
        text-align: center;
    }

    .mob-shop .find-booster-title span:last-child{
        color:#379FE8;        
    }
    .mob-shop .filter-steps{
        display: flex;
        justify-content: center;
        margin-bottom:24px;

    }        
    .mob-shop .filter-step{       
        position: relative;
        border: 1px solid #379FE8;
        width:21px;
        height:21px;
        border-radius: 50%;
        font-weight: 500;
        font-size: 10px;
        line-height: 12px;
        color: #000000;
        display:flex;
        justify-content: center;
        align-items: center;
    }
    .mob-shop .filter-step:not(:last-child){       
        margin-right: 31px;
    }
    .mob-shop .filter-step.active{
        background: #379FE8;
        color:white;
    }
    .mob-shop .filter-step.done {
        background: #379FE8;
        color: white;
        font-size:0
    }
    .mob-shop .filter-step.done:before{
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        position: absolute;
        left: 25%;
        top: 24%;
        font-size: 11px;
        font-weight: 600;
    }

    .mob-shop .filter-step:not(:last-child):after{   
        position: absolute;
        left:100%;
        top:47%;
        content:"";
        width: 32px;
        height: 2px;
        background: #379FE8;    
    }
    .mob-shop .filter-box{
        padding: 0 18px;
        /* position: relative; */

    }
    .mob-shop .where-need{
        background: #F5F6F6;
        border-radius: 4px;
        padding:16px 5px;
        min-height: 358px;
        /* margin-bottom:5px; */
    }
    .mob-shop .where-need .where-need-title{
        font-weight: 600;
        font-size: 17px;
        line-height: 19px;
        text-align: center;
        color: #000000;
        margin-bottom:33px;
        padding:0 14px;

    }

    .mob-shop .shop_page_mob.grid{
        max-width: 100%;
        min-width: 100%;
    }

    .mob-shop .v2-mobile-filter ul{

        display:flex;
        flex-wrap:wrap;
        justify-content: center;
        gap:8px;        

    }
    .mob-shop .v2-mobile-filter ul li{
        width: 88px;
        height: 88px;
        background: #FFFFFF;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
        border-radius: 8px;
        list-style-type: none;
    }
    .mob-shop .v2-mobile-filter .list-multiselect li{
        width: 64px;
        height: 64px;
    }
    .mob-shop .list-multiselect .v2-cat-img{
        height: 32px;
    }

    .mob-shop .shopFilterItem {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8px;
        gap: 7px;
    
    }
    .mob-shop .v2-cat-img{
        width: auto;
        height: 24px;
    }
    .mob-shop .v2-cat-img img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mob-shop .v2-cat-name{
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        text-align: center;
        color: #000000;
        /* margin-top:7px; */
    }
    .mob-shop .v2-mobile-filter .filter-subcategories-list li{
        width: 100%;
        height: 48px;
        /* padding-left:8px;
        padding-right:3px; */

    }
    .mob-shop .filter-subcategories-list .shopFilterItem{
        flex-direction: row;
        justify-content:left;
        align-items: center;
        gap:4px;
    }
    .mob-shop .filter-subcategories-list .v2-cat-img {
        width: auto;
        height: 16px;
        display:flex;
    }
    .mob-shop .shop_page_filter_back_button {
        color:#676C73;
        font-size: 10px;
        line-height: 12px;
        padding:0;
    }
    .mob-shop .back-block{
        position: absolute;
        bottom:14px;

    }
    .mob-shop .shop_page_filter_back_button::before {       
        
        content: "\f30a";
        padding-right: 3px;
    }
    .mob-shop .v2-mobile-filter .filter-subcategories li{
        width: 123px;
        height: 123px;       

    }
    .mob-shop .filter-subcategories .shopFilterItem{
        gap:4px;

    }
    .mob-shop .filter-subcategories .shopFilterItem p{
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        text-align: center;
        color: #000000;
    }
    .mob-shop .filter-subcategories .v2-cat-name{
        margin-top:3px;
    }
   
    .mob-shop .shopFilterItem p{
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        text-align: center;
        color: #000000;
        /* margin-top:7px; */
    }
    /* .mob-shop .shopFilterItem p::before{
        content:"";
        
    } */
    .mob-shop .filter-subcategories-list  p::before{
        content:" | ";
    }

    .mob-shop .filter-subcategories .shopFilterItem p:hover{
        color:#000000!important;
    }
    .mob-shop .mob-banner-title span{
        position: relative;
        text-decoration: none!important;
        display:inline-block;
    }
    .mob-shop .mob-banner-title span:before{
        position: absolute;
        content:'';  
        bottom:-5px;
        left: 0;  
        width: 100%;
        background-image: url('../img/Vector_underline.svg');
        background-position: 100%;
        height: 8px;
        background-repeat: no-repeat;
        margin-top:5px;
        /* background-size: 100%; */
    }
    /* .mob-shop .mob-banner-title span:first-child:before{
        position: absolute;
        content: url('../img/underline_small.svg');  
        bottom:-9px;
        left: -5px;  
    } */
    .mob-shop .category-banner .category-secure-img:last-child {
        width: 151px;
    }
    .breadcrumb-pblock{
        padding:2em 0;
    }
    .breadcrumb-pblock .breadcrumbs{
        display:flex;
        align-items:center;
        /* padding: 0 15px; */
    }
    .breadcrumb-pblock .breadcrumb-title{
        display:flex;
        align-items:center;        
    }    
    .breadcrumb-pblock .breadcrumb-title a{
        cursor: pointer;
    }
    .breadcrumb-pblock .breadcrumb-title:last-child i{
        display:none;
    }

    .breadcrumb-pblock .breadcrumb-title *{
        font-size:0.9rem;
        line-height:1.2em;     
        /* font-weight:500;  */
        margin-right: 0.5em;  
        margin-bottom:0;
        color:#333;
    }

    .breadcrumb-pblock .breadcrumb-title:last-child p{
        color:#379fe8;
    }

/* } */

@media (max-width: 600px) {   
    .mob-shop .mob-banner-title {
        padding-right: 117px;
    }
    .breadcrumb-pblock .breadcrumb-title *{
        font-size:0.7rem;
        line-height:1em;   
    }
}
@media (max-width: 515px) {   
    .mob-shop .mob-banner-title {
        padding-right: 35px;
    }
}
@media (max-width: 447px) {   
    .mob-shop .mob-banner-title {
        padding-right: 0;
    }
}
@media (max-width: 330px) {   
    .mob-shop .category-banner .category-banner-logo img {
        margin-right:8px;
    }
}

.mz-expand .mz-figure>img {
    background-color: white;
}

.billing-form-block .billing-input{
    padding: 1.5em 1em!important;
    height:0.6em!important;
    background-color: #f1f1f1!important;
    border-radius: 12px!important;
    font-size:17px!important;
    line-height:12px!important;
    border: none!important;
}
.billing-form-block .billing-input.billing-input-2{
    padding-bottom: 2em !important;
    padding-top: 0.8em !important;
    font-size: 14px !important;
}


.billing-form-block label{      
    font-size:15px;
    font-weight:normal;
    position: relative;       
}

.inner_grid .billing-form-block .billing-input:focus{
    box-shadow:0 0 0 3px #007bff40, 0 0 0 1px #007bff80!important;
}

@media all and (min-width: 768px) {
        
    .stars-content .stars-number {
        max-width: 100px;
    }
}

.submit-blue {
    background-color: #379fe8 !important;
    text-transform: uppercase;
    border-bottom: 2px solid #2c87c6 !important;
}

.submit-green {
    background-color: #76bf42  !important;
    text-transform: uppercase;
    border-bottom: 2px solid #609c36 !important;
}