@charset "UTF-8";
/**
 * Retrieves a color value from the $material-colors Sass map
 * Inspired by https://github.com/nilskaspersson/Google-Material-UI-Color-Palette/
 *
 * @function
 * @param {string} color-name             - quoted, lower-case, dasherized color
 *                                          name (e.g. 'pink', 'amber')
 * @param {string} [color-variant='500']  - quoted, lowercase color variant (e.g.
 *                                          '200', 'a100')
 */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Open+Sans:wght@300;400;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");
@font-face {
  font-family: "Gilroy";
  src: url("../fonts//5538957/9b941ec6-0652-468c-80c6-e7a624c32a75.woff2") format("woff2"), url("fonts/5538957/f475817d-5210-4456-ae08-6d82c026a2f3.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts//5538983/ab57e807-506b-4e1d-aed1-cb2b62dd7258.woff2") format("woff2"), url("fonts/5538983/4ac1d6d8-0dca-4d0c-9b27-89cbaaf6a542.woff") format("woff");
  font-weight: 400;
}
/* ~~~~~~~~~~~~~~~~VARIABLES~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~MIXINS~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~HELPERS~~~~~~~~~~~~~~~~ */
.no-mar-top {
  margin-top: 0 !important;
}
.no-mar-bot {
  margin-bottom: 0 !important;
}

.no-mar-left {
  margin-left: 0 !important;
}

.no-mar-right {
  margin-right: 0 !important;
}

.no-mar {
  margin: 0 !important;
}

