@charset "UTF-8";
/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

h1 {
  font-size: 42px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 36px;
  line-height: 56px;
  font-family: "Montserrat-Regular";
  margin-top: 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h2 {
    font-size: 22px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  h2 {
    font-size: 25px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}

h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h3 {
    font-size: 17px;
  }
}

h4 {
  font-size: 18px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h4 {
    font-size: 14px;
  }
}

h5 {
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h5 {
    font-size: 12px;
  }
}

h6 {
  font-size: 12px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h6 {
    font-size: 10px;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  p {
    width: auto;
  }
}

button {
  outline: none;
  border: none;
}

button:hover {
  outline: none;
  border: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -32px !important;
  margin-top: 20px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-sm-12,
.col-sm-6,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-9,
.col-sm-2,
.col-sm-7,
.col-sm-8, .col-sm-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 78.333333%;
    max-width: 78.333333%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
*,
::after,
::before {
  box-sizing: border-box;
}

.d-flex {
  display: flex;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .d-flex {
    display: block;
  }
}

.align-item-center {
  align-items: center;
}

.text-align-center {
  text-align: center;
}

a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease-out;
  font-family: "Montserrat";
  border: none;
  outline: none;
}

a:focus {
  outline: none;
}

a:visited {
  color: #000000;
}

a:hover {
  text-decoration: none;
  transition: 0.3s ease-in;
}

.text-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
}

.text-link:hover::after {
  width: 30%;
}

.padding-lr {
  padding: 0rem 1rem;
}

.padding-tb {
  padding: 1rem 0rem;
}

.padding-lrtb {
  padding: 5px;
}

.justify-content {
  justify-content: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

input {
  outline: none;
  border: none;
  border-radius: 0px;
}

.desktop-block {
  display: block !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-block {
    display: none !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .desktop-block {
    display: none !important;
  }
}

.mobile-block {
  display: none !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-block {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .mobile-block {
    display: block !important;
  }
}

.desktop-flex {
  display: flex;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .desktop-flex {
    display: none !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-flex {
    display: none !important;
  }
}

.mobile-flex {
  display: none !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .mobile-flex {
    display: flex !important;
  }
}

.desktop-grid {
  display: grid !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-grid {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .desktop-grid {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .desktop-grid {
    display: grid !important;
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

h1 {
  font-size: 42px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 36px;
  line-height: 56px;
  font-family: "Montserrat-Regular";
  margin-top: 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h2 {
    font-size: 22px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  h2 {
    font-size: 25px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}

h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h3 {
    font-size: 17px;
  }
}

h4 {
  font-size: 18px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h4 {
    font-size: 14px;
  }
}

h5 {
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h5 {
    font-size: 12px;
  }
}

h6 {
  font-size: 12px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h6 {
    font-size: 10px;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  p {
    width: auto;
  }
}

button {
  outline: none;
  border: none;
}

button:hover {
  outline: none;
  border: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -32px !important;
  margin-top: 20px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-sm-12,
.col-sm-6,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-9,
.col-sm-2,
.col-sm-7,
.col-sm-8, .col-sm-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 78.333333%;
    max-width: 78.333333%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
*,
::after,
::before {
  box-sizing: border-box;
}

.d-flex {
  display: flex;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .d-flex {
    display: block;
  }
}

.align-item-center {
  align-items: center;
}

.text-align-center {
  text-align: center;
}

a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease-out;
  font-family: "Montserrat";
  border: none;
  outline: none;
}

a:focus {
  outline: none;
}

a:visited {
  color: #000000;
}

a:hover {
  text-decoration: none;
  transition: 0.3s ease-in;
}

.text-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
}

.text-link:hover::after {
  width: 30%;
}

.padding-lr {
  padding: 0rem 1rem;
}

.padding-tb {
  padding: 1rem 0rem;
}

.padding-lrtb {
  padding: 5px;
}

.justify-content {
  justify-content: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

input {
  outline: none;
  border: none;
  border-radius: 0px;
}

.desktop-block {
  display: block !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-block {
    display: none !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .desktop-block {
    display: none !important;
  }
}

.mobile-block {
  display: none !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-block {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .mobile-block {
    display: block !important;
  }
}

.desktop-flex {
  display: flex;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .desktop-flex {
    display: none !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-flex {
    display: none !important;
  }
}

.mobile-flex {
  display: none !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .mobile-flex {
    display: flex !important;
  }
}

.desktop-grid {
  display: grid !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-grid {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .desktop-grid {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .desktop-grid {
    display: grid !important;
  }
}

@font-face {
  font-family: "Montserrat";
  src: local("☺"), local("☺"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: local("☺"), local("☺"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Semibold";
  src: local("☺"), local("☺"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?zbo41h");
  src: url("../fonts/icomoon.eot?zbo41h#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?zbo41h") format("truetype"), url("../fonts/icomoon.woff?zbo41h") format("woff"), url("../fonts/icomoon.svg?zbo41h#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/********************** Start Common *************************/
body {
  overflow-x: hidden;
}

a:hover {
  color: #000;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: "Montserrat";
}

[class^=icon-],
[class*=" icon-"] {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-Call_Icon:before {
  content: "\e900";
  color: #ef3e42;
}

.button,
input[type=submit] {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-family: "Montserrat";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .button,
  input[type=submit] {
    margin: auto;
    font-size: 12px;
    width: auto;
    margin: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .button,
  input[type=submit] {
    margin: 0;
    font-size: 12px;
    margin: 10px;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
  }
}
.button:hover,
input[type=submit]:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ef3e42 !important;
}

/*
.button:hover {
	color: #fff!important;
}
*/
.button-light {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ffffff;
  color: #000;
  font-family: "Montserrat";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  border: 1px solid #ef3e42;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .button-light {
    margin: auto;
    font-size: 12px;
    width: auto;
    margin: 10px;
  }
}
.button-light:hover {
  background-color: #ef3e42 !important;
  color: #fff !important;
  border: none;
}

/*
.button-light:hover {
	color: $primary_color!important;
}
*/
.page-common-section {
  background-repeat: no-repeat;
  width: 100%;
  background-size: 100% 100%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .page-common-section {
    background-size: 100% 100%;
  }
}
.page-common-section .page-content-wrapper {
  padding: 5rem 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .page-common-section .page-content-wrapper {
    padding: 2rem 0rem;
    text-align: center;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .page-common-section .page-content-wrapper {
    padding: 2rem 0rem;
    text-align: center;
  }
}
.page-common-section .page-content-wrapper a {
  color: #fff;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .page-common-section .page-content-wrapper a {
    margin: 0;
    margin-top: 20px;
  }
}
.page-common-section .page-content-wrapper h2 {
  font-family: "Montserrat";
}
.page-common-section .page-content-wrapper h2::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .page-common-section .page-content-wrapper h2::after {
    margin-top: -5px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .page-common-section .page-content-wrapper h2::after {
    margin-left: 14%;
  }
}
.page-common-section .page-content-wrapper p {
  width: 300px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .page-common-section .page-content-wrapper p {
    width: auto;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .page-common-section .page-content-wrapper p {
    width: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .page-common-section .page-content-wrapper p {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .page-common-section .page-content-wrapper p {
    margin: auto;
    margin-top: 20px;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .swiper-container {
    height: auto;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ef3e42;
  -webkit-text-stroke: 1px #000;
  top: 50%;
  outline: none;
  border: none;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: " ";
}

.swiper-button-next {
  background-image: url("../images/right_arrow.png");
  background-repeat: no-repeat;
  right: 20px;
  left: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .swiper-button-next {
    right: 5%;
    background-size: auto;
  }
}

.swiper-button-prev {
  background-image: url("../images/left_arrow.png");
  background-repeat: no-repeat;
  left: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .swiper-button-prev {
    left: 5%;
    background-size: auto;
  }
}

.custom-select-wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
}

.custom-select1 {
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 300;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  height: 40px;
  line-height: 60px;
  background: #ffffff;
  cursor: pointer;
  border-bottom: 1px solid #000000;
  padding-left: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .custom-select__trigger {
    font-size: 14px;
  }
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 0;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}

.custom-select1.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option {
  position: relative;
  display: block;
  padding: 0 22px 0 22px;
  font-size: 13px;
  font-weight: 300;
  color: #3b3b3b;
  line-height: 60px;
  cursor: pointer;
  transition: all 0.5s;
}

.custom-option:hover {
  cursor: pointer;
  background-color: #ef3e42;
  color: #fff;
}

.custom-option.selected {
  color: #ffffff;
  background-color: #ef3e42;
}

.arrow {
  position: relative;
  height: 15px;
  width: 15px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 60%;
  transition: all 0.5s;
}

.arrow::before {
  left: -1px;
  transform: rotate(-45deg);
  background-color: #ef3e42;
}

.arrow::after {
  left: 5px;
  transform: rotate(45deg);
  background-color: #ef3e42;
}

.open .arrow::before {
  left: -1px;
  transform: rotate(45deg);
}

.open .arrow::after {
  left: 5px;
  transform: rotate(-45deg);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.theme-image {
  display: none;
}

.active {
  display: block;
  animation: fadeIn 1s linear;
}

.active-carousel {
  display: flex;
  animation: fadeIn 1s linear;
}

#sidebarMenu {
  z-index: 10;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 250px;
  margin-top: 0px;
  transform: translateX(-250px);
  transition: transform 250ms ease-in-out;
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #sidebarMenu {
    overflow-y: scroll;
  }
}

.sidebarMenuInner {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: scroll;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebarMenuInner {
    margin-top: 3rem;
    height: 100%;
  }
}

.sidebarMenuInner li {
  list-style: none;
  color: #ef3e42;
  font-weight: bold;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #e1e1e1;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebarMenuInner li {
    padding: 12px;
  }
}

.sidebarMenuInner li span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.sidebarMenuInner li a {
  color: #ef3e42;
  font-family: "Montserrat";
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebarMenuInner li a {
    font-size: 13px;
  }
}

.menu-title {
  font-size: 13px;
}

input[type=checkbox]:checked ~ #sidebarMenu {
  transform: translateX(0);
}

input[type=checkbox] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}

.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 10px;
  left: 26px;
  height: 22px;
  width: 22px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebarIconToggle {
    top: 3px;
    left: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sidebarIconToggle {
    top: 3px;
    left: 0px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .sidebarIconToggle {
    top: 3px;
    left: 0px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .sidebarIconToggle {
    left: 0px;
    top: 0px;
  }
}
.sidebarIconToggle span {
  font-size: 14px;
  font-family: "Montserrat";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebarIconToggle span {
    font-size: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .sidebarIconToggle span {
    font-size: 10px;
  }
}

.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #ef3e42;
  margin-bottom: 1px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .spinner {
    height: 2px;
    margin-bottom: 0rem;
  }
}

.spinner:nth-child(-n+2) {
  width: 44px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .spinner:nth-child(-n+2) {
    width: 35px;
  }
}

.spinner:nth-child(3) {
  width: 22px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .spinner:nth-child(3) {
    width: 35px;
  }
}

.spinner:last-child {
  width: 11px;
}

.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
  cursor: pointer;
}

.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
  cursor: pointer;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
  width: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    width: 15px;
  }
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -4px;
  width: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    margin-top: -2px;
    width: 15px;
  }
}
@keyframes sk-rotatePlane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../images/Dual Ring-1s-104px.svg") center no-repeat #fff;
}

/*
.sk-rotating-plane {
	width: 50px;
	height: 50px;
	background-color: #ef3e43;
	-webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
	animation: sk-rotatePlane 1.2s infinite ease-in-out;
}
*/
.display-none {
  display: none;
}

.display-block {
  display: block;
}

.static {
  position: absolute;
  background: white;
  transition: 0.5s ease-out;
  width: 100%;
}

.static:hover {
  transition: 0.5s ease-out;
  opacity: 0;
}

.search-show {
  opacity: 1;
  transition: 0.5s ease-out;
  display: block;
  z-index: 1000;
}

.search-hide {
  opacity: 0;
  transition: 0.5s ease-out;
  display: none;
}

.ac {
  padding: 1rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ac {
    padding: 1rem 0rem;
  }
}

.ac-label {
  font-weight: 700;
  position: relative;
  padding: 0.5em 1em;
  margin-bottom: 0.5em;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #ef3e42;
  transition: background-color 0.15s ease-in-out;
  font-size: 18px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ac-label {
    font-size: 14px;
    padding: 0.5em 0em;
  }
}

.ac-text {
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ac-text {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ac-text {
    width: 100%;
    border-right: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ac-text ol {
    margin: 0;
  }
}
.ac-text ol li {
  font-size: 14px;
  font-family: "Montserrat-Regular";
}
.ac-text p {
  font-family: "Montserrat";
}

.ac-sub-text {
  padding: 0 1em 0 2em;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ac-sub-text {
    padding: 0px;
  }
}

.ac-label:after,
.ac-input:checked + .ac-label:after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 2em;
  height: 100%;
  line-height: 2.25em;
  text-align: center;
  color: #ef3e42;
  transition: background-color 0.15s ease-in-out;
}

.ac-input:checked + .ac-label:after {
  font-family: FontAwesome;
  content: "\f106";
}

.ac-input {
  display: none;
}

.ac-text,
.ac-sub-text {
  opacity: 0;
  height: 0;
  margin-bottom: 0em;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .ac-sub-text p {
    text-align: left;
    padding: 17px;
    font-size: 11px;
  }
}

.ac-input:checked ~ .ac-text,
.ac-sub .ac-input:checked ~ .ac-sub-text {
  opacity: 1;
  height: auto;
}

.ac-sub .ac-label {
  background: none;
  font-weight: 600;
  padding: 0.5em 2em;
  margin-bottom: 0;
  font-size: 14px;
  border-bottom: 0.5px solid #f4f4f4;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ac-sub .ac-label {
    font-size: 11px;
  }
}

.ac-sub .ac-label:checked {
  background: none;
  border-bottom: 1px solid whitesmoke;
}

.ac-sub .ac-input:checked + label,
.ac-sub .ac-label:hover {
  background: none;
}

.gravity-form-wrapper {
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .gravity-form-wrapper .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .gravity-form-wrapper .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .gravity-form-wrapper .gform_wrapper {
    padding: 0px 15px;
  }
}
.gravity-form-wrapper .gform_wrapper li.gfield.gfield_error {
  background-color: transparent;
  margin-bottom: 6px !important;
  border-top: none;
  border-bottom: none;
  padding-bottom: 6px;
  padding-top: 8px;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul li {
  padding-bottom: 15px;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul .gfield_label {
  font-size: 12px;
  color: #969696;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul input,
.gravity-form-wrapper .gform_wrapper form .gform_body ul select {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  padding-bottom: 10px;
  -webkit-appearance: none;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul .ginput_container_select {
  position: relative;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul .ginput_container_select::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  color: #ef3e42;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul input:focus,
.gravity-form-wrapper .gform_wrapper form .gform_body ul select:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid #ef3e42;
  transition: 0.5s ease-in-out;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul ::-moz-placeholder {
  font-size: 14px;
  color: #000000;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul ::placeholder {
  font-size: 14px;
  color: #000000;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul textarea:focus {
  border: 1px solid #ef3e42;
  outline: none;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: none;
  border-bottom: 1px solid #790000;
}
.gravity-form-wrapper .gform_wrapper form .gform_footer {
  margin: auto;
  text-align: center;
}
.gravity-form-wrapper .gform_wrapper form .validation_error {
  display: none;
}

.sidebar-tabs .active {
  display: block;
}
.sidebar-tabs .tabs li.active {
  color: #ef3e42;
  animation: abc;
  font-family: "Montserrat-Semibold";
  border-bottom: 1px solid #f4f4f4;
}
.sidebar-tabs .tabs li.active::after {
  content: "\f105";
  font-family: fontAwesome;
  float: right;
}
.sidebar-tabs .content,
.sidebar-tabs .inner-content {
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.sidebar-tabs .content-section .active {
  display: block;
  opacity: 1;
  animation: abc;
}
.sidebar-tabs .content-wrapper .inner-tab-wrapper ul {
  display: flex;
  justify-content: space-around;
}
.sidebar-tabs .content-wrapper .inner-tab-wrapper ul li {
  list-style: none;
  width: 50%;
  margin: auto;
  text-align: center;
  margin-left: 0px !important;
}
.sidebar-tabs .content-wrapper .inner-tab-wrapper ul li.active::after {
  content: " ";
}
.sidebar-tabs .content-wrapper .inner-tab-wrapper ul li.active {
  background: #ef3e42;
  color: #fff;
}
.sidebar-tabs .content-wrapper .inner-tab-wrapper ul li:before {
  content: "" !important;
}
.sidebar-tabs .inner-tab-wrapper #sidebarTabsSection::after {
  content: "";
}
.sidebar-tabs .content-section span {
  font-size: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section span {
    font-size: 20px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 812px) and (orientation: landscape) {
  .sidebar-tabs .content-section span {
    font-size: 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) and (orientation: landscape) {
  .sidebar-tabs .content-section span {
    font-size: 20px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section .gform_wrapper {
    padding: 0px;
  }
}
.sidebar-tabs .content-section .gform_wrapper .gfield_required {
  color: #ef3e42;
  font-size: 14px;
}
.sidebar-tabs .content-section .gform_wrapper form .gform_body ul .ginput_container_select::after {
  bottom: 5px;
  top: auto;
}
.sidebar-tabs .content-section .gform_wrapper .gform_body {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section .gform_wrapper .gform_body {
    width: 100%;
  }
}
.sidebar-tabs .content-section form {
  border: 1px solid #f4f4f4;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section form {
    border: none;
  }
}
.sidebar-tabs .content-section .gform_wrapper .top_label li.gfield.gf_left_half,
.sidebar-tabs .content-section .gform_wrapper .top_label li.gfield.gf_right_half {
  padding-left: 16px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section .gform_wrapper .top_label li.gfield.gf_left_half,
  .sidebar-tabs .content-section .gform_wrapper .top_label li.gfield.gf_right_half {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  .sidebar-tabs .content-section .gform_wrapper .top_label li.gfield.gf_left_half,
  .sidebar-tabs .content-section .gform_wrapper .top_label li.gfield.gf_right_half {
    width: 100%;
  }
}
.sidebar-tabs .content-section .gform_wrapper ul.gform_fields li.gfield {
  padding-left: 16px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section .gform_wrapper ul.gform_fields li.gfield {
    padding-left: 0px;
  }
}
.sidebar-tabs .content-section .gform_wrapper .gform_fileupload_multifile .gform_drop_area {
  margin-top: 20px;
  border: 1px dashed #000;
  display: block;
  align-items: center;
  justify-content: center;
}
.sidebar-tabs .content-section .gform_wrapper .gform_fileupload_multifile .gform_drop_area button {
  margin: auto;
  margin-top: 15px;
}
.sidebar-tabs .content-section .gform_drop_instructions {
  font-size: 12px;
  margin-bottom: 0px;
}
.sidebar-tabs .content-section .gform_wrapper.gf_browser_chrome input.button.gform_button_select_files {
  border: none;
  width: auto;
  opacity: 1;
  display: block;
  color: #ef3e42 !important;
  padding: 0px !important;
  margin: 0px;
  font-size: 12px;
  margin-left: 5px;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section .ginput_container_fileupload input {
    border: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sidebar-tabs .content-section .ginput_container_fileupload input {
    border: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .sidebar-tabs .content-section .ginput_container_fileupload input {
    border: none;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .sidebar-tabs .content-section .ginput_container_fileupload input {
    border: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  .sidebar-tabs .content-section .ginput_container_fileupload input {
    border: none;
  }
}
.sidebar-tabs .content-section .gfield_checkbox label b {
  font-family: "Montserrat-Semibold";
}
.sidebar-tabs .content-section .gfield_checkbox li input:checked + label:after {
  top: 7px;
}
.sidebar-tabs .content-section .gform_wrapper .gform_footer input.button,
.sidebar-tabs .content-section .gform_wrapper .gform_footer input[type=submit] {
  font-size: 14px;
  width: 170px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section .gform_wrapper .gform_footer input.button,
  .sidebar-tabs .content-section .gform_wrapper .gform_footer input[type=submit] {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  .sidebar-tabs .content-section .gform_wrapper .gform_footer input.button,
  .sidebar-tabs .content-section .gform_wrapper .gform_footer input[type=submit] {
    margin: auto;
    text-align: center;
    justify-content: center;
  }
}
.sidebar-tabs .content-section .gform_wrapper ul.gfield_checkbox li label,
.sidebar-tabs .content-section .gform_wrapper ul.gfield_radio li label {
  color: #000;
}
.sidebar-tabs .content-section .gform_confirmation_wrapper .gform_confirmation_message {
  position: initial;
  margin-left: 0px;
  text-align: center;
  margin: 50px 0px;
  font-size: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section .gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 17px;
  }
}
.sidebar-tabs .content-section input {
  color: #000;
}
.sidebar-tabs .content-section .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half,
.sidebar-tabs .content-section .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {
  padding-right: 0;
  margin-top: -3px;
}
.sidebar-tabs .content-section .gform_wrapper textarea.large {
  height: 120px;
}
.sidebar-tabs .content-section .content-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.sidebar-tabs .content-section .content-title::after {
  content: "";
  display: block;
  width: 9%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar-tabs .content-section .content-title::after {
    margin-top: 5px;
  }
}
.sidebar-tabs .content-section .content-wrapper p {
  font-size: 14px;
  text-align: center;
}
.sidebar-tabs ul {
  margin-bottom: 10px;
  padding: 0;
  display: grid;
  margin: 0;
}
@media only screen and (min-width: 414px) and (max-width: 812px) and (orientation: landscape) {
  .sidebar-tabs ul {
    display: block !important;
  }
}
@media only screen and (min-width: 375px) and (max-width: 678px) and (orientation: landscape) {
  .sidebar-tabs ul {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) and (orientation: landscape) {
  .sidebar-tabs ul {
    display: none !important;
  }
}
.sidebar-tabs li {
  list-style: none;
  display: inline-block;
  margin-right: -4px;
  text-align: left;
  cursor: pointer;
  padding: 10px 0px;
  font-size: 14px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sidebar-tabs li {
    font-size: 12px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 800px) and (orientation: landscape) {
  .sidebar-tabs li {
    font-size: 11px;
  }
}

.timeline-container {
  width: 80%;
  padding: 30px 0;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .timeline-container {
    width: 100%;
  }
}

.timeline-container:before {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -2px;
  width: 2px;
  height: 100%;
  background: #ef3e42;
  z-index: 1;
  bottom: -7px;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .timeline-container:before {
    display: none;
  }
}

.timeline-block {
  width: calc(50% + 8px);
  display: flex;
  justify-content: space-between;
  clear: both;
}

.timeline-block-right {
  float: right;
}

.timeline-block-left {
  float: left;
  direction: rtl;
}

.marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 5px solid #ef3e42;
  background: #fff;
  margin-top: 10px;
  z-index: 1;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .marker {
    width: auto;
    height: 8px;
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .marker {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) and (orientation: landscape) {
  .marker {
    display: none;
  }
}
@media only screen and (min-width: 375px) and (max-width: 820px) and (orientation: landscape) {
  .marker {
    display: none;
  }
}

.timeline-content {
  width: 95%;
  padding: 0 15px;
  color: #666;
}

.timeline-content h3 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 500;
}

.timeline-content span {
  font-size: 15px;
  color: #a4a4a4;
}

.timeline-content p {
  font-size: 14px;
  line-height: 1.5em;
  word-spacing: 1px;
  color: #000;
}

@media screen and (max-width: 768px) {
  .container:before {
    left: 8px;
    width: 2px;
  }
  .timeline-block {
    width: 100%;
    margin-bottom: 30px;
  }
  .timeline-block-right {
    float: none;
  }
  .timeline-block-left {
    float: none;
    direction: ltr;
  }
}
.loadMore {
  display: block;
}

.loadLess {
  display: none;
}

.gravity-form-wrapper {
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .gravity-form-wrapper .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .gravity-form-wrapper .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .gravity-form-wrapper .gform_wrapper {
    padding: 0px 15px;
  }
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul li {
  padding-bottom: 15px;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul .gfield_label {
  font-size: 12px;
  color: #969696;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul input,
.gravity-form-wrapper .gform_wrapper form .gform_body ul select {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  padding-bottom: 10px;
  -webkit-appearance: none;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul .ginput_container_select {
  position: relative;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul .ginput_container_select::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  color: #ef3e42;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul input:focus,
.gravity-form-wrapper .gform_wrapper form .gform_body ul select:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid #ef3e42;
  transition: 0.5s ease-in-out;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul ::-moz-placeholder {
  font-size: 14px;
  color: #000000;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul ::placeholder {
  font-size: 14px;
  color: #000000;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul textarea:focus {
  border: 1px solid #ef3e42;
  outline: none;
}
.gravity-form-wrapper .gform_wrapper form .gform_body ul li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: none;
  border-bottom: 1px solid #790000;
}
.gravity-form-wrapper .gform_wrapper form .gform_footer {
  margin: auto;
  text-align: center;
}
.gravity-form-wrapper .gform_wrapper form .validation_error {
  display: none;
}

#tab_selector {
  margin: auto;
  margin-top: 20px;
  width: 100%;
  height: 40px;
  border-radius: 3px;
  background: #ef3e42;
  color: #fff;
  font-size: 14px;
  padding-left: 20px;
  -webkit-appearance: none;
}
@media only screen and (min-width: 375px) and (max-width: 812px) and (orientation: landscape) {
  #tab_selector {
    display: none !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) and (orientation: landscape) {
  #tab_selector {
    display: block !important;
  }
}

#sidebarTabsSection::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  color: #fff;
  right: 5%;
  top: 20%;
}

#sidebarTabsSection {
  position: relative;
}

.icon-Call_Icon-1:before {
  content: "\e900";
  color: #ef3e42;
}

.onscroll {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}

.offscroll {
  visibility: visible;
  opacity: 1;
}

.icon-Cart:before {
  content: "\e900";
  color: #ef3e42;
  font-size: 14px;
}

.icon-Email:before {
  content: "\e901";
  color: #ef3e42;
  font-size: 14px;
}

.icon-Call_Icon:before {
  content: "\e902";
  color: #ef3e42;
  font-size: 14px;
}

.icon-Locate_Icon:before {
  content: "\e903";
  color: #ef3e42;
  font-size: 14px;
}

/************************ End Common ************************/
/***************** Header ************************/
#header {
  margin-bottom: 1rem;
  position: sticky;
  animation-name: stickySlideDown;
  animation-duration: 0.5s;
  transition: 0.5s;
  top: 0;
  background-color: #fff;
  z-index: 998;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header {
    margin-bottom: 0rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header {
    margin-bottom: 0rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #header {
    padding-bottom: 1rem;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #header {
    margin-bottom: 0px;
  }
}
#header .container {
  max-width: 1300px;
}
#header .fa-search {
  color: #000;
}
#header .off-scroll .modal {
  display: block;
}
#header #drop-7 + ul {
  height: 100px;
}
#header #drop-10 + ul {
  height: 150px;
}
#header .logo {
  margin-left: 5rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .logo {
    width: 144px;
    height: 33px;
    margin-left: 0px;
    margin: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .logo {
    margin-left: 16rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #header .logo {
    margin-left: 42px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #header .logo {
    margin-left: 4rem;
  }
}
#header form button {
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .logo-wrapper {
    width: auto;
    margin: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #header .logo-wrapper {
    margin-left: 8rem;
    width: auto;
  }
}
#header .quick-links {
  height: 17px;
  align-items: center;
}
#header .quick-links a {
  font-size: 12px;
}
#header .quick-links a:hover {
  color: #000;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #header .quick-links .padding-lr {
    padding: 0rem 0.4rem;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .login-section {
    display: flex;
  }
}
#header .login-section .quick-links {
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .login-section .quick-links {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
  }
}
#header .login-section .user-icon {
  background-color: #000000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .login-section .user-icon img {
    width: 12px;
    height: 12px;
  }
}
#header .login-section .cart-icon {
  background-color: #ef3e42;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .login-section .cart-icon img {
    width: 12px;
    height: 12px;
  }
}
#header .login-section .cart-icon span {
  font-family: "Montserrat";
  font-size: 10px;
  color: #fff;
  margin-left: 5px;
  margin-top: 9px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .login-section .cart-icon span {
    margin-top: 6px;
  }
}
#header .login-section .cart-icon i {
  color: #fff;
}
#header .menu-list {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .menu-list {
    display: none;
  }
}
#header .menu-list li {
  padding: 10px 25px;
}
#header .menu-list li a {
  font-size: 13px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .menu-list li a {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .menu-list li {
    padding: 10px 6px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #header .menu-list li {
    padding: 10px 11px;
  }
}
#header .menu-list li:first-child {
  padding-left: 8px;
}
#header .menu-list li:last-child {
  padding-left: 10px;
}
#header .menu-list li:nth-child(4) ul li a {
  color: #000;
}
#header .menu-list li:nth-child(4) ul li:first-child {
  border-bottom: 1px solid #ede6e6;
}
#header .col-sm-10 {
  padding-left: 6px;
}
#header .search-mobile-menu {
  display: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .search-mobile-menu {
    border: 1px solid #ef3e42;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .search-mobile-menu {
    border: 1px solid #ef3e42;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    display: block;
  }
}
#header .search-mobile-menu input {
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  color: #000000;
}
#header .search-mobile-menu ::-moz-placeholder {
  color: #000000;
}
#header .search-mobile-menu ::placeholder {
  color: #000000;
}
#header .search-mobile-menu form {
  display: flex;
  align-items: center;
  padding-right: 15px;
  height: 44px;
  cursor: pointer;
}
#header .search-mobile-menu form i {
  -webkit-text-stroke: 1px #fff;
}
#header .search {
  flex: 0 0 21.166667%;
  max-width: 16.666667%;
  border-radius: 8px;
  border: 1px solid #ef3e42;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .search {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .search {
    display: none;
  }
}
#header .search input {
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  color: #000000;
}
#header .search ::-moz-placeholder {
  color: #000000;
}
#header .search ::placeholder {
  color: #000000;
}
#header .search form {
  display: flex;
  align-items: center;
  padding-right: 15px;
  height: 44px;
  cursor: pointer;
}
#header .search form i {
  -webkit-text-stroke: 1px #fff;
}
#header .mega-menu {
  background: #fff;
  display: none;
  opacity: 0;
  transition: visibility 0.5s linear;
  position: absolute;
  left: 0;
  width: 800px;
  z-index: 999;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}
