/*
Theme Name: Divinorum  
Author: Irak Miguel Villegas 
Author URI: http://mitikuin.com.mx
Description: Theme designed and developed for "Divinorum" by Irak Miguel Villegas
Version: 1.0
License: GNU General Public License v2 or later
*/
@viewport {
    user-zoom: fixed;
  }
  
  *,
  *:after,
  *:before {
    margin: 0;
    padding: 0;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  html,
  body,
  div,
  span,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  abbr,
  address,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  samp,
  small,
  strong,
  sub,
  sup,
  var,
  b,
  i,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
  
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  iframe {
    width: 100%;
  }
  
  b,
  strong {
    font-weight: bold !important;
  }
  
  ul,
  ol {
    list-style: none;
  }
  
  q {
    quotes: none;
  }
  
  table,
  table td {
    padding: 0;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  img {
    vertical-align: top;
    max-width: 100%;
  
    -webkit-backface-visibility: hidden;
    -ms-transform: translateZ(0); /* IE 9 */
    -webkit-transform: translateZ(0); /* Chrome, Safari, Opera */
    transform: translateZ(0);
  }
  
  embed {
    vertical-align: top;
  }
  
  input,
  button {
    -webkit-appearance: none;
    outline: none;
  }
  
  button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
  }
  
  button::-moz-focus-inner {
    border: 0;
  }
  
  html {
    overflow-x: hidden;
  
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  html,
  body {
    height: 100%;
  }
  
  a:hover{
    text-decoration: none !important;
    color: #ffffff !important;
  }
  /* -----------------------------------
  
    2. Global 
  
  ------------------------------------- */
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #777;
    position: relative;
    padding: 0                                  px;
    margin-top: 100px;
    
  }

  .navbar{
    padding-top: 0px !important;
  }
  
  .navbar-light .navbar-nav .nav-link {
    font-weight: 400;
    color: #000000 !important;
    font-style: normal;
  }
  
  .loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
  }
  
  .wrapper-container {
    position: relative;
    overflow: hidden;
  }
  
  .wrapper-container.wide .header.sticky-header.clone-fixed {
    width: calc(100% - 100px);
  }
  
  ::selection {
    background: #45b29d;
    color: #fff;
  }
  
  ::-moz-selection {
    background: #45b29d;
    color: #fff;
  }
  
  ::-o-selection {
    background: #45b29d;
    color: #fff;
  }
  
  ::-ms-selection {
    background: #45b29d;
    color: #fff;
  }
  
  .selected-type-1 {
    background: #45b29d;
    color: #fff;
  }
  
  img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
  
  .clearfix:after,
  .row:after {
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
    content: ".";
  }
  
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 300;
    color: #777;
    -webkit-transition: text-indent 0.5s ease, color 0.5s ease;
  }
  
  input::-moz-placeholder,
  textarea::-moz-placeholder {
    font-size: 16px;
    font-weight: 300;
    color: #777;
    opacity: 1;
    -webkit-transition: text-indent 0.5s ease, color 0.5s ease;
  }
  
  [placeholder]:focus::-webkit-input-placeholder {
    text-indent: 10em;
    color: transparent;
  }
  
  [placeholder]:focus::-webkit-textarea-placeholder {
    text-indent: 10em;
    color: transparent;
  }
  
  /* ------------------------------------------------------
    
    3. General classes
    
  ------------------------------------------------------ */
  
  .fw-block {
    width: 100%;
  }
  
  .wrapper {
    overflow: hidden;
  }
  
  .relative {
    position: relative;
  }
  
  .align-left {
    text-align: left;
  }
  
  .align-center {
    text-align: center;
  }
  
  .align-right {
    text-align: right;
  }
  
  .f-left {
    float: left;
  }
  
  .f-right {
    float: right;
  }
  
  .hide {
    display: none;
  }
  
  .show {
    display: block;
  }
  
  .invisible {
    visibility: hidden;
  }
  
  img[class*="align"] {
    margin-bottom: 15px;
    max-width: 50%;
  }
  
  img.alignleft {
    float: left;
    margin-right: 30px;
  }
  
  img.alignright {
    float: right;
    margin-left: 30px;
  }
  
  .page-content-wrap {
    padding: 125px 0;
  }
  
  [class*="page-section"] {
    padding: 120px 0;
    position: relative;
  }
  
  [class*="page-section"].no-bts {
    padding-bottom: 0;
  }
  
  [class*="page-section"].type2 {
    padding: 60px 0;
  }
  
  [class*="page-section"].type3 {
    padding: 100px 0 130px;
  }
  
  [class*="page-section"].type4 {
    padding: 120px 0 107px;
  }
  
  .page-section-bg {
    background: #f9f9f9;
  }
  
  .content-element:not(:last-child) {
    margin-bottom: 100px;
  }
  
  .content-element1:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .content-element2:not(:last-child) {
    margin-bottom: 23px;
  }
  
  .content-element3:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .content-element4:not(:last-child) {
    margin-bottom: 39px;
  }
  
  .content-element5:not(:last-child) {
    margin-bottom: 50px;
  }
  
  .content-element6:not(:last-child) {
    margin-bottom: 60px;
  }
  
  .content-element8:not(:last-child) {
    margin-bottom: 80px;
  }
  
  .content-element10:not(:last-child) {
    margin-bottom: 106px;
  }
  
  .extra-wide {
    width: 100%;
  }
  
  .img-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: top right;
  }
  
  .img-bg.left-side {
    background-position: top left;
  }
  
  .container.full-width {
    width: 100%;
    max-width: 100%;
  }
  
  /* Custom grid cols */
  
  .flex-row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
  }
  
  .flex-row[class*="item-col-"]:not(.no-gutters) {
    margin: 0 -15px -26px;
  }
  
  .flex-row[class*="item-col-"]:not(.no-gutters) > * {
    padding: 0 15px 26px;
  }
  
  .item-col-1 > * {
    width: 100%;
  }
  
  .item-col-2 > * {
    width: 50%;
  }
  
  .item-col-3 > * {
    width: 33.3333%;
  }
  
  .item-col-4 > * {
    width: 25%;
  }
  
  .item-col-5 > * {
    width: 20%;
  }
  
  .item-col-6 > * {
    width: 16.6666%;
  }
  
  .row.row-2 {
    margin: 0 -30px;
  }
  
  .row.row-2 > [class*="col-"] {
    padding: 0 30px;
  }
  
  /* Responsive iframe */
  
  .responsive-iframe {
    position: relative;
    z-index: 1;
    height: 0px;
    padding-bottom: 56.2%;
  }
  
  .responsive-iframe > iframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  
  /* -----------------------------------
  
    4. Typography
  
  ------------------------------------- */
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
     font-family: 'prata', sans-serif;
    color: #000000;
    font-weight: normal;
    letter-spacing: -0.1px;
  }
  
  h1 {
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -0.1px;
  }
  
  h2 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.1px;
  }
  
  h3 {
    font-size: 36px;
    line-height: 39px;
  }
  
  h4 {
    font-size: 30px;
    line-height: 40px;
  }
  
  h5 {
    font-size: 24px;
    line-height: 30px;
  }
  
  h6 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
  }
  
  
  h2:not(:last-child) {
    margin-bottom: 21px;
  }
  
  h3:not(:last-child) {
    margin-bottom: 18px;
  }
  
  h4:not(:last-child) {
    margin-bottom: 23px;
  }
  
  h5:not(:last-child) {
    margin-bottom: 13px;
  }
  
  h6:not(:last-child) {
    margin-bottom: 13px;
  }
  
  p {
    padding: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
  }
  
  p:not(:last-child) {
    margin-bottom: 26px;
  }
  
  p + p {
    margin-top: -13px;
  }
  
  .fw-light {
    font-weight: 300;
  }
  
  .fw-medium {
    font-weight: 400;
  }
  
  a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    outline: none;
    text-decoration: none;
    background: transparent;
    vertical-align: baseline;
  }
  
  a,
  a > * {
    text-decoration: none;
    outline: none !important;
  }
  
  a {
    color: #333;
  }
  
  a,
  button {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  a.link-text {
    color: #45b29d;
  }
  
  a.link-text.var2 {
    text-transform: uppercase;
  }
  
  a.link-text.var3 {
    letter-spacing: 1px;
  }
  
  a.link-text:hover {
    text-decoration: underline;
  }
  
  [class^="icon-"]:before,
  [class*="icon-"]:before {
    width: auto;
    margin: 0;
    padding: 0;
  }
  
  .title-holder {
    position: relative;
  }
  
  .title-holder .icon-divider {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    margin-bottom: 13px;
  }
  
  .title:not(:last-child) {
    margin-bottom: 30px;
  }
  
  h5.title:not(:last-child) {
    margin-bottom: 23px;
  }
  
  .section-title:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .section-title.no-bts:not(:last-child) {
    margin-bottom: 0;
  }
  
  .section-title.style-2 {
    text-transform: uppercase;
  }
  
  .section-pre-title,
  .section-pre-title a {
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    color: #754b75;
    letter-spacing: 1px;
    padding-left: 60px;
  }
  
  .section-pre-title:not(.style-2):before {
    content: "";
    left: 0;
    top: 50%;
    background: #baa5ba;
    height: 1px;
    width: 40px;
    position: absolute;
    display: block;
  }
  
  .section-pre-title:not(:last-child),
  .sub-title:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .section-pre-title.style-2,
  .section-pre-title.style-2 a {
    padding-left: 0;
  }
  
  .sub-title {
    text-transform: uppercase;
    font-weight: 300;
  }
  
  .text-size-small {
    font-size: 14px;
    line-height: 24px;
  }
  
  .text-size-medium {
    font-size: 18px;
    line-height: 30px;
  }
  
  .text-size-big {
    font-size: 24px;
    line-height: 43px;
    color: #333;
  }
  
  .text-size-small:not(:last-child) {
    margin-bottom: 15px;
  }
  
  p.fw-medium,
  p span.fw-medium {
    color: #333;
  }
  
  .text-color-light .section-pre-title,
  .text-color-light,
  .text-color-light form label {
    color: #f1f1f1;
  }
  
  .text-color-light .section-title,
  .text-color-light .info-item .info-title,
  .text-color-light .our-info .info-item,
  .text-color-light .call-title {
    color: #fff;
  }
  
  .text-color-light .section-pre-title:not(.style-2):before {
    background: #fff;
    opacity: 0.5;
  }
  
  .text-color-dark .section-pre-title,
  .text-color-dark,
  .text-color-dark form label,
  .text-color-dark.call-out .call-title,
  .text-color-dark.call-out,
  .text-color-dark .section-title {
    color: #333;
  }
  
  .text-color-light .testimonial .author-position,
  .text-color-light .testimonial .author-about,
  .text-color-light .testimonial .author-company {
    color: #999;
  }
  
  /* Tooltips */
  
  .tooltips {
    color: #777;
  }
  
  .tooltips a {
    position: relative;
    color: #999;
  }
  
  .tooltip {
    position: absolute;
    display: block;
    background: #f1f1f1;
    padding: 4px 10px;
    color: #333;
    font-size: 12px;
    line-height: 16px;
    opacity: 0;
    font-weight: 300;
    visibility: hidden;
    white-space: nowrap;
    z-index: 5;
  
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  a.top-tooltip .tooltip {
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    -webkit-transform: translate(-50%, -15px);
    -moz-transform: translate(-50%, -15px);
    -o-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    border-bottom: 1px solid #45b29d;
  }
  
  a.left-tooltip .tooltip {
    top: 50%;
    right: 100%;
    margin-right: 5px;
    -webkit-transform: translate(-15px, -50%);
    -moz-transform: translate(-15px, -50%);
    -o-transform: translate(-15px, -50%);
    -ms-transform: translate(-15px, -50%);
    transform: translate(-15px, -50%);
    border-right: 1px solid #45b29d;
  }
  
  a.right-tooltip .tooltip {
    top: 50%;
    left: 100%;
    margin-left: 9px;
    -webkit-transform: translate(15px, -50%);
    -moz-transform: translate(15px, -50%);
    -o-transform: translate(15px, -50%);
    -ms-transform: translate(15px, -50%);
    transform: translate(15px, -50%);
    border-left: 1px solid #45b29d;
  }
  
  a.bottom-tooltip .tooltip {
    top: 100%;
    left: 50%;
    margin-top: 5px;
    -webkit-transform: translate(-50%, 15px);
    -moz-transform: translate(-50%, 15px);
    -o-transform: translate(-50%, 15px);
    -ms-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
    border-top: 1px solid #45b29d;
  }
  
  a.top-tooltip:hover .tooltip {
    -webkit-transform: translate(-50%, 0px);
    -moz-transform: translate(-50%, 0px);
    -o-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }
  
  a.left-tooltip:hover .tooltip {
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
  }
  
  a.right-tooltip:hover .tooltip {
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
  }
  
  a.bottom-tooltip:hover .tooltip {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  
  .tooltips a .tooltip:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
  }
  
  a.top-tooltip .tooltip:after {
    border-left: 7px solid transparent;
    border-top: 5px solid #45b29d;
    border-right: 7px solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -7px;
  }
  
  a:hover .tooltip {
    opacity: 1;
    visibility: visible;
  }
  
  .tooltips a:hover {
    text-decoration: none;
  }
  
  .tooltips a.left-tooltip .tooltip:after {
    border-top: 7px solid transparent;
    border-left: 5px solid #45b29d;
    border-bottom: 7px solid transparent;
    top: calc(50% - 7px);
    left: 100%;
  }
  
  .tooltips a.right-tooltip .tooltip:after {
    border-top: 7px solid transparent;
    border-right: 5px solid #45b29d;
    border-bottom: 7px solid transparent;
    right: 100%;
    top: calc(50% - 7px);
  }
  
  .tooltips a.bottom-tooltip .tooltip:after {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 5px solid #45b29d;
    border-top: none;
    bottom: 100%;
    left: calc(50% - 7px);
  }
  
  /* -----------------------------------
  
    5. Header
  
  ------------------------------------- */
  
  .header.sticky-header.clone-fixed {
    position: fixed;
    z-index: 99;
    transition: 0.5s top cubic-bezier(0.3, 0.73, 0.3, 0.74);
  }
  
  .header.fixed-header:not(.clone-fixed) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 9;
    box-shadow: none;
  }
  
  .header {
    position: relative;
    width: 100%;
  }
  
  .header:not([class*="style-"]) {
    background: #fff;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.04);
  }
  
  .header .top-header .container {
    max-width: 100%;
  }
  
  
  .logo {
    display: block;
  }
  
  /* Header-2 */
  
  .header.style-2.sticky-header.clone-fixed {
    background: #fff;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.04);
  }
  
  .header.style-2 {
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
  }
  
  .header.style-2 .top-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  /* Header-3 */
  
  .header.style-3 {
    background: #754b75;
  }
  
  .header.style-3 .top-header {
    padding: 20px 40px;
  }
  
  .header.style-3 .main-navigation > ul > li > a,
  .header.style-3 button.search-button,
  .header.style-3 .shop-cart .sc-cart-btn,
  .header.style-3 button.account {
    color: #fff;
  }
  
  /* Header-4 */
  
  .header.style-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
  }
  
  .header.style-4 .pre-header {
    padding: 0 170px;
    border-bottom: 1px solid #f1f1f1;
  }
  
  .header.style-4 .top-header {
    padding: 20px 170px;
  }
  
  .pre-header .our-info .info-item {
    font-size: 12px;
    font-weight: 300;
  }
  
  .right-actions {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  
  .pre-header .right-actions > *:not(:last-child) {
    margin-right: 30px;
  }
  
  .pre-header .login-area {
    font-weight: 300;
    color: #777;
    font-size: 12px;
  }
  
  .pre-header .login-area > a:hover {
    text-decoration: underline;
  }
  
  .pre-header .social-icons.style-2 > li > a {
    color: #333;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 14px;
  }
  
  .pre-header .social-icons.style-2 > li > a:hover {
    color: #333;
    white-space: nowrap;
    text-transform: uppercase;
    display: block;
    position: relative;
    letter-spacing: 0.5px;
    border-bottom: 1px solid transparent;
  }
  
  /* Header-5 */
  
  .header.style-4.var2 .logo {
    position: absolute;
    top: 0;
    left: 50%;
  
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .header.style-4.var2 .top-header {
    padding: 39px 170px;
  }
  
  .header.style-4.var2 .pre-header .flex-row {
    margin: 0 -110px;
  }
  
  .header.style-4.var2 .pre-header .flex-row > * {
    padding: 0 110px;
  }
  
  .header.style-4.var2 .menu-item-empty {
    min-width: 220px;
  }
  
  /* Main Navigation */
  .page-bg-hero {
    background-image: url("images/1920x1000_bg1.jpg");
  }
  
  #wrapper {
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .menu-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content:right;
    margin: 0 -10px;
  }
  
  .nav-item {
    text-align: right;
  }
  
  .main-navigation {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    position: relative;
  }
  
  .main-navigation > ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin: 0 -20px;
  }
  
  .main-navigation > ul > li {
    position: relative;
    padding: 0 20px;
    font-size: 1rem;
  }
  
  .searchform-wrap.opened,
  .main-navigation > li:hover > .sub-menu-wrap {
    opacity: 1;
    visibility: visible;
  }
  
  .main-navigation > ul > li.current > a,
  .main-navigation > ul > li:hover > a,
  .sub-menu-wrap ul li:hover > a,
  .sub-menu-wrap ul li.current > a {
    border-bottom-color: inherit;
  }
  
  .sub-menu-wrap ul li {
    position: relative;
  }
  
  .main-navigation > ul > li.dropdown > a:after {
    font-family: 'Poppins', sans-serif;
    content: "\e8e7";
    margin-left: 10px;
    font-size: 1rem;
    display: inline-block;
    vertical-align: top;
  }
  
  .sub-menu-wrap {
    position: absolute;
    margin-top: 10px;
    left: -20px;
    top: 100%;
    min-width: 260px;
    background: #293e4a;
    padding: 26px 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
  
    -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease,
      visibility 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    -webkit-transform: translate3d(-15px, 15px, 0);
    -moz-transform: translate3d(-15px, 15px, 0);
    -o-transform: translate3d(-15px, 15px, 0);
    -ms-transform: translate3d(-15px, 15px, 0);
    transform: translate3d(-15px, 15px, 0);
  }
  
  .sub-menu-wrap:before {
    content: "";
    bottom: 100%;
    width: 100%;
    left: 0;
    height: 10px;
    display: block;
    position: absolute;
    background: transparent;
  }
  
  .sub-menu-wrap .sub-menu-wrap.sub-menu-inner {
    left: 100%;
    background: #293e4a;
    top: 0;
    margin-left: 1px;
    margin-top: -26px;
  }
  
  .sub-menu-wrap .sub-menu-wrap.sub-menu-inner:before {
    right: 100%;
    left: auto;
    width: 1px;
    top: 0;
    bottom: auto;
    height: 100%;
  }
  
  .main-navigation > ul > li:hover > .sub-menu-wrap:not(.sub-menu-inner),
  .sub-menu-wrap ul li:hover .sub-menu-wrap.sub-menu-inner {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }
  
  .sub-menu-wrap ul > li.sub:after {
    font-family: 'Prata', sans-serif;
    content: "\e93c";
    position: absolute;
    right: 30px;
    top: 2px;
    color: #fff;
    font-size: 11px;
  }
  
  .sub-menu-wrap:not(.mega-menu) ul li {
    position: relative;
    padding: 0 30px;
  }
  
  .main-navigation > ul > li.has-megamenu {
    position: static;
  }
  
  .sub-menu-wrap.mega-menu {
    min-width: auto;
    left: 10%;
    padding: 26px 0;
  }
  
  .sub-menu-wrap.mega-menu .row {
    margin: 0;
    flex-wrap: nowrap;
  }
  
  .sub-menu-wrap.mega-menu .row > .col {
    padding: 0 30px;
  }
  
  .sub-menu-wrap.mega-menu .mega-title {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.8px;
    font-weight: 300;
  }
  
  .sub-menu-wrap.mega-menu .mega-title:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .sub-menu-wrap.mega-menu ul li a {
    padding: 0;
    background: none;
    color: #fff;
  }
  
  .sub-menu-wrap ul li:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .sub-menu-wrap ul li a {
    display: inline-block;
    white-space: pre;
    position: relative;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.8px;
    color: #fff;
    border-bottom: 1px solid transparent;
  }
  
  .responsive-nav-button {
    display:flex;
    text-align: center;
    color: #333;
    font-size: 1rem;
    z-index: 2;
    border-radius: 0;
    background: transparent;
  
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .responsive-nav-button:before {
    font-family: 'Poppins', sans-serif;
    content: "\e92b";
  }
  .bg-left-col {
    background-image: url(images/960x884_bg2.jpg);
  }
  .bg-right-col {
    background-image: url(images/960x884_bg1.jpg);
  }
  
  /*#wrapper #advanced-menu-hide {*/
    #advanced-menu-hide {
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .menu-button-wrap {
    text-align: right;
    padding: 10px 0;
  }
  
  .mobile-advanced {
    display: none;
  }
  
  .header .top-header .menu-holder .menu-wrap > * {
    margin: 0 5px;
  }
  
  .header.style-3 .responsive-nav-button {
    color: #fff;
  }
  
  /* Navigation Bar */
  
  .nav-bttn {
    font-size: 20px;
    background-color: transparent;
    color: #333;
     font-family: 'Prata', sans-serif;
  }
  
  .nav-bttn:before {
    content: "\e92b";
  }
  
  .nav-bttn.close-bttn:before {
    content: "\e92a";
  }
  
  .navbar-menu .close-bttn {
    position: absolute;
    top: 70px;
    right: 25px;
  }
  
  .nav-menu.type-hr ul {
    margin: 0 -20px -10px;
    font-size: 0;
  }
  
  .nav-menu ul > li {
    font-size: .9rem;
    font-weight: 500;
  }
  
  .nav-menu.type-hr ul > li {
    margin: 0 20px 10px;
    display: inline-block;
  }
  
  .nav-menu ul > li > a {
    position: relative;
    letter-spacing: 0.8px;
    white-space: nowrap;
    line-height: 16px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
  }
  
  .nav-menu ul > li > a:before,
  .page-nav-menu > ul > li > a:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    -webkit-transition-property: width;
    transition-property: width;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit;
    transition-duration: inherit;
  }
  
  .nav-menu ul > li a:hover:before,
  .nav-menu ul > li.current > a:before,
  .page-nav-menu > ul > li.current > a:before {
    width: 100%;
  }
  
  .navback{
    background-color: #ffffff ;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #fff;
    max-width: 515px;
    z-index: 99;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
  
    webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  
  .navbar-menu.open-navbar {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  
  .navbar-menu .nav-menu {
    opacity: 0;
    -webkit-transform: translateY(3rem);
    -ms-transform: translateY(3rem);
    -o-transform: translateY(3rem);
    transform: translateY(3rem);
    -webkit-transition: all 0.5s 0.7s ease;
    -o-transition: all 0.5s 0.7s ease;
    transition: all 0.5s 0.7s ease;
  }
  
  .navbar-menu.open-navbar .nav-menu {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
  
  .navbar-menu .nav-inner {
    padding: 120px 65px;
    display: block;
  }
  
  .navbar-menu .nav-menu > ul li {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 48px;
  }
  
  .navbar-menu .nav-menu > ul > li.sub-menu > ul {
    display: none;
    padding-left: 15px;
  }
  
  .navbar-menu .nav-menu > ul > li.sub-menu.active > ul {
    display: block;
  }
  
  .navbar-menu .nav-menu > ul > li.sub-menu > ul > li {
    font-size: 16px;
  }
  
  .navbar-menu .nav-menu > ul > li.sub-menu > a:after {
     font-family: 'Prata', sans-serif;
    content: "\e93a";
    display: inline-block;
    margin-left: 20px;
    font-size: 24px;
    vertical-align: -3px;
  }
  
  .navbar-menu .nav-menu > ul > li a {
    color: #202732;
    display: inline-block;
    line-height: 18px;
  }
  
  .navbar-menu .logo:not(:last-child) {
    margin-bottom: 40px;
  }
  
  .navbar-menu p:not(:last-child),
  .navbar-menu .menu-list:not(:last-child),
  .navbar-menu .portfolio-holder:not(:last-child) {
    margin-bottom: 70px;
  }
  
  .navbar-menu .title {
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .navbar-menu .title:not(:last-child) {
    margin-bottom: 38px;
  }
  
  .widget-gallery {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin: -26px -13px 0;
  }
  
  .widget-gallery > li {
    padding: 26px 13px 0;
  }
  
  .navbar-menu .portfolio-holder .flex-row {
    margin: 0 -13px -26px;
  }
  
  .navbar-menu .portfolio-holder .flex-row .project {
    padding: 0 13px 26px;
  }
  
  /*----------- Icon Boxes --------------*/
  .bg-boxes-op1 {
    background-image: url("images/option1.jpg");
  }
  .bg-boxes-op2 {
    background-image: url("images/spacanabico.jpg");
  }
  
  .svg-gradient {
    position: fixed;
    top: 0;
    left: 0;
  }
  
  .icons-box [class*="col-"]:not(:last-child) {
    margin-bottom: 0 !important;
  }
  
  .icons-box.style-1 {
    margin-bottom: -30px;
  }
  
  .icons-box.style-1.flex-row {
    margin: 0 -15px -45px;
  }
  
  .icons-box.style-1 > .icons-wrap {
    text-align: center;
    padding-bottom: 45px;
  }
  
  .icons-box.style-1:not(.type-2) .icons-item .item-box p {
    padding: 0 15px;
  }
  
  .icons-box.style-1 .icons-item .item-box > i {
    margin-bottom: 36px;
    display: block;
  }
  
  .icons-box.style-1 .icons-item .item-box > i .svg {
    width: 120px;
    height: 100px;
    fill: #754b75;
  }
  
  .icons-item .item-box .icons-box-title a {
    border-bottom: 1px solid transparent;
    color: #333;
  }
  
  .icons-item .item-box .icons-box-title a:hover,
  .icons-box.style-1.type-2 .icons-box-title a:hover {
    border-bottom-color: inherit;
  }
  
  .icons-box.style-1.type-2 .icons-item {
    position: relative;
    text-align: left;
    padding-left: 90px;
  }
  
  .icons-box.style-1.type-2 .icons-box-title {
    font-family: 'Poppins', sans-serif;
  }
  
  .icons-box.style-1.type-2 .icons-box-title a {
    border-bottom: 1px solid transparent;
    color: #333;
  }
  
  .icons-box.style-1.type-2 .icons-item .item-box > i {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
  
  .icons-box.style-1.type-2 .icons-item .item-box > i .svg {
    width: 70px;
    height: 70px;
  }
  
  .icons-box.style-1.type-2 .icons-item .item-box > i .svg path {
    stroke: url(#MyGradient);
  }
  
  .icons-box.style-2 .icons-wrap {
    text-align: center;
    padding: 20px;
    height: 335px;
    z-index: 1;
    position: relative;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
  }
  
  .icons-box.style-2 .icons-item .item-box > i {
    display: block;
    margin-bottom: 40px;
    transition: all 0.45s ease;
    max-height: 70px;
  }
  
  .icons-box.style-2 .icons-item .item-box > i .svg {
    width: 70px;
    height: 70px;
  }
  
  .icons-box.style-2 .icons-item .item-box > i .svg path {
    stroke: #fff;
  }
  
  .icons-box.style-2 .icons-wrap .icons-item {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  
    transition: all 0.45s ease;
  }
  
  .icons-box.style-2 .icons-wrap:hover .icons-item {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .icons-box.style-2 .icons-item .icons-box-title {
    line-height: 40px;
  }
  
  .icons-box.style-2 .icons-item .icons-box-title:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .icons-box.style-2 .icons-item .icons-box-title a {
    font-size: 36px;
    color: #fff;
  }
  
  .icons-box.style-2 .icons-wrap .hidden-area {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    color: #eaeaea;
  
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }
  
  .icons-box.style-2 .icons-wrap:hover .hidden-area {
    max-height: 150px;
    opacity: 1;
    visibility: visible;
  }
  
  .icons-box.style-2 .icons-wrap:hover .item-box > i {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    visibility: hidden;
  }
  
  .info-boxes:not(.style-2) .info-box {
    text-align: center;
  }
  
  .info-box .box-img:not(:last-child) {
    margin-bottom: 35px;
  }
  
  .info-boxes:not(.style-2) .info-box .box-title a {
    border-bottom: 1px solid transparent;
  }
  
  .info-boxes:not(.style-2) .info-box .box-title a:hover {
    border-bottom-color: inherit;
  }
  
  .info-boxes:not(.style-2) .info-box p {
    padding: 0 15px;
  }
  
  .info-boxes.style-2 .info-box {
    position: relative;
    padding: 60px 40px 70px;
    color: #f1f1f1;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .info-boxes.style-2 .info-box .box-title {
    position: relative;
    padding-left: 60px;
  
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }
  
  .info-boxes.style-2 .info-box .box-title a {
    color: #fff;
  }
  
  .info-boxes.style-2 .info-box .box-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 40px;
    background: #fff;
    opacity: 0.5;
  
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }
  
  .info-boxes.style-2 .info-box:hover .box-title {
    padding-left: 0;
    padding-right: 60px;
  }
  
  .info-boxes.style-2 .info-box:hover .box-title:before {
    left: calc(100% - 40px);
  }
  
  .info-boxes.style-2 .info-box > p,
  .info-boxes.style-2 .info-box > .btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(60px);
    -ms-transform: translateX(60px);
    -o-transform: translateX(60px);
    transform: translateX(60px);
  
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }
  
  .info-boxes.style-2 .info-box:hover > p,
  .info-boxes.style-2 .info-box:hover > .btn {
    opacity: 1;
    visibility: visible;
  
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  
  /* Search and Shopping cart buttons */
  
  .dropdown-list,
  .dropdown-window {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border-radius: 3px;
    overflow: hidden;
  
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .dropdown-window {
    -webkit-transform: scale3d(0.85, 0.85, 0.85);
    -ms-transform: scale3d(0.85, 0.85, 0.85);
    transform: scale3d(0.85, 0.85, 0.85);
  }
  
  .dropdown-window.opened {
    opacity: 1;
    visibility: visible;
  
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  
  .search-holder,
  .shop-cart {
    display: inherit;
  }
  
  button.search-button,
  .shop-cart .sc-cart-btn,
  button.account {
     font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 26px;
    background: none;
    color: #333;
  }
  
  button.search-button:before {
    content: "\e922";
  }
  
  .searchform-wrap .vc-child form input {
    background-color: #fff;
    border: none;
    color: #222;
    border-radius: 0;
    height: 52px;
  }
  
  .close-search-form,
  .close-popup {
    background-color: transparent;
    position: absolute;
     font-family: 'Poppins', sans-serif;
    left: 100%;
    margin-left: 20px;
    font-size: 20px;
    color: #f4f4f5;
    z-index: 99;
    font-weight: normal;
    display: inline-block;
    top: 50%;
    margin-top: -13px;
  
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .close-search-form:hover,
  .close-popup:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .close-search-form:before,
  .close-popup:before {
    content: "\e92a";
  }
  
  .searchform-wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: none;
    display: block;
    background: rgba(31, 25, 31, 0.8);
    text-align: center;
    z-index: 201;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  
    opacity: 0;
    visibility: hidden;
  }
  
  .searchform-wrap.opened {
    opacity: 1;
    visibility: visible;
  }
  
  .searchform-wrap .vc-child {
    width: 710px;
    display: inline-block;
    position: relative;
    margin-top: 20%;
  }
  
  .searchform-wrap form,
  .search-holder form {
    position: relative;
  }
  
  .searchform-wrap form input {
    padding-right: 60px;
  }
  
  .searchform-wrap form button,
  .search-holder form button {
    color: #333;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .searchform-wrap form input:not([type="submit"]):focus,
  .searchform-wrap form textarea:focus {
    border-color: transparent;
    box-shadow: none;
  }
  
  button.account:before {
    content: "\e721";
  }
  
  /* -----------------------------------
  
    9. Blog
  
  ------------------------------------- */
  
  .entry-box:not(.owl-carousel) {
  }
  
  /*----------- Entries --------------*/
  
  .entry-box.entry-small .entry {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin: -20px -10px 0;
  }
  
  .entry-box .entry {
    position: relative;
  }
  
  .entry-box .entry:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .entry-box.entry-small.list-type .entry .thumbnail-attachment:not(:last-child) {
    margin-right: 20px;
  }
  
  .entry-box.entry-small .entry .thumbnail-attachment a {
    min-width: 100px;
    display: block;
    overflow: hidden;
  }
  
  .entry-box.entry-small .entry > * {
    padding: 20px 10px 0;
  }
  
  .entry .entry-title a {
    border-bottom: 1px solid transparent;
  }
  
  .entry .entry-title a:hover {
    border-bottom-color: inherit;
  }
  
  .entry-box .entry h5.entry-title:not(:last-child) {
    margin-bottom: 7px;
  }
  
  .entry-box.entry-small .entry .entry-title:not(:last-child) {
    margin-bottom: 0;
  }
  
  .entry h5.entry-title:not(:last-child) {
    margin-bottom: 7px;
  }
  
  .entry h5.entry-title:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .entry .entry-meta {
    font-size: 14px;
    font-weight: 300;
    color: #999;
    letter-spacing: 0.5px;
  }
  
  .entry-box.entry-small .entry .entry-meta {
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: normal;
  }
  
  .entry .entry-meta:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .entry-meta a {
    color: #45b29d;
  }
  
  .entry-meta a:hover {
    text-decoration: underline;
  }
  
  .single-post .entry .entry-body .product-price {
    float: right;
    font-size: 24px;
  }
  
  .entry-box:not(.entry-small) .entry {
    height: 100%;
    padding: 26px;
    background: #f9f9f9;
  }
  
  .entry-box.style-2:not(.entry-small) .entry {
    background: #fff;
    text-align: left;
  }
  
  .entry-box:not(.entry-small) .entry .thumbnail-attachment:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .entry-box.entry-small .entry .thumbnail-attachment:not(:last-child) {
    margin-bottom: 0;
  }
  
  .entry .our-info:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .entry .our-info .info-item,
  .entry .our-info .info-item i {
    font-size: 12px;
    line-height: 20px;
  }
  
  .entry .our-info .info-item {
    color: #999;
    letter-spacing: 0.3px;
  }
  
  .entry .our-info.vr-type .info-item:not(:last-child) {
    margin-bottom: 6px;
  }
  
  .entry-price {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .entry .label-top {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 28px;
    background: #e883ae;
    color: #fff;
    padding: 0 15px;
    border-radius: 0 0 0 15px;
  }
  
  .thumbnail-attachment {
    position: relative;
  }
  
  .entry-label {
    font-size: 14px;
    letter-spacing: 0.3px;
    padding: 0 14px;
    line-height: 28px;
    background: #45b29d;
    color: #fff;
    border-radius: 15px;
    display: inline-block;
  }
  
  .thumbnail-attachment > .entry-label {
    position: absolute;
    top: 0px;
    left: 26px;
    z-index: 2;
  }
  
  .entry-body .entry-label:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .thumbnail-attachment > .entry-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 26px;
  }
  
  .thumbnail-attachment > * > .entry-body {
    padding: 0 26px 26px 26px;
  }
  
  .thumbnail-attachment > .entry-body .entry-title > a {
    color: #fff;
  }
  
  .thumbnail-attachment > .entry-body .entry-meta {
    color: #cfcfcf;
  }
  
  .thumbnail-attachment .flex-row .entry-meta:not(:last-child) {
    margin-bottom: 0;
  }
  
  .thumbnail-attachment > .entry-body .entry-icon {
    color: #fff;
  }
  
  .entry-icon span {
    font-size: 12px;
    margin-right: 10px;
    letter-spacing: 1px;
    font-weight: normal;
    text-transform: uppercase;
  }
  
  .entry-icon > * {
    display: inline-block;
    vertical-align: middle;
  }
  
  .thumbnail-attachment .blockquote-holder {
    background: #fff;
  }
  
  .thumbnail-attachment .blockquote-holder blockquote {
    padding: 40px 20px;
  }
  
  .thumbnail-attachment .blockquote-holder.testimonial blockquote:before {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
    margin-top: 15px;
  }
  
  .entry-icon {
    font-size: 20px;
    color: #333;
  }
  
  .link-attachment {
    position: relative;
    overflow: hidden;
    color: transparent;
    border: 2px solid #ab619a;
    border-image-source: linear-gradient(#e883ae, #ab619a);
    border-image-slice: 20;
  }
  
  .link-attachment .link-wrap {
    padding: 50px 20px 40px;
    text-align: center;
  }
  
  .link-attachment .link {
    position: relative;
    font-size: 18px;
    color: #e883ae;
    line-height: 30px;
  }
  
  .link-attachment .link:before {
     font-family: 'Prata', sans-serif;
    content: "\e917";
    display: block;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
  
    -moz-background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: -moz-linear-gradient(
      left,
      rgba(230, 130, 173, 1) 0%,
      rgba(145, 82, 145, 1) 100%
    );
    background-image: -webkit-linear-gradient(
      left,
      rgba(230, 130, 173, 1) 0%,
      rgba(145, 82, 145, 1) 100%
    );
    background-image: linear-gradient(
      to right,
      rgba(230, 130, 173, 1) 0%,
      rgba(145, 82, 145, 1) 100%
    );
  }
  
  .entry-box.single-post .entry {
    background: none;
    padding: 0;
  }
  
  .entry-box.single-post .entry .entry-body:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .entry-box.single-post > .entry > .entry-body .entry-meta {
    font-size: 16px;
  }
  
  .entry-box.single-post .entry .entry-meta:not(:last-child) {
    margin-right: 26px;
  }
  
  .entry-box.single-post .entry .our-info .info-item,
  .entry-box.single-post .entry .our-info .info-item i {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
  }
  
  .entry-box.single-post > .entry > .thumbnail-attachment:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .single-post h6.event-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
  }
  
  .single-post .custom-list li {
    color: #777;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
  }
  
  .single-post .custom-list li.active {
    color: #333;
  }
  
  .single-post .custom-list li .entry-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -13px;
    font-size: 16px;
  }
  
  .single-post .custom-list li span {
    color: #333;
    padding-right: 2px;
  }
  
  .single-post .custom-list li .product-price {
    color: #e883ae;
  }
  
  .entry-box.list-type:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .entry-box.list-type .entry {
    overflow: hidden;
    padding-bottom: 26px;
  }
  
  .entry-box.list-type > *:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .entry-box.list-type .entry .thumbnail-attachment:not(.full) {
    float: left;
  }
  
  .entry-box.list-type.half-col .entry .thumbnail-attachment:not(.full) {
    max-width: 50%;
    width: 100%;
  }
  
  .entry-box.list-type .entry .thumbnail-attachment:not(:last-child) {
    margin-bottom: 0;
  }
  
  .entry-box.list-type .entry .entry-body {
    overflow: hidden;
    padding-top: 11px;
    padding-left: 30px;
  }
  
  .entry-box.list-type .entry .our-info:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .entry-box.entry-small.list-type {
    display: block;
    margin: 0;
  }
  
  .entry-box.entry-small.list-type > .entry {
    padding: 26px;
    background: #f9f9f9;
    margin: 0;
    position: relative;
  }
  
  .entry-box.entry-small.list-type.style-2 > .entry {
    padding-right: 70px;
  }
  
  .entry-box.entry-small.list-type > .entry .entry-icon {
    font-size: 30px;
    color: #999;
    position: absolute;
    right: 26px;
    top: 50%;
  
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .entry-box.entry-small.list-type > .entry .entry-icon.check {
    color: #45b29d;
  }
  
  .entry-box.entry-small.list-type > .entry .entry-icon:not(.check):hover {
    color: #333;
  }
  
  .entry-box.entry-small.list-type > .entry:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .entry-box.entry-small.list-type .entry > * {
    padding: 0;
  }
  
  .info-links > li:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .info-links > li > a {
    position: relative;
    white-space: nowrap;
    border-bottom: 1px solid transparent;
  }
  
  .info-links > li > a:hover {
    border-bottom-color: inherit;
  }
  
  .info-links.comment-type > li {
    color: #777;
    font-weight: 300;
  }
  
  .info-links.comment-type > li > a {
    color: #45b29d;
    font-size: 16px;
  }
  
  .info-links.comment-type > li > a:last-child {
    color: #333;
    font-size: 18px;
    font-family: 'Prata', sans-serif;
    font-weight: normal;
  }
  
  .entry-box.single-entry .entry {
    padding: 36px 26px;
  }
  
  .entry-box.single-entry .entry .entry-meta {
    font-size: 16px;
    line-height: 26px;
  }
  
  .entry-box.single-entry .entry-meta > * {
    font-weight: 300;
    color: #999;
  }
  
  .entry-box.single-entry .entry .thumbnail-attachment:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .post-nav:not(:last-child) {
    margin-bottom: 100px;
  }
  
  .post-nav .post-button {
    background: #f1f1f1;
    font-size: 14px;
    padding: 7px 30px;
    display: inline-block;
    letter-spacing: 0.8px;
    border-radius: 20px;
    text-transform: uppercase;
  }
  
  .post-nav h6 a:hover {
    text-decoration: underline;
  }
  
  .post-nav .post-button.favorite:hover,
  .post-nav .post-button.active {
    background: #45b29d;
    color: #fff;
  }
  
  .post-nav .menu-button {
    font-size: 20px;
    color: #45b29d;
  }
  
  .post-nav .post-button.favorite {
    padding: 0 20px;
    line-height: 39px;
    font-size: 20px;
  }
  
  .post-nav .switcher {
    font-size: 0;
    border-radius: 20px;
    background: #f1f1f1;
    display: inline-block;
  }
  
  .post-nav .post-button.favorite:not(:last-child) {
    margin-right: 10px;
  }
  
  .post-nav .link-text {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: normal;
  }
  
  /*----------- Testimonials --------------*/
  .btn {
    padding: 7px 30px 6px;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 30px;
    background: #45b29d;
    color: #fff;
    font-weight: normal;
    text-align: center;
    line-height: 26px;
    letter-spacing: 0.8px;
  }
  [class*="btn"].btn-wide {
    width: 100%;
  }
  
  [class*="btn"].btn-small {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 2px 20px 1px;
  }
  
  [class*="btn"].btn-big {
    padding: 10px 30px 9px;
    letter-spacing: 0.5px;
    font-size: 16px;
  }
  
  [class*="btn"].btn-lg {
    font-size: 18px;
    padding: 13px 30px;
    letter-spacing: 0.5px;
  }
  
  [class*="btn"] i {
    display: inline-block;
    vertical-align: -2px;
    font-size: 16px;
    margin-right: 8px;
    line-height: 10px;
  }
  
  [class*="btn"].btn-small i {
    font-size: 14px;
  }
  
  [class*="btn"].btn-big i {
    font-size: 18px;
  }
  
  [class*="btn"].btn-lg i {
    font-size: 20px;
    vertical-align: -3px;
  }
  
  [class*="btn"].btn-style-2 {
    background: #f1f1f1;
    color: #333;
  }
  
  [class*="btn"].btn-style-3 {
    background: #e883ae;
  }
  
  [class*="btn"].btn-style-4 {
    background: #e4e4e4;
    color: #333;
  }
  
  [class*="btn"].btn-style-5 {
    background: #754b75;
  }
  
  [class*="btn"].btn-style-6 {
    background: #334d5c;
  }
  
  [class*="btn"].btn-label {
    font-size: 16px;
    padding: 2px 10px;
    border-radius: 5px;
    text-transform: none;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 5px;
  }
  
  [class*="btn"].fb-btn {
    background: #3b5998;
  }
  /*----------- Carousel Sliders --------------*/
  
  .carousel-type-1 .owl-carousel .owl-nav,
  .carousel-type-2 .owl-carousel .owl-dots {
    display: none !important;
  }
  
  .carousel-type-2.var2 .owl-carousel {
    padding: 0 50px;
  }
  
  .owl-carousel.flex-row .owl-stage {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
  }
  
  .owl-carousel.flex-row .owl-item {
    float: none !important;
  }
  
  [class*="carousel-type"] .owl-carousel:not(:last-child) {
    margin-bottom: 45px;
  }
  
  [class*="carousel-type"] .owl-dots {
    margin-top: 46px;
    text-align: center;
    font-size: 0;
  }
  
  [class*="carousel-type"] .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 4px;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
  }
  
  [class*="carousel-type"] .owl-dots .owl-dot.active {
    background: #e883ae;
  }
  
  .owl-prev,
  .owl-next {
    color: #aab3b6;
    position: absolute;
    top: 50%;
    font-size: 40px;
    margin-top: -20px;
    line-height: 40px;
  
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  
  .owl-prev {
    left: 0;
  }
  
  .owl-next {
    right: 0;
  }
  
  .owl-prev::before,
  .owl-next::before {
     font-family: 'Poppins', sans-serif;
  }
  
  .owl-prev::before {
    content: "\e93b";
  }
  
  .owl-next::before {
    content: "\e93c";
  }
  
  .owl-nav > [class*="owl-"] {
    color: #ccc;
    opacity: 1;
  }
  
  .owl-nav > [class*="owl-"]:hover {
    color: #333;
  }
  
  .carousel-type-2:not(.var2) .owl-nav > .owl-prev {
    left: -80px;
  }
  
  .carousel-type-2:not(.var2) .owl-nav > .owl-next {
    right: -80px;
  }
  
  .carousel-type-2.var3 .owl-carousel .owl-nav > * {
    color: #333;
    opacity: 0.5;
  }
  
  .carousel-type-2.var3 .owl-carousel .owl-nav > *:hover {
    opacity: 1;
  }
  
  .carousel-type-2.var3 .owl-carousel .owl-nav > .owl-prev {
    left: 20px;
  }
  
  .carousel-type-2.var3 .owl-carousel .owl-nav > .owl-next {
    right: 20px;
  }
  
  .testimonial:not(.owl-carousel):not(:last-child) {
    margin-bottom: 50px;
  }
  
  .testimonial-holder.owl-carousel .owl-stage {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
  }
  
  .testimonial-holder.owl-carousel .owl-item {
    float: none;
  }
  
  .testimonial blockquote {
    color: #333;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    padding: 60px 60px 60px;
  }
  
  .testimonial-holder .testimonial.bg1 blockquote {
    background: #f9f9f9;
  }
  
  .testimonial-holder .testimonial.bg2 blockquote {
    background: #f1f1f1;
  }
  
  .testimonial-holder .testimonial.bg3 blockquote {
    background: #e4e4e4;
  }
  
  .testimonial,
  .testimonial blockquote {
    height: 100%;
  }
  
  .testimonial .author {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 20px;
  }
  
  .testimonial h6:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .testimonial .author-box {
    overflow: hidden;
    line-height: 22px;
    text-align: left;
  }
  
  .testimonial .avatar img {
    border-radius: 50%;
    max-width: 80px;
    max-height: 80px;
  }
  
  .testimonial .author-name {
    font-size: 16px;
  }
  
  .testimonial .author-box > * {
    display: inline-block;
    vertical-align: middle;
  }
  
  .testimonial .author-box .author-icon {
    margin-right: 15px;
  }
  
  .testimonial .author-box .author-icon {
    width: 52px;
    height: 52px;
    line-height: 60px;
    border: 1px solid #e883ae;
    border-radius: 50%;
    text-align: center;
  }
  
  /* .author-box .author-icon .svg{
    width: 25px;
    height: 25px;
    display: inline-block;
    background-color: #e883ae;
    -webkit-mask-image: url(../svg/asana_lotus.svg);
    mask-image: url(../svg/asana_lotus.svg);
  } */
  
  .testimonial .author-position {
    font-weight: 300;
  }
  
  .testimonial .author-position,
  .testimonial .author-about,
  .testimonial .author-company {
    display: block;
    font-size: 14px;
    color: #999;
    letter-spacing: 0.8px;
  }
  
  .testimonial .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
  }
  
  .testimonial .title:not(:last-child) {
    margin-bottom: 23px;
  }
  
  .testimonial .author-name:not(:last-child) {
    margin-bottom: 2px;
  }
  
  .testimonial .author-position:not(:last-child) {
    margin-bottom: 2px;
  }
  
  .testimonial .testimonial-holder {
    margin-bottom: 20px;
  }
  
  .testimonial-holder.style-2 .testimonial {
    text-align: center;
  }
  
  .testimonial-holder.style-2 .testimonial:not(.blockquote-holder) blockquote {
    padding: 0 170px 33px;
  }
  
  .testimonial-holder.style-2 .testimonial blockquote:before {
    content: "\e7e5";
     font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 60px;
    line-height: 60px;
    display: inline-block;
    margin-bottom: 35px;
  
    -moz-background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: -moz-linear-gradient(
      left,
      rgba(230, 130, 173, 1) 0%,
      rgba(145, 82, 145, 1) 100%
    ); /* FF3.6-15 */
    background-image: -webkit-linear-gradient(
      left,
      rgba(230, 130, 173, 1) 0%,
      rgba(145, 82, 145, 1) 100%
    ); /* Chrome10-25,Safari5.1-6 */
    background-image: linear-gradient(
      to right,
      rgba(230, 130, 173, 1) 0%,
      rgba(145, 82, 145, 1) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  
  .testimonial-holder.style-2 .testimonial .author-box {
    display: inline-block;
    vertical-align: top;
  }
  
  .testimonial-holder.style-3 .testimonial blockquote {
    height: auto;
  }
  
  .testimonial-holder.style-3:not(.var2) .testimonial blockquote {
    background: #f9f9f9;
    padding: 50px 60px;
    font-size: 18px;
    line-height: 30px;
    position: relative;
  }
  
  .testimonial-holder.style-3:not(.var2) .testimonial blockquote:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 50px;
    width: 0;
    height: 0;
    border-top: 15px solid #f9f9f9;
    border-right: 50px solid transparent;
  }
  
  .testimonial-holder.style-3:not(.var2) .testimonial .author-box {
    padding: 26px 0 0 60px;
  }
  
  .testimonial-holder.style-3.var2 .testimonial blockquote {
    padding: 0;
    padding-bottom: 26px;
  }
  
  .page-section-bg .testimonial-holder.style-3 .testimonial .author {
    color: #fff;
  }
  
  .page-section-bg.parallax-section .testimonial .author-position {
    color: #999;
  }
  
  .page-section-bg.parallax-section
    .testimonial-holder.style-3
    .testimonial
    .author-position {
    color: #cfcfcf;
  }
  
  /*----------- Team Members --------------*/
  
  .team-holder > .row {
    margin-bottom: -65px;
  }
  
  .team-holder > .row > * {
    padding-bottom: 65px;
    margin-bottom: 0 !important;
  }
  
  .team-item {
    position: relative;
    z-index: 1;
  }
  
  .team-item .member-photo {
    display: block;
  }
  
  .team-item .member-photo img {
    width: auto;
  }
  
  .team-item .member-photo:not(:last-child) {
    margin-bottom: 29px;
  }
  
  .team-item .member-name:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .team-holder .team-item .member-name a {
    border-bottom: 1px solid transparent;
  }
  
  .team-holder .team-item .member-name a:hover {
    border-bottom-color: inherit;
  }
  
  .team-item .member-position {
    font-family: 'Poppins', sans-serif;
    color: #999;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 1px;
  }
  
  .team-item .member-position:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .team-member .custom-list li span {
    width: 78px;
    display: inline-block;
  }
  
  .team-member .custom-list li {
    color: #2a2c32;
  }
  
  .team-member .social-icons > li > a {
    background: #80c644;
  }
  
  .team-member .social-icons > li:hover > a {
    background: #494c55;
    color: #fff;
  }
  
  .team-holder.small-type .row {
    margin-bottom: -26px;
  }
  
  .team-holder.small-type .row > [class*="col"] {
    padding-bottom: 26px;
  }
  
  .team-holder.small-type .team-item .member-info:not(:last-child) {
    margin-bottom: 8px;
  }
  
  .team-holder.small-type .team-item .member-name:not(:last-child) {
    margin-bottom: 0;
  }
  
  .team-holder.small-type .team-item .member-position {
    font-size: 14px;
  }
  
  .team-item.team-single {
    overflow: hidden;
  }
  
  .team-item.team-single .member-info:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .team-item.team-single:not(:last-child) {
    margin-bottom: 50px;
  }
  
  .team-item.team-single .member-photo:not(:last-child) {
    float: left;
    margin-right: 30px;
    margin-bottom: 0;
  }
  
  .team-item.team-single .team-desc {
    padding-top: 10px;
    overflow: hidden;
  }
  
  .team-item.team-single .team-desc .member-name:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .team-item.team-single .team-desc .member-info:not(:last-child),
  .team-item.team-single .team-desc .our-info:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .team-item.team-single .team-desc .our-info {
    font-weight: 300;
  }
  
  .team-item.team-single .member-position {
    font-size: 16px;
  }
  
  .team-holder.style-2 .team-item {
    position: relative;
    z-index: 2;
  }
  
  .team-holder.style-2 .team-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: -webkit-linear-gradient(
      rgba(51, 77, 92, 0) 0%,
      rgba(41, 62, 74, 1) 100%
    );
    background: -o-linear-gradient(
      rgba(51, 77, 92, 0) 0%,
      rgba(41, 62, 74, 1) 100%
    );
    background: linear-gradient(rgba(51, 77, 92, 0) 0%, rgba(41, 62, 74, 1) 100%);
  }
  
  .team-holder.style-2 .team-item .team-desc {
    z-index: 2;
    position: absolute;
    padding: 26px 15px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    -o-transform: translateY(45px);
    transform: translateY(45px);
  }
  
  .team-holder.style-2 .team-item:hover .team-desc {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  
  .team-holder.style-2 .team-item .member-name a {
    color: #fff;
  }
  
  .team-holder.style-2 .team-item .member-position {
    color: #cfcfcf;
  }
  
  .team-holder.style-2 .team-item .team-desc .info-btn {
    color: #fff;
    opacity: 0;
    visibility: hidden;
  }
  
  .team-holder.style-2 .team-item:hover .team-desc .info-btn {
    opacity: 1;
    visibility: visible;
  }
  
  /* ----------------- Team Widget ---------------- */
  
  .widget .team-holder .team-item {
    overflow: hidden;
  }
  
  .widget .team-holder .team-item .member-photo {
    float: left;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .widget .team-holder .team-item .member-photo:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
  
  .widget .team-holder .team-item .team-desc {
    overflow: hidden;
    padding-top: 26px;
  }
  
  .widget .team-item .member-name:not(:last-child) {
    margin-bottom: 0;
  }
  
  /* ------------------ Product Box ---------------- */
  
  .products-holder.flex-row[class*="item-col"] {
    margin-bottom: -60px;
  }
  
  .products-holder.flex-row[class*="item-col"] > * {
    padding-bottom: 60px;
  }
  
  .product {
    height: 100%;
    position: relative;
  }
  
  .product .product-image {
    position: relative;
    overflow: hidden;
  }
  
  .product .label {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: auto;
    padding: 0 15px;
    font-size: 13px;
    border-radius: 0 0 0 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 28px;
  }
  
  .product .label.sale {
    background: #754b75;
    color: #fff;
  }
  
  .product .label.new {
    background: #ebeef7;
    color: #1e46a5;
  }
  
  .product-image:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .product-name a {
    border-bottom: 1px solid transparent;
  }
  
  .product-name a:hover {
    border-bottom-color: inherit;
  }
  
  .product-name:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .product-price {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    color: #777777;
    font-weight: 500;
  }
  
  .product-price.free {
    color: #45b29d;
  }
  
  .product-price span {
    color: #777777;
    text-decoration: none !important;
  }
  
  .pricing-area {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .pricing-area:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .product-cat {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #45b29d;
  }
  
  .rating {
    position: relative;
    font-size: 0;
  }
  
  .rating > li {
    color: #45b29d;
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
  }
  
  .rating > li.empty {
    color: #999;
  }
  
  .rating.size-2 > li {
    font-size: 24px;
  }
  
  /*----------- Lists --------------*/
  
  .custom-list:not(:last-child) {
    margin-bottom: 28px;
  }
  
  .custom-list > li {
    position: relative;
    font-weight: 300;
  }
  
  .custom-list > li > ul:not(.social-icons) > li,
  .custom-list > li > ol:not(.social-icons) > li {
    margin-left: 25px;
  }
  
  .custom-list > li > a {
    border-bottom: 1px solid transparent;
  }
  
  .custom-list > li > a:hover {
    border-bottom-color: inherit;
    text-decoration: none;
  }
  
  .custom-list[class*="type-"] li::before {
    content: "";
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
     font-family: 'Poppins', sans-serif;
    color: #e883ae;
    font-size: 20px;
  }
  
  .custom-list.type-1 li::before {
    content: "\e77d";
  }
  
  .custom-list.type-2 li::before {
    content: "\e934";
  }
  
  .custom-list.type-3 li::before {
    content: "\e95b";
  }
  
  .custom-list.type-4 li::before {
    content: "\e9c1";
  }
  
  .custom-list.type-5 li::before {
    content: "\e959";
  }
  
  .custom-list > li > ul,
  .custom-list > li > ol {
    margin-top: 13px;
  }
  
  .custom-list > li:not(:last-child),
  .custom-list > li > ul:not(.social-icons) > li:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .custom-list.style-2 > li > a {
    color: #45b29d;
    letter-spacing: 0.5px;
    border-bottom: none;
  }
  
  .custom-list.style-2 > li > a:hover {
    color: #333;
  }
  /* Menu list */
  
  .menu-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px -10px;
    justify-content: center;
  }
  
  .menu-list > li {
    padding: 0 20px 10px;
  }
  
  .menu-list > li > a {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    border-bottom: 1px solid transparent;
  }
  
  .menu-list > li > a:hover {
    border-bottom-color: inherit;
  }
  
  .menu-list.style-2 {
    margin: 0;
    display: block;
  }
  
  .menu-list.style-2 > li:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .menu-list.style-2 > li {
    padding: 0;
  }
  
  .menu-list.style-2 > li > a {
    text-transform: none;
    color: #45b29d;
    font-weight: 300;
  }
  
  /* Social icons */
  
  .social-icons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7.5px -15px;
  }
  
  .social-icons > li {
    padding: 0 7.5px 15px;
  }
  
  .social-icons:not(.style-2) > li > a {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 43px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    display: block;
  }
  
  .social-icons.var2:not(.style-2) > li > a {
    border-color: #999;
    color: #333;
  }
  
  .social-icons.var2:not(.style-2) > li > a:hover {
    border-color: #333;
  }
  
  .social-icons > li > a:hover {
    border-color: rgba(255, 255, 255, 1);
  }
  
  .social-icons:not(.style-2).var2 > li > a {
    border: 1px solid rgba(51, 51, 51, 0.5);
    color: #333;
  }
  
  .social-icons:not(.style-2).var2 > li > a:hover {
    border-color: rgba(51, 51, 51, 1);
  }
  
  .social-icons.style-2 {
    margin: 0;
  }
  
  .social-icons.style-2 > li {
    padding: 0;
  }
  
  .social-icons.style-2 > li:not(:last-child) {
    margin-right: 30px;
  }
  
  .social-icons.style-2 > li > a {
    color: #333;
    display: block;
  }
  
  .share-wrap .share-title {
    float: left;
    font-weight: 300;
    color: #333;
    line-height: 45px;
  }
  
  .product.single .product-description .share-wrap .share-title {
    font-size: 14px;
  }
  
  .share-wrap .share-title:not(:last-child) {
    margin-right: 15px;
  }
  
  .share-wrap.var2 .share-title {
    float: none;
  }
  
  .social-icons.share > li > a {
    border-color: inherit !important;
  }
  
  .social-icons.share > li > a.sh-facebook {
    color: #3b5998;
  }
  
  .social-icons.share > li > a.sh-twitter {
    color: #1da1f2;
  }
  
  .social-icons.share > li > a.sh-google {
    color: #d73d32;
  }
  
  .social-icons.share > li > a.sh-pinterest {
    color: #bd081c;
  }
  
  .social-icons.share > li > a.sh-mail {
    color: #293e4a;
  }
  
  /* Our info */
  
  .our-info .info-item {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    color: #777;
  }
  
  .our-info:not(.vr-type) .info-item:not(:last-child) {
    margin-right: 18px;
  }
  
  .our-info .info-item > i {
    color: #e883ae;
    float: left;
    line-height: 26px;
    margin-right: 8px;
    padding-left: 1px;
  }
  
  .our-info .info-item a.link-text {
    text-transform: uppercase;
    color: #45b29d;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: normal;
  }
  
  .info-item a:not(.link-text) {
    color: #45b29d;
    font-weight: 300;
  }
  
  .our-info .info-item a:not(.btn):hover {
    text-decoration: underline;
  }
  
  .info-item .info-cat {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .info-item .info-title {
    padding-top: 13px;
  }
  
  .info-item .social-icons {
    margin-top: 13px;
  }
  
  .pre-header .info-item a:not(.link-text) {
    color: #777;
  }
  
  .our-info.style-2 .info-item,
  .our-info.style-2 .info-item a:not(.link-text) {
    color: #f1f1f1;
  }
  
  .our-info.style-2 .info-item i {
    color: #fff;
    opacity: 0.5;
  }
  
  .our-info.vr-type .info-item {
    display: block;
  }
  
  .our-info.vr-type .info-item:not(:last-child) {
    margin-bottom: 13px;
  }
  
  .our-info.vr-type.var2 .info-item:not(:last-child) {
    margin-bottom: 36px;
  }
  
  .our-info.style-3 .info-item a,
  .our-info.style-3 .info-item i {
    color: #fff;
  }
  
  .our-info.style-3 .info-item a:hover {
    text-decoration: underline;
  }
  
  .parallax-section .our-info .info-item {
    font-size: 14px;
  }
  
  /*----------- Blockquotes --------------*/
  
  .blockquote-holder:not(:last-child) {
    margin-bottom: 26px;
  }
  
  blockquote {
    color: #333;
    font-size: 18px;
    line-height: 30px;
  }
  
  blockquote .author {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 30px;
  }
  
  .blockquote-holder {
    position: relative;
    overflow: hidden;
    color: transparent;
    border: 2px solid #ab619a;
    border-image-source: linear-gradient(#e883ae, #ab619a);
    border-image-slice: 20;
  }
  
  .blockquote-holder blockquote {
    padding: 40px 40px;
  }
  
  .blockquote-holder.with-bg {
    background: #e883ae;
    border: none;
  }
  
  .blockquote-holder.with-bg blockquote,
  .blockquote-holder.with-bg blockquote .author {
    color: #fff;
  }
  
  .blockquote-holder blockquote p:not(:last-child) {
    margin-bottom: 13px;
  }
  
  /*----------- Dividers --------------*/
  
  hr {
    border-style: solid;
    border-color: #e4e4e4;
    margin: 11px 0;
  }
  
  hr.item-divider {
    border-width: 1px 0 0 0;
  }
  
  hr.item-divider-2 {
    border-width: 2px 0 0 0;
  }
  
  hr.item-divider-3 {
    border-width: 3px 0 0 0;
    width: 30px;
  }
  
  hr.style-2 {
    border-color: #333;
  }
  
  hr.style-3 {
    border-color: #e883ae;
  }
  
  hr.style-4 {
    border-color: #754b75;
  }
  
  hr.style-5 {
    border-color: #45b29d;
  }
  
  .icon-divider .svg {
    width: 150px;
    height: 40px;
  }
  
  .icon-divider .svg path {
    stroke: #e4e4e4;
  }
  
  .icon-divider.style-2 .svg path {
    stroke: #333;
  }
  
  .icon-divider.style-3 .svg path {
    stroke: #45b29d;
  }
  
  .icon-divider.style-4 .svg path {
    stroke: #e883ae;
  }
  
  .icon-divider.style-5 .svg path {
    stroke: #754b75;
  }
  
  /* Quantity */
  
  .quantity {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  
  .quantity button {
    position: absolute;
    text-align: center;
    line-height: 10px;
    width: 40px;
    font-size: 12px;
    background: transparent;
    color: #333;
  }
  
  .quantity .qty-minus,
  .quantity .qty-plus {
    right: 0;
    height: 50%;
    border-right: none;
  }
  
  .quantity .qty-minus {
    bottom: 0;
    border-bottom: none;
  }
  
  .quantity .qty-plus {
    border-top: none;
    top: 0;
    border-bottom: none;
  }
  
  .quantity input[type="text"] {
    width: 150px;
    padding: 0 40px 0 20px;
    border: none;
  }
  
  /* -----------------------------------
  
    13. Footer
  
  ------------------------------------- */
  
  
  #footer[class*="footer"] {
    position: relative;
    color: #fff;
    background-image: url("images/1920x390_bg1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  [class*="footer"] .main-footer {
    padding-top: 70px;
  }
  
  [class*="footer"] .main-footer:not(:last-child) {
    margin-bottom: 80px;
  }
  
  [class*="footer"] .widget {
    padding: 0;
    background: transparent;
  }
  
  [class*="footer"] .widget:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .footer:not(.style-3) .social-icons {
    justify-content: center;
  }
  
  .footer-widgets {
    padding: 60px 0 40px;
  }
  
  [class*="footer"] .widget .widget-title {
    color: #fff;
  }
  
  .footer:not(.style-3):not(.style-4) .widget .widget-title {
    text-align: center;
  }
  
  [class*="footer"] .widget p {
    color: #b4b7b9;
    font-size: 14px;
  }
  
  [class*="footer"] .widget p:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .copyright {
    font-size: 14px;
    text-align: center;
    padding: 39px 0;
    color: #b4b7b9;
    font-weight: 300;
    letter-spacing: 1px;
  }
  
  .copyright a {
    color: #fff;
  }
  
  .copyright p:not(:last-child) {
    margin-bottom: 0;
  }
  
  .copyright a:hover {
    text-decoration: underline;
  }
  
  [class*="footer"] .entry-box.entry-small.style-2 .entry .entry-title a {
    color: #fff;
  }
  
  #footer[class*="footer"].fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  
  [class*="footer"].fixed .main-footer:not(:last-child) {
    margin-bottom: 0;
  }
  
  /* ----------------- Footer style-2 ---------------- */
  
  [class*="footer"].style-2 .copyright {
    padding-top: 10px;
  }
  
  /* ----------------- Footer style-3 ---------------- */
  
  [class*="footer"].style-3 .widget .widget-title {
    text-align: left;
  }
  
  [class*="footer"].style-3 .widget:not(:last-child) {
    margin-bottom: 70px;
  }
  
  [class*="footer"].style-3 .main-footer {
    padding: 65px 0;
  }
  
  [class*="footer"].style-3 .copyright,
  [class*="footer"].style-4 .copyright {
    background: #293e4a;
    padding: 13px 0;
  }
  
  [class*="footer"].style-4 .widget:not(:last-child) {
    margin-bottom: 40px;
  }
  
  /* ----------------- Footer style-4 ---------------- */
  
  [class*="footer"].style-4 .main-footer {
    padding: 65px 0 100px;
  }
  
  [class*="footer"].style-4 .copyright {
    padding: 26px 0;
  }
  
  /* Half cols bg */
  
  .half-bg-col {
    position: relative;
  }
  
  .half-bg-col.var2 .row {
    margin: 0 -65px;
  }
  
  .half-bg-col.var2 .row > [class*="col-"] {
    padding: 0 65px;
  }
  
  .col-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-size: cover;
  }
  
  [class*="img-col"] {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
  }
  
  .img-col-left {
    left: 0;
  }
  
  .img-col-right {
    right: 0;
  }
  
  .half-col-wrap {
    max-width: 540px;
  }
  
  .col-bg.phone {
    max-width: 445px;
    max-height: 468px;
    right: 100px;
    left: auto;
    bottom: 0;
    top: auto;
    background-attachment: inherit;
  }
  
  .with-phone-img.half-bg-col {
    padding: 160px 0;
  }
  
  /* -----------------------------------
  
    12. Sidebar
  
  ------------------------------------- */
  
  #sidebar .widget:not(:last-child) {
    margin-bottom: 80px;
  }
  
  .widget:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .widget .widget-title:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .widget .widget-title {
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .widget > .widget-bg {
    padding: 26px;
    background: #f9f9f9;
  }
  
  .widget > .widget-bg.var2 {
    padding: 39px 26px;
  }
  
  #sidebar .widget > .widget-bg:not(:last-child) {
    margin-bottom: 26px;
  }
  
  /* ----------------- Team Widget ---------------- */
  
  .widget .team-holder .team-item {
    overflow: hidden;
  }
  
  .widget .team-holder .team-item .member-photo {
    float: left;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .widget .team-holder .team-item .member-photo:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
  
  .widget .team-holder .team-item .team-desc {
    overflow: hidden;
    padding-top: 26px;
  }
  
  .widget .team-item .member-name:not(:last-child) {
    margin-bottom: 0;
  }
  
  /* ----------------- Search Widget ---------------- */
  
  /* ----------------- Categories Widget ---------------- */
  
  /* ----------------- Tags Widget ---------------- */
  
  .tagcloud {
    margin: -10px -5px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
  }
  
  .tagcloud a {
    color: #333;
    font-size: 12px;
    line-height: 16px;
    padding: 6px 15px 5px;
    text-transform: uppercase;
    display: block;
    background: #fff;
    letter-spacing: 1px;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    margin: 10px 5px 0;
  }
  
  /* ----------------- Entry Widget ---------------- */
  
  .widget .event-box:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .widget .event-box .entry:not(:last-child) {
    padding-bottom: 26px;
 
    margin-bottom: 18px;
  }
  
  .widget .event-box .entry {
    position: relative;
    padding-left: 85px;
  }
  
  .widget .event-box .entry .entry-title {
    padding-top: 10px;
  }
  
  .widget .event-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 65px;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    background: #754b75;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
  }
  
  .widget .event-date span {
    display: block;
    font-size: 24px;
    font-weight: 300;
  }
  
  /* ----------------- Product Widget ---------------- */
  
  .widget .product-holder .product:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .widget .product .product-image:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
  
  .widget .product .product-image {
    float: left;
  }
  
  .widget .product .product-description {
    overflow: hidden;
  }
  
  .widget .product .product-description .product-name {
    line-height: 26px;
  }
  
  .widget .product .product-description .product-name:not(:last-child) {
    margin-bottom: 0;
  }
  
  .widget .product .product-price {
    font-size: 14px;
  }
  
  .widget .product .rating > li {
    font-size: 14px;
  }
  
  /*----------- Forms --------------*/
  
  /* Inputs & Textarea */
  
  input:not([type="submit"]),
  textarea {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    color: #777;
    border-radius: 7px;
    height: 45px;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 20px;
    border: 2px solid #f1f1f1;
    background: #fbfbfb;
    text-align: left;
  
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  
    -webkit-transition: box-shadow 0.35s ease, border-color 0.35s ease;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
  }
  
  textarea {
    display: block;
    height: initial;
    resize: none;
  }
  
  input:not([type="submit"]):focus,
  textarea:focus {
    border-color: #e883ae;
    -moz-appearance: none;
    outline: 0px none transparent;
  }
  
  /* Label & Legend */
  
  label,
  legend {
    font-size: 16px;
    font-weight: 300;
    color: #777;
    display: block;
  }
  
  legend {
    color: inherit;
    padding: 0 7px;
    margin-bottom: 0px;
  }
  
  label[for] {
    cursor: pointer;
  
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
  
  .required {
    position: relative;
    display: inline-block;
  }
  
  .required:after {
    content: "*";
    color: #e883ae;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 2px;
  }
  
  span.required:after {
    display: inline-block;
    position: relative;
    left: auto;
  }
  
  /* Checkbox & Radio */
  
  input[type="radio"],
  input[type="checkbox"] {
    display: none;
  }
  
  input[type="radio"] + label,
  input[type="checkbox"] + label {
    font-size: inherit;
    font-weight: 300;
     font-family: 'Poppins', sans-serif;
    text-transform: none;
    width: initial;
    padding-top: 7px;
    padding-bottom: 7px;
    float: none;
    margin-bottom: 0px;
    display: inline-block;
    color: #777;
  
    position: relative;
    padding-left: 45px;
  
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
  
  input[type="checkbox"] + label {
    padding-left: 45px;
  }
  
  input[type="radio"] + label:not(:last-child),
  input[type="checkbox"] + label:not(:last-child) {
    margin-right: 25px;
  }
  
  input[type="radio"] + label::before,
  input[type="checkbox"] + label::before,
  input[type="radio"] + label::after,
  input[type="checkbox"] + label::after {
    content: "";
    display: block;
    position: absolute;
  }
  
  input[type="radio"] + label::before,
  input[type="checkbox"] + label::before {
    background: #fbfbfb;
    border: 2px solid #f1f1f1;
    left: 0;
    top: 5px;
  }
  
  input[type="radio"] + label::before {
    border-radius: 50%;
    width: 32px;
    height: 32px;
  }
  
  input[type="checkbox"] + label::before {
    top: 5px;
    border-radius: 7px;
    width: 32px;
    height: 32px;
  }
  
  input[type="radio"] + label::after,
  input[type="checkbox"] + label::after {
    opacity: 0;
    visibility: hidden;
  }
  
  input[type="radio"] + label::after {
    left: 9px;
    top: 14px;
    border-radius: 50%;
    background-color: #333;
    width: 14px;
    height: 14px;
  }
  
  input[type="checkbox"] + label::after {
    border: 1px solid #333;
    width: 25px;
    height: 15px;
    left: 3px;
    top: 5px;
  
    clip: rect(6px, 18px, 15px, 0px);
  
    -webkit-transform: skew(10deg) rotate(-45deg);
    -ms-transform: skew(10deg) rotate(-45deg);
    transform: skew(10deg) rotate(-45deg);
  }
  
  input[type="radio"]:checked + label::after,
  input[type="checkbox"]:checked + label::after {
    opacity: 1;
    visibility: visible;
  }
  
  .form-style1 input:not(:last-child) {
    margin-bottom: 6px;
  }
  
  /*----------- Custom Select --------------*/
  
  .mad-custom-select {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
  }
  
  .mad-custom-select .mad-selected-option {
    cursor: pointer;
    position: relative;
    border: 2px solid #f1f1f1;
    border-radius: 7px;
    padding: 9px 50px 9px 20px;
    height: 45px;
    font-weight: 300;
    color: #777;
    overflow: hidden;
    background: #fbfbfb;
    z-index: 1;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
  
  .mad-custom-select.mad-opened .mad-selected-option {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
  }
  
  .mad-custom-select .mad-options-list {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    font-weight: 300;
    border: 2px solid #f1f1f1;
    border-top: none;
    visibility: hidden;
    cursor: pointer;
    background: #fbfbfb;
    z-index: 2;
    width: 100%;
    border-top: none;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
  
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }
  
  .mad-custom-select.mad-opened .mad-options-list {
    opacity: 1;
    visibility: visible;
  }
  
  .mad-custom-select .mad-options-list li {
    padding: 3px 20px;
    color: #777;
  
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .mad-custom-select .mad-options-list li:hover {
    background: #45b29d;
    color: #fff;
  }
  
  .mad-custom-select .mad-selected-option:before {
    content: "\e93a";
     font-family: 'Poppins', sans-serif;
    position: absolute;
    top: 0;
    right: 20px;
    line-height: 44px;
    color: #97999b;
    font-size: 18px;
  }
  
  .mad-custom-select.mad-opened .mad-selected-option:before {
    content: "\e939";
  }
  
  /* Fieldset */
  
  fieldset {
    border-radius: 8px;
    padding: 20px;
    border-color: #f1f1f1;
  }
  
  fieldset:not(:last-child) {
    margin-bottom: 15px;
  }
  
  /* Price Scale */
  
  .price-scale {
    padding: 0;
  }
  
  .price-scale:not(.distance) .range-values:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .ui-slider {
    height: 13px;
    position: relative;
    margin-top: 5px;
    border-radius: 3px;
    background-color: #f1f1f1;
  }
  
  .ui-slider-handle {
    width: 15px;
    height: 22px;
    top: 50%;
    border-radius: 3px;
    display: inline-block;
    margin-top: -12px;
    position: absolute;
    z-index: 1;
    background: #fff;
    margin-left: -3px;
  
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  
  .ui-slider-range {
    position: absolute;
    top: 0;
    bottom: 0;
    background: #e883ae;
    margin: 4px 0;
  }
  
  .ui-slider-handle:last-child {
    margin-right: -2px;
  }
  
  .range-values input[type="text"] {
    padding: 0;
    height: auto;
    border: none;
    background: transparent;
    font-size: 14px;
    max-width: 55px;
    width: 52px;
  }
  
  .price-scale .ui-slider:not(:last-child) {
    margin-bottom: 26px;
  }
  
  .price-scale .ui-slider-handle {
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    margin-left: -4px;
  
    background: #7436a5;
    background: -moz-linear-gradient(right left, #e883ae 0%, #915291 100%);
    background: -webkit-linear-gradient(right left, #e883ae 0%, #915291 100%);
    background: linear-gradient(to right, #e883ae 0%, #915291 100%);
  }
  
  .price-scale .ui-slider-handle:last-child {
    margin-left: -20px;
  }
  
  .price-scale .ui-slider-handle:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    margin-top: -4px;
    margin-left: -4px;
  }
  
  .range-values span,
  .range-values input[type="text"] {
    font-family: 'Poppins', sans-serif;
    color: #777;
  }
  
  .range-values input:focus {
    border: none;
    box-shadow: none;
  }
  
  .range-values input[type="text"] {
    display: inline-block;
  }
  
  /* Form variations */
  
  #contact-form {
    margin-bottom: -20px;
    position: relative;
  }
  
  .contact-form .contact-item:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .contact-form:not(.style-2) .contact-item {
    padding-left: 210px;
    position: relative;
  }
  
  .contact-form:not(.style-2) .contact-item label {
    position: absolute;
    left: 0;
    top: 10px;
  }
  
  .contact-form .contact-item .btn {
    margin-top: 16px;
  }
  
  .widget .contact-form.style-2 .contact-item label {
    font-size: 14px;
  }
  
  .contact-form.style-2 .contact-item label:not(:last-child) {
    margin-bottom: 7px;
  }
  
  .newsletter {
    position: relative;
  }
  
  .newsletter:not(.var2) input {
    padding-right: 100px;
    width: calc(100% - 50px);
  }
  
  .newsletter .btn {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .newsletter.style-2 input {
    background: #fff;
    border: 2px solid #f1f1f1;
  }
  
  .newsletter.var2 input {
    width: 100%;
  }
  
  .newsletter.var2 input:not(:last-child) {
    margin-bottom: 7px;
  }
  
  .widget .newsletter.var2 input:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .newsletter.var2 .btn {
    position: relative;
    width: 100%;
  }
  
  .search-form {
    position: relative;
  }
  
  .search-form > button {
    position: absolute;
    top: 0;
    right: 20px;
    background: none;
    font-size: 20px;
    color: #333;
    line-height: 50px;
  }
  
  .search-form input::-webkit-input-placeholder {
    font-size: 14px;
  }
  
  .search-form input::-moz-placeholder {
    font-size: 14px;
  }
  
  /* Breadcrumbs */
  
  .breadcrumbs-wrap{
    background: #f9f9f9;
    padding: 0;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
  }
  
  .breadcrumbs-wrap.no-title{
    padding: 13px 0 12px;
  }
  
  .breadcrumbs-wrap .page-title:not(:last-child){
    margin-bottom: 15px;
  }
  
  .breadcrumbs-wrap .breadcrumbs{
    color: #999;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
  }
  
  .breadcrumbs-wrap .breadcrumbs > li{
    display: inline-block;
  }
  
  .breadcrumbs-wrap .breadcrumbs > li > a{
    color: #333;
  }
  
  .breadcrumbs-wrap .breadcrumbs > li > a:hover{
    text-decoration: underline;
  }
  
  .breadcrumbs > li:not(:first-child):before{
    content: "/";
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
  
  /*----------- Isotope --------------*/
  
  .isotope:not(:last-child){
    margin-bottom: 47px;
  }
  
  .isotope{
    margin: -26px -15px 0;
  }
  
  .isotope > .item{
    padding: 26px 15px 0;
  }
  
  .isotope.three-collumn > .item{
    width: 33.3333%;
  }
  
  .isotope.two-collumn > .item{
    width: 50%;
  }
  
  .isotope.fourth-collumn > .item{
    width: 25%;
  }
  
  .team-holder.isotope{
    margin-top: -39px;
  }
  
  .team-holder.isotope > .item{
    padding-top: 39px;
  }
  
  #options{
    z-index: 9;
    position: relative;
  }
  
  #options:not(:last-child){
    margin-bottom: 32px;
  }
  
  .isotope-nav{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column; 
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 -5px -10px;
  }
  
  .isotope-nav > button{
    margin: 0 5px 10px;
    color: #333;
    background-color: #f1f1f1;
    padding: 9px 30px;
    font-weight: normal;
    letter-spacing: 0.8px;
    font-size: 14px;
    border-radius: 30px;
  }
  
  .isotope-nav > button.is-checked{
    color: #fff;
    background-color: #45b29d;
  }
  
  
  #app .card.bg-secondary.text-white label{
    color:#fff;
  }
  #app .bg-dark {
    background-color: #563d7c!important;
  }
  #app .bg-secondary {
    background-color: #563d7cdd!important;
  }
  
  .text-white.sidebar.collapse .nav-link {
    font-weight: 500;
    color: #fff;
  }
  .text-white.sidebar.collapse .nav-link.active{
    font-weight:normal;
    color:#ffe484
  }
  
  .navbar-dark .navbar-nav .nav-link:hover {
    color:#563d7c;
    background: #ffe484;
  }

    .nav-link {
    text-transform: uppercase;
}
  

  .nav-link:hover, .nav-link.active {
    color: #000000;
    white-space: nowrap;
    text-transform: uppercase;
    background-color: #e9e9e92c;
}
  
  .btn{
    /*background-color: transparent;*/
    border: 1px solid #ffe484;
    color:#ffe484;
    border-radius: .25rem;
  }
  .table-primary, .table-primary>td, .table-primary>th {
    background-color: #ffe484;
  }
  
  a.btn.btn-outline-success {
    color:#563d7c;
    border-color:#563d7c;
  }
  
  a.btn.btn-outline-success:hover {
    color: #fff;
    background-color: #563d7c;
    border-color: #563d7c;
  }
  
  
    /* ------------------ Shopping cart ---------------- */
  
    .shop-cart{
      position: relative;
    }
  
    .shop-cart .sc-cart-btn{
      background: transparent;
      font-size: 24px;
      position: relative;
    }
  
    .sc-invoker:hover,
    .sc-invoker.opened{
      color: #28abe3 !important;
    }
  
    .sc-cart-btn > span:not(.price){
      position: relative;
    }
  
    .sc-cart-btn > span:not(.price)::after{
      content: attr(data-amount);
      position: absolute;
      font-size: 11px;
      color: #7b8285;
      font-weight: bold;
      top: 0;
      left: 0;
      width: 100%;
      font-family: 'Poppins', sans-serif;
    }
  
    .shopping-cart{
      background: #293e4a;
      padding: 26px;
      margin-top: 15px;
      width: 360px;
      text-align: left;
      font-size: 14px;
      border-radius: 0;
    }
  
    .shopping-cart .product-image:not(:last-child),
    .shop-cart-form .product .product-image:not(:last-child){
      margin-bottom: 0;
    }
  
    .shopping-cart .product-name:not(:last-child),
    .shop-cart-form .product .product-name:not(:last-child){
      margin-bottom: 0;
    }
  
    .shopping-cart .product-color,
    .shop-cart-form .product .product-color{
      font-size: 13px;
      color: #7b8285;
    }
  
    .shopping-cart .products-holder{
      margin: 0;
    }
  
    .shopping-cart .products-holder .col{
      padding: 0;
    }
  
    .shopping-cart .products-holder .product-title a{
      color: #fff;
    }
  
    .shopping-cart .products-holder .product-title:hover a{
      text-decoration: underline;
    }
  
    .product-title:hover a{
      color: #45b29d;
    }
  
    .shopping-cart .products-holder .product-title:not(:last-child){
      margin-bottom: 0;
    }
  
    .shopping-cart .products-holder .product{
      overflow: hidden;
    }
  
    .shopping-cart .products-holder .product-image,
    .shop-cart-form .product .product-image{
      float: left;
      margin-right: 20px;
      max-width: 82px;
      overflow: hidden;
    }
  
    .shopping-cart .products-holder .product-description{
      overflow: hidden;
      padding: 0;
      padding-right: 30px;
    }
  
    .shopping-cart .product-name,
    .shop-cart-form .product .product-name{
      display: block;
    }
  
    .shopping-cart .product-name:hover,
    .shop-cart-form .product .product-name:hover{
      color: #28abe3 !important;
    }
  
    .shopping-cart .product-price,
    .shop-cart-form .product-price{
      color: #e883ae;
      font-size: 14px;
      font-weight: 300;
      line-height: 30px;
    }
  
    .shopping-cart .product .item-close,
    .shop-cart-form .item-close{
      position: absolute;
      right: 0;
      top: 0;
      margin-top: 2px;
       font-family: 'Poppins', sans-serif;
      background: none;
      font-size: 18px;
      z-index: 2;
    }
  
    .shopping-cart .product .item-close{
      color: #fff;
    }
  
    .shopping-cart .product .item-close:before,
    .shop-cart-form .item-close:before{
      content: "\e95a";
    }
  
    .shopping-cart .products-holder{
      margin: 0;
    }
  
    .shopping-cart .products-holder .product{
      box-shadow: none;
      background: transparent;
      width: 100%;
    }
  
    .shopping-cart .products-holder .product:not(:last-child){
      margin-bottom: 26px;
    }
  
    .sc-footer .subtotal{
      padding: 30px 0 0;
    }
  
    .sc-footer .subtotal .total-price{
      padding-left: 5px;
      letter-spacing: 0.5px;
      font-weight: 500;
      color: #e883ae;
    }
  
    .vr-btns-set > *:not(:last-child){
      margin-right: 5px;
    }
  
    .shopping-cart .subtotal:not(:last-child){
      margin-bottom: 30px;
    }
  
    .sc-footer .subtotal{
      color: #fff;
      font-size: 16px;
      font-weight: 300;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
  
    .shopping-cart-form:not(:last-child){
      margin-bottom: 40px;
    }
  
    .shop-cart-form tr td{
      vertical-align: middle;
    }
  
    .shop-cart-form[class*="table-type"] table tr > td{
      padding: 26px;
      vertical-align: top;
    }
  
    .shop-cart-form[class*="table-type"] table tr:last-child > td{
      padding: 13px 26px;
    }
  
    .shop-cart-form tr td .item-close{
      position: relative;
      margin-top: 0;
      display: inline-block;
      margin-right: 30px;
    }
  
    .shop-cart-form tr th.product-col{
      width: 450px;
    }
  
    .shop-cart-form tr th.price-col{
      width: 100px;
    }
  
    .shop-cart-form tr th.qty-col{
      width: 250px;
    }
  
    .shop-cart-form tr th.total-col{
      width: 250px;
    }
  
    .shop-cart-form tr td.total-price{
      color: #333;
    }
  
    .shop-cart-form .product{
      display: inline-block;
    }
  
    .shop-cart-form .product-image,
    .shop-cart-form .product-description{
      display: inline-block;
      vertical-align: top;
    }
  
    .shop-cart-form.order-type tr th.total-col{
      width: 40%;
    }
  
    .shop-cart-form.order-type tr td.order-total{
      background: #f1f1f1!important;
      color: #333;
      font-size: 16px;
      position: relative;
      border: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 300;
    }
  
    .shop-cart-form .product .product-description{
      overflow: hidden;
    }
  
    .recent-order tr th.order-number{
      width: 150px;
    }
  
    .product.single{
      box-shadow: none;
      background: transparent;
    }
  
    .product.single .product-description:not(:last-child){
      margin-bottom: 60px;
    }
  
    .product.single .product-description{
      padding: 0;
      color: #5f6366;
    }
  
    .product.single .product-name:not(:last-child){
      margin-bottom: 17px;
    }
  
    .product.single .product-price{
      font-size: 24px;
    }
  
    .image-preview:not(:last-child){
      margin-bottom: 20px;
    }
  
    .product.single .product-excerpt{
      color: inherit;
    }
  
    .product.single .product-info:not(:last-child){
      margin-bottom: 15px;
    }
  
    .product.single .product-characteristics{
      margin: -10px -7px 0;
    }
  
    .product.single .product-characteristics:not(:last-child){
      margin-bottom: 30px;
    }
  
    .product.single .product-actions > *,
    .product.single .product-characteristics > li > *{
      display: inline-block;
      vertical-align: middle;
      margin: 10px 7px 0;
    }
  
    .product.single .product-characteristics > li:not(:last-child){
      margin-bottom: 8px;
    }
  
    .product.single .pricing-area .rating > li{
      font-size: 20px;
    }
  
    .product.single .pricing-area > span{
      padding-left: 10px;
      color: #777;
    }
  
    .product.single .pricing-area:not(:last-child),
    .product.single .product-price{
      margin-bottom: 26px;
    }
  
    .product.single .pricing-area > span a.link-text{
      font-size: 14px;
      font-weight: 300;
    }
  
    .product-characteristics .selected-option{
      min-width: 200px;
       font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 500;
    }
  
    .product-characteristics .selected-option::after{
      border-top-color: #c5c5c5;
    }
  
    .product.single .product-characteristics .name{
       font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 500;
      line-height: 22px;
      color: #2c3035;
      text-transform: uppercase;
      min-width: 60px;
    }
  
    .product.single .add-to-cart-form:not(:last-child),
    .product.single .product-actions:not(:last-child){
      margin-bottom: 30px;
    }
  
    .product.single .product-meta{
      color: #777;
      font-size: 14px;
      font-weight: 300;
    }
  
    .product.single .product-meta > li > span{
      color: #333;
    }
  
    .product.single .product-meta:not(:last-child){
      margin-bottom: 30px;
    }
  
    .product.single .product-meta a{
      color: #45b29d; 
    }
  
    .product.single .product-meta a:hover{
      text-decoration: underline;
    }
  
    .product.single .product-meta > li:not(:last-child){
      margin-bottom: 5px;
    }
  
    .product.single .product-actions{
      margin: -10px -10px 0;
    }
  
    .product.single .product-actions > *{
      margin: 10px 10px 0;
    }
  
    .image-preview{
      position: relative;
      display: inline-block;
      overflow: hidden;
    }
  
    .image-preview .label{
      top: 40px;
      z-index: 5;
    }
  
    .open-modal{
      position: absolute;
      right: 20px;
      bottom: 20px;
      z-index: 5;
      font-size: 20px;
      color: #2a2c32;
    }
  
    .zoomContainer{
      z-index: 4 !important;
    }
  
    .product-thumbs.owl-carousel{
      padding: 0 30px;
    }
  
    .product-thumbs.owl-carousel .owl-item img{
      opacity: 0.5;
      width: auto;
    }
  
    .product-thumbs .active:not(.owl-item) img{
      opacity: 1;
    }
  
    .product-thumbs .owl-nav > *{
      font-size: 30px;
    }
  
    .product-thumbs.owl-carousel .owl-nav .owl-prev{
      left: -5px;
    }
  
    .product-thumbs.owl-carousel .owl-nav .owl-next{
      right: -5px;
    }
  
    .share .title{
      color: #7b8285;
      margin-right: 10px;
    }
  
    .share ul{
      display: inline-block;
    }
  
    .hidden-section:not(:last-child){
      margin-bottom: 13px;
    }
  
    .hidden-section .account-action{
      font-size: 18px;
      font-weight: 500;
      color: #333;
    }
  
      .hidden-section .account-action > a{
        color: #45b29d;
      }
  
      .hidden-section .account-action > a:hover{
        color: #333;
      }
  
      .hidden-section .login-form-footer{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
      }
  
    .hidden-section .content{
      padding: 20px 0 15px;
    }
  
    .checkbox-title input[type="checkbox"] + label{
      font-size: 24px;
      line-height: 30px;
       font-family: 'Poppins', sans-serif;
      color: #333;
    }
  
    .checkbox-title input[type="radio"] + label::before, 
    .checkbox-title input[type="checkbox"] + label::before{
        left: auto;
        right: 0;
        top: 50%;
        margin-top: -20px;
    }
  
    .checkbox-title input[type="checkbox"] + label::after{
      left: auto;
      right: 4px;
      top: 50%;
      margin-top: -19px;
    }
  
    .checkbox-title input[type="checkbox"] + label{
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 50px;
    }
  
    .checkbox-title:not(:last-child){
      margin-bottom: 13px;
    }
  
    .payment-option li:not(:last-child){
      margin-bottom: 26px;
    }
  
    .payment-option input[type="radio"] + label{
      font-weight: 500;
      color: #333;
      font-size: 18px;
    }
  
    .payment-desc{
      padding-left: 45px;
    }
  
    .payment-option p{
      color: #777;
    }
  
    .payment-option .input-wrapper:not(:last-child){
      margin-bottom: 7px;
    }
  
    .payment-option > li:last-child [class*="btn"]:only-child{
      margin-top: 26px;
    }  
  
    /*----------- Tables --------------*/
  
    table{
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
    }
  
    [class*="table-type"]{
      border-radius: 20px 20px 0 0;
      overflow: hidden;
    }
  
    .table-type-2{border-radius: 20px 0 0 20px;}
  
    [class*="table-type"] table tr > td{
      font-weight: 300;
      font-size: 14px;
    }
  
    [class*="table-type"] table tr > td,
    [class*="table-type"] table tr > th{
      padding: 13px 25px;
      text-align: left;
    }
  
    [class*="table-type"] table tr > th,
    [class*="table-type"] table tr.bg-cell > td{
      font-size: 14px;
      font-weight: 300;
    }
  
    [class*="table-type"] table tr.bg-cell > td,
    [class*="table-type"] table tr.bg-cell > th{
      font-weight: 500;
      color: #333;
      text-transform: uppercase;
      font-size: 16px;
    }
  
    [class*="table-type"] table tr > td.tprice{
      color: #e883ae;
    }
  
    .table-type-1 table tr > th:nth-child(2){
      width: 40%;
    }
  
    .table-type-1:not(.responsive-table) table tr:nth-child(2n+1) > td,
    .table-type-1.responsive-table table tr:nth-child(2n) > td{
      background: #fbfbfb;
    }
  
    .table-type-2 table tr.bg-cell td,
    .table-type-2 table tr.bg-cell th{
      background: #fbfbfb;
    }
  
    .table-type-1 table tr:first-child > th,
    .table-type-2 table tr > th{
      font-size: 16px;
      letter-spacing: 0.5px;
      color: #333;
      background: #f1f1f1;
      text-transform: uppercase;
    }
  
    .table-type-2 table tr > th{
      width: 40%;
    }
  
    .table-type-2 table tr:nth-child(2n) > td{
      background: #fbfbfb;
    }
  
    .table-type-2 table tr > .fw-medium{
      font-weight: 500;
      font-size: 16px;
    }  
    
  .parallax-section,
  .media-holder{
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover; 
    -moz-background-size: cover; 
    -o-background-size: cover; 
    background-size: cover; 
  }
  
  .parallax-section{
    background-attachment: fixed;
  }
  
  .parallax-section .our-info .info-item{
    font-size: 14px;
  }
  
  .page-section-bg.parallax-section .testimonial .author-position{
    color: #999;
  }
  
  .page-section-bg.parallax-section .testimonial-holder.style-3 .testimonial .author-position{
    color: #cfcfcf;
  }
  
  .instagram-feed.style-2 {
    margin: 0;
  }
  
  @media only screen and (max-width: 1600px)
  {
    .instagram-feed.style-2 > * {
      width: 33.3333%;
    } 

    .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select
     {
        width: 13rem !important;
    }
  
  .instagram-feed .insta-title {
    padding: 60px 40px;
    background: #f9f9f9;
  }
  .insta-title > i {
    font-size: 24px;
    margin-bottom: 13px;
    display: block;
  }
  
  .header .top-header {
    padding: 0 167px;
  }
  
  .instagram-feed.style-2 > * {
    width: 16.6666%;
    /*padding: 0;*/
  }

  .margintop{
  margin-top: 0px !important;
  }
}
    /*----------- Pagination --------------*/
  
    .pagination{
      text-align: center;
      margin: -2px -2px 0;
      position: relative;
      display: inline-block;
      font-size: 0;
    }
  
    .pagination > li{
      display: inline-block;
      vertical-align: middle;
      margin: 2px;
    }
  
    .pagination > li > a{
      display: block;
      width: 36px;
      height: 36px;
      font-weight: 300;
      line-height: 36px;
      text-align: center;
      background: transparent;
      color: #333;
      font-size: 18px;
      border-radius: 50%;
    }
  
    .pagination > li.active > a,
    .pagination > li:hover > a{
      color: #fff;
      background: #45b29d;
    }
  
    .prev-page::before,
    .next-page::before{
       font-family: 'Poppins', sans-serif;
      font-size: 26px;
    }
  
    .prev-page,
    .next-page{
      color: #333!important;
      background: none!important;
      box-shadow: none!important;
    }
  
    .prev-page::before{
      content: '\e964';
    }
  
    .next-page::before{
      content: '\e965';
    }
  
    .page-nav{
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-align: center;
      align-items: center;
      margin: 0 -15px -15px;
    }
  
      .page-nav > *{
        padding: 0 15px 30px;
      }
  
    .page-nav .btn-wrap{
      margin: 0 -2.5px -5px;
    }
  
    .page-nav .btn-wrap > *{
      margin: 0 2.5px 5px;
    }

    .navbar-collapse.show {
            margin-top: 88px;
    }
  
    .mini-cart .mini_cart_item{
      font-size: 80%;
    }

    .woocommerce-Price-amount .amount{
      font-size: 50%;
    }
    .woocommerce-mini-cart__buttons .buttons{
      margin-left: 5px;
    }
.cart-header a {
   font-size: 0.7rem; /* Ejemplo con rem */
   /* margin-right: .1rem; */
}

 .woocommerce-columns--addresses {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .woocommerce-columns--addresses .woocommerce-column {
    width: calc(50% - 15px); /* 15px es la mitad del gap */
    min-width: 320px;
    box-sizing: border-box;
  }
/*==================================RESPONSIVE LAYOUTS===============================================*/

@media only screen and (min-width: 1680px){

	.container.wide-style{
		max-width: 1390px; 
	}

	.call-out:not(.var2) .container{
		max-width: 1280px;
	}

	.container.wide{
		max-width: 1480px;
	}

	.container.wide2{
		max-width: 1600px;
	}

	.container.wide3{
		max-width: 1280px;
	}

  .container{
    max-width: 1900px;
  }  
}

@media only screen and (max-width: 1600px){

	.header .top-header{
	  	padding: 0 30px !important;
	}

	.main-navigation > ul{
		margin: 0 -15px;
	}

	.main-navigation > ul > li{
		padding: 0 15px;
	}

	.header .menu-wrap > *{
		margin: 0 5px;
	}

	.header .top-header .menu-holder .menu-wrap > *{
		margin: 0 5px;
	}

	.instagram-feed.style-2 > *{
		width: 33.3333% !important;
	}

	#footer[class*="footer"]{
	  -webkit-background-size: cover;
	  background-size: cover;
	}

  body {
    padding: 0px;
    margin-top: 100px;
}

h1:not(:last-child) {
    margin-top: 100px !important;
}

}

@media only screen and (max-width: 1599px) {
        h1:not(:last-child) {
            margin-top: 80px !important;
        }
}

@media only screen and (min-width: 1280px){

	#header.clone-fixed.slideDown{
	    top: 0!important;
	}

	.header.style-4.sticky-header.clone-fixed .pre-header{
		display: none;
	}

	[class*="footer"].style-4 .main-footer .row > .col-2{
		width: 20%;
		max-width: 20%;
		flex: none;
	}

	[class*="footer"].style-4 .main-footer .row > .col-4{
		width: 30%;
		max-width: 30%;
		flex: none;
	}

  h1:not(:last-child) {
    margin-top: 80px !important;
}

 .margintop{
  margin-top: 0px !important;
  }

}

@media only screen and (max-width: 1280px){

   .logo-wrap {
    margin-right: 13rem;
  }
  .main-navigation > ul > li {
    padding: 0 0;
  }

	#header.sticky-header.clone-fixed{
	    display: none !important;
	}

	.header .top-header{
	  	padding: 0;
	}

	p br{
		display: none;
	}

	.header .top-header{
	  	padding: 0 20px;
	}

	.header:not(.style-3):not(.style-4) .main-navigation > ul{
		margin: 0 -10px;
	}

	.header:not(.style-4) .main-navigation > ul > li{
		padding: 0 0px;
	}

	.header:not(.style-4) .header .menu-wrap > *{
		margin: 0 0px;
	}

	.header:not(.style-3) .main-navigation > ul > li > a{
		font-size: .7rem;
	}

	[class*="footer"].style-4 .main-footer .row > .col-2{
		width: 50%;
		max-width: 50%;
		flex: none;
	}

	[class*="footer"].style-4 .main-footer .row > .col-4{
		width: 50%;
		max-width: 50%;
		flex: none;
	}

	[class*="footer"].style-4 .main-footer .row > [class*="col-"]:not(:last-child){
		margin-bottom: 45px;
	}

	[class*="page-section"],
	[class*="page-section"].type3,
	[class*="page-section"].type4,
	.page-content-wrap,
	.call-out.size-2{
		padding: 60px 0;
	}

	.carousel-type-2:not(.var2) .owl-nav > .owl-prev{
		left: -50px;
	}

	.carousel-type-2:not(.var2) .owl-nav > .owl-next{
		right: -50px;
	}

  .cart-text{
    font-size: .7rem !important;
  }

    h1:not(:last-child) {
    margin-top: 8px !important;
}

}

@media (max-width: 1280px) and (min-width: 992px){

  .main-navigation > ul > li > a {
    font-size: 1rem;
  }

    .navbar-light .navbar-nav .nav-link {
    font-size: .6rem !important; /* Ajusta el tamaño del texto */
}

	.tribe-events-calendar tr td:nth-child(6) .tribe-events-category-tech-events .tribe-events-tooltip, 
	.tribe-events-calendar tr td:nth-child(7) .tribe-events-category-tech-events .tribe-events-tooltip {
	    left: auto;
	    right: 0;
	}

	.tribe-events-calendar tr td:nth-child(6) .tribe-events-category-tech-events .tribe-events-tooltip:before, 
	.tribe-events-calendar tr td:nth-child(7) .tribe-events-category-tech-events .tribe-events-tooltip:before {
	    left: auto;
	    right: 30px;
	}


}

@media only screen and (max-width: 1199px){
	
	.owl-carousel .owl-item img{
		width: 100%;
	}

	.info-boxes.style-2.item-col-4 > *{
		width: 50%;
	}

	.icons-box.style-2 .icons-wrap .icons-item{
		padding: 13px 26px;
	}

	.header.style-3 .top-header .flex-row{
		display: block;
		text-align: center;
	}

	.header.style-3 .top-header .menu-wrap{
		justify-content: center;
	}

	.header.style-3 .top-header .logo-wrap:not(:last-child){
		margin-bottom: 13px;
	}

  .logo-wrap{
    margin-top: 80px;
  }

	.wrapper-container.wide{
		padding: 30px;
	}

	/* .header.style-4 .top-header{
		padding: 20px 30px;
	} */

	.header.style-4 .pre-header{
		padding: 0 30px;
	}

	.footer.style-4 .copyright .flex-row{
		display: block;
		text-align: center;
	}

	.footer.style-4 .copyright p:not(:last-child){
		margin-bottom: 13px;
	}
  .fixed-top {
    top: -87px !important;
  }

}

@media (max-width: 1024px) and (min-width: 767px){
	
	.parallax-section,
    .call-out,
    .media-holder,
    .col-bg{
    	background-attachment: scroll!important;
    }

    body {
        padding: 0px;
        margin-top: 160px !important;
    }

      .fixed-top {
    top: -83px !important;
  }

   .woocommerce-columns--addresses {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .woocommerce-columns--addresses .woocommerce-column {
    width: calc(50% - 15px); /* 15px es la mitad del gap */
    min-width: 320px;
    box-sizing: border-box;
  }

   .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select
     {
        width: 16rem !important;
    }

}

@media only screen and (max-width: 992px){

	/*	Mobile Menu
	/* -------------------------------------------------- */

	#header.header.header-main .menu-holder{
		position: relative;
		background-color: rgba(0,0,0,.8);
	    -webkit-backface-visibility: hidden;
	    backface-visibility: hidden;
	}

	/*.main-navigation{display: none !important;}*/

	/*.responsive-nav-button { display: inline-block !important; }*/

	.mobile-advanced {
		position: absolute;
		top: 0;
		right: -100%;
		z-index: 995;
		overflow: hidden;
		display: block;
		width: 100%;
		height: 100%;
		background-color: #fff;
		pointer-events: none;
		/*-webkit-backface-visibility: hidden;*/
		-webkit-transform-origin: 0 0;
				transform-origin: 0 0;
		-webkit-transition: -webkit-transform .35s ease;
				transition: transform .35s ease;
		-webkit-transform: translateX(0);
				transform: translateX(0);
	}

	#wrapper.active .mobile-advanced {
		pointer-events: auto;

		-webkit-transform: translate(-100%, 0);
				transform: translate(-100%, 0);
	}

	.no-cssanimations.no-csstransforms3d #wrapper.active .mobile-advanced {
		right: 0;
	}

		.mobile-advanced > ul { 
			padding-top: 80px; 
		}

			.mobile-advanced li {
				display: block;
				list-style: none;
			}

				.mobile-advanced li > span {
					display: block;
					padding: 10px 15px;
					color: #333;
					font-weight: 400;
				}

				.mobile-advanced li a,
				.sub-menu-wrap.mega-menu ul li a{
					display: block;
					padding: 10px 20px;
					line-height: 1.15em;
				}

				.mobile-advanced > ul > li.current > a,
				.mobile-advanced > ul > li:hover > a{
					background-color: #45b29d;
				}

				.mobile-advanced ul ul li.current > a,
				.sub-menu-wrap > ul > li:hover > a,
				.sub-menu-wrap.mega-menu ul li:hover a,
				.sub-menu-wrap.mega-menu ul li.current a{
					color: #45b29d;
					border-bottom: none;
				}

				.mobile-advanced .sub-menu-wrap ul li:not(:last-child){
					margin-bottom: 0;
				}

				.mobile-advanced .sub-menu-wrap.mega-menu .col:not(:first-child) .mega-title{
					padding-top: 13px;
				}

				.mobile-advanced > ul > li > a{
					background-color: #333;
					color: #fff;
					font-size: 16px;
				    text-transform: uppercase;
				    border-bottom: none;
				}

				.mobile-advanced ul ul li > a {
					padding-left: 30px;
					display: block;
					border-bottom: none;
				}

				.mobile-advanced ul ul li > a:before{
					display: inline-block;
				    vertical-align: middle;
				    position: relative;
				    margin-right: 5px;
				    font-size: 14px;
				     font-family: 'Poppins', sans-serif;
				    content: "\f105";
				}

				.mobile-advanced ul ul ul li > a{padding-left: 50px;}

		#advanced-menu-hide{
			position: fixed;
			top: 20px;
			right: 30px;
			z-index: 999;
			display: block;
			text-align: center;
			color: #222;

			-webkit-backface-visibility: hidden;
					backface-visibility: hidden;
			-webkit-border-radius: 3px;
					border-radius: 3px;
			
		}

		.logged-in.admin-bar #advanced-menu-hide{top: 55px;}

		#wrapper.active #advanced-menu-hide{
			visibility: visible;
			pointer-events: auto;

			-webkit-transform: translateX(0);
					transform: translateX(0);
		}

		#advanced-menu-hide:after{
			content: '\e92a';
		    vertical-align: middle;
		    text-align: center;
		    font-size: 30px;
		     font-family: 'Poppins', sans-serif;
		    line-height: 38px;
		}

		#advanced-menu-hide:hover{color: #45b29d;}

		.mobile-advanced > ul > li .sub-menu-wrap,
		.mobile-advanced > ul > li .sub-menu-wrap.sub-menu-inner,
		.mobile-advanced > ul > li.has-megamenu .sub-menu-wrap{
			position: relative;
			width: 100%;
			opacity: 1;
			visibility: visible;
			left: 0;
			right: 0;
			border: none;
			padding: 0;
			margin: 0;

			-webkit-transform: none;
			-ms-transform: none;
			-o-transform: none;
			transform: none;
		}

		.mobile-advanced > ul > li .sub-menu-wrap:not(.sub-menu-inner){
			padding: 13px 0;
		}

		.mobile-advanced .sub-menu-wrap.mega-menu .row{
			display: block;
		}

		.sub-menu-wrap ul li:hover{background: transparent!important;}

		.sub-menu-wrap ul li,
		.sub-menu-wrap:not(.mega-menu) ul li{
			padding: 0;
		}

		.sub-menu-wrap ul li.current-menu-item{background: none!important;}

	.toggle-menu { display: block; }

	/* ------------------------------------------------------------------------------ */

	/* tables change*/

	.responsive-table{
		border: 1px solid #eaeaea;
		overflow: hidden;
		border-radius: 20px;
	}
 
	.responsive-table,
	.responsive-table tbody,
	.responsive-table thead,
	.responsive-table tfoot,
	.responsive-table th,
	.responsive-table tr,
	.responsive-table td{
		display:block;
	}

	.tribe-events-calendar tr:first-child td:first-child{
		border-top: 1px solid #eaeaea;
	}

	.tribe-events-calendar tr td .tribe-events-daynum:last-child{
		border-bottom: 0;
	}

	.table-type-2.compare-table.responsive-table table tr > th{
		width: 100%;
	}

	.table-type-2.compare-table table tr.title > th{
		padding: 10px 15px;
	}

	.responsive-table tr th{
		position:absolute;
		top:-9999px;
		left:-9999px;
	}

	.responsive-table td{
		position:relative;
		padding-left:53% !important;
	}

	.shop-cart-form tr td .item-close{
		margin-right: 0;
	}

	.shop-cart-form tr th.product-col{
		width: auto;
	}

	.responsive-table td:not([colspan]):not(.close-product):after{
		content:"";
		display:block;
		position:absolute;
		left:50%;
		top:0;
		height:100%;
	}

	.responsive-table tr:last-child td[colspan]:last-child,
	.responsive-table tr:last-child td:not(:first-child){
		border-top: none!important;
	}

	.responsive-table td[colspan],
	.responsive-table td.close-product{
		width:100%;
		text-align:center;
		padding: 10px !important;
	}

	.responsive-table td.close-product{
		text-align: left;
	}

	.responsive-table td[colspan]:before,
	.responsive-table td.close-product:before{
		display: none;
	}

	.responsive-table.table_type_1.var5 td[colspan] table tr td{
		padding: 0!important;
	}

	.responsive-table.table_type_1.var5 td[colspan] table tr td .button,
	.responsive-table.table_type_1.var5 td[colspan] table tr td input{
		margin-top: 10px;
	}

	.shop-cart-form.responsive-table td:not(.close-product),
	.shop-cart-form.responsive-table .product,
	.recent-order.responsive-table tr td{
		padding-left: 52%!important;
	}

	.recent-order.responsive-table tr td:not(:last-child){
		border-bottom: none;
	}

	.shop-cart-form.responsive-table .product .item-close{
		left: 15px;
	}

	.shop-cart-form.responsive-table td[colspan]{
		padding-left: 10px!important;
	}

	.table_type_1.var5 tr:last-child td table tr td:last-child{
		text-align: center;
	}

	.responsive-table td[colspan]:after{
		display: none;
	}

	.responsive-table.table_type_1.var5 td[colspan] table tr td{
		width: 100%;
	}

	.responsive-table td[colspan] table tr td:after{
		display: none;
	}

	.responsive-table td[colspan] table tr td:before{
		display: none;
	}

	.responsive-table td[colspan] .align-right{
		text-align: center;
	}

	.responsive-table td:before{
		content:attr(data-title);
		text-transform: uppercase;
		color: #000000;
		position:absolute;
		top:50%;
		left:15px;
		width:45%;
		padding-right:10px;
		-webkit-transform:translateY(-50%) translateZ(0);
		-moz-transform:translateY(-50%);
		-o-transform:translateY(-50%);
		-ms-transform:translateY(-50%);
		transform:translateY(-50%);
	}

	.shop-cart-form[class*="table-type"] table tr > td{
		padding: 13px;
	}

	.flex-row [class*="col-md"]:not([class*="col-sm"]):not([class*="col-xs"]){
		width: 100%;
	}
	
  [class*="col-md-12"]:not(.col-no-space):not(:last-child),
	[class*="col-md-"].col-sm-12:not(.col-no-space):not(:last-child){
	    margin-bottom: 45px;
	}

	.footer:not(.style-4) .logo{
	    text-align: center;
	}

	.instagram-feed .inta-title{
		padding: 40px;
	}

	.tribe-events-bar [class*="col-"]:not(:last-child) {
	    margin-bottom: 13px!important;
	}

	[class*="img-col"]{
		width: 100%;
	}

	.img-col-right{
		z-index: -1;
	}

	.with-phone-img.half-bg-col{
		padding: 90px 0;
	}

	.col-bg.phone{
		right: auto;
		left: 30px;
		max-width: 380px;
		max-height: 400px;
	}

	.popup .popup-inner{
		width: 90%!important;
	}

	.popup .close-popup{
		margin-left: 5px;
	}

	.icons-box.style-2.item-col-3 > *{
		width: 100%;
	}

	.services.with-offset{
		padding: 0;
	}

	.testimonial-holder.style-2 .testimonial:not(.blockquote-holder) blockquote{
		padding-left: 20px;
		padding-right: 20px;
	}

	.challenges.item-col-3 > *{
		width: 50%;
	}

	.footer .main-footer .row [class*="col-md-6"]:not(:last-child){
		margin-bottom: 45px;
	}

	.footer.style-3 .copyright .flex-row{
	  display: block;
	  text-align: center;
	}

	.searchform-wrap .vc-child{
		width: 70%;
	}

	[class*="page-section"].half-bg-col.var2{
		padding-top: 0;
		padding-bottom: 70px;
	}

	.half-bg-col.var2 [class*="img-col"] {
	    padding-bottom: 50%;
	    margin-bottom: 45px;
	    position: relative;
	    width: 100%;
	}

	.challenges.masonry.item-col-2 > *{
		width: 100%;
	}

	.entry-box.isotope.three-collumn > .item{
		width: 50%;
	}

	.header.style-4.var2 .pre-header .flex-row{
		margin: 0 -90px;
		display: block;
		text-align: center;
	}

	.header.style-4.var2 .pre-header .flex-row > *{
		padding: 0 90px;
	}

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

	.header.style-4.var2 .top-header{
		padding: 39px 30px;
	}

	.header.style-4.var2 .top-header .flex-row{
		justify-content: flex-end!important;
	}

	.header.style-4.var2 .logo{
		left: 15px;
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}

	.header.style-4.var2 .top-header{
		padding: 26px 15px;
	}

	.popup form{
		max-width: 60%;
	}

	.isotope.three-collumn > .item{
		width: 50%;
	}

	.team-item.team-single .member-photo:not(:last-child){
		float: none;
		margin-right: 0;
		margin-bottom: 26px;
	}

	.pricing-tables-holder.item-col-3 > *{
		width: 50%;
	}

	.map-section .our-info.vr-type .info-item{
		max-width: 100%;
	}

	.entry-box.item-col-3 > *{
		width: 50%;
	}

	.call-out.var2 .align-right,
	.call-out.var2{
		text-align: center;
	}

	.entry-box.list-type:not(.entry-small) .entry .thumbnail-attachment img{
		width: 100%;
	}

	.tribe-events-calendar tr td .tribe-events-category-tech-events .tribe-events-tooltip{
	    left: auto;
	    right: 0;
	}

	.tribe-events-calendar tr td .tribe-events-category-tech-events .tribe-events-tooltip:before{
	    left: auto;
	    right: 30px;
	}

	.isotope.fourth-collumn > .item{
		width: 50%;
	}

	.call-out .align-right,
	.call-out{
		text-align: center;
	}

	.call-out.wide{
		margin: 0 20px;
	}

	.counter-wrap.item-col-4 > *{
		width: 50%;
	}

	[class*="table-type"] table tr > td, 
	[class*="table-type"] table tr > th{
		padding: 13px;
	}

	.table-type-1 table tr:first-child > th, 
	.table-type-2 table tr > th{
		font-size: 14px;
	}

	.zoomContainer{
		display: none;
	}

	.products-holder.item-col-4 > .product{
		width: 50%;
	}

	.rev-slider .section-pre-title:not(.style-2):before{
	  width: 20px;
	}

	.img-bg{
		-webkit-background-size: 50%;
		background-size: 50%;
	}

	.media-holder.full-scr{
		height: auto!important;
		padding-bottom: 70%;
	}

	.media-holder.about-us{
		height: 0;
		padding-bottom: 40%;
	}

	.instagram-feed .insta-title{
		padding: 50px 40px;
	}

}

@media (min-width: 992px){
	
	.footer:not(.style-4) .logo{
	    position: absolute;
	    top: 0;
	    left: 50%;
	    -webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	    -o-transform: translateX(-50%);
	    transform: translateX(-50%);
	}

	.instagram-feed.insta-small .nv-instafeed-item{
	    max-width: 130px;
	}

	.single-post #googleMap{
	    min-height: 100%;
	    padding-bottom: 133%;
	}

}

/*@media (max-width:768px){*/
@media (max-width:768px){

	.main-navigation{display: none !important;}
	.responsive-nav-button { display: inline-block !important; }
	
	.flex-row [class*="col-sm-"]:not([class*="col-xs"]){
		width: 100%;
	}
	
	[class*="col-sm-"]:not(:last-child):not(.col-no-space){
		margin-bottom: 45px;
	}

	.flex-wrap-reverse [class*="col-sm-"]:not(:last-child):not(.col-no-space){
		margin-bottom: 0;
		margin-top: 45px;
	}

	.row.row-2{
		margin: 0 -15px;
	}

	.row.row-2 > [class*="col-"]{
		padding: 0 15px;
	}

	.filters [class*="col-sm-"]:not(:last-child):not(.col-no-space){
		margin-bottom: 26px;
	}

	[class*="footer"].style-4 .main-footer .row > .col-2{
		width: 100%;
		max-width: 100%;
		flex: none;
	}

	[class*="footer"].style-4 .main-footer .row > .col-4{
		width: 100%;
		max-width: 100%;
		flex: none;
	}

	.instagram-feed.style-2 > *{
		width: 50% !important;
	}

	.col-bg.phone{
		display: none;
	}

	.popup{
		overflow-x: hidden;
    	overflow-y: auto;
	}

	.pricing-tables-holder.item-col-2 > *{
		width: 100%;
	}

	.healcode .week_links > span.healcode-jump-to-date{
		float: none;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		min-width: 100%;
	}

	.icons-box.style-1.item-col-3 > *,
	.challenges.item-col-3 > *{
		width: 50%;
		width: 100%;
	}

	.entry-box.isotope.three-collumn > .item{
		width: 100%;
	}

	.info-boxes.item-col-3 > *{
		width: 100%;
	}

	.portfolio-holder.item-col-3 > *{
		width: 50%;
	}

	.instagram-feed.style-2.var2 > *{
		width: 50%;
	}

	.pricing-tables-holder.item-col-3 > *{
		width: 100%;
	}

	.page-404-section .title{
		font-size: 265px;
		line-height: 300px;
	}

	.page-404-section .newsletter{
		min-width: 100%;
	}

	.entry-box.item-col-3 > *,
	.challenges.item-col-2 > *,
	.isotope.two-collumn > .item{
		width: 100%;
	}

	.post-nav .post-button.favorite:not(:last-child){
	    margin-bottom: 10px;
	}

	.entry-box .entry .thumbnail-attachment img{
		width: 100%;
	}

	.entry-box.entry-small .entry .thumbnail-attachment img{
		width: auto;
	}

	.portfolio-holder .item-col-3 > *,
	.instagram-feed .nv-instafeed-item{
		width: 50%;
	}

	.icons-box.item-col-2 > *{
		width: 100%;
	}

	.entry-box.list-type.half-col .entry .thumbnail-attachment:not(.full){
		max-width: 100% !important;
	}

	.entry-box.list-type .entry .thumbnail-attachment:not(.full){
		float: none !important;
	}

	.entry-box.list-type .entry .thumbnail-attachment{
		float: none;
	}

	.entry-box.list-type:not(.style-2) .entry .entry-body{
		padding-left: 0;
		padding-top: 26px;
	}

	.products-holder.item-col-3 > .product{
		width: 50%;
	}

	.header.style-4{
		position: relative;
	}

	.media-holder.full-scr{
		padding-bottom: 90%;
	}

	.info-boxes.style-2 .info-box > p, .info-boxes.style-2 .info-box > .btn{
		opacity: 1;
		visibility: visible;
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}

}

/*@media (min-width:768px){*/
@media (min-width:768px){

	.table-row{
	    margin-left: 0px;
	    margin-right: 0px;
	    display: table;
	    width: 100%;
	    table-layout: fixed;
	}

		.table-row > [class*="col-sm-"]{
		    float: none;
		    display: table-cell;
		    vertical-align: middle;
		}

		.table-row > [class*="col-"]:first-child{
		    padding-left: 0px;
		}

		.table-row > [class*="col-"]:last-child{
		    padding-right: 0px;
		}

}

/*@media (min-width: 769px) and (max-width: 992px) {*/
@media (min-width: 769px) and (max-width: 992px) {

	.our-info.style-2.vr-type.var2{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		flex-wrap: wrap;
	}

	.parallax-section .col-md-12 .our-info.vr-type .info-item{
		width: 50%;
	}

}

/*@media only screen and (max-width:480px){*/
@media only screen and (max-width:650px){

	[class*="col-xs-"]{
		float: none;
		width: 100%;
	}

	.instagram-feed.style-2 > *{
		width: 100% !important;
	}

	.tribe-events-bar form .btn.f-right{
		margin-left: 13px;
	}

	.week_links > span > a{
		font-size: 14px;
		padding: 10px 18.5px;
	}

	h2{
		font-size: 36px;
		line-height: 50px;
	}

	.contact-form:not(.style-2) .contact-item{
		padding-left: 0 !important;
	}

	.contact-form:not(.style-2) .contact-item label{
		position: relative !important;
		display: block;
		top: 0 !important;
		margin-bottom: 13px;
	}

	.info-boxes.style-2.item-col-4 > *{
		width: 100%;
	}

	.tp-leftarrow{
		margin-left: -30px;
	}

	.tp-rightarrow{
		margin-right: -30px;
	}

	.tparrows:before{
		font-size: 30px;
	}

	.header.fixed-header:not(.clone-fixed){
		position: relative;

	}

	.top-header > .flex-row,
	.top-header > .container > .flex-row{
		display: block;
		text-align: center;
    position: relative;
    z-index: ;
	}

	.header:not(.style-3):not(.style-4) .top-header > .flex-row > *{
		margin-bottom: 26px;
	}

	.header:not(.style-3):not(.style-4) .top-header > .container .flex-row > *{
		padding-bottom: 26px;
	}

	.header.style-4 .logo-wrap:not(:last-child){
		margin-bottom: 13px;
	}

	.header.style-4 .pre-header{
		padding: 0 15px;
	}

	.header.style-4 .top-header{
		padding: 13px 15px;
	}

	.header.style-4 .pre-header .flex-row{
		justify-content: center!important;
	}

	.header .menu-wrap{
		justify-content: center;
	}

	h1.call-title{
		font-size: 48px;
		line-height: 50px;
	}

	.media-holder.full-scr .media-inner{
		top: 25%;
		padding: 0 20px;
		right: auto;
		left: 0;
	}

	.wrapper-container.wide{
		padding: 13px;
	}

	.challenge-item .item-title a{
		font-size: 30px;
		line-height: 39px;
	}

	.challenges.masonry.item-col-2 .item-col .item-col-2 > *{
		width: 100%;
	}

	.carousel-type-2:not(.var3) .owl-carousel{
		padding: 0 15px;
	}

	.carousel-type-2:not(.var2) .owl-nav > .owl-prev{
		left: -20px;
	}

	.carousel-type-2:not(.var2) .owl-nav > .owl-next{
		right: -20px;
	}

	.portfolio-holder.item-col-3 > *{
		width: 100%;
	}

	.instagram-feed.style-2.var2 > *{
		width: 100%;
	}

	.isotope.three-collumn > .item,
	.isotope.fourth-collumn > .item,
	.portfolio-holder .item-col-3 > *,
	.instagram-feed .nv-instafeed-item{
		width: 100%;
	}

	.page-404-section .title{
		font-size: 145px;
		line-height: 180px;
	}

	.share-wrap .share-title{
		float: none;
		margin-bottom: 13px;
	}

	.entry-box.entry-small.list-type.style-2 .entry{
		display: block;
	}

	.entry-box.entry-small.list-type.style-2 .entry .thumbnail-attachment:not(:last-child){
		float: none;
		margin-bottom: 13px;
	}

	.counter-wrap.item-col-4 > *{
		width: 100%;
	}

	.tabs:not(.vertical) .tabs-nav li{
		display: block;
	}

	.tabs:not(.style-2):not(.vertical) .tabs-nav > li:not(:last-child),
	.tabs.style-2:not(.vertical) .tabs-nav > li:not(:last-child){
		margin-right: 0;
	}

	.tabs.style-2 .tabs-nav > li:first-child > a{
		border-radius: 20px 20px 0 0;
	}

	.tabs.style-2 .tabs-nav > li:last-child > a,
	.tabs.vertical.style-2 .tabs-nav > li:last-child > a{
		border-radius: 0;
	}

	.tabs .tabs-nav > li > a{
		padding: 15px 0;
	}

	.tabs:not(.vertical) .tabs-nav > li > a{
		border-bottom: 1px solid #eaeaea;
	}

	.tabs:not(.vertical):not(.style-2) .tabs-nav{
		border-bottom: none;
	}

	.tabs.style-2:not(.vertical) .tabs-nav > li:not(:last-child){
		margin-bottom: 1px;
	}

	.tabs.vertical{
		display: block;
	}

	.tabs.vertical .tabs-nav,
	.tabs.vertical .tabs-content{
		width: 100%;
		max-width: 100%;
	}

	.tabs.vertical .tabs-content{
		width: 100%;
		padding-top: 30px;
	}

	.tabs.vertical .tabs-nav > li a:after{
		left: 0;
		top: 100%;
		width: 100%;
		height: 1px;
	}

	.tabs.vertical .tabs-nav{
		border-right: none;
	}

	.products-holder.item-col-3 > .product,
	.products-holder.item-col-4 > .product,
	.product .product-image img{
		width: 100%;
	}

	.shopping-cart{
		width: 300px;
		right: 50%;
		margin-right: -150px;
	}

	.popup .popup-inner{
		padding: 13px!important;
	}

	.popup .close-popup{
		margin-left: -15px;
	}

	.rev-slider .section-pre-title:not(.style-2):before{
		width: 10px;
	}

	.testimonial blockquote{
		padding: 26px;
	}

	.popup-inner .item-col-2 > *{
		width: 100%;
	}

	.header.style-4.var2 .logo{
		top: auto;
		bottom: 0;
		left: 0;
		width: 58px;
	}

	.classes-option.flex-row > form{
		width: 100%;
	}

	.newsletter .btn{
		position: relative;
		top: 10px;
	}

	.thumbnail-attachment > .entry-label{
		left: 13px;
		top: 0px;
	}

	.breadcrumbs-wrap .page-title{
		font-size: 42px;
		line-height: 48px;
	}

	.tabs.vertical:not(.style-2) .tabs-content{
		padding: 13px 30px;
	}

	.newsletter:not(.var2) input{
		width: 100%;
		padding-right: 20px;
	}

	.footer:not([class*="style-"]) .main-footer{
		text-align: center;
	}

	.info-boxes.style-2 .info-box{
		padding: 60px 15px;
	}

	.popup .popup-inner.var2 .col-lg-5{
		display: none;
	}

	.media-holder.full-scr .media-inner{
		display: none;
	}

	.media-holder.full-scr{
		min-height: auto;
	}

}

  h1{
    font-size: 2.5rem;
  }
	
	.our-info .info-item,
	.right-actions{
		display: block;
	}

	.testimonial .author-box > *{
		display: block;
	}

	.testimonial .author-box .author-info{
		padding-left: 0;
		padding-top: 13px;
	}

}

/* Eliminar viñetas y padding de la lista */
ul.products, 
li.product {
  list-style: none;
  padding-left: 0;
}

/* Contenedor principal */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centra las columnas */
  margin: 0 -15px; /* Compensa el padding de las columnas */
}

/* Columnas de productos */
.col-md-4 {
  padding: 15px;
  box-sizing: border-box;
}

/* Tarjeta de producto */
li.product {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contenido del producto */
.woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
  color: #000000;
  flex-grow: 1;
  padding: 15px;
}

/* Imagen del producto */
.attachment-woocommerce_thumbnail {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

/* Título del producto */
.woocommerce-loop-product__title {
  font-size: 1.1rem;
  margin: 10px 0 5px;
  text-align: center;
  color: #222;
}

/* Precio */
.price {
  display: block;
  text-align: center;
  font-weight: bold;
  color: #2c3e50;
  margin: 5px 0 15px;
  font-size: 1rem;
}

/* Botón "Añadir al carrito" */
.add_to_cart_button {
  display: block;
  width: 80%;
  margin: 0 auto 15px;
  text-align: center;
  background-color: #000000;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.add_to_cart_button:hover {
  background-color: #2a3d4b;
}

/* Contenedor del menú */
.menu-holder {
  flex-grow: .4;
  display: flex;
  align-items: stretch; /* Cambiado a stretch para igualar alturas */
  height: 100%; /* Toma toda la altura del contenedor padre */
}


/* Menú principal */
.fas{
  padding-top: 12px;
}

.main-navigation {
  display: flex;
  align-items: center; /* Centra verticalmente los items */
  height: 100%; /* Hereda la altura completa */
}

.main-navigation > ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%; /* Mantiene la altura consistente */
}

.main-navigation > ul > li {
  position: relative;
  padding: 0 15px;
  display: flex;
  align-items: center; /* Centrado vertical perfecto */
  height: 100%; /* Iguala altura con el logo */
}

/* Ajustes específicos para el texto del menú */
.main-navigation > ul > li > a {
  color: #000000;
  white-space: nowrap;
  text-transform: uppercase;
  display: flex;
  align-items: center; /* Texto centrado verticalmente */
  height: 100%; /* Toma toda la altura del li */
  padding: 0 5px; /* Padding horizontal reducido */
  position: relative;
}

/* Efectos hover y active */
.main-navigation > ul > li > a:hover,
.main-navigation > ul > li.current > a {
  color: #4CAF50; /* Color de tu marca */
}

/* Carrito */
.cart-header {
    display: inline-block;
    position: relative;
}

.mini-cart {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 300px;
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-header:hover .mini-cart {
    display: block;
}

/* Estilos para las imágenes del carrito */
.mini-cart img {
    max-width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Estilos para los productos */
.mini-cart .mini_cart_item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mini-cart .mini_cart_item a:not(.remove) {
    flex-grow: 1;
    margin-left: 10px;
}


/* Estilo para el botón de eliminar */
.mini-cart .remove {
    color: red !important;
    font-size: 20px;
    margin-left: 10px;
}

.cart-header a {
  display: flex;
  gap: 5px;
  padding: 0px 0px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cart-header a:hover {
  background: #e9e9e983;
}

/* Responsive para tablets */
@media (max-width: 992px) {
  .logo-wrap {
    margin-right: 20px;
  }
  
  
  .main-navigation > ul > li > a {
    font-size: .5rem; /* Ajusta el tamaño del texto */
    padding: 12px 0;
  }
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .top-header .flex-row {
   display: flex;
	align-items: center;
	justify-content: space-between;
  }
  
  .logo-wrap {
   	flex: 0 0 auto;
  }
  
  .menu-holder {
   flex: 1;
	display: flex;
	justify-content: flex-end;
  }
}

.image-container {
  position: relative;
  display: inline-block; /* o block, según necesites */
}

.image-container img {
  display: block;
  width: 100%; /* ajusta según necesites */
}

.onsale {
  color: white;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: black;
  padding: 5px 10px;
  font-weight: bold;
  z-index: 10; /* asegura que esté por encima de la imagen */
}

li.product {
    list-style: none !important;
    padding-left: 0 !important; /* Opcional: Elimina el espacio izquierdo */
}

.cart-text{
  font-size: 1rem;
}


/*menu para moviles*/
/* Ocultar botón en pantallas grandes */
.menu-toggle {
	display: none;
}

/* Mostrar en móviles */
@media (max-width: 994px) {
	  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 30px;
    margin: 10px;
    position: relative;
    z-index: 1001;
  }

 .menu-toggle .hamburger,
  .menu-toggle .hamburger::before,
  .menu-toggle .hamburger::after {
    content: "";
    background: #000;
    height: 3px;
    width: 30px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: 0.3s ease;
  }

	.menu-toggle .hamburger {
		top: 50%;
		transform: translateY(-50%);
	}

	.menu-toggle .hamburger::before {
		top: -10px;
	}

	.menu-toggle .hamburger::after {
		top: 10px;
	}

	.menu-wrap {
		display: none;
		flex-direction: column;
		background: white;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		z-index: 1000;
	}
   /* Menú visible cuando se activa */
  .menu-wrap.active {
    display: flex;
  }

  /* Submenús opcionales */
  .sub-menu {
    padding-left: 20px;
  }

}

/*Estilos del carrito*/
.woocommerce-cart-section {
    padding: 0px 0;
    background: #faf9f936;
}

.cart-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #34495e;
}

.shop_table th,
.shop_table td {
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: middle;
    text-align: left;
}

.shop_table td.product-thumbnail img {
    max-width: 80px;
    height: auto;
    border-radius: 8px;
}

.update-cart-button {
    background-color: #54b1e0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.update-cart-button:hover {
    background-color: #3a90bc;
}

.cart-collaterals {
    margin-top: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Forzar título "Eliminar" en primera columna */
.woocommerce-cart table.shop_table thead tr:before {
  content: "Eliminar";
  display: table-cell;
  font-weight: bold;
  padding: 15px 10px;
  background: #f5f5f5;
  color: #333;
}

/*estlos del carrito */
.quantity input.qty {
    width: 80px;
    text-align: center;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.quantity input.minus,
.quantity input.plus {
    background: #54b1e0;
    color: white;
    border: none;
    padding: 0px 0px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}

.continue-shopping {
    background-color: #ccc;
    color: #34495e;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

  .continue-shopping:hover {
      background-color: #aaa;
  }

  .quantity {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0px;
  }

  .quantity .minus,
  .quantity .plus {
      background-color: #54b1e0;
      color: white;
      border: none;
      padding: 0px 0px;
      cursor: pointer;
      font-weight: bold;
      border-radius: 4px;
  }

  .woocommerce-address {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.woocommerce-address-header {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #34495e;
}

.woocommerce-address-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #11263c;
}

/* 1) Hacer que la columna de billing-address ocupe 100% de ancho */
.woocommerce-column--billing-address {
  width: 100% !important;
  float: none !important;
}

/* 2) Opcional: Si quieres que ambas (billing + shipping) en desktop sigan lado a lado, pero en mobile sean full-width */
@media (min-width: 768px) {
  .woocommerce-column--billing-address,
  .woocommerce-column--shipping-address {
    width: calc(50% - 1rem) !important; /* dos columnas, con un pequeño gap */
    float: left !important;
    margin-right: 1rem;
  }
  /* Elimina el margin-right de la última columna del row para que centren bien */
  .woocommerce-column--shipping-address {
    margin-right: 0 !important;
  }
}

/* 3) Asegúrate de que el contenedor padre limpie floats */
.woocommerce-billing-fields__field-wrapper {
  overflow: hidden; /* evita que los floats rompan el layout */
}

.woocommerce-column--billing-address, .woocommerce-column--shipping-address {
  width: calc(50% - 1rem) !important;
}


cart-title{
  margin-bottom:30px !important;
}

 /* Ajustes específicos para el menú responsivo */
        @media (max-width: 992px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                padding: 20px;
                background: #fff;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: right 0.3s ease;
                z-index: 1050;
                overflow-y: auto;
            }
            
            .navbar-collapse.show {
                right: 0;
            }
            
            .navbar-toggler {
                z-index: 1051;
            }
            
            .navbar-backdrop {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.5);
                z-index: 1040;
                display: none;
            }
            
            .navbar-backdrop.show {
                display: block;
            }
            
            .cart-header {
                margin-top: 20px;
            }

                              .fixed-top {
    top: 0px !important;
  }

            }
        
        /* Ajustes para el carrito en móviles */
        @media (max-width: 768px) {
            .mini-cart {
                width: 280px;
                right: -50px;
            }

                body {
        padding: 0px !important;
        margin-top: 180px !important;
    }

    .fixed-top {
    margin-top: -88px !important;
  }
        }

/* En tu archivo CSS */
.navbar-toggler {
  border: none;
  padding: 0;
  background: transparent !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none !important;
  position: relative;
  transition: all 0.35s ease-out;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.35s ease-out;
}

.navbar-toggler-icon:before {
  top: 0;
  transform-origin: 13% 100%;
}

.navbar-toggler-icon:after {
  bottom: 0;
  transform-origin: 13% 0;
}

.navbar-toggler-icon span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #333;
  transform: translateY(-50%);
  transition: all 0.35s ease-out;
}

/* Animación cuando el menú está abierto */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: translateY(-7px) rotate(-45deg);
}

.cart-count{
  margin-top: .5rem;
}


@media only screen and (max-width:425px){

  .navbar-collapse.show {
        width: 66%;
  }

      .fixed-top {
    top: 0px !important;
  }

   h1:not(:last-child) {
    font-size: 30px;
  }
      .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select
     {
        width: 8rem !important;
    }

}


@media only screen and (max-width:375px){
  .navbar-collapse.show {
        width: 66%;
}

.container-form {
    margin-top: 70px !important;
}
      .fixed-top {
    top: 0px !important;
  }

   h1:not(:last-child) {
    font-size: 30px;
  }
        .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select
     {
        width: 14.9rem !important;
    }
    .form-row-first,
  .form-row-last {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-right: 0 !important;
  }

}


@media only screen and (max-width:320px){

  .navbar-collapse.show {
        width: 60%;
  }
      .fixed-top {
    top: 0px !important;
  }
       .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select
     {
        width: 11.3rem !important;
    }
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
    background-color: #e883ae !important;
}

.text-primary
 {
    color: #000000 !important;
}


/*estios de woocomerse*/

.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.woocommerce-pagination .page-numbers {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
  gap: 0.5rem;
}

.woocommerce-pagination .page-numbers li {
  display: inline-block;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers .current,
.woocommerce-pagination .page-numbers span {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  text-decoration: none;
  color: #2a3d4b;
  background-color: #fff;
  transition: all 0.2s ease;
}

.woocommerce-pagination .page-numbers a:hover {
  background-color: #e9ecef;
  text-decoration: none;
}

.woocommerce-pagination .page-numbers .current {
  background-color: #000000;
  color: #fff;
  border-color: #2a3d4b;
  cursor: default;
}

.woocommerce-pagination .page-numbers .next,
.woocommerce-pagination .page-numbers .prev {
  font-weight: bold;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
  background-color: #e883ae  !important;
}

.woocommerce-customer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.woocommerce-customer-details .woocommerce-column {
  flex: 1 1 90%; /* 1 columna por defecto */
  box-sizing: border-box;
}

.woocommerce-customer-details address {
  min-width: 300px;
  box-sizing: border-box;
}

h2.woocommerce-column__title{
    font-weight: normal;
    margin-bottom: 10px;
    min-width: 320px;
    font-size: 1rem;
}

.woocommerce-customer-details .woocommerce-column {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Alineación y diseño general del checkout */
.woocommerce-checkout .col2-set {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  flex: 1 1 48%;
  min-width: 300px;
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

/* Estilo de campos individuales */
.woocommerce form .form-row {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.woocommerce form .form-row label {
  margin-bottom: 5px;
  font-weight: bold;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .woocommerce-checkout .col2-set {
    flex-direction: column;
  }

  .woocommerce-checkout .col-1,
  .woocommerce-checkout .col-2 {
    flex: 1 1 100%;
  }
      .p-md-5 {
        padding: 2rem !important;
    }
}

    /* ===============================
   WooCommerce Checkout Styling
================================== */

.woocommerce-checkout .col2-set {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  flex: 1 1 48%;
  min-width: 320px;
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
}

.woocommerce form .form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.woocommerce form .form-row label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: #754b75;
  outline: none;
  box-shadow: 0 0 0 2px rgba(117, 75, 117, 0.2);
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* Responsive: Una columna en móviles */
@media (max-width: 768px) {
  .woocommerce-checkout .col2-set {
    flex-direction: column;
  }

  .woocommerce-checkout .col-1,
  .woocommerce-checkout .col-2 {
    width: 100%;
  }
}

/* ===============================
   WooCommerce Cart Table Fix
================================== */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.woocommerce table.shop_table thead th {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 10px;
  background-color: #f5f5f5;
  border-bottom: 2px solid #ddd;
  color: #333;
}

.woocommerce table.shop_table td {
  padding: 15px 10px;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}

.woocommerce table.shop_table .product-thumbnail img {
  width: 60px;
  height: auto;
  border-radius: 4px;
}

.woocommerce .product-remove a {
  color: #c00;
  font-weight: bold;
}

.woocommerce .product-remove a:hover {
  color: #900;
}

/* Estira el contenedor del input */
.woocommerce .quantity {
  width: auto;
  min-width: 120px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
}

/* Estira el input de cantidad */
.qty {
  width: 100px !important;
  min-width: 100px;
  padding: 10px 12px;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  box-sizing: border-box;
}


/* Alineación */
.woocommerce .shop_table td,
.woocommerce .shop_table th {
  text-align: center;
}
.woocommerce .shop_table td.product-name,
.woocommerce .shop_table th.product-name {
  text-align: left;
}

.woocommerce .quantity input.qty {
  width: 120px !important;  /* o el valor que desees, ej: 120px */
  min-width: 100px;
  max-width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 10px 12px;
  box-sizing: border-box;
}


.select2-container--default .select2-dropdown {
  margin-top: -170px !important;
}

h1.woocommerce-products-header__title.page-title {
  text-align: center !important;
}

h1.cart_totals.calculated_shipping {
  text-align: center !important;
}