  /* @font-face {
    font-family: 'Rolla';
    src: url('../assets/fonts/Rolla.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
} */

a {
  transition: 400ms;
}
a:hover {
  transition: 400ms;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

html {
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: auto !important;
  }

  :root {
    --font-size-title: 35px;
    --font-size-contnt: 16px;
    
    --font-family-title: "Poppins", sans-serif;
    --font-family-text: "Lato", sans-serif;

    --color-primary: #2B2C2C;
	  --color-primary-dark: #2EBEEE;
    --color-primary-footer: #1f97c0;
	
	  --color-secundary: #FFFFFF;
    --color-secundary-dark: #A1A1A1;
    --color-secundary-light: #E4E4E4;

    --color-text-two:  #3A3B3A; 
  }

  .text-white {
    color: #fff;
    }

  body, html {
	overflow-x: hidden;
    }

    .page-width {
        max-width: 200rem;
        margin: 0 auto;
        padding-left: 5rem;
        padding-right: 5rem;
    }

    @media (max-width: 600px) {
        .page-width {
            padding-left: 2rem;
            padding-right: 2rem;
        }
    }
    @media (max-width: 425px) {
        .page-width {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }



/* ======================== RESET ======================= */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        /* font-family: var(--font-family-text); */
    }

    /* body {
        font-family: var(--font-family-text);
    } */

    /* .btn{
        background-color: var(--color-primary-dark);
        text-decoration: none;
        width: fit-content;
        padding-left: 2rem;
        padding-right: 2rem;
        border-radius: 0;
    } */

    /* a.btn{
        color: var(--color-secundary);
    } */

    .btn-2{
        background-color: var(--color-secundary);
        color: var(--color-primary) !important;
        overflow: hidden;
    }

    a{
      text-decoration: none;
    }

    a:hover {
        color: var(--color-secundary-dark);
        
    }

  ul::-webkit-scrollbar,
  p::-webkit-scrollbar,
  div::-webkit-scrollbar {
      width: 6px;
  }

  body::-webkit-scrollbar{
      width: 10px;
  }

  ul::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb,
  p::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
      background-color: var(--color-primary-dark);
  }

body {
    font-size: 100%;
    font-weight: normal;
    font-family: var(--font-family-text) !important;
}


body, button, input, select, optgroup, textarea{
  font-size: 1.2rem;
}

body, input, select, optgroup, textarea{
  font-size: 17px !important;
}

input,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    outline-width: 0;
    outline-color: transparent;
    box-shadow: none;
    outline-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-title);
    color: var(--color-primary-dark);
}

input[type="text"]{
  border-radius: 10px;
}

 /* ======================== Pulse Animation ======================= */

.pulse {

    animation: btn-pulse 2s infinite ease-out;
  }

@keyframes btn-pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    70% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }


 /* ======================== Button ======================= */


.btn-2:active,  .btn-2 span:active, 
 .btn-2:hover, .btn-2 span:hover, 
 .btn-2:focus, .btn-2 span:focus {
  outline: 0!important;
  outline-offset: 0;
}


.btn-2::before, .btn-2 span::before,
.btn-2::after, .btn-2 span::after {
  position: absolute;
  content: "";
}