#header .mega-menu h3 {
  color: #ef3e42;
  padding: 0px 25px;
}
#header .menu-list li:nth-child(4) .mega-menu {
  width: 400px;
}
#header .mega-menu .container {
  display: flex;
}
#header .mega-menu .item {
  flex-grow: 1;
  margin: 0 10px;
}
#header .mega-menu .item img {
  width: 100%;
}
#header .mega-menu a {
  color: #969696;
  display: block;
  padding: 10px 0;
}
#header .mega-menu a:hover {
  color: #ef3e42;
}
#header .meganmenu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0px;
}
#header .meganmenu-list li {
  padding: 15px;
}
#header .meganmenu-list li img {
  width: auto;
}
#header .meganmenu-list li a {
  position: relative;
}
#header .layer {
  position: absolute;
  width: 100%;
  bottom: 0%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  /* padding-left: 20px; */
  font-size: 12px;
  text-align: center;
  color: #000;
  height: 40px;
  display: flex;
  align-items: c;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .layer {
    top: 308%;
  }
}
#header .dropdown {
  position: relative;
}
#header .dropdown:hover .mega-menu {
  display: block;
  opacity: 1;
}
#header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#header i {
  color: #ef3e42;
}
#header .on-scroll {
  display: none;
  animation-name: stickySlideDown;
  animation-duration: 0.5s;
  transition: 0.5s;
}
#header .on-scroll .logo {
  margin-left: 45px;
}
#header .on-scroll form {
  display: flex;
  align-items: center;
}
#header .on-scroll .mobile-sidebar {
  display: none;
}
#header .on-scroll .onScroll-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#header .on-scroll .menu-list li {
  padding: 10px 15px;
}
#header .on-scroll .sidebarIconToggle {
  top: 25px;
}
#header .on-scroll .quick-links {
  width: -moz-max-content;
  width: max-content;
  padding: 0px 7px;
}
#header .on-scroll .padding-lr {
  padding: 0rem 0.4rem;
}
#header .on-scroll .menu-list li a {
  font-size: 12px;
  position: relative;
}
#header .on-scroll .user-icon,
#header .on-scroll .cart-link {
  background-color: transparent;
}
#header .on-scroll .col-sm-8 {
  max-width: 63%;
  margin-left: -3rem;
  padding-right: 0px;
  padding-left: 20px;
}
#header .on-scroll .col-sm-2 {
  max-width: 24%;
}
#header .on-scroll .login-section .cart-icon span {
  margin-left: 2px;
}
#header .on-scroll .search-me {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
#header .on-scroll .search-input {
  position: initial !important;
  right: 13%;
  width: 115%;
  border: none;
  border-bottom: 1px solid #fff;
  background: #ef3e42;
  height: auto !important;
  margin-right: -2px;
  border-radius: 0px;
  color: #fff;
  padding-left: 20px;
}
#header .on-scroll .search-input::-moz-placeholder {
  color: #fff;
}
#header .on-scroll .search-input::placeholder {
  color: #fff;
}
#header .on-scroll .tooltip:hover:after {
  display: flex;
  justify-content: center;
  background: #ef3e42;
  border-radius: 8px;
  color: #fff;
  content: attr(title);
  margin: 0px auto 0;
  font-size: 12px;
  padding: 5px 10px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  height: auto;
}
#header .on-scroll input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  font-family: inherit;
  font-size: 100%;
}
#header .on-scroll input::-webkit-search-decoration,
#header .on-scroll input::-webkit-search-cancel-button {
  display: none;
}
#header .on-scroll input[type=search] {
  padding: 9px 10px 9px 32px;
  width: 55px;
  position: absolute !important;
  top: 0;
  right: -26px;
  background: transparent;
  transition: all 0.5s;
}
#header .on-scroll .fa-search {
  -webkit-text-stroke: 1px #fff;
  font-size: 20px;
  color: #ef3e42;
}
#header .on-scroll input[type=search]:focus {
  width: 150px !important;
  background-color: #fff;
  border-color: #ef3e42;
  /*
  			-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
  			-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
  			box-shadow: 0 0 5px rgba(109,207,246,.5);
  */
}
#header .on-scroll input[type=search]:focus + span::after {
  content: "\f002";
  font-family: fontAwesome;
}
#header .on-scroll input[type=search] + span {
  z-index: 999;
  position: absolute;
  left: 45%;
  top: 17%;
  -webkit-text-stroke: 1px #fff;
  color: #ef3e42;
}
#header .on-scroll input:-moz-placeholder {
  color: #999;
}
#header .on-scroll input::-webkit-input-placeholder {
  color: #999;
}
#header .on-scroll input[type=search] {
  width: 15px;
  padding-left: 10px;
  color: transparent;
  cursor: pointer;
}
#header .on-scroll input[type=search]:hover {
  background-color: #fff;
}
#header .on-scroll input[type=search]:focus {
  width: 130px;
  padding-left: 45px;
  color: #000;
  background-color: #fff;
  cursor: auto;
}
#header .on-scroll input:-moz-placeholder {
  color: transparent;
}
#header .on-scroll input::-webkit-input-placeholder {
  color: transparent;
}
#header .mobile-side li {
  /*
  			    display: flex;
      align-items: center;
      justify-content: space-between;
  */
}
#header .mobile-side li ul {
  overflow-y: scroll;
  height: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .mobile-side li ul {
    height: 400px;
  }
}
#header .mobile-side li .inside-drop3 {
  height: auto;
}
#header .mobile-sidebar {
  /* Display Dropdown when clicked on Parent Lable */
  /* Stylinf the toggle lable */
}
#header .mobile-sidebar .toggle,
#header .mobile-sidebar [id^=drop] {
  display: none;
  transition: 0.5s ease-out;
}
#header .mobile-sidebar [id^=drop]:checked + ul {
  display: block;
  transition: 0.5s ease-in;
}
#header .mobile-sidebar .toggle + a,
#header .mobile-sidebar .menu {
  display: none;
  transition: 0.5s ease-out;
}
#header .mobile-sidebar .toggle {
  display: block;
  color: #ef3e42;
  font-size: 14px;
  text-decoration: none;
  border: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .mobile-sidebar .toggle {
    font-size: 13px;
    margin-bottom: 0px;
  }
}
#header .mobile-sidebar .sidebarMenuInner ul {
  display: none;
}
#header .mobile-sidebar .sidebarMenuInner ul li {
  border: none;
}
#header .mobile-sidebar .sidebarMenuInner ul li a {
  color: #000000;
  font-size: 11px;
}
#header .mobile-sidebar i {
  float: right;
  transform: rotate(0deg);
  transition: all 0.75s 0.25s;
}
#header .mobile-sidebar i.active {
  transform: rotate(180deg);
}
#header .mobile-sidebar .sidebarMenuInner {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .col-sm-1 {
    margin-right: 6%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .tab {
    display: none !important;
  }
}
#header .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  margin-top: 0px;
}
#header .catalogue_modal {
  background: #fff;
  height: 1px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease 0.5s, height 0.5s ease;
  width: 0;
}
#header .catalogue_modal .gform_description {
  color: #ef3e42;
  font-size: 20px;
  font-family: "Montserrat-Semibold";
  margin-top: 0rem;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 3rem;
}
#header .catalogue_modal .gform_wrapper .gform_heading {
  margin-bottom: 0px;
}
#header .catalogue_content {
  color: transparent;
  font-size: 2em;
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translate3d(0, -50%, 0);
  transition: color 0.5s ease;
  width: 100%;
}
#header .catalogue_content .ginput_container_checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#header .catalogue_content .ginput_container_checkbox label {
  position: relative;
  display: flex;
  align-items: center;
}
#header .catalogue_content .ginput_container_checkbox input[type=checkbox] {
  display: none;
}
#header .catalogue_content .ginput_container_checkbox input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .catalogue_content .ginput_container_checkbox input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #header .catalogue_content .ginput_container_checkbox input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #header .catalogue_content .ginput_container_checkbox input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
#header label[for=download_cat] {
  display: contents;
  cursor: pointer;
}
#header #download_cat:checked {
  height: 40px;
  opacity: 1;
  position: fixed;
  right: 20%;
  top: 20%;
  z-index: 1;
  -webkit-appearance: none;
  width: 40px;
  display: block;
  z-index: 1000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header #download_cat:checked {
    right: 3%;
    top: 11%;
  }
}
#header #download_cat:checked::after,
#header #download_cat:checked:before {
  border-top: 1px solid #000;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 100%;
}
#header #download_cat:checked::after {
  transform: rotate(-45deg);
}
#header #download_cat:checked + label {
  color: #fff;
  transition: color 0.5s ease;
}
#header #download_cat:checked ~ .catalogue_modal {
  height: 80%;
  width: 70%;
  overflow-y: auto;
  transition: width 0.5s ease, height 0.5s ease 0.5s;
  z-index: 999;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header #download_cat:checked ~ .catalogue_modal {
    height: 100%;
    width: 100%;
  }
}
#header #download_cat:checked ~ .catalogue_modal .catalogue_content {
  color: #fff;
  transition: color 0.5s ease 0.5s;
}
#header label[for=download_cat_scroll] {
  display: contents;
  cursor: pointer;
}
#header #download_cat_scroll:checked {
  height: 40px;
  opacity: 1;
  position: fixed;
  right: 20%;
  top: 20%;
  z-index: 1;
  -webkit-appearance: none;
  width: 40px;
  display: block;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header #download_cat_scroll:checked {
    right: 3%;
    top: 11%;
  }
}
#header #download_cat_scroll:checked::after,
#header #download_cat_scroll:checked:before {
  border-top: 1px solid #000;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 100%;
}
#header #download_cat_scroll:checked::after {
  transform: rotate(-45deg);
}
#header #download_cat_scroll:checked + label {
  color: #fff;
  transition: color 0.5s ease;
}
#header #download_cat_scroll:checked ~ .catalogue_modal {
  height: 70%;
  width: 70%;
  overflow-y: scroll;
  transition: width 0.5s ease, height 0.5s ease 0.5s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header #download_cat_scroll:checked ~ .catalogue_modal {
    height: 100%;
    width: 100%;
  }
}
#header #download_cat_scroll:checked ~ .catalogue_modal .catalogue_content {
  color: #fff;
  transition: color 0.5s ease 0.5s;
}
#header .gchoice_select_all,
#header .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label,
#header .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label {
  font-weight: 100;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #header .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #header .gform_wrapper {
    padding: 0px 15px;
  }
}
#header .gform_wrapper .gfield_checkbox li input:checked + label:after {
  top: 5px;
  left: 11px;
}
#header .gform_wrapper input {
  font-size: 14px;
}
#header .gform_wrapper .gform_footer input[type=submit] {
  height: 44px;
  opacity: 1;
  width: auto;
  display: initial;
  font-size: 14px;
}
#header .gform_wrapper textarea.medium {
  height: 90px;
}
#header .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description,
#header .gform_wrapper .field_description_below .gfield_description {
  font-size: 12px;
}
#header .gform_wrapper label {
  color: #000;
  font-size: 13px;
}
#header .gform_wrapper .gfield_checkbox li {
  display: flex;
  align-items: center;
}
#header .gform_wrapper form .gform_body {
  width: 60%;
  margin: auto;
  padding: 20px;
}
#header .gform_wrapper form .gform_body ul .gfield_label {
  font-size: 12px;
  color: #969696;
  position: initial;
  display: initial;
}
#header .gform_wrapper form .gform_body ul input,
#header .gform_wrapper form .gform_body ul select {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  padding-bottom: 10px;
  -webkit-appearance: none;
  cursor: auto;
  height: auto;
  opacity: 1;
  width: 100%;
  display: block;
}
#header .gform_wrapper form .gform_body ul .ginput_container_select {
  position: relative;
}
#header .gform_wrapper form .gform_body ul .ginput_container_select::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  color: #ef3e42;
  font-size: 20px;
}
#header .gform_wrapper form .gform_body ul input:focus,
#header .gform_wrapper form .gform_body ul select:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid #ef3e42;
  transition: 0.5s ease-in-out;
}
#header .gform_wrapper form .gform_body ul ::-moz-placeholder {
  font-size: 14px;
  color: #000000;
}
#header .gform_wrapper form .gform_body ul ::placeholder {
  font-size: 14px;
  color: #000000;
}
#header .gform_wrapper form .gform_body ul textarea:focus {
  border: 1px solid #ef3e42;
  outline: none;
}
#header .gform_wrapper form .gform_body ul li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: none;
  border-bottom: 1px solid #790000;
}
#header .gform_wrapper form .gform_footer {
  margin: auto;
  text-align: center;
}
#header .gform_wrapper form .validation_error {
  display: none;
}

@keyframes stickySlideDown {
  0% {
    opacity: 0.7;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.overlayMenu {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 5;
  width: 100%;
  height: 100%;
  display: none;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
}

#download_cat:checked ~ #main #overlay {
  display: block;
}

/******************* Footer **********************/
#footer #footer-menu {
  background-color: #fcf6dc;
  padding: 2rem 0rem;
}
#footer #footer-menu .container {
  max-width: 1400px;
}
#footer #footer-menu .footer-information {
  display: grid;
  grid-gap: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-menu .footer-information {
    padding: 20px 0px;
    border-bottom: 1px solid #e4e0e0;
    display: block;
  }
}
#footer #footer-menu .footer-information p {
  width: 200px;
  margin-top: 10px;
  font-size: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #footer #footer-menu .footer-information p {
    width: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #footer #footer-menu .footer-information p {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #footer #footer-menu .footer-information p {
    width: auto;
    font-size: 11px;
  }
}
#footer #footer-menu .footer-information a {
  font-size: 14px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #footer #footer-menu .footer-information a {
    font-size: 11px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #footer #footer-menu .footer-information a {
    font-size: 11px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-menu .footer-information a {
    display: inline-block;
  }
}
#footer #footer-menu .footer-information a::after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
#footer #footer-menu .footer-information a:hover::after {
  width: 50%;
}
#footer #footer-menu .col-sm-2 {
  margin: 0px 10px;
  border-right: 1px solid #e4e0e0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-menu .col-sm-2 {
    border-right: 0px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #footer #footer-menu .col-sm-2 {
    padding: 5px;
  }
}
#footer #footer-menu .col-sm-2:last-child {
  border-right: 0px;
}
#footer #footer-links {
  margin-top: 15px;
}
#footer #footer-links .container {
  max-width: 1250px;
}
#footer #footer-links h5 {
  margin-bottom: 0rem;
  padding-bottom: 15px;
  border-bottom: 1px solid #969696;
  font-family: "Montserrat-Semibold";
  position: relative;
}
#footer #footer-links h5 .expand-icon {
  display: none;
  position: absolute;
  right: 10px;
  top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-links h5 .expand-icon {
    display: block;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-links h5 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #footer #footer-links h5 {
    font-size: 12px;
  }
}
#footer #footer-links .social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: space-around;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-links .social-icons {
    justify-content: normal;
  }
}
#footer #footer-links .social-icons i {
  color: #ef3e42;
  font-size: 25px;
  margin-right: 0px !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-links .social-icons i {
    margin-right: 20px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #footer #footer-links .social-icons i {
    font-size: 20px;
    margin-right: 11px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #footer #footer-links .social-icons i {
    font-size: 15px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-links .footer-wrapper {
    margin-top: 20px;
  }
}
#footer #footer-links .footer-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-links .footer-wrapper ul.menu-item-wrapper {
    display: none;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #footer-links .footer-wrapper ul.show-menu {
    display: block;
  }
}
#footer #footer-links .footer-wrapper ul li {
  padding-top: 15px;
}
#footer #footer-links .footer-wrapper ul li a {
  font-size: 14px;
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #footer #footer-links .footer-wrapper ul li a {
    font-size: 11px;
  }
}
#footer #copyright .copyright-content {
  margin: auto;
}
#footer #copyright .copyright-content h6 {
  font-family: "Montserrat";
  color: #ffffff;
  margin: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #footer #copyright .copyright-content h6 {
    text-align: center;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #footer #copyright .copyright-content h6 {
    font-size: 10px;
  }
}
#footer #copyright .copyright-row {
  background-color: #000000;
  margin-top: 1rem;
}

/************ Lacasa Virtual Tour ****************/
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-mobile-tour .lacasa-mobile-img {
    margin-top: -3rem;
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #lacasa-mobile-tour .lacasa-mobile-img {
    width: 100%;
  }
}
#lacasa-mobile-tour .lacasa-mobile-img img {
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-mobile-tour p {
    font-size: 14px;
  }
}

#lacasaTour {
  background-size: contain;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #lacasaTour {
    background-size: 100% 100%;
  }
}
#lacasaTour .page-content-wrapper {
  padding: 3.1rem 0rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #lacasaTour .page-content-wrapper {
    padding: 1rem 0rem;
  }
}

/************ Bathroom Planner ****************/
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .page-content-wrapper {
    padding-bottom: 0rem;
  }
}
#bathroomPlanner .page-content-wrapper p {
  color: #ffffff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .page-content-wrapper p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroomPlanner .page-content-wrapper p {
    margin: auto;
    margin-top: 20px;
    font-size: 14px;
  }
}
#bathroomPlanner .page-content-wrapper h2 {
  color: #ffffff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .page-content-wrapper h2 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroomPlanner .page-content-wrapper h2 {
    margin: auto;
    margin-top: 20px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroomPlanner .page-content-wrapper a {
    margin: auto;
    margin-top: 20px;
  }
}
#bathroomPlanner .planner-row {
  align-items: center;
}
#bathroomPlanner .row { /* IE10 */
  display: flex; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}
#bathroomPlanner figure { /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 10px;
}
#bathroomPlanner figure img {
  margin-top: 20px;
  vertical-align: middle;
}
#bathroomPlanner figure:nth-child(2) {
  margin-top: 3rem;
}
@media screen and (max-width: 800px) {
  #bathroomPlanner figure {
    flex: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  #bathroomPlanner figure {
    flex: 100%;
    max-width: 100%;
  }
}
#bathroomPlanner .image-gallery {
  justify-content: flex-end;
}
#bathroomPlanner .image-gallery-mobile {
  display: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .image-gallery-mobile {
    display: flex;
    justify-content: center;
  }
}
#bathroomPlanner .image-gallery-mobile figure {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}
#bathroomPlanner .image-gallery-mobile figure .image-bundle {
  margin: 7.5px;
}
#bathroomPlanner .image-gallery-mobile figure .image-bundle img {
  margin-top: 15px;
  width: 100%;
}
#bathroomPlanner .slideshow {
  width: 200px;
  margin: 0 auto;
  overflow: hidden;
  margin: 2rem 8px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .slideshow {
    width: 130px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #bathroomPlanner .slideshow:nth-child(3) {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #bathroomPlanner .slideshow:nth-child(3) {
    display: none;
  }
}
#bathroomPlanner .slideshow:nth-child(2) {
  margin-top: 4rem;
}
#bathroomPlanner .image-container {
  width: 1200px;
  position: relative;
  animation: slide 15s ease-in-out infinite;
}
#bathroomPlanner .image-container .small-image {
  width: 200px;
  height: 193px;
  margin: 5px 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .image-container .small-image {
    width: 122px;
    height: 117px;
  }
}
#bathroomPlanner .image-container .large-image {
  width: 200px;
  height: 330px;
  margin: 5px 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .image-container .large-image {
    width: 122px;
    height: 202px;
  }
}
@keyframes slide {
  0% {
    left: 0;
  }
  25% {
    left: -210px;
  }
  50% {
    left: -420px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  @keyframes slide {
    0% {
      left: 0;
    }
    25% {
      left: -140px;
    }
    50% {
      left: -280px;
    }
  }
}

/************ Product Finder ****************/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder {
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder {
    padding-bottom: 2rem;
  }
}
#product-finder .pf-image-wrapper img {
  margin: 0px 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder .pf-image-wrapper img {
    margin: 0px 5px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #product-finder .pf-image-wrapper img {
    margin-top: 20px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder .pf-image-wrapper {
    text-align: center;
  }
}
#product-finder p {
  width: 430px;
  margin-top: 0px;
  margin-bottom: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder p {
    width: auto;
    font-size: 14px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder p {
    width: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder p {
    width: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #product-finder p {
    margin: auto;
    text-align: center;
    margin-top: 20px;
  }
}
#product-finder a {
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder a {
    margin: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder a {
    margin: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #product-finder a {
    margin: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder .finder-row {
    display: block;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder .finder-row {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder .col-sm-5 {
    margin: auto;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder .col-sm-5 {
    margin: auto;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder .col-sm-7 {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder .col-sm-7 {
    max-width: 100%;
  }
}

/************ Trending Product ****************/
#trending-product .page-content-wrapper {
  padding: 2rem 0rem;
}
#trending-product .heading {
  margin: auto;
}
#trending-product .heading h2 {
  color: #fff;
  font-family: "Montserrat";
}
#trending-product .swiper-slide {
  background: transparent;
  height: 100%;
}
#trending-product .swiper-button-next {
  right: -35px !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-button-next {
    right: 5px !important;
  }
}
@media (max-width: 360px) {
  #trending-product .swiper-button-next {
    right: 0px !important;
  }
}
#trending-product .swiper-button-prev {
  left: -40px !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-button-prev {
    left: 5px !important;
  }
}
@media (max-width: 360px) {
  #trending-product .swiper-button-prev {
    left: 0px !important;
  }
}
#trending-product .swiper-container {
  position: initial;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-container {
    position: relative;
  }
}
#trending-product .swiper-button-next,
#trending-product .swiper-button-prev {
  top: 50% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-button-next,
  #trending-product .swiper-button-prev {
    top: 42% !important;
  }
}
#trending-product .swiper-wrapper {
  margin-bottom: 3rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-wrapper {
    margin-bottom: 0rem;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .product-details {
    padding-bottom: 40px;
  }
}
#trending-product .product-details h5 {
  margin: 0px;
  color: #fff;
  margin-top: 15px;
}
#trending-product .product-details h4 {
  margin: 10px auto;
  color: #fff;
  font-family: "Montserrat";
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .product-details h4 {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #trending-product .product-details h4 {
    margin: 10px auto;
  }
}
#trending-product .product-details span {
  color: #fff;
  font-size: 14px;
}
#trending-product .product-details span i {
  margin-right: 5px;
}
#trending-product .trending-product-wrapper img {
  padding: 30px;
  padding-bottom: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .trending-product-wrapper img {
    padding: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #trending-product .trending-product-wrapper img {
    padding: 7rem;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .trending-product-wrapper iframe {
    width: 320px;
  }
}
#trending-product .swiper-slide:first-child {
  margin-left: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-slide:first-child {
    margin-left: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-slide-active,
  #trending-product .swiper-slide-next,
  #trending-product .swiper-slide-next + .swiper-slide {
    border-right: none;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-slide-active,
  #trending-product .swiper-slide-next,
  #trending-product .swiper-slide-next + .swiper-slide {
    border-right: none;
  }
}
#trending-product .divider {
  margin-left: 5px;
  margin-right: 5px;
  height: 250px;
  width: 1px;
  background-color: #ef3e42;
  opacity: 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .divider {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #trending-product .divider {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #trending-product .divider {
    display: none;
  }
}
#trending-product .swiper-slide-active .divider,
#trending-product .swiper-slide-next .divider,
#trending-product .swiper-slide-next + .swiper-slide .divider {
  opacity: 1;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #trending-product .swiper-slide-active .divider,
  #trending-product .swiper-slide-next .divider,
  #trending-product .swiper-slide-next + .swiper-slide .divider {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #trending-product .swiper-button-next {
    right: 9% !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #trending-product .swiper-button-next {
    right: 15%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #trending-product .swiper-button-prev {
    left: 9%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #trending-product .swiper-button-prev {
    left: 18%;
  }
}

/************ Banner ****************/
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner {
    /*min-height: 230px;*/
    min-height: 200px !important;
  }
}
#banner .container-fluid {
  max-width: 1440px;
}
#banner video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .banner-swiper .swiper-slide:first-child h4, #banner .banner-swiper .swiper-slide:first-child h1, #banner .banner-swiper .swiper-slide:first-child a {
  visibility: hidden;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .banner-swiper .swiper-slide:first-child h4, #banner .banner-swiper .swiper-slide:first-child h1, #banner .banner-swiper .swiper-slide:first-child a {
    display: none;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .swiper-wrapper {
    padding-bottom: 0px;
  }
}
#banner .swiper-wrapper .swiper-slide:first-child a {
  opacity: 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .swiper-wrapper .swiper-slide:first-child a {
    display: none;
  }
}
#banner .banner-slider {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .banner-slider {
    width: 100%;
  }
}
#banner .banner-slider img {
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .banner-slider img {
    width: 100%;
  }
}
#banner .banner-slider .banner-content {
  position: absolute;
  top: 0;
  right: 10%;
  text-align: left;
  color: #000000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .banner-slider .banner-content {
    position: initial;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #banner .banner-slider .banner-content {
    right: 28%;
    padding-top: 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #banner .banner-slider .banner-content {
    right: 23%;
  }
}
#banner .banner-slider .banner-content h4 {
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .banner-slider .banner-content h4 {
    color: #ef3e42;
    margin-bottom: 0px;
    padding: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #banner .banner-slider .banner-content h4 {
    font-size: 11px;
  }
}
#banner .banner-slider .banner-content h1 {
  width: 400px;
  line-height: 60px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .banner-slider .banner-content h1 {
    margin-top: 0px;
    width: 100%;
    font-size: 18px;
    line-height: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #banner .banner-slider .banner-content h1 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #banner .banner-slider .banner-content h1 {
    font-size: 20px;
  }
}
#banner .banner-slider .banner-content span {
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .banner-slider .banner-content .button {
    margin: 30px;
    margin-top: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .banner-slider .page-content-wrapper {
    padding: 0rem;
    /*margin-top: -10px;*/
  }
}
#banner .swiper-pagination {
  width: auto;
  top: 60.4%;
  right: 30.2%;
  text-align: right;
  position: initial;
  z-index: 1000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .swiper-pagination {
    width: auto;
    top: 38%;
    right: 42%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #banner .swiper-pagination {
    top: 36%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #banner .swiper-pagination {
    left: 0%;
    text-align: center;
    top: 48%;
  }
}
#banner .swiper-home-button-next {
  background-image: url("../images/right_arrow-banner.png");
  top: 64%;
  right: 27%;
  background-size: contain;
  width: 34px;
  height: 34px;
  position: initial;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .swiper-home-button-next {
    top: 44%;
    right: 30%;
    margin-top: 0px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #banner .swiper-home-button-next {
    top: 41%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #banner .swiper-home-button-next {
    right: 48%;
    top: 51%;
  }
}
#banner .swiper-home-button-prev {
  background-image: url("../images/left_arrow-banner.png");
  top: 64%;
  left: 62%;
  background-size: contain;
  width: 34px;
  height: 34px;
  position: initial;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .swiper-home-button-prev {
    top: 44%;
    left: 28%;
    margin-top: 0px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #banner .swiper-home-button-prev {
    top: 41%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #banner .swiper-home-button-prev {
    left: 20%;
    top: 51%;
  }
}
#banner .swiper-pagination-bullet {
  width: 7px;
  height: 2px;
  border-radius: 0px;
  background: #000000;
  opacity: 1;
  margin: 0px 5px;
  transition: 0.5s ease-out;
}
#banner .swiper-pagination-bullet-active {
  width: 33px;
  height: 2px;
  background: #ef3e42;
  border-radius: 0px;
  transition: 0.5s ease-in;
}
#banner .swiper-home-button-prev.swiper-button-disabled,
#banner .swiper-home-button-next.swiper-button-disabled {
  display: flex;
}
#banner .navigation-banner {
  bottom: 32%;
  display: flex;
  left: 50%;
  margin-top: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .navigation-banner {
    bottom: 60%;
    display: flex;
    left: 50%;
    justify-content: center;
    margin-top: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner video {
    width: 100%;
    height: auto;
  }
}
#banner .enquire-now {
  position: absolute;
  z-index: 998;
  right: 1%;
  bottom: 14%;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .enquire-now {
    bottom: 9%;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .enquire-now select {
    margin-top: 12px;
    padding-bottom: 10px;
  }
}
#banner .modal {
  background: #fff;
  height: 1px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease 0.5s, height 0.5s ease;
  width: 0;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
  z-index: 0;
}
#banner .modal form {
  height: 600px;
  overflow-y: auto;
}
#banner .modal .gform_description {
  color: #ef3e42;
  font-size: 18px;
  font-family: "Montserrat-Semibold";
  margin-top: 6rem;
  text-align: center;
}
@media only screen and (min-width: 800px) and (max-width: 1440px) {
  #banner .modal .gform_description {
    margin-top: 3rem;
    color: #ef3e42;
    font-family: "Montserrat-Semibold";
  }
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  #banner .modal .gform_description {
    margin-top: 5rem;
  }
}
#banner .content {
  color: transparent;
  font-size: 2em;
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translate3d(0, -50%, 0);
  transition: color 0.5s ease;
  width: 100%;
  height: 800px;
}
#banner label {
  cursor: pointer;
  font-size: 2em;
  position: fixed;
  right: -4%;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: color 0.5s ease 0.5s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner label {
    right: -16%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #banner label {
    right: -7%;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner label img {
    width: 122px;
    height: 40px;
  }
}
#banner input {
  cursor: pointer;
  height: 0;
  opacity: 0;
  width: 0;
  display: block;
}
#banner input:focus {
  outline: none;
}
#banner input:checked {
  height: 40px;
  opacity: 1;
  position: fixed;
  right: 5%;
  top: 5%;
  z-index: 1;
  -webkit-appearance: none;
  width: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner input:checked {
    right: 3%;
    top: 3%;
    width: 20px;
  }
}
#banner input:checked::after,
#banner input:checked:before {
  border-top: 1px solid #000;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 100%;
}
#banner input:checked::after {
  transform: rotate(-45deg);
}
#banner input:checked + label {
  color: #fff;
  transition: color 0.5s ease;
}
#banner input:checked ~ .modal {
  height: 100%;
  width: 100%;
  transition: width 0.5s ease, height 0.5s ease 0.5s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner input:checked ~ .modal {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
  }
}
#banner input:checked ~ .modal .content {
  color: #fff;
  transition: color 0.5s ease 0.5s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #banner .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #banner .gform_wrapper {
    padding: 0px 15px;
  }
}
#banner .gform_wrapper .gform_footer input[type=submit] {
  height: 44px;
  opacity: 1;
  width: auto;
  display: initial;
  font-size: 14px;
}
#banner .gform_wrapper textarea.medium {
  height: 90px;
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .gform_wrapper textarea.medium {
    margin-top: 20px;
  }
}
#banner .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description,
#banner .gform_wrapper .field_description_below .gfield_description {
  font-size: 12px;
}
#banner .gform_wrapper form .gfield_checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  /*
  					box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
  						inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  */
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#banner .gform_wrapper form .gfield_checkbox label {
  position: relative;
  align-items: center;
  font-size: 15px;
  right: 0px;
  transform: translate(0%, 0%);
  text-transform: inherit;
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .gform_wrapper form .gfield_checkbox label {
    display: contents;
  }
}
#banner .gform_wrapper form .gfield_checkbox input[type=checkbox] {
  display: none;
}
#banner .gform_wrapper form .gfield_checkbox input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .gform_wrapper form .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #banner .gform_wrapper form .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #banner .gform_wrapper form .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}
#banner .gform_wrapper form .gform_body {
  width: 60%;
  margin: auto;
  padding: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .gform_wrapper form .gform_body {
    width: 100%;
    margin-top: 0rem;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .gform_wrapper form .gform_body ul li.gfield {
    margin-top: 0px;
  }
}
#banner .gform_wrapper form .gform_body ul li {
  height: auto;
  margin-top: 0px;
  padding-bottom: 0px;
  margin: 30px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .gform_wrapper form .gform_body ul li {
    height: auto;
  }
}
#banner .gform_wrapper form .gform_body ul .gfield_label {
  font-size: 12px;
  color: #969696;
  position: initial;
  display: initial;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #banner .gform_wrapper form .gform_body ul .gfield_label {
    font-size: 10px;
  }
}
#banner .gform_wrapper form .gform_body ul input,
#banner .gform_wrapper form .gform_body ul select {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  padding-bottom: 10px;
  -webkit-appearance: none;
  cursor: auto;
  height: auto;
  opacity: 1;
  width: 100%;
  display: block;
  font-size: 14px;
}
#banner .gform_wrapper form .gform_body ul .ginput_container_select {
  position: relative;
}
#banner .gform_wrapper form .gform_body ul .ginput_container_select::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  color: #ef3e42;
  font-size: 20px;
}
#banner .gform_wrapper form .gform_body ul input:focus,
#banner .gform_wrapper form .gform_body ul select:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid #ef3e42;
  transition: 0.5s ease-in-out;
}
#banner .gform_wrapper form .gform_body ul ::-moz-placeholder {
  font-size: 14px;
  color: #000000;
}
#banner .gform_wrapper form .gform_body ul ::placeholder {
  font-size: 14px;
  color: #000000;
}
#banner .gform_wrapper form .gform_body ul textarea:focus {
  border: 1px solid #ef3e42;
  outline: none;
}
#banner .gform_wrapper form .gform_body ul li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: none;
  border-bottom: 1px solid #790000;
}
#banner .gform_wrapper form .gform_footer {
  margin: auto;
  text-align: center;
  margin-bottom: 4rem;
}
#banner .gform_wrapper form .validation_error {
  display: none;
}

/************ Types ****************/
#types {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types {
    padding: 0rem;
    margin-top: 2rem;
    margin-bottom: 0rem;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #types {
    padding: 1rem 0rem;
  }
}
#types .page-content-wrapper {
  padding: 0rem;
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .swiper-slide {
    padding: 0rem 2rem;
  }
}
#types .swiper-button-next {
  right: -10px;
}
#types .swiper-button-prev {
  left: 0px;
}
#types .category-mobile-swiper h3 {
  text-align: left;
}
#types .category-mobile-swiper img {
  width: 100%;
}
#types .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 4em;
       column-gap: 4em;
  row-gap: 0em;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .grid {
    display: grid;
    margin: 15px;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #types .grid {
    padding: 0em 2em;
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #types .grid {
    -moz-column-gap: 2em;
         column-gap: 2em;
    padding: 0px 15px;
  }
}
#types .grid {
  counter-reset: lis;
}
#types .type-wrapper {
  counter-increment: lis;
  content: counter(lis, decimal);
  position: relative;
}
#types .type-wrapper a:hover {
  color: #000;
}
#types .type-wrapper .passive {
  width: 100%;
}
#types .type-wrapper .layer {
  position: absolute;
  width: 100%;
  bottom: 0%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding-left: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .type-wrapper .layer {
    padding-left: 0px;
  }
}
#types .type-wrapper:nth-child(3n+1) {
  margin-top: 4rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .type-wrapper:nth-child(3n+1) {
    margin-top: 15px;
  }
}
#types .type-wrapper:nth-child(3n+1) .layer {
  bottom: 0%;
}
#types .type-wrapper:nth-child(3n+2) {
  margin-top: 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .type-wrapper:nth-child(3n+2) {
    margin-top: 15px;
  }
}
#types .type-wrapper:nth-child(3n+2) .layer {
  bottom: 7%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .type-wrapper:nth-child(3n+2) .layer {
    bottom: 0%;
  }
}
#types .type-wrapper:nth-child(3n+3) {
  margin-top: 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .type-wrapper:nth-child(3n+3) {
    margin-top: 15px;
  }
}
#types .type-wrapper:nth-child(3n+3) .layer {
  bottom: 13%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .type-wrapper:nth-child(3n+3) .layer {
    bottom: 0%;
  }
}
#types h3 {
  margin: 15px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types h3 {
    font-size: 13px;
  }
}
#types h3::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
#types .type-wrapper:hover h3::after {
  width: 30%;
}
#types .heading h2 {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
#types .heading p {
  width: auto;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #types .heading p {
    font-size: 14px;
  }
}

/************ Bathroom Themes ****************/
#bathroom-themes {
  margin-bottom: 7rem;
}
#bathroom-themes .col-sm-9 {
  position: absolute;
  right: 0px;
  flex: 0 0 81%;
  max-width: 81%;
  overflow: hidden;
  display: flex;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .col-sm-9 {
    position: initial;
    max-width: 100%;
    flex: 0 0 100%;
    display: block;
    order: 1;
  }
}
#bathroom-themes .bt-slider {
  display: flex;
  align-items: center;
  justify-content: center;
}
#bathroom-themes .col-sm-4 {
  max-width: 38%;
  flex: 0 0 38%;
  z-index: 10;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .col-sm-4 {
    max-width: 100%;
    flex: 0 0 100%;
    order: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #bathroom-themes .col-sm-4 {
    max-width: 51%;
    flex: 0 0 51%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroom-themes .col-sm-4 {
    max-width: 53%;
    flex: 0 0 53%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #bathroom-themes .slider-content {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #bathroom-themes .slider-content {
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroom-themes .slider-content {
    width: 250px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroom-themes .slider-content .buttons {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroom-themes .slider-content .button-light {
    margin: auto;
  }
}
#bathroom-themes .page-content-wrapper {
  margin: auto;
  padding: 2rem 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .page-content-wrapper {
    padding: 1rem 0rem;
  }
}
#bathroom-themes .page-content-wrapper h2 {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
#bathroom-themes .page-content-wrapper p {
  width: auto;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .page-content-wrapper p {
    font-size: 14px;
  }
}
#bathroom-themes .theme-select-wrapper {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  padding: 1.6rem;
  background: #fff;
  margin-top: 1rem;
  padding-bottom: 7px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .theme-select-wrapper {
    padding: 1.5rem;
  }
}
#bathroom-themes .theme-select-wrapper .theme-dropdown label {
  font-size: 12px;
  color: #969696;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .theme-select-wrapper .theme-dropdown label {
    font-size: 10px;
  }
}
#bathroom-themes .theme-select-wrapper .theme-carousel {
  margin-bottom: 20px;
}
#bathroom-themes .theme-swiper label {
  font-size: 12px;
  color: #969696;
}
#bathroom-themes .theme-swiper h3 {
  width: 200px;
  margin: auto;
  margin-bottom: 15px;
  padding-top: 3.5rem;
}
#bathroom-themes .theme-swiper p {
  text-align: left;
  font-size: 14px;
  padding: 0px 10px;
  margin-top: 2rem;
  margin-bottom: 3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .theme-swiper p {
    text-align: center;
    font-size: 12px;
    margin: 2rem 0rem;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroom-themes .theme-swiper p {
    text-align: center;
    font-size: 12px;
    margin: 2rem 0rem;
  }
}
#bathroom-themes .theme-swiper .buttons {
  justify-content: space-between;
}
#bathroom-themes .theme-swiper .buttons a {
  font-size: 12px;
  font-family: "Montserrat-Regular";
}
#bathroom-themes .theme-swiper .buttons a:first-child {
  color: #fff;
}
#bathroom-themes .theme-swiper .buttons a:last-child {
  color: #000000;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #bathroom-themes .theme-swiper .buttons a:last-child {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #bathroom-themes .theme-swiper .buttons a:last-child {
    margin-left: 10px;
  }
}
#bathroom-themes .theme-swiper .swiper-pagination {
  font-size: 12px;
  top: 0;
  padding: 1rem 0rem;
  bottom: auto;
  left: 43%;
  width: auto;
  padding: 3px 15px;
  background-color: #f4f4f4;
  margin-top: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #bathroom-themes .swiper-wrapper {
    height: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #bathroom-themes .swiper-wrapper {
    height: auto;
  }
}
#bathroom-themes .swiper-button-next {
  background-image: url("../images/theme-right.svg");
  background-repeat: no-repeat;
  right: 10%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .swiper-button-next {
    right: 0;
  }
}
#bathroom-themes .swiper-button-prev {
  background-image: url("../images/theme-left.svg");
  background-repeat: no-repeat;
  left: 10%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .swiper-button-prev {
    left: 0;
  }
}
#bathroom-themes .swiper-button-next,
#bathroom-themes .swiper-button-prev {
  top: 21%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .swiper-button-next,
  #bathroom-themes .swiper-button-prev {
    top: 18%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #bathroom-themes .swiper-button-next,
  #bathroom-themes .swiper-button-prev {
    top: 11%;
  }
}
#bathroom-themes .lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: 0.5s ease-in;
  cursor: pointer;
}
#bathroom-themes .lg-hotspot:hover .lg-hotspot__button, #bathroom-themes .lg-hotspot:active .lg-hotspot__button {
  border-color: #11174c;
  transition: 0.5s ease-in;
}
#bathroom-themes .lg-hotspot:hover .lg-hotspot__button:after, #bathroom-themes .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #11174c;
  transition: 0.5s ease-out;
}
#bathroom-themes .lg-hotspot--selected {
  z-index: 999;
}
#bathroom-themes .lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
#bathroom-themes .lg-hotspot__button {
  height: 34px;
  width: 34px;
  padding: 0px;
  border-radius: 100%;
  border: 1px solid #ef3e42;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
}
#bathroom-themes .lg-hotspot__button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  border: 3px solid white;
  background-color: #ef3e42;
  transition: border-color 1s linear;
}
#bathroom-themes .lg-hotspot__label {
  position: absolute;
  padding: 0 0 1.1em 0;
  width: 16em;
  max-width: 50vw;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: "Open Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.45em;
  z-index: -1;
  pointer-events: none;
  border-radius: 2px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  transition: all 0.1s linear;
}
#bathroom-themes .lg-hotspot__label h4 {
  margin: 0;
  padding: 0.65em 24px;
  background-color: #555;
  font-size: 1.1em;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: white;
  border-radius: 2px 2px 0 0;
}
#bathroom-themes .lg-hotspot__label p {
  margin: 0;
  padding: 1.1em 24px 0 24px;
  color: #333;
}
#bathroom-themes .lg-hotspot--top-left {
  top: 20%;
  left: 43%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .lg-hotspot--top-left {
    top: 7%;
  }
}
#bathroom-themes .lg-hotspot--top-right {
  top: 40%;
  left: 60%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroom-themes .lg-hotspot--top-right {
    top: 13%;
  }
}
#bathroom-themes .lg-hotspot--top-left .lg-hotspot__label {
  top: 24px;
  left: 24px;
}
#bathroom-themes .lg-hotspot--top-right .lg-hotspot__label {
  top: 24px;
  right: 24px;
}
#bathroom-themes .lg-hotspot--bottom-right .lg-hotspot__label {
  right: 24px;
  bottom: 24px;
}
#bathroom-themes .lg-hotspot--bottom-left .lg-hotspot__label {
  bottom: 24px;
  left: 24px;
}
@keyframes button-pulse {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  40% {
    transform: scale(1.15, 1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
#bathroom-themes .image-slider {
  display: none;
}

/************* FAQ ********************/
#faq .banner {
  width: 100%;
  position: relative;
}
#faq .banner img {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #faq .banner img {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #faq .banner img {
    height: 300px;
  }
}
#faq .faq-content {
  width: -moz-min-content;
  width: min-content;
  position: absolute;
  top: 7%;
  left: 50%;
  margin-left: -140px;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #faq .faq-content {
    position: absolute;
    top: 16%;
    left: 50%;
    margin-left: -75px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #faq .faq-content {
    top: 10%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #faq .faq-content {
    top: 14%;
  }
}
#faq .faq-content h1 {
  text-transform: uppercase;
  color: #fff;
  font-family: "Montserrat-Semibold";
}