.no-mar-horiz {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.no-mar-vert {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.no-pad-left {
  padding-left: 0 !important;
}

.no-pad-right {
  padding-right: 0 !important;
}

.no-pad-horiz {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-pad-vert {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.no-pad {
  padding: 0 !important;
}

.vhide {
  visibility: hidden;
  pointer-events: none;
}

.vhide {
  visibility: hidden;
  pointer-events: none;
}

.vshow {
  visibility: visible;
  pointer-events: all;
}

.section-title {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
  color: #212121;
  padding-right: 10px;
  background-color: white;
  margin: 0;
  order: 1;
  flex-shrink: 0;
}
.section-title .right-helper {
  flex-shrink: 0;
  order: 3;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.section-title .right-helper span {
  font-size: 15px;
  line-height: 1;
  color: #616161;
  margin-right: 10px;
}
.section-title .right-helper a {
  font-size: 15px;
  color: #E7646E;
  line-height: 1;
}
.section-title:after {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  content: " ";
  order: 2;
}
@media (max-width: 415px) {
  .section-title h2 {
    width: 100%;
    font-size: 24px;
  }
}

.block-title-main {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 30px;
}
.block-title-main h2 {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
  color: #212121;
  padding-right: 10px;
  background-color: white;
  margin: 0;
  order: 1;
  flex-shrink: 0;
  padding: 0;
}
.block-title-main h2:before, .block-title-main h2:after {
  display: none;
}
.block-title-main:after {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  content: " ";
  order: 2;
}

._keyfocus *:focus, input:not([disabled]):focus, textarea:not([disabled]):focus, select:not([disabled]):focus {
  box-shadow: none;
}

button:not(.stage) {
  font-family: "Open Sans" !important;
  height: 44px;
  padding: 0 24px;
  line-height: 1;
  border-radius: 4px;
  outline: none;
  border: none;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 400;
  background-color: #E7646E;
  color: white;
  cursor: pointer;
  transition: all;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: 300ms;
}
button:not(.stage).icon-btn i {
  font-size: 18px;
  line-height: 18px;
}
button:not(.stage).icon-btn svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
button:not(.stage).icon-btn span {
  line-height: 1;
  display: block;
}
button:not(.stage).button-icon img {
  width: 14px;
  margin-right: 6px;
  margin-left: 0;
}
button:not(.stage).button-icon.button-icon-right {
  flex-direction: row-reverse;
  margin-right: 0;
  margin-left: 6px;
}
button:not(.stage).icon-right {
  flex-direction: row-reverse;
}
button:not(.stage).icon-right img {
  width: 14px;
  margin-left: 6px;
  margin-right: 0;
}
button:not(.stage).red-btn {
  background-color: #E7646E;
}
button:not(.stage).red-btn:hover {
  background-color: #e4525d;
}
button:not(.stage).red-btn:focus, button:not(.stage).red-btn:active {
  background-color: #e2414d;
}
button:not(.stage).white-btn {
  background-color: white;
}
button:not(.stage).white-btn:hover {
  background-color: white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
button:not(.stage).white-btn:focus, button:not(.stage).white-btn:active {
  background-color: white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
button:not(.stage).line-btn {
  background-color: transparent;
  border: 1px solid #E7646E;
  color: #E7646E;
}
button:not(.stage).line-btn:hover {
  color: white;
}
button:not(.stage):hover {
  background-color: #e4525d;
}
button:not(.stage):focus, button:not(.stage):active {
  background-color: #e2414d;
}
button:not(.stage) i {
  line-height: 15px;
  color: white;
  margin: 0;
  font-size: 20px;
  margin-right: 4px;
}

input[type=submit] {
  height: 40px;
  padding: 0 30px;
  line-height: 1;
  border-radius: 2px;
  outline: none;
  border: none;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  text-align: center;
  background-color: #E7646E;
  color: white;
  cursor: pointer;
  transition: all;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: 300ms;
}
input[type=submit] i {
  line-height: 15px;
  color: white;
  margin: 0;
  font-size: 20px;
  margin-right: 4px;
}
input[type=submit]:hover {
  background-color: #e4525d;
}
input[type=submit]:focus, input[type=submit]:active {
  background-color: #e2414d;
}

.verticals-button {
  background-color: white;
  color: #424242;
  height: 64px !important;
  margin-top: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding-left: 24px;
  border-left: 4px solid #ffc107;
}
.verticals-button i {
  color: #ffa000;
  font-size: 28px;
  margin-left: 12px;
}
.verticals-button:hover {
  background-color: white;
  color: #424242;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
}

.circular-btn {
  height: 42px;
  width: 42px;
  padding: 0;
  border-radius: 100px;
}
.circular-btn i {
  transform: rotateZ(90deg);
  margin-left: 0;
}

a.cta-btn {
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  border-radius: 2px;
}
a.cta-btn svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

#green-card-section {
  padding-top: 10px;
}

/*header*/
.page-header .panel.header {
  padding: 0 !important;
}

.top-strip {
  display: flex;
}

.top-strip div {
  width: 100%;
}

.top-strip-left {
  display: inline-flex;
  justify-content: center;
  padding: 0.5rem;
}

.top-strip-left img {
  margin: 0.5rem 1rem;
}

.top-strip-middle {
  display: flex;
  padding: 1rem;
  text-transform: uppercase;
}

.top-strip-middle a {
  margin-left: 1rem;
}

.top-strip-right {
  display: flex;
  margin: 1rem 0rem;
}

.top-strip-right-item span {
  margin-left: 0.5rem;
}

.dtl-page-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.dtl-page-header-left {
  width: 30%;
}

.dtl-page-header-middle {
  width: 40%;
  margin: 1rem;
}

.dtl-page-header-middle-top-search .block-search {
  width: 100%;
}

.block-search .xtremo-cat-search-wrapper .xtremo-cat-search {
  height: auto;
  padding: 1.5rem 1rem;
  background-position: 80px 20px;
}

.dtl-page-header-middle-top-search .block-search .action.search {
  background-color: #464950 !important;
  padding: 1.5rem 1rem !important;
  height: auto;
}

.dtl-page-header-middle-top-search .block-search .action.search span {
  display: none;
}

.block-search .xtremo-cat-search-wrapper + input {
  padding: 2.5rem 1rem;
}

/*header right section*/
.dtl-page-header-right {
  width: 25%;
}

.dtl-page-header-right-top {
  display: flex;
}

.dtl-page-header-right-top-link {
  margin: 1rem 0rem;
}

.dtl-page-header-right-top-link .nav-right {
  display: flex;
}

.nav-right-item-wrapper.log-in-wrapper {
  margin: 1rem;
}

.dtl-page-header-right-top-cart {
  margin: 1rem 0rem;
}

.dtl-page-header-right-top-cart .minicart-wrapper {
  margin: 0.5rem 0rem;
}

.log {
  width: 100%;
}

.log a img {
  width: 100%;
  height: 100%;
}

/*menu*/
.dtl-under-top {
  height: 710px;
  overflow: hidden;
  display: flex;
}

.dtl-under-top .left-nav {
  margin-left: 7%;
}

.dtl-under-top .left-nav .left-nav-item:nth-child(1) .left-nav-title {
  border-radius: 6px 6px 0px 0px;
}

.dtl-under-top .left-nav .left-nav-item .left-nav-title {
  padding-left: 5rem;
  text-transform: uppercase;
}

.dtl-under-top .left-nav .left-nav-item ul {
  margin-left: 5rem;
}

.dtl-under-top .left-nav .left-nav-item ul li a {
  padding-left: 0rem;
}

.dtl-under-top .right-nav {
  width: 70%;
  margin-left: 1%;
  overflow: hidden;
}

.dtl-under-top .right-nav .banner {
  width: 100%;
  height: 100%;
}

.dtltopmenu {
  background: #444;
  border-top-left-radius: 6px;
}

.dtltopmenu ul {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

.dtltopmenu ul li {
  margin: 1rem;
}

.dtltopmenu ul li a {
  color: white;
  padding-left: 0rem;
}

/*slider*/
.dtl-under-top .right-nav .banner-item .banner-content {
  top: 0 !important;
}

.owl-carousel .nav-btn {
  height: 80px;
  position: absolute;
  width: 80px;
  cursor: pointer;
  top: 100px !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.owl-carousel .prev-slide {
  background: url("../images/Left-Arrow.png");
  left: 45px;
}

.owl-carousel .next-slide {
  background: url("../images/Right-Arrow.png") no-repeat scroll -24px 0px;
  right: -33px;
}

.page-main .xtremo-feature-carousel {
  clear: both;
  display: block;
  float: none;
  padding-top: 40px;
  padding: 0;
  max-width: 80%;
  width: 80%;
  margin: 0 auto;
}

body > .page-wrapper {
  background-color: #ffffff !important;
}

.how-to-buy-section .how-to-buy-content h1 {
  text-transform: uppercase;
}

.how-to-buy-section img {
  width: 50%;
}

.xtremo-feature-carousel .wk-heading h3 {
  font-size: 4rem;
}

section.callback-section {
  background: #464950;
  padding: 1rem;
  padding-bottom: 4rem;
  align-items: center;
  text-align: center;
}

section.callback-section h1 {
  color: white;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 600 !important;
  text-align: center;
}

.locations-wrapper {
  display: flex;
}

.locations-wrapper .locations-item {
  display: flex;
  flex-direction: column;
  width: calc(100%/6);
  align-items: center;
}

.locations-item img {
  width: 10%;
  margin-bottom: 1rem;
}

section.team-section {
  height: 400px;
  width: 100%;
}

.team-section .team-content {
  position: relative;
  background: #ffffff94;
  z-index: 2;
  width: 30%;
  padding: 2rem;
  top: -275px;
  float: right;
  right: 1%;
  border-radius: 6px;
}

.team-section .team-content button {
  background: none repeat scroll 0 0 #5c8fe1;
}

.testimonials {
  background: #464950;
  color: white;
  padding: 2rem;
}

/*footer*/
footer .bottom-wrapper {
  display: flex;
  width: 100%;
}

footer .bottom-wrapper .links-wrapper {
  display: flex;
  width: 100%;
}

.bottom-wrapper .links-column .links-title {
  color: white;
  font-size: 2rem;
}

.newsletter {
  background: #000033;
  padding: 2rem 1rem;
  display: flex;
}

.newsletter .newsletter-title {
  color: white;
  font-size: 3rem;
  font-weight: 600;
  align-self: center;
}

.newsletter .description {
  color: #717274;
  font-size: 2rem;
  width: 50%;
  text-align: center;
  margin-left: 3rem;
  align-self: baseline;
}

.page-footer {
  background-color: #222222;
}

section.my-footer {
  margin-top: 8rem;
}

.my-footer .bottom-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.my-footer .bottom-wrapper .links-wrapper {
  display: flex;
}

.my-footer .links-column {
  margin-right: 10rem;
}

.my-footer .bottom-wrapper .links-wrapper .links-title {
  color: white;
  font-size: 2rem;
}

.my-footer .bottom-wrapper .links-wrapper .inner-links-wrapper .inner-links-title {
  color: white;
}

.footer-right ul.social-media-list {
  display: flex;
}

.inner-links-wrapper ul li {
  display: flex;
  flex-direction: column;
}

.inner-links-wrapper ul li a {
  margin: 0.5rem 0rem 0rem;
  color: #C1C1C1;
}

ul.social-media-list img {
  width: 10%;
}

.language-selector {
  margin-top: 4rem;
}

.language-selector .links-title {
  border-bottom: 1px solid #c1c1c14d;
  padding-bottom: 1rem;
}

.language-selector ul li a {
  color: white;
}

.language-selector ul li {
  border-bottom: 1px solid;
  padding: 1rem;
}

.block.newsletter {
  width: 100%;
  background: #3b3a3b;
  max-width: 100% !important;
  justify-content: center;
  padding: 2rem;
  display: flex;
  border-radius: 6px;
}

.block.newsletter .field.newsletter {
  max-width: 100%;
}

.block.newsletter .field.newsletter button.action.subscribe.primary {
  padding: 2.4rem ​2rem;
  background: none repeat scroll 0 0 #5c8fe1;
}

.footer-right .links-title {
  color: white;
}

header.page-header .header.content {
  max-width: 1600px !important;
  padding: 0px 0;
}

body .page-header {
  margin-top: 0;
  padding-bottom: 0;
}

body .nav-right-item-wrapper.log-in-wrapper {
  margin: 0;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  padding: 0 15px;
}

body .sections.nav-sections {
  display: none;
}

body .page-wrapper .panel.wrapper .panel.header {
  padding-left: 15px !important;
  padding-right: 15px !important;
  max-width: 1600px;
  box-shadow: none;
}

body header.page-header .panel.wrapper {
  background: #F8F9FA;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

body .field.search select.xtremo-cat-search {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #333333;
  background: #f6f6f6;
  max-width: 170px;
  padding: 1.5rem 1rem;
  height: auto;
  border: none;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-right: 1px solid #000;
}

body .block-search input {
  height: auto;
  border: none;
}

body .block-search .xtremo-cat-search-wrapper .xtremo-cat-search {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-color: #000;
}

body .block-search .xtremo-cat-search-wrapper {
  width: 170px;
}

body .block-search .xtremo-cat-search-wrapper + input {
  padding: 2.6rem 1rem;
  border-left: 0;
  border: 1px solid;
  width: calc(100% - 200px) !important;
  font-size: 16px;
  font-weight: 600;
  font-family: Open sans-serif;
}

body input#search::-moz-placeholder {
  font-family: Open sans-serif;
  font-size: 16px;
  color: #333333;
}

body input#search:-ms-input-placeholder {
  font-family: Open sans-serif;
  font-size: 16px;
  color: #333333;
}

body input#search::placeholder {
  font-family: Open sans-serif;
  font-size: 16px;
  color: #333333;
}

body .dtl-page-header-middle-top-search .block-search button.action.search {
  padding: 1.1rem 1.7rem !important;
  opacity: 1 !important;
  right: 0;
  background-color: #464950 !important;
}

body .block-search .action.search:before {
  color: #fff !important;
  font-weight: bold !important;
}

body .block-search .action.search {
  border-radius: 0px 7px 7px 0;
}

body .block-search .xtremo-cat-search-wrapper + input {
  border-top-right-radius: 7px !important;
  border-bottom-right-radius: 7px !important;
}

body .dtl-page-header-right {
  width: 23%;
}

body.nav-right .nav-right-item-wrapper.log-in-wrapper:first-child {
  border-right: 0;
}

body .nav-right .nav-right-item-wrapper.log-in-wrapper:first-child {
  border-right: 0;
  padding-right: 0;
}

body .nav-right-item-wrapper.log-in-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

body .nav-right-item-wrapper.log-in-wrapper a {
  color: #000;
  margin-left: 5px;
}

body .cover-footer {
  max-width: 1600px;
  margin: auto;
}

body .cover-footer .links-column ul, .footer-right ul.social-media-list {
  padding-left: 0;
}

body .my-footer .links-column {
  margin-right: 0;
  width: 35%;
}

body .language-selector ul {
  padding-left: 0;
  list-style: none;
}

.cms-home .language-selector > p.links-title {
  padding-bottom: 16px;
}

body .page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-left img {
  height: 18px !important;
  margin: 0 18px 0 10px !important;
}

body .page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-left {
  padding-left: 45px !important;
}

body .page-wrapper .panel.wrapper .panel.header .top-strip {
  padding: 7px 0;
}

body .header.content a.logo {
  max-width: 200px;
  margin-left: 13px;
}

body .header.content a.logo img {
  width: 100%;
}

body .dtl-page-header-left {
  width: 215px;
}

body .dtl-page-header-middle {
  width: 65%;
  margin-right: 0;
}

body .dtl-page-header-right {
  width: 370px;
}

body .nav-right a, .nav-right a span {
  color: #000;
  font-weight: 600 !important;
  margin-left: 3px;
}

body.dtl-page-header-right-top-cart .action.showcart span.price {
  color: #212121 !important;
  font-weight: 600 !important;
  font-size: 16px;
  margin-left: 3px;
}

body .block.block-search {
  max-width: 600px;
}

body .block-search .xtremo-cat-search-wrapper + input {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 400;
}

body .right-nav section.dtltopmenu li a {
  font-size: 19px;
  text-transform: uppercase;
  margin-right: 20px;
}

body .top-strip .top-strip-middle span {
  color: #000;
  margin-right: 25px;
}

body .top-strip-middle a {
  margin-left: 1rem;
  font-weight: 600 !important;
  font-size: 16px;
  color: #fc8927;
}

html, * {
  box-sizing: border-box;
}

.my-footer .bottom-wrapper .links-wrapper .links-title, .footer-right .links-title {
  font-size: 32px;
}

.my-footer .bottom-wrapper .links-wrapper .inner-links-wrapper .inner-links-title, .language-selector ul li a {
  font-size: 22px;
}

body .language-selector ul li, .language-selector > p.links-title {
  border-bottom: 1px solid #fff;
}

body .my-footer .inner-links-wrapper ul li a {
  color: #a2a2a2;
  font-size: 22px;
  line-height: 40px;
}

body .my-footer ul.social-media-list img {
  width: 100%;
}

body .block.newsletter .newsletter-title {
  font-size: 42px;
  padding-right: 50px;
}

body .block.newsletter .description {
  font-size: 27px;
  color: #fff;
}

input#newsletter::-moz-placeholder {
  color: #8c8b89;
  font-weight: bold;
  font-size: 32px;
  font-family: Open Sans;
  letter-spacing: 1.4px;
}

input#newsletter:-ms-input-placeholder {
  color: #8c8b89;
  font-weight: bold;
  font-size: 32px;
  font-family: Open Sans;
  letter-spacing: 1.4px;
}

body .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter, input#newsletter::placeholder {
  color: #8c8b89;
  font-weight: bold;
  font-size: 32px;
  font-family: Open Sans;
  letter-spacing: 1.4px;
}

body .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter {
  height: 70px !important;
  border-radius: 0;
}

body button {
  text-transform: uppercase;
}

body .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
  height: 70px;
  width: 243px;
  font-size: 27px;
  border: none;
}

footer.page-footer .footer {
  padding: 30px 15px !important;
  max-width: 1780px;
}

body .page-footer {
  background: #222222;
}

body .block.newsletter .field .control label {
  width: 100%;
  margin-bottom: 0;
}

body .block.newsletter .field .control {
  width: 100%;
}

body .widget.block.block-static-block .dtl-under-top {
  margin: 0 0 0 0vw !important;
  height: 100%;
}

body .dtl-under-top .left-nav .left-nav-item ul {
  margin-left: 15rem;
  padding: 10px 0;
}

body .dtl-under-top .left-nav .left-nav-item ul li a {
  color: #222222;
  border-bottom: 1px solid #46494F;
  font-size: 19px;
}

body .dtl-under-top .left-nav .left-nav-item ul li:last-child a {
  border-bottom: 0;
}

body .dtl-under-top .left-nav .left-nav-item .left-nav-title {
  padding-left: 15rem;
}

.cms-home .dtl-under-top .left-nav .left-nav-item:nth-child(1) .left-nav-title {
  border-radius: 0px 0px 0px 0px;
}

.cms-home .dtltopmenu ul li {
  margin: 1.5rem 1rem;
}

.cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content {
  margin-right: 5em;
}

.cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content span.top-text {
  font-size: 32px;
  margin-bottom: 0.5em;
  display: block;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.04em;
  font-weight: 300 !important;
}

.cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content h2.title {
  font-size: 56px;
  line-height: 1.2;
  padding-right: 1em;
  margin-bottom: 0.5em;
}

.cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content p.description {
  font-size: 36px;
  letter-spacing: 0;
  line-height: 48px;
  padding-right: 1em;
}

.cms-home .dtl-under-top .left-nav .left-nav-title {
  font-size: 19px;
}

.cms-home .widget.block.block-static-block .dtl-under-top {
  margin-bottom: 40px !important;
  overflow: hidden;
}

.cms-home .equipment-and-patterns-wrapper .equipment-wrapper {
  height: auto;
  padding: 7em 1em;
}

.cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content a.cta-link {
  font-family: "Open Sans";
  font-size: 36px;
  letter-spacing: 0;
  line-height: 48px;
  display: inline-block;
  margin-top: 1em;
  color: #fc8927;
}

.cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content a.cta-link:hover, .cms-home .patterns-wrapper .pattern-wrapper-content a.cta-link:hover {
  text-decoration: none;
}

.cms-home .equipment-and-patterns-wrapper .equipment-wrapper > img {
  height: 90%;
}

.cms-home .widget.block.block-static-block .equipment-and-patterns-wrapper {
  grid-template-columns: 1.4fr 1fr;
}

.cms-home .equipment-wrapper-content a.cta-link:after {
  content: "";
  width: 100%;
  height: 1.4px;
  background: #E36D28;
  display: block;
  position: relative;
  top: -3px;
}

.cms-home .equipment-and-patterns-wrapper .patterns-wrapper {
  overflow: hidden;
}

.cms-home .equipment-and-patterns-wrapper .patterns-wrapper > img {
  top: 6em;
}

.cms-home .equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content span.top-text {
  color: #222222;
  font-family: "Open Sans";
  font-size: 32px;
  letter-spacing: 0;
  line-height: 0;
  display: block;
  margin-top: 1em;
}

.cms-home .patterns-wrapper .pattern-wrapper-content a.cta-link {
  color: #222222;
  font-family: "Open Sans";
  font-size: 36px;
  font-weight: bold !important;
  letter-spacing: 0;
  line-height: 48px;
  margin-bottom: 0.5em;
}

.cms-home .patterns-wrapper .pattern-wrapper-content a.cta-link:after {
  content: "";
  width: 100%;
  display: block;
  height: 2px;
  background: #000;
  position: relative;
  top: -6px;
}

.cms-home .subtitle_div {
  margin: 0 0 30px 0;
  font-size: 30px;
  font-weight: 600;
}

.cms-home .page-main .xtremo-feature-carousel {
  max-width: 80%;
  width: 100%;
}

.cms-home .how-to-buy-section .container .how-to-buy-content h1, .xtremo-feature-carousel .wk-heading h3 {
  color: #222222;
  font-family: "Open Sans";
  font-size: 70px;
  font-weight: bold !important;
  letter-spacing: 0;
  line-height: 71px;
  text-transform: uppercase;
  margin-top: 1em;
}

.cms-home .xtremo-feature-carousel .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav {
  top: 0;
}

.cms-home .page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-prev {
  left: auto;
  right: 120px;
}

.cms-home .page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-next {
  right: 0;
}

.cms-home .xtremo-feature-carousel span {
  color: #303030;
  font-family: "Open Sans";
  font-size: 36px;
  font-weight: bold !important;
  letter-spacing: 0;
  text-transform: initial;
}

.cms-home section.banner .banner-item .banner-content h1 {
  font-size: 70px;
  color: white;
  width: 100%;
  margin-bottom: 20px;
  line-height: 82px;
  font-family: "Roboto";
}

.cms-home section.banner .banner-item .banner-content p.description.banner-description {
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 20px;
  color: white;
  margin-bottom: 30px;
}

.cms-home .banner-item .banner-content button.banner-button {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  height: 57px;
}

.cms-home .page-main .xtremo-feature-carousel .owl-carousel .owl-item .item {
  border: 1px solid #F1F1F1;
}

.cms-home .page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-prev:before, .page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-next:before {
  background-image: none;
  content: "";
  display: block;
  font-family: fontawesome;
  font-size: 20px;
  color: #666666;
  border: 1px solid #666666;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cms-home .page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-next:before {
  content: "";
}

.cms-home .page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-prev:hover:before,
.cms-home.page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-next:hover:before {
  background-image: none;
}

.cms-home .xtremo-feature-carousel .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav {
  top: -6em;
}

.cms-home .page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-next {
  right: 18px;
}

.cms-home .page-main .xtremo-feature-carousel .owl-carousel .owl-nav .owl-prev {
  left: auto;
  right: 75px;
}

.cms-home .how-to-buy-section .container .how-to-buy-content .file-item {
  font-size: 19px;
  color: #303030;
  font-family: "Lato";
}

.cms-home .equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content a.cta-link img, .xtremo-feature-carousel .block-title {
  display: none;
}

.cms-home .how-to-buy-section .container .how-to-buy-content h1 {
  margin-top: 0em;
  margin-bottom: 1em;
}

.cms-home .how-to-buy-section .container .how-to-buy-content .file-wrapper .file-item span {
  font-size: 19px;
  font-family: Lato Medium;
  color: #303030;
  line-height: 36px;
}

.cms-home .how-to-buy-section .container .how-to-buy-content > button {
  width: auto;
  padding: 0 12px;
  height: 46px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2em;
  font-size: 19px;
  height: 71px;
  width: 231px;
  background: #E36D28;
  font-weight: 600;
}

.cms-home section.how-to-buy-section .container > img {
  position: relative;
  right: -9em;
}

.cms-home section.callback-section h1 {
  font-size: 70px;
}

.cms-home section.locations-wrapper .locations-item span {
  color: #222222;
  font-size: 20px;
  font-weight: bold !important;
}

.cms-home .locations-wrapper {
  padding: 0;
}

.cms-home .locations-item img {
  width: 8%;
}

.cms-home section.team-section span.subtitle {
  font-size: 22px;
  font-family: "Open Sans";
  font-weight: 600 !important;
  color: #0A2941;
}

.cms-home section.team-section {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.cms-home section.team-section img {
  max-width: 98%;
  width: 100%;
}

.cms-home .team-section .team-content {
  position: absolute;
  top: 40px;
  background: #fff;
  height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 35px 25px;
  right: 40px;
  text-align: left;
}

.cms-home section.locations-wrapper .locations-item {
  border-right: 1px solid #e5e5e5;
  font-weight: bold;
  font-family: lato;
  font-size: 20px;
  padding: 39px 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.cms-home section.locations-wrapper .locations-item:last-child {
  border-right: 0;
}

.cms-home .team-content h2 {
  font-size: 36px;
  color: #0A2941;
  margin: 10px 0 30px 0;
}

.cms-home .team-section .team-content button {
  background: #005EBE;
  font-size: 27px;
  Width: 238px;
  Height: 65px;
  font-weight: 600;
}

.cms-home .team-section .team-content {
  width: 38%;
}

.cms-home .testimonials .testimonial-item h2.testimonial-giver {
  font-size: 68px;
  /*line-height: 141px;*/
  font-family: "Open Sans";
  font-weight: bold !important;
}

.cms-home .testimonials .testimonial-item p {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.5;
  font-style: italic;
  font-family: "Open Sans";
}

.cms-home .testimonials {
  height: auto;
  overflow-x: auto;
  padding: 70px 0 70px 0px;
}

.cms-home .testimonials .testimonial-item:nth-child(1) {
  position: static;
  transform: none;
}

body .top-strip .top-strip-right a {
  color: #000;
  font-weight: 600;
  margin-left: 5px;
}

body .dtl-page-header-middle-top-search .field.search .control {
  display: flex;
  border: 1px solid #333;
  border-radius: 7px;
}

body .copyright {
  display: none;
}

/*catogary page */
.catalog-category-view .page-wrapper main#maincontent.page-main {
  padding-left: 15px !important;
  padding-right: 15px !important;
  max-width: 1770px;
}

.catalog-category-view .sidebar.sidebar-main .block.filter .filter-options .filter-options-item .filter-options-title {
  font-weight: 400 !important;
  font-family: inherit;
  padding: 15px 40px 4px 0px;
  color: #222222;
  font-size: 19px;
  font-family: "Open Sans";
}

.filter-options-content a, .filter-options-content .count {
  font-size: 16px;
  color: #222222;
  font-weight: normal;
}

.catalog-category-view .sidebar.sidebar-main .block.filter .filter-options .filter-options-item .filter-options-title:after {
  right: 6px;
  top: 17px;
  font-size: 16px;
  color: #000154;
}

.catalog-category-view .sidebar-main {
  padding-right: 0;
  max-width: 25%;
}

.catalog-category-view main#maincontent .column.main {
  width: 100% !important;
  max-width: 75%;
}

.catalog-category-view .sidebar-main .block.filter .filter-options {
  padding: 20px 30px;
}

.catalog-category-view .sidebar-main .block.filter .filter-options .filter-options-item.active .filter-options-title {
  font-weight: bold !important;
}

.filter-options-item.allow.active .filter-options-content {
  border-top: 1px solid #eee;
  margin-top: 7px;
  padding-left: 35px;
  padding-bottom: 0;
}

.filter-options-item.allow.active .filter-options-content li.item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.filter-options-item.allow.active .filter-options-content li.item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.swatch-option.text {
  min-height: 30px;
}

.toolbar.toolbar-products {
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
  justify-content: center;
  max-width: 580px;
  margin: auto;
  border: 1px solid #333;
  padding: 18px;
}

.toolbar.toolbar-products p.toolbar-amount {
  margin: 0px 20px 0 0;
}

.modes strong.modes-mode.mode-grid, a#mode-list {
  box-shadow: none;
  background: none;
  border: none;
}

.modes-mode:before {
  font-size: 22px;
}

main#maincontent .toolbar.toolbar-products.pagination {
  padding: 4px 0 30px 0;
  border-bottom: 1px solid #ccc;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  border-width: 0 0 1px 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
}

