/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
html {
   font-size: 14px;
   background: #fff;
   font-family: "Soleil", sans-serif;
}
html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}
body{
   background: #fff;
   overflow-y: scroll;
}

h2 {
   font-size: 28px;
}

.no-pdgmg {
   padding: 0;
   margin: 0;
}

.white-link {
   color: white;
}

.dp-flex-mid {
   display: flex;
   align-items: center;
   justify-content: center;

}

.green-pill-button {
   font-family: "Soleil", Sans-serif;
   font-size: 16px;
   font-weight: 400;
   background-color: #035b54;
   border-radius: 75px;
   padding: 16px 30px;
}

.slider-product-image {
   height: 220px;
   width: 220px;
   background-size: cover !important;
   background-position: 50% 50%;
   border-radius:5px;
}

.slider-product-title {
   font-size: 15px;
   font-weight: 600;
   padding-top:10px;
   padding-bottom:5px;
   color:#222222;
}


.swiper-container {
   width: 100%;
   overflow: hidden;
   display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
}

.swiper-slide {
   text-align: center;
   display: flex !important;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.display-flex{
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
}
#crmWebToEntityForm form fieldset {
   border: 0;
   padding: 0;
}
.form_hide_row {
   display: none;
}
.full-row {
   width: 100%;
}
.zcwf_row.half_row {
   width: 50%;
   float: left;
}
.zcwf_row.three_inarow {
   width: 33.333%;
   float: left;
}
.add-padd {
   padding-right: 15px;
}

.zcwf_col_fld input[type=text], .zcwf_col_fld input[type=email], .zcwf_col_fld input[type=number], .zcwf_lblLeft fieldset .zcwf_col_fld textarea {
    background-color: white;
    border: 1px solid #005c57;
    color: #404040 ;
    width: 100%;
    font-size: 13px;
    padding: 8px !important;
    border-radius: 8px;
    line-height: normal;
    float: left;
    font-family: "Soleil", Sans-serif;
    margin-bottom: 15px;
    
}
select, .select2-container .select2-selection--single {
   background-image: url("data:image/svg+xml,%3Csvg class='ast-arrow-svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='26px' height='16.043px' fill='%234B4F58' viewBox='57 35.171 26 16.043' enable-background='new 57 35.171 26 16.043' xml:space='preserve' %3E%3Cpath d='M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z'%3E%3C/path%3E%3C/svg%3E");
   background-size: .8em;
   background-repeat: no-repeat;
   background-position-x: calc( 100% - 10px );
   background-position-y: center;
   -webkit-appearance: none;
   -moz-appearance: none;
   padding-right: 2em;
}
.zcwf_col_fld_slt{
   background-color: white;
   border: 1px solid #005c57;
   color: #404040 !important;
   width: 100%;
   font-size: 13px;
   padding: 8px !important;
   border-radius: 8px;
   line-height: normal;
   float: left;
   font-family: "Soleil", Sans-serif;
   margin-bottom: 15px;
}
.zcwf_col_fld input[type="text"]::placeholder, .zcwf_col_fld input[type="email"]::placeholder, .zcwf_col_fld input[type="number"]::placeholder, .zcwf_lblLeft fieldset .zcwf_col_fld textarea::placeholder, .zcwf_col_fld_slt{
  color:#404040 !important; 
  opacity:1;
}bl
input#formsubmit{
   border-top-left-radius: 30px;
   border-top-right-radius: 30px;
   border-bottom-right-radius: 30px;
   border-bottom-left-radius: 30px;
   background:#005c57;
}
.prd_quote_btns input#formsubmit {
   font-size: 18px;
   font-family: "Soleil", sans-serif;
   padding: 12px 30px 10px 30px;
   line-height: 16px;
   color:white;
}
.slider-cato-image{
  height: 45px !important;
}
.slider-cato-href{
   color:#222222;
   display: flex;
   align-content: center;
   flex-direction: column;
   align-items: center;
}
.round-image img{
  border-radius:15px;
}
.side-category{
  display: flex;
  flex-direction: column;
}
.side-category-item{
  padding-top: 10px;
  padding-bottom: 10px;
  background: #efefef;
  color:#222;
  padding-left: 10px;
  margin-bottom: 10px;
  transition: 0.9s all linear;
  width:100%;
  padding-right:10px;
}
.side-category-item:hover{
  border-bottom:#035b54 2px solid;
  color:#035b54;
}


.faq-accordion {
   width: 100%;
 }

 .accordion-item {
   margin-bottom: 10px;
 }

 .accordion-heading {
   padding: 10px;
   padding-right: 30px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   position: relative;
 }

 .accordion-heading::after {
   content: "\25BC"; /* Down arrow */
   font-size: 20px;
   transition: transform 0.3s ease;
   position: absolute;
   right: 10px;
   color:#035b54;
   top: 50%;
   transform: translate(0, -50%);
 }

 .accordion-heading.open::after {
   transform: translate(0, -50%) rotate(180deg);
 }

 .accordion-content {
   display: none;
   padding: 10px;
 }


 .transparent_input input[type=text], .transparent_input input[type=email] {
   border: 0;
    border-bottom: 1px solid #c0c6cc !important;
    resize: vertical;
    border-radius: 2px;
    float: left;
    background: transparent;
    padding: 5px;
    font-size:15px;
 }