/************* Feedback ***************/
#feedback .banner {
  width: 100%;
  position: relative;
}
#feedback .banner img {
  width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .banner img {
    height: auto;
    min-height: auto !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #feedback .banner img {
    height: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #feedback .banner img {
    height: auto;
  }
}
#feedback .faq-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transform: translateX(0%) !important;
  /*
  		top: 32%;
  		left: 50%;
  		margin-left: -140px;
  		text-align: center;
  */
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .faq-content {
    /*
    			position: absolute;
    			top: 8%;
    			left: 50%;
    			margin-left: -75px;
    			text-align: center;
    */
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #feedback .faq-content {
    top: 13%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #feedback .faq-content {
    top: 20%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #feedback .faq-content {
    top: 5%;
  }
}
#feedback .faq-content h1 {
  text-transform: uppercase;
  color: #fff;
  font-family: "Montserrat-Semibold";
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
}
#feedback .feedback-title-new p {
  line-height: 30px;
  font-size: 14px;
  width: 700px;
  margin: 30px auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .feedback-title-new p {
    width: auto;
  }
}
#feedback .feedback-title {
  text-align: center;
  width: 800px;
  padding: 15px 0px;
  margin: auto;
  font-size: 14px;
  line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .feedback-title {
    padding: 15px;
    width: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #feedback .feedback-title {
    padding: 15px;
    width: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #feedback .feedback-title {
    padding: 15px;
    width: auto;
  }
}
#feedback input[type=submit] {
  padding: 0px 50px;
  cursor: pointer;
  pointer-events: auto;
  text-align: center;
  display: block;
  margin: auto;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #feedback .gform_body {
    padding: 20px;
  }
}
#feedback .gform_wrapper {
  margin: auto;
  margin-bottom: 20px;
}
#feedback .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
  margin-top: 0px;
  color: #969696;
  margin-left: 0px;
  padding-left: 0px;
}
#feedback .gform_wrapper .top_label li.gfield.gf_right_half {
  padding-right: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .gform_wrapper form .gform_body ul input,
  #feedback .gform_wrapper form .gform_body ul select {
    font-size: 12px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback ::-moz-placeholder {
    font-size: 12px;
  }
  #feedback ::placeholder {
    font-size: 12px;
  }
}
#feedback .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half,
#feedback .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {
  padding-right: 0;
  margin-top: 2px;
}
#feedback .gform_confirmation_wrapper {
  margin: auto;
}
#feedback .gform_confirmation_wrapper .gform_confirmation_message {
  position: initial;
  margin-left: 0px;
  text-align: center;
  margin: 50px 0px;
  font-size: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 17px;
  }
}
#feedback form .gfield_checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#feedback form .gfield_checkbox label {
  position: relative;
  align-items: center;
  font-size: 15px;
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback form .gfield_checkbox label {
    display: contents;
  }
}
#feedback form .gfield_checkbox label a {
  font-family: "Montserrat-Semibold";
}
#feedback form .gfield_checkbox input[type=checkbox] {
  display: none;
}
#feedback form .gfield_checkbox input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback form .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #feedback form .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #feedback form .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}

/*********** About US ****************/
#about-us .tabs-wrapper {
  margin-bottom: 2rem;
  position: sticky;
  top: 14%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us .tabs-wrapper {
    top: 6%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us .tabs-wrapper {
    top: 11%;
  }
}
#about-us .tabs-wrapper .tabs-heading h2 {
  font-family: "Montserrat";
  margin-top: 0px;
  border-bottom: 2px solid #ef3e42;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us .tabs-wrapper .tabs-heading h2 {
    font-size: 30px;
  }
}
#about-us .tabs-wrapper .tabs-section ul a {
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 10px;
}
#about-us .sub-title {
  padding: 15px 15px 15px 0px;
}
#about-us .sub-title::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us .sub-title {
    font-size: 20px;
  }
}
#about-us #history .timeline-block-left .ac-label:after {
  right: 60%;
  top: 22%;
  border-radius: 10px;
  padding: 0px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-left .ac-label:after {
    right: -16%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .timeline-block-left .ac-label:after {
    right: 10%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #history .timeline-block-left .ac-label:after {
    right: 72%;
  }
}
@media only screen and (min-width: 375px) and (max-width: 820px) and (orientation: landscape) {
  #about-us #history .timeline-block-left .ac-label:after {
    right: 95%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 800px) and (orientation: landscape) {
  #about-us #history .timeline-block-left .ac-label:after {
    right: 0%;
  }
}
#about-us #history .timeline-block-left .ac-sub {
  text-align: right;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-left .ac-sub {
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .timeline-block-left .ac-sub {
    text-align: center;
  }
}
#about-us #history .timeline-block-left .ac-sub p {
  text-align: right;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-left .ac-sub p {
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .timeline-block-left .ac-sub p {
    text-align: center;
  }
}
#about-us #history .timeline-block-left .ac-sub article {
  padding-right: 0px;
}
#about-us #history .timeline-block-left .ac-sub h6 {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
  color: #000000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-left .ac-sub h6 {
    margin-top: 10px;
  }
}
#about-us #history .timeline-block-left .ac-text {
  border-right: 1px solid #d8d8d8;
  margin-top: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-left .ac-text {
    border-right: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .timeline-block-left .ac-text {
    border-right: 0px;
  }
}
#about-us #history .timeline-block-left article {
  padding-right: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-left article {
    font-size: 11px;
  }
}
#about-us #history .timeline-block-left h4 {
  background: #919191;
}
#about-us #history .timeline-block-right .ac-label:after {
  right: 28%;
  top: 22%;
  border-radius: 10px;
  padding: 0px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-right .ac-label:after {
    right: -16%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .timeline-block-right .ac-label:after {
    right: 10%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #history .timeline-block-right .ac-label:after {
    right: 15%;
  }
}
@media only screen and (min-width: 375px) and (max-width: 820px) and (orientation: landscape) {
  #about-us #history .timeline-block-right .ac-label:after {
    right: -16%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) and (orientation: landscape) {
  #about-us #history .timeline-block-right .ac-label:after {
    right: 0%;
  }
}
#about-us #history .timeline-block-right .ac-sub {
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .timeline-block-right .ac-sub {
    text-align: center;
  }
}
#about-us #history .timeline-block-right .ac-sub p {
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .timeline-block-right .ac-sub p {
    text-align: center;
  }
}
#about-us #history .timeline-block-right .ac-sub article {
  padding-left: 0px;
}
#about-us #history .timeline-block-right .ac-sub h6 {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
  color: #000000;
}
#about-us #history .timeline-block-right .ac-text {
  border-left: 1px solid #d8d8d8;
  margin-top: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-right .ac-text {
    border-left: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .timeline-block-right .ac-text {
    border-left: 0px;
  }
}
#about-us #history .timeline-block-right article {
  padding-left: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .timeline-block-right article {
    font-size: 11px;
  }
}
#about-us #history .timeline-block-right h4 {
  background: #595959;
}
#about-us #history .ac-input:checked + .ac-label h4 {
  background-color: #ef3e42 !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .content-title {
    text-align: center;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .content-title::after {
    margin: auto;
    margin-top: 5px;
  }
}
#about-us #history .content-wrapper .title {
  font-size: 30px;
  font-family: "Montserrat";
}
#about-us #history .content-wrapper h4 {
  margin-top: 5px;
  width: 55%;
  padding: 3px 10px;
  margin: 0;
  border-radius: 5px;
  color: #fff;
  direction: ltr;
  height: 30px;
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .content-wrapper h4 {
    width: auto;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .content-wrapper h4 {
    width: 50%;
    text-align: center;
    margin: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #history .content-wrapper h4 {
    width: 70%;
  }
}
@media only screen and (min-width: 375px) and (max-width: 820px) and (orientation: landscape) {
  #about-us #history .content-wrapper h4 {
    width: 95%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) and (orientation: landscape) {
  #about-us #history .content-wrapper h4 {
    width: 85%;
  }
}
#about-us #history .content-wrapper .ac {
  padding: 0px;
}
#about-us #history .content-wrapper .timeline-container:before {
  left: 48.6%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #history .content-wrapper .timeline-container:before {
    left: 5px;
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #history .content-wrapper .timeline-container:before {
    display: none;
  }
}
@media only screen and (min-width: 375px) and (max-width: 820px) and (orientation: landscape) {
  #about-us #history .content-wrapper .timeline-container:before {
    display: block;
    left: 48%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) and (orientation: landscape) {
  #about-us #history .content-wrapper .timeline-container:before {
    display: none;
  }
}
#about-us #history .content-wrapper .ac-label {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
#about-us #history .content-wrapper article {
  padding-right: 20px;
  margin-top: 0px;
}
#about-us #history .content-wrapper article ol {
  margin: 0;
  padding: 0;
}
#about-us #history .content-wrapper article ol li {
  border-bottom: 0px;
}
#about-us #history .content-wrapper img {
  margin: 20px 0px;
}
#about-us #history .content-wrapper span {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
  color: #000000;
}
#about-us #manufacturing-facility {
  margin-bottom: 2rem;
}
#about-us #manufacturing-facility .content-wrapper .banner-section {
  margin-bottom: 3rem;
}
#about-us #manufacturing-facility .content-wrapper .banner-section p {
  font-size: 14px;
  text-align: left;
  margin-bottom: 30px;
  line-height: 30px;
  letter-spacing: 0.04px;
}
#about-us #manufacturing-facility .content-wrapper .segment {
  background: #fcf6dc;
  padding: 15px 15px 0px 15px;
  margin-bottom: 3rem;
}
#about-us #manufacturing-facility .content-wrapper .segment .segment-sections .wrapper {
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 10px solid #ede5c2;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #manufacturing-facility .content-wrapper .segment .segment-sections .wrapper {
    width: 100%;
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #manufacturing-facility .content-wrapper .segment .segment-sections .wrapper {
    margin-top: 15px;
  }
}
#about-us #manufacturing-facility .content-wrapper .segment .segment-sections .wrapper p {
  width: 130px;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #manufacturing-facility .content-wrapper .segment .segment-sections .wrapper p {
    width: 100%;
  }
}
#about-us #manufacturing-facility .content-wrapper .capacity {
  margin-bottom: 2rem;
}
#about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .col-sm-6 {
  padding: 5px;
}
#about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks {
  border: 1px solid #969696;
  display: flex;
  padding: 3rem 2rem;
  align-items: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks {
    display: block;
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks {
    display: block;
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks {
    display: block;
    padding: 1rem;
  }
}
#about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks p {
  text-align: left;
  margin-top: 5px;
}
#about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks .content-wrapper {
  margin: auto;
  margin-left: 20px;
}
#about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks .capacity-image {
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks .capacity-image {
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks .capacity-image {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks .capacity-image {
    text-align: left;
  }
}
#about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks .capacity-image p {
  margin-top: 15px;
  font-family: "Montserrat-Semibold";
  color: #ef3e42;
}
#about-us #manufacturing-facility .content-wrapper .capacity .capacity-content .capacity-blocks h5 {
  font-family: "Montserrat-Semibold";
  margin-bottom: 0px;
  margin-top: 15px;
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .manufacturing-content .section h5 {
  color: #ef3e42;
  margin-top: 0px;
  font-size: 16px;
  font-family: "Montserrat-Regular";
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .manufacturing-content .section p {
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .manufacturing-content .section p {
    font-size: 12px;
  }
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .manufacturing-content .section p span {
  font-size: 14px;
  line-height: 30px;
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .inner-content {
  background-color: #fcf6dc;
  padding: 10px;
  margin: 2rem 0rem;
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .inner-content h4 {
  text-transform: uppercase;
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .inner-content p {
  font-size: 14px;
  text-transform: uppercase;
  text-align: left;
  font-family: "Montserrat-Regular";
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .inner-content .wrapper {
  padding: 0px 15px 0px 15px;
  text-align: center;
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .inner-content .wrapper .count {
  font-size: 48px;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .inner-content .wrapper .measure {
  font-size: 12px;
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-excellence .inner-content .wrapper p {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
  margin-top: 10px;
}
#about-us #manufacturing-facility .content-wrapper .manufacturing-process .points span {
  font-size: 16px;
  color: #ef3e42;
}
#about-us #company .company-description {
  font-size: 14px;
  line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #company .company-description {
    font-size: 14px;
    line-height: 25px;
  }
}
#about-us #company .advantage {
  margin-top: 30px;
  margin-bottom: 2rem;
}
#about-us #company .advantage .advantage-wrapper {
  display: flex;
  flex-wrap: wrap;
}
#about-us #company .advantage .advantage-wrapper .advantage-section {
  padding-bottom: 1rem;
  border-bottom: 1px solid #969696;
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #company .advantage .advantage-wrapper .advantage-section {
    padding: 0px 10px;
  }
}
#about-us #company .advantage .advantage-wrapper .advantage-section .title-tag {
  text-transform: uppercase;
  font-size: 16px;
  color: #ef3e42;
  margin-top: 20px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #company .advantage .advantage-wrapper .advantage-section .title-tag {
    font-size: 14px;
  }
}
#about-us #company .advantage .advantage-wrapper .advantage-section p {
  font-size: 14px;
  width: 350px;
  line-height: 25px;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #company .advantage .advantage-wrapper .advantage-section p {
    width: auto;
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #company .advantage .advantage-wrapper .advantage-section p {
    width: 300px;
  }
}
#about-us #company .advantage .advantage-wrapper .advantage-section:nth-child(even) {
  margin-left: 5rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #company .advantage .advantage-wrapper .advantage-section:nth-child(even) {
    margin-left: 0rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #company .advantage .advantage-wrapper .advantage-section:nth-child(even) {
    margin-left: 0rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #company .advantage .advantage-wrapper .advantage-section:nth-child(even) {
    margin-left: 0rem;
  }
}
#about-us #core-values .excellence-wrapper {
  padding: 2rem 0rem 2rem 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #core-values .excellence-wrapper {
    padding: 1rem 1rem 2rem 1rem;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #core-values .excellence-wrapper {
    padding: 2rem 0rem 2rem 1rem;
  }
}
#about-us #core-values .excellence-wrapper .section-wrapper {
  display: flex;
  flex-wrap: wrap;
}
#about-us #core-values .excellence-wrapper .section-wrapper .sections {
  width: 255px;
  padding: 0px 20px;
  border-right: 1px solid #f4f4f4;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #core-values .excellence-wrapper .section-wrapper .sections {
    width: 100%;
    border: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #f4f4f4;
    padding-top: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us #core-values .excellence-wrapper .section-wrapper .sections {
    width: 100%;
  }
}
#about-us #core-values .excellence-wrapper .section-wrapper .sections .heading {
  font-size: 16px;
  font-family: "Montserrat-Regular";
  color: #ef3e42;
  margin-bottom: 10px;
}
#about-us #core-values .excellence-wrapper .section-wrapper .sections ul li {
  font-size: 13px;
  border-bottom: 0px;
  display: flex;
  padding: 5px 0px;
  cursor: auto;
}
#about-us #core-values .excellence-wrapper .section-wrapper .sections ul li::before {
  content: "\f105";
  font-family: fontAwesome;
  margin-right: 10px;
  color: #ef3e42;
}
#about-us #core-values .excellence-wrapper .section-wrapper .sections:last-child {
  border-right: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #core-values .excellence-wrapper .section-wrapper .sections:last-child {
    border: none;
  }
}
#about-us #core-values .excellence-wrapper:nth-child(2) .sections {
  border-right: 1px solid #969696;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #core-values .excellence-wrapper:nth-child(2) .sections {
    border: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #969696;
    padding-top: 10px;
  }
}
#about-us #core-values .excellence-wrapper:nth-child(2n+1) {
  background-color: #fff;
}
#about-us #core-values .excellence-wrapper:nth-child(2n+2) {
  background-color: #fcf6dc;
}
#about-us .our-mission .img-content {
  position: relative;
  margin-bottom: 1.5rem;
}
#about-us .our-mission .img-content .contents {
  position: absolute;
  top: 17%;
  left: 7%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us .our-mission .img-content .contents {
    position: inherit;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us .our-mission .img-content .contents {
    position: inherit;
    top: 0;
    left: 0;
  }
}
#about-us .our-mission .img-content .contents h2 {
  font-family: "Montserrat";
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us .our-mission .img-content .contents h2 {
    margin-left: 0px;
    font-size: 18px;
    line-height: 20px;
  }
}
#about-us .our-mission .img-content .contents h2::after {
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 10px;
}
#about-us .our-mission .img-content .contents p {
  width: 250px;
  font-size: 13px;
  line-height: 22px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us .our-mission .img-content .contents p {
    width: 100%;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #about-us .our-mission .img-content .contents p {
    width: 100%;
  }
}
#about-us #awards {
  /*.half {
  	float: left;
  	width: 10%;
    }*/
}
#about-us #awards .banner img {
  width: 100%;
}
#about-us #awards p {
  line-height: 30px;
}
#about-us #awards .orb:hover {
  cursor: pointer;
}
#about-us #awards .marquee {
  height: 240px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 30px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #awards .marquee {
    width: 100%;
  }
}
#about-us #awards .marquee--inner {
  display: block;
  width: 200%;
  position: absolute;
  animation: marquee 50s linear infinite;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #awards .marquee--inner {
    width: 600%;
    animation: marquee 5s linear infinite;
  }
}
#about-us #awards .marquee--inner:hover {
  animation-play-state: paused;
}
#about-us #awards .orb {
  margin-right: 20px;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #about-us #awards .content-title::after {
    margin-left: 0%;
  }
}
#about-us #awards .marquee--inner span {
  float: left;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  0% {
    left: 20px;
  }
  100% {
    left: -100%;
  }
}
#about-us #awards .wrappr:first-child .marquee--inner {
  animation: marquee1 20s linear infinite;
}
@keyframes marquee1 {
  0% {
    left: 20px;
  }
  100% {
    left: -250%;
  }
}
#about-us #awards .wrappr:nth-child(2) .marquee--inner {
  animation: marquee2 10s linear infinite;
}
@keyframes marquee2 {
  0% {
    left: 20px;
  }
  100% {
    left: -100%;
  }
}
#about-us #awards .wrappr:last-child .marquee--inner {
  animation: marquee3 10s linear infinite;
}
@keyframes marquee3 {
  0% {
    left: 20px;
  }
  100% {
    left: -100%;
  }
}
#about-us #awards .content-title span {
  line-height: 56px;
}
#about-us #awards .content-wrapper .banner-content {
  text-align: left;
  font-size: 14px;
  line-height: 27px;
}
#about-us #awards .content-wrapper .segment {
  margin-top: 2rem;
}
#about-us #awards .content-wrapper .segment .subtitle-para {
  text-align: left;
  margin-top: -20px;
}
#about-us #awards .awards {
  display: flex;
  overflow-x: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #awards .awards {
    overflow-x: auto;
  }
}
#about-us #awards .awards .section {
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin-right: 20px;
}
#about-us #awards .awards .section img {
  width: auto;
}
#about-us #awards .awards .section p {
  width: 170px;
  text-align: center !important;
  font-size: 12px;
  line-height: 20px;
}
#about-us #awards .awards .marquee--inner {
  animation: marquee-segment 10s linear infinite;
}
#about-us #awards .awards .marquee--inner:hover {
  animation-play-state: paused;
}
@keyframes marquee-segment {
  0% {
    left: 20px;
  }
  100% {
    left: -100%;
  }
}
#about-us #awards .content-title::after {
  margin-top: 0px;
}
#about-us #awards .segment-title {
  text-align: left;
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
#about-us #awards .clientele {
  margin-bottom: 2rem;
}
#about-us #awards .clientele .inner-section {
  display: flex;
  overflow-x: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #about-us #awards .clientele .inner-section {
    overflow-x: auto;
  }
}
#about-us #awards .clientele .inner-section .section {
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin-right: 20px;
}
#about-us #awards .clientele .inner-section .section img {
  width: auto;
}
#about-us #awards .clientele .inner-section .section p {
  width: 170px;
  text-align: center;
  font-size: 12px;
  text-align: center !important;
}
#about-us #awards .inner-section::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}
#about-us #awards .inner-section::-webkit-scrollbar {
  width: 3px;
  height: 5px;
  background-color: #969696;
}
#about-us #awards .inner-section::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #969696;
}
#about-us #awards .awards::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}
#about-us #awards .awards::-webkit-scrollbar {
  width: 3px;
  height: 5px;
  background-color: #969696;
}
#about-us #awards .awards::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #969696;
}

/************ Media press release **********/
#media-press-release .tabs-wrapper .tabs-section .tabs {
  list-style: none;
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
#media-press-release .tabs-wrapper .tabs-section .tabs li {
  background: #e7e7e7;
  width: 90px;
  height: 30px;
  text-align: center;
  margin: 10px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}
#media-press-release .tabs-wrapper .tabs-section .tabs li::after {
  content: "";
}
#media-press-release .tabs-wrapper .tabs-section .tabs .active {
  border: 1px solid;
  background: #ffffff;
  animation: none;
  color: #000000;
}
#media-press-release .wrapper:hover {
  background-color: #fcf6dc;
  border: 1px solid #fff !important;
}
#media-press-release .sub-title {
  padding: 15px 15px 15px 0px;
}
#media-press-release .sub-title::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #media-press-release .sub-title {
    font-size: 20px;
  }
}
#media-press-release .content-section {
  margin-bottom: 20px;
}
#media-press-release .content-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#media-press-release .content-section .content-wrapper .wrapper {
  width: 370px;
  height: auto;
  border: 1px solid #e0e0e0;
  margin: 0px 10px 18px 0px;
  padding: 20px;
  transition: 0.5s ease-out;
}
#media-press-release .content-section .content-wrapper .wrapper h5 {
  color: #ef3e42;
  margin-bottom: 5px;
  font-family: "Montserrat-Regular";
}
#media-press-release .content-section .content-wrapper .wrapper p {
  font-family: "Montserrat-Regular";
  margin-top: 0px;
  font-size: 16px;
  text-align: left;
  line-height: 25px;
  margin-top: 10px;
}
#media-press-release .content-section .content-wrapper .wrapper p::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 20px;
}
#media-press-release .content-section .content-wrapper .wrapper .hyperlinks a {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
}
#media-press-release .content-section .content-wrapper .wrapper .hyperlinks a .size {
  font-size: 14px;
}
#media-press-release .content-section .content-wrapper .wrapper .hyperlinks a:first-child {
  padding-right: 10px;
  border-right: 1px solid #e0e0e0;
}
#media-press-release .content-section .content-wrapper .wrapper .hyperlinks a:last-child {
  padding-left: 10px;
}
#media-press-release .content-section .button {
  margin: 0px 10px;
}
#media-press-release .content-section #press-load-more {
  margin: 0px 0px 25px 10px;
}

/************* Feedback ***************/
/*
#feedback {
	.banner {
		width: 100%;
		position: relative;
		img {
			width: 100%;
			@include screen(med) {
				height: 300px;
			}
			@include screen(large) {
				height: 300px;
			}
		}
	}
	.faq-content {
		position: absolute;
		top: 32%;
		left: 50%;
		margin-left: -140px;
		text-align: center;
		@include screen(small) {
			position: absolute;
			top: 34%;
			left: 50%;
			margin-left: -75px;
			text-align: center;
		}
		@include screen(med) {
			top: 34%;
		}
		@include screen(large) {
			top: 34%;
		}
		h1 {
			text-transform: uppercase;
			color: #fff;
			font-family: "Montserrat-Semibold";
		}
	}
	.feedback-title {
		text-align: center;
		width: 800px;
		padding: 15px 0px;
		margin: auto;
		font-size: 14px;
		line-height: 30px;
		@include screen(small) {
			padding: 15px;
			width: auto;
		}
		@include screen(med) {
			padding: 15px;
			width: auto;
		}
		@include screen(large) {
			padding: 15px;
			width: auto;
		}
	}
	input[type="submit"] {
		padding: 0px 50px;
		cursor: pointer;
		pointer-events: auto;
	}
}
*/
/************** Our brand *****************/
#our-brand .brand-image {
  width: 100%;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #our-brand .content-title::after {
    margin-left: 0%;
  }
}
#our-brand .brand-sections {
  display: flex;
  align-items: end;
  margin-top: 10px;
  margin-bottom: 10px;
}
#our-brand .descriptions p {
  font-size: 14px;
  line-height: 25px;
}

/*************** Warranty Page ******************/
#warranty-banner .banner {
  width: 100%;
  position: relative;
}
#warranty-banner .banner-heading {
  width: -moz-min-content;
  width: min-content;
  position: absolute;
  top: 28%;
  left: 50%;
  margin-left: -140px;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #warranty-banner .banner-heading {
    top: 30%;
    left: 50%;
    margin-left: -142px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #warranty-banner .banner-heading {
    top: 37%;
    left: 50%;
    margin-left: -185px;
  }
}
#warranty-banner .banner-heading h1 {
  text-transform: uppercase;
  color: #fff;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #warranty-banner .banner-heading h1 {
    line-height: 30px;
    margin: 0px;
    width: -moz-max-content;
    width: max-content;
    font-size: 16px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #warranty-banner .banner-heading h1 {
    line-height: 30px;
    margin: 0px;
    width: -moz-max-content;
    width: max-content;
    font-size: 20px;
  }
}
#warranty-banner .content p {
  text-align: left;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#warranty-banner .tabs-wrapper .tabs-section .tabs {
  display: flex;
  background-color: #f4f4f4;
}
#warranty-banner .tabs-wrapper .tabs-section .tabs li {
  width: 50%;
  text-align: center;
  font-family: "Montserrat-Regular";
  font-size: 16px;
}
#warranty-banner .tabs-wrapper .tabs-section .tabs li.active {
  background-color: #ef3e42;
  color: #fff;
}
#warranty-banner .tabs-wrapper .tabs-section .tabs li::after {
  content: " ";
}
#warranty-banner .tabs-content-wrapper {
  margin-top: 25px;
}
#warranty-banner .tabs-content-wrapper p {
  margin-bottom: 40px;
}
#warranty-banner table {
  border: 1px solid #909bad;
  padding: 0rem 1rem;
}
#warranty-banner table td {
  font-size: 14px;
  font-family: "Montserrat";
}
#warranty-banner table td div {
  padding: 15px 0px;
  width: 70%;
  line-height: 24px;
}
#warranty-banner table th {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
}
#warranty-banner table th,
#warranty-banner table td {
  padding: 10px 0px;
  border-bottom: 1px solid #f1f1f1;
}
#warranty-banner table .top-header {
  background: #fff;
  border-bottom: 1px solid #909bad;
  font-family: "Montserrat-Regular";
}
#warranty-banner table tr:last-child td {
  border-bottom: none;
}
#warranty-banner .terms-condition ul {
  list-style: none;
}
#warranty-banner .terms-condition ul li {
  margin-left: 15px;
}
#warranty-banner .terms-condition ul li::before {
  content: "•";
  color: #ef3e42;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#warranty-banner .sidebar-tabs {
  margin-bottom: 20px;
}
#warranty-banner .sidebar-tabs .col-sm-12 {
  border: 1px solid #f4f4f4;
  padding: 0px;
}
#warranty-banner .sidebar-tabs .content-section {
  padding: 1rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #warranty-banner .sidebar-tabs .content-section ul {
    padding: 0px 20px;
  }
}
#warranty-banner .sidebar-tabs ul {
  margin-left: 20px;
  /*
  		li::before {
  			content: "\f111";
  			font-family: fontAwesome;
  			font-size: 7px;
  			color: $primary_color;
  			margin-right: 10px;
  		}
  */
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #warranty-banner .sidebar-tabs ul {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #warranty-banner .sidebar-tabs ul {
    display: block;
  }
}
#warranty-banner .sidebar-tabs ul li {
  list-style: initial;
  display: list-item;
  cursor: auto;
  margin-right: 0px;
}
#warranty-banner .sidebar-tabs ul li ul {
  margin-left: 20px !important;
}
#warranty-banner .sidebar-tabs ul li ul li {
  padding: 5px 0px;
  font-size: 13px;
}
#warranty-banner strong {
  color: #ef3e42;
  font-family: "Montserrat-Regular";
}
#warranty-banner .tabs-section ul li {
  list-style: none;
}
#warranty-banner .tabs-section ul {
  margin-left: 0px;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #main p {
    display: block;
  }
}
#main p .descriptions {
  margin-left: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #main p .descriptions {
    margin-left: 0px;
  }
}
#main p .descriptions p {
  font-size: 14px;
  line-height: 30px;
}

/************** Dealer-locator ***************/
#dealer-locator .dealer-banner-wrapper {
  position: relative;
  width: 100%;
}
#dealer-locator .dealer-banner-wrapper img {
  height: 100%;
  width: 100%;
}
#dealer-locator .dealer-banner-wrapper h1 {
  position: absolute;
  top: 32%;
  left: 50%;
  margin-left: -140px;
  text-align: center;
  font-family: "Montserrat-Semibold";
  text-transform: uppercase;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .dealer-banner-wrapper h1 {
    top: 27%;
    left: 65%;
  }
}
#dealer-locator .infowindow {
  font-size: 14px;
  font-family: "Montserrat";
}
#dealer-locator .infowindow h3 {
  font-family: "Montserrat-Semibold";
}
#dealer-locator .infowindow a {
  color: #ef3e42;
  cursor: pointer;
}
#dealer-locator .sidebar-maps::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}
#dealer-locator .sidebar-maps::-webkit-scrollbar {
  width: 3px;
  height: 10px;
  background-color: #969696;
}
#dealer-locator .sidebar-maps::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #969696;
}
#dealer-locator .sidebar-maps {
  overflow-y: scroll;
  height: 735px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps {
    height: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
  }
}
#dealer-locator .sidebar-maps .location {
  border: 1px solid #f4f4f4;
  margin: 20px 0px;
  margin-right: 20px;
  margin-top: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps .location {
    min-width: 220px;
  }
}
#dealer-locator .sidebar-maps .location .header {
  background: #f4f4f4;
  padding: 10px 10px 10px 34px;
  font-family: "Montserrat-Regular";
}
#dealer-locator .sidebar-maps .location .header h6 {
  font-size: 13px;
  margin: 0px;
  display: flex;
  align-items: center;
}
#dealer-locator .sidebar-maps .location .header h6 img {
  margin-left: auto;
}
#dealer-locator .sidebar-maps .location .details {
  padding: 0px 10px 10px 10px;
}
#dealer-locator .sidebar-maps .location .details h6 {
  font-family: "Montserrat-Semibold";
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps .location .details h6 {
    font-size: 11px;
  }
}
#dealer-locator .sidebar-maps .location .details .section {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps .location .details .section {
    font-size: 11px;
  }
}
#dealer-locator .sidebar-maps .location .details .section img {
  margin-right: 10px;
}
#dealer-locator .sidebar-maps .location .details .section p {
  line-height: 17px;
  letter-spacing: 0.05px;
  margin-bottom: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps .location .details .section p {
    font-size: 11px;
  }
}
#dealer-locator .sidebar-maps .location .details .section span {
  font-family: "Montserrat-Semibold";
  font-size: 14px;
  margin-left: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps .location .details .section span {
    font-size: 11px;
  }
}
#dealer-locator .sidebar-maps .location .details .section .available-product {
  display: flex;
  align-items: baseline;
}
#dealer-locator .sidebar-maps .location .details .section .available-product p {
  margin: 10px 0px 15px 0px;
  margin-left: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps .location .details .section .available-product p {
    font-size: 11px;
  }
}
#dealer-locator .sidebar-maps .location .details .section .available-product span:last-child {
  font-family: "Montserrat";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps .location .details .section .available-product span:last-child {
    font-family: "Montserrat";
    font-size: 10px;
  }
}
#dealer-locator .sidebar-maps .location .details .section a {
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  text-decoration: underline;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .sidebar-maps .location .details .section a {
    font-size: 11px;
  }
}
#dealer-locator .visit-us {
  position: relative;
  margin-top: 2rem;
}
#dealer-locator .visit-us .visit-us-content {
  position: absolute;
  top: 15%;
  left: 41%;
  margin-left: -180px;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .visit-us .visit-us-content {
    position: initial;
    margin-left: 0px;
  }
}
#dealer-locator .visit-us .visit-us-content p {
  width: 550px;
  font-size: 21px;
  line-height: 32px;
  margin-bottom: 15px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .visit-us .visit-us-content p {
    width: 100%;
    font-size: 16px;
  }
}
#dealer-locator .visit-us .visit-us-content a {
  font-size: 14px;
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .visit-us .visit-us-content a {
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 20px;
  }
}
#dealer-locator .dealer-form {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .dealer-form {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #dealer-locator .dealer-form {
    display: block;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #dealer-locator .dealer-form {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #dealer-locator .dealer-form .col-sm-3 {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #dealer-locator .dealer-form .col-sm-3 {
    max-width: 100%;
  }
}
#dealer-locator .dealer-form select {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  padding-bottom: 10px;
  -webkit-appearance: none;
  font-size: 14px;
  font-family: "Montserrat-Regular";
  background: transparent;
  outline: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .dealer-form select {
    font-size: 12px;
  }
}
#dealer-locator .dealer-form .select-container:after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  color: #ef3e42;
}
#dealer-locator .dealer-form .form-field-dl {
  display: grid;
  margin: 10px;
  grid-gap: 15px;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .dealer-form .form-field-dl {
    margin-right: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #dealer-locator .dealer-form .form-field-dl {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #dealer-locator .dealer-form .form-field-dl {
    margin-bottom: 30px;
  }
}
#dealer-locator .dealer-form .select-d::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  bottom: 10px;
  right: 0;
  color: #ef3e42;
}
#dealer-locator .dealer-form label {
  font-size: 13px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .dealer-form label {
    display: flex;
    align-items: center;
    font-size: 11px;
  }
}
#dealer-locator .dealer-form .title {
  font-size: 12px;
  color: #969696;
  font-family: "Montserrat";
}
#dealer-locator .search-dl {
  padding: 30px;
  background: #fcf6dc;
  margin-bottom: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .search-dl {
    padding: 0px;
  }
}
#dealer-locator .dl-maps {
  margin-top: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator #dl-maps .col-sm-7 {
    min-height: 300px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .dl-form-wrapper {
    margin: 20px 0px;
  }
}
#dealer-locator .dl-form-wrapper .dl-search {
  width: 170px;
  margin: auto;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .dl-form-wrapper .dl-search {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #dealer-locator .dl-form-wrapper .dl-search {
    margin: initial;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #dealer-locator .dl-form-wrapper .dl-search {
    margin: initial;
    margin-top: 40px;
  }
}
#dealer-locator .form-group {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .form-group {
    justify-content: end;
  }
}
#dealer-locator .brand-store {
  margin-right: 15px;
}
#dealer-locator .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
#dealer-locator .form-group label {
  position: relative;
  cursor: pointer;
}
#dealer-locator .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#dealer-locator .third-f {
  max-width: 30%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .third-f {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #dealer-locator .third-f {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #dealer-locator .col-sm-4 {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #dealer-locator .col-sm-4 {
    max-width: 100%;
  }
}
#dealer-locator .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fcf6dc;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #dealer-locator .form-group input:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #dealer-locator .form-group input:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #dealer-locator .form-group input:checked + label:after {
    top: -2px;
  }
}
#dealer-locator .no-data {
  font-size: 14px;
  font-family: "Montserrat-Regular";
  padding-top: 2rem;
}