.products.wrapper ~ .toolbar.toolbar-products.pagination {
  border: none !important;
  display: flex !important;
  justify-content: center !important;
  max-width: 100% !important;
  border: 1px solid #ccc !important;
  padding: 18px !important;
  max-width: 570px !important;
  margin: auto !important;
}

.toolbar.toolbar-products.pagination ul.items.pages-items li.item {
  margin: 0 0.7em;
}

.toolbar.toolbar-products li.item a, .toolbar.toolbar-products li.item span {
  font-size: 16px;
  color: #46494f;
  font-family: Poppins;
  font-weight: 600;
}

.toolbar.toolbar-products li.item.current strong {
  background: #000;
  width: 31px;
  height: 31px;
  border-radius: 5px;
}

.toolbar.toolbar-products li.item.current strong {
  background: #000;
}

.toolbar.toolbar-products li.item.current strong span {
  color: #fff;
}

.products-grid .product-item-info:hover, .products-grid .product-item-info.active {
  margin: 0;
  padding: 0;
  position: static;
  border: 0px solid;
}

.toolbar.pagination li.item.pages-item-next a, .toolbar.pagination select, .toolbar.pagination li.item.pages-item-previous a {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.products-grid .product-item-info:not(:hover):not(.active) .product-item-inner, .products-grid .product-item-inner {
  box-shadow: 0;
  margin: 0px;
  padding: 0 9px 9px;
  position: static;
  display: block !important;
  box-shadow: none;
  padding: 0 9px 9px;
  position: static;
  display: block;
  z-index: 99999;
  height: auto;
  width: auto;
  border: none;
}

.products-grid .product-item-info:hover, .products-grid .product-item-info {
  border: 0px solid #bbb;
}

.products-grid .product-item-actions {
  margin: 15px 0 0;
}

main#maincontent .toolbar.toolbar-products .toolbar-sorter.sorter {
  -ms-grid-column: 2;
  grid-column: 2;
  font-family: lato;
  font-size: 16px;
  margin: 0 20px;
}

.toolbar-sorter.sorter select {
  background-color: transparent;
  box-shadow: inset 0 1px 0 0 #fff, inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
  min-width: 440px;
  min-height: 50px;
  border-radius: 0;
  border: 1px solid #ccc;
}

.catalog-category-view .products.list.items.product-items .product-item {
  margin-left: 0;
}

.catalog-category-view .products.list.items.product-items .product-item .product-item-info span.product-image-wrapper {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  margin-top: 2px;
}

.minicart-wrapper .action.showcart:before, .minicart-wrapper .action.showcart:hover:before {
  color: transparent !important;
}

.breadcrumbs, h1#page-title-heading {
  display: none;
}

.catalog-category-view header.page-header {
  border-bottom: 1px solid #ccc !important;
}

.catalog-category-view .sections.nav-sections {
  display: block;
}

.catalog-category-view .header.content a.logo {
  margin: -8px auto 5px 0;
}

main#maincontent .toolbar.toolbar-products {
  padding: 4px 0 30px 0;
  border-bottom: 1px solid #ccc;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  border-width: 0 0 1px 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
}

.filter .block-subtitle {
  padding: 25px 10px 45px;
  border-bottom: 0;
}

.product.details.product-item-details .product-reviews-summary.short, .product.details.product-item-details .swatch-attribute.size, .product.details.product-item-details .swatch-attribute.color {
  display: none;
}

.catalog-category-view .products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .price-box.price-final_price span {
  font-size: 24px;
  font-family: "Lato";
}

.catalog-category-view .products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .product-item-inner .product.actions.product-item-actions .actions-primary form {
  grid-template-columns: auto;
  gap: 0;
}

.catalog-category-view .products.list.items.product-items .product-item .product-item-info .product.details.product-item-details {
  align-items: baseline;
}

strong.product.name.product-item-name, .price-box.price-final_price {
  display: block;
  text-align: center;
  width: 100%;
}

.product.details.product-item-details a.product-item-link {
  font-size: 24px;
  color: #222222;
  font-family: "Lato";
}