/********************************************************/
  
  .btn {
    position: relative;
    display: inline-block;
    width: auto; height: auto;
    background-color: var(--color-primary-dark);
    border: none;
    cursor: pointer;
    margin: 0px 25px 15px;
    min-width: 150px;
    border-radius: 16px;
    padding: 0;
  }

    .btn span {         
      position: relative;
      display: inline-block;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0px;
      text-transform: capitalize;
      top: 0; left: 0;
      width: 100%;
      padding: 15px 20px;
      transition: 0.3s;
      border-radius: 16px;
    }

  /*--- btn-2 ---*/
  .btn-2::before {
    background-color: rgb(28, 31, 30);
    border-radius: 16px;
    transition: 0.3s ease-out;
  }
  .btn-2 span {
    color: var(--color-secundary);
    border: 2px solid var(--color-primary-dark);
    transition: 0.2s;
    padding: 12px 50px;
    border-radius: 16px;
  }  

  @media (min-width: 768px) {

  .btn-2 span:hover {
    color: rgb(255,255,255);
    transition: 0.2s 0.1s;
  }

}

  .btn-3{
    color: var(--color-secundary);
    background-color: var(--color-primary);
    overflow: hidden;
  }

  .btn-3::before {
    background-color: var(--color-secundary);
  }

  .btn-3 span {
    color: var(--color-secundary);
  }

  .btn-3 span:hover {
    color: var(--color-primary);
  }

  .btn-4{
    color: var(--color-secundary);
    background-color: transparent;
    overflow: hidden;
  }

  /* .btn-4 i{
    color: var(--color-primary-dark);
  } */

  .btn-4 span {
    color: var(--color-secundary);
    border: 1px solid transparent;
  }


  @media (min-width: 768px) {
  
  /* 9. hover-slide-right */
  .btn.hover-slide-right::before {
    top: 0; bottom: 0; left: 0; 
    height: 100%; width: 0%;
  }

  .btn.hover-slide-right:hover::before {
    width: 100%;
  }

}

  /********************************************************/

  select{
    border: 1px solid #f9f9f9;
/*     color: var(--color-secundary) !important;
 */  /*   background-color: var(--color-primary-dark); */
    border-radius: 25px;
    padding: 12px;
    font-family: var(--font-family-text) !important;
  }