#career-sidebar .tabs-wrapper {
  margin-bottom: 2rem;
  position: sticky;
  top: 10%;
}
#career-sidebar .tabs-wrapper .tabs-heading h2 {
  font-family: "Montserrat";
  margin-top: 0px;
  border-bottom: 1px solid #ef3e42;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #career-sidebar .tabs-wrapper .tabs-heading h2 {
    font-size: 30px;
  }
}
#career-sidebar .sub-title {
  padding: 15px 15px 15px 0px;
}
#career-sidebar .sub-title::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar .sub-title {
    font-size: 20px;
  }
}
#career-sidebar #work-ethos .content-wrapper p {
  font-family: "Montserrat-Regular";
  font-size: 16px;
  text-align: left;
  line-height: 30px;
}
#career-sidebar #work-ethos .content-wrapper .culture {
  margin-top: -25px;
}
#career-sidebar #life_at_hindware .swiper-button-next {
  background-image: url("../images/life-right.png");
  background-repeat: no-repeat;
  right: 6px;
  left: auto;
  background-size: contain;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #life_at_hindware .swiper-button-next {
    right: 5%;
    background-size: auto;
  }
}
#career-sidebar #life_at_hindware .swiper-button-prev {
  background-image: url("../images/life-left.png");
  background-repeat: no-repeat;
  left: 6px;
  background-size: contain;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #life_at_hindware .swiper-button-prev {
    left: 5%;
    background-size: auto;
  }
}
#career-sidebar #life_at_hindware .pointers .point-sections {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #969696;
}
#career-sidebar #life_at_hindware .pointers .point-sections:last-child {
  border-bottom: none;
}
#career-sidebar #life_at_hindware .pointers .texts {
  margin-left: 30px;
}
#career-sidebar #life_at_hindware .pointers .texts h4 {
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
  margin-bottom: 0px;
}
#career-sidebar #life_at_hindware .pointers .texts p {
  text-align: left;
}
#career-sidebar #life_at_hindware .pointers .texts p b {
  font-family: "Montserrat-Regular";
  font-style: italic;
}
#career-sidebar #careers p {
  font-size: 16px;
  text-align: left;
  line-height: 30px;
}
#career-sidebar #careers a {
  font-family: "Montserrat-Semibold";
}
#career-sidebar #careers input[type=button]:hover {
  background-color: transparent !important;
  color: #ef3e42 !important;
  border: none !important;
}
#career-sidebar #careers img {
  width: 100%;
}
#career-sidebar #careers .gform_ajax_spinner {
  width: auto;
}
#career-sidebar #careers .gfield_checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#career-sidebar #careers .gfield_checkbox label {
  position: relative;
  align-items: center;
  font-size: 13px;
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #careers .gfield_checkbox label {
    display: contents;
    font-size: 13px;
  }
}
#career-sidebar #careers .gfield_checkbox label a {
  font-family: "Montserrat-Semibold";
}
#career-sidebar #careers .gfield_checkbox input[type=checkbox] {
  display: none;
}
#career-sidebar #careers .gfield_checkbox input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #careers .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #career-sidebar #careers .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #career-sidebar #careers .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}

#lacasa-store {
  font-size: 14px;
}
#lacasa-store .banner-lacasa {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .banner-lacasa {
    height: 150px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #lacasa-store .banner-lacasa {
    height: 200px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #lacasa-store .banner-lacasa {
    height: 300px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #lacasa-store .banner-lacasa {
    height: 200px;
  }
}
#lacasa-store .banner-lacasa img {
  width: 100%;
}
#lacasa-store .banner-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .banner-text {
    text-align: center;
  }
}
#lacasa-store .banner-text h1 {
  text-transform: uppercase;
  color: #fff;
  font-family: "Montserrat-Semibold";
}
#lacasa-store .lacasa-video {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .lacasa-video {
    display: block;
    margin-top: 0px;
  }
}
#lacasa-store .lacasa-video .asyn-video {
  margin-top: 20px;
}
#lacasa-store p {
  line-height: 27px;
  margin-bottom: 0px;
}
#lacasa-store .last-para {
  margin-bottom: 2rem;
  line-height: 27px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .last-para {
    width: auto;
    margin: 0px 20px;
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #lacasa-store .last-para {
    margin: 10px 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #lacasa-store .last-para {
    margin: 10px 20px;
  }
}
#lacasa-store iframe {
  width: 470px;
  height: 264px;
}
#lacasa-store .content {
  width: 50%;
  margin-left: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .content {
    width: auto;
    margin: 0px 20px;
    font-size: 12px;
  }
}
#lacasa-store .locations {
  margin: 20px auto;
  text-align: center;
}
#lacasa-store .locations h2 {
  font-family: "Montserrat";
  display: inline-grid;
}
#lacasa-store .locations h2::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations h2::after {
    margin-top: -5px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #lacasa-store .locations h2::after {
    margin-left: 14%;
  }
}
#lacasa-store .locations .locations-slider {
  width: 530px;
  margin-right: 25px;
  height: 100%;
  margin-bottom: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .locations-slider {
    width: 100%;
    margin-right: 0px;
    height: 100%;
    margin-bottom: 25px;
  }
}
#lacasa-store .locations .links {
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .links {
    order: 2;
  }
}
#lacasa-store .locations .links a:first-child {
  margin-right: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .links a:first-child {
    margin-right: 10px;
  }
}
#lacasa-store .locations .locations-slider:first-child .links {
  justify-content: space-evenly;
}
#lacasa-store .locations .locations-slider:first-child a {
  margin-right: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .locations-slider:first-child a {
    margin-right: 10px;
  }
}
#lacasa-store .locations .slider-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .slider-wrapper {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #lacasa-store .locations .slider-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #lacasa-store .locations .slider-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #lacasa-store .locations .slider-wrapper {
    margin-top: 20px;
  }
}
#lacasa-store .locations .swiper-button-next {
  background-image: url("../images/life-right.png");
  background-repeat: no-repeat;
  right: 6px;
  left: auto;
  background-size: contain;
  top: 52%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .swiper-button-next {
    right: 5%;
    background-size: contain;
  }
}
#lacasa-store .locations .swiper-button-prev {
  background-image: url("../images/life-left.png");
  background-repeat: no-repeat;
  left: 6px;
  background-size: contain;
  top: 52%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .swiper-button-prev {
    left: 5%;
    background-size: contain;
  }
}
#lacasa-store .locations .button-light {
  font-family: "Montserrat-Regular";
}
#lacasa-store .locations .cards {
  height: 100%;
}
#lacasa-store .locations .cards img {
  height: 100%;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .cards img {
    height: auto;
  }
}
#lacasa-store .locations .cards .city_name {
  position: absolute;
  left: 5%;
  top: 10%;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.6);
  font-size: 24px;
}
#lacasa-store .locations .content-lacasa {
  text-align: left;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .content-lacasa {
    display: grid;
  }
}
#lacasa-store .locations .content-lacasa .links {
  padding: 10px 0px;
  background: #f4f4f4;
}
#lacasa-store .locations .content-lacasa .content-wrapper {
  padding: 16px;
  font-size: 14px;
  border: 1px solid #dfdfdf;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #lacasa-store .locations .content-lacasa .content-wrapper {
    order: 1;
    font-size: 12px;
  }
}
#lacasa-store .locations .content-lacasa .content-wrapper .title {
  font-family: "Montserrat-Semibold";
  padding-left: 30px;
}
#lacasa-store .locations .content-lacasa .content-wrapper .address,
#lacasa-store .locations .content-lacasa .content-wrapper .person,
#lacasa-store .locations .content-lacasa .content-wrapper .contact {
  display: flex;
  align-items: end;
  margin: 15px 0px;
}
#lacasa-store .locations .content-lacasa .content-wrapper .address img,
#lacasa-store .locations .content-lacasa .content-wrapper .person img,
#lacasa-store .locations .content-lacasa .content-wrapper .contact img {
  margin-right: 15px;
}

/*
#main {
	p {
		@include screen(small) {
			width: auto;
			font-size: 13px;
			padding: 0px 10px;
			text-align: center;
			font-family: "Montserrat-Semibold";
			text-transform: uppercase;
			@include screen(small) {
				top: 27%;
				left: 65%;
			}
		}
	}
	.infowindow {
		font-size: 14px;
		font-family: "Montserrat";
		h3 {
			font-family: "Montserrat-Semibold";
		}
		a {
			color: $primary_color;
			cursor: pointer;
		}
	}
	.col-sm-7 {
		@include screen(small) {
			// 			position: initial;
		}
	}
	#map {
		@include screen(small) {
			// 			position: initial!important;
		}
	}
	.sidebar-maps {
		overflow-y: scroll;
		height: 735px;
		@include screen(small) {
			height: auto;
			overflow-x: scroll;
			display: flex;
			width: 100%;
		}
		.location {
			border: 1px solid #f4f4f4;
			margin: 20px 0px;
			margin-right: 20px;
			margin-top: 0px;
			@include screen(small) {
				min-width: 220px;
			}
			.header {
				background: #f4f4f4;
				padding: 10px 10px 10px 34px;
				font-family: "Montserrat-Regular";
				h6 {
					font-size: 14px;
					margin: 0px;
				}
			}
			.details {
				padding: 0px 10px 10px 10px;
				h6 {
					font-family: "Montserrat-Semibold";
					font-size: 14px;
					margin-bottom: 10px;
					margin-top: 10px;
					margin-left: 25px;
					@include screen(small) {
						font-size: 11px;
					}
				}
				.section {
					font-size: 14px;
					display: flex;
					align-items: center;
					margin-bottom: 15px;
					@include screen(small) {
						font-size: 11px;
					}
					img {
						margin-right: 10px;
					}
					p {
						line-height: 17px;
						letter-spacing: 0.05px;
						margin-bottom: 0px;
						@include screen(small) {
							font-size: 11px;
						}
					}
					span {
						font-family: "Montserrat-Semibold";
						font-size: 14px;
						margin-left: 15px;
						@include screen(small) {
							font-size: 11px;
						}
					}
					.available-product {
						display: flex;
						align-items: baseline;
						p {
							margin: 10px 0px 15px 0px;
							// 							width: min-content;
							margin-left: 10px;
							@include screen(small) {
								font-size: 11px;
							}
						}
						span:last-child {
							font-family: "Montserrat";
							@include screen(small) {
								font-family: "Montserrat";
								font-size: 10px;
							}
						}
					}
					a {
						color: $primary_color;
						font-family: "Montserrat-Regular";
						text-decoration: underline;
						@include screen(small) {
							font-size: 11px;
						}
					}
				}
			}
		}
	}
	.visit-us {
		position: relative;
		margin-top: 2rem;
		.visit-us-content {
			position: absolute;
			top: 15%;
			left: 41%;
			margin-left: -180px;
			text-align: center;
			@include screen(small) {
				position: initial;
				margin-left: 0px;
			}
			p {
				width: 550px;
				font-size: 21px;
				line-height: 32px;
				margin-bottom: 15px;
				font-family: "Montserrat-Regular";
				@include screen(small) {
					width: 100%;
					font-size: 16px;
				}
			}
			a {
				font-size: 14px;
				margin: auto;
				@include screen(small) {
					width: max-content;
					margin-bottom: 20px;
				}
			}
		}
	}
	.dealer-form {
		display: flex;
		align-items: center;
		margin-bottom: 20px;
		@include screen(small) {
			display: block;
		}
		@include screen(med) {
			display: block;
		}
		@include screen(large) {
			display: block;
		}
		.col-sm-3 {
			@include screen(med) {
				max-width: 100%;
			}
			@include screen(large) {
				max-width: 100%;
			}
		}
		select {
			border: none;
			border-bottom: 1px solid $black;
			border-radius: 0px;
			padding-bottom: 10px;
			-webkit-appearance: none;
			font-size: 14px;
			font-family: "Montserrat-Regular";
			background: transparent;
			outline: none;
			@include screen(small) {
				font-size: 12px;
			}
		}
		.select-container:after {
			font-family: FontAwesome;
			content: "\f107";
			position: absolute;
			display: block;
			right: 0;
			top: 0;
			color: $primary_color;
		}
		.form-field-dl {
			display: grid;
			margin: 10px;
			// 			margin-right: 50px;
			grid-gap: 15px;
			position: relative;
			@include screen(small) {
				margin-right: 0px;
			}
			@include screen(med) {
				margin-bottom: 30px;
			}
			@include screen(large) {
				margin-bottom: 30px;
			}
		}
		.select-d::after {
			font-family: FontAwesome;
			content: "\f107";
			position: absolute;
			bottom: 10px;
			right: 0;
			color: $primary_color;
		}
		label {
			font-size: 13px;
			font-family: "Montserrat-Regular";
			@include screen(small) {
				display: flex;
				align-items: center;
				font-size: 11px;
			}
		}
		.title {
			font-size: 12px;
			color: #969696;
			font-family: "Montserrat";
		}
	}
	.search-dl {
		padding: 30px;
		background: #fcf6dc;
		margin-bottom: 25px;
		@include screen(small) {
			padding: 0px;
		}
	}
	.dl-maps {
		margin-top: 2rem;
	}
	#dl-maps {
		.col-sm-7 {
			@include screen(small) {
				min-height: 300px;
			}
		}
	}
	.dl-form-wrapper {
		@include screen(small) {
			margin: 20px 0px;
		}
		.dl-search {
			width: 170px;
			margin: auto;
			cursor: pointer;
			pointer-events: auto;
			@include screen(small) {
				width: 100%;
			}
			@include screen(med) {
				margin: initial;
				margin-top: 40px;
			}
			@include screen(large) {
				margin: initial;
				margin-top: 40px;
			}
		}
	}
	.form-group {
		display: flex;
		// 		margin-bottom: 15px;
		justify-content: end;
		align-items: center;
		@include screen(small) {
			justify-content: end;
		}
	}
	.brand-store {
		margin-right: 15px;
	}

	.form-group input {
		padding: 0;
		height: initial;
		width: initial;
		margin-bottom: 0;
		display: none;
		cursor: pointer;
	}

	.form-group label {
		position: relative;
		cursor: pointer;
	}

	.form-group label:before {
		content: "";
		-webkit-appearance: none;
		background-color: transparent;
		border: 2px solid #000;
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
			inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
		padding: 7px;
		display: inline-block;
		position: relative;
		vertical-align: middle;
		cursor: pointer;
		margin-right: 10px;
	}

	.third-f {
		max-width: 30%;
		@include screen(small) {
			max-width: 100%;
		}
		@include screen(med) {
			max-width: 100%;
		}
	}
	.col-sm-4 {
		@include screen(med) {
			max-width: 100%;
		}
		@include screen(large) {
			max-width: 100%;
		}
	}

	.form-group input:checked + label:after {
		content: "";
		display: block;
		position: absolute;
		top: 0px;
		left: 9px;
		width: 6px;
		height: 16px;
		border: solid #ef3e42;
		border-width: 0 2px 2px 0;
		transform: rotate(45deg);
		background: #fcf6dc;
		@include screen(small) {
			top: -2px;
		}
		@media only screen and (min-width: 320px) and (max-width: 568px) {
			top: 5px;
		}
		@media only screen and (min-width: 375px) and (max-width: 768px) {
			top: -2px;
		}
	}
	.no-data {
		font-size: 14px;
		font-family: "Montserrat-Regular";
		padding-top: 2rem;
	}
}
*/
#career-sidebar {
  /*
  	.content-section {
  		@media only screen and (min-width: 320px) and (max-width: 800px) and (orientation: landscape) {
  			margin-top: 15px;
  		}
  	}
  */
}
#career-sidebar .tabs-wrapper {
  margin-bottom: 2rem;
  position: sticky;
  top: 14%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #career-sidebar .tabs-wrapper {
    top: 6%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #career-sidebar .tabs-wrapper {
    top: 12%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  #career-sidebar .tabs-wrapper {
    top: 12%;
  }
}
#career-sidebar .tabs-wrapper .tabs-heading h2 {
  font-family: "Montserrat";
  margin-top: 0px;
  border-bottom: 2px solid #ef3e42;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #career-sidebar .tabs-wrapper .tabs-heading h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #career-sidebar .tabs-wrapper .tabs-heading h2 {
    margin: 0;
  }
}
#career-sidebar .tabs-wrapper .tabs-section ul a {
  border-bottom: 1px solid #f4f4f4;
}
#career-sidebar .sub-title {
  padding: 15px 15px 15px 0px;
}
#career-sidebar .sub-title::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar .sub-title {
    font-size: 20px;
  }
}
#career-sidebar #work-ethos .content-wrapper p {
  font-family: "Montserrat";
  font-size: 14px;
  text-align: left;
  line-height: 30px;
}
#career-sidebar #work-ethos .content-wrapper .culture {
  margin-top: -25px;
}
#career-sidebar #life_at_hindware .swiper-button-next {
  background-image: url("../images/life-right.png");
  background-repeat: no-repeat;
  right: 6px;
  left: auto;
  background-size: contain;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #life_at_hindware .swiper-button-next {
    right: 5%;
    background-size: auto;
  }
}
#career-sidebar #life_at_hindware .swiper-button-prev {
  background-image: url("../images/life-left.png");
  background-repeat: no-repeat;
  left: 6px;
  background-size: contain;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #life_at_hindware .swiper-button-prev {
    left: 5%;
    background-size: auto;
  }
}
#career-sidebar #life_at_hindware .pointers .point-sections {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #969696;
  align-items: flex-start;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #life_at_hindware .pointers .point-sections {
    display: block;
    padding-bottom: 0px;
  }
}
#career-sidebar #life_at_hindware .pointers .point-sections img {
  padding-top: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #life_at_hindware .pointers .point-sections img {
    padding-top: 0px;
  }
}
#career-sidebar #life_at_hindware .pointers .point-sections:last-child {
  border-bottom: none;
}
#career-sidebar #life_at_hindware .pointers .texts h4 {
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
  margin-bottom: 0px;
}
#career-sidebar #life_at_hindware .pointers .texts p {
  text-align: left;
  line-height: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #life_at_hindware .pointers .texts p {
    line-height: 25px;
  }
}
#career-sidebar #life_at_hindware .col-sm-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #life_at_hindware .col-sm-10 {
    max-width: 100%;
  }
}
#career-sidebar #careers p {
  font-size: 14px;
  text-align: left;
  line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #career-sidebar #careers p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 812px) and (orientation: landscape) {
  #career-sidebar #careers p {
    font-size: 13px;
  }
}
#career-sidebar #careers a {
  font-family: "Montserrat-Semibold";
}

/*
#main {
	p {
		@include screen(small) {
			width: auto;
			font-size: 13px;
			padding: 0px 10px;
			text-align: center;
			font-family: "Montserrat-Semibold";
// 			text-transform: uppercase;
			@include screen(small) {
				top: 27%;
				left: 65%;
			}
		}
	}
}
*/
#product-finder-page .banner {
  width: 100%;
  position: relative;
}
#product-finder-page .banner img {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page .banner img {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder-page .banner img {
    height: 300px;
  }
}
#product-finder-page .alert-messg,
#product-finder-page .alert-messg-mobile {
  color: #ef3e42;
  text-align: center;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .alert-messg,
  #product-finder-page .alert-messg-mobile {
    font-size: 12px;
    margin-top: 20px;
  }
}
#product-finder-page .product-finder-content {
  position: absolute;
  top: 36%;
  left: 50%;
  margin-left: -200px;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .product-finder-content {
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -150px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #product-finder-page .product-finder-content {
    top: 14%;
  }
}
#product-finder-page .product-finder-content h1 {
  text-transform: uppercase;
  color: #000;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .product-finder-content p {
    font-size: 15px;
    width: 300px;
  }
}
#product-finder-page input[type=submit] {
  width: 170px;
  margin: 20px auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page input[type=submit] {
    width: 25%;
    height: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page input[type=submit] {
    width: 170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page input[type=submit] h3 {
    text-align: center;
  }
}
#product-finder-page .button {
  width: 170px;
  margin: 20px auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .button {
    width: 25%;
    height: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page .button {
    width: 80%;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .question-set {
    padding: 0px;
  }
}
#product-finder-page .questions {
  margin: 25px 0px;
}
#product-finder-page .questions .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .questions .buttons {
    align-items: baseline;
  }
}
#product-finder-page .questions .buttons h3 {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .questions .buttons h3 {
    font-size: 16px;
    text-align: center;
    padding: 0px 10px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page .questions .buttons h3 {
    text-align: center;
    font-size: 15px;
  }
}
#product-finder-page .questions .input {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .questions input {
    opacity: 0;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .questions .previous {
    opacity: 1;
  }
}
#product-finder-page .questions .addtocartbutton {
  display: none;
}
#product-finder-page .questions .input-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /*
  			.product {
  				position: relative;
  			}
  			.product:after {
  			    position: absolute;
  			    width: 100%; height:100%;
  			    top:0; left:0;
  			    background:rgba(0,0,0,0.6);
  				display: none;
  			    transition: all 1s;
  			    -webkit-transition: all 1s;
  			    color: #fff;
  			}
  			.product:hover:after {
  			    display: block;
  			}
  			.product:hover {

  			}
  			.product {
  				position: relative;
  			}
  			.product:after {
  			    content: 'View Product';
  				display: none;
  			    transition: all 1s;
  			    -webkit-transition: all 1s;
  			    color: #fff;
  			}
  			.product:hover:after {
  			    display: block;
  			}
  */
}
#product-finder-page .questions .input-wrapper .product {
  position: relative;
}
#product-finder-page .questions .input-wrapper .pf_on_hover {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  align-items: center;
  justify-content: center;
  top: 0px;
  transition: all 1s;
  -webkit-transition: all 1s;
}
#product-finder-page .questions .input-wrapper .inside_on_hover {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  position: absolute;
  z-index: 3;
}
#product-finder-page .questions .input-wrapper .inside_on_hover:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ef3e42 !important;
}
#product-finder-page .questions .input-wrapper .product:hover .pf_on_hover {
  display: flex;
  transition: all 1s;
  -webkit-transition: all 1s;
}
#product-finder-page .questions input[type=radio] {
  display: none;
}
#product-finder-page .questions label,
#product-finder-page .questions input[type=submit] {
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .questions label,
  #product-finder-page .questions input[type=submit] {
    height: 35px;
    font-size: 10px;
    margin: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .questions label,
  #product-finder-page .questions input[type=submit] {
    margin-bottom: 10px;
  }
}
#product-finder-page .questions label {
  width: 100%;
  height: 100%;
}
#product-finder-page .questions input[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#product-finder-page .questions fieldset {
  border: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .questions fieldset {
    padding: 0px;
  }
}
#product-finder-page .questions .checked {
  opacity: 0;
  position: absolute;
  top: 7%;
  right: 10%;
}
#product-finder-page .questions fieldset:not(:first-of-type) {
  display: none;
}
#product-finder-page .questions input[type=radio]:checked + label > .pf-img {
  filter: brightness(0.5);
}
#product-finder-page .questions input[type=radio]:checked ~ .checked {
  opacity: 1;
}
#product-finder-page .steps {
  margin-top: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .steps {
    text-align: center;
    font-size: 14px;
    font-family: "Montserrat-Semibold";
    text-align: center;
    font-size: 12px;
    font-family: "Montserrat-Semibold";
    background: #f4f4f4;
    border-radius: 20px;
    width: -moz-max-content;
    width: max-content;
    padding: 5px 20px;
    margin: auto;
    margin-top: 20px;
  }
}
#product-finder-page .steps #progressbar {
  display: flex !important;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-left: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .steps #progressbar {
    margin-left: 0px;
    display: none !important;
  }
}
#product-finder-page .steps #progressbar li {
  border-bottom: 1px solid #969696;
  padding: 10px 70px 5px 0px;
  font-family: "Montserrat-Semibold";
  font-size: 18px;
  width: 200px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .steps #progressbar li {
    padding: 10px 40px 5px 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page .steps #progressbar li {
    width: 130px;
  }
}
#product-finder-page .steps #progressbar li:last-child {
  border: none;
  display: flex;
  align-items: center;
  padding-right: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .steps #progressbar li:last-child {
    padding: 5px;
  }
}
#product-finder-page .steps #progressbar li:last-child img {
  margin-right: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page .steps #progressbar li:last-child img {
    margin-right: 0px;
  }
}
#product-finder-page .steps #progressbar li:last-child span {
  font-size: 14px;
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page .steps #progressbar li:last-child span {
    font-size: 11px;
  }
}
#product-finder-page .steps #progressbar .pf-active {
  border-bottom: 2px solid #ef3e42;
}
#product-finder-page .steps .selected-answer {
  display: none;
}
#product-finder-page .steps .answer {
  display: block;
  position: absolute;
  bottom: -8px;
  font-size: 13px;
  font-family: "Montserrat";
}
#product-finder-page .pf-img {
  position: relative;
  width: 100%;
  height: 100%;
}
#product-finder-page .pf-img img {
  width: 100%;
  height: 100%;
}
#product-finder-page .pf-img .layer {
  height: 60px;
  position: absolute;
  width: 100%;
  bottom: 0%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product-finder-page .pf-img .layer h3 {
  font-family: "Montserrat-Semibold";
  margin-bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page .pf-img .layer h3 {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #product-finder-page .pf-img .layer h3 {
    font-size: 12px;
  }
}
#product-finder-page #fourth .product_id {
  float: right;
  margin: 10px 10px;
}
#product-finder-page #fourth .input-wrapper {
  width: 100%;
  margin: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page #fourth .input-wrapper {
    width: auto;
    display: block;
  }
}
#product-finder-page #fourth .input-wrapper .type-product {
  margin-right: 30px;
  width: 25%;
  margin-bottom: 30px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
  padding-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page #fourth .input-wrapper .type-product {
    /*width: 100%;*/
    width: 90%;
    margin-right: 0px;
  }
}
#product-finder-page #fourth .input-wrapper img {
  padding: 3rem;
  padding-bottom: 10px;
  padding-top: 0px;
}
#product-finder-page #fourth .input-wrapper h2 {
  font-size: 14px;
  text-align: center;
  padding: 20px;
  line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #product-finder-page #fourth .input-wrapper h2 {
    width: auto;
  }
}
#product-finder-page #fourth .input-wrapper .wc_color_attibutes {
  justify-content: center;
}
#product-finder-page #fourth .input-wrapper .price {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#product-finder-page .alert-messg,
#product-finder-page .alert-messg-mobile {
  display: none;
}

#blog .product {
  position: relative;
}
#blog .pf_on_hover {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  align-items: center;
  justify-content: center;
  top: 0px;
  transition: all 1s;
  -webkit-transition: all 1s;
}
#blog .inside_on_hover {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  position: absolute;
  z-index: 3;
}
#blog .product:hover .pf_on_hover {
  display: flex;
  transition: all 1s;
  -webkit-transition: all 1s;
}
#blog .addtocartbutton {
  display: none;
}

.menu-icon,
.menu-icon2 {
  height: auto;
  width: auto;
  position: fixed;
  z-index: 2;
  left: 92px;
  top: 13px;
  cursor: pointer;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .menu-icon,
  .menu-icon2 {
    left: 22px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .menu-icon,
  .menu-icon2 {
    left: 22px;
  }
}
.menu-icon__line,
.menu-icon2__line {
  height: 2px;
  width: 42px;
  display: block;
  background-color: #ef3e42;
  margin-bottom: 4px;
  transition: transform 0.2s ease, background-color 0.5s ease;
}
.menu-icon__line-left,
.menu-icon2__line-left {
  width: 24px;
}
.menu-icon__line-right,
.menu-icon2__line-right {
  width: 12px;
}

@media only screen and (max-width: 1366px) and (min-width: 768px) {
  .menu-icon2 {
    left: 60px;
  }
}

@media only screen and (max-width: 1366px) and (min-width: 768px) {
  .menu-icon {
    left: 72px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .menu-icon {
    left: 25px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .menu-icon {
    left: 22px;
  }
}

.nav {
  position: fixed;
  z-index: 1;
  /*
  	&__list-item::after{
  		content: "";
  		display: block;
  		width: 15%;
  		height: 2px;
  		background: $primary_color;
  		transition: width 0.3s;
  		margin-top: 5px;
  		@include screen(small) {
  			margin-top: -5px;
  		}
  		@include screen(large) {
  			margin-left: 14%;
  		}
  	}
  */
}
.nav:before, .nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(234, 234, 234, 0.2);
  z-index: -1;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transform: translateX(0%) translateY(-100%);
  left: 0;
  top: 0;
}
.nav:after {
  background: white;
  transition-delay: 0s;
}
.nav:before {
  transition-delay: 0.1s;
}
.nav__content {
  position: fixed;
  top: 50%;
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: calc(2vw + 10px);
  font-weight: 200;
  cursor: pointer;
  left: 0;
  overflow-y: auto;
  height: 600px;
}
.nav__list-item {
  position: relative;
  transition-delay: 0.8s;
  opacity: 0;
  transform: translate(0%, 100%);
  transition: opacity 0.2s ease, transform 0.3s ease;
  margin-right: 25px;
  font-size: 25px;
  margin-bottom: 20px;
}
.nav__list-item:hover:before {
  width: 100%;
}

.nav__list-item ul {
  display: none;
}

.nav__list-item ul li a {
  font-family: "Montserrat-Regular";
  color: #ef3e42;
}

.nav__list-item ul li {
  position: relative;
}

#close-menu,
#close-menu2 {
  display: none;
  font-size: 40px;
  -webkit-text-stroke: 6px #fff;
}

.menu-strike {
  display: block;
}

.show_menu {
  display: flex !important;
  justify-content: center !important;
  margin: 10px 0px !important;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .show_menu {
    display: block !important;
  }
}

/*
.bathroom-inspi {
	display: block!important;
    margin: 20px 0px!important;
}
*/
.show_menu li {
  margin: 10px;
  margin: 10px;
  font-size: 18px;
}

.nav__list,
.nav__content {
  display: none;
}

/*
.nav__list {
	display: none;1
}
*/
body.nav-active .menu-icon__line,
body.nav-active .menu-icon2__line {
  background-color: #000;
  transform: translateX(0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left,
body.nav-active .menu-icon2__line-left {
  transform: translateX(1px) rotate(45deg);
}
body.nav-active .menu-icon__line-right,
body.nav-active .menu-icon2__line-right {
  transform: translateX(-2px) rotate(45deg);
}
body.nav-active .nav {
  visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
  transform: translateX(0%) translateY(0%);
}
body.nav-active .nav:after {
  transition-delay: 0.1s;
}
body.nav-active .nav:before {
  transition-delay: 0s;
}
body.nav-active .nav__list-item {
  opacity: 1;
  transform: translateX(0%);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  /*
  			width: 30%;
  		    margin: 15px auto;
  		    text-align: center;
  */
  /*
  			a {
  				position: relative;
  			}
  */
  /*
  			img {
  				position: relative
  			}
  */
}
body.nav-active .nav__list-item:nth-child(0) {
  transition-delay: 0.5s;
}
body.nav-active .nav__list-item:nth-child(1) {
  transition-delay: 0.6s;
}
body.nav-active .nav__list-item:nth-child(2) {
  transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(3) {
  transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(4) {
  transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(5) {
  transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(6) {
  transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(7) {
  transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(8) {
  transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(9) {
  transition-delay: 1.4s;
}
body.nav-active .nav__list-item:nth-child(10) {
  transition-delay: 1.5s;
}
body.nav-active .nav__list-item:nth-child(11) {
  transition-delay: 1.6s;
}
body.nav-active .nav__list-item:nth-child(12) {
  transition-delay: 1.7s;
}
body.nav-active .nav__list-item i {
  float: right;
}

#talk-to-expert .banner {
  width: 100%;
  position: relative;
}
#talk-to-expert .banner img {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #talk-to-expert .banner img {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #talk-to-expert .banner img {
    height: 300px;
  }
}
#talk-to-expert .booking_form_div textarea {
  height: 100px !important;
}
#talk-to-expert #submiting1 .alert-success {
  font-size: 18px;
}
#talk-to-expert .time-slot {
  overflow-y: scroll;
  height: 208px;
}
#talk-to-expert .datepick-header {
  margin-bottom: 20px;
  background: #fff;
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#talk-to-expert .datepick-header span {
  font-family: "Montserrat-Semibold";
  color: #000;
}
#talk-to-expert .faq-content {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -225px;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .faq-content {
    position: absolute;
    top: 45%;
    left: 50%;
    margin-left: -100px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #talk-to-expert .faq-content {
    top: 10%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #talk-to-expert .faq-content {
    top: 14%;
  }
}
#talk-to-expert .faq-content h1 {
  text-transform: uppercase;
  color: #000;
  font-family: "Montserrat-Semibold";
}
#talk-to-expert .banner-content p {
  text-align: center;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 2rem;
}
#talk-to-expert .wpbc_times_selector {
  font-size: 12px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .wpbc_times_selector {
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#talk-to-expert .wpbc_times_selector div {
  border-radius: 25px;
  background: #fff !important;
  color: #000;
  margin-top: 10px !important;
}
#talk-to-expert .wpbc_times_selector div.wpbc_time_selected {
  background: #fff;
  color: #000;
  border-color: #ef3e42;
}
#talk-to-expert .choose-time {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin-bottom: 20px;
}
#talk-to-expert #booking_form_div1 textarea {
  margin-top: 15px;
}
#talk-to-expert #booking_form_div1 input,
#talk-to-expert #booking_form_div1 select {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  padding-bottom: 10px;
  -webkit-appearance: none;
  width: 100%;
}
#talk-to-expert #booking_form_div1 select {
  padding-left: 0px;
  font-size: 13px;
}
#talk-to-expert #booking_form_div1 .ginput_container_select {
  position: relative;
}
#talk-to-expert #booking_form_div1 input:focus,
#talk-to-expert #booking_form_div1 select:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid #ef3e42;
  transition: 0.5s ease-in-out;
}
#talk-to-expert #booking_form_div1 ::-moz-placeholder {
  font-size: 14px;
  color: #000000;
}
#talk-to-expert #booking_form_div1 ::placeholder {
  font-size: 14px;
  color: #000000;
}
#talk-to-expert #booking_form_div1 textarea:focus {
  border: 1px solid #ef3e42;
  outline: none;
}
#talk-to-expert #booking_form_div1 li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: none;
  border-bottom: 1px solid #790000;
}
#talk-to-expert .wpbc_structure_form {
  float: left !important;
  display: inline-block !important;
  width: 34%;
  margin-right: 50px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .wpbc_structure_form {
    width: 100%;
    margin-right: 0px;
    padding: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #talk-to-expert .wpbc_structure_form {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #talk-to-expert .wpbc_structure_form {
    margin-right: 40px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #talk-to-expert .wpbc_structure_form {
    margin-right: 45px;
  }
}
#talk-to-expert .wpbc_structure_form .form-group {
  margin: 20px 0px;
}
#talk-to-expert .wpbc_structure_form .form-group label {
  font-size: 12px;
  color: #969696;
}
#talk-to-expert .wpbc_structure_form .form-group input {
  padding-left: 0px;
}
#talk-to-expert .wpbc_structure_form .controls {
  margin-top: 2px;
}
#talk-to-expert .booking_form textarea {
  width: 100%;
  border: 1px solid #000000;
}
#talk-to-expert .book_appointment {
  padding: 10px 0px;
  border: 1px solid #f4f4f4;
  padding-left: 20px;
  font-size: 14px;
  font-family: "Montserrat-Regular";
  margin-right: 10px;
}
#talk-to-expert .query1::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  color: #ef3e42;
}
#talk-to-expert .calender {
  float: left;
  padding: 10px;
  background: #f4f4f4;
  position: relative;
  /*//height: 62.4%;*/
  /*height: 100%;*/
  min-height: 363px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .calender {
    margin-bottom: 15px;
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #talk-to-expert .calender {
    width: 50%;
  }
}
#talk-to-expert .calender .wpdev-help-message.alert.alert-warning {
  position: absolute;
  bottom: -9%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .calender .wpdev-help-message.alert.alert-warning {
    bottom: -12%;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .booking_form_div textarea {
    width: 94% !important;
  }
}
#talk-to-expert .slots {
  width: 54%;
  display: inline-block;
  /*height: 325px;*/
  padding: 7px;
  background: #f4f4f4;
  margin: 0px;
  /*height: 100%;*/
  min-height: 363px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .slots {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #talk-to-expert .slots {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #talk-to-expert .slots {
    width: 52%;
  }
}
#talk-to-expert .wpbc_structure_calendar {
  float: right;
  width: 61%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .wpbc_structure_calendar {
    width: 100% !important;
    padding: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #talk-to-expert .wpbc_structure_calendar {
    width: 100% !important;
  }
}
#talk-to-expert .wpbc_structure_calendar div:nth-child(4) {
  background: transparent;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