.product.actions.product-item-actions .actions-primary button.action.tocart.primary {
  font-size: 18px;
  background: transparent;
  color: #005ebe;
  padding: 7px 15px;
  white-space: normal;
  position: relative;
  padding: 10px;
  height: auto;
}

.products-grid .product-item-info:hover, .products-grid .product-item-info.active {
  box-shadow: none;
}

.products-grid.grid .product-item-details .product-reviews-summary {
  position: absolute;
  top: 5px;
  z-index: 1;
  left: 15px;
}

.product-item-actions button.action.tocart.primary span, .catalog-category-view .products-grid .actions-primary button.action.primary.sparsh-buynow-button {
  font-size: 20px;
  display: block;
  width: 100%;
  height: auto;
}

.catalog-category-view .products-grid .actions-primary button.action.primary.sparsh-buynow-button {
  width: 48%;
}

.product-item-details .product-item .tocart, .xtremo-feature-carousel span {
  height: auto;
}

.products-grid.grid .product-item-info {
  position: relative;
}

.product-item .actions-primary .tocart {
  width: 100%;
}

.product-item-actions .actions-primary {
  width: 100%;
}

.product-item-details a.product-item-link, .price-box.price-final_price span.price {
  font-size: 19px !important;
}

.product-item .actions-primary .tocart {
  width: 100%;
  background: #f6f6f6;
  border-color: #f6f6f6;
  color: #e36d28;
}

.product-item .actions-primary .tocart span {
  color: #e36d28;
  text-transform: uppercase;
}

/*9th march 2021*/
.product-item .product-reviews-summary .reviews-actions a.action.view > * {
  font-size: 13px;
  color: #666666;
}

.product-item .product-reviews-summary .reviews-actions {
  margin-top: 0;
  margin-left: 10px;
}

.xtremo-feature-carousel .product-item .product-reviews-summary .rating-summary {
  vertical-align: middle;
}

.product-reviews-summary .reviews-actions .action.add {
  display: none;
}