.ads-single-item{
width:25%;
display: flex;
flex-direction: column;
float:left;
padding-left: 10px;
padding-right: 10px;
margin-bottom:10px;
text-align: center;
}
.ads-image{
   min-height:250px;
   margin-bottom:10px;
   width:100%;
   background-position-x: 50%;
   background-position-y: 50%;
   background-size: cover;
   border-bottom-left-radius: 10px;
   border-bottom-right-radius: 10px;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;

}
.overlay-ads-image{
   width: 100%;
    height: 250px;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition:all 0.5s linear;
    border-radius:15px;

}
.overlay-ads-image:hover{

   opacity:1;
}
.quote-button{
   border-style: solid;
   border-top-width: 0;
   border-right-width: 0;
   border-left-width: 0;
   border-bottom-width: 0;
   color: #ffffff;
   border-color: #005c57;
   background-color: #005c57;
   padding-top: 15px;
   padding-right: 20px;
   padding-bottom: 15px;
   padding-left: 20px;
   font-family: inherit;
   font-weight: inherit;
   line-height: 1em;
   cursor:pointer;
}

 .pill_submit{
   border-style: solid;
   border-top-width: 0;
   border-right-width: 0;
   border-left-width: 0;
   border-bottom-width: 0;
   color: #ffffff;
   border-color: #005c57;
   background-color: #005c57;
   padding-top: 10px;
   padding-right: 20px;
   padding-bottom: 10px;
   padding-left: 20px;
   font-family: inherit;
   font-weight: inherit;
   line-height: 1em;
   border-top-left-radius: 30px;
   border-top-right-radius: 30px;
   border-bottom-right-radius: 30px;
   border-bottom-left-radius: 30px;
 }
 .gallery img{
   border-radius:15px;
 }

.assembly-item{
   display:flex;
   flex-direction: column;
   margin-bottom:15px;
   margin-top:15px;
   font-size:17px;
   font-weight: 600;
   text-align: center;
   padding-left:15px;
   padding-right:15px;
   width: 25%;
   float:left;
}
.wp-block-image.aligncenter{
  text-align: center;
}
.assembly-image{
   width: 100%;
   margin-bottom:10px;
   border-radius:15px;
}
.ads-image-text{
  font-size:15px;
  font-weight:700;
}
.product-wrapper{
display: flex !important;
flex-wrap: wrap;
flex-direction: row;
}
 .swipper-wrapper{
   width: 100%;
 }
 .shipping-material-gallery{
   align-items: flex-end;
   flex-direction: column;
   align-content: flex-end;
 }
 .slide-control{
   display: flex;
   column-gap:20px;
   z-index:9;
 }
 .shipping-material-item{
   border-radius:15px;
 }
 .swiper-button-next, .swiper-rtl .swiper-button-prev{
   position:relative !important;
   right:unset !important;
   left:unset !important;
   margin:unset !important;
 }
 .swiper-button-prev, .swiper-rtl .swiper-button-next{
   position:relative !important;
   right:unset !important;
   left:unset !important;
   margin:unset !important;
 }
 .swiper-button-next:after, .swiper-button-prev:after{
   font-size:22px !important;
   color: #035b54;
 }
.newsletter-footer .wpforms-render-modern{
  margin:0px;
}
.newsletter-footer form{
  display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    flex-wrap: wrap;
}
.newsletter-footer .wpforms-container .wpforms-hidden{
  width:100%;
}
.newsletter-footer .wpforms-field-container{
  width: 70%;
  max-width: 300px;
}
.newsletter-footer .wpforms-container-full .wpforms-form .wpforms-submit-container{
  margin-top: 0px;
  padding-top: 0px;
}
div.wpforms-container-full input[type=submit]:hover, div.wpforms-container-full input[type=submit]:active, div.wpforms-container-full button[type=submit]:hover, div.wpforms-container-full button[type=submit]:active, div.wpforms-container-full .wpforms-page-button:hover, div.wpforms-container-full .wpforms-page-button:active {
  background: linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2)),#038b83 !important;
}
div.wpforms-container-full input[type=submit]:not(:hover):not(:active), div.wpforms-container-full button[type=submit]:not(:hover):not(:active), div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
  background-color: #035b54 !important;
  color: var(--wpforms-button-text-color);
}
.slide-item-center{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.center-loader{
   display: flex;
   justify-content: center;
   align-items: center;
   align-content: center;
   width: 100%;
}
 .lds-ellipsis {
   display: inline-block;
   position: relative;
   width: 80px;
   height: 80px;
 }
 .text-green a{
   color:#035b54  !important;
 }

 .make-green{
  color:#035b54;
 }
 .text-black a{
   color:#222;
 }
 .text-black {
  color:#222;
 }
 .text-white a{
   color:white;
 }
 .small-h2 h2{
  font-size:20px;
 }
 .prod{
   display:none !important;
 }
 .propDisplay{
  display: flex !important;
 }
 #_posts_grid-26-2600 .oxy-posts{
  margin-bottom:0px !important;
 }
 .oxy-easy-posts-pages{
  font-size:16px;
 }
 .oxy-easy-posts-pages a{
 color:#005c57;
 }







 .process-list-thnk {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 25px 0 0 0;
  list-style: none;
  position: relative;
  margin: revert;
}