#talk-to-expert .wpbc_structure_calendar div:last-child {
  text-align: center;
}
#talk-to-expert .wpbc_structure_calendar div:last-child .btn {
  width: -moz-max-content !important;
  width: max-content !important;
  padding-bottom: 0px !important;
  border-bottom: none !important;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-family: "Montserrat-Regular";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  text-shadow: none;
}
#talk-to-expert .wpbc_structure_calendar div:last-child .btn:hover {
  background: #fff;
  color: #ef3e42 !important;
  border: 1px solid #ef3e42 !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .wpbc_structure_calendar div:last-child .btn {
    margin: auto;
    font-size: 12px;
    width: auto;
    margin: 10px;
    padding: 0px 20px !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #talk-to-expert .wpbc_structure_calendar div:last-child .btn {
    margin: 0;
    font-size: 12px;
    margin: 10px;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
  }
}
#talk-to-expert .datepick-inline {
  padding: 1rem;
  padding-top: 0;
  padding-right: 0px;
  padding-left: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert .datepick-inline {
    padding: 0px;
  }
}
#talk-to-expert .wpdev-help-message alert alert-warning {
  display: flex;
  justify-content: center;
}
#talk-to-expert .wpbc_times_selector {
  justify-content: center;
}
#talk-to-expert table,
#talk-to-expert thead,
#talk-to-expert tbody,
#talk-to-expert tr,
#talk-to-expert td,
#talk-to-expert th {
  border: none;
}
#talk-to-expert .datepick-inline .datepick {
  background: #f4f4f4;
}
#talk-to-expert .block_hints .block_free,
#talk-to-expert .block_hints .block_time,
#talk-to-expert .block_hints .block_check_in_out div.check-in-div,
#talk-to-expert .block_hints .block_check_in_out div.check-out-div,
#talk-to-expert .datepick-inline .date_available,
#talk-to-expert .datepick-inline .timespartly.check_in_time div.check-in-div,
#talk-to-expert .datepick-inline .timespartly.check_out_time div.check-out-div {
  background: transparent;
}
#talk-to-expert .datepick-inline .datepick-one-month .datepick .datepick-current-day {
  background: #fff;
  border: 1px solid #ef3e42;
}
#talk-to-expert .datepick-inline .datepick-one-month .datepick .datepick-current-day a {
  color: #000;
}
#talk-to-expert .block_hints .date2approve.block_check_in_out,
#talk-to-expert .block_hints .block_pending,
#talk-to-expert .datepick-inline .date2approve,
#talk-to-expert .block_hints .block_pending a,
#talk-to-expert .datepick-inline .date2approve a {
  color: #fff;
  opacity: 0.4;
}
#talk-to-expert .block_hints .date2approve.block_check_in_out,
#talk-to-expert .block_hints .block_pending,
#talk-to-expert .datepick-inline .date2approve,
#talk-to-expert td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve div.check-in-div,
#talk-to-expert td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div.check-out-div {
  background-color: #ef3e42;
  opacity: 0.4;
}
#talk-to-expert .wpdev-help-message.alert.alert-warning,
#talk-to-expert .wpdev-help-message .alert.alert-warning {
  bottom: 30%;
  border: none;
  background-color: transparent;
  color: #ef3e42;
  bottom: 29%;
  border: none;
  background-color: transparent;
  color: #ef3e42;
  text-align: center;
  margin: auto;
  font-size: 10px;
  display: flex;
  justify-content: center;
}
#talk-to-expert label[for=terms1] {
  font-size: 14px;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert label[for=terms1] {
    font-size: 11px;
  }
}
#talk-to-expert label[for=terms1] a {
  font-family: "Montserrat-Semibold";
  text-decoration: underline;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert label[for=terms1] a {
    font-size: 11px;
  }
}
#talk-to-expert label[for=terms1]:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#talk-to-expert input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #talk-to-expert input:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #talk-to-expert input:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #talk-to-expert input:checked + label:after {
    top: -2px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #talk-to-expert .wpbc_booking_form_structure {
    display: grid;
    padding: 15px;
  }
}
#talk-to-expert .datepick-inline .calendar-links .datepick-next {
  top: 8px;
  right: 0px;
  text-align: right;
}
#talk-to-expert .datepick-inline .calendar-links .datepick-prev {
  top: 8px;
  left: 0px;
}
#talk-to-expert .datepick-inline .calendar-links {
  padding: 0rem;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .sbi_photo_wrap a {
    width: 73px;
    height: 91px;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #sb_instagram.sbi_col_6 #sbi_images .sbi_item {
    width: 28%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  #sb_instagram.sbi_col_4 #sbi_images .sbi_item {
    width: 25%;
  }
}

#sb_instagram {
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #sb_instagram {
    height: auto;
    text-align: center;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #sb_instagram #sbi_images .sbi_item {
    float: none;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #sb_instagram .sbi_photo {
    position: relative;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #sb_instagram.sbi_col_3 #sbi_images .sbi_item,
  #sb_instagram.sbi_col_4 #sbi_images .sbi_item,
  #sb_instagram.sbi_col_5 #sbi_images .sbi_item,
  #sb_instagram.sbi_col_6 #sbi_images .sbi_item {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#sbi_images {
  padding-left: 0px !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #sbi_images {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #sb_instagram .sbi_type_carousel .sbi_playbtn,
  #sb_instagram .sbi_type_video .sbi_playbtn {
    margin-top: -11px;
    margin-left: -9px;
    padding: 0;
    font-size: 25px;
  }
}

#cookie-law-info-bar {
  background-color: #fff !important;
  color: #000 !important;
}
#cookie-law-info-bar .cli-bar-message {
  font-size: 10px;
  line-height: 25px;
  font-family: "Montserrat-Regular";
}
#cookie-law-info-bar .cli-bar-btn_container a:last-child {
  background-color: #ef3e42 !important;
  color: #fff !important;
}
#cookie-law-info-bar .cli-bar-btn_container a {
  font-size: 10px;
}

#cookie-law-info-bar[data-cli-style=cli-style-v2] {
  padding: 10px 25px;
}

.woocommerce-info {
  border-top-color: #ef3e42;
}

.woocommerce-info::before {
  color: #ef3e42;
}

.gform_confirmation_wrapper .gform_confirmation_message {
  color: #000;
  font-size: 25px;
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -350px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .gform_confirmation_wrapper .gform_confirmation_message {
    left: 0;
    margin-left: 0;
    font-size: 20px;
    text-align: center;
  }
}

.toggle_overflow {
  overflow: hidden;
}

#login,
#register,
#lost_password {
  margin: 30px 0px;
}
#login .m-auto,
#register .m-auto,
#lost_password .m-auto {
  margin: auto;
}
#login .m-auto .login-header,
#register .m-auto .login-header,
#lost_password .m-auto .login-header {
  padding: 20px;
  border: 1px solid #f4f4f4;
}
#login .m-auto .login-header h1,
#register .m-auto .login-header h1,
#lost_password .m-auto .login-header h1 {
  text-align: center;
  font-family: "Montserrat";
  font-size: 30px;
  margin: auto;
  text-transform: uppercase;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header h1,
  #register .m-auto .login-header h1,
  #lost_password .m-auto .login-header h1 {
    font-size: 20px;
  }
}
#login .m-auto .login-header p,
#register .m-auto .login-header p,
#lost_password .m-auto .login-header p {
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header p,
  #register .m-auto .login-header p,
  #lost_password .m-auto .login-header p {
    font-size: 12px;
  }
}
#login .m-auto .login-header h1::after,
#register .m-auto .login-header h1::after,
#lost_password .m-auto .login-header h1::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin: auto;
  margin-top: 8px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header h1::after,
  #register .m-auto .login-header h1::after,
  #lost_password .m-auto .login-header h1::after {
    margin-top: 5px;
  }
}
#login .m-auto .login-header .tml-login .tml-label,
#login .m-auto .login-header .tml-register .tml-label,
#login .m-auto .login-header .tml-lostpassword .tml-label,
#register .m-auto .login-header .tml-login .tml-label,
#register .m-auto .login-header .tml-register .tml-label,
#register .m-auto .login-header .tml-lostpassword .tml-label,
#lost_password .m-auto .login-header .tml-login .tml-label,
#lost_password .m-auto .login-header .tml-register .tml-label,
#lost_password .m-auto .login-header .tml-lostpassword .tml-label {
  font-size: 14px;
}
#login .m-auto .login-header .tml-login .tml-links,
#login .m-auto .login-header .tml-register .tml-links,
#login .m-auto .login-header .tml-lostpassword .tml-links,
#register .m-auto .login-header .tml-login .tml-links,
#register .m-auto .login-header .tml-register .tml-links,
#register .m-auto .login-header .tml-lostpassword .tml-links,
#lost_password .m-auto .login-header .tml-login .tml-links,
#lost_password .m-auto .login-header .tml-register .tml-links,
#lost_password .m-auto .login-header .tml-lostpassword .tml-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header .tml-login .tml-links,
  #login .m-auto .login-header .tml-register .tml-links,
  #login .m-auto .login-header .tml-lostpassword .tml-links,
  #register .m-auto .login-header .tml-login .tml-links,
  #register .m-auto .login-header .tml-register .tml-links,
  #register .m-auto .login-header .tml-lostpassword .tml-links,
  #lost_password .m-auto .login-header .tml-login .tml-links,
  #lost_password .m-auto .login-header .tml-register .tml-links,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-links {
    font-size: 12px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header .tml-login .tml-links .tml-register-link,
  #login .m-auto .login-header .tml-login .tml-links .tml-login-link,
  #login .m-auto .login-header .tml-register .tml-links .tml-register-link,
  #login .m-auto .login-header .tml-register .tml-links .tml-login-link,
  #login .m-auto .login-header .tml-lostpassword .tml-links .tml-register-link,
  #login .m-auto .login-header .tml-lostpassword .tml-links .tml-login-link,
  #register .m-auto .login-header .tml-login .tml-links .tml-register-link,
  #register .m-auto .login-header .tml-login .tml-links .tml-login-link,
  #register .m-auto .login-header .tml-register .tml-links .tml-register-link,
  #register .m-auto .login-header .tml-register .tml-links .tml-login-link,
  #register .m-auto .login-header .tml-lostpassword .tml-links .tml-register-link,
  #register .m-auto .login-header .tml-lostpassword .tml-links .tml-login-link,
  #lost_password .m-auto .login-header .tml-login .tml-links .tml-register-link,
  #lost_password .m-auto .login-header .tml-login .tml-links .tml-login-link,
  #lost_password .m-auto .login-header .tml-register .tml-links .tml-register-link,
  #lost_password .m-auto .login-header .tml-register .tml-links .tml-login-link,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-links .tml-register-link,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-links .tml-login-link {
    font-size: 12px;
  }
}
#login .m-auto .login-header .tml-login .tml-links .tml-register-link a,
#login .m-auto .login-header .tml-login .tml-links .tml-login-link a,
#login .m-auto .login-header .tml-register .tml-links .tml-register-link a,
#login .m-auto .login-header .tml-register .tml-links .tml-login-link a,
#login .m-auto .login-header .tml-lostpassword .tml-links .tml-register-link a,
#login .m-auto .login-header .tml-lostpassword .tml-links .tml-login-link a,
#register .m-auto .login-header .tml-login .tml-links .tml-register-link a,
#register .m-auto .login-header .tml-login .tml-links .tml-login-link a,
#register .m-auto .login-header .tml-register .tml-links .tml-register-link a,
#register .m-auto .login-header .tml-register .tml-links .tml-login-link a,
#register .m-auto .login-header .tml-lostpassword .tml-links .tml-register-link a,
#register .m-auto .login-header .tml-lostpassword .tml-links .tml-login-link a,
#lost_password .m-auto .login-header .tml-login .tml-links .tml-register-link a,
#lost_password .m-auto .login-header .tml-login .tml-links .tml-login-link a,
#lost_password .m-auto .login-header .tml-register .tml-links .tml-register-link a,
#lost_password .m-auto .login-header .tml-register .tml-links .tml-login-link a,
#lost_password .m-auto .login-header .tml-lostpassword .tml-links .tml-register-link a,
#lost_password .m-auto .login-header .tml-lostpassword .tml-links .tml-login-link a {
  font-family: "Montserrat-Regular";
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header .tml-login .tml-links .tml-lostpassword-link,
  #login .m-auto .login-header .tml-register .tml-links .tml-lostpassword-link,
  #login .m-auto .login-header .tml-lostpassword .tml-links .tml-lostpassword-link,
  #register .m-auto .login-header .tml-login .tml-links .tml-lostpassword-link,
  #register .m-auto .login-header .tml-register .tml-links .tml-lostpassword-link,
  #register .m-auto .login-header .tml-lostpassword .tml-links .tml-lostpassword-link,
  #lost_password .m-auto .login-header .tml-login .tml-links .tml-lostpassword-link,
  #lost_password .m-auto .login-header .tml-register .tml-links .tml-lostpassword-link,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-links .tml-lostpassword-link {
    font-size: 12px;
  }
}
#login .m-auto .login-header .tml-login .tml-links .tml-lostpassword-link a,
#login .m-auto .login-header .tml-register .tml-links .tml-lostpassword-link a,
#login .m-auto .login-header .tml-lostpassword .tml-links .tml-lostpassword-link a,
#register .m-auto .login-header .tml-login .tml-links .tml-lostpassword-link a,
#register .m-auto .login-header .tml-register .tml-links .tml-lostpassword-link a,
#register .m-auto .login-header .tml-lostpassword .tml-links .tml-lostpassword-link a,
#lost_password .m-auto .login-header .tml-login .tml-links .tml-lostpassword-link a,
#lost_password .m-auto .login-header .tml-register .tml-links .tml-lostpassword-link a,
#lost_password .m-auto .login-header .tml-lostpassword .tml-links .tml-lostpassword-link a {
  font-family: "Montserrat-Semibold";
  color: #ef3e42;
}
#login .m-auto .login-header .tml-login .tml-button,
#login .m-auto .login-header .tml-register .tml-button,
#login .m-auto .login-header .tml-lostpassword .tml-button,
#register .m-auto .login-header .tml-login .tml-button,
#register .m-auto .login-header .tml-register .tml-button,
#register .m-auto .login-header .tml-lostpassword .tml-button,
#lost_password .m-auto .login-header .tml-login .tml-button,
#lost_password .m-auto .login-header .tml-register .tml-button,
#lost_password .m-auto .login-header .tml-lostpassword .tml-button {
  display: grid;
  width: 150px;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-family: "Montserrat";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  margin: auto;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header .tml-login .tml-button,
  #login .m-auto .login-header .tml-register .tml-button,
  #login .m-auto .login-header .tml-lostpassword .tml-button,
  #register .m-auto .login-header .tml-login .tml-button,
  #register .m-auto .login-header .tml-register .tml-button,
  #register .m-auto .login-header .tml-lostpassword .tml-button,
  #lost_password .m-auto .login-header .tml-login .tml-button,
  #lost_password .m-auto .login-header .tml-register .tml-button,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-button {
    margin: auto;
    font-size: 12px;
    width: auto;
    margin: 10px;
    margin: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #login .m-auto .login-header .tml-login .tml-button,
  #login .m-auto .login-header .tml-register .tml-button,
  #login .m-auto .login-header .tml-lostpassword .tml-button,
  #register .m-auto .login-header .tml-login .tml-button,
  #register .m-auto .login-header .tml-register .tml-button,
  #register .m-auto .login-header .tml-lostpassword .tml-button,
  #lost_password .m-auto .login-header .tml-login .tml-button,
  #lost_password .m-auto .login-header .tml-register .tml-button,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-button {
    margin: 0;
    font-size: 12px;
    margin: 10px;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
  }
}
#login .m-auto .login-header .tml-login .tml-field-wrap,
#login .m-auto .login-header .tml-register .tml-field-wrap,
#login .m-auto .login-header .tml-lostpassword .tml-field-wrap,
#register .m-auto .login-header .tml-login .tml-field-wrap,
#register .m-auto .login-header .tml-register .tml-field-wrap,
#register .m-auto .login-header .tml-lostpassword .tml-field-wrap,
#lost_password .m-auto .login-header .tml-login .tml-field-wrap,
#lost_password .m-auto .login-header .tml-register .tml-field-wrap,
#lost_password .m-auto .login-header .tml-lostpassword .tml-field-wrap {
  margin: 2rem 0rem;
}
#login .m-auto .login-header .tml-login .tml-field-wrap input[type=text],
#login .m-auto .login-header .tml-login .tml-field-wrap input[type=password],
#login .m-auto .login-header .tml-login .tml-field-wrap input[type=email],
#login .m-auto .login-header .tml-register .tml-field-wrap input[type=text],
#login .m-auto .login-header .tml-register .tml-field-wrap input[type=password],
#login .m-auto .login-header .tml-register .tml-field-wrap input[type=email],
#login .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=text],
#login .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=password],
#login .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=email],
#register .m-auto .login-header .tml-login .tml-field-wrap input[type=text],
#register .m-auto .login-header .tml-login .tml-field-wrap input[type=password],
#register .m-auto .login-header .tml-login .tml-field-wrap input[type=email],
#register .m-auto .login-header .tml-register .tml-field-wrap input[type=text],
#register .m-auto .login-header .tml-register .tml-field-wrap input[type=password],
#register .m-auto .login-header .tml-register .tml-field-wrap input[type=email],
#register .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=text],
#register .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=password],
#register .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=email],
#lost_password .m-auto .login-header .tml-login .tml-field-wrap input[type=text],
#lost_password .m-auto .login-header .tml-login .tml-field-wrap input[type=password],
#lost_password .m-auto .login-header .tml-login .tml-field-wrap input[type=email],
#lost_password .m-auto .login-header .tml-register .tml-field-wrap input[type=text],
#lost_password .m-auto .login-header .tml-register .tml-field-wrap input[type=password],
#lost_password .m-auto .login-header .tml-register .tml-field-wrap input[type=email],
#lost_password .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=text],
#lost_password .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=password],
#lost_password .m-auto .login-header .tml-lostpassword .tml-field-wrap input[type=email] {
  border: 0;
  border-bottom: 1px solid;
  border-radius: 0;
}
#login .m-auto .login-header .tml-login .tml-indicator-wrap,
#login .m-auto .login-header .tml-register .tml-indicator-wrap,
#login .m-auto .login-header .tml-lostpassword .tml-indicator-wrap,
#register .m-auto .login-header .tml-login .tml-indicator-wrap,
#register .m-auto .login-header .tml-register .tml-indicator-wrap,
#register .m-auto .login-header .tml-lostpassword .tml-indicator-wrap,
#lost_password .m-auto .login-header .tml-login .tml-indicator-wrap,
#lost_password .m-auto .login-header .tml-register .tml-indicator-wrap,
#lost_password .m-auto .login-header .tml-lostpassword .tml-indicator-wrap {
  display: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header .tml-login .tml-error,
  #login .m-auto .login-header .tml-register .tml-error,
  #login .m-auto .login-header .tml-lostpassword .tml-error,
  #register .m-auto .login-header .tml-login .tml-error,
  #register .m-auto .login-header .tml-register .tml-error,
  #register .m-auto .login-header .tml-lostpassword .tml-error,
  #lost_password .m-auto .login-header .tml-login .tml-error,
  #lost_password .m-auto .login-header .tml-register .tml-error,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-error {
    font-size: 12px;
  }
}
#login .m-auto .login-header .tml-login .tml-alerts,
#login .m-auto .login-header .tml-register .tml-alerts,
#login .m-auto .login-header .tml-lostpassword .tml-alerts,
#register .m-auto .login-header .tml-login .tml-alerts,
#register .m-auto .login-header .tml-register .tml-alerts,
#register .m-auto .login-header .tml-lostpassword .tml-alerts,
#lost_password .m-auto .login-header .tml-login .tml-alerts,
#lost_password .m-auto .login-header .tml-register .tml-alerts,
#lost_password .m-auto .login-header .tml-lostpassword .tml-alerts {
  margin-top: 20px;
}
#login .m-auto .login-header .tml-login .indicator-hint,
#login .m-auto .login-header .tml-register .indicator-hint,
#login .m-auto .login-header .tml-lostpassword .indicator-hint,
#register .m-auto .login-header .tml-login .indicator-hint,
#register .m-auto .login-header .tml-register .indicator-hint,
#register .m-auto .login-header .tml-lostpassword .indicator-hint,
#lost_password .m-auto .login-header .tml-login .indicator-hint,
#lost_password .m-auto .login-header .tml-register .indicator-hint,
#lost_password .m-auto .login-header .tml-lostpassword .indicator-hint {
  font-size: 12px;
}
#login .m-auto .login-header .tml-login .tml-rememberme-wrap label[for=rememberme],
#login .m-auto .login-header .tml-register .tml-rememberme-wrap label[for=rememberme],
#login .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap label[for=rememberme],
#register .m-auto .login-header .tml-login .tml-rememberme-wrap label[for=rememberme],
#register .m-auto .login-header .tml-register .tml-rememberme-wrap label[for=rememberme],
#register .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap label[for=rememberme],
#lost_password .m-auto .login-header .tml-login .tml-rememberme-wrap label[for=rememberme],
#lost_password .m-auto .login-header .tml-register .tml-rememberme-wrap label[for=rememberme],
#lost_password .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap label[for=rememberme] {
  cursor: pointer;
}
#login .m-auto .login-header .tml-login .tml-rememberme-wrap label:before,
#login .m-auto .login-header .tml-register .tml-rememberme-wrap label:before,
#login .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap label:before,
#register .m-auto .login-header .tml-login .tml-rememberme-wrap label:before,
#register .m-auto .login-header .tml-register .tml-rememberme-wrap label:before,
#register .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap label:before,
#lost_password .m-auto .login-header .tml-login .tml-rememberme-wrap label:before,
#lost_password .m-auto .login-header .tml-register .tml-rememberme-wrap label:before,
#lost_password .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#login .m-auto .login-header .tml-login .tml-rememberme-wrap .tml-label,
#login .m-auto .login-header .tml-register .tml-rememberme-wrap .tml-label,
#login .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap .tml-label,
#register .m-auto .login-header .tml-login .tml-rememberme-wrap .tml-label,
#register .m-auto .login-header .tml-register .tml-rememberme-wrap .tml-label,
#register .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap .tml-label,
#lost_password .m-auto .login-header .tml-login .tml-rememberme-wrap .tml-label,
#lost_password .m-auto .login-header .tml-register .tml-rememberme-wrap .tml-label,
#lost_password .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap .tml-label {
  position: relative;
}
#login .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
#login .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
#login .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
#register .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
#register .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
#register .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
#lost_password .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
#lost_password .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
#lost_password .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #login .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #login .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #login .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #login .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #login .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #login .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #login .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #login .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #login .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #register .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-login .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-register .tml-rememberme-wrap input[type=checkbox]:checked + label:after,
  #lost_password .m-auto .login-header .tml-lostpassword .tml-rememberme-wrap input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
#login .m-auto .login-header .tml-lostpassword .tml-button,
#register .m-auto .login-header .tml-lostpassword .tml-button,
#lost_password .m-auto .login-header .tml-lostpassword .tml-button {
  width: -moz-max-content;
  width: max-content;
}

.media-breadcrum {
  display: inline-flex;
}
.media-breadcrum i {
  margin-left: 10px;
  margin-right: 10px;
  -webkit-text-stroke: 1px #fff;
  font-size: 25px;
}
.media-breadcrum a {
  font-size: 18px;
}

#brand-initialtive h3 {
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
#brand-initialtive iframe {
  width: 100%;
}
#brand-initialtive p {
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 30px;
}
#brand-initialtive .blocks-gallery-grid {
  display: flex;
}
#brand-initialtive .wp-block-gallery.is-cropped .blocks-gallery-item img {
  width: auto;
}

#media .media-banner, #brand-initialtive .media-banner {
  width: 100%;
}
#media .media-banner img, #brand-initialtive .media-banner img {
  width: 100%;
}
#media .media-banner p, #brand-initialtive .media-banner p {
  font-size: 14px;
  line-height: 25px;
  margin-top: 20px;
}
#media .media-inner, #brand-initialtive .media-inner {
  margin-bottom: 2rem;
}
#media .media-inner .media-inner-section, #brand-initialtive .media-inner .media-inner-section {
  margin-bottom: 10px;
}
#media .media-inner .media-inner-section h6, #brand-initialtive .media-inner .media-inner-section h6 {
  margin: 10px 0px;
  font-size: 16px;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
}
#media .media-inner .media-inner-section img, #brand-initialtive .media-inner .media-inner-section img {
  width: 100%;
}
#media .tabs-wrapper, #brand-initialtive .tabs-wrapper {
  position: initial;
}
#media .media-breadcrum i, #brand-initialtive .media-breadcrum i {
  margin-left: 10px;
  margin-right: 10px;
  -webkit-text-stroke: 1px #fff;
  font-size: 25px;
}
#media .media-breadcrum a, #brand-initialtive .media-breadcrum a {
  font-size: 18px;
}
#media #load-more, #media #load-less, #brand-initialtive #load-more, #brand-initialtive #load-less {
  margin: auto;
}

.show {
  z-index: 999;
  display: none;
}

.show .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.show .img-show {
  width: 600px;
  height: 400px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 999;
}

.img-show span {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
}

.img-show img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#policy-certification {
  /*.half {
  	float: left;
  	width: 10%;
    }*/
  /*
  	@keyframes marquee {
  		0% {
  			left: 20px;
  		}
  		100% {
  			left: -200%;
  		}
  	}
  */
  /* Swiper container */
  /* swiper responive image */
  /* Swiper custom pagination */
  /* Swiper custom pagination */
  /* Swiper custom pagination active state */
  /*==================================================================
  CODEPEN STYLES -(under codepen gear/setting icon)
  ==============================================++++++================*/
  /* Default (sharp) arrow */
  /* Round arrow */
  /* Styles the lightbox, removes it from sight and adds the fade-in transition */
}
#policy-certification .content-wrapper p {
  text-align: left;
  line-height: 30px;
}
#policy-certification .download-wrapper {
  margin-bottom: 20px;
}
#policy-certification .download-wrapper .download-policy {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #f4f4f4;
}
#policy-certification .download-wrapper .download-policy .policy-name span {
  font-size: 14px;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  margin-left: 20px;
  display: flex;
  width: 200px;
}
#policy-certification .quality-policy {
  margin: 30px 0px;
}
#policy-certification .orb:hover {
  cursor: pointer;
}
#policy-certification .marquee {
  height: 240px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 30px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #policy-certification .marquee {
    width: 100%;
  }
}
#policy-certification .marquee--inner {
  display: block;
  width: 200%;
  position: absolute;
  animation: marquee 20s linear infinite;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #policy-certification .marquee--inner {
    width: 600%;
    animation: marquee 5s linear infinite;
  }
}
#policy-certification .marquee--inner:hover {
  animation-play-state: paused;
}
#policy-certification .orb {
  margin-right: 20px;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #policy-certification .content-title::after {
    margin-left: 0%;
  }
}
#policy-certification .marquee--inner span {
  float: left;
  display: flex;
  align-items: center;
}
#policy-certification ul.swiper-wrapper {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
#policy-certification .swiper-container {
  max-width: 100%;
}
#policy-certification .swiper-container img {
  height: auto;
}
#policy-certification .swiper-slide {
  /* Remove this if you want 1 slide perview - than change slidesPerView js-option to 1 -or- 2+ instead of 'auto' */
  width: 80%;
}
#policy-certification .swiper-pagination-bullet {
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  font-size: 14px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.3);
  transition: background-color 0.5s ease, color 0.5s ease;
}
#policy-certification .swiper-pagination-bullet:hover {
  transition: background-color 0.5s ease;
  background: rgb(0, 0, 0);
  color: white;
}
#policy-certification .swiper-pagination-bullet-active {
  color: #fff;
  background: black;
}
#policy-certification .tippy-tooltip.light-theme {
  color: #26323d;
  box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
  background-color: white;
}
#policy-certification .tippy-backdrop {
  background-color: white;
}
#policy-certification .tippy-roundarrow {
  fill: white;
}
#policy-certification .tippy-popper[x-placement^=top] .tippy-tooltip.light-theme .tippy-arrow {
  border-top-color: #fff;
}
#policy-certification .tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme .tippy-arrow {
  border-bottom-color: #fff;
}
#policy-certification .tippy-popper[x-placement^=left] .tippy-tooltip.light-theme .tippy-arrow {
  border-left-color: #fff;
}
#policy-certification .tippy-popper[x-placement^=right] .tippy-tooltip.light-theme .tippy-arrow {
  border-right-color: #fff;
}
#policy-certification .tippy-tooltip.light-theme .tippy-roundarrow {
  fill: #fff;
}

#investors .tabs-wrapper {
  margin-bottom: 2rem;
  position: sticky;
  top: 14%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #investors .tabs-wrapper {
    top: 6%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #investors .tabs-wrapper {
    top: 11%;
  }
}
#investors .tabs-wrapper .tabs-heading h2 {
  font-family: "Montserrat";
  margin-top: 0px;
  border-bottom: 2px solid #ef3e42;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #investors .tabs-wrapper .tabs-heading h2 {
    font-size: 30px;
  }
}
#investors .tabs-wrapper .tabs-section {
  height: 430px;
  overflow-y: scroll;
  overflow-x: hidden;
}
#investors .tabs-wrapper .tabs-section ul a {
  border-bottom: 1px solid #f4f4f4;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #investors .tabs-wrapper .tabs-section {
    height: auto !important;
  }
}
#investors .sub-title {
  padding: 15px 15px 15px 0px;
}
#investors .sub-title::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #investors .sub-title {
    font-size: 20px;
  }
}
#investors #investors-wrapper p {
  font-size: 14px;
  text-align: left;
  line-height: 25px;
}
#investors #investors-wrapper ul li {
  display: flex;
  align-items: center;
  cursor: auto;
}
#investors #investors-wrapper ul i {
  margin-right: 10px;
  color: #ef3e42;
}
#investors #investors-wrapper h5 {
  font-family: "Montserrat-Semibold";
  color: #ef3e42;
}
#investors #investors-wrapper table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
#investors #investors-wrapper table td,
#investors #investors-wrapper table th {
  padding: 8px;
}
#investors #investors-wrapper table tr:nth-child(even) {
  background-color: #f2f2f2;
}
#investors #investors-wrapper table tr:hover {
  background-color: #ddd;
}
#investors #investors-wrapper table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #ef3e42;
  color: white;
  font-family: "Montserrat-Semibold";
}
#investors #investors-wrapper a:hover {
  color: #ef3e42;
}
#investors #investors-wrapper .images img {
  margin-bottom: 20px;
}
#investors #investors-wrapper .images a:hover {
  text-decoration: none;
}
#investors #investors-wrapper .images a:hover figcaption::after {
  content: "\f0da";
  font-family: fontAwesome;
  margin-left: 20px;
}
#investors #investors-wrapper p a {
  font-family: "Montserrat-Semibold";
  color: #ef3e42;
}
#investors #investors-wrapper .download-btn {
  font-size: 12px;
  background: red;
  padding: 10px;
  color: #fff;
  font-family: "Montserrat-Regular";
}
#investors #investors-wrapper .download-btn:hover {
  color: #fff;
}
#investors #investors-wrapper li span {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
  color: #ef3e42;
}
#investors #investors-wrapper .sections {
  font-size: 14px;
  margin-bottom: 10px;
}
#investors #investors-wrapper .sections span {
  font-size: 14px;
  margin-right: 5px;
}
#investors #investors-wrapper .sections a {
  color: #ef3e42;
}

#mobile-app-banner .page-content-wrapper {
  width: 500px;
  position: absolute;
  top: 0%;
  left: 10%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #mobile-app-banner .page-content-wrapper {
    width: auto;
    position: initial;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #mobile-app-banner .page-content-wrapper {
    width: auto;
    position: initial;
    padding: 20px 40px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #mobile-app-banner .page-content-wrapper {
    width: auto;
    position: initial;
    padding: 20px 40px;
  }
}
#mobile-app-banner .page-content-wrapper h2 {
  font-size: 25px;
  font-family: "Montserrat";
  line-height: 45px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #mobile-app-banner .page-content-wrapper h2 {
    width: 100%;
    font-size: 15px;
    font-family: "Montserrat";
    line-height: 20px;
    line-height: 25px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #mobile-app-banner .page-content-wrapper h2:after {
    margin-top: 5px;
    margin: auto;
    margin-top: 5px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #mobile-app-banner .page-content-wrapper h2:after {
    margin-left: 0px;
  }
}
#mobile-app-banner .page-content-wrapper p {
  width: auto;
  line-height: 25px;
  margin: 35px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #mobile-app-banner .page-content-wrapper p {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #mobile-app-banner .page-content-wrapper .store-icons {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #mobile-app-banner .page-content-wrapper .store-icons img {
    width: 100px;
  }
}
#mobile-app-banner .page-content-wrapper .store-icons a:last-child {
  margin-left: 30px;
}