.home_product .products-grid.grid a.product-item-photo {
  border: 1px solid #ccc;
  padding: 40px 0 0;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.xtremo-feature-carousel span {
  line-height: 24px;
}

.swatch-attribute.size, .swatch-attribute.color {
  display: block;
}

.product-item-actions .actions-primary + .actions-secondary {
  display: none;
}

block.widget .products-grid .product-item .product-item-inner, .page-layout-1column .block.widget .products-grid .product-item .product-item-inner {
  box-shadow: none;
  padding: 0;
}

.product-item-details .price-box.price-final_price {
  display: inline;
}

.product-item-details strong.product-item-name {
  display: inline-block;
  padding-right: 13px;
}

/*catogary page end*/
a:hover, button:hover {
  opacity: 0.8;
  cursor: pointer;
}

.wk-heading.home_product ol.product-items {
  display: flex;
}

.page-layout-1column .wk-heading.home_product .block.widget.grid .product-item {
  width: 33%;
}

.home_product .products-grid.grid a.product-item-photo {
  text-align: center;
}

.product-item-details .home_product_name_price .price-box.price-final_price {
  width: auto;
  margin: 0;
}

.home_product_name_price {
  display: flex;
  justify-content: space-between;
}

.home_product_rentals .home_product_name_price {
  flex-direction: column;
  align-items: center;
}

.home_product_rentals .home_product_name_price span.price {
  font-weight: 600 !important;
}

.home_product_rentals .actions-primary button.action.tocart, .catalog-category-view .products-grid .actions-primary button.action {
  width: 48%;
  background: #e36d28 !important;
  border: 1px solid #e36d28 !important;
}

.home_product_rentals .actions-primary button.action.tocart span {
  color: #fff;
}

.home_product_rentals .actions-primary button.action.tocart.buynow, .catalog-category-view .products-grid .product-item-inner .product.actions.product-item-actions button.action.primary.sparsh-buynow-custom-tocart {
  background: transparent !important;
  border: 1px solid #005ebe !important;
}

.home_product_rentals .actions-primary button.action.tocart.buynow span {
  color: #005ebe;
}

.home_product .product-item-actions .actions-primary {
  display: flex;
  justify-content: space-between;
}

section.equipment-and-patterns-wrapper a.cta-link:before {
  content: "";
  font-family: fontawesome;
  position: absolute;
  right: -35px;
  font-weight: normal;
  top: 3px;
}

section.equipment-and-patterns-wrapper a.cta-link {
  position: relative;
}

section.equipment-and-patterns-wrapper .patterns-wrapper a.cta-link:before {
  right: -35px;
}

.dtl-page-header-right-top-cart .action.showcart span.price {
  margin-left: 15px;
  font-weight: 700;
}

.dtl-page-header-right-top-cart .action.showcart span.counter.qty {
  border-radius: 50px;
}

/*catogary page */
.catalog-category-view .products-grid .product-item-info:not(:hover):not(.active) .product-item-inner, .products-grid .product-item-inner {
  width: 100%;
}

.catalog-category-view .products-grid .actions-primary form {
  display: flex !important;
  justify-content: space-between;
}

.catalog-category-view .products-grid.grid a.product-item-photo {
  margin-bottom: 0;
}

.catalog-category-view .products-grid.grid a.product-item-photo {
  padding-top: 15px;
}

.products.wrapper ~ .toolbar .limiter {
  display: none !important;
}

/* catogary new end */
/*catalog-product-view-page*/
.catalog-product-view .page-main {
  max-width: 1670px !important;
  margin-top: 30px;
}

.catalog-product-view .page-title-wrapper.product h1 {
  font-size: 40px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 30px;
  margin: 0;
  line-height: normal;
  border-bottom: 1px solid #ededed;
}

.catalog-product-view .product-reviews-summary {
  display: none;
}

.catalog-product-view .product-info-main .product-info-price .price-box .price-container > span.price-wrapper {
  margin: 0;
  line-height: normal;
  color: #222;
  padding: 30px 0 20px;
}

.catalog-product-view .product-info-main .product-info-price .price-box .price-container > span.price-wrapper .price {
  font-size: 50px !important;
  line-height: 45px;
  display: block;
}

.catalog-product-view .product-item .price-box .price {
  font-weight: 600 !important;
}

.catalog-product-view .product-info-stock-sku {
  display: none;
}

.catalog-product-view .product-info-main .product-info-price {
  border-bottom: 1px solid #ededed;
  margin: 0;
}

.catalog-product-view .product-info-main .product-add-form {
  padding: 0;
}

.catalog-product-view .product-info-main .product-add-form .box-tocart {
  margin: 0;
}

.catalog-product-view .product-info-main .product-add-form .label {
  margin-right: 15px;
}

.catalog-product-view .product-info-main .product-add-form .label span {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-product-view .product-info-main .product-options-wrapper {
  display: block;
}

.catalog-product-view .product-info-main .product-add-form .field.qty .control {
  display: inline-block;
}

.catalog-product-view .product-info-main .product-add-form .field.qty .control input {
  height: 45px;
  border: 1px solid #acadb0;
}

.catalog-product-view .product-info-main .product-add-form .field.qty {
  margin: 0;
  padding: 30px 0 35px;
  border-bottom: 1px solid #ededed;
  display: flex;
  align-items: center;
}

.catalog-product-view .product-info-main .product-add-form .field.qty .more, .catalog-product-view .product-info-main .product-add-form .field.qty .less {
  background: #f2f2f2;
  width: 45px;
  height: 45px;
  text-align: center;
  border: 1px solid #acadb0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-right: -1px;
  margin-left: -1px;
}

.catalog-product-view .product-social-links {
  display: none;
}

.catalog-product-view .product-info-main .product-add-form .actions {
  padding: 30px 0;
  border-bottom: 1px solid #ededed;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.catalog-product-view .product-info-main .product-add-form .actions button {
  margin: 0 !important;
  padding: 0 !important;
  margin-right: 0 !important;
  height: 70px;
  font-size: 20px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fff;
  color: #005ebe;
  width: 48%;
  border-radius: 2px;
  font-weight: bold;
}

.catalog-product-view .product-info-main .product-add-form .actions button:last-child {
  margin-right: 1% !important;
  width: 100% !important;
  background: #e36d28;
  color: #fff;
  border-color: #e36d28;
}

.catalog-product-view .product-info-main .product-add-form .actions .sparsh-buynow-view {
  width: 48%;
  margin: 0 auto 0 0;
}

.catalog-product-view .product.data.items > .item.title > .switch {
  background: #f4f4f4 !important;
  height: 90px !important;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  font-family: "Lato";
  font-weight: 700;
  color: #333;
  justify-content: center;
}

.catalog-product-view .product.data.items > .item.title.active > .switch, .catalog-product-view .product.data.items > .item.title.active > .switch:focus, .catalog-product-view .product.data.items > .item.title.active > .switch:hover {
  background: #fff !important;
  color: #005ebe !important;
  border: 1px solid #ccc;
  border-bottom: #fff;
  height: 91px !important;
  opacity: 1 !important;
  position: relative;
  outline: none !important;
}

.catalog-product-view .product.data.items > .item.title.active > .switch:before {
  position: absolute;
  content: "";
  border: 2px solid #005ebe;
  bottom: 0;
  left: 0;
  right: 0;
  width: 70%;
  margin: 0 auto;
  background: #005ebe;
}

.catalog-product-view .product.data.items > .item.title > .data.switch .counter {
  display: none;
}

.catalog-product-view .product.data.items > .item.content {
  margin-top: 90px !important;
}

.catalog-product-view .product.data.items > .item.title {
  margin: 0 !important;
}

.catalog-product-view .block.related .block-title strong {
  font-size: 35px;
  text-transform: uppercase;
}

.catalog-product-view .block.related .products-grid.grid a.product-item-photo {
  padding: 0 !important;
  border: none !important;
}

.catalog-product-view .block.related .products.list.items.product-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.catalog-product-view .block.related .products.list.items.product-items .product-item .product-item-info a.product.photo.product-item-photo span.product-image-container .product-image-wrapper {
  padding-bottom: 80% !important;
  margin-right: 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.catalog-product-view .block.related .products-grid .product-item-actions {
  margin: 0;
  display: flex;
  width: 100%;
  justify-content: center;
}

.catalog-product-view .block.related .products-grid .product-item-actions .actions-primary, .catalog-product-view .block.related .products-grid .product-item-actions .actions-secondary {
  width: 48%;
}

.catalog-product-view .block.related .products-grid .product-item-actions .actions-primary .action, .catalog-product-view .block.related .products-grid .product-item-actions .actions-secondary .action {
  width: 100%;
}

.catalog-product-view .block.related .products-grid .product-item-actions .actions-primary button.action {
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 2px;
  letter-spacing: 1px;
  height: 44px;
  background: #e36d28;
  color: #fff;
  border-color: #e36d28;
  font-weight: bold;
}

.catalog-product-view .data.item.content .product.description, .catalog-product-view .data.item.content .table {
  font-size: 19px;
  font-family: "Lato";
}

.catalog-product-view .data.item.content .product.description, .catalog-product-view .data.item.content .label {
  color: #000;
  padding: 5.5px 5px 10px 5px;
  line-height: 36px;
  font-size: 19px;
  font-family: "Lato";
}

.catalog-product-view .review-ratings .rating-summary, .catalog-product-view .customer-review .review-details .customer-review-rating .rating-summary {
  display: flex;
  align-items: center;
}

.catalog-product-view .gallery-placeholder .fotorama__wrap {
  display: flex;
  justify-content: space-between;
}

.catalog-product-view .gallery-placeholder .fotorama__wrap .fotorama__nav-wrap {
  width: 20% !important;
  order: 1;
}

.catalog-product-view .gallery-placeholder .fotorama__wrap .fotorama__stage {
  width: 80% !important;
  order: 2;
}

.catalog-product-view .gallery-placeholder .fotorama__wrap .fotorama__nav-wrap .fotorama__nav {
  height: 100% !important;
}

.catalog-product-view .gallery-placeholder .fotorama__wrap .fotorama__nav-wrap .fotorama__nav .fotorama__nav__shaft {
  display: flex;
  width: auto;
  flex-direction: column;
}

.catalog-product-view .gallery-placeholder .fotorama__wrap .fotorama__thumb-border {
  right: 0;
  margin: 0 auto;
  border: 0;
  border-bottom: 2px solid #000;
  background: transparent;
  height: 112px !important;
  display: none !important;
}

.catalog-product-view .gallery-placeholder .fotorama__nav--thumbs .fotorama__nav__frame {
  margin-bottom: 10px;
  border: 1px solid #d1d1d1;
  padding: 0 !important;
}

.catalog-product-view .gallery-placeholder .fotorama__stage__shaft {
  width: 100% !important;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #d1d1d1;
}

.catalog-product-view .data.item.content .review-form .label {
  line-height: normal !important;
  padding: 0;
  font-size: 16px !important;
}

.catalog-product-view .abs-product-link > a:hover, .catalog-product-view .product-item-name > a:hover, .product.name a > a:hover {
  text-decoration: none !important;
}

.catalog-product-view .data.item.content .review-form legend.label {
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 18px !important;
}

.catalog-product-view .review-form .action.submit.primary {
  background: #e36d28;
  color: #fff;
  border-color: #e36d28;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.catalog-product-view .product.data.items .item.title a:after {
  position: absolute;
  right: 10px;
  top: 1px;
  bottom: 0;
  display: none;
  align-items: center;
}

.catalog-product-view .product-item .price-box {
  margin: 5px 0 15px !important;
}

.catalog-product-view .gallery-placeholder .fotorama__nav--thumbs .fotorama__nav__frame.fotorama__active {
  border-bottom: 2px solid #000 !important;
}

/*catalog-product-view-page-end*/
/*create account*/
body.customer-account-create .page-title-wrapper, body.customer-account-login .page-title-wrapper {
  text-align: center;
}

body.customer-account-create .page-title-wrapper h1, body.customer-account-login .page-title-wrapper h1 {
  font-weight: 700;
  font-family: "Open Sans";
}

body.customer-account-create .create.account.form-create-account, body.customer-account-login .login-container .block {
  margin: 0 auto;
  padding: 25px;
  box-shadow: 0 0 12px -1px #b9b8b8;
  min-width: 600px !important;
  width: 49% !important;
}

body.customer-account-create .create.account.form-create-account fieldset, body.customer-account-login .login-container .fieldset.login, body.customer-account-login .login-container .block-new-customer .block-content {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin: 0 0 30px;
  position: relative;
}

body.customer-account-create .create.account.form-create-account .fieldset > .legend, body.customer-account-login .login-container .block-title {
  border: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  display: block;
  padding: 0;
}

body.customer-account-create .create.account.form-create-account .fieldset > .legend > span, body.customer-account-login .login-container .block-title strong {
  font-size: 16px;
  font-weight: 700;
  display: block;
}

body.customer-account-login .login-container .field.note {
  text-align: center;
}

body.customer-account-login .login-container .fieldset > .field > .control {
  width: 100%;
}

body.customer-account-create .create.account.form-create-account .fieldset .label, body.customer-account-login .login-container .fieldset .label {
  color: #000;
  font-size: 14px;
  margin: 0 0 10px 0;
  padding: 0;
}

body.customer-account-create .create.account.form-create-account .field.newsletter {
  background: #fff;
  padding: 0;
  display: flex;
  align-items: center;
}

body.customer-account-create .create.account.form-create-account .field.newsletter input[type=checkbox] {
  margin: 0;
  margin-top: -3px;
}

body.customer-account-create .create.account.form-create-account .field.newsletter label {
  margin: 0;
  margin-left: 5px;
}

body.customer-account-create .create.account.form-create-account .fieldset.create.account:after {
  margin-top: 15px;
  text-align: right;
}

body.customer-account-create .create.account.form-create-account .actions-toolbar, body.customer-account-create .create.account.form-create-account .actions-toolbar .primary {
  text-align: center;
  float: none;
  margin: 0;
}

body.customer-account-create .create.account.form-create-account .actions-toolbar .primary, body.customer-account-login .login-container .actions-toolbar .primary {
  width: 50%;
  float: none;
}

body.customer-account-login .login-container .actions-toolbar .secondary {
  width: 100%;
  margin: 5px 0;
  text-align: right !important;
}

body.customer-account-create .create.account.form-create-account .actions-toolbar .primary button.submit, body.customer-account-login .login-container .actions-toolbar .primary button.login, body.customer-account-login .login-container .actions-toolbar .primary a, .block-minicart .block-content > .actions > .primary .action.primary {
  background: #e36d28;
  color: #fff;
  border-color: #e36d28;
  height: 60px;
  font-size: 18px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  border-radius: 2px;
  line-height: 45px;
}

.block-minicart .block-content > .actions > .primary .action.primary {
  line-height: normal !important;
}

body.customer-account-login .login-container .actions-toolbar {
  text-align: center;
}

body.customer-account-login .login-container .fieldset:after {
  margin-top: 15px;
  position: absolute;
  bottom: 25px;
  left: 20px;
}

body.customer-account-login .login-container input, body.customer-account-create .create.account.form-create-account input {
  border: 1px solid #ccc;
  height: 46px;
  border-radius: 5px;
}

/*cart-dialog*/
.block-minicart .subtotal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.block-minicart .subtotal .label {
  color: #000;
  font-size: 13px;
}

.block-minicart .items-total {
  margin: 4px 0;
}

.block-minicart .product-image-container {
  border: 1px solid #ccc;
}

.block-minicart .product-item-name {
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
}

.block-minicart .product-item-name a {
  color: #000;
}

.minicart-items .product-item-pricing .label {
  color: #000;
  padding: 0;
  font-size: 18px;
  margin-top: 6px;
}

.minicart-wrapper .product .actions {
  margin: -30px 0 0 !important;
}

.minicart-items .action.edit:before, .minicart-items .action.delete:before {
  color: #000 !important;
}

.minicart-wrapper .product .actions > .primary {
  margin-right: 8px !important;
}

.minicart-wrapper .action.viewcart {
  font-weight: 600;
  color: #e36d28;
}

@media only screen and (max-width: 1700px) {
  .catalog-category-view .sidebar-main {
    padding-right: 0;
    max-width: 25%;
  }

  .catalog-category-view .column.main {
    max-width: 75%;
  }

  body .page-wrapper .panel.wrapper .panel.header {
    width: 90%;
  }

  .testimonials .testimonial-item h2.testimonial-giver, section.callback-section h1, .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content h2.title, .how-to-buy-section .container .how-to-buy-content h1 {
    font-size: 50px !important;
  }

  .cms-home .testimonials .testimonial-item p, .cms-home .team-content h2, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content p.description, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content span.top-text, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content a.cta-link, .cms-home .patterns-wrapper .pattern-wrapper-content a.cta-link, .cms-home .equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content span.top-text {
    font-size: 30px;
  }

  footer.page-footer .block.newsletter .newsletter-title {
    font-size: 35px;
  }

  footer.page-footer .block.newsletter .description {
    font-size: 22px;
  }

  input#newsletter::-moz-placeholder {
    font-size: 22px;
  }

  input#newsletter:-ms-input-placeholder {
    font-size: 22px;
  }

  footer.page-footer .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter, input#newsletter::placeholder, .block.newsletter .description, .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
    font-size: 22px;
  }

  .my-footer .bottom-wrapper .links-wrapper .links-title, .footer-right .links-title {
    font-size: 25px;
  }

  .cms-home section.team-section span.subtitle {
    font-size: 20px;
  }

  .cms-home section.how-to-buy-section {
    padding: 3em 0;
  }
}
@media only screen and (max-width: 1600px) {
  footer.page-footer .footer {
    padding: 30px 0px !important;
    width: 90%;
  }

  body .header.content a.logo {
    margin-left: 0px;
  }

  body .page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-left {
    padding-left: 0 !important;
  }

  footer.page-footer .block.newsletter .newsletter-title {
    font-size: 35px;
  }

  .my-footer .bottom-wrapper .links-wrapper .links-title, .footer-right .links-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1500px) {
  .cms-home .dtl-under-top .left-nav .left-nav-item ul {
    margin-left: 6rem;
  }

  .cms-home .dtl-under-top .left-nav .left-nav-item .left-nav-title {
    padding-left: 3em;
  }

  .cms-home .testimonials .testimonial-item:nth-child(1) {
    padding: 0 10em;
  }

  .cms-home .testimonials .testimonial-item h2.testimonial-giver, .cms-home section.callback-section h1, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content h2.title, .cms-home .how-to-buy-section .container .how-to-buy-content h1 {
    font-size: 40px !important;
  }

  .cms-home .testimonials .testimonial-item p, .cms-home .team-content h2, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content p.description, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content span.top-text, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content a.cta-link, .cms-home .patterns-wrapper .pattern-wrapper-content a.cta-link, .cms-home .equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content span.top-text {
    font-size: 25px;
    line-height: 34px;
  }

  .cms-home .how-to-buy-section .container .how-to-buy-content .file-item {
    font-size: 16px;
  }

  .cms-home .how-to-buy-section .container .how-to-buy-content > button, .cms-home .team-section .team-content button {
    padding: 0 22px;
    height: 46px;
    font-size: 16px;
    height: 60px;
    width: auto;
    line-height: 20px;
    max-width: 190px;
  }

  .cms-home section.locations-wrapper .locations-item {
    font-size: 16px;
  }

  .cms-home section.team-section {
    height: auto;
  }
}
@media only screen and (max-width: 1440px) {
  .product.details.product-item-details a.product-item-link {
    font-size: 20px;
  }

  .catalog-category-view .products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .price-box.price-final_price span {
    font-size: 18px;
  }

  .price-box.price-final_price {
    margin: 10px 0 20px;
  }

  .product.actions.product-item-actions .actions-primary button.action.tocart.primary {
    font-size: 16px;
  }

  footer.page-footer .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
    width: auto;
  }
}
@media only screen and (max-width: 1366px) {
  .cms-home section.banner .banner-item .banner-content h1, .xtremo-feature-carousel .wk-heading h3 {
    font-size: 40px;
    line-height: 50px;
  }

  .cms-home section.banner .banner-item .banner-content p.description.banner-description {
    font-size: 25px;
    line-height: 35px;
  }

  .product.details.product-item-details a.product-item-link {
    font-size: 18px;
  }

  .catalog-category-view .products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .price-box.price-final_price span {
    font-size: 16px;
  }

  .catalog-category-view .sidebar.sidebar-main .block.filter .filter-options .filter-options-item .filter-options-title {
    font-size: 16px;
  }

  .dtl-page-header-right-top-cart {
    margin: 1rem 0rem 1rem 15px;
  }

  body .my-footer .inner-links-wrapper ul li a {
    font-size: 16px;
    line-height: 30px;
  }

  footer.page-footer .block.newsletter .newsletter-title {
    font-size: 30px;
  }

  footer.page-footer .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter, footer.page-footer .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary, footer.page-footer .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter {
    height: 60px !important;
  }

  input#newsletter::-moz-placeholder {
    font-size: 16px;
  }

  input#newsletter:-ms-input-placeholder {
    font-size: 16px;
  }

  footer.page-footer .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter, input#newsletter::placeholder, footer.page-footer .block.newsletter .description, footer.page-footer .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
    font-size: 16px;
  }

  .my-footer .bottom-wrapper .links-wrapper .links-title, .footer-right .links-title, .my-footer .bottom-wrapper .links-wrapper .inner-links-wrapper .inner-links-title, .language-selector ul li a {
    font-size: 20px;
  }

  .cms-home .team-section .team-content {
    height: 230px;
  }

  .cms-home .equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content span.top-text {
    margin-top: 0;
  }

  .cms-home .equipment-and-patterns-wrapper .patterns-wrapper > img {
    top: 4em;
  }

  .cms-home .testimonials .testimonial-item h2.testimonial-giver, .cms-home section.callback-section h1, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content h2.title, .cms-home .how-to-buy-section .container .how-to-buy-content h1 {
    font-size: 35px !important;
  }

  .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content {
    margin-right: 2em;
  }

  .cms-home .testimonials .testimonial-item p, .cms-home .team-content h2, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content p.description, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content span.top-text, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content a.cta-link, .cms-home .patterns-wrapper .pattern-wrapper-content a.cta-link, .cms-home .equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content span.top-text {
    font-size: 22px;
  }

  .dtl-page-header-middle {
    width: 57%;
  }

  .dtl-page-header-right-top .dtl-page-header-right-top-link .nav-right {
    justify-content: flex-end;
  }

  body .nav-right-item-wrapper.log-in-wrapper {
    padding: 0 16px;
  }

  .dtl-page-header-right {
    width: auto;
  }
}
@media only screen and (max-width: 1240px) {
  .home_product_name_price, .home_product .product-item-actions .actions-primary {
    flex-wrap: wrap;
    align-items: center;
  }

  .home_product_rentals .actions-primary button.action.tocart {
    width: 100%;
    margin-bottom: 10px;
  }

  .cms-home section.how-to-buy-section .container > img {
    right: 0;
  }

  .cms-home .equipment-and-patterns-wrapper .equipment-wrapper > img {
    left: 10px;
    max-width: 40%;
    height: auto;
  }

  .filter-options-item.allow.active .filter-options-content {
    padding-left: 25px;
  }

  .toolbar-sorter.sorter select {
    min-width: 200px;
  }

  .product-item-info .product-image-photo {
    padding: 20px 10px;
  }

  section.team-section span.subtitle {
    font-size: 14px;
  }

  .team-content h2 {
    margin-bottom: 10px;
  }

  section.how-to-buy-section .container > img {
    right: 0;
  }

  .how-to-buy-section .container {
    max-width: 90%;
    width: 90%;
  }

  input#newsletter::-moz-placeholder {
    font-size: 18px;
  }

  input#newsletter:-ms-input-placeholder {
    font-size: 18px;
  }

  footer.page-footer .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter, input#newsletter::placeholder, footer.page-footer .block.newsletter .description, footer.page-footer .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
    font-size: 18px;
  }

  .my-footer .bottom-wrapper .links-wrapper .links-title, .footer-right .links-title {
    font-size: 20px;
  }

  .my-footer .bottom-wrapper .links-wrapper .inner-links-wrapper .inner-links-title, .language-selector ul li a, body .my-footer .inner-links-wrapper ul li a, .cms-home .testimonials .testimonial-item p, .team-content h2, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content p.description, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content span.top-text, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content a.cta-link, .cms-home .patterns-wrapper .pattern-wrapper-content a.cta-link, .cms-home .equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content span.top-text {
    font-size: 16px;
    line-height: 25px;
  }

  .dtl-page-header-middle {
    max-width: 45%;
  }

  .dtl-under-top .left-nav .left-nav-title, .left-nav .left-nav-item ul li a, .right-nav section.dtltopmenu li a {
    font-size: 16px;
  }

  .testimonials .testimonial-item h2.testimonial-giver, section.callback-section h1, .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content h2.title, .how-to-buy-section .container .how-to-buy-content h1 {
    font-size: 25px !important;
  }

  .team-section .team-content {
    height: auto;
    padding: 25px 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .cms-home .team-section .team-content {
    top: 10px;
    width: 50%;
  }

  .product-item-details a.product-item-link, .price-box.price-final_price span.price {
    font-size: 16px;
  }

  .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content {
    margin-right: 0;
  }

  .cms-home .dtl-under-top .left-nav .left-nav-item .left-nav-title {
    padding-left: 2em;
  }

  .catalog-category-view .products.list.items.product-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .products-grid .product-item {
    padding: 5px;
  }

  .top-strip .top-strip-middle span {
    margin-right: 0;
  }

  body .field.search select.xtremo-cat-search {
    max-width: 130px;
  }

  input#newsletter::-moz-placeholder {
    font-size: 14px;
  }

  input#newsletter:-ms-input-placeholder {
    font-size: 14px;
  }

  footer.page-footer .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter, input#newsletter::placeholder, footer.page-footer .block.newsletter .description, footer.page-footer .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
    font-size: 14px;
  }

  footer.page-footer .block.newsletter .newsletter-title {
    font-size: 30px;
    padding-right: 0;
  }

  .cms-home .locations-item img {
    width: 10%;
  }
}
@media only screen and (max-width: 991px) {
  .cms-home section.locations-wrapper .locations-item {
    font-size: 16px;
    padding: 30px 10px;
    text-align: center;
  }

  .cms-home .locations-item img {
    width: 20%;
  }

  .cms-home .team-section .team-content {
    position: static;
    width: 100%;
  }

  .cms-home .team-section .team-content {
    height: auto;
    padding: 20px 30px;
  }

  .cms-home .how-to-buy-section .container .how-to-buy-content > button, .cms-home .team-section .team-content button {
    height: 50px;
  }

  body .block-search .xtremo-cat-search-wrapper {
    max-width: 100px;
  }

  body .dtl-page-header-middle-top-search .control {
    display: flex;
  }

  body .block-search .xtremo-cat-search-wrapper + input {
    width: calc(100% - 60px) !important;
  }

  body .header.content a.logo {
    max-width: 130px;
  }

  body .dtl-page-header-left {
    width: auto;
  }

  body .logo {
    margin: 0;
  }

  body .dtl-page-header {
    align-items: center;
  }

  body header.page-header .header.content {
    margin-bottom: 20px;
  }

  .catalog-product-view .block.related .products.list.items.product-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 880px) {
  body.catalog-category-view .header.content a.logo {
    margin: 0 auto;
  }

  body .right-nav section.dtltopmenu li a {
    margin-right: 0;
  }

  body .dtltopmenu ul {
    padding-left: 10px;
  }

  body section.locations-wrapper .locations-item {
    font-size: 12px;
  }

  .cms-home .block.newsletter {
    gap: 15px;
  }

  .cms-home .equipment-and-patterns-wrapper .equipment-wrapper > img {
    height: 60%;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 1em;
  }

  .how-to-buy-section .container .how-to-buy-content .file-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-to-buy-section .container .how-to-buy-content .file-wrapper .file-item img {
    width: 40px;
    height: 40px;
  }

  .locations-item img {
    width: auto;
    max-width: 20%;
  }

  section.locations-wrapper .locations-item {
    padding: 30px 15px;
  }

  .team-section .team-content {
    top: 0;
    bottom: 0;
    margin: 20px 0;
    padding: 20px;
  }

  .dtl-page-header-left {
    display: flex;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .dtl-page-header-middle {
    max-width: 100%;
  }

  body .header.content a.logo {
    max-width: 150px;
    margin: 0 auto;
  }

  .dtl-page-header {
    padding-top: 5.5em;
    justify-content: space-evenly;
  }

  .cms-home .footer .block.newsletter {
    display: flex;
    flex-direction: column;
  }

  section.my-footer {
    margin-top: 0rem;
  }

  .cms-home .block.newsletter .content {
    width: 100%;
  }

  input#newsletter::-moz-placeholder {
    font-size: 16px;
  }

  input#newsletter:-ms-input-placeholder {
    font-size: 16px;
  }

  footer.page-footer .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter, input#newsletter::placeholder, footer.page-footer .block.newsletter .description, footer.page-footer .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
    font-size: 16px;
  }

  ul.social-media-list {
    max-width: 300px;
  }

  .my-footer .bottom-wrapper, .page-wrapper .panel.wrapper .panel.header .top-strip {
    flex-direction: column;
  }

  header.page-header .header.content {
    padding: 0px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  main#maincontent .toolbar.toolbar-products .modes {
    display: block;
  }

  .filter-title strong {
    top: 5px;
  }

  .toolbar.toolbar-products {
    position: absolute;
    right: 0;
    top: 0;
  }

  .toolbar.toolbar-products.pagination {
    position: static;
  }

  main#maincontent .toolbar.toolbar-products {
    padding: 4px 0 0px 0;
    border-bottom: 0;
  }

  toolbar.toolbar-products, .toolbar-sorter.sorter {
    position: static;
  }

  main#maincontent .toolbar.toolbar-products .modes .modes-mode span {
    display: none;
  }

  .modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: inherit;
    color: #7d7d7d;
    content: "";
    font-family: "luma-icons";
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    text-align: center;
  }

  .catalog-category-view .column.main {
    max-width: 100%;
  }

  .filter .block-subtitle {
    padding: 10px;
    text-align: center;
  }

  .filter.active .filter-title strong:after {
    position: relative;
    right: 24px;
  }

  .catalog-category-view .sidebar-main .block.filter .filter-options {
    border: 0;
    padding: 0px 30px;
  }

  .cms-home .widget.block.block-static-block .equipment-and-patterns-wrapper {
    grid-template-columns: 1fr;
  }

  body .field.search select.xtremo-cat-search {
    max-width: 80px;
    font-size: 12px;
  }

  .dtl-page-header-middle-top-search .field.search .control {
    padding: 0;
  }

  .block-search .control {
    margin: 0;
  }

  .block-search .label {
    position: absolute;
    right: 0;
    background: #000;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .block-search .label:before {
    text-align: center;
    top: 10px;
    bottom: 0;
    position: relative;
    right: -5px;
    color: #fff;
  }

  body .dtl-page-header-right {
    width: 100%;
    max-width: 100%;
  }

  body .dtl-page-header-left .nav-toggle {
    right: 0;
    left: auto;
    top: 0;
  }

  body .widget.block.block-static-block .dtl-under-top {
    flex-direction: column-reverse;
  }

  body .block-search .form > .field.search {
    position: relative;
  }

  .block-search .xtremo-cat-search-wrapper {
    display: block;
  }

  body .dtl-page-header-middle {
    width: 100%;
  }

  body .block.block-search {
    margin-top: 0;
  }

  body .block-search .xtremo-cat-search-wrapper + input {
    border-right: 1px solid #000 !important;
  }

  body .dtl-under-top .left-nav, .dtl-under-top .right-nav {
    width: 100%;
  }

  .catalog-product-view .product.data.items .item.title a:after {
    display: flex;
  }

  .catalog-product-view .block.related .products.list.items.product-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .catalog-product-view .review-form {
    max-width: 100%;
  }

  .catalog-product-view .block.related .products.list.items.product-items .product-item .product-item-info a.product.photo.product-item-photo span.product-image-container .product-image-wrapper {
    padding-bottom: 36% !important;
    margin-right: 0;
  }

  .catalog-product-view .gallery-placeholder .fotorama__wrap {
    display: block;
  }

  .catalog-product-view .gallery-placeholder .fotorama__wrap .fotorama__stage {
    width: 100% !important;
    order: 2;
  }

  .catalog-product-view .gallery-placeholder .fotorama__wrap .fotorama__nav-wrap {
    width: 100% !important;
    order: 1;
  }

  .catalog-product-view .gallery-placeholder .fotorama__wrap .fotorama__nav-wrap .fotorama__nav .fotorama__nav__shaft {
    display: inline-block;
  }

  .catalog-product-view .product-info-main .product-add-form .actions {
    flex-direction: column;
  }

  .catalog-product-view .gallery-placeholder .fotorama__nav--dots .fotorama__nav__frame .fotorama__dot {
    height: 12px;
    width: 12px;
  }

  .catalog-product-view .product-info-main .product-add-form .actions button, .catalog-product-view .product-info-main .product-add-form .actions .sparsh-buynow-view {
    width: 100%;
    margin-bottom: 10px !important;
  }

  .catalog-product-view .block.related .products-grid .product-item-actions {
    display: block;
  }

  .catalog-product-view .block.related .products-grid .product-item-actions .actions-primary, .catalog-product-view .block.related .products-grid .product-item-actions .actions-secondary {
    width: 100% !important;
    margin-bottom: 10px !important;
  }

  .catalog-category-view .sidebar-main {
    max-width: 0 !important;
  }

  .catalog-category-view main#maincontent .column.main {
    max-width: 100% !important;
  }

  .catalog-category-view .products-grid .actions-primary button.action.primary.sparsh-buynow-button, .catalog-category-view .products-grid .actions-primary button.action {
    width: 100% !important;
    margin-top: 10px;
  }

  .catalog-category-view .products-grid .actions-primary form {
    display: block !important;
  }

  .toolbar .pages {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 576px) {
  .cms-home section.banner .banner-item .banner-content p.description.banner-description {
    font-size: 16px;
    line-height: 25px;
  }

  .cms-home .locations-item img {
    width: 6%;
  }

  .home_product_name_price, .home_product .product-item-actions .actions-primary {
    margin-bottom: 20px;
  }

  .cms-home .owl-carousel .owl-nav .nav-btn {
    background-position: bottom !important;
    background-size: 50px !important;
    background-repeat: no-repeat !important;
    height: 50px !important;
  }

  .cms-home .subtitle_div {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .cms-home .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav {
    bottom: 10px;
    top: auto;
  }

  .cms-home .banner-item img {
    height: 400px;
  }

  .cms-home .dtl-under-top .right-nav .banner-item .banner-content {
    top: 0% !important;
    transform: none;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    padding: 20px;
  }

  .cms-home section.banner .banner-item .banner-content h1, .xtremo-feature-carousel .wk-heading h3 {
    font-size: 25px;
    line-height: 25px;
  }

  .cms-home section.banner .banner-item .banner-content h1 {
    line-height: 35px;
  }

  .wk-heading.home_product ol.product-items {
    flex-wrap: wrap;
  }

  .page-layout-1column .wk-heading.home_product .block.widget.grid .product-item {
    width: 100%;
  }

  .cms-home .testimonials .testimonial-item h2.testimonial-giver, .cms-home section.callback-section h1,
.cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content h2.title, .cms-home .how-to-buy-section .container .how-to-buy-content h1 {
    font-size: 22px !important;
  }

  .cms-home .dtl-under-top .left-nav .left-nav-item ul {
    margin-left: 0;
  }

  .cms-home .dtl-under-top .left-nav .left-nav-item:nth-child(1) .left-nav-title, .dtl-under-top .left-nav .left-nav-item .left-nav-title {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 22px;
  }

  footer.page-footer .block.newsletter .description {
    text-align: center;
    margin: 10px 0;
  }

  .cms-home .dtl-under-top .left-nav .left-nav-item ul li a {
    text-align: left;
    padding-left: 2em;
  }

  .cms-home .block.newsletter .newsletter-title {
    font-size: 25px;
  }

  .page-wrapper .panel.wrapper .panel.header .top-strip {
    padding: 15px 0;
  }

  .page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-right {
    flex-direction: column-reverse;
  }

  input#newsletter::-moz-placeholder {
    letter-spacing: 0;
  }

  input#newsletter:-ms-input-placeholder {
    letter-spacing: 0;
  }

  footer.page-footer .block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter, input#newsletter::placeholder {
    letter-spacing: 0;
  }

  .catalog-category-view .products.list.items.product-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .toolbar-sorter.sorter {
    position: absolute;
    right: 0;
    margin-right: 0 !important;
  }

  main#maincontent .toolbar.toolbar-products .modes, .toolbar.toolbar-products p.toolbar-amount {
    display: none;
  }

  .toolbar-sorter.sorter select {
    min-width: 150px;
  }

  .toolbar-sorter.sorter label.sorter-label {
    display: none;
  }

  .toolbar.toolbar-products {
    position: static;
  }

  .equipment-wrapper-content a.cta-link:after {
    margin: auto;
  }

  .testimonials {
    padding: 30px 0;
  }

  section.team-section {
    margin-bottom: 0;
  }

  body .page-wrapper .panel.wrapper .panel.header {
    width: 100%;
  }

  .cms-home .testimonials .testimonial-item:nth-child(1) {
    padding: 0 20px;
  }

  .cms-home .equipment-and-patterns-wrapper .equipment-wrapper > img, .equipment-and-patterns-wrapper .patterns-wrapper > img {
    display: none;
  }

  .cms-home .how-to-buy-section .container .how-to-buy-content h1 {
    margin-bottom: 0;
    width: 100%;
    text-align: center;
  }

  .cms-home .how-to-buy-section .container .how-to-buy-content > button {
    margin: auto;
  }

  .cms-home .how-to-buy-section .container .how-to-buy-content > button {
    margin-top: 0;
  }

  .cms-home section.how-to-buy-section {
    padding: 0 0 3em 0;
  }

  .cms-home .team-section .team-content {
    top: 0;
    bottom: 0;
    margin: 20px 0;
    padding: 10px 20px;
    width: 90%;
    right: 0;
    left: 0;
    margin: 10px auto;
    position: static;
  }

  .cms-home .team-content h2 {
    margin: 0 0 5px 0;
    font-size: 20px;
    line-height: 25px;
  }

  .cms-home .how-to-buy-section .container, .locations-wrapper {
    flex-direction: column;
  }

  .cms-home section.locations-wrapper .locations-item {
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    border-right: 0;
  }

  .cms-home .how-to-buy-section .container .how-to-buy-content {
    width: 100%;
    margin-bottom: 10px;
  }

  .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content {
    width: 100%;
    height: auto;
    text-align: center;
    margin-right: 0;
  }

  .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content h2.title, .cms-home .equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content p.description {
    padding-right: 0;
  }

  .cms-home .equipment-and-patterns-wrapper .equipment-wrapper {
    padding: 3em;
  }

  body .header.content a.logo {
    max-width: 130px;
  }

  body .field.search select.xtremo-cat-search {
    max-width: 100px;
  }

  body .dtl-page-header-right {
    max-width: 100%;
  }

  body .nav-right-item-wrapper.log-in-wrapper {
    border-left: 0 !important;
    border-right: 0 !important;
    padding-right: 5px !important;
  }

  .dtl-page-header-right-top {
    margin-bottom: 6px;
  }

  .left-nav .left-nav-item ul li a {
    padding: 7px;
  }

  .left-nav .left-nav-item:not(:last-child) {
    margin-bottom: 0px;
  }

  .block.widget.block-new-products.grid {
    margin-bottom: 0;
  }

  header.page-header .header.content {
    padding: 25px 0 0;
    width: 100% !important;
    margin: 0 auto;
    max-width: 90% !important;
  }

  .dtl-page-header-right-top .dtl-page-header-right-top-link .nav-right {
    justify-content: flex-end;
  }

  .dtl-page-header-right-top-cart {
    margin: 0rem 0rem 0 15px;
  }

  .dtl-page-header {
    flex-direction: column;
    padding-top: 2.5em;
  }

  .top-strip .top-strip-middle span {
    margin: 10px 0;
  }

  .xtremo-authorization-link {
    position: absolute;
    right: 0;
    margin-right: 15px;
  }

  .page-wrapper .panel.wrapper .panel.header .top-strip {
    width: 100%;
  }

  .my-footer .bottom-wrapper .links-wrapper, .cms-home .block.newsletter .content form.form.subscribe {
    flex-direction: column;
  }

  body .my-footer .links-column, .field.newsletter, .control {
    width: 100%;
  }

  .cms-home .block.newsletter .content form.form.subscribe .actions, .cms-home .block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
    width: 100%;
    margin-top: 11px;
    max-height: 45px;
  }

  .cms-home .how-to-buy-section .container .how-to-buy-content > button, .cms-home .team-section .team-content button {
    max-height: 45px;
  }

  .top-strip-middle {
    flex-direction: column;
    align-items: center;
  }

  .how-to-buy-section .container .how-to-buy-content .file-item {
    font-size: 14px;
  }

  .how-to-buy-section .container .how-to-buy-content .file-wrapper {
    gap: 23px;
  }

  .catalog-category-view .products-grid .actions-primary form {
    display: block !important;
  }

  .catalog-category-view .products-grid .actions-primary button.action.primary.sparsh-buynow-button, .catalog-category-view .products-grid .actions-primary button.action {
    width: 100%;
    margin-top: 10px;
  }

  footer.page-footer .block.newsletter {
    display: block !important;
    text-align: center;
  }

  .products.list.items.product-items .product-item .product-item-info a.product.photo.product-item-photo span.product-image-container .product-image-wrapper {
    padding-bottom: 70% !important;
  }
}
body {
  font-weight: 400;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif !important;
}