.process-list-thnk::before {
  content: '';
  background: #005c57;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  width: 82%;
  height: 2px;
  z-index: 0;
  margin: auto;
}
.thnk-process-div{
  position:relative;
  z-index: 1;
}
.process-list-thnk {
  text-align: center;
  list-style: none;
}

.process-list-thnk li {
  width: 20%;
  padding-left: 5px;
  padding-right: 5px;
}

.process-number {
  background: #005c57;
  border-radius: 60%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  padding-top: 6px;
}

.process-number h4 {
  font-size: 30px !important;
  color: #fff !important;
  font-weight: bold;
}

.process-list-thnk li h3 {
  font-size: 20px;
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 5px;
  margin-bottom: 0px;
}

.process-list-thnk li p {
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 5px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  ul.process-list-thnk {
      flex-wrap: wrap;
  }

  .process-list-thnk li {
      width: 100% !important;
      margin-bottom: 5px;
  }

  .process-list-thnk:before {
      display: none;
  }
}

ul{
/*list-style:none;*/
}


.product-description h2{
  font-size:24px !important;
}





 .lds-ellipsis div {
   position: absolute;
   top: 33px;
   width: 13px;
   height: 13px;
   border-radius: 50%;
   background: #005c57;
   animation-timing-function: cubic-bezier(0, 1, 1, 0);
 }
 .lds-ellipsis div:nth-child(1) {
   left: 8px;
   animation: lds-ellipsis1 0.6s infinite;
 }
 .lds-ellipsis div:nth-child(2) {
   left: 8px;
   animation: lds-ellipsis2 0.6s infinite;
 }
 .lds-ellipsis div:nth-child(3) {
   left: 32px;
   animation: lds-ellipsis2 0.6s infinite;
 }
 .lds-ellipsis div:nth-child(4) {
   left: 56px;
   animation: lds-ellipsis3 0.6s infinite;
 }
 @keyframes lds-ellipsis1 {
   0% {
     transform: scale(0);
   }
   100% {
     transform: scale(1);
   }
 }
 @keyframes lds-ellipsis3 {
   0% {
     transform: scale(1);
   }
   100% {
     transform: scale(0);
   }
 }
 @keyframes lds-ellipsis2 {
   0% {
     transform: translate(0, 0);
   }
   100% {
     transform: translate(24px, 0);
   }
 }
 

 @media (max-width: 767px) {
  #_posts_grid-211-2101 .oxy-post{
    margin-bottom:15px !important;
  }
  .slider-product-image{
    height: 120px;
    width: 120px;
  }
  
  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle + #mega-menu-max_mega_menu_1 {
    background: #fff;
    padding: 20px 0px 0px 0px !important;
    margin-top: 10px !important;
  }
  
  .assembly-item{
    width:50%;
  }
.ads-single-item{
  width:50%;
}
.ads-image{
  min-height:150px;
}
.overlay-ads-image{
  height:150px;
}
.grid-lay-products{
  align-items: stretch;
  grid-template-columns: repeat(2,minmax(100px,1fr));
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  display: grid;
}
 }







.oxy-header-search_form{
  max-width:400px !important;
  width:400px !important;
  right:50%;
  left:unset !important;
}
.product-description h2{
  font-size:24px !important;
}

.sticky{
position:fixed;
top:0;
left:0;
background:white;
z-index:50;
 width: calc(100% - 16px) !important;
 
}
.hiddenmenu{
    display:none;
}
@media screen and (max-width: 768px) {
.oxy-header-search_form{
  max-width:75vw !important;
  width:75vw !important;
  right:0%;
  left:unset !important;
}
.sticky{
    width:100% !important;
}
}
.slide-item-center{
  transition:all 0.5s ease-in-out;
  transform:scale(0.95);
}
.slide-item-center:hover{
  transform:scale(1);
}
.zcwf_button{
  cursor:pointer;
  transition:all 0.5s ease-in-out;
  transform:scale(0.96)
}
.zcwf_button:hover{
  transform:scale(1);
}
.slider-cato-href{
  transition:all 0.5s ease-in-out;
}
.slider-cato-href:hover{
  transform:scale(1.05)
}
.textsides{
  padding-top:10px;
  padding-bottom:10px;
}