#get-inspired-slider .customize-wrapper {
  text-align: center;
  padding: 2rem 0rem;
}
#get-inspired-slider .customize-wrapper h2 {
  display: inline-block;
  font-family: "Montserrat";
  font-size: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #get-inspired-slider .customize-wrapper h2 {
    width: auto;
    font-size: 17px;
    line-height: 30px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #get-inspired-slider .customize-wrapper h2::after {
    margin-top: 5px;
  }
}
#get-inspired-slider .customize-wrapper p {
  width: 430px;
  margin: auto;
  margin-top: 5px;
  line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #get-inspired-slider .customize-wrapper p {
    width: auto;
    font-size: 13px;
    line-height: 25px;
    margin-top: 15px;
  }
}
#get-inspired-slider .customize-wrapper .customize-mobile-img {
  position: relative;
}
#get-inspired-slider .customize-wrapper .customize-mobile-img img:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 11%;
  margin-left: -230px;
}
#get-inspired-slider .swiper-pagination-bullet {
  border: 1px solid #1da1f2;
}
#get-inspired-slider .swiper-pagination-bullet-active {
  background: #1da1f2;
}
#get-inspired-slider img:not([draggable]),
#get-inspired-slider embed,
#get-inspired-slider object,
#get-inspired-slider video {
  max-width: 100%;
  height: auto;
}
#get-inspired-slider .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#get-inspired-slider .swiper-container-no-flexbox .swiper-slide {
  float: left;
}
#get-inspired-slider .swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
#get-inspired-slider .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  margin-top: 3rem;
}
#get-inspired-slider .swiper-container-android .swiper-slide,
#get-inspired-slider .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}
#get-inspired-slider .swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
#get-inspired-slider .swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
#get-inspired-slider .swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background: transparent;
}
#get-inspired-slider .swiper-container-autoheight,
#get-inspired-slider .swiper-container-autoheight .swiper-slide {
  height: auto;
}
#get-inspired-slider .swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
#get-inspired-slider .swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
#get-inspired-slider .swiper-wp8-horizontal {
  touch-action: pan-y;
}
#get-inspired-slider .swiper-wp8-vertical {
  touch-action: pan-x;
}
#get-inspired-slider .swiper-button-next,
#get-inspired-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
#get-inspired-slider .swiper-button-next.swiper-button-disabled,
#get-inspired-slider .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
#get-inspired-slider .swiper-button-prev,
#get-inspired-slider .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
#get-inspired-slider .swiper-button-prev.swiper-button-black,
#get-inspired-slider .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
#get-inspired-slider .swiper-button-prev.swiper-button-white,
#get-inspired-slider .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
#get-inspired-slider .swiper-button-next,
#get-inspired-slider .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
#get-inspired-slider .swiper-button-next.swiper-button-black,
#get-inspired-slider .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
#get-inspired-slider .swiper-button-next.swiper-button-white,
#get-inspired-slider .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
#get-inspired-slider .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
#get-inspired-slider .swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
#get-inspired-slider .swiper-container-horizontal > .swiper-pagination-bullets,
#get-inspired-slider .swiper-pagination-custom,
#get-inspired-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
#get-inspired-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
#get-inspired-slider button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#get-inspired-slider .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
#get-inspired-slider .swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
#get-inspired-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
#get-inspired-slider .swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
#get-inspired-slider .swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
#get-inspired-slider .swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
#get-inspired-slider .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
#get-inspired-slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
#get-inspired-slider .swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
#get-inspired-slider .swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
#get-inspired-slider .swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  transform-origin: right top;
}
#get-inspired-slider .swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
#get-inspired-slider .swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
#get-inspired-slider .swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
#get-inspired-slider .swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
#get-inspired-slider .swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
#get-inspired-slider .swiper-container-3d {
  -o-perspective: 1200px;
  perspective: 1200px;
}
#get-inspired-slider .swiper-container-3d .swiper-cube-shadow,
#get-inspired-slider .swiper-container-3d .swiper-slide,
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-bottom,
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-left,
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-right,
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-top,
#get-inspired-slider .swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-bottom,
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-left,
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-right,
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-left {
  background-image: none;
}
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
#get-inspired-slider .swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
#get-inspired-slider .swiper-container-coverflow .swiper-wrapper,
#get-inspired-slider .swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px;
}
#get-inspired-slider .swiper-container-cube,
#get-inspired-slider .swiper-container-flip {
  overflow: visible;
}
#get-inspired-slider .swiper-container-cube .swiper-slide,
#get-inspired-slider .swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}
#get-inspired-slider .swiper-container-cube .swiper-slide .swiper-slide,
#get-inspired-slider .swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
#get-inspired-slider .swiper-container-cube .swiper-slide-active,
#get-inspired-slider .swiper-container-cube .swiper-slide-active .swiper-slide-active,
#get-inspired-slider .swiper-container-flip .swiper-slide-active,
#get-inspired-slider .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
#get-inspired-slider .swiper-container-cube .swiper-slide-shadow-bottom,
#get-inspired-slider .swiper-container-cube .swiper-slide-shadow-left,
#get-inspired-slider .swiper-container-cube .swiper-slide-shadow-right,
#get-inspired-slider .swiper-container-cube .swiper-slide-shadow-top,
#get-inspired-slider .swiper-container-flip .swiper-slide-shadow-bottom,
#get-inspired-slider .swiper-container-flip .swiper-slide-shadow-left,
#get-inspired-slider .swiper-container-flip .swiper-slide-shadow-right,
#get-inspired-slider .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}
#get-inspired-slider .swiper-container-cube .swiper-slide {
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
#get-inspired-slider .swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
#get-inspired-slider .swiper-container-cube .swiper-slide-active,
#get-inspired-slider .swiper-container-cube .swiper-slide-next,
#get-inspired-slider .swiper-container-cube .swiper-slide-next + .swiper-slide,
#get-inspired-slider .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
#get-inspired-slider .swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}
#get-inspired-slider .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
#get-inspired-slider .swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
#get-inspired-slider .swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
#get-inspired-slider .swiper-container-fade .swiper-slide-active,
#get-inspired-slider .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
#get-inspired-slider .swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#get-inspired-slider .swiper-zoom-container > canvas,
#get-inspired-slider .swiper-zoom-container > img,
#get-inspired-slider .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#get-inspired-slider .swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
#get-inspired-slider .swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
#get-inspired-slider .swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
#get-inspired-slider .swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
#get-inspired-slider .swiper-scrollbar-cursor-drag {
  cursor: move;
}
#get-inspired-slider .swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
#get-inspired-slider .swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
#get-inspired-slider .swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
#get-inspired-slider .swiper-container.one {
  padding-top: 40px;
  text-align: center;
}
#get-inspired-slider .swiper-container.one .swiper-slide {
  padding: 0 43px;
}
#get-inspired-slider .swiper-container {
  width: 100%;
  padding-bottom: 30px;
}
#get-inspired-slider .swiper-slide img {
  display: block;
  margin: auto;
  width: 100%;
}
#get-inspired-slider .swiper-slide {
  width: 390px;
  height: auto;
  padding: 0 15px;
  z-index: 3;
  width: 238px;
}
#get-inspired-slider .two .swiper-slide {
  border-radius: 30px;
}
#get-inspired-slider .two .swiper-slide-active {
  transform: translate3d(-2px, 40px, 0px) rotateX(0deg) rotateY(0deg) !important;
  height: 424px;
  border-radius: 0px;
  margin-left: 1px;
}
#get-inspired-slider .swiper-slide-next,
#get-inspired-slider .swiper-slide-prev {
  border-radius: 30px;
}
#get-inspired-slider .swiper-slide .slider-image .preview-icon {
  z-index: -1;
  width: calc(100% - 30px);
}
#get-inspired-slider .swiper-slide.swiper-slide-active .slider-image:hover .preview-icon {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 1;
}
#get-inspired-slider .swiper-container-horizontal > .swiper-pagination-bullets,
#get-inspired-slider .swiper-pagination-custom,
#get-inspired-slider .swiper-pagination-fraction {
  bottom: 0;
}
#get-inspired-slider .swiper-pagination-bullet {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ee0f6f;
  border-radius: 10px;
  display: inline-block;
  height: 10px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  width: 26px;
  transition: 0.2s;
}
#get-inspired-slider .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0) linear-gradient(to right, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
  border: medium none;
  height: 12px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  width: 12px;
}
#get-inspired-slider .swiper-slide-next img {
  width: 163px;
  height: 313px;
}
#get-inspired-slider .swiper-slide-prev img {
  width: 163px;
  height: 313px;
}
#get-inspired-slider .swiper-button-next {
  background-image: url("../images/next.svg");
  background-repeat: no-repeat;
  right: 29%;
  top: 57%;
  left: auto;
  background-size: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #get-inspired-slider .swiper-button-next {
    right: 5%;
    background-size: auto;
  }
}
#get-inspired-slider .swiper-button-prev {
  background-image: url("../images/prev.svg");
  background-repeat: no-repeat;
  left: 29%;
  top: 57%;
  background-size: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #get-inspired-slider .swiper-button-prev {
    left: 5%;
    background-size: auto;
  }
}
#get-inspired-slider .screen-mobile-image {
  background-image: url(../images/body-carousel.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  height: 562px;
  left: calc(50% + 0.5px);
  position: absolute;
  top: 24px;
  transform: translateX(-50%);
  width: 283px;
  z-index: 2;
  border-radius: 40px;
}
#customize-bathroom .customize-wrapper {
  text-align: center;
  color: #fff;
  padding: 3rem 0rem;
}
#customize-bathroom .customize-wrapper h2 {
  display: inline-block;
  font-family: "Montserrat";
  font-size: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #customize-bathroom .customize-wrapper h2 {
    width: auto;
    font-size: 17px;
    line-height: 30px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #customize-bathroom .customize-wrapper h2::after {
    margin-top: 5px;
  }
}
#customize-bathroom .customize-wrapper p {
  width: 700px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 5px;
  line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #customize-bathroom .customize-wrapper p {
    width: auto;
    font-size: 13px;
    line-height: 25px;
    margin-top: 15px;
  }
}
#customize-bathroom .customize-wrapper .customize-mobile-img {
  position: relative;
}
#customize-bathroom .customize-wrapper .customize-mobile-img img:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 11%;
  margin-left: -230px;
}

#bathrooms-3d .bathroom-3d-wrapper,
#download-product-catalogue .bathroom-3d-wrapper {
  text-align: center;
  padding: 3rem 0rem;
}
#bathrooms-3d .bathroom-3d-wrapper h2,
#download-product-catalogue .bathroom-3d-wrapper h2 {
  display: inline-block;
  font-family: "Montserrat";
  font-size: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathrooms-3d .bathroom-3d-wrapper h2,
  #download-product-catalogue .bathroom-3d-wrapper h2 {
    width: auto;
    font-size: 17px;
    line-height: 30px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathrooms-3d .bathroom-3d-wrapper h2::after,
  #download-product-catalogue .bathroom-3d-wrapper h2::after {
    margin-top: 5px;
  }
}
#bathrooms-3d .bathroom-3d-wrapper p,
#download-product-catalogue .bathroom-3d-wrapper p {
  width: 700px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 5px;
  line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathrooms-3d .bathroom-3d-wrapper p,
  #download-product-catalogue .bathroom-3d-wrapper p {
    width: auto;
    font-size: 13px;
    line-height: 25px;
  }
}
#bathrooms-3d .bathroom-3d-wrapper .bathroom-3d-mobile-img,
#download-product-catalogue .bathroom-3d-wrapper .bathroom-3d-mobile-img {
  position: relative;
}
#bathrooms-3d .bathroom-3d-wrapper .bathroom-3d-mobile-img img:nth-child(2),
#download-product-catalogue .bathroom-3d-wrapper .bathroom-3d-mobile-img img:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 11%;
  margin-left: -120px;
}
#bathrooms-3d .reality-wrapper,
#download-product-catalogue .reality-wrapper {
  position: relative;
  padding: 3rem 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathrooms-3d .reality-wrapper,
  #download-product-catalogue .reality-wrapper {
    padding: 5px 0px;
  }
}
#bathrooms-3d .reality-wrapper .reality-content-wrapper,
#download-product-catalogue .reality-wrapper .reality-content-wrapper {
  position: absolute;
  top: 11%;
  left: 6%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathrooms-3d .reality-wrapper .reality-content-wrapper,
  #download-product-catalogue .reality-wrapper .reality-content-wrapper {
    position: initial;
    margin-top: 20px;
  }
}
#bathrooms-3d .reality-wrapper .reality-content-wrapper h2,
#download-product-catalogue .reality-wrapper .reality-content-wrapper h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: "Montserrat";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathrooms-3d .reality-wrapper .reality-content-wrapper h2,
  #download-product-catalogue .reality-wrapper .reality-content-wrapper h2 {
    width: auto;
    font-size: 17px;
    line-height: 30px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathrooms-3d .reality-wrapper .reality-content-wrapper h2::after,
  #download-product-catalogue .reality-wrapper .reality-content-wrapper h2::after {
    margin: auto;
    margin-top: 5px;
  }
}
#bathrooms-3d .reality-wrapper .reality-content-wrapper p,
#download-product-catalogue .reality-wrapper .reality-content-wrapper p {
  width: 300px;
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathrooms-3d .reality-wrapper .reality-content-wrapper p,
  #download-product-catalogue .reality-wrapper .reality-content-wrapper p {
    width: auto;
    font-size: 13px;
    line-height: 25px;
  }
}

#download-product-catalogue {
  background: #fcf6dc;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #download-product-catalogue h2::after {
    margin-top: 5px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #download-product-catalogue p {
    margin-top: 15px;
  }
}

#download-mobile-app {
  margin: 4rem 0rem;
}
#download-mobile-app .download-app-wrapper {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  width: 600px;
  padding: 4rem 40px;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #download-mobile-app .download-app-wrapper {
    width: auto;
    padding: 2rem 20px;
  }
}
#download-mobile-app .download-app-wrapper h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: "Montserrat";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #download-mobile-app .download-app-wrapper h2 {
    width: auto;
    font-size: 17px;
    line-height: 30px;
  }
}
#download-mobile-app .download-app-wrapper h2::after {
  margin: auto;
  margin-top: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #download-mobile-app .download-app-wrapper h2::after {
    margin-top: 10px;
  }
}
#download-mobile-app .download-app-wrapper .store-icons {
  margin-top: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #download-mobile-app .download-app-wrapper .store-icons {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #download-mobile-app .download-app-wrapper .store-icons img {
    width: 100px;
  }
}
#download-mobile-app .download-app-wrapper .store-icons img:last-child {
  margin-left: 30px;
}

.product-type-woosg h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 15px !important;
}
.product-type-woosg .woosg-products {
  border: none;
}
.product-type-woosg .woosg-products .woosg-product .grouped_variation .variations .variation {
  padding: 0px !important;
}
.product-type-woosg .woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item[data-title] {
  font-size: 14px;
  justify-content: center;
}
.product-type-woosg h4 {
  margin: 0px;
  width: 74%;
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg h4 {
    width: 200px;
    margin: auto;
    font-size: 12px;
  }
}
.product-type-woosg .variable-items-wrapper {
  margin-top: 10px;
}
.product-type-woosg .slider-wrapper {
  width: 100%;
  height: 100%;
  position: initial;
}
.product-type-woosg .slider-wrapper .header {
  padding: 15px 0px;
  border: 1px solid #969696;
  font-family: "Montserrat-Regular";
  position: relative;
}
.product-type-woosg .slider-wrapper .slider-content {
  background: #fcf6dc;
  padding: 30px;
  text-align: left;
  padding-top: 0px;
  padding-bottom: 0px;
}
.product-type-woosg .slider-wrapper .woosg-product span {
  font-size: 14px;
  color: #333333;
}
.product-type-woosg .slider-wrapper .woosg-product p {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
  margin-bottom: 0;
  margin-top: 5px;
}
.product-type-woosg .slider-wrapper .woosg-product .row {
  align-items: center;
}
.product-type-woosg .woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item.color-variable-item[data-title]:before {
  font-size: 16px;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item.color-variable-item[data-title]:before {
    font-size: 14px !important;
  }
}
.product-type-woosg .variations span {
  font-size: 14px;
}
.product-type-woosg .variable-items-wrapper li:nth-child(even) {
  margin-left: 0px !important;
}
.product-type-woosg .swiper-slide,
.product-type-woosg .swiper-container,
.product-type-woosg .swiper-wrapper {
  position: initial;
}
.product-type-woosg .swiper-button-prev::after {
  content: "\f104";
  font-family: fontAwesome;
  font-size: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .swiper-button-prev::after {
    font-size: 18px !important;
  }
}
.product-type-woosg .swiper-button-next::after {
  content: "\f105";
  font-family: fontAwesome;
  font-size: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .swiper-button-next::after {
    font-size: 18px !important;
  }
}
.product-type-woosg .swiper-button-next {
  right: 15px;
  border-left: 1px solid #969696;
  padding-left: 20px;
  top: 50% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .swiper-button-next {
    right: 10px !important;
    border-left: 1px solid #969696;
    padding-left: 10px !important;
  }
}
.product-type-woosg .swiper-button-prev {
  left: 3% !important;
  border-right: 1px solid #969696;
  padding-right: 20px;
  top: 50% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .swiper-button-prev {
    left: 10px !important;
    border-right: 1px solid #969696;
    padding-right: 10px !important;
  }
}
.product-type-woosg .price {
  width: auto !important;
  margin-top: 0px;
}
.product-type-woosg .swiper-button-prev,
.product-type-woosg .swiper-button-next {
  background-image: none;
  color: #000;
}
.product-type-woosg div.summary {
  margin-bottom: 0rem !important;
}
.product-type-woosg button[type=submit] {
  display: grid;
  width: 200px;
  height: 44px;
  background-color: #ef3e42 !important;
  color: #fff !important;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  align-items: center;
  text-align: center;
  padding: 0px 20px !important;
  opacity: 1 !important;
  margin-right: 13px;
  border-radius: 0px;
  margin-top: 20px;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg button[type=submit] {
    margin: auto;
    font-size: 12px;
    margin: 10px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    width: 200px !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .product-type-woosg button[type=submit] {
    margin: 0;
    font-size: 12px;
    margin: 10px;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    height: 44px;
  }
}
.product-type-woosg button[type=submit]:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ef3e42 !important;
  transition: 0.3s ease-in;
}
.product-type-woosg .btn-specification {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ffffff;
  color: #000;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  border: 1px solid #ef3e42;
  width: 318px;
  margin-top: 20px;
  border-radius: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .btn-specification {
    margin: auto;
    font-size: 12px;
    margin: 10px;
    margin-right: 0px !important;
    width: 318px !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .product-type-woosg .btn-specification {
    margin-top: 0px;
  }
}
.product-type-woosg .btn-specification:hover {
  background-color: #ef3e42 !important;
  color: #fff !important;
  border: none;
  transition: 0.3s ease-in;
}
.product-type-woosg .cart {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-type-woosg div.summary {
  margin: 0px;
}
.product-type-woosg div.images {
  margin-bottom: 0rem;
}
.product-type-woosg .price-details {
  display: flex;
  align-items: center;
  margin: 10px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .price-details {
    font-size: 13px;
  }
}
.product-type-woosg .price-details .amount:first-child {
  margin-right: 5px;
}
.product-type-woosg .price-details .amount:nth-child(2) {
  margin-left: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .social-share {
    margin-top: 0rem;
  }
}
.product-type-woosg .shr_lbl {
  font-family: "Montserrat-Regular";
}
.product-type-woosg .inner-features {
  text-align: left;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .inner-features {
    margin-bottom: 20px;
  }
}
.product-type-woosg .woosg-products .woosg-product {
  border-bottom: 0px;
}
.product-type-woosg .fb_link {
  margin-right: 0px;
}
.product-type-woosg .feature-section {
  margin-bottom: 20px;
}

.error-404 .page-content {
  text-align: center;
  margin-top: 0;
}
.error-404 .page-content h1 {
  font-size: 30px;
  margin: 30px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .error-404 .page-content h1 {
    font-size: 20px;
  }
}
.error-404 .page-content h1::after {
  content: "";
  display: block;
  width: 5%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin: auto;
  margin-top: 10px;
}
.error-404 .page-content h6 {
  font-size: 16px;
  margin: 30px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .error-404 .page-content h6 {
    font-size: 14px;
  }
}
.error-404 .page-content .links {
  margin: 30px 0px;
}
.error-404 .page-content .sections {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-404 .page-content .sections span {
  font-size: 16px;
  font-family: "Montserrat-Semibold";
  color: #ef3e42;
  margin-left: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .error-404 .page-content .sections span {
    font-size: 14px;
  }
}
.error-404 .page-content .sections a:first-child {
  margin-right: 30px;
}
.error-404 .page-content .sections a div {
  display: flex;
  align-items: end;
}

#schedule-banner .banner {
  width: 100%;
  position: relative;
}
#schedule-banner .banner img {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #schedule-banner .banner img {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #schedule-banner .banner img {
    height: 300px;
  }
}
#schedule-banner .banner-content {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -200px;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-banner .banner-content {
    position: absolute;
    top: 33%;
    left: 44%;
    margin-left: -75px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #schedule-banner .banner-content {
    top: 40%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #schedule-banner .banner-content {
    top: 40%;
  }
}
#schedule-banner .banner-content h1 {
  text-transform: uppercase;
  color: #000;
  font-family: "Montserrat-Semibold";
}

#blog {
  /*
  	.related_artical .row {
  		@include screen(med) {
  			justify-content: center;
  		}
  		@include screen(large) {
  			justify-content: center;
  		}
  		.artical_box {
  			@include screen(med) {
  				margin: 20px;
  			}
  			@include screen(large) {
  				margin: 20px;
  			}
  		}
  	}
  */
}
#blog .blog_title h1 {
  font-size: 30px;
  width: 450px;
  margin: 30px auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .blog_title h1 {
    width: auto;
    font-size: 20px;
  }
}
#blog .blog_btns {
  margin: 30px auto;
}
#blog .blog_date ul li {
  font-family: "Montserrat";
  font-size: 14px;
}
#blog .blog_date ul li.social_post {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
#blog .blog_date ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .blog_date ul {
    justify-content: center;
    margin-top: 20px;
  }
}
#blog .blog_date ul a:first-child {
  margin-right: 10px;
  margin-left: 10px;
}
#blog .blog_date {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .blog_date {
    display: block;
  }
}
#blog .blog_date div:first-child {
  text-align: center;
  margin: auto;
  font-size: 14px;
}
#blog .blog_date div:last-child {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .blog_date div:last-child {
    position: initial;
  }
}
#blog .bath_btn a {
  font-size: 12px;
  text-transform: capitalize;
}
#blog .blog_image {
  width: 100%;
}
#blog .blog_image img {
  width: 100%;
}
#blog .blog_content {
  font-size: 14px;
  line-height: 30px;
  margin-top: 30px;
}
#blog .blog_content img {
  margin-top: 30px;
}
#blog .blog_content a {
  font-family: "Montserrat-Semibold";
}
#blog .blog_content ul {
  margin: 0;
  padding: 10px 20px;
}
#blog .artical_title a {
  color: #000;
  font-family: "Montserrat-Regular";
}
#blog .artical_title::after {
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .artical_title::after {
    margin: 10px auto;
  }
}
#blog .page-content-wrapper {
  padding: 0rem 0rem;
}
#blog .type-product {
  padding-bottom: 20px;
}
#blog .type-product a img {
  padding: 0px;
}
#blog .artical_box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .artical_box {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  }
}
#blog strong {
  font-family: "Montserrat-Regular";
}
#blog h6 {
  font-size: 16px;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog h6 {
    margin: 10px 0px;
    font-size: 14px;
  }
}
#blog .product {
  margin-bottom: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .product {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  }
}
#blog .product h2 {
  margin-bottom: 20px;
  width: auto;
}
#blog .product h2::after {
  width: 0px;
}
#blog .related_product h3 {
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 0px;
  margin-top: 0;
  padding: 3rem 0rem;
  font-size: 36px;
  line-height: 56px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .related_product h3 {
    font-size: 30px;
  }
}
#blog .related_product h3::after {
  width: 8%;
  margin-top: 10px;
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .related_artical.page-content-wrapper h2 {
    padding: 1rem 0rem;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .wc_color_attibutes {
    margin-bottom: 20px;
    justify-content: center;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .price {
    display: flex;
    justify-content: center;
  }
}
#blog .type-product {
  margin-bottom: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #blog .type-product {
    margin-bottom: 20px;
  }
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: #ef3e42;
}

#search-page .outer-container {
  max-width: 1256px;
  border: 1px solid #f4f4f4;
  padding: 15px;
}
#search-page .search-result {
  font-size: 14px;
}
#search-page .search-result span {
  font-family: "Montserrat-Regular";
}
#search-page .search-product .outer-container, #search-page .blogs-wrapper .outer-container, #search-page .topics-wrapper .outer-container {
  margin: 20px 0px;
}
#search-page h2 {
  font-family: "Montserrat";
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
#search-page h2::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
#search-page h3 {
  margin: 0px;
  font-size: 16px;
}
#search-page h3 a {
  font-family: "Montserrat-Regular";
  color: #000;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #search-page h3 a {
    font-size: 12px;
  }
}
#search-page h3 a:hover {
  color: #000;
}
#search-page h3::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #search-page h3::after {
    margin-top: 10px;
  }
}
#search-page p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#search-page .search-topic,
#search-page .search-blogs {
  counter-increment: lis;
  content: counter(lis, decimal);
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  height: -moz-max-content;
  height: max-content;
}
#search-page .search-topic,
#search-page .search-blogs {
  margin: 30px 0px;
}
#search-page .search-topic .topic-content,
#search-page .search-topic .blog-content,
#search-page .search-blogs .topic-content,
#search-page .search-blogs .blog-content {
  padding: 20px;
}
#search-page .search-topic .topic-content .read_more,
#search-page .search-topic .blog-content .read_more,
#search-page .search-blogs .topic-content .read_more,
#search-page .search-blogs .blog-content .read_more {
  font-size: 14px;
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
#search-page .search-blogs {
  height: 92% !important;
}
#search-page .swiper-wrapper {
  height: 100% !important;
}
#search-page .blog-content,
#search-page .topic-content {
  text-align: left;
}
#search-page .product_id {
  float: right;
  margin: 10px 10px;
}
#search-page .products {
  width: 100%;
  margin: 15px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #search-page .products {
    width: auto;
  }
}
#search-page .products h2::after {
  margin-top: 5px;
  margin-left: 0px !important;
  width: 20%;
}
#search-page .products .type-product {
  margin-right: 30px;
  width: 21%;
  margin-bottom: 30px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
  padding-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #search-page .products .type-product {
    width: 100%;
    margin-right: 0px;
  }
}
#search-page .products img {
  padding: 3rem;
  padding-bottom: 10px;
  padding-top: 0px;
}
#search-page .products h2 {
  font-size: 14px;
  text-align: left !important;
  padding: 20px;
  line-height: 30px;
  width: auto;
}
#search-page .products .wc_color_attibutes span {
  margin: 10px !important;
}
#search-page .products .wc_color_attibutes {
  margin: 10px 14px;
}
#search-page .products .addtocartbutton {
  display: none;
}
#search-page .products .price {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#search-page .products .product {
  position: relative;
}
#search-page .products .pf_on_hover {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  align-items: center;
  justify-content: center;
  top: 0px;
  transition: all 1s;
  -webkit-transition: all 1s;
}
#search-page .products .inside_on_hover {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  position: absolute;
  z-index: 3;
}
#search-page .products .product:hover .pf_on_hover {
  display: flex;
  transition: all 1s;
  -webkit-transition: all 1s;
}
#search-page .product_load_less,
#search-page .product_load_more,
#search-page .blog_load_more,
#search-page .blog_load_less,
#search-page .topic_load_more,
#search-page .topic_load_less {
  display: none;
}
#search-page button {
  margin: auto;
  margin-bottom: 30px;
  margin-top: 20px;
  cursor: pointer;
}

.lg-hotspot {
  cursor: pointer;
}

.product-type-woosg .grouped_product_parent {
  position: relative;
}