.container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 415px) {
  .container {
    max-width: 90%;
  }
}

p.description {
  font-size: 15px;
  line-height: 1.5;
  color: #616161;
  margin: 0;
}

.cms-home main.page-main {
  padding: 0;
  margin: 0;
  max-width: initial;
  margin-top: 0 !important;
}
.cms-home main.page-main .column.main > p {
  display: none;
}
.cms-home .column.main {
  padding-bottom: 0 !important;
}

.widget.block.block-static-block:first-child {
  display: flex;
  flex-direction: row-reverse;
  width: 90vw;
  margin-left: auto;
  margin-right: 0;
}

.left-nav {
  background-color: #F5F6F5;
  display: flex;
  flex-direction: column;
}
.left-nav .left-nav-item {
  display: flex;
  flex-direction: column;
}
.left-nav .left-nav-item ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.left-nav .left-nav-item ul li {
  margin: 0;
  display: flex;
  width: 100%;
}
.left-nav .left-nav-item ul li a {
  border-bottom: 1px solid #454A51;
  width: 100%;
  padding: 12px;
  padding-left: 20px;
  color: #454A51;
  font-size: 15px;
}
.left-nav .left-nav-item:not(:last-child) {
  margin-bottom: 30px;
}
.left-nav .left-nav-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  background-color: #005DBE;
  color: white;
  display: flex;
  padding: 20px;
  line-height: 1;
}

