/*
Theme Name: Twenty Twenty-One Child
Theme URI: https://wordpress.org/themes/twentytwentyone/
Template: twentytwentyone
Author: The WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Tags: one-column,accessibility-ready,custom-colors,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready
Version: 1.5
Updated: 2021-10-26 10:55:43
*/

@import url('../twentytwentyone/style.css');
:root {
    --global--color-dark-lime: rgba(24, 199, 169, 1);
    --global--color-primary: var(--global--color-dark-lime);
}


/* wpmart project start */
.wpm-6310-project-wrapper-container{
    float: left;
    width: 100%;
    position: relative;
    padding: 50px 7.5% !important;
}
.wpm-6310-project-wrapper {
  float: left;
  width: 100%;
  display: flex;
}

.wpm-6310-project {
  float: left;
  width: calc(100% - 30px);
  /*height: 210px;*/
  margin: 15px;
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
}

.wpm-6310-project img {
  height: 100%;
  float: left;
  display: block;
}

.wpm-6310-project-details {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  color: rgb(0, 0, 0);
  font-family: system-ui;
  padding: 10px;
  opacity: 0;
  transition: .5s;
}

.wpm-6310-project:hover .wpm-6310-project-details {
  opacity: 1;
}

.wpm-6310-project-title {
  float: left;
  width: 100%;
  color: #01A2AC;
  text-align: center;
  /* font-size: 25px; */
  font-size: 25px;
  margin: 20px 0;
  font-weight: 500;
  transform: translateY(-100px);
  transition: .5s;
  opacity: 0;
}

.wpm-6310-project-short-description {
  float: left;
  width: 100%;
  /* font-size: 14px; */
  font-size: 14px;
  text-align: center;
  transform: translateY(-100px);
  transition: .5s;
  opacity: 0;
}

.wpm-6310-project-button {
  float: left;
  text-align: center;
  width: 100%;
  transform: translateY(100px);
  transition: .5s;
  opacity: 0;
}

.wpm-6310-project-button a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  width: 50%;
  border: 2px solid #01A2AC;
  padding: 0.2vw;
  font-size: 14px;
  display: inline-block;
  margin: 3vh 0;
  transition: all 0.3s ease-in-out;
}

.wpm-6310-project-button a:hover {
  background: #01A2AC;
  color: #ffffff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.wpm-6310-project:hover .wpm-6310-project-title,
.wpm-6310-project:hover .wpm-6310-project-short-description {
  transform: translateY(0);
  opacity: 1;
}

.wpm-6310-project:hover .wpm-6310-project-button {
  opacity: 1;
  transform: translateY(0);

}

@media only screen and (max-width: 767px) {
  .wpm-6310-project-wrapper{
    flex-direction: column;
  }
  .wpm-6310-project-title {
    margin: 10px auto;
  }

  a.btn-read-more {
    margin-top: 10px;
    display: none;
  }
  .wpm-6310-project-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    }
}


/* modal */
.wpm-6310-project-modal-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0000002e;
  left: 0;
  top: 50px;
}

.wpm-6310-project-modal {
  position: absolute;
  width: 40%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 1;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.wpm-6310-project-modal img {
  width: 100%;
  float: left;
  display: block;
}

span.cross-btn {
    position: absolute;
    color: #fff;
    right: -10px;
    cursor: pointer;
    background: #301515;
    width: 25px;
    height: 25px;
    line-height: 15px;
    text-align: center;
    border-radius: 50%;
    top: -10px;
    border: 2px solid;
}

.hide-modal {
  display: none;
}

.wpm-6310-project-modal-title {
  float: left;
  width: 100%;
  padding: 20px 0;
  font-size: 25px;
  border-bottom: 1px solid lightgray;
}

.wpm-6310-project-modal-short-description {
  float: left;
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  margin-top: 8px;
  color: #5c5858;
}

.wpm-6310-project-modal-content-wrapper {
  float: left;
  width: 100%;
  padding: 10px;
  background: #fff;
}

.wpm-6310-project-modal-content-footer-btn {
  float: left;
  width: 70%;
  transition: .5s;
}

.wpm-6310-project-modal-content-footer-btn a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  width: 50%;
  text-align: center;
  background: #01A2AC;
  padding: 8px 0px;
  display: inline-block;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
}

.wpm-6310-project-modal-content-footer-btn a:hover {
  background: #2ccad6;
}

.wpm-6310-project-modal-content-footer {
  float: left;
  width: 100%;
  display: flex;
  align-items: end;
}

.wpm-6310-project-modal-content-footer-icon-wrapper {
  float: left;
  width: 100%;
  display: flex;
  justify-content: end;
}

.wpm-6310-project-modal-content-footer-icon {
  margin: 0 8px;
  cursor: pointer;
}

.wpm-6310-project-modal-content-footer-icon i {
  font-size: 24px;
  color: #01a2ac;
}

/* wpmart project End */


.woocommerce-product-details__short-description p{
    color: #FF4A73;
    font-size: 14px;
    line-height: 21px;
}
.coupon .input-text{
    border: 1px solid rgba(24, 199, 169, 1) !important;
    padding: 4px 15px !important;
    max-width: 100% !important;
}
.coupon .input-text:focus {
    outline: none !important;
}

/* Make image 75% width to make room to its right */
 
.single-product div.product .woocommerce-product-gallery .flex-viewport {
    width: 80%;
    float: left;
}
 
/* Make Gallery 25% width and place it beside the image */
 
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    width: 20%;
    float: left;
}
 
/* Style each Thumbnail with width and margins */
 
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
    width: 100%;
    float: none;
    margin: 0 0 5% 5%;
}
ol {
    padding-left: 10px !important;
}

.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{
    margin: 0 15px 0 0 !important;
    float: left !important;
}

.woocommerce-product-gallery{
    margin-bottom: 20px !important;
}
.woocommerce-product-gallery__image{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 4px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border: 1px solid #ccc;
}
.single-product .woocommerce-variation-price{
    width: 150px !important;
    text-align: right !important;
}
.primary-navigation .current-menu-item > a:first-child{
    text-decoration: none !important;
    color: rgb(24 199 169) !important;
}
.wc-block-grid.has-3-columns .wc-block-grid__product {
    max-width: 32% !important;
}

/*img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail{*/
/*    box-shadow: -1px -1px 5px 0px rgb(204 204 204 / 80%) !important;*/
/*}*/
.wc-block-grid.has-3-columns .wc-block-grid__product{
    width: calc(100% - 20px) !important; 
    box-shadow: -1px -1px 5px 0px rgb(204 204 204 / 80%) !important;
    margin: 5px !important;
}