.edge-100 .group_products_trigger .lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: 0.5s ease-in;
  border: 3px solid #ef3e42;
  border-radius: 50%;
}
.edge-100 .group_products_trigger .lg-hotspot:hover .lg-hotspot__button, .edge-100 .group_products_trigger .lg-hotspot:active .lg-hotspot__button {
  border-color: #11174c;
  transition: 0.5s ease-in;
}
.edge-100 .group_products_trigger .lg-hotspot:hover .lg-hotspot__button:after, .edge-100 .group_products_trigger .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #11174c;
  transition: 0.5s ease-out;
}
.edge-100 .group_products_trigger .lg-hotspot--selected {
  z-index: 999;
}
.edge-100 .group_products_trigger .lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
.edge-100 .group_products_trigger .lg-hotspot__button {
  height: 34px;
  width: 34px;
  padding: 0px;
  border-radius: 100%;
  border: 2px solid #333333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "Montserrat-Semibold";
  background: #fff;
}
.edge-100 .group_products_trigger .slide_1 {
  top: 72% !important;
  left: 39% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .edge-100 .group_products_trigger .slide_1 {
    top: 72%;
  }
}
.edge-100 .group_products_trigger .slide_2 {
  top: 54% !important;
  left: 12% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .edge-100 .group_products_trigger .slide_2 {
    top: 54%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .edge-100 .group_products_trigger .slide_2 {
    top: 57% !important;
  }
}
.edge-100 .group_products_trigger .slide_3 {
  top: 16% !important;
  left: 30% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .edge-100 .group_products_trigger .slide_3 {
    top: 30%;
    left: 23%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .edge-100 .group_products_trigger .slide_3 {
    top: 20%;
    left: 30%;
  }
}

.edge-60 .group_products_trigger .lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: 0.5s ease-in;
  border: 3px solid #ef3e42;
  border-radius: 50%;
}
.edge-60 .group_products_trigger .lg-hotspot:hover .lg-hotspot__button, .edge-60 .group_products_trigger .lg-hotspot:active .lg-hotspot__button {
  border-color: #11174c;
  transition: 0.5s ease-in;
}
.edge-60 .group_products_trigger .lg-hotspot:hover .lg-hotspot__button:after, .edge-60 .group_products_trigger .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #11174c;
  transition: 0.5s ease-out;
}
.edge-60 .group_products_trigger .lg-hotspot--selected {
  z-index: 999;
}
.edge-60 .group_products_trigger .lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
.edge-60 .group_products_trigger .lg-hotspot__button {
  height: 34px;
  width: 34px;
  padding: 0px;
  border-radius: 100%;
  border: 2px solid #333333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "Montserrat-Semibold";
  background: #fff;
}
.edge-60 .group_products_trigger .slide_1 {
  top: 76% !important;
  left: 39% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .edge-60 .group_products_trigger .slide_1 {
    top: 7%;
  }
}
.edge-60 .group_products_trigger .slide_2 {
  top: 59% !important;
  left: 18% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .edge-60 .group_products_trigger .slide_2 {
    top: 13%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .edge-60 .group_products_trigger .slide_2 {
    top: 62% !important;
  }
}
.edge-60 .group_products_trigger .slide_3 {
  top: 14% !important;
  left: 29% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .edge-60 .group_products_trigger .slide_3 {
    top: 13%;
  }
}
.edge-60 .group_products_trigger .slide_4 {
  top: 24%;
  left: 57%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .edge-60 .group_products_trigger .slide_4 {
    top: 30%;
  }
}

.product-type-woosg .group_products_trigger .lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: 0.5s ease-in;
  border: 3px solid #ef3e42;
  border-radius: 50%;
}
.product-type-woosg .group_products_trigger .lg-hotspot:hover .lg-hotspot__button, .product-type-woosg .group_products_trigger .lg-hotspot:active .lg-hotspot__button {
  border-color: #11174c;
  transition: 0.5s ease-in;
}
.product-type-woosg .group_products_trigger .lg-hotspot:hover .lg-hotspot__button:after, .product-type-woosg .group_products_trigger .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #11174c;
  transition: 0.5s ease-out;
}
.product-type-woosg .group_products_trigger .lg-hotspot--selected {
  z-index: 100 !important;
}
.product-type-woosg .group_products_trigger .lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
.product-type-woosg .group_products_trigger .lg-hotspot__button {
  height: 34px;
  width: 34px;
  padding: 0px;
  border-radius: 100%;
  border: 2px solid #333333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "Montserrat-Semibold";
  background: #fff;
}
.product-type-woosg .group_products_trigger .slide_1 {
  top: 76% !important;
  left: 41% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .group_products_trigger .slide_1 {
    top: 7%;
  }
}
.product-type-woosg .group_products_trigger .slide_2 {
  top: 59% !important;
  left: 18% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .group_products_trigger .slide_2 {
    top: 13%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .product-type-woosg .group_products_trigger .slide_2 {
    top: 62% !important;
  }
}
.product-type-woosg .group_products_trigger .slide_3 {
  top: 14% !important;
  left: 34% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .group_products_trigger .slide_3 {
    top: 13%;
  }
}
.product-type-woosg .group_products_trigger .slide_4 {
  top: 24%;
  left: 57%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-type-woosg .group_products_trigger .slide_4 {
    top: 30%;
  }
}

.amazon .group_products_trigger .lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: 0.5s ease-in;
  border: 3px solid #ef3e42;
  border-radius: 50%;
}
.amazon .group_products_trigger .lg-hotspot:hover .lg-hotspot__button, .amazon .group_products_trigger .lg-hotspot:active .lg-hotspot__button {
  border-color: #11174c;
  transition: 0.5s ease-in;
}
.amazon .group_products_trigger .lg-hotspot:hover .lg-hotspot__button:after, .amazon .group_products_trigger .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #11174c;
  transition: 0.5s ease-out;
}
.amazon .group_products_trigger .lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
.amazon .group_products_trigger .lg-hotspot__button {
  height: 34px;
  width: 34px;
  padding: 0px;
  border-radius: 100%;
  border: 2px solid #333333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "Montserrat-Semibold";
  background: #fff;
}
.amazon .group_products_trigger .slide_1 {
  top: 72%;
  left: 29%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .amazon .group_products_trigger .slide_1 {
    top: 72%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .amazon .group_products_trigger .slide_1 {
    top: 75%;
  }
}
.amazon .group_products_trigger .slide_2 {
  top: 58%;
  left: 15%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .amazon .group_products_trigger .slide_2 {
    top: 56%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .amazon .group_products_trigger .slide_2 {
    top: 61%;
  }
}
.amazon .group_products_trigger .slide_3 {
  top: 17%;
  left: 30%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .amazon .group_products_trigger .slide_3 {
    top: 22%;
  }
}
.amazon .group_products_trigger .slide_4 {
  top: 24%;
  left: 57%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .amazon .group_products_trigger .slide_4 {
    top: 30%;
  }
}

.element .group_products_trigger .lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: 0.5s ease-in;
  border: 3px solid #ef3e42;
  border-radius: 50%;
}
.element .group_products_trigger .lg-hotspot:hover .lg-hotspot__button, .element .group_products_trigger .lg-hotspot:active .lg-hotspot__button {
  border-color: #11174c;
  transition: 0.5s ease-in;
}
.element .group_products_trigger .lg-hotspot:hover .lg-hotspot__button:after, .element .group_products_trigger .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #11174c;
  transition: 0.5s ease-out;
}
.element .group_products_trigger .lg-hotspot--selected {
  z-index: 999;
}
.element .group_products_trigger .lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
.element .group_products_trigger .lg-hotspot__button {
  height: 34px;
  width: 34px;
  padding: 0px;
  border-radius: 100%;
  border: 2px solid #333333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "Montserrat-Semibold";
  background: #fff;
}
.element .group_products_trigger .slide_1 {
  top: 78% !important;
  left: 43% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .element .group_products_trigger .slide_1 {
    top: 72%;
  }
}
.element .group_products_trigger .slide_2 {
  top: 58% !important;
  left: 23% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .element .group_products_trigger .slide_2 {
    top: 54%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .element .group_products_trigger .slide_2 {
    top: 60% !important;
  }
}
.element .group_products_trigger .slide_3 {
  top: 18% !important;
  left: 36% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .element .group_products_trigger .slide_3 {
    top: 30%;
    left: 23%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .element .group_products_trigger .slide_3 {
    top: 20%;
    left: 30%;
  }
}

.ebello .group_products_trigger .lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: 0.5s ease-in;
  border: 3px solid #ef3e42;
  border-radius: 50%;
}
.ebello .group_products_trigger .lg-hotspot:hover .lg-hotspot__button, .ebello .group_products_trigger .lg-hotspot:active .lg-hotspot__button {
  border-color: #11174c;
  transition: 0.5s ease-in;
}
.ebello .group_products_trigger .lg-hotspot:hover .lg-hotspot__button:after, .ebello .group_products_trigger .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #11174c;
  transition: 0.5s ease-out;
}
.ebello .group_products_trigger .lg-hotspot--selected {
  z-index: 999;
}
.ebello .group_products_trigger .lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
.ebello .group_products_trigger .lg-hotspot__button {
  height: 34px;
  width: 34px;
  padding: 0px;
  border-radius: 100%;
  border: 2px solid #333333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "Montserrat-Semibold";
  background: #fff;
}
.ebello .group_products_trigger .slide_1 {
  top: 78% !important;
  left: 36% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ebello .group_products_trigger .slide_1 {
    top: 7%;
  }
}
.ebello .group_products_trigger .slide_2 {
  top: 61% !important;
  left: 14% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ebello .group_products_trigger .slide_2 {
    top: 13%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ebello .group_products_trigger .slide_2 {
    top: 63% !important;
  }
}
.ebello .group_products_trigger .slide_3 {
  top: 26% !important;
  left: 30% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ebello .group_products_trigger .slide_3 {
    top: 13%;
  }
}
.ebello .group_products_trigger .slide_4 {
  top: 30% !important;
  left: 66% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .ebello .group_products_trigger .slide_4 {
    top: 13%;
  }
}

.concentric-circles {
  width: 50px;
  height: 50px;
  margin-top: 50px;
  margin-left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
  animation: ripple 2s 0.2s infinite;
  -webkit-animation: ripple 2s 0.2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concentric-circles .lg-hotspot__button {
  border: 2px solid #ef3e42 !important;
}

.concentric-circles:hover {
  transform: translateX(-50%) scale(1.2);
}
#schedule-visit {
  margin-top: 20px;
  /*
  	label[for="terms2"]:before {
  		content: "";
  		-webkit-appearance: none;
  		background-color: transparent;
  		border: 2px solid #000;
  		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
  			inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  		padding: 7px;
  		display: inline-block;
  		position: relative;
  		vertical-align: middle;
  		cursor: pointer;
  		margin-right: 10px;
  	}
  */
  /*
  	label[for="terms2"]:after {
  		content: "";
  		display: block;
  		position: absolute;
  		top: 0px;
  		left: 9px;
  		width: 6px;
  		height: 16px;
  		border: solid #ef3e42;
  		border-width: 0 2px 2px 0;
  		transform: rotate(45deg);
  		background: #f2f2f2;
  		@include screen(small) {
  			top: -2px;
  		}
  		@media only screen and (min-width: 320px) and (max-width: 568px) {
  			top: -2px;
  		}
  		@media only screen and (min-width: 375px) and (max-width: 768px) {
  			top: -2px;
  		}
  	}
  */
}
#schedule-visit .empty_div {
  height: 30px;
  width: 100%;
}
#schedule-visit label[for=terms2] {
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .wpdevelop input[type=text],
  #schedule-visit .wpdevelop select {
    height: 25px;
  }
}
#schedule-visit .checkbox-div label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#schedule-visit .checkbox-div label {
  position: relative;
}
#schedule-visit .checkbox-div input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #f2f2f2;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .checkbox-div input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #schedule-visit .checkbox-div input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #schedule-visit .checkbox-div input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
#schedule-visit .calender {
  float: left;
  padding: 20px;
  background: #f4f4f4;
  position: relative;
  width: 46%;
  padding-bottom: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .calender {
    float: none;
    width: 100%;
  }
}
#schedule-visit .calender table,
#schedule-visit .calender thead,
#schedule-visit .calender tbody,
#schedule-visit .calender tr,
#schedule-visit .calender td,
#schedule-visit .calender th {
  border: none;
}
#schedule-visit .calender table span,
#schedule-visit .calender thead span,
#schedule-visit .calender tbody span,
#schedule-visit .calender tr span,
#schedule-visit .calender td span,
#schedule-visit .calender th span {
  color: #555 !important;
  font-weight: 600;
  font-size: 12px !important;
  font-family: inherit !important;
  text-transform: uppercase;
}
#schedule-visit .wpbc_structure_form .schedule-comment {
  margin-left: 0px !important;
}
#schedule-visit .wpbc_structure_form .schedule-comment label {
  margin-left: 10px;
}
#schedule-visit .wpdev-help-message.alert.alert-warning,
#schedule-visit .wpdev-help-message .alert.alert-warning {
  background-color: transparent;
  border-left: 0px;
  border: none;
  font-size: 14px !important;
  color: #000;
  font-family: "Montserrat-Semibold";
  line-height: 25px;
  margin: auto;
}
#schedule-visit .wpbc_structure_form {
  background-color: #f2f2f2;
  padding: 0px 15px;
}
#schedule-visit .wpbc_structure_form .form-group {
  width: 30%;
  display: inline-block;
  margin-right: 11px;
  margin-left: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .wpbc_structure_form .form-group {
    width: 92%;
  }
}
#schedule-visit .wpbc_structure_form .booking_form input[type=text] {
  width: 95%;
}
#schedule-visit .wpbc_structure_form .btn {
  width: -moz-max-content !important;
  width: max-content !important;
  padding-bottom: 0px !important;
  border-bottom: none !important;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-family: "Montserrat-Regular";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  text-shadow: none;
  margin: 20px 0px;
}
#schedule-visit .wpbc_structure_form .btn:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ef3e42 !important;
  transform: 0.5s ease-in;
}
#schedule-visit .wpbc_structure_form .review-text {
  padding: 17px 0px;
  font-size: 13px;
  font-family: "Montserrat-Semibold";
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .booking_form_div input[type=button] {
    padding: 0px 20px !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #schedule-visit .landscape-row, #schedule-visit .landscape-3, #schedule-visit .landscape-9 {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
}
#schedule-visit .proceed-btn {
  width: -moz-max-content !important;
  width: max-content !important;
  /* padding-bottom: 0px !important; */
  /* border-bottom: none !important; */
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  /* font-family: "Montserrat-Regular"; */
  /* font-size: 14px; */
  /* align-items: center; */
  /* text-align: center; */
  padding: 0px 20px;
  /* text-shadow: none; */
  /* border: 1px solid black; */
  margin-left: 10px;
  margin-top: 20px;
  bottom: 5%;
  margin-left: 280px;
}
#schedule-visit .proceed-btn:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ef3e42 !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .proceed-btn {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #schedule-visit .proceed-btn {
    margin-left: 115px;
  }
}
#schedule-visit .time-slot {
  overflow-y: scroll;
  height: 208px;
}
#schedule-visit .wpdev-form-control-wrap {
  font-family: "Montserrat" !important;
}
#schedule-visit .wpbc_times_selector div {
  margin: 7px 3px 0 0;
}
#schedule-visit .slots {
  display: inline-block;
  height: auto;
  padding: 7px;
  background: #f4f4f4;
  margin: 0px;
  float: right;
  width: 54%;
  margin-top: 3px;
  padding: 18px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .slots {
    float: none;
    width: 100%;
  }
}
#schedule-visit .slots .choose-time {
  font-size: 14px;
  font-family: "Montserrat-Semibold";
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin-bottom: 20px;
}
#schedule-visit .slots span {
  margin: 0px !important;
}
#schedule-visit .wpbc_structure_calendar {
  margin-bottom: 5px;
  background-color: #f4f4f4;
  padding: 0px 0px 15px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .wpbc_structure_calendar {
    text-align: center;
  }
}
#schedule-visit .wpbc_structure_calendar div:last-child {
  text-align: center;
  justify-content: space-evenly;
}
#schedule-visit .form_inner {
  display: flex;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .form_inner {
    display: block;
  }
}
#schedule-visit .booking_form input[type=text] {
  width: 95%;
}
#schedule-visit .schedule-comment {
  width: 100% !important;
}
#schedule-visit .schedule-comment textarea {
  width: 94% !important;
}
#schedule-visit .wpbc_times_selector div.wpbc_time_selected {
  color: #000;
  border-color: #ef3e42;
  font-size: 11px;
}
#schedule-visit .wpbc_times_selector div {
  border-radius: 25px;
  background: #fff !important;
  margin-top: 10px !important;
  font-size: 11px;
}
#schedule-visit .bk_calendar_frame {
  width: 100% !important;
}
#schedule-visit .datepick-header {
  margin-bottom: 20px;
  background: #fff;
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#schedule-visit .datepick-header span {
  font-family: "Montserrat-Semibold" !important;
  color: #000 !important;
}
#schedule-visit .datepick-inline .datepick {
  background: #f4f4f4;
}
#schedule-visit select {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  padding-bottom: 10px;
  -webkit-appearance: none;
  font-size: 14px;
  font-family: "Montserrat-Regular";
  background: transparent;
  outline: none;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit select {
    font-size: 12px;
  }
}
#schedule-visit .select-container:after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  color: #ef3e42;
}
#schedule-visit .form-field-dl {
  display: grid;
  margin: 10px;
  grid-gap: 15px;
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .form-field-dl {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #schedule-visit .form-field-dl {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #schedule-visit .form-field-dl {
    margin-bottom: 30px;
  }
}
#schedule-visit .select-d::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  bottom: 10px;
  right: 0;
  color: #ef3e42;
}
#schedule-visit label {
  font-size: 13px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit label {
    display: flex;
    align-items: center;
    font-size: 11px;
  }
}
#schedule-visit .title {
  font-size: 12px;
  color: #969696;
  font-family: "Montserrat";
}
#schedule-visit input[type=submit] {
  width: 170px;
  margin-left: 10px;
  margin-top: 30px;
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit input[type=submit] {
    margin-left: 0px;
    width: 100%;
  }
}
#schedule-visit .schedule-content-title {
  background: #f4f4f4;
  font-size: 14px;
  padding: 20px;
  padding-left: 30px;
}
#schedule-visit .schedule-content-title .header {
  margin-bottom: 20px;
  letter-spacing: 0.13px;
  font-family: "Montserrat-Semibold";
  font-size: 16px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-title .header {
    font-size: 12px;
  }
}
#schedule-visit .schedule-content-title span {
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-title span {
    font-size: 12px;
  }
}
#schedule-visit .scheduler-playground {
  height: 800px;
  overflow-y: auto;
  overflow-x: hidden;
  border-left: 1px solid #f4f4f4;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .scheduler-playground {
    padding-left: 0px;
    border-left: 0px;
    margin-top: 20px;
  }
}
#schedule-visit .datepick-inline .calendar-links .datepick-next {
  width: auto;
  top: 5px;
  right: 10px;
}
#schedule-visit .datepick-inline .calendar-links .datepick-prev {
  width: auto;
  top: 5px;
  left: 10px;
}
#schedule-visit input[type=text] {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0px;
  color: #000;
}
#schedule-visit .controls {
  text-align: center;
}
#schedule-visit textarea {
  background: transparent;
  border: 1px solid #000;
  margin-top: 10px;
  color: #000;
}
#schedule-visit b {
  margin-left: 5px;
}
#schedule-visit .schedule_call {
  width: 100% !important;
  text-align: center;
}
#schedule-visit .datepick-inline .datepick-one-month .datepick .datepick-current-day {
  background: #ef3e42;
}
#schedule-visit .datepick-inline .datepick-one-month .datepick .datepick-current-day a {
  color: #fff;
}
#schedule-visit .schedule-form-div label {
  color: #969696;
}
#schedule-visit .schedule-content-wrapper .icon-Cart:before {
  content: "\e900";
  color: #ef3e42;
}
#schedule-visit .schedule-content-wrapper .icon-Email:before {
  content: "\e901";
  color: #ef3e42;
}
#schedule-visit .schedule-content-wrapper .icon-Call_Icon:before {
  content: "\e902";
  color: #ef3e42;
}
#schedule-visit .schedule-content-wrapper .icon-Locate_Icon:before {
  content: "\e903";
  color: #ef3e42;
}
#schedule-visit .schedule-content-wrapper .no-data {
  padding-left: 30px;
}
#schedule-visit .schedule-content-wrapper .details {
  padding: 20px 10px 20px 10px;
  border-bottom: 1px solid #dfdfdf;
}
#schedule-visit .schedule-content-wrapper .details h6 {
  font-family: "Montserrat-Semibold";
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 10px;
  margin-left: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-wrapper .details h6 {
    font-size: 11px;
  }
}
#schedule-visit .schedule-content-wrapper .details .section {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin: 10px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-wrapper .details .section {
    font-size: 11px;
  }
}
#schedule-visit .schedule-content-wrapper .details .section img {
  margin-right: 10px;
}
#schedule-visit .schedule-content-wrapper .details .section p {
  line-height: 17px;
  letter-spacing: 0.05px;
  margin-bottom: 0px;
  margin-left: 10px;
  margin-top: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-wrapper .details .section p {
    font-size: 11px;
  }
}
#schedule-visit .schedule-content-wrapper .details .section span {
  font-family: "Montserrat-Semibold";
  font-size: 14px;
  color: #ef3e42;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-wrapper .details .section span {
    font-size: 11px;
  }
}
#schedule-visit .schedule-content-wrapper .details .section .email-wrapper,
#schedule-visit .schedule-content-wrapper .details .section .cart-content,
#schedule-visit .schedule-content-wrapper .details .section .contact-wrapper {
  margin-left: 10px;
}
#schedule-visit .schedule-content-wrapper .details .section .available-product {
  display: flex;
  align-items: baseline;
}
#schedule-visit .schedule-content-wrapper .details .section .available-product p {
  margin: 10px 0px 15px 0px;
  margin-left: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-wrapper .details .section .available-product p {
    font-size: 11px;
  }
}
#schedule-visit .schedule-content-wrapper .details .section .available-product span:last-child {
  font-family: "Montserrat";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-wrapper .details .section .available-product span:last-child {
    font-family: "Montserrat";
    font-size: 10px;
  }
}
#schedule-visit .schedule-content-wrapper .details .section a {
  /*
  					color: $primary_color;
  					font-family: "Montserrat-Regular";
  					text-decoration: underline;
  */
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-wrapper .details .section a {
    font-size: 11px;
  }
}
#schedule-visit .schedule-content-wrapper .details .section .ac {
  width: 100%;
}
#schedule-visit .schedule-content-wrapper .details .section .ac .ac-label {
  border: 1px solid #ef3e42;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #schedule-visit .schedule-content-wrapper .details .section .ac .ac-label {
    padding-left: 30px;
  }
}
#schedule-visit .schedule-content-wrapper .details .section .ac .ac-text .ac-label {
  border: 0px;
}

#meets .carousel-thumbnails .carousel-indicators img {
  max-width: 100px;
  height: 50px;
  overflow: hidden;
  display: block;
  width: 100%;
}
#meets .carousel-thumbnails .carousel-indicators li {
  height: auto;
  max-width: 100px;
  width: 100px;
  border: none;
  box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.75);
  padding: 0;
  margin: 0px 5px;
}
#meets .modal-dialog {
  max-width: 1000px !important;
  top: 10%;
}
#meets .modal-body {
  padding: 0rem !important;
}
#meets button {
  position: absolute;
  right: 2%;
  z-index: 2;
  color: #000;
  opacity: 1;
  /* -webkit-text-stroke: 2px #fff; */
  top: 2%;
}
#meets .panel {
  margin-bottom: 30px;
}
#meets .panel-body {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#meets .panel-body h4 {
  position: absolute;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #meets .panel-body img {
    width: 100%;
  }
}
#meets .panel-body .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
#meets .panel-body .content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out 0s;
  color: #fff;
}
#meets .panel-body:hover .content-overlay {
  opacity: 1;
}
#meets .panel-body:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}
#meets .carousel-item img {
  width: 100%;
}

#tvc .modal-dialog {
  max-width: 1000px;
  margin: 30px auto;
  top: 10%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tvc .modal-dialog {
    top: 25%;
  }
}
#tvc .modal-body {
  position: relative;
  padding: 0px;
}
#tvc .modal {
  background-color: rgba(54, 53, 53, 0.7019607843);
}
#tvc .close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  opacity: 1;
}
#tvc .btn:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
#tvc .btn {
  padding: 0px;
  width: 100%;
}
#tvc .tvc_sections {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tvc .tvc_sections {
    display: block;
  }
}
#tvc .tvc_sections .video_content {
  margin-left: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tvc .tvc_sections .video_content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #tvc .tvc_sections .video_content {
    margin-left: 30px;
  }
}
#tvc .tvc_sections .video_content h3 {
  text-transform: uppercase;
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
#tvc .tvc_sections .video_content p {
  text-align: left;
  width: 400px;
  font-size: 14px;
  line-height: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tvc .tvc_sections .video_content p {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #tvc .tvc_sections .video_content p {
    width: 250px;
  }
}

#print_ads .gallery {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0rem;
}
#print_ads .col-sm-4 {
  margin-bottom: 30px;
}

.pswp__img {
  /*
  		width: auto!important;
  		left: 21%!important;
  */
}

.cboxIframe h1 {
  background: #ef3e42;
  color: #fff;
}

#enquiry_pp_modal .modal-dialog {
  margin-top: 200px;
}

.form_pp_details_wrapper li.gfield.gf_left_half, .form_pp_details_wrapper li.gfield.gf_right_half {
  width: 48% !important;
}

.pdf_catalogue_modal.catalogue_modal {
  background: #fff;
  height: 1px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease 0.5s, height 0.5s ease;
  width: 0;
}
.pdf_catalogue_modal.catalogue_modal .gform_title {
  color: #ef3e42;
  font-size: 28px;
  font-family: "Montserrat-Semibold";
  margin-top: 0rem;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 3rem;
}
.pdf_catalogue_modal.catalogue_modal .gform_description {
  color: #000;
  font-size: 15px;
  font-family: "Montserrat-Semibold";
  margin-top: 0rem;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 1rem;
}
.pdf_catalogue_modal.catalogue_modal .gform_wrapper .gform_heading {
  margin-bottom: 0px;
}
.pdf_catalogue_modal .catalogue_content {
  color: transparent;
  font-size: 2em;
  position: absolute;
  text-align: center;
  transition: color 0.5s ease;
  width: 100%;
}
.pdf_catalogue_modal .catalogue_content .gform_validation_errors {
  display: none;
}
.pdf_catalogue_modal .catalogue_content .ginput_container_checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
.pdf_catalogue_modal .catalogue_content .ginput_container_checkbox label {
  position: relative;
  align-items: center;
  font-size: 15px;
}
.pdf_catalogue_modal .catalogue_content .ginput_container_checkbox input[type=checkbox] {
  display: none;
}
.pdf_catalogue_modal .catalogue_content .ginput_container_checkbox input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .pdf_catalogue_modal .catalogue_content .ginput_container_checkbox input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  .pdf_catalogue_modal .catalogue_content .ginput_container_checkbox input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  .pdf_catalogue_modal .catalogue_content .ginput_container_checkbox input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
.pdf_catalogue_modal.open {
  height: 70%;
  width: 70%;
  overflow-y: auto;
  transition: width 0.5s ease, height 0.5s ease 0.5s;
  z-index: 999;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .pdf_catalogue_modal.open {
    width: 90%;
    height: 100%;
  }
}
.pdf_catalogue_modal .catalogue_content {
  color: #fff;
  transition: color 0.5s ease 0.5s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .pdf_catalogue_modal .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .pdf_catalogue_modal .gform_wrapper {
    padding: 0px 15px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .pdf_catalogue_modal .gform_wrapper {
    padding: 0px 15px;
  }
}
.pdf_catalogue_modal .gform_wrapper .gfield_checkbox li input:checked + label:after {
  top: 5px;
  left: 11px;
}
.pdf_catalogue_modal .gform_wrapper input {
  font-size: 14px;
}
.pdf_catalogue_modal .gform_wrapper .gform_footer input[type=submit] {
  height: 44px;
  opacity: 1;
  width: auto;
  display: initial;
  font-size: 14px;
}
.pdf_catalogue_modal .gform_wrapper textarea.medium {
  height: 90px;
}
.pdf_catalogue_modal .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description,
.pdf_catalogue_modal .gform_wrapper .field_description_below .gfield_description {
  font-size: 12px;
}
.pdf_catalogue_modal .gform_wrapper label {
  color: #000;
  font-size: 13px;
}
.pdf_catalogue_modal .gform_wrapper .gfield_checkbox li {
  display: flex;
  align-items: center;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body {
  width: 60%;
  margin: auto;
  padding: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .pdf_catalogue_modal .gform_wrapper form .gform_body {
    width: 100%;
    margin: auto;
    padding: 10px;
  }
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul .gfield_label {
  font-size: 12px;
  color: #969696;
  position: initial;
  display: initial;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul input,
.pdf_catalogue_modal .gform_wrapper form .gform_body ul select {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  padding-bottom: 10px;
  -webkit-appearance: none;
  cursor: auto;
  height: auto;
  opacity: 1;
  width: 100%;
  display: block;
  font-size: 16px !important;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul .ginput_container_select {
  position: relative;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul .ginput_container_select::after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  color: #ef3e42;
  font-size: 20px;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul input:focus,
.pdf_catalogue_modal .gform_wrapper form .gform_body ul select:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid #ef3e42;
  transition: 0.5s ease-in-out;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul ::-moz-placeholder {
  font-size: 14px;
  color: #000000;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul ::placeholder {
  font-size: 14px;
  color: #000000;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul textarea:focus {
  border: 1px solid #ef3e42;
  outline: none;
}
.pdf_catalogue_modal .gform_wrapper form .gform_body ul li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: none;
  border-bottom: 1px solid #790000;
}
.pdf_catalogue_modal .gform_wrapper form .gform_footer {
  margin: auto;
  text-align: center;
}
.pdf_catalogue_modal .gform_wrapper form .validation_error {
  display: none;
}
.pdf_catalogue_modal .gform_wrapper .gfield_select {
  font-size: 16px;
}
.pdf_catalogue_modal .gform_validation_error .top_label input.medium, .pdf_catalogue_modal .gform_validation_error .top_label select.medium {
  width: 100% !important;
}
.pdf_catalogue_modal #download_cat:checked {
  height: 40px;
  opacity: 1;
  position: fixed;
  right: 10%;
  top: 10%;
  z-index: 1;
  -webkit-appearance: none;
  width: 40px;
  display: block;
  z-index: 1000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .pdf_catalogue_modal #download_cat:checked {
    right: 3%;
    top: 5%;
    width: 28px;
  }
}
.pdf_catalogue_modal #download_cat:checked::after,
.pdf_catalogue_modal #download_cat:checked:before {
  border-top: 1px solid #000;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 100%;
}
.pdf_catalogue_modal #download_cat:checked::after {
  transform: rotate(-45deg);
}
.pdf_catalogue_modal #download_cat:checked + label {
  color: #fff;
  transition: color 0.5s ease;
}
.pdf_catalogue_modal #download_cat:checked ~ .catalogue_modal {
  height: 80%;
  width: 70%;
  overflow-y: auto;
  transition: width 0.5s ease, height 0.5s ease 0.5s;
  z-index: 999;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .pdf_catalogue_modal #download_cat:checked ~ .catalogue_modal {
    height: 100%;
    width: 100%;
  }
}
.pdf_catalogue_modal #download_cat:checked ~ .catalogue_modal .catalogue_content {
  color: #fff;
  transition: color 0.5s ease 0.5s;
}

#enquiry_pp_modal .gform_confirmation_message {
  font-size: 18px;
  position: initial;
  margin-left: 0px;
  font-family: "Montserrat-Regular";
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#enquiry_pp_modal .gfield_checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#enquiry_pp_modal .gfield_checkbox label {
  position: relative;
  align-items: center;
  font-size: 13px;
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #enquiry_pp_modal .gfield_checkbox label {
    display: contents;
    font-size: 13px;
  }
}
#enquiry_pp_modal .gfield_checkbox label a {
  font-family: "Montserrat-Semibold";
}
#enquiry_pp_modal .gfield_checkbox input[type=checkbox] {
  display: none;
}
#enquiry_pp_modal .gfield_checkbox input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #enquiry_pp_modal .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #enquiry_pp_modal .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #enquiry_pp_modal .gfield_checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}

#thankyou {
  padding: 3rem;
}

.listing-banner h1 {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
}

.hw_btn_next {
  background-image: url(../images/theme-right.svg);
  background-repeat: no-repeat;
  right: 10%;
  left: auto;
  top: 5%;
  color: #ef3e42;
  position: absolute;
  z-index: 10;
}
.hw_btn_next:after {
  content: " ";
  display: block;
  width: 23px;
  height: 50px;
}
.hw_btn_next:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
  outline: 0px auto;
}

.hw_btn_prev {
  background-image: url(../images/theme-left.svg);
  background-repeat: no-repeat;
  right: auto;
  left: 10%;
  top: 5%;
  color: #ef3e42;
  position: absolute;
  z-index: 10;
}
.hw_btn_prev:after {
  content: " ";
  display: block;
  width: 23px;
  height: 50px;
}
.hw_btn_prev:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
  outline: 0px auto;
}

.hw_btn_next.swiper-button-disabled, .hw_btn_prev.swiper-button-disabled {
  display: none;
  opacity: 0.3;
}

.tooltip-product:hover:after {
  display: flex;
  justify-content: center;
  background: #ef3e42;
  border-radius: 8px;
  color: #fff;
  content: attr(title);
  margin: 0px auto 0;
  font-size: 12px;
  padding: 5px 10px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  height: auto;
  content: attr(data-title);
}

.tooltip-product {
  display: inline-block;
}

#gform_confirmation_wrapper_8 {
  height: 100%;
}

.pdf_catalogue_modal .catalogue_content {
  height: 100%;
}

#gform_confirmation_wrapper_8 .gform_confirmation_message {
  font-size: 18px;
  position: initial;
  margin-left: 0px;
  font-family: "Montserrat-Regular";
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-flow: column;
  height: 100%;
}

#privacy-policy, #terms-and-condition {
  margin: 2rem 0rem;
}
#privacy-policy h1::after, #terms-and-condition h1::after {
  content: "";
  display: block;
  width: 7%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
#privacy-policy .content-wrapper, #terms-and-condition .content-wrapper {
  margin-top: 30px;
}
#privacy-policy h5, #privacy-policy a, #terms-and-condition h5, #terms-and-condition a {
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #privacy-policy h5, #privacy-policy a, #terms-and-condition h5, #terms-and-condition a {
    font-size: 15px;
  }
}
#privacy-policy p, #terms-and-condition p {
  font-size: 14px;
  line-height: 25px;
}

#our-innovation {
  padding-bottom: 50px;
}
#our-innovation .gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 530px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #our-innovation .gallery-wrap {
    flex-direction: column;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #our-innovation .gallery-wrap {
    height: 50vh;
    min-height: 50vh;
    overflow-x: scroll;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #our-innovation .gallery-wrap {
    height: 50vh;
    min-height: 50vh;
    overflow-x: scroll;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #our-innovation .gallery-wrap {
    flex-wrap: nowrap;
    overflow: auto;
    height: 70vh;
  }
}
#our-innovation .item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
  position: relative;
  cursor: pointer;
  text-align: center;
  /*
  	  &:hover{
  	    flex: 7;
  	    @include screen(small) {
  		    flex: 3;
  	    }
  	    h3 {
  		    width: 100%;
  			text-align: center;
  			justify-content: flex-start;
  			    margin-bottom: 0px;
  	    }
  	  }
  */
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #our-innovation .item {
    height: 100% !important;
    padding-bottom: 30px;
  }
}
#our-innovation .item::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  background: url("../images/divider.svg");
  background-repeat: no-repeat;
  background-position: left;
  top: 0;
  left: 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #our-innovation .item::after {
    content: "";
    background: none;
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #our-innovation .item {
    height: 50vh;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #our-innovation .item {
    height: 50vh;
  }
}
#our-innovation .item:last-child {
  border-right: 0px;
}
#our-innovation .t-hide {
  margin: 50px;
  margin-top: 2rem;
  margin-top: 0px;
  display: none;
}
#our-innovation h3 {
  color: #fff;
  display: flex;
  font-size: 22px;
  font-family: "Montserrat-Semibold";
  text-align: center;
  margin: auto;
  margin-top: 5rem;
  width: 200px;
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #our-innovation h3 {
    margin: 6rem auto;
    font-size: 12px;
    margin-left: 10px !important;
    margin-top: 10px !important;
    justify-content: end;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #our-innovation h3 {
    font-size: 17px;
    padding-top: 20px;
    padding-left: 5px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #our-innovation h3 {
    font-size: 17px;
    padding-top: 20px;
    padding-left: 5px;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  #our-innovation h3 {
    font-size: 14px;
    margin-top: 2rem;
  }
}
#our-innovation p {
  color: #fff;
  font-size: 14px;
  margin: 50px;
  margin-left: 0px;
  margin-top: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #our-innovation a {
    margin-left: 0px;
  }
}
#our-innovation .heading {
  margin: auto;
}
#our-innovation .page-content-wrapper {
  padding: 3rem 0rem;
}
#our-innovation .arrow {
  position: absolute;
  bottom: 20%;
  left: 50%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #our-innovation .arrow {
    left: 3%;
  }
}

.our-innovation-expand {
  flex: 7 !important;
  transition: 0.5s ease-in-out !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .our-innovation-expand {
    flex: 3 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .our-innovation-expand {
    flex: 3 !important;
  }
}
.our-innovation-expand .item {
  text-align: left !important;
}
.our-innovation-expand .arrow {
  display: none !important;
}
.our-innovation-expand h3 {
  margin-left: 0 !important;
  padding-left: 70px !important;
  margin-right: 15rem !important;
  width: 350px !important;
  justify-content: end !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .our-innovation-expand h3 {
    padding-left: 10px !important;
    width: 100% !important;
    justify-content: end !important;
    margin-left: 30px !important;
    font-size: 14px !important;
    margin-bottom: 0rem !important;
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .our-innovation-expand h3 {
    padding-left: 48px !important;
    margin-right: 15rem !important;
    width: 350px !important;
    justify-content: end !important;
    padding-top: 30px;
    font-size: 18px !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .our-innovation-expand h3 {
    padding-left: 50px !important;
    margin-right: 15rem !important;
    width: 350px !important;
    justify-content: end !important;
    padding-top: 30px;
    font-size: 18px !important;
  }
}
.our-innovation-expand p {
  text-align: left !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .our-innovation-expand p {
    width: 100% !important;
    font-size: 12px !important;
  }
}
.our-innovation-expand a {
  margin-left: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .our-innovation-expand .t-hide {
    margin-left: 20px !important;
  }
}
.our-innovation-expand .mnemonics {
  float: left;
  margin-top: 2rem;
  color: #fff;
}
.our-innovation-expand .mnemonics .title {
  margin-left: 20px;
}
.our-innovation-expand .mnemonics .features {
  margin-top: 15px;
  display: flex;
  justify-content: space-evenly;
  margin-left: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .our-innovation-expand .mnemonics .features {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.our-innovation-expand .mnemonics .features span {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .our-innovation-expand .mnemonics .features span {
    width: 30px;
    height: 30px;
  }
}
.our-innovation-expand .mnemonics .features span:hover:after {
  display: flex;
  justify-content: center;
  background: #ef3e42;
  border-radius: 8px;
  color: #fff;
  content: attr(title);
  margin: 0px auto 0;
  font-size: 12px;
  padding: 5px 10px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  height: auto;
  content: attr(data-title);
  margin-top: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .our-innovation-expand .mnemonics .features span:hover:after {
    margin-top: 10px;
    font-size: 12px;
  }
}

.shower_enclosure_variation_tbl {
  font-size: 13px;
}
.shower_enclosure_variation_tbl thead tr {
  padding: 10px 5px !important;
}
.shower_enclosure_variation_tbl thead tr .label {
  padding-right: 0px !important;
}
.shower_enclosure_variation_tbl tbody tr {
  padding: 10px 5px !important;
}
.shower_enclosure_variation_tbl tbody tr .label {
  width: 17% !important;
  padding-right: 0px !important;
}

.product_note {
  color: red;
  font-size: 13px;
  font-style: italic;
  font-weight: bolder;
  padding: 10px 0px;
}

.gform_validation_errors {
  display: none;
}

.no_sales_person ::-moz-placeholder {
  display: none;
}

.no_sales_person ::placeholder {
  display: none;
}

.gform_fileupload_rules {
  font-size: 12px !important;
}

.gform_delete {
  width: auto !important;
}

.banner-homepage-swipe .swiper-wrapper .swiper-slide:nth-child(1) h4, .banner-homepage-swipe .swiper-wrapper .swiper-slide:nth-child(1) h1 {
  display: none;
}

.has-vivid-red-color {
  color: #ef3e42 !important;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .mb_gif_animation img {
    position: relative !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mb_gif_animation img {
    position: relative !important;
  }
}

#sb_instagram .sbi_photo img {
  display: block !important;
}

#sb_instagram #sbi_images .sbi_js_load_disabled .sbi_imgLiquid_ready.sbi_photo {
  height: auto !important;
}

#types .type-wrapper:nth-child(3n+1) {
  margin-top: 0px !important;
}

#types .type-wrapper:nth-child(3n+2) {
  margin-top: 0px !important;
}

#types .type-wrapper {
  margin-bottom: 40px !important;
}

.product .entry-header {
  display: none;
}

.sale_badge {
  margin-left: 30px;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  padding: 5px;
}

.widget-area {
  display: none;
}

.entry-footer {
  clear: both;
}

.post-navigation {
  display: none;
}

.feature_title {
  text-align: center;
  font-size: 30px;
}

.woocommerce-variation-add-to-cart {
  display: none;
}

.product_meta {
  display: none;
}

.wc_color_attibutes {
  margin: 10px 0px;
}
.wc_color_attibutes span:first-child {
  font-size: 12px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .wc_color_attibutes {
    justify-content: center;
  }
}