.banner-item {
  position: relative;
}
.banner-item img {
  width: 70vw;
  height: 870px;
  background: #5682CA;
  z-index: 0;
}
.banner-item .banner-content {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  flex-direction: column;
  width: 70%;
  align-items: flex-start;
}
.banner-item .banner-content h1 {
  font-size: 40px;
  color: white;
  width: 100%;
  font-weight: 700 !important;
  margin-bottom: 20px;
}
.banner-item .banner-content p.description.banner-description {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: white;
  margin-bottom: 20px;
}
.banner-item .banner-content button.banner-button {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  width: auto;
  background-color: white;
  color: #DE7029;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.equipment-and-patterns-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  grid-template-rows: 1fr;
}
.equipment-and-patterns-wrapper .equipment-wrapper {
  background-color: #212223;
  width: 100%;
  display: flex;
  position: relative;
  height: 400px;
  align-items: center;
  justify-content: flex-end;
}
.equipment-and-patterns-wrapper .equipment-wrapper > img {
  position: absolute;
  bottom: 0;
  left: 60px;
  height: 80%;
}
.equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content {
  width: 50%;
  height: auto;
  margin-right: 30px;
}
.equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content span.top-text {
  font-size: 17px;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.04em;
  font-weight: 300 !important;
}
.equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content h2.title {
  font-size: 30px;
  color: white;
  font-weight: 700 !important;
  line-height: 1.5;
  margin-top: 0;
}
.equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content p.description {
  font-size: 16px;
  color: white;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 10px;
}
.equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content a.cta-link {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.equipment-and-patterns-wrapper .equipment-wrapper .equipment-wrapper-content a.cta-link img {
  display: none;
}
.equipment-and-patterns-wrapper .patterns-wrapper {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.equipment-and-patterns-wrapper .patterns-wrapper > img {
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
}
.equipment-and-patterns-wrapper .patterns-wrapper .pattern-wrapper-content span.top-text {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600 !important;
}

.how-to-buy-section .container {
  padding: 0;
  max-width: 80%;
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.how-to-buy-section .container .how-to-buy-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: flex-start;
}
.how-to-buy-section .container .how-to-buy-content h1 {
  font-size: 34px;
  font-weight: 700 !important;
  color: #212121;
  margin-top: 0;
  margin-bottom: 20px;
}
.how-to-buy-section .container .how-to-buy-content .file-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 50px;
  margin-bottom: 30px;
}
.how-to-buy-section .container .how-to-buy-content .file-wrapper .file-item {
  display: flex;
  align-items: center;
}
.how-to-buy-section .container .how-to-buy-content .file-wrapper .file-item img {
  width: 50px;
  height: 50px;
  background-color: black;
  border: none;
  outline: none;
  margin-right: 14px;
}
.how-to-buy-section .container .how-to-buy-content .file-wrapper .file-item .file-item span {
  line-height: 1.5;
  font-size: 14px;
}
.how-to-buy-section .container .how-to-buy-content > button {
  width: auto;
  padding: 0 12px;
  height: 46px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-wrapper .panel.wrapper .panel.header {
  padding-top: 0 !important;
  padding-left: calc((100vw - 1280px) / 2) !important;
  padding-right: calc((100vw - 1280px) / 2) !important;
  background-color: #F8F9FA;
  margin-bottom: 0 !important;
}
.page-wrapper .panel.wrapper .panel.header .top-strip {
  justify-content: space-between;
  align-items: center;
}
.page-wrapper .panel.wrapper .panel.header .top-strip div {
  width: auto;
}
.page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-left {
  justify-content: end;
  padding: 0;
  width: auto;
  align-items: center;
  padding-left: 30px;
}
.page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-left img {
  margin: 0 10px;
  width: auto;
  height: 20px;
}
.page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-right {
  margin: 0;
}
.page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-right .top-strip-right-item.email {
  margin-right: 20px;
}
.page-wrapper .panel.wrapper .panel.header .top-strip .top-strip-right .top-strip-right-item span {
  font-weight: 600 !important;
  font-size: 13px;
}

.header.content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 1280px !important;
  width: 90% !important;
  margin: 0 auto;
}

.dtl-page-header-right-top {
  justify-content: space-between;
  align-items: center;
}
.dtl-page-header-right-top .dtl-page-header-right-top-link {
  flex: 1;
}
.dtl-page-header-right-top .dtl-page-header-right-top-link .nav-right {
  justify-content: space-evenly;
}

.dtl-page-header-right-top-cart .minicart-wrapper {
  opacity: 1;
}
.dtl-page-header-right-top-cart .action.showcart {
  background-color: transparent !important;
  height: auto;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}
.dtl-page-header-right-top-cart .action.showcart:before {
  background-image: url(../images/cart.png) !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.dtl-page-header-right-top-cart .action.showcart > span.text {
  display: none;
}
.dtl-page-header-right-top-cart .action.showcart span.counter.qty {
  margin: 0;
  background-color: #DF6C2A;
  color: white;
  position: absolute;
  left: 19px;
  font-size: 12px;
  line-height: 1;
  width: 16px;
  height: 16px;
  min-width: initial;
  min-height: initial;
  display: flex;
  top: 0;
  padding: 0;
}
.dtl-page-header-right-top-cart .action.showcart span.counter.qty .counter-number {
  margin-left: 5px;
  margin-top: 1px;
}
.dtl-page-header-right-top-cart .action.showcart span.price {
  color: #212121 !important;
}

.dtltopmenu ul li a:hover {
  text-decoration: underline;
}

.owl-carousel.owl-theme.owl-loaded.owl-drag {
  height: 100%;
}
.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav {
  background: transparent;
  display: flex;
  height: auto !important;
  width: auto !important;
  top: 50%;
  position: absolute;
  width: 100% !important;
  justify-content: space-between;
}
.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav .owl-prev, .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav .owl-next {
  padding: 0 !important;
  background: transparent !important;
  margin: 0 !important;
}
.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav .nav-btn {
  position: relative;
  left: 0;
  top: 0 !important;
}
.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav .nav-btn.next-slide {
  background: url("../images/Right-Arrow.png") no-repeat;
}

.my-footer .links-column {
  margin-right: 150px;
}

.links-title {
  margin-bottom: 20px;
}

.inner-links-wrapper {
  margin-bottom: 20px;
}
.inner-links-wrapper .inner-links-title {
  display: flex;
  margin-bottom: 10px;
}
.inner-links-wrapper ul li a {
  color: rgba(255, 255, 255, 0.5);
}

.language-selector ul li {
  padding: 14px 0;
}

.language-selector .links-title {
  margin-bottom: 0;
}

.block.newsletter {
  width: 100% !important;
  float: none !important;
  display: grid;
  grid-template-columns: auto 0.5fr 1fr;
  gap: 30px;
  grid-template-rows: 1fr;
  align-items: center;
  width: 100% !important;
  box-sizing: border-box;
}
.block.newsletter .newsletter-title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.block.newsletter .description {
  width: auto;
  margin-left: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: auto;
  font-size: 16px;
  text-align: left;
}
.block.newsletter .title {
  display: flex;
  margin: 0;
  align-items: center;
}
.block.newsletter .title strong {
  margin: 0;
  font-size: 20px;
  color: white;
}
.block.newsletter .content form.form.subscribe {
  display: flex;
  align-items: center;
  width: 100%;
}
.block.newsletter .content form.form.subscribe .field.newsletter {
  max-width: initial;
  flex: 1;
  margin-right: 20px;
  margin: 0;
  padding: 0;
  background: transparent;
}
.block.newsletter .content form.form.subscribe .field.newsletter .control:before {
  display: none !important;
}
.block.newsletter .content form.form.subscribe .field.newsletter .control label input#newsletter {
  margin: 0;
  height: 44px !important;
  padding-left: 20px !important;
  border: none;
  border-radius: 0;
}
.block.newsletter .content form.form.subscribe .actions {
  flex: 0 1;
  width: auto;
}
.block.newsletter .content form.form.subscribe .actions button.action.subscribe.primary {
  margin-left: 0 !important;
  background-color: #3D7FEC;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-transform: uppercase;
}

.testimonials {
  padding: 30px 0 30px 30px;
  display: block;
  width: 100vw;
  overflow-x: scroll;
  position: relative;
  height: 150px;
}
.testimonials .testimonial-item {
  display: flex;
  width: 70%;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  padding: 0 140px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.testimonials .testimonial-item:nth-child(1) {
  position: absolute;
  left: 0;
  padding: 0 460px;
  width: 100%;
}
.testimonials .testimonial-item:nth-child(2) {
  position: absolute;
  left: 60%;
  display: none;
}
.testimonials .testimonial-item h2.testimonial-giver {
  margin: 0;
  margin-bottom: 20px;
  font-size: 25px;
  color: white;
  font-weight: 600 !important;
  text-transform: uppercase;
}
.testimonials .testimonial-item p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.dtl-under-top {
  display: flex;
  max-width: 100%;
  margin: 0 0 0 5vw !important;
  height: 750px;
}
.dtl-under-top .left-nav {
  width: 24%;
  margin-right: 12px;
  margin-left: 0 !important;
}
.dtl-under-top .right-nav {
  width: auto;
  margin-left: 0;
  flex: 1;
}

.footer.content {
  padding-left: calc((100vw - 1280px) / 2) !important;
  padding-right: calc((100vw - 1280px) / 2) !important;
}

.block-static-block.widget {
  margin-bottom: 0 !important;
}

.dtl-under-top .right-nav .banner-item .banner-content {
  top: 40% !important;
}

.locations-wrapper {
  padding: 20px 0;
}

.toolbar.toolbar-products {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: 1fr;
  align-items: center;
}
.toolbar.toolbar-products p.toolbar-amount {
  text-align: left;
}
.toolbar.toolbar-products .toolbar-sorter.sorter {
  grid-column: 2;
}
.toolbar.toolbar-products .modes {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
}

.products.list.items.product-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.products.list.items.product-items .product-item {
  width: 100%;
}
.products.list.items.product-items .product-item .product-item-info {
  width: 100%;
  box-shadow: none !important;
}
.products.list.items.product-items .product-item .product-item-info a.product.photo.product-item-photo {
  display: flex;
}
.products.list.items.product-items .product-item .product-item-info a.product.photo.product-item-photo span.product-image-container {
  width: 100% !important;
}
.products.list.items.product-items .product-item .product-item-info a.product.photo.product-item-photo span.product-image-container .product-image-wrapper {
  padding-bottom: 100% !important;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details strong.product.name.product-item-name {
  font-size: 17px;
  font-family: inherit;
  font-weight: 600 !important;
  color: #212121;
  margin-top: 0;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .price-box.price-final_price span {
  font-size: 15px;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .product-item-inner .product.actions.product-item-actions .actions-primary form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .product-item-inner .product.actions.product-item-actions .actions-primary form button {
  margin-bottom: 0;
  border-radius: 2px;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .product-item-inner .product.actions.product-item-actions .actions-primary form button span {
  line-height: 1;
  text-transform: uppercase !important;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .product-item-inner .product.actions.product-item-actions .actions-primary form button.action.tocart.primary.sparsh-buynow-button {
  background-color: #E36D28;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .product-item-inner .product.actions.product-item-actions .actions-primary form button.action.primary.sparsh-buynow-custom-tocart {
  border: 1px solid #005EBE !important;
  background-color: transparent;
  color: #005EBE;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .product-item-inner .product.actions.product-item-actions .actions-primary form button.action.primary.sparsh-buynow-custom-tocart span {
  color: #005EBE;
  line-height: 1;
}
.products.list.items.product-items .product-item .product-item-info .product.details.product-item-details .product-item-inner .product.actions.product-item-actions .actions-primary form button.action.primary.sparsh-buynow-custom-tocart:hover {
  background-color: #005EBE;
  color: white;
}

.catalog-category-view main#maincontent.page-main {
  padding-left: 5vw !important;
  padding-right: 5vw !important;
}
.catalog-category-view .column.main {
  width: 70% !important;
}
.catalog-category-view .sidebar-main {
  width: 30% !important;
}
.catalog-category-view .sidebar-main .block.filter {
  padding: 0;
}
.catalog-category-view .sidebar-main .block.filter .filter-options {
  border: 1px solid #eee;
  padding: 20px;
}
.catalog-category-view .sidebar-main .block.filter .filter-options .filter-options-item {
  border-bottom: 1px solid #eee;
}
.catalog-category-view .sidebar-main .block.filter .filter-options .filter-options-item .filter-options-title {
  display: flex;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400 !important;
  font-family: inherit;
  padding: 10px 40px 10px 0px;
  color: #616161;
  font-size: 15px;
}
.catalog-category-view .sidebar-main .block.filter .filter-options .filter-options-item .filter-options-title:after {
  right: 6px;
  top: 13px;
  font-size: 30px;
}
.catalog-category-view .sidebar-additional {
  width: 30% !important;
  padding: 0px !important;
}/*# sourceMappingURL=styles.css.map */