#product-1824 h1.product_title:after,
#product-1839 h1.product_title:after,
#product-1844 h1.product_title:after,
#product-1853 h1.product_title:after, 
#product-1859 h1.product_title:after {
	content: ""
}

/* Project Serice Area Start */
.wpm-6310-service-info-row{
  float: left;
  width: 100%;
  max-width: 100% !important;
}
.wpm-6310-service-info-row .wpm-6310-service-short-desc{
  float: left;
  width: calc(100% - 30px);
  display: block;
  padding: 10px 15px !important;
}
.wpm-6310-service-short-desc p{
  font-size: 16px;
  line-height: 24px;
  color: #444;
  margin-bottom: 20px;
}
.wpm-6310-service-short-desc a{
    text-decoration: none !important;
}
.wpm-6310-comparison-table-data-title a{
    text-decoration: none !important;
}
.wpm-6310-service-area-cat{
  float: left;
  width: 100%;
  display: flex;
  margin-top: 30px;
}
.wpm-6310-service-col {
  float: left;
  flex: 1;
  border: 1px solid rgb(233, 233, 233);
  padding: 10px;
  margin: 8px;
}
.wpm-6310-service-info-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 5px;
  font-weight: 500;
  font-family: sans-serif;
  float: left;
  width: 100%;
  color: #444;
}
.wpm-6310-service-info-details {
  float: left;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #2f4f4f;
}
.wpm-6310-service-info-details span{
    float: left;
    display: inline-block;
    background-color: #04AA6D!important;
    border-radius: 5px;
    font-size: 12px;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 2px 10px;
    color: #fff;
    margin: 3px 3px;
    cursor: pointer;
}
.wpm-6310-service-info-details span:hover{
    box-shadow: none;
    background-color: #059862 !important;
}
.wpm-6310-feature-list .wpm-6310-feature-list-items {
  width: calc(100% - 30px);
  padding: 5px 0px !important;
  margin-left: 30px !important;
}
.wpm-6310-feature-list-title h3{
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}
.wpm-6310-feature-list-items {
  display: flex;
  color: #444;
  font-size: 17px !important;
  line-height: 24px;
}
.wpm-6310-feature-list-items i {
  display: flex;
  font-size: 18px;
  line-height: 28px;
  color: #006699;
  margin-right: 5px;
}
@media screen and (max-width: 767px){
  .wpm-6310-service-info-row{
    flex-direction: column;
  }
  .wpm-6310-feature-list .wpm-6310-feature-list-items{
    margin-left: 5px !important;
  }
  .wpm-6310-service-short-desc p{
    text-align: justify;
  }
  .single_variation_wrap{
    flex-direction: column;
  }
  .single-product .woocommerce-variation-price{
     justify-content: center !important;
  }
  .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled{
      text-align: center;
  }
  .wpmart-plugin-browse a{
    padding: 10px 20px !important;
  }
}

@media screen and (max-width: 768px){
    .single_variation_wrap{
    flex-direction: column;
  }
  .single-product .woocommerce-variation-price{
     justify-content: center !important;
  }
  .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled{
      text-align: center;
  }
  .wpmart-plugin-release-section{
    flex-direction: column;
  }
  .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled{
    margin-left: 0 !important;
  }
  .wc-block-grid.has-3-columns .wc-block-grid__product{
      max-width: 50% !important;
  }
  li.entry.product{
    margin: 8px !important;
  }
}

@media screen and (max-width: 480px){
  .wc-block-grid.has-3-columns .wc-block-grid__product{
    max-width: 100% !important;
  }
}
.wpm-6310-service-info-row .wpm-6310-service-short-desc strong{
	font-size: 17px;
    font-weight: 400;
    color: #f00;
    line-height: 3.5;
}