.product-listing-container {
  margin-top: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-listing-container {
    margin-top: 0;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-listing-container .amount {
    justify-content: center;
  }
}
.product-listing-container .product {
  position: relative;
}
.product-listing-container .pf_on_hover {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  align-items: center;
  justify-content: center;
  top: 0px;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.product-listing-container .inside_on_hover {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #EF3E42;
  color: #fff !important;
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  position: absolute;
  z-index: 3;
}
.product-listing-container .inside_on_hover:hover {
  background-color: #fff;
  color: #000 !important;
  border: 1px solid #ef3e42;
}
.product-listing-container .product:hover .pf_on_hover {
  display: flex;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.product-listing-container .addtocartbutton {
  display: none;
}

.btn_links {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .btn_links {
    justify-content: center;
  }
}
.btn_links .where_to_buy_btn {
  color: #fff;
  background: red;
  padding: 16px 35px;
  font-size: 14px;
}
.btn_links .prod_enquiry_btn {
  color: #000;
  font-weight: bold;
  border: 1px solid red;
  padding: 15px 35px;
  font-size: 14px;
  margin-left: 30px;
}

.woocommerce .btn_links a.button:hover {
  background-color: #ef3e42;
}

.custom_attributes {
  background-color: #fcf6dc;
  padding: 20px;
}

.bapf_loader_page {
  display: none !important;
}

.single-product .feature_title {
  font-size: 24px;
  font-family: "Montserrat";
  text-align: center;
}
.single-product .feature_title::after {
  content: "";
  display: block;
  width: 4%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
  margin: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .single-product .feature_title::after {
    margin-top: -5px;
    width: 50%;
    margin: 0px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .single-product .feature_title::after {
    margin: auto;
  }
}
.single-product .woocommerce-Price-amount {
  font-size: 20px;
  font-family: "Montserrat";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .single-product .woocommerce-Price-amount {
    font-size: 13px;
  }
}

del .woocommerce-Price-amount bdi {
  font-size: 16px;
}

.dropbtn {
  background-color: #4caf50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: transparent;
}

.woocommerce div.product .product_title {
  margin-bottom: 0px;
}

.product .product_title {
  font-size: 24px;
}

.woocommerce-Price-currencySymbol {
  margin-right: 10px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #000;
  font-size: 20px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce div.product p.price,
  .woocommerce div.product span.price {
    display: block;
    width: 100%;
    text-align: left;
    margin-top: 13px;
    margin-bottom: 3rem;
  }
}

.sale_badge {
  font-size: 12px;
  font-family: "Montserrat-Regular";
}

.shr_lbl {
  font-size: 12px;
  margin-right: 15px;
}

.twt_link {
  margin-right: 15px;
}

.fb_link {
  margin-right: 15px;
}

.summary .price:last-child {
  float: right;
}

.woocommerce div.product p.price del {
  margin-right: 10px;
}

.woocommerce-product-details__short-description {
  font-size: 14px;
  line-height: 27px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce-product-details__short-description {
    font-size: 13px;
    padding-top: 1rem;
  }
}

.custom_attributes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.custom_attributes .attributesSection {
  width: auto;
  padding: 0px 15px;
}
.custom_attributes .attributesSection h6 {
  margin-bottom: 10px;
  color: #808080;
  margin-top: 15px;
  font-size: 12px;
}
.custom_attributes .attributesSection .value {
  font-family: "Montserrat-Regular";
  font-size: 14px;
}

.woocommerce-product-gallery {
  margin-bottom: 20px;
  width: 50%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce-product-gallery {
    width: 100%;
  }
}

.download_section {
  margin-top: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .download_section {
    display: grid;
  }
}
.download_section h4 {
  font-size: 14px;
}
.download_section .dropbtn {
  width: 422px;
  height: 48px;
  background: #fff;
  border: 1px solid black;
  color: black;
  padding: 0px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.download_section .dropbtn:hover {
  background: #fff;
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .download_section .dropbtn {
    width: 100%;
  }
}
.download_section .dropbtn img {
  margin-left: 7rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .download_section .dropbtn img {
    margin-left: 3rem;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  .download_section .dropbtn img {
    margin-left: 3rem;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  .download_section .dropbtn img {
    margin-left: 7rem;
  }
}
.download_section .dropbtn span {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .download_section .dropbtn span {
    font-size: 10px;
  }
}
.download_section p {
  font-size: 14px;
  font-family: "Montserrat-Regular";
}
.download_section .dropbtn::after {
  content: "\f107";
  font-family: fontAwesome;
  margin-left: auto;
  margin-right: 20px;
  color: #ef3e42;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .download_section .dropbtn::after {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.download_section .dropdown-content {
  width: 100%;
}

.app-store {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .app-store {
    text-align: center;
    display: block;
  }
}
.app-store span {
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .app-store span {
    font-size: 10px;
  }
}
.app-store .app-images img {
  margin-right: 15px;
  padding: 0px;
  background: transparent;
  width: auto;
}

.feature-section {
  padding: 1rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.feature-section .feature_title {
  margin-bottom: 20px;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.feature-section .feature_title::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .feature-section .feature_title::after {
    margin-top: -5px;
    width: 50%;
    margin: 0px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .feature-section .feature_title::after {
    margin: auto;
  }
}
.feature-section ul {
  /*display: flex;
  padding: 0;
  justify-content: space-evenly;
  margin-left: 40px;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 20px;
      margin: 10px 0px;*/
  display: flex;
  padding: 0;
  margin-left: 40px;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 20px;
  margin: 10px 25px 10px 35px;
  justify-content: flex-start;
  flex-direction: row;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .feature-section ul {
    display: block;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .feature-section ul {
    justify-content: flex-start;
  }
}
.feature-section ul li::before {
  content: "\f111";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  color: #ef3e42;
  /* height: 100px; */
  vertical-align: text-top;
  line-height: 20px;
  font-size: 7px;
  margin-right: 10px;
}
.feature-section ul li {
  /*font-size: 14px;
  			width: 310px;
  // 			line-height: 22px;
  			// margin-right: 20px;
  			    display: flex;
  			    margin: 10px 0px;*/
  font-size: 14px;
  width: 100%;
  display: flex;
  margin: 10px 0px;
  max-width: 310px;
  margin-right: 25px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .feature-section ul li {
    font-size: 14px;
    margin-right: 20px;
    margin-bottom: 20px;
    width: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .feature-section ul li {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .feature-section ul li {
    width: 100%;
  }
}

.woocommerce a.button {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-family: "Montserrat";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  margin-right: 20px;
  border-radius: 0px;
}
.woocommerce a.button:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ef3e42;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce a.button {
    margin: auto;
    font-size: 12px;
    width: 50%;
    margin: 10px;
  }
}
.woocommerce a.compare {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.woocommerce .button-light {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ffffff;
  color: #000;
  font-family: "Montserrat";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  border: 1px solid #ef3e42;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce .button-light {
    margin: auto;
    font-size: 12px;
    width: 50%;
    margin: 10px;
  }
}
.woocommerce a.button.amazon {
  background-color: #000;
  margin-left: 20px;
  border: 1px solid #000;
}
.woocommerce a.button.amazon:hover {
  background-color: #fff !important;
  color: #000 !important;
}

#bathroomPlanner {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner {
    background-size: cover !important;
  }
}
#bathroomPlanner .page-content-wrapper {
  padding: 2rem 0rem;
  padding-top: 1rem;
}
#bathroomPlanner .page-content-wrapper p {
  width: 350px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .page-content-wrapper p {
    width: auto;
    font-size: 14px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #bathroomPlanner .page-content-wrapper a {
    margin: auto;
    width: -moz-max-content;
    width: max-content;
  }
}

.related-products {
  margin-top: 2rem;
}
.related-products .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4f4f4;
  margin-bottom: 1rem;
  padding-right: 15px;
}
.related-products .header h5 {
  font-size: 18px;
  margin: 15px 0px;
  margin-left: 15px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .related-products .header h5 {
    font-size: 13px;
  }
}
.related-products .header a {
  font-size: 14px;
  color: #ef3e42;
  text-decoration: underline;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .related-products .header a {
    font-size: 12px;
  }
}
.related-products .products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .related-products .products {
    display: block;
  }
}
.related-products .products a:last-child .product-wrapper {
  margin-right: 0px;
}
.related-products .products .product-section {
  width: -moz-fit-content;
  width: fit-content;
  background: #f4f4f4;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .related-products .products .product-section {
    padding: 1rem;
    width: 100%;
  }
}
.related-products .products .product-section img {
  background: transparent;
}
.related-products .products .product-wrapper:first-child {
  margin-right: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .related-products .products .product-wrapper:first-child {
    margin-right: 0rem;
    margin-bottom: 20px;
  }
}
.related-products .products .product-wrapper:nth-child(2) {
  margin-right: 1rem;
}
.related-products .products .description {
  font-size: 14px;
  margin-top: 15px;
  font-family: "Montserrat-Regular";
  width: 150px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .related-products .products .description {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

.woocommerce div.product div.images {
  margin-bottom: 3em;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce div.product div.images {
    margin-bottom: 2em;
  }
}

.woocommerce-message {
  border-top-color: #ef3e42;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce-message {
    font-size: 11px;
  }
}

.woocommerce-message::before {
  color: #ef3e42;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce div.product .product_title {
    font-size: 18px;
    margin: 0;
  }
}

.related {
  display: none !important;
}

.social-share {
  float: right;
  margin-left: auto;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .social-share {
    float: left;
    margin-top: 1rem;
  }
}

.variable-item:not(.radio-variable-item) {
  margin: 0px 5px;
  width: 30px !important;
  height: 31px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.variable-items-wrapper {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: space-evenly;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .variable-items-wrapper li {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}

.woocommerce div.product form.cart .variations {
  border: 1px solid #f4f4f4;
}

.variations tbody tr {
  display: block;
  padding: 20px 20px;
}
.variations tr:first-child {
  border-bottom: 1px solid #f4f4f4;
}
.variations tr:first-child td label {
  margin-bottom: 0px;
}

.variable-item-span {
  width: 20px;
  height: 20px;
  padding: 8px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #8c8e8d;
  margin-top: 0.1rem;
  margin-left: 0rem;
}

.color-variable-item.selected {
  border: 1px solid #969696;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  vertical-align: middle;
  line-height: 0em;
}

.woocommerce span.onsale {
  display: none;
}

.woocommerce div.product form.cart .reset_variations {
  display: none;
  visibility: hidden;
}

.reset_variations {
  display: none !important;
}

.bread_crumb {
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .bread_crumb {
    display: none;
  }
}
.bread_crumb ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bread_crumb ul li {
  margin: 0px 10px;
}
.bread_crumb ul li:first-child {
  margin-left: 0px;
}
.bread_crumb ul li:last-child {
  font-family: "Montserrat-Regular";
}

.product-listing {
  margin-top: 20px;
}
.product-listing .woocommerce-breadcrumb {
  font-size: 14px;
}
.product-listing .woocommerce-ordering {
  float: right;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-listing .woocommerce-ordering {
    float: none;
    margin-bottom: 15px;
  }
}
.product-listing .woocommerce-ordering select {
  border: none;
  border-bottom: 1px solid;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  font-family: "Montserrat-Regular";
  outline: none;
  width: 200px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product-listing .woocommerce-ordering select {
    width: 100%;
  }
}
.product-listing .woocommerce-ordering::after {
  content: "\f107";
  font-family: fontAwesome;
  position: absolute;
  right: 15px;
  color: #ef3e42;
}

.shop-page .bapf_sfilter ul li {
  display: block !important;
}

.bapf_sfilter .bapf_hascolarr {
  font-size: 14px;
  background-color: #f4f4f4;
  padding: 10px;
  margin-top: 0px;
}
.bapf_sfilter .fa-chevron-up:before {
  content: "\f068";
  font-family: fontAwesome;
  -webkit-text-stroke: 2px #fff;
}
.bapf_sfilter .fa-chevron-down:before {
  content: "\f067";
  font-family: fontAwesome;
  -webkit-text-stroke: 2px #fff;
}
.bapf_sfilter .bapf_colaps_smb {
  right: 10px;
}
.bapf_sfilter .bapf_body > ul {
  padding: 10px;
  overflow: hidden;
  max-height: 305px;
  overflow-y: scroll;
}
.bapf_sfilter ul li {
  margin-bottom: 15px !important;
  display: block;
}
.bapf_sfilter ul li label {
  margin-bottom: 0px;
}
.bapf_sfilter ul li ul li {
  display: flex;
}
.bapf_sfilter label {
  font-size: 13px;
  margin-left: 10px;
  position: relative;
  margin-bottom: 0px;
}
.bapf_sfilter input[type=checkbox]:checked,
.bapf_sfilter .bapf_asradio input:checked {
  background: transparent !important;
}
.bapf_sfilter input[type=checkbox] {
  width: 15px;
  height: 15px;
  border: 1px solid #555;
}
.bapf_sfilter input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -24px;
  width: 6px;
  height: 14px;
  border: 1px solid #ef3e42;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}

.bapf_asradio2 ul li input[type=checkbox] {
  border: 1px solid #555;
}

.bapf_asradio input:checked + label:after {
  content: "";
  width: 7px;
  height: 7px;
  background: #ef3e42;
  position: absolute;
  top: 7px;
  left: -26px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.type-product {
  margin-bottom: 30px;
}
.type-product a img {
  padding: 16px;
  background: #fcfcfc;
  width: 100%;
}
.type-product a span {
  position: absolute;
  font-size: 12px;
  right: 20px;
  top: 4px;
  color: #969696;
}
.type-product .amount {
  margin: 10px 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .type-product .amount {
    display: flex;
    margin: 0px;
  }
}
.type-product .feature img {
  width: 34px;
  height: 34px;
  margin-top: 15px;
}
.type-product .yith-wcqv-button {
  position: absolute;
  top: 0;
  display: none;
}

.woocommerce-loop-product__title {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce-loop-product__title {
    width: auto;
    text-align: center;
  }
}

.wc_color_attibutes span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.yith-wcqv-wrapper .woocommerce div.product p.price {
  justify-content: inherit;
}
.yith-wcqv-wrapper .woocommerce div.product p.price bdi {
  font-size: 18px;
}
.yith-wcqv-wrapper .woocommerce div.product p.price span {
  margin-right: 10px;
}
.yith-wcqv-wrapper .woocommerce div.product p.price span:last-child {
  margin-left: 10px;
}

#yith-quick-view-close {
  color: #ef3e42;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 16px;
  text-align: center;
  line-height: 18px;
  z-index: 2;
  opacity: 1;
}

#feedback .faq-content {
  margin-left: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #feedback .faq-content {
    margin-left: 0px;
  }
}

.detail-wrapper {
  text-align: center;
  margin-top: 40px;
}
.detail-wrapper h2 {
  font-size: 30px;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .detail-wrapper h2 {
    width: 100%;
    font-size: 17px;
    line-height: 25px;
    text-align: center;
  }
}
.detail-wrapper h2::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .detail-wrapper h2::after {
    margin: auto;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .detail-wrapper h2::after {
    margin-left: 14%;
  }
}
.detail-wrapper .detail-content {
  padding: 20px;
  background: #f4f4f4;
  margin-top: 20px;
}
.detail-wrapper .detail-content p {
  text-align: left;
  font-size: 16px;
  line-height: 25px;
  margin: 0;
  padding: 0px 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .detail-wrapper .detail-content p {
    padding: 0px;
    font-size: 14px;
  }
}

.types-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 2rem;
}
.types-wrapper h2 {
  font-size: 30px;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper h2 {
    width: 100%;
    font-size: 17px;
    line-height: 25px;
    text-align: center;
  }
}
.types-wrapper h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper h2::after {
    margin: auto;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .types-wrapper h2::after {
    margin-left: 14%;
  }
}
.types-wrapper .types-content {
  padding: 20px;
  background: #f4f4f4;
  font-size: 16px;
  margin-top: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-content {
    margin-top: 20px;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
  }
}
.types-wrapper .types-content p {
  text-align: center;
  font-size: 14px;
  line-height: 25px;
  margin: 0;
  padding: 0px 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-content p {
    padding: 0px;
    font-size: 14px;
    text-align: left;
  }
}
.types-wrapper .types-playground .col-sm-4,
.types-wrapper .types-playground .col-sm-8 {
  padding: 0px;
}
.types-wrapper .types-playground .nav-tabs {
  display: none;
}
.types-wrapper .types-playground .nav {
  position: initial;
}
.types-wrapper .types-playground .nav a {
  border: none;
  border-bottom: 0px !important;
  height: 80px;
  background: #f4f4f4;
  border-radius: 0px;
  color: #000;
}
.types-wrapper .types-playground .nav li {
  display: block;
  border-bottom: none;
  padding-bottom: 0px;
  padding-top: 5px;
}
.types-wrapper .types-playground .nav-tabs .nav-link.active {
  background-color: #ef3e42;
  color: #fff;
  animation: abc;
  transition: 0.2s;
}
.types-wrapper .types-playground .nav-item {
  font-size: 16px;
}
.types-wrapper .types-playground .nav-item a {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-playground .card {
    border-radius: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-playground .card-header {
    padding: 0px;
    border-bottom: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-playground .card-header h5 {
    font-size: 14px;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-playground .card-header a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0.75rem 1.25rem;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-playground .card-header a[aria-expanded=true] {
    background-color: #ef3e42;
    color: #fff !important;
  }
}
.types-wrapper .types-playground .card-body {
  background: #f4f4f4;
  margin-top: 5px;
  margin-left: 5px;
  height: 333px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-playground .card-body {
    background: #fff;
    height: auto;
  }
}
.types-wrapper .types-playground .card-body h2 {
  text-align: left;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-playground .card-body h2 {
    text-align: left;
  }
}
.types-wrapper .types-playground .card-body h2:after {
  margin: 0px;
  width: 15%;
}
.types-wrapper .types-playground .card-body p {
  text-align: left;
  line-height: 25px;
  font-size: 16px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .types-wrapper .types-playground .card-body p {
    text-align: left;
    line-height: 25px;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .types-wrapper .types-playground .nav-tabs {
    display: block;
  }
  .types-wrapper .types-playground .card {
    border: none;
  }
  .types-wrapper .types-playground .card .card-header {
    display: none;
  }
  .types-wrapper .types-playground .card .collapse {
    display: block;
  }
}
@media (max-width: 767px) {
  .types-wrapper .types-playground .tab-content > .tab-pane {
    display: block;
    opacity: 1;
  }
}
.types-wrapper .types-playground .show {
  display: block;
  opacity: 1;
  z-index: 10;
}
.types-wrapper .tabs-wrapper {
  position: sticky;
  top: 10%;
}
.types-wrapper .tabs-wrapper .tabs-heading h2 {
  font-family: "Montserrat";
  margin-top: 0px;
  border-bottom: 2px solid #ef3e42;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .types-wrapper .tabs-wrapper .tabs-heading h2 {
    font-size: 30px;
  }
}
.types-wrapper .tabs-wrapper .tabs-section ul a {
  border-bottom: 1px solid #f4f4f4;
}

.sidebar-tabs .active {
  display: block;
}
.sidebar-tabs .tabs {
  background: #fff;
}
.sidebar-tabs .tabs li {
  height: 80px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  background: #f4f4f4;
  margin-top: 5px;
}
.sidebar-tabs .tabs li.active {
  color: #fff;
  animation: abc;
  background: #ef3e42;
}
.sidebar-tabs .content {
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.sidebar-tabs .content-section .active {
  display: block;
  opacity: 1;
  animation: abc;
}
.sidebar-tabs .content-section span {
  font-size: 30px;
}
.sidebar-tabs .content-section .content-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ef3e42;
}
.sidebar-tabs .content-section .content-wrapper p {
  font-size: 14px;
  text-align: center;
}
.sidebar-tabs ul {
  margin-bottom: 10px;
  padding: 0;
  display: grid;
  margin: 0;
}
.sidebar-tabs li {
  list-style: none;
  display: inline-block;
  margin-right: -4px;
  text-align: left;
  border-bottom: 1px solid #f4f4f4;
  cursor: pointer;
  padding: 10px 0px;
  font-size: 14px;
}

#sidebarTabsSection::after,
.sidebar-tabs .tabs li.active::after {
  content: "";
}

.content-wrapper {
  background: #f4f4f4;
  padding: 20px;
  margin-left: 10px;
  margin-top: 5px;
  overflow-y: auto;
  height: 500px;
}
.content-wrapper img {
  float: left;
}
.content-wrapper .types-description {
  text-align: left;
}
.content-wrapper .types-description h5 {
  font-family: "Montserrat-Semibold";
  padding-top: 20px;
}
.content-wrapper .types-description p {
  text-align: left !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .content-wrapper .types-description h2 {
    margin-top: 20px;
    text-align: left;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .content-wrapper .types-description h2::after {
    margin: 10px 0px;
  }
}

/*
	.content-wrapper::-webkit-scrollbar {
	    display: none;
	}

	.content-wrapper {
	  -ms-overflow-style: none;  
	  scrollbar-width: none;  
	}
*/
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woo-selected-variation-item-name {
    display: none;
  }
}

.woocommerce-variation-price {
  display: none;
}

#breadcrumbs {
  font-size: 14px;
  padding-left: 10px;
  padding-top: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #breadcrumbs {
    display: none;
  }
}

.breadcrumb_last {
  font-family: "Montserrat-Semibold";
}

.flex-control-thumbs li {
  margin-top: 20px !important;
  margin-right: 20px !important;
}
.flex-control-thumbs li:nth-child(4n+1) {
  clear: none !important;
}
.flex-control-thumbs img {
  padding: 20px;
  background: #fcfcfc;
  margin-top: 20px;
}

.woocommerce-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
.woocommerce-pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 auto;
  padding: 0;
  max-width: 290px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce-pagination ul {
    padding: 0;
  }
}
.woocommerce-pagination ul li {
  font-size: 12px;
}
.woocommerce-pagination ul li .page-numbers {
  width: 20px;
  height: 20px;
  border: 1px solid #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-pagination ul li .next, .woocommerce-pagination ul li .prev {
  border: none;
}
.woocommerce-pagination ul span.current {
  background-color: #ef3e42;
  color: #fff;
  padding: 10px;
}
.term-description {
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  margin-bottom: 40px;
}

.woosg-products .woosg-product {
  display: block !important;
}
.woosg-products .woosg-product .grouped_variation .variations {
  display: flex !important;
}
.woosg-products .woosg-product .grouped_variation .variations .variation {
  border: none !important;
  padding: 0 15px !important;
  margin: 5px 0 !important;
}
.woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper {
  justify-content: flex-start;
}
.woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item {
  margin: 0;
}
.woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item[data-title] {
  width: auto !important;
  border: none !important;
  justify-content: flex-start;
  width: 100% !important;
}
.woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item[data-title]:hover:after {
  display: none !important;
}
.woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item.color-variable-item[data-title]:before {
  content: attr(data-title);
  transform: none;
  color: inherit;
  opacity: 1;
  visibility: visible;
  background: transparent;
  box-shadow: none;
  float: none;
  position: initial;
  order: 2;
  min-width: auto;
  margin-bottom: 0;
}
.woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item.selected span {
  position: relative;
}
.woosg-products .woosg-product .grouped_variation .variations .variation .variable-items-wrapper .variable-item.selected span:before {
  content: "";
  width: 12px;
  height: 12px;
  border: thin solid gray;
  display: inline-block;
  border-radius: 50%;
  background: gray;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.woosg-products .woosg-product > div:last-child {
  text-align: left !important;
}

.product-type-woosg .product_title.entry-title + .price, .product-type-woosg .woosg_total.woosg-total, .product-type-woosg .quantity + .single_add_to_cart_button {
  display: none !important;
}
.product-type-woosg .woocommerce-product-gallery {
  display: none;
}
.product-type-woosg .product_title {
  font-family: "Montserrat-Semibold";
}

.woocommerce div.status-publish.type-product[id^=product-]:after {
  content: "";
  display: inherit;
  clear: both;
}

.bapf_sfilter .bapf_body ul li ul {
  margin-left: 0;
  padding: 12px 0px 0px 20px;
}

#pdf-content {
  background: #fff;
  border: none;
  display: none;
}
#pdf-content table {
  width: 100%;
  text-align: center;
  font-size: 15px;
}
#pdf-content table th {
  font-family: "Montserrat-Regular";
  padding: 10px;
}
#pdf-content table td {
  font-family: "Montserrat";
  padding: 10px;
}
#pdf-content h2 {
  font-family: "Montserrat-Semibold";
  text-transform: uppercase;
  font-size: 25px;
}

.entry-header h1 {
  font-family: "Montserrat";
  margin-top: 0px;
  font-size: 36px;
  width: 30%;
}
.entry-header h1::after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background: #ef3e42;
  transition: width 0.3s;
  margin-top: 15px;
}

.my-account-page {
  display: flex;
}
.my-account-page .woocommerce-MyAccount-navigation {
  width: 30%;
}
.my-account-page .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.my-account-page .woocommerce-MyAccount-navigation ul li {
  padding: 10px 0px;
  border-bottom: 1px solid #f4f4f4;
  display: flex;
}
.my-account-page .woocommerce-MyAccount-navigation ul a {
  width: 100%;
}
.my-account-page .woocommerce-MyAccount-navigation ul li.is-active::after {
  content: "\f105";
  font-family: fontAwesome;
  float: right;
  color: #ef3e42;
}
.my-account-page .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #ef3e42;
  animation: abc;
  font-family: "Montserrat-Semibold";
}
.my-account-page .woocommerce-MyAccount-navigation ul li.is-active a:hover {
  color: #ef3e42 !important;
}
.my-account-page .woocommerce-MyAccount-content {
  padding: 0rem 2rem;
  width: 70%;
}
.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row .select2-container--default .select2-selection--single {
  border: none;
  border-bottom: 1px solid;
  border-radius: 0px;
  height: 35px;
  padding-left: 0px;
}
.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
  outline: none;
}
.my-account-page .woocommerce-MyAccount-content .woocommerce-address-fields .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0px;
}
.my-account-page .woocommerce-MyAccount-content table.order_details td {
  font-size: 15px;
}
.my-account-page .woocommerce-MyAccount-content table.my_account_orders th {
  font-family: "Montserrat-Semibold";
  color: #ef3e42;
  text-align: center;
}
.my-account-page .woocommerce-MyAccount-content table.my_account_orders .button {
  height: 35px;
  margin: auto;
}
.my-account-page .woocommerce-MyAccount-content table.my_account_orders td, .my-account-page .woocommerce-MyAccount-content table.my_account_orders .woocommerce table.my_account_orders th {
  padding: 7px 8px;
}
.my-account-page .woocommerce-MyAccount-content table.my_account_orders td {
  font-size: 15px;
  text-align: center;
  margin: auto;
}
.my-account-page .woocommerce-MyAccount-content p mark {
  background-color: #fde0e1;
}
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details h2, .my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details h2 {
  font-size: 25px;
  color: #7c7778;
}
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details table th, .my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details table th {
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
.my-account-page .woocommerce-MyAccount-content .woocommerce-order-details address p, .my-account-page .woocommerce-MyAccount-content .woocommerce-customer-details address p {
  display: flex;
  align-items: center;
  color: #ef3e42;
}
.my-account-page .woocommerce-Addresses .woocommerce-Address header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}
.my-account-page .woocommerce-Addresses .woocommerce-Address header h3 {
  font-size: 18px;
}
.my-account-page .woocommerce-Addresses .woocommerce-Address header a {
  font-size: 14px;
  text-decoration: underline;
}
.my-account-page .woocommerce-Addresses .woocommerce-Address address {
  margin-top: 20px;
  line-height: 30px;
}
.my-account-page input {
  border: none;
  border-bottom: 1px solid;
  border-radius: 0px;
  height: 35px;
}
.my-account-page input:focus {
  outline: none;
}
.my-account-page input:checked {
  height: 40px;
  opacity: 1;
  position: fixed;
  right: 5%;
  top: 5%;
  z-index: 1;
  -webkit-appearance: none;
  width: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .my-account-page input:checked {
    right: 3%;
    top: 3%;
    width: 20px;
  }
}
.my-account-page input:checked::after,
.my-account-page input:checked:before {
  border-top: 1px solid #000;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 100%;
}
.my-account-page input:checked::after {
  transform: rotate(-45deg);
}
.my-account-page input:checked + label {
  color: #fff;
  transition: color 0.5s ease;
}
.my-account-page input:checked ~ .modal {
  height: 100%;
  width: 100%;
  transition: width 0.5s ease, height 0.5s ease 0.5s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .my-account-page input:checked ~ .modal {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
  }
}
.my-account-page input:checked ~ .modal .content {
  color: #fff;
  transition: color 0.5s ease 0.5s;
}
.my-account-page form span {
  font-size: 13px;
  margin-top: 5px;
}
.my-account-page form legend {
  font-size: 16px;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  margin: 30px 0px;
}
.my-account-page form p {
  margin-bottom: 20px !important;
  display: block;
}
.my-account-page form h3 {
  font-size: 18px;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  margin-bottom: 20px;
}

.woocommerce button.button {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  height: 44px;
  background-color: #ef3e42;
  color: #fff !important;
  font-family: "Montserrat";
  font-size: 14px;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce button.button {
    margin: auto;
    font-size: 12px;
    width: auto;
    margin: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .woocommerce button.button {
    margin: 0;
    font-size: 12px;
    margin: 10px;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
  }
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #ef3e42;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background-color: #ef3e42 !important;
}

.woocommerce button.button:hover {
  background-color: #ef3e42 !important;
}

.woocommerce-cart-form img {
  padding: 5rem;
}
.woocommerce-cart-form .cart .button {
  float: right;
}
.woocommerce-cart-form .coupon {
  display: flex;
}
.woocommerce-cart-form .coupon #coupon_code {
  padding-left: 20px;
  width: 50%;
}
.woocommerce-cart-form .coupon button[name=apply_coupon] {
  width: 200px;
  margin-left: 20px;
}
.woocommerce-cart-form .cart-collaterals .cart_totals, .woocommerce-cart-form .woocommerce-page .cart-collaterals .cart_totals {
  width: 50%;
}
.woocommerce-cart-form .cart_totals h2 {
  font-size: 30px;
}

.woocommerce-checkout .woocommerce-billing-fields {
  padding: 20px;
  border: 1px solid #f4f4f4;
}
.woocommerce-checkout input {
  border: none;
  border-bottom: 1px solid;
  border-radius: 0px;
  height: 35px;
}
.woocommerce-checkout input:focus {
  outline: none;
}
.woocommerce-checkout input:checked {
  height: 40px;
  opacity: 1;
  position: fixed;
  right: 5%;
  top: 5%;
  z-index: 1;
  -webkit-appearance: none;
  width: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce-checkout input:checked {
    right: 3%;
    top: 3%;
    width: 20px;
  }
}
.woocommerce-checkout input:checked::after,
.woocommerce-checkout input:checked:before {
  border-top: 1px solid #000;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 100%;
}
.woocommerce-checkout input:checked::after {
  transform: rotate(-45deg);
}
.woocommerce-checkout input:checked + label {
  color: #fff;
  transition: color 0.5s ease;
}
.woocommerce-checkout input:checked ~ .modal {
  height: 100%;
  width: 100%;
  transition: width 0.5s ease, height 0.5s ease 0.5s;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .woocommerce-checkout input:checked ~ .modal {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
  }
}
.woocommerce-checkout input:checked ~ .modal .content {
  color: #fff;
  transition: color 0.5s ease 0.5s;
}
.woocommerce-checkout form span {
  font-size: 13px;
  margin-top: 5px;
}
.woocommerce-checkout form legend {
  font-size: 16px;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  margin: 30px 0px;
}
.woocommerce-checkout form p {
  margin-bottom: 20px !important;
  display: block;
}
.woocommerce-checkout form h3 {
  font-size: 18px;
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  margin-bottom: 20px;
}
.woocommerce-checkout p {
  margin-bottom: 20px !important;
  display: block;
}
.woocommerce-checkout .form-row .select2-container--default .select2-selection--single {
  border: none;
  border-bottom: 1px solid;
  border-radius: 0px;
  height: 35px;
  padding-left: 0px;
}
.woocommerce-checkout .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
  outline: none;
}
.woocommerce-checkout .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0px;
}
.woocommerce-checkout .woocommerce-additional-fields {
  margin-top: 2rem;
}
.woocommerce-checkout .woocommerce-additional-fields h3 {
  color: #ef3e42;
  font-family: "Montserrat-Regular";
}
.woocommerce-checkout .woocommerce-additional-fields .form-row textarea {
  height: 6em;
  padding: 10px;
  border: 1px solid;
}
.woocommerce-checkout #order_review_heading {
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  margin: 30px 0px;
}
.woocommerce-checkout #order_review #payment {
  background-color: #fff;
}

.woocommerce-order ul.order_details {
  margin: 30px 0px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce-order ul.order_details li {
  padding: 15px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 0px;
}
.woocommerce-order ul.order_details li strong {
  margin-top: 10px;
}
.woocommerce-order .woocommerce-order-details h2 {
  font-size: 25px;
  color: #ef3e42;
}
.woocommerce-order .woocommerce-order-details table tfoot tr:last-child {
  color: #ef3e42;
  font-family: "Montserrat-Regular";
}
.woocommerce-order .woocommerce-customer-details address p {
  display: flex;
  align-items: center;
  color: #ef3e42;
}

.product_cat-shower_enclosure .images {
  width: 50%;
}
.product_cat-shower_enclosure .variations_form p {
  color: #ef3e42;
  font-family: "Montserrat-Regular";
}
.product_cat-shower_enclosure .variations_form ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product_cat-shower_enclosure .variations_form ul li {
  list-style: none;
  display: list-item;
  margin-right: 0;
  margin-left: 15px;
  padding: 7px 0;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product_cat-shower_enclosure .variations_form ul li {
    margin-left: 0px;
    font-size: 14px;
  }
}
.product_cat-shower_enclosure .shop-product-page {
  margin-top: 0px;
  width: 50% !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product_cat-shower_enclosure .shop-product-page {
    width: 100% !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .product_cat-shower_enclosure .shop-product-page {
    width: 100% !important;
  }
}
.product_cat-shower_enclosure .shop-product-page .shower_enclosure_variation_tbl {
  text-align: center;
}
.product_cat-shower_enclosure .shop-product-page .shower_enclosure_variation_tbl thead {
  background-color: #ef3e42;
  color: #fff;
  font-family: "Montserrat-Semibold";
  font-size: 11px;
}
.product_cat-shower_enclosure .shop-product-page .shower_enclosure_variation_tbl td {
  padding: 6px;
  padding-right: 5px !important;
  font-size: 11px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product_cat-shower_enclosure .shop-product-page .shower_enclosure_variation_tbl td {
    padding-right: 20px !important;
  }
}
.product_cat-shower_enclosure .shop-product-page .variable-item:not(.radio-variable-item) {
  width: 100% !important;
  height: 100% !important;
}
.product_cat-shower_enclosure .shop-product-page .variable-items-wrapper .wvs-has-image-tooltip:after, .product_cat-shower_enclosure .shop-product-page .variable-items-wrapper [data-wvstooltip]:after {
  display: none;
}
.product_cat-shower_enclosure .shop-product-page .product-type-variable .variations_form ul li::before {
  display: none;
}
.product_cat-shower_enclosure .shop-product-page .variable-item-span {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 13px;
  text-align: center;
  border: 1px solid;
  border-radius: 0px;
  border-color: #eae7e7;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .product_cat-shower_enclosure .shop-product-page .variable-item-span {
    font-size: 12px;
  }
}
.product_cat-shower_enclosure .shop-product-page .optional_list li::before {
  content: "\f111";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  color: #ef3e42;
  vertical-align: text-top;
  line-height: 20px;
  font-size: 7px;
  margin-right: 10px;
}
.product_cat-shower_enclosure .shop-product-page td, .product_cat-shower_enclosure .shop-product-page th {
  line-height: 23px !important;
}
.product_cat-shower_enclosure .shop-product-page .label {
  width: 20%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product_cat-shower_enclosure .shop-product-page .label {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .product_cat-shower_enclosure .shop-product-page .label {
    width: 30%;
    text-align: center;
  }
}
.product_cat-shower_enclosure .shop-product-page .variable-items-wrapper {
  display: block;
  /*
  		    align-items: center;
  		    justify-content: center;
  		    flex-wrap: wrap;
  */
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.product_cat-shower_enclosure .shop-product-page .woo-variation-items-wrapper {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .product_cat-shower_enclosure .shop-product-page .woo-variation-items-wrapper {
    width: 70%;
  }
}
.product_cat-shower_enclosure .shop-product-page tr {
  display: flex;
  align-items: center;
}
.product_cat-shower_enclosure .shop-product-page .woo-selected-variation-item-name {
  display: none;
}
.product_cat-shower_enclosure .shop-product-page .variable-item.selected {
  color: #ef3e42;
  font-family: "Montserrat-Regular";
  position: relative;
}
.product_cat-shower_enclosure .shop-product-page .variable-item.selected .variable-item-span {
  background: #ef3e42;
  color: #fff;
}
.product_cat-shower_enclosure .shop-product-page .variable-item.disabled {
  opacity: 0.5;
  text-decoration: line-through;
}
.product_cat-shower_enclosure .shop-product-page tr {
  border-bottom: 1px solid #f4f4f4;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .product_cat-shower_enclosure .shop-product-page .button-variable-item span {
    font-size: 10px;
    padding: 0px;
    margin-left: 10px;
    padding: 0px 5px;
  }
}

/*
.product-type-variable {
	.woocommerce-product-gallery {

	}
	.variations_form {
		p {
			color: $primary_color;
			font-family: "Montserrat-Regular";
		}
		ul {
			list-style: none;
			padding: 0;
			margin: 0;
			li {
				list-style: none;
			    display: list-item;
			    margin-right: 0;
			    margin-left: 15px;
			    padding: 7px 0;
			    display: flex;
			}
			li::before {
				content: "\f111";
			    font-family: FontAwesome;
			    display: inline-block;
			    margin-left: -1.3em;
			    width: 1.3em;
			    color: #ef3e42;
			    vertical-align: text-top;
			    line-height: 20px;
			    font-size: 7px;
			    margin-right: 10px;
			}
		}
	}
}
*/
/*
.shop-product-page {
    margin-top: 0px;
    .product_title {
	    margin-bottom: 20px!important;
    }
    .variable-item:not(.radio-variable-item) {
	    width: 100%!important;
	    height: 100%!important;
    }
    .variable-items-wrapper .wvs-has-image-tooltip:after, .variable-items-wrapper [data-wvstooltip]:after {
	    display: none;
    }
	.product-type-variable .variations_form ul li::before {
		display: none;
	}
    .variable-item-span {
	    width: 100%;
	    height: 100%;
	    border: none;
    }
    td, th{
		line-height: 23px!important;	    
    }
    .label {
	        width: 40%;
    }
    .variable-items-wrapper {
	    display: block;
    }
    .woo-variation-items-wrapper {
	    width: 100%;
    }
}
*/
@media screen and (min-width: 320px) and (max-width: 480px) {
  .wo-filter-wrapper {
    display: none;
  }
}

.filter-open-menu {
  display: none;
  position: relative;
  font-size: 15px;
}
.filter-open-menu .arrow-filter {
  position: absolute;
  right: 14px;
  top: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .filter-open-menu {
    display: flex;
    width: 100%;
  }
}

.show-filter {
  display: block;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .rel-product-warpper .products {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
}

#enquiry_pp_modal .gform_title {
  text-align: center;
  color: #ef3e42;
  font-family: "Montserrat-Semibold";
}

.product-list {
  padding-bottom: 3rem;
}

.zoomContainer {
  z-index: 0 !important;
}

.product-type-simple .shop-product-page .variations .value {
  padding-top: 5px;
}
.product-type-simple .shop-product-page .variations .value ul {
  padding: 0px;
  margin: 0px;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .shop-product-page .download_section .dropdown:hover .dropdown-content {
    display: none;
  }
}

.shop-product-page .download_section .dropdown .dropdown-content.showdwon {
  display: block;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .shop-product-page .price {
    display: inline-flex !important;
    margin-bottom: 10px !important;
  }
}

.product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.product .woocommerce-product-gallery .flex-control-thumbs li {
  float: none !important;
  width: 25%;
  margin: 0 !important;
}

.parent_li {
  display: none !important;
}/*# sourceMappingURL=product.css.map */