/* ======================== Anchor ======================= */
  .pageAnchor{
    /* height: 141px; */
    position: absolute;
    top: -141px;
    width: 100%;
  }

 /* ======================== Owl Carousel ======================= */

  .owl-dots{
    display: flex;
    justify-content: left;
    margin-top: 2rem;
    margin-left: 2rem;
  }

  @media (max-width: 600px) {
    .owl-dots{
      justify-content: center;
    }
  }

  .owl-dot span{
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 1;
    width: 12px;
    transition: 0.7s;
  }

  .owl-dot span{
    background-color: var(--color-primary-dark);
    /* color: var(--color-primary-dark); */
  }

  .owl-dot.active span{
    width: 3rem;
  }

  /* ======================== Form 7 ======================= */

  .wpcf7-response-output{
    color: white;
    background-color: var(--color-primary);
  }

  .checkbox-content .wpcf7-not-valid-tip{
    display: flex;
    position: absolute;
    bottom: -26px;
    width: 11rem;
  }

  .containerForm input[type="text"], .containerForm input[type="email"], 
  .containerForm input[type="url"], .containerForm input[type="password"], 
  .containerForm input[type="search"], .containerForm input[type="number"], 
  .containerForm input[type="tel"], .containerForm input[type="range"], .containerForm input[type="date"], 
  .containerForm input[type="month"], .containerForm input[type="week"], .containerForm input[type="time"], 
  .containerForm input[type="datetime"], .containerForm input[type="datetime-local"], 
  .containerForm input[type="color"], .containerForm textarea{
    border-radius: 0px !important;
  }

 /* ======================== Woocommerce ======================= */

  .products .woocommerce-loop-product__title{
    text-align: center;
    font-size: 20px;
  }

  .products .button.product_type_simple.add_to_cart_button.ajax_add_to_cart,
  .products .button.product_type_simple{
    width: 100%;
    text-align: center;
  }

  .woocommerce ul.products li.product, 
  .woocommerce-page ul.products li.product{
    height: 446.24px;
  }

  .attachment-post-thumbnail.size-post-thumbnail.wp-post-image{
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .content-items-search .entry-title{
    text-align: center;
  }

  .no-results.not-found p{
    color: var(--color-secundary) !important;
  }

  .no-results.not-found .search-submit{
    background: var(--color-primary);
    color: #fff;
    transition: 400ms;
    margin: 0 8px;
    outline: var(--color-secundary) solid thin;
    border: 0;
  }

  .content-items-search .add_to_cart_button.ajax_add_to_cart.btn-add{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 25px;
    padding: 0.5rem 0;
    color: var(--color-secundary);
    transition: 0.7s;
    font-weight: bold;
  }

  .content-items-search  .add_to_cart_button.ajax_add_to_cart.btn-add:hover{
    color: var(--color-primary);
    background-color: var(--color-primary-dark);
  }

  input {
    accent-color: var(--color-primary-dark);
  }

  .woocommerce-noreviews{
    color: var(--color-secundary);
  }

  .woocommerce #content table.cart td.actions .input-text, 
  .woocommerce table.cart td.actions .input-text, 
  .woocommerce-page #content table.cart td.actions .input-text, 
  .woocommerce-page table.cart td.actions .input-text{
    width: 140px !important;
  }

  .woocommerce-error, .woocommerce-info, .woocommerce-message{
    background-color: #f0fdff !important;
    border-top: 3px solid #54a1b3 !important;
    border-radius: 27px;
    overflow: hidden;
  }

  .woocommerce-message{
    border-top-color: var(--color-primary-dark) !important;
  }

  td.actions{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  input[type="number"]{
    border: 1px solid #9dd2fea3 !important;
    border-radius: 7px !important;
    padding-left: 6px !important;
  }

  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, 
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, 
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, 
  :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, 
  :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, 
  :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button{
    color: var(--color-secundary) !important;
    background-color: var(--color-primary-dark) !important;
    border-radius: 25px !important;
    padding: 12px 1em !important;
  }

  .shop_table tbody tr:nth-child(odd){
    background-color:#E4E4E417 !important;
    color: var(--color-secundary) !important;
  }

  .shop_table tbody tr:nth-child(even) {
    background-color: #5a5a5a !important;
    color: #fff;
}

  .woocommerce-cart-form .shop_table{
    border-radius: 25px;
    overflow: hidden;
  }

  .shop_table.shop_table_responsive .order-total{
    background-color: var(--color-secundary);
  }

  .shop_table thead{
    background-color: var(--color-primary-dark);
  }

  .shop_table button[disabled=""]{
    background: var(--color-secundary-dark);
  }

  .shop_table button[name="update_cart"]{
    margin-right: 2rem;
  }

  .shop_table thead th{
    padding: 15px 1rem !important;
    color: var(--color-secundary);
  }

  .coupon{
    margin-left: 2rem;
  }

  .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, 
  .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{
    color: #5488b3 !important;
    font-size: 36px !important;
  }

  .cart_item .product-name span{
    display: inline-block;
  }

  #add_payment_method #payment, 
  .woocommerce-cart #payment, 
  .woocommerce-checkout #payment{
    background: #cacaca !important;
    border-radius: 25px !important;
    margin-bottom: 2rem;
  }

  #add_payment_method #payment div.payment_box, 
  .woocommerce-cart #payment div.payment_box, 
  .woocommerce-checkout #payment div.payment_box{
    background-color: var(--color-primary-dark) !important;
    color: var(--color-secundary) !important;
    border-radius: 25px;
  }

  #add_payment_method #payment div.payment_box::before, 
  .woocommerce-cart #payment div.payment_box::before, 
  .woocommerce-checkout #payment div.payment_box::before{
    border: 1em solid var(--color-primary-dark)!important;
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
  }

  .woocommerce-info::before{
    color: var(--color-primary-dark) !important;
  }

  .woocommerce table.shop_table{
    border-radius: 25px !important;
    overflow: hidden !important;
  }

  #customer_details{
    margin-bottom: 2rem !important;
  }

  .woocommerce div.product div.images img{
    border-radius: 25px;
    overflow: hidden; 
  }

  #secondary.widget-area{
    display: none;
  }

  .woocommerce-breadcrumb{
    height: 0;
  }

  .woocommerce-billing-fields label, 
  .woocommerce-additional-fields label{
    color: var(--color-secundary);
  }

  .shop_table.woocommerce-checkout-review-order-table tfoot {
      background-color: #6e6d6d;
      color: #fff;
  }

  form.checkout.woocommerce-checkout h3{
    text-align: center;
    margin-top: 2rem;
  }


  .woocommerce form .form-row .input-text, .woocommerce-page form .form-row .input-text {
    background: #cacaca;
}

.woocommerce ul.products li.product a img {
  height: auto !important;
  aspect-ratio: 1 !important;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
  height: auto !important;
}


  @media screen and (max-width: 576px) {
    .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering{
      float: none !important;
      transform: translateX(calc(50% - 114.8px));
    }

    .woocommerce #review_form #respond .form-submit input{
      transform: translateX(35vw);
    }

    .woocommerce div.product .product_title{
      text-align: center;
    }

    .summary.entry-summary p.price{
      text-align: right;
      margin-right: 4vw;
    }

    .wc-proceed-to-checkout a{
      margin: 0 auto !important;
    }
    
  }