/* table */
.wpm-6310-comparison-table-container{
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.wpm-6310-comparison-table-row-wrapper{
  border: 1px solid rgb(223, 223, 223);
  float: left;
  background: #fff;
}

.wpm-6310-comparison-table-row-title {
  float: left;
  width: 100%;
  display: flex;
  padding: 15px;
  /*margin-bottom: 10px;*/
  font-size: 18px;
  line-height: 27px;
  color: #444;
  text-align: center;
  font-weight: 500;
  background: #d9dbdf;
  transition: 0.3s;
}
.wpm-6310-comparison-table-row-title:hover{
    background: #1f429357;
}
.wpm-6310-comparison-table,
.wpm-6310-comparison-table-wrapper {
  float: left;
  flex: 1;
}

.wpm-6310-comparison-table-data-seo {
  float: left;
  width: 100%;
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  color: #032203;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
}
.wpm-6310-comparison-table-data-seo:hover{
    background: #1f429357;
}
.wpm-6310-comparison-table-data-title {
  flex: 1;
  padding: 0px 10px;
}
.wpm-6310-comparison-table-data-title svg {
  width: 14px;
  height: 14px;
  fill: #1dbf73;
}
.wpm-6310-comparison-table-data-seo:nth-child(5) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-seo:nth-child(5):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-seo:nth-child(9) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-seo:nth-child(9):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-seo:nth-child(13) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-seo:nth-child(13):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-seo:nth-child(17) {
    background: #DCE2F0;
}
.wpm-6310-comparison-table-data-seo:nth-child(17):hover {
    background: #1f429357;
}
.wpm-6310-comparison-table-data-seo:nth-child(21) {
    background: #DCE2F0;
}
.wpm-6310-comparison-table-data-seo:nth-child(21):hover {
    background: #1f429357;
}
.wpm-6310-comparison-left-align{
  text-align: left;
}
.wpm-6310-comparison-table-mobile-title{
  display: none;
}

@media screen and (max-width: 767px){
    .wpm-6310-comparison-table-row-wrapper{
      width: 100%;
    }
    .wpm-6310-comparison-table-data-wps{
      background: #DCE2F0;
    }
    .wpm-6310-comparison-table-data-seo{
      background: #DCE2F0;
    }
    .wpm-6310-comparison-table-data-bug{
      background: #DCE2F0;
    }
    .wpm-6310-comparison-table-data-wcom{
      background: #DCE2F0;
    }
    .wpm-6310-comparison-table-data-mrg{
      background: #DCE2F0;
    }
    .wpm-6310-comparison-table-row-title{
      background: #d9dbdf;
    }
    .wpm-6310-comparison-table-mobile-title{
      display: block;
      font-size: 14px;
      line-height: 24px;
      margin: 10px 0;
      color: #424242;
      padding: 0 5px;
    }
    .wpm-6310-comparison-left-align{
      display: none;
    }
    .wpm-6310-comparison-table-mobile-title:first-child {
      font-weight: 500;
    }
    .wpm-6310-service-area-cat{
      flex-direction: column;
    }
}

/* WordPress Migration Service */
.wpm-6310-comparison-table-data-mrg {
  float: left;
  width: 100%;
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  color: #032203;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
}
.wpm-6310-comparison-table-data-mrg:hover{
    background: #1f429357;
}
.wpm-6310-comparison-table-data-mrg:nth-child(5) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-mrg:nth-child(5):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-mrg:nth-child(9) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-mrg:nth-child(9):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-mrg:nth-child(13) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-mrg:nth-child(13):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-mrg:nth-child(17) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-mrg:nth-child(17):hover {
  background: #1f429357;
}

/* WooCommerce Development Service */
.wpm-6310-comparison-table-data-wcom {
  float: left;
  width: 100%;
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  color: #032203;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
}
.wpm-6310-comparison-table-data-wcom:hover{
    background: #1f429357;
}
.wpm-6310-comparison-table-data-wcom:nth-child(5) {
    background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wcom:nth-child(5):hover {
   background: #1f429357;
}
.wpm-6310-comparison-table-data-wcom:nth-child(9) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wcom:nth-child(9):hover {
   background: #1f429357;
}
.wpm-6310-comparison-table-data-wcom:nth-child(13) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wcom:nth-child(13):hover {
   background: #1f429357;
}
.wpm-6310-comparison-table-data-wcom:nth-child(17) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wcom:nth-child(17):hover {
   background: #1f429357;
}
.wpm-6310-comparison-table-data-wcom:nth-child(21) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wcom:nth-child(21):hover {
   background: #1f429357;
}
.wpm-6310-comparison-table-data-wcom:nth-child(25) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wcom:nth-child(25):hover {
   background: #1f429357;
}

/* WordPress Development Service */
.wpm-6310-comparison-table-data-wps {
  float: left;
  width: 100%;
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  color: #032203;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
}
.wpm-6310-comparison-table-data-wps:hover{
    background: #1f429357;
}
.wpm-6310-comparison-table-data-wps:nth-child(5) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wps:nth-child(5):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-wps:nth-child(9) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wps:nth-child(9):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-wps:nth-child(13) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wps:nth-child(13):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-wps:nth-child(17) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wps:nth-child(17):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-wps:nth-child(21) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-wps:nth-child(21):hover {
  background: #1f429357;
}

/* Bug Fixing Service */
.wpm-6310-comparison-table-data-bug {
  float: left;
  width: 100%;
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  color: #032203;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
}
.wpm-6310-comparison-table-data-bug:hover{
    background: #1f429357;
}
.wpm-6310-comparison-table-data-bug:nth-child(5) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-bug:nth-child(5):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-bug:nth-child(9) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-bug:nth-child(9):hover {
  background: #1f429357;
}
.wpm-6310-comparison-table-data-bug:nth-child(13) {
  background: #DCE2F0;
}
.wpm-6310-comparison-table-data-bug:nth-child(13):hover {
  background: #1f429357;
}

/* End Service Area project*/


.imh-6310-annotation-box{
    max-width: 100% !important;
}

pre.wp-block-code[class*='click-to-copy-html-content-']{
	font-size: 14px;
}
pre.wp-block-code[class*='click-to-copy-css-content-']{
	font-size: 14px;
}

/* Start Product Description */
.wpmart-feature-description-wrapper {
    float: left !important;
    width: 100% !important;
    max-width: 100% !important;
    border-top: 2px solid;
}

/*Start Demo Doc Buttons*/
.demo-button-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.demo-doc-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.demo-doc-buttons .live-demo {
    background: #e95a31 !important;
}
.demo-doc-buttons .doc-video {
    background: #335dff !important;
}
.demo-doc-buttons a {
    margin: 0 5px 10px;
    color: #ffffff;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center;
    background-color: #18c7a9 !important;
}
.demo-doc-buttons a:hover, .demo-doc-buttons a:focus {
    background: #335dff !important;
}
.free-demo-button-content {
    width: 100% !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    float: left;
}
.free-demo-button-content a {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    background: #e95a31 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 8px 0 !important;
    width: 160px !important;
    display: inline-block;
    text-align: center;
}
.free-demo-button-content a:hover {
    background: #335dff !important;
}

/* Start Relaease Section */
.wpmart-plugin-release-section {
    float: left;
    display: flex;
    width: calc(100% - 20px);
    padding: 0 10px;
    background: rgb(245 245 247);
    margin-bottom: 50px;
}
.wpmart-content-wrapper {
    width:100%;
    padding: 8px 0;
    display: flex;
    float: left;
}
.wpmart-icon-section {
  float: left;
  width: 20%;
  text-align: center;
  font-size: 50px;
  color: #5c2cde;
}
.wpmart-content-container {
    float: left;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wpmart-content-section {
    float: left;
    display: flex;
    align-items: center;
}
.wpmart-release-title {
    float: left;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}
.wpmart-release-sub-title {
    float: left;
    font-size: 15px;
    margin-left: 5px;
    color: #424141;
    line-height: 20px;
}

/* Start Timeline Content */
.wpmart-main-timeline{
    float: left;
    width: 100%;
}
.wpmart-timeline {
    float: left;
}
.wpmart-timeline-content {
    float: left;
    width: 100% !important;
    display: flex;
    align-items: center;
    padding: 35px 35px;
}
.wpmart-feature-heading h3 {
    font-family: Jost, sans-serif;
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    color: #444 !important;
    text-transform: uppercase;
    padding: 30px 0px 0px 15px;
}
.wpmart-left-section {
    float: left;
    width: 100%;
}
.wpmart-left-section img {
    width: 100%;
    float: left;
    padding-bottom: 30px;
}
.wpmart-right-section {
    float: left;
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}
.wpmart-feature-title {
    font-family: Jost, sans-serif;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    float: left;
    color: #444;
    width: 100%;
}
.wpmart-feature-description {
    float: left;
    padding-right: 15px;
}
.wpmart-feature-description-content {
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #444;
    padding-bottom: 10px;
}
.wpmart-timeline:nth-child(odd) {
    background: rgb(245 245 247);
}
.wpmart-timeline:nth-child(even) {
    background: rgb(255, 255, 255);
}
.wpmart-timeline:nth-child(even) .wpmart-timeline-content {
    flex-direction: row-reverse;
}

.wpmart-timeline:nth-child(even) .wpmart-left-section {
    margin: 0;
}
.wpmart-short-des-wrapper {
    float: left;
    width: 100%;
}
.wpmart-short-des-content {
    float: left;
    width: calc(100% - 30px) !important;
    color: #444;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    padding: 10px 15px !important;
}
.features-article-image {
    width: 100%;
    display: block;
    text-align: center;
}
.features-article-image img {
    padding: 30px 0 !important;
}

/* Free version text */
.free-version-wrapper {
    float: left;
    width: 100%;
}
.free-version-wrapper-content {
    width: calc(100% - 30px) !important;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
    font-style: normal;
    padding: 10px 15px !important;
    color: #444;
}
.free-version-wrapper-content a {
    text-decoration: none !important;
}
.feature-list .feature-list-items {
    width: calc(100% - 30px);
    padding: 5px 0px !important;
    margin-left: 30px !important;
}
.feature-list-items {
    display: flex;
    color: #444;
    font-family: Roboto, sans-serif;
    padding: 5px 0px !important;
    margin-left: 30px !important;
    font-size: 17px !important;
    font-weight: 400 !important;
}
.feature-list-items i {
    display: flex;
    font-size: 18px;
    line-height: 28px;
    color: #5c2cde;
    margin-right: 5px;
}
@media only screen and (max-width: 600px) {
    .wpmart-feature h3 {
        font-size: 25px !important;
        line-height: 30px !important;
        font-weight: 600 !important;
        padding-left: 15px !important;
    }
    .wpmart-feature-title {
        font-size: 25px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .wpmart-timeline-content {
        flex-direction: column;
    }
    .wpmart-left-section {
        margin: 0 auto;
    }
    .wpmart-timeline:nth-child(even) .wpmart-timeline-content {
        flex-direction: column;
    }
    .wpmart-right-section {
        width: calc(100% - 10px);
        padding: 10px 5px;
    }
    .wpmart-icon-content {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .wpmart-plugin-release-section {
        flex-wrap: wrap;
    }
    .wpmart-content-wrapper {
        width: 100% !important;
        padding: 15px 0;
        justify-content: flex-start;
        float: left;
    }
    .wpmart-timeline-content {
        float: left;
        width: calc(100% - 20px) !important;
        display: flex;
        align-items: flex-start;
        padding: 10px 10px;
    }
    .features-article-image img {
        padding: 5px 16px !important;
    }
    .features-article-image {
        width: calc(100% - 32px);
        display: block;
        text-align: center;
    }
    .free-version-wrapper-content {
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
    }
}
/* End Product Description*/

.single_variation_wrap{
    display: flex !important;
    margin-top: 20px !important;
    width: 100%;
}
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled{
    margin-left: 20px;
}

h3.thank-you-note {
    font-size: 35px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    margin-top: 30px !important;
    text-align: center !important;
}
.woocommerce-tabs #tab-description p{
    width: unset !important;
    /*display: none !important;*/
}
.woocommerce-checkout #main .woocommerce{
    padding: 0 15vw !important;
}
.woocommerce-order-received .woocommerce-order p{
    color: #444 !important;
    font-size: 30px !important;
    font-weight: 600 !important;
}
.woocommerce-order-overview{
    margin-bottom: 0rem !important;
}
.woocommerce-order-received .woocommerce-order li{
    color: #444 !important;
}
h2.woocommerce-order-details__title{
    color: #444 !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: underline !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}
.woocommerce-table--order-details thead{
    color: #444 !important;
}
ul.wc-item-meta li p{
    font-size: 20px !important;
}
.wpm_main_template_67 .wpm-6310-col-3{
    box-shadow: 0 2px 5px 2px #ccc;
}
.wp-block-search .wp-block-search__input{
	border: 2px solid #02D3AF !important;
}
.wp-block-search .wp-block-search__input:focus{
	outline: none !important;
}
.wp-block-search .wp-block-search__button:hover{
	background: rgba(255, 212, 0, 1) !important;
	border-color: #FFD400 !important;
}
.wp-block-search button.wp-block-search__button.has-icon svg{
	fill: #fff !important;
}
.wp-block-columns{
	margin-bottom: 0 !important;
}
.wp-block-media-text__content h1{
	font-size: 50px !important;
	font-weight: 600 !important;
}
.disclaimer-container{
	width: 100% !important;
	float: left !important;
	padding: 0 !important;
	margin: 0 !important;
	color: #fff !important;
}
.dis-title h4{
	font-size: 20px !important;
	font-weight: 600 !important;
}
.copyright-txt {
	font-size: 16px !important;
	font-weight: 600 !important;
}
.disclaimer-container p{
	font-size: 14px !important;
	padding-top: 10px !important;
	line-height: 20px !important;
}
.widget-area ul li a{
	font-size: 16px !important;
}
.widget-area ul li{
	line-height: 26px !important;
}
.menu-wrapper li a {
    color: #7a7a7a !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}
.wp-block-columns .wp-block-column > *{
	margin-top: 0 !important;
}
p.payment-text {
	margin: 0 !important;
}

.wp-block-code code {
    color: #444 !important;
    height: 300px !important;
}
.click-to-copy-html-css {
    margin-bottom: 0 !important;
}
.click-to-copy-html-css .wp-block-button a{
    padding: 5px 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}
.click-to-copy-html-css .wp-block-button a:hover{
    padding: 5px 10px !important;
}

.menu-wrapper li.current_page_item a,
.menu-wrapper li:last-child a {
    color: #02D3AF !important;
    text-decoration: none !important;
}

.site-header {
    padding-bottom: 0 !important;
}

.site-main .woocommerce-breadcrumb {
    display: none !important;
}

.site-main .woocommerce-products-header {
    display: none !important;
}

.woocommerce-result-count {
    display: none !important;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    display: none !important;
}

ul.products li.product .woocommerce-loop-product__title {
    color: #000 !important;
}

.site-header {
    padding-top: 0 !important;
}

.content-area .site-main {
    padding-top: 5px !important;
}

aside.widget-area {
    width: 100% !important;
}

.single-product .summary p.price {
    display: none !important;
}

.single-product div.product .product_meta {
    display: none !important;
}

.single-product form.cart input {
    width: 19px !important;
}

.vi-wpvs-variation-wrap {
    display: block !important;
}

.single-product.singular .entry-title {
    color: #5C2CDC !important;
    font-family: "Tahoma", Sans-serif !important;
    font-size: 25px !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    line-height: 35px !important;
}

.vi-wpvs-option-wrap {
    font-size: 14px !important;
    font-weight: 600 !important;
}

input[type=radio]:checked:focus {
    outline: none !important;
    border: 1px solid #ccc !important;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    background-color: #FFD400 !important;
    color: #000 !important;
    font-weight: 500 !important;
    border: 3px solid #FFD400 !important;
}

a.wc-block-grid__product-link {
    text-decoration: none !important;
}

.wc-block-grid__product .wc-block-grid__product-title {
    outline: none !important;
    color: #000 !important;
}

.wc-block-grid.has-3-columns .wc-block-grid__product {
    padding: 10px 10px !important;
    transition: 0.3s;
}
.wc-block-grid.has-3-columns .wc-block-grid__product:hover{
    background: #1f42930d;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
    font-size: 14px !important;
    text-transform: uppercase !important;
}

footer {
    width: 100% !important;
}

.site-footer {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

.site-footer>.site-info {
    border-top: 0 !important;
    background: #211c5d !important;
    ;
    padding-top: 0 !important;
}

.widget-area {
    margin-top: 0 !important;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
    outline: 0 !important;
    text-decoration: none !important;
}

.woocommerce .content-area {
    padding-top: 20px;
}

.woocommerce ul.products li.product {
    padding: 20px 10px !important;
    align-items: center !important;
    text-align: center !important;
}

ul.products li.product .button {
    padding: 5px 30px !important;
}

ul.products li.product .button:hover {
    background: #FFD400 !important;
    border: 3px solid #FFD400 !important;
}

a.button.product_type_variable.add_to_cart_button {
    color: #fff !important;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
    width: 50% !important;
	float: left !important;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    width: 45% !important;
	float: left !important;
	padding-left: 30px !important;
}

label.vi-wpvs-option {
    font-size: 15px;
    padding: 0 !important;
}

table.variations label {
    color: #000 !important;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(:hover):not(:active):not(.has-background) {
    color: #fff !important;
}

a.reset_variations {
    text-decoration: none !important;
    padding: 5px 15px !important;
    border: 2px solid #999 !important;
    font-size: 16px !important;
}

span.woocommerce-Price-amount.amount {
    font-size: 25px !important;
    font-weight: 600 !important;
    ;
}

button.single_add_to_cart_button.button.alt {
    color: #fff !important;
    padding: 5px 30px !important;
    font-size: 15px !important;
    text-transform: uppercase;
}

button.single_add_to_cart_button.button.alt:hover {
    background: #FFD400 !important;
    border: 3px solid #FFD400 !important;
}

.woocommerce-error {
    color: #5C2CDC !important;
    background: #fff !important;
    border-bottom: 2px solid #999 !important;
}

.woocommerce .woocommerce-notices-wrapper>* {
    padding: 10px !important;
    list-style: none !important;
}

.site .button:not(:hover):not(:active):not(.has-background) {
    padding: 5px 30px !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    color: #fff !important;
}

.site .button:hover {
    padding: 5px 30px !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    color: #000 !important;
    background: #FFD400 !important;
    border: 3px solid #FFD400 !important;
    text-decoration: none !important;
}

.woocommerce-message {
    background: #fff !important;
    color: #5C2CDC !important;
    border-bottom: 2px solid #999 !important;
    border-top: 0 !important;
}

.singular .entry-header {
    display: none !important;
    border-bottom: 3px solid #999 !important;
    padding-bottom: 5px !important;
    margin-bottom: 0px !important;
}

.singular .entry-header h1 {
    font-size: 20px !important;
    font-weight: 600 !important;
}

.woocommerce-cart table.woocommerce-cart-form__contents thead {
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    background: #f7f7f7 !important;
    color: #444 !important;
}

.woocommerce .cart-collaterals h2 {
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    background: #f7f7f7 !important;
    color: #444 !important;
    margin-bottom: 0px !important;
    padding: 10px !important;
    text-align: center !important;
}
table th{
    border: none !important;
    vertical-align: top !important;
    padding-top: 3px!important;
}
table.shop_table .shop_table_responsive,
td, th {
    border: 1px solid #eee !important;
}

tr.cart-subtotal th {
    color: #444 !important;
}

tr.order-total th {
    color: #444 !important;
}

ins.woocommerce-Price-amount bdi {
    font-size: 25px !important;
    font-weight: 500 !important;
}

.single_variation_wrap bdi {
    font-size: 25px !important;
}

tr.woocommerce-cart-form__cart-item cart_item td.a {
    text-decoration: none !important;
    outline: none !important;
}

dl.variation dt {
    color: #444 !important;
    font-weight: 600 !important;
    font-size: 14px;
}

.wc-item-meta dd,
dl.variation dd {
    color: #727272 !important;
    font-size: 14px;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
    border: 1px solid #ddd !important;
}

.woocommerce-billing-fields {
    color: #444 !important;
}

.woocommerce-billing-fields h3 {
    text-transform: uppercase !important;
    border-bottom: 2px solid #999 !important;
}

.woocommerce-additional-fields h3 {
    color: #444 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    border-bottom: 2px solid #999 !important;
}

.woocommerce-additional-fields__field-wrapper {
    color: #444 !important;
}

h3#order_review_heading {
    color: #444 !important;
    text-transform: uppercase !important;
    border-bottom: 2px solid #999 !important;
}

.woocommerce-privacy-policy-text p {
    font-size: 15px !important;
    color: #444 !important;
    font-weight: 400 !important;
}

tr.cart_item td.product-name {
    color: #444 !important;
}

table.shop_table woocommerce-checkout-review-order-table,
td,
th {
    border: 1px solid #eee !important;
}

table.shop_table woocommerce-checkout-review-order-table tbody {
    border-bottom: 0 !important;
}

table.variations td {
    border: none !important;
}

.woocommerce-checkout form .col2-set label {
    font-size: 16px !important;
}

single-product form.cart input {
    width: 19px !important;
}

input[type=checkbox],
input[type=radio],
input[type=radio]:checked {
    border: 1px solid #ccc !important;
    height: 19px !important;
}

input[type=radio]:after {
    left: 4px !important;
    top: 4px !important;
    width: 9px !important;
    height: 9px !important;
}

.vi-wpvs-variation-style {
    display: flex !important;
}

.vi-wpvs-variation-style th {
    width: 36% !important;
    line-height: 20px;
    margin-top: 7px;
}

.vi-wpvs-variation-style td {
    vertical-align: top !important;
}

.vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap {
    padding: 0 20px !important;
}

table.variations label {
    color: #262626 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-radio .vi-wpvs-option-wrap label.vi-wpvs-option,
.woocommerce div.product form.cart .variations label.vi-wpvs-option {
    font-size: 14px !important;
}

.single-product .woocommerce-variation-price {
    margin: 0 0 15px !important;
    display: flex;
    width: 100% !important;
    justify-content: flex-end;
}
li.entry {
    box-shadow: -1px -1px 5px 0px rgb(204 204 204 / 80%) !important;
}
li.entry:hover {
    background: #1f42930d;
}

.wpmart-header {
    border-bottom: 1px solid;
}

.site-branding {
    margin-top: 0 !important
}

.wpmart-menu {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 40px !important;
	text-align: center !important;
	align-items: center !important;
}

.wpmart-menu .wpmart-menu-ul,
.wpmart-menu .wpmart-menu-li {
    padding: 0 !important;
    margin: 3px 0 !important;
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
}

.wpmart-menu .wpmart-menu-li {
    float: left !important;
    list-style: none !important;
}

.wpmart-menu .wpmart-menu-li a {
    padding: 0 12px !important;
    line-height: 40px !important;
    font-size: 16px !important;
    font-weight: 500;
    color: #FFF !important;
    background-color: #09C7A4 !important;
    text-decoration: none !important;
    display: block !important;
    margin: 0 3px !important;
}

.wpmart-menu .wpmart-menu-li a.wpmart-active,
.wpmart-menu .wpmart-menu-li a:hover {
    background-color: #FFD400 !important;
    color: #000 !important;
}

.wpmart-plugins-heading {
    background: #2C2765 !important;
    padding: 50px 0 !important;
}

.wpmart-plugins-heading .wpmart-heding-title {
    font-size: 50px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #fff !important;
}

.wpmart-plugins-heading .wpmart-plugin-purchase {
    position: relative !important;
    text-align: center !important;
    width: 100%!important;
    margin-top: 30px !important;
}

.wpmart-plugins-heading .wpmart-plugin-purchase a {
    background: #0AD2AD!important;
    font-size: 16px!important;
    font-weight: 600 !important;
    text-decoration: none !important;
    outline: none!important;
    width: 250px!important;
    padding: 10px 30px;
    color: #fff !important;
    text-transform: uppercase !important;
}

.wpmart-plugins-heading .wpmart-plugin-purchase a:hover {
    color: #444 !important;
    background: #FFD400 !important;
}

.wc-block-grid__product-price span.woocommerce-Price-amount {
    font-size: 18px !important;
}

.woocommerce-cart-form__cart-item .product-name a {
    text-decoration: none !important;
    font-weight: 600 !important;
}

footer .site-info {
    margin-bottom: 0 !important;
}

.wpmart-description-wrapper {
    width: 100% !important;
    float: left !important;
    position: relative !important;
    border-top: 2px solid;
    padding-top: 30px !important
}

.woocommerce-tabs #tab-description h2 {
    display: none !important;
}

.wpmart-description-wrapper .live-demo-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.live-demo-button .live-demo{
    background: #e95a31;
}
.live-demo-button .doc-video{
    background: #335dff !important;
}
.live-demo-button a {
    margin: 0 5px 10px;
    color: #ffffff;
    padding: 10px 32px;
    /*border-radius: 25px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center;
    background-color: #18c7a9 !important;
}

.live-demo-button a:hover {
    background: #335dff !important;
}

/*Doc Buttons*/
.wpmart-description-wrapper .demo-doc-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.demo-doc-buttons .live-demo{
    background: #e95a31;
}
.demo-doc-buttons .doc-video{
    background: #335dff !important;
}
.demo-doc-buttons a {
    margin: 0 5px 10px;
    color: #ffffff;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center;
    background-color: #18c7a9 !important;
}

.demo-doc-buttons a:hover {
    background: #335dff !important;
}
/* End Doc Buttons */


.free-demo-button {
    width: 100% !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    float: left;
}
.free-demo-button a {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    background: #e95a31 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 8px 0 !important;
    width: 160px !important;
    display: inline-block;
    text-align: center;
}
.free-demo-button a:hover {
    background: #335dff !important;
}
.wpmart-description-wrapper,
.wpmart-description-wrapper .wpmart-short-des{
    max-width: 100% !important;
    float: left;
    color: #444;
    font-size: 17px;
    width: calc(100% - 30px) !important;
    padding: 10px 15px;
}
.free-version-text {
    float: left;
    width: calc(100% - 60px) !important;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
    font-style: normal;
    padding: 10px 30px !important;
    color: #444;
}
.free-version-text a{
	text-decoration: none !important;
}

.wpmart-short-des p {
    float: left;
    width: calc(100% - 60px) !important;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    padding: 10px 30px !important;
    text-align: center;
}

.wpmart-description-wrapper .wpmart-feature {
    width: 100% !important;
    display: block !important;    
}

.wpmart-feature h3 {
    font-family: Jost, sans-serif;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #444 !important;
    text-transform: uppercase !important;
    padding: 50px 30px 0px 30px !important;
}

.wpmart-description-wrapper .feature-list {
    display: block !important;
    float: left;
}
.feature-list .feature-list-item {
    font-family: Roboto, sans-serif;
    color: #444 !important;
    padding: 5px 0px !important;
    display: list-item !important;
    list-style-type: square !important;
    margin-left: 30px !important;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 500 !important;
}

.feature-list .feature-list-items {
    width: calc(100% - 30px);
    padding: 5px 0px !important;
    margin-left: 30px !important;

    
}
.feature-list-items {
    display: flex;
    color: #444;
    font-family: Roboto, sans-serif;
    padding: 5px 0px !important;
    margin-left: 30px !important;
    font-size: 17px !important;
    font-weight: 400 !important;
}

.feature-list-items i{
    display: flex;
    font-size: 18px;
    line-height: 28px;
    color: #5c2cde;
    margin-right: 5px;
}


/*.feature-list .feature-list-item {*/
/*    font-family: Roboto, sans-serif;*/
/*    color: #444 !important;*/
/*    padding: 5px 0px !important;*/
/*    margin-left: 30px !important;*/
/*    font-size: 16px !important;*/
/*    line-height: 20px !important;*/
/*    font-weight: 400 !important;*/
/*}*/


.feature-list .feature-list-item-red {
    color: red !important;
}

h1.product_title:after {
    content: "(After purchase, you will get a lifetime license, so no yearly renewal is needed.)";
    display: block !important;
    font-size: 12px !important;
    line-height: 14px !important;
    margin-top: 8px !important;
    color: #f00 !important;
    font-weight: 300 !important;
}

.site-main>* {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.woocommerce-tabs ul {
    display: none !important;
}

.summary.entry-summary {
    margin-bottom: 25px !important;
}

section.related.products {
    display: none !important;
}

.reset_variations {
    display: none !important;
}

table.variations {
    margin-bottom: 0 !important;
    background-color: rgba(206, 207, 214, 0.2) !important;
}

a {
    transition: all 0.6s ease 0s !important;
}

input[type=submit]:not(:hover):not(:active):not(.has-background) {
    color: #fff !important;
    padding: 10px 80px !important;
}

.wpcf7-submit:hover {
    color: #444 !important;
    padding: 10px 80px !important;
    border: 3px solid #FFD400 !important;
    background: #FFD400 !important;
}

.site-footer>.site-info a:link {
    color: #fff !important;
    text-decoration: none !important;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100% !important;
    margin-bottom: 10px !important;
    border: none !important;
    background: #02D3AF !important;
    color: #fff !important;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:focus {
    outline: none !important;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    width: 100% !important;
    margin-bottom: 10px !important;
    border: none !important;
    background: #02D3AF !important;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    border: none !important;
    background: #02D3AF !important;
    color: #fff !important;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required:focus {
    outline: none !important;
    color: #fff !important;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required:focus {
    outline: none !important;
}

.wp-mart-cms-page-wrapper {
    float: left !important;
    width: 100% !important;
}

.wp-mart-blog-page-wrapper {
    float: left !important;
    width: 100% !important;
}
.page-header, .page-header h1{
	display: none !important;
}
.entry-title a, .entry-title a:hover{
	color: #444 !important;
	text-decoration: none !important;
}
.entry-content p{
	color: #444 !important;
}
p.banner-intro-text {
	color: #fff !important
}
footer.entry-footer {
	display: none !important;
}
.wpmart-title {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    display: none !important;
}

.wpmart-title h2 {
    font-size: 50px !important;
    font-weight: 600 !important;
    color: #444 !important;
}

.wpmart-content {
    width: 100% !important;
    float: left !important;
}
.wpmart-content a{
	text-decoration: none !important;
	color: #444 !important;
}

.wpmart-content p {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #444 !important;
    text-align: left !important;
    margin-bottom: 20px !important;
}

.wpmart-content a {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.subtitle {
    float: left !important;
    width: 100% !important;
    margin-bottom: 10px !important;
}

.subtitle h4 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #444 !important;
}

.wpmart-main-title {
    margin-top: 3rem !important;
}

.wpmart-main-title strong:last-child {
    color: #02D3AF !important;
}

.wpmart-plugin-browse {
    width: 100% !important;
    text-align: center !important;
}

.wpmart-plugin-browse a {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #fff !important;
    text-transform: uppercase;
    border: 1px solid #fff !important;
    padding: 10px 30px;
    text-decoration: none !important;
}

.wpmart-plugin-browse a:hover {
    background: #FFD400 !important;
    border: 1px solid #FFD400 !important;
    color: #444 !important;
}

.wpmart-support-theme-container {
    width: auto !important;
	padding: 50px 7.5% !important;
}
.not-found-container {
	 width: auto !important;
	padding: 50px 7.5% !important;
}
.not-found-text {
	font-weight: 500 !important;	
}
.wpmart-support-title {
    float: left !important;
    width: 100% !important;
    text-align: center !important;
    position: relative !important;
    margin-bottom: 20px !important;
}

.wpmart-support-title h2 {
    font-size: 25px !important;
    font-weight: 700 !important;
    color: #444 !important;
    text-transform: uppercase !important;
}

.wpmart-support-title span.wpmart-theme-pluging {
    color: rgb(24, 199, 169) !important;
}

.wpmart-theme-logo-container {
    width: 100% !important;
    float: left !important;
}

.wpmart-theme-logo-container .wpmart-logo-item {
    float: left !important;
    padding: 0 !important;
    background: rgba(247, 248, 252, 1) !important;
    margin: 10px 10px !important;
    text-align: center;
    width: calc(20% - 20px) !important;
    transition: all 0.6s ease 0s !important;
}

.wpmart-theme-logo-container .wpmart-logo-item:hover {
	box-shadow: 5px 5px 10px 5px #B8B8B8 !important;
}

.wpmart-logo-item img {
    width: 50% !important;
}

.wpmart-logo-title {
    color: #444 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding-bottom: 10px !important;
}

.woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 0 !important;
}

.wpmart-card-section {
    color: red !important;
    font-size: 13px !important;
    margin: 30px 0 !important;
    float: left !important;
}

.wpmart-card-section a {
    width: 90px !important;
    height: 25px !important;
    line-height: 25px !important;
    display: inline-block !important;
    text-decoration: none !important;
    background: #09C7A5 !important;
    color: #FFF !important;
    text-align: center !important;
    margin-top: 7px !important;
}

.wpmart-card-section a:hover {
    background: #FFD400 !important;
    color: #000 !important;
}

.wc_payment_methods {
    display: none !important;
}

.wpcf7-not-valid-tip {
    font-size: .8em !important;
    margin-top: -5px !important;
    margin-bottom: 30px !important;
}

p#billing_state_field {
    display: none !important;
}

.woocommerce-additional-fields {
    display: none !important;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
    outline: none !important;
    border-radius: 4px !important;
}

span#select2-billing_country-container {
    font-size: 15px !important;
}

.woocommerce-checkout .select2-container--focus .select2-selection,
.woocommerce-checkout .select2-container--open .select2-selection {
    outline: none !important;
    border: 1px solid lightgray !important;
    display: flex !important;
    align-items: center !important;
}

span.select2-dropdown.select2-dropdown--below {
    border: 1px solid lightgray !important;
}

span.select2-selection.select2-selection--single {
    border: 1px solid lightgray !important;
}

span.select2-dropdown.select2-dropdown--above {
    border: 1px solid lightgray !important;
}

span.woocommerce-input-wrapper input {
    height: 35px !important;
    font-size: 15px !important;
}

.woocommerce-checkout form .col2-set label {
    font-size: 15px !important;
    margin-bottom: 4px !important;
}

.woocommerce-checkout .select2-container .select2-search__field {
    outline: none !important;
}

.woocommerce-checkout .select2-container .select2-search__field {
    height: 2rem !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto !important;
}

.select2-container--default .select2-results>.select2-results__options {
    font-size: 15px !important;
    font-weight: 500 !important;
}

span.select2-selection.select2-selection--single {
    display: flex !important;
    align-items: center !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
}

.woocommerce-checkout .select2-container .select2-selection--single {
    height: 35px !important;
    border-radius: 4px !important;
}
button[name='update_cart'] {
    display: none !important;
}
.onsale {
    background: #ebb00c !important;
}
.single-product .type-product.sale>.onsale {
    right: -0.7rem !important;
	margin-top: 100px !important;
}
span.price > del {
    color: red !important;
    opacity: .7 !important;
}
span.price > del bdi{
    font-size: 20px !important;
}
.wc-block-grid__product-onsale {
    display: none !important;
}
.site .button:focus, button:focus, .wp-block-button .wp-block-button__link:focus {
		outline: none !important;
		outline-offset: 0 !important;
}
.primary-navigation a:hover {
	color: #02D3AF !important;
	text-decoration: none !important;
}
.select2-container--default .select2-results__option[data-selected=true]{
	color: #444 !important;
	background: #fff !important;
}
.woocommerce-checkout .select2-container .select2-search__field{
	background: #fff !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected]{
	background: #fff !important;
	color: #444 !important;
}
select:focus {
    outline-offset: 0px !important;
    outline: none !important;
}
.wpmart-logo-item a, a:hover {
	text-decoration: none !important;
}
.woocommerce-checkout .select2-container .select2-dropdown{
	border: 1px solid #ccc !important;
}
.vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-select .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock .vi-wpvs-option, 
.vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-select .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute .vi-wpvs-option, 
.vi-wpvs-variation-wrap:not(.vi-wpvs-variation-wrap-select) .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock-attribute>:not(.vi-wpvs-option-tooltip), 
.vi-wpvs-variation-wrap:not(.vi-wpvs-variation-wrap-select) .vi-wpvs-option-wrap.vi-wpvs-option-wrap-out-of-stock>:not(.vi-wpvs-option-tooltip){
    opacity: 1 !important;
}
.wpmart-testimonial-container {
	width: auto !important;
	background: #f7f8fc !important;
	padding: 50px 7.5% !important;
}
.wpmart-why-with-us-container{
	width: auto !important;
	background: #fff !important;
	padding: 50px 7.5% !important;
}
.vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default {
	box-shadow: none !important;
	background-color: rgb(245 245 247) !important;
	color: rgba(33, 33, 33, 1) !important;
		
}
@media only screen and (max-width: 600px) {
    .site-branding{
        position: relative;
    }
    .free-version-text {
        float: left;
        width: calc(100% - 60px) !important;
        font-family: Roboto, sans-serif;
        font-size: 16px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        padding: 10px 30px !important;
        color: #444;
    }
    .site-header.has-logo:not(.has-title-and-tagline).has-menu .site-logo {
        position: relative !important;
        top: 0;
    }
    .wpmart-plugins-heading .wpmart-plugin-purchase{
            margin-top: 10px !important;
    }
    .wpmart-plugins-heading .wpmart-heding-title {
        font-size: 28px !important;
        font-weight: 600 !important;
        text-align: center !important;
        color: #fff !important;
        padding-left: 10px !important;
    }
   
    .woocommerce #content div.product div.summary,
    .woocommerce #content div.product div.images {
        width: 100% !important;
        padding-left: 10px !important;
    }
    .single-product.singular .entry-title {
        font-size: 22px !important;
        font-weight: 600 !important;
    }
    .woocommerce #content div.product div.images {
        margin-bottom: 15px !important;
    }
    .woocommerce-product-gallery__trigger {
        display: none !important;
    }
    .vi-wpvs-variation-style td:first-child {
        width: 80px !important;
        line-height: 22px !important;
        padding-left: 0 !important;
    }
    .woocommerce-tabs {
        margin-top: 2rem !important;
    }
    .woocommerce .content-area {
        padding-top: 0 !important;
    }
    .site-branding {
        margin-right: 0px !important;
    }
    #primary-mobile-menu .button:hover {
        padding: 8px 30px !important;
        font-size: 15px !important;
        text-transform: uppercase !important;
        color: #000 !important;
        background: #fff !important;
        border: 0 !important;
        text-decoration: none !important;
    }
    .menu-button-container #primary-mobile-menu {
        color: #000 !important;
        background: #fff !important;
        outline: none !important;
    }
    table.variations {
        position: relative !important;
    }
    .wpmart-theme-logo-container .wpmart-logo-item {
        width: calc(50% - 20px) !important;
    }
	
	.vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap{
		width: auto !important;
		height: auto !important;
	}
	.vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default {
		box-shadow: none !important;
		background-color: rgb(245 245 247) !important;
		color: rgba(33, 33, 33, 1) !important;
			
	}
	.wc-block-grid__product-onsale {
		display: none !important;
	}
	.site .button:focus, button:focus, .wp-block-button .wp-block-button__link:focus {
		outline: none !important;
		outline-offset: 0 !important;
	}
	.primary-navigation a:hover {
		color: #02D3AF !important;
		text-decoration: none !important;
	}

	.woocommerce table.shop_table_responsive tr:nth-child(2n+1) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n+1) td{
		background: #fff !important;
		filter: none !important;
	}
	.select2-container--default .select2-results__option[data-selected=true]{
		color: #444 !important;
		background: #fff !important;
	}
	.woocommerce-checkout .select2-container .select2-search__field{
		background: #fff !important;
	}
	.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected]{
		background: #fff !important;
		color: #444 !important;
	}
	select:focus {
		outline-offset: 0px !important;
		outline: none !important;
	}
	.woocommerce-checkout .select2-container .select2-dropdown{
		border: 1px solid #ccc !important;
	}
	.wpmart-theme-logo-container .wpmart-logo-item:hover {
		box-shadow: 5px 5px 10px 5px #B8B8B8 !important;
	}
	.wpmart-logo-item a, a:hover {
		text-decoration: none !important;
	}
	.onsale{
	    display: none !important;
	}
}