/* -------------------------------- 
COOKIES
-------------------------------- */
/*
.cc-floating.cc-theme-classic {
    padding:var(--space-m) var(--space-l)!important;
    border-radius: 0;
    box-shadow: var(--shadow30);
    font-size:var(--text-xxs);
}

.cc-floating .cc-message {
    display: block;
    margin-bottom: 0;
}*/

.ora {border:var(--ora);}
.ba  {border:var(--black);}

/* Hide focus styles if they're not needed, for example, when an element receives focus via the mouse. */
:focus:not(:focus-visible) {
  outline: 0;
}
/* Show focus styles on keyboard focus. */
:focus-visible {
    box-shadow:0 0 0 3px hsla(var(--brand-second),.5)!important;
}
 
/* -------------------------------- 
SECTIONS
-------------------------------- */
.section                 { padding:var(--space-xxl) 0; background:transparent; position: relative; }

.section--transparent    { background: transparent; overflow: hidden; } 
.section--white          { background: hsla(var(--light),1); } 
.section--grey           { background: hsla(var(--dark),.07); 
                           background: var(--blue-gray-0); } 
.section--brand          { background: hsla(var(--brand),1);}
.section--brand-second   { background: hsla(var(--brand-second),1);}
.section--brand-third    { background: hsla(var(--brand-third),1);}

.gradient--brand {
  background: -webkit-linear-gradient(left, hsla(254,65%,40%,1) 30%, hsla(254,65%,32%,1) 100%);
  background:         linear-gradient(left, hsla(254,65%,40%,1) 30%, hsla(254,65%,32%,1) 100%);
}

.gradient--second {
  background: -webkit-linear-gradient(left, hsla(187,95%,43%,1) 30%, hsla(187,95%,33%,1) 100%);
  background:         linear-gradient(left, hsla(187,95%,43%,1) 30%, hsla(187,95%,33%,1) 100%);
}

.gradient--grey {
  background: -webkit-linear-gradient(top, rgba(240,240,240,1) 30%, rgba(255,255,255,1) 100%);
  background:         linear-gradient(top, rgba(240,240,240,1) 30%, rgba(255,255,255,1) 100%);
}



[data-section*="image"] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

[data-section*="image"]::before {
  content: '';
  display: block;
  position: absolute;
  bottom:0;
  left: 0;
  background: -webkit-linear-gradient(top, rgba(0,0,0,.35) 30%, transparent 100%);
  background:         linear-gradient(top, rgba(0,0,0,.35) 30%, transparent 100%);
  width: 100%;
  height: 100%;
}



.section .row,
.section [class*="block--"] { z-index: 1 }

.section--green li { color: hsla(var(--dark),1) }

.section--brand li,
.section--brand p,
.section--brand h1,
.section--brand h2,
.section--brand h3,
.section--brand h4,
.section--brand h5,
.section--brand h6,
.section--brand small { color: hsla(var(--light),1) }
.blog--certificacion .section--brand ul  { list-style-image: url('../images/dot-white.svg'); }

.gradient--brand li,
.gradient--brand p,
.gradient--brand h1,
.gradient--brand h2,
.gradient--brand h3,
.gradient--brand h4,
.gradient--brand h5,
.gradient--brand h6,
.gradient--brand small { color: hsla(var(--light),1) }


[data-section*="image"] li,
[data-section*="image"] p,
[data-section*="image"] h1,
[data-section*="image"] h2,
[data-section*="image"] h3,
[data-section*="image"] h4,
[data-section*="image"] h5,
[data-section*="image"] h6,
[data-section*="image"] small { color: hsla(var(--light),1) }


.section--brand .card--services li,
.section--brand .card--services p,
.section--brand .card--services h1,
.section--brand .card--services h2,
.section--brand .card--services h3,
.section--brand .card--services h4,
.section--brand .card--services h5,
.section--brand .card--services h6,
.section--brand .card--services small { color: hsla(var(--dark),1) }
.blog--certificacion .section--brand .card--white-shadow ul  { list-style-image: url('../images/dot.svg'); }

/* -------------------------------- 
BREADCRUMBS RANK MATH
-------------------------------- */

.section > svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  fill:#f2f2f2;
}


.gradient--brand > svg,
.gradient--grey  > svg {
  position: absolute;
  fill:hsla(var(--brand),1);
  top: 0;
  right: 0;
  width: 100%;
  height: 400px;

  /*border:1px solid red;*/
}

.page--single::before,
.sec_planes:after {
  content: '';
  display: block;
  position: absolute;
  bottom:0;
  left: 0;
  background: -webkit-linear-gradient(bottom, #fff 10%, rgba(255,255,255,0) 100%);
  background:         linear-gradient(bottom, #fff 10%, rgba(255,255,255,0) 100%);
  width: 100%;
  height: 100%;
}
 

.rank-math-breadcrumb {
  display: flex;
  align-items: center;
  font-size: var(--h6) ; 
  padding:var(--space-xs) 0;
  color: hsla(var(--light),.5);
  flex-wrap: wrap;
 }

#breadcrumbs {
  position: absolute;
  top: 90px;
  z-index: 2;
  width: 100%;
}

.rank-math-breadcrumb a:first-child,
.rank-math-breadcrumb span:last-child {
    display: inline-block !important;
}

#breadcrumbs a         { padding:0 var(--space-xxs); color: hsla(var(--light),1) }
#breadcrumbs a:hover   { color: hsla(var(--brand-second),1) }
#breadcrumbs span.last { padding:0 var(--space-xxs); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media only screen and (max-width:900px) {
  #breadcrumbs {   }
}

@media (max-width: 767px) {
    .rank-math-breadcrumb nav {
        display: flex;
        flex-wrap: wrap;
    }

    .rank-math-breadcrumb a:first-child,
    .rank-math-breadcrumb span:last-child {
      display: none !important;
    }

    .rank-math-breadcrumb a:first-child + .separator {
      display: none !important;
    }

    .rank-math-breadcrumb a:last-of-type + .separator {
      display: none !important;
    }

    #breadcrumbs {
      top: 60px;
      z-index: 11; 
      width: 100%;
    }

    .margin_top_h1 {
      margin-top: 20px !important;
    }

    .rank-math-breadcrumb a {
        position: relative;
        z-index: 3 !important; 
        pointer-events: auto !important;
        font-size: 13px !important;
        padding: 4px 8px !important;
        margin: 0 2px !important;
        display: inline-block !important;
        text-decoration: none !important;
        line-height: 1.4 !important;
        transition: all 0.3s ease !important;
    }

    .rank-math-breadcrumb a:hover {
        background-color: rgba(255, 255, 255, 0.2) !important;
        border-color: #cccccc !important;
    }

    .rank-math-breadcrumb {
        pointer-events: auto !important; 
        gap: 5px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        padding: 0;
        margin-block: 10px;
        background: none;
    }
}

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

.brands-dropdown {
    display: none;
    position: absolute;
    top: 78%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 14px;
    z-index: 1000;
    border-radius: 8px;
    width: 994px;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
}

.desktop-brands {
  position: static;
}

.desktop-brands:hover .brands-dropdown {
    display: block;
}

.brands-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.marcas-top-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 112px;
  border-radius: 8px;
  border: 1px solid #f3f3f3;
  text-transform: uppercase;
  padding: 12px 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.marcas-top-item img {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  transition: transform 0.3s ease;
}

.marcas-top-item span {
  display: block;
  font-size: 12px;
  color: #4324a8;
}

.brands-rest {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.marcas-rest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 112px;
  border-radius: 8px;
  border: 1px solid #f3f3f3;
  text-transform: uppercase;
  padding-inline: 0 !important;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.marcas-rest-item img {
    width: 56px;
    height: 56px;
    transition: transform 0.3s ease;
}

.marcas-rest-item span {
    display: block;
    font-size: 9px;
    color: #4324a8;
}

.brands-dropdown a:hover {
    background-color: rgba(6, 147, 227, 0.1);
    border-color: rgba(6, 147, 227, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.brands-dropdown a:hover img {
    transform: scale(1.1);
}


/* -------------------------------- 
TIPOS DE IMÁGENES
-------------------------------- */
.shadow--image img { display: block; }
.shadow--image {
  background-size: 0;
  z-index: 2;
  position: relative;
  display: block;
}


.shadow--image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  z-index: -1;
  filter: blur(16px) contrast(200%);
  opacity: 1;
}


.round--16,
.round--16::before,
.round--16::after,
.round--16 img { border-radius: 16px; } 

.round--24,
.round--24::before,
.round--24::after,
.round--24 img { border-radius: 24px; } 

.img--60 { border:2px solid hsla(var(--brand),1); padding:var(--space-xs); border-radius: 12px; margin-left: 4px }
.img--60 > img { display: block; margin:0 auto; width: 40px }

.opacity--50 { opacity: .5; }

/* -------------------------------- 
TAGS
-------------------------------- */

.tag {
  font-size: var(--text-xs);
  line-height: 1;
  color: hsla(var(--dark),.6);

  border: 1px solid transparent;

  display: inline-flex; 
  align-items: center;
  
  padding: var(--space-xxs) var(--space-xxs);
  margin: 0 var(--space-xxxs) 0 0;
  border-radius: var(--radius4);

  pointer-events: all; 

}

.tag img,
.tag svg { max-width: 16px; margin-right: var(--space-xxs) }

.tag--brand,
.tag--second,
.tag--third,
.tag--dark,
.tag--light,
.tag--brand:hover,
.tag--second:hover,
.tag--third:hover,
.tag--dark:hover,
.tag--light:hover    { color:hsla(var(--light),1); }

.tag--brand   { border-color:hsla(var(--brand),1); background-color:hsla(var(--brand),1);  } 
.tag--second  { border-color:hsla(var(--brand-second),1); background-color:hsla(var(--brand-second),1);  }
.tag--third   { border-color:hsla(var(--brand-third),1); background-color:hsla(var(--brand-third),1);  }
.tag--dark    { border-color:hsla(var(--dark),1); background-color:hsla(var(--dark),1);  } 

.tag--gradient { background: linear-gradient(45deg, red, hsl(var(--brand-third))); border-color: hsl(var(--brand-third)); }
.tag--gradient strong { color:hsl(var(--light)); }

.tag--gradient-purple { 
  background: linear-gradient(45deg, hsla(var(--brand),1), hsla(var(--brand), .5)); 
  border-color: hsl(var(--brand)); 
  color: white;
}
.tag--gradient-purple strong {color: white;}

.tag--gradient-blue { 
  background: linear-gradient(45deg, hsla(var(--brand-second),1), hsla(var(--brand-second), .5)); 
  border-color: hsl(var(--brand-second)); 
  color: white;
}
.tag--gradient-blue strong {color: white;}


.tag--gradient-green {
  background: linear-gradient(45deg, rgb(39 221 147) 0%, rgba(122, 220, 180, .7) 100%);
  border-color: var(--wp--preset--color--vivid-green-cyan);
  color: white;
}

.tag--gradient-green strong {color: white;}

.tag--moves   { color:#fec538; border-color:#fec538; background-color:#3a7988;  } 

.tag--line-brand,
.tag--line-second,
.tag--line-third,
.tag--line-dark,
.tag--line-light    { background-color:transparent;  }

.tag--line-brand   { border-color:hsla(var(--brand),1); color:hsla(var(--brand),1); } 
.tag--line-second  { border-color:hsla(var(--brand-second),1); color:hsla(var(--brand-second),1); }
.tag--line-third   { border-color:hsla(var(--brand-third),1); color:hsla(var(--brand-third),1); }
.tag--line-dark    { border-color:hsla(var(--dark),.6); color:hsl(0deg 0.41% 6.56% / 70%); } 
.tag--line-light   { border-color:hsla(var(--light),1); color:hsla(var(--light),1); } 


.tag--s { font-size: var(--text-xs); padding: var(--space-xxxs) var(--space-xxs); }
.tag--m { font-size: var(--h5);  padding: var(--space-xs) var(--space-xs); }
.tag--full { width: 100%; display: flex;; justify-content: center; }

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

.tag--full-mobile { width: 100%; display: flex;; justify-content: center; }

}


/* -------------------------------- 
BUTTONS
-------------------------------- */
a,
a > strong,
a > b        { text-decoration:none; outline:0; color: hsl(var(--brand-second)); }
a:hover,
a:hover > strong,
a:hover > b  { color:hsl(var(--brand-second-dark)); }
 
/*a { position: relative; overflow: hidden; cursor: pointer; }*/

.logged-in-as a,
.comment-edit-link,
.button,
[type=button],
[type=reset],
[type=submit],
button {
    padding: var(--space-s) var(--space-m);
    border:none;
    text-align: center;
    /*font-size: var(--p);*/
    font-weight: 600;
    text-align: center;
    transform: scale(1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: var(--radius8);
    text-decoration: none;
    line-height: var(--body-line-height);

    overflow: hidden;
}

.logged-in-as a    { font-size: var(--text-xs); padding: var(--space-xxs) var(--space-m) }
.comment-edit-link { font-size: var(--text-xxs); padding: var(--space-xxs) var(--space-m); float: right;  }

.button:not(:last-child) { margin: 0 0 var(--space-m); }

.button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover,
button:hover {
/*    opacity: 0.8;*/
}
 
input[disabled],
button[disabled],
input[disabled]:hover,
button[disabled]:hover {
    opacity: 0.8;
    cursor: not-allowed;
}

.button > svg,
[type=button] > svg,
[type=reset] > svg,
[type=submit] > svg,
button > svg   { margin-right: var(--space-xxs) }

.button--ghost              { color:hsla(var(--brand),.8); background:transparent; }
.button--ghost:hover        { color:hsla(var(--brand),1);  background:transparent; box-shadow: var(--dark20); }

.button--primary            { color:hsla(var(--light),1); background:hsla(var(--brand),1); box-shadow: var(--shadow-brand10) }
.button--primary:hover      { color:hsla(var(--light),1); box-shadow: var(--shadow-brand30) }
 
.button--secondary          { color:hsla(var(--light),1); background:hsla(var(--brand-second),1); box-shadow: var(--shadow-second10) }
.button--secondary:hover    { color:hsla(var(--light),1); box-shadow: var(--shadow-second30) }

.button--third              { color:hsla(var(--light),1); background:hsla(var(--brand-third),1); box-shadow: var(--shadow-third10) }
.button--third:hover        { color:hsla(var(--light),1); box-shadow: var(--shadow-third30) }

.button--light              { color:hsla(var(--brand),1); background:hsla(var(--light),1); box-shadow: var(--shadow10) }
.button--light:hover        { color:hsla(var(--brand),1); box-shadow: var(--shadow30) }

.button--dark               { color:hsla(var(--light),1); background:hsla(var(--dark),1); box-shadow: var(--shadow10) }
.button--dark:hover         { color:hsla(var(--light),1); box-shadow: var(--shadow30) }

.button--line-primary         { color:hsla(var(--brand),1); box-shadow:inset 0 0 0 2px hsla(var(--brand),1); }
.button--line-primary:hover   { color:hsla(var(--light),1); background:hsla(var(--brand),1); box-shadow: var(--shadow-brand10) }
 
.button--line-secondary       { color:hsla(var(--brand-second),1);  box-shadow:inset 0 0 0 2px hsla(var(--brand-second),1); }
.button--line-secondary:hover { color:hsla(var(--light),1); background:hsla(var(--brand-second),1); box-shadow: var(--shadow-brand10) }

.button--line-third           { color:hsla(var(--brand-third),1); box-shadow:inset 0 0 0 2px hsla(var(--brand-third),1); }
.button--line-third:hover     { color:hsla(var(--light),1);       background:hsla(var(--brand-third),1); box-shadow: var(--shadow-brand10) }

.button--line-light           { color:hsla(var(--light),1); box-shadow:inset 0 0 0 2px hsla(var(--light),1); }
.button--line-light:hover     { color:hsla(var(--dark),1); background:hsla(var(--light),1); box-shadow: var(--shadow-brand10) }

.button--line-dark            { color:hsla(var(--dark),1);  box-shadow:inset 0 0 0 2px hsla(var(--dark),1); }
.button--line-dark:hover      { color:hsla(var(--light),1); background:hsla(var(--dark),1); box-shadow: var(--shadow-brand10) }
 
.button--bordered              { color:hsla(var(--brand),1); background:hsla(var(--light),1); box-shadow: var(--shadow10); border: 1px solid #dfdfdf; color: black; }
.button--bordered:hover        { color:hsla(var(--brand),1); box-shadow: var(--shadow30) }
 
.button--line,
.logged-in-as a,
.comment-edit-link             { color:hsla(var(--dark),1); border:2px solid hsl(var(--dark),1); }
.button--line:hover,
.logged-in-as a:hover,
.comment-edit-link:hover       { color:hsla(var(--light),1); background:hsl(var(--dark),1); box-shadow: var(--shadow20); }



[type=submit]               { color:hsla(var(--light),1); background:hsla(var(--brand-third),1); box-shadow: var(--shadow-third10); width: 100%; }
[type=submit]:hover         { color:hsla(var(--light),1); box-shadow: var(--shadow-third30) }
 
.button--xl                 { font-size: var(--h4); }
.button--s                  { font-size: var(--h5); font-weight: 400 }
.button--xs                 { font-size: var(--h6); font-weight: 400 }
.button--full               { display: flex; width: 100%; justify-content: center; margin-left: 0!important; }


@media only screen and (max-width:890px) {
 
.button + .button,
button + button     { margin-left: 0; }

}


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

.mobile--full       { display: flex; width: 100%; justify-content: center; margin-left: 0!important; }

}

/* -------------------------------- 
FORMS & INPUTS
-------------------------------- */

 
label {
color:hsla(var(--dark),.6);
font-size: var(--h5);
display: block;
margin:0 0 var(--space-xs) 0
;}


input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]):not([type=range]),
select,
textarea,
textarea[type=text] {
color:hsla(var(--dark),1);
padding:var(--space-s); 
background-color: hsla(var(--light),1); 
border:1px solid hsla(var(--dark),.2);
/*box-shadow: inset 0 0 0 2px hsla(var(--dark),.2);*/
/*font-size:var(--p);*/
transition: all 0.2s ease;
display: block;
width: 100%;
margin:0 0 var(--space-xs);
/*margin:0;*/
}
 

input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]):not([type=range]):hover,
select:hover,
textarea:hover,
textarea[type=text]:hover{
/*box-shadow: inset 0 0 0 2px hsla(var(--brand-second),1);*/
border:1px solid hsla(var(--brand-second),1);
}

input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]):focus:not([type=range]):focus,
select:focus,
textarea:focus,
textarea[type=text]:focus {
outline: none;
/*box-shadow: inset 0 0 0 2px hsla(var(--dark),1);*/
/*box-shadow: 0 0 26px hsla(var(--brand),.6);*/
}

select {
-webkit-appearance: none;
background-image: url('../images/svg/select-down.svg'); 
background-size: 22px;
background-position: calc(100% - 10px) center;
background-repeat: no-repeat;
/*background-color: #fff;*/
}

select:focus { background-image: url('../images/svg/select-up.svg'); } 

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

CHECKBOXES & RADIOS

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

.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0;
}

input.wpcf7-not-valid {
  border:2px solid var(--error)!important;
}

.wpcf7-not-valid-tip {
    display: block;
    font-size: var(--small);
    color: var(--error);
    margin-top: calc(-1 * var(--space-s));
    padding: var(--space-xxs);
}

.wpcf7 form.init .wpcf7-response-output {
    display: none;
}

.wpcf7-response-output {
    border:2px solid var(--error);
    padding: var(--space-s);
    text-align: center;
    font-size: var(--h6);
    margin: 0 var(--space-xs);
    background-color:#ff00008c;
    color: white;
    font-weight: 900;
    display: none;
}
 
input[type="radio"],
input[type="checkbox"] {
  position: absolute;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/*// label*/
input[type="radio"] + span,
input[type="checkbox"] + span { 
  display: inline-flex;
  align-items: flex-start;
  user-select: none;
  cursor: pointer;
}

/* custom buttons - basic style*/
input[type="radio"] + span::before,
input[type="checkbox"] + span::before { 
  content: '';
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 2px solid hsla(var(--dark),.4);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 4px;
  transition: transform .2s, border .2s;
}

/* Captcha checkbox */
label.itsec-recaptcha-opt-in__agree::before {
    content: '';
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid hsla(var(--dark), .4);
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 4px;
    transition: transform .2s, border .2s;
    top: -4px;
}


input[type="radio"] + span > *,   
input[type="checkbox"] + span > * { width: calc(100% - 18px); line-height: 1.3; } 

/*// :hover*/
input[type="radio"]:not(:checked):not(:focus) + span:hover::before,
input[type="checkbox"]:not(:checked):not(:focus) + span:hover::before {
  border-color: hsla(var(--brand-second),1);
}

/*// radio only style*/
input[type="radio"] + span::before {
  border-radius: 50%; 
}

/*// checkbox only style*/
input[type="checkbox"] + span::before {
  border-radius: 4px;
}

/*// :checked*/
input[type="radio"]:checked + span::before,
input[type="checkbox"]:checked + span::before {
  background-color: hsla(var(--brand-second),1);
  box-shadow: none;
  border-color: hsla(var(--brand-second),1);
  transition: transform .2s;
}

/*// :checked*/
input[type="radio"]:checked + span,
input[type="checkbox"]:checked + span {
  color: hsla(var(--dark),1);
}
 
/*// :active*/
input[type="radio"]:active + span::before,
input[type="checkbox"]:active + span::before {
  transform: scale(0.8);
  transition: transform .2s;
}

/*// :checked:active*/
input[type="radio"]:checked:active + span::before,
input[type="checkbox"]:checked:active + span::before {
  transform: none;
  transition: none;
}

/*// radio button icon*/
/*input[type="radio"]:checked + span::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg class='nc-icon-wrapper' fill='%23ffffff'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ffffff'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
  background-size: 10px;
}*/

/*// checkbox button icon*/
input[type="radio"]:checked + span::before,
input[type="checkbox"]:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='1 6.5 4 9.5 11 2.5' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 10px;
}

/*// :focus*/
input[type="radio"]:checked:active + span::before,
input[type="checkbox"]:checked:active + span::before,
input[type="radio"]:focus + span::before,
input[type="checkbox"]:focus + span::before {
  /*border-color: hsla(var(--brand-second),1);*/
  box-shadow: 0 0 0 2px hsla(var(--brand-second),.4);
}





/*input[type="checkbox"],
input[type="radio"]  {
    opacity:0;
    display: none;
    width:20px;
    overflow: hidden;
}


 
input[type="checkbox"] + span,
input[type="radio"] + span {
    position: relative;
    display: inline-block;
}


input[type="checkbox"] + span::before,
input[type="checkbox"] + span::after,
input[type="radio"] + span::before,
input[type="radio"] + span::after {
  content: '';
  visibility: visible;
  background:#fff; 
  box-shadow: inset 0 0 0 1px hsla(var(--dark),.2);  
  display:block;
  border-radius: 4px;
  width: 16px;
  height: 16px;
  position: absolute;
  top:0; left:0;
  margin: 2px 0 0 -20px;
}

input[type="checkbox"] + span::after,
input[type="radio"] + span::after   {
  background:transparent;
  width: 0;
  height: 0; 
  top:8px; left:8px;
}

input[type="radio"] + span::before,
input[type="radio"] + span::after {
border-radius: 100%;
}

input[type="checkbox"]:checked + span::before,
input[type="radio"]:checked + span::before  {
box-shadow: inset 0 0 0 2px hsla(var(--brand),1);  
}

input[type="checkbox"]:checked + span::after,
input[type="radio"]:checked + span::after  {
  width: 8px;
  height: 8px;
  border-radius: 2px;  
  top:4px; left:4px;  
  background: hsla(var(--brand),1);
  box-shadow: inset 0 0 0 1px hsla(var(--dark),0);  
}

input[type="radio"]:checked + span::after  {
border-radius: 100%;
} 

input[type="checkbox"]:checked + span,
input[type="radio"]:checked + span  {
color:hsla(var(--dark),1);  
}

input[type="checkbox"] + span::before,
input[type="checkbox"] + span::after {
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}*/


/* BIGGER SIZE ON TABLET & MOBILE */

@media only screen and (max-width:59.9375em) {

/*.wpcf7-acceptance label span, .wpcf7-radio label span, .wpcf7-checkbox label span {
  margin-left: 28px;
}

input[type="checkbox"] + span::before,
input[type="checkbox"] + span::after,
input[type="radio"] + span::before,
input[type="radio"] + span::after             { width: 20px; height: 20px; margin: 0 0 0 -28px; }

input[type="checkbox"] + span::after,
input[type="radio"] + span::after             { top:0px; left:0px; }

input[type="radio"] + span::before,
input[type="radio"] + span::after             { border-radius: 100%!important; }
 
input[type="checkbox"]:checked + span::after,
input[type="radio"]:checked + span::after     { width: 10px; height: 10px; top:5px; left:5px;  }
*/
 
}

/** SLIDER FULL ***********************************/
 
.slick-dots li button:after {
    -webkit-transition: all 0.2s ease-out .2s;
       -moz-transition: all 0.2s ease-out .2s;
        -ms-transition: all 0.2s ease-out .2s;
         -o-transition: all 0.2s ease-out .2s;
            transition: all 0.2s ease-out .2s;
}




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

UI THINGS

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

.toggle,
.toggle:after, 
.toggle-panel,
.read-more,
.tabbed a,
.tabbed a:after,
.tabbed section,
[id*="more-"]:before  {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}


.tabbed    { width: 100%; position: relative; padding:0; margin:0;}
.tabbed a  { position: relative; margin-right: -4px; display: inline-block; }  

.tabbed a.active          { color: hsla(var(--brand-second),1); }

.tabbed .tabspanel        { opacity:0; overflow: hidden; /*max-height: 0px;*/ display: none; float: left;width: 100%; position: relative; top: 0; left: 0; }
.tabbed .tabspanel.active { opacity:1; /*max-height: 220em;*/ display: block; }  
 
 
.toggle {
  color: hsla(var(--dark),1);
  margin: 0;
  position: relative;
  cursor: pointer;
  outline: 0;
}
 
.toggle:hover             { color: hsla(var(--brand-second),1);  }
.toggle:hover:after,
.toggle.active:after      { opacity: 1}
.toggle.active            { color: hsla(var(--brand-second),1); }
 
.toggle-panel             { opacity:0; overflow: hidden; max-height: 0px; }
.toggle-panel.active      { opacity:1; max-height: 820em; } 


.toggle:after,
.tabbed a:after  {
  content:'';
  background:var(--arrow);
  width:24px;
  height:24px;
  display:block;
  position:absolute;
  top:calc(50% - 12px); 
  right:10px;
  opacity: .6;
}
 
.toggle.active:after,
.tabbed a.active:after     { transform: rotate(180deg); } 



/* -------------------------------- 
PATTERNS DE LAS IMÁGENES
-------------------------------- */
/*
.pattern-color:before,
.pattern-green:before,
.pattern-blue:before,
.pattern-dark:before,
.pattern-light:before,
.pattern-white:before {
  content:'';
  background-image:url(../imgs/dots-rectangle-big.png);
  background-size: 100%;
  background-repeat: repeat;
  width:300px;
  height:300px;
  display:block;
  border:1px solid red;
}

.pattern-color:before  { background-image:url(../images/svg/patterns/pattern-color.svg); background-position:-1px; } 
.pattern-green:before  { background-image:url(../images/svg/patterns/pattern-green.svg); background-position:-1px; }
.pattern-blue:before   { background-image:url(../images/svg/patterns/pattern-blue.svg);  background-position:-1px; } 
.pattern-dark:before   { background-image:url(../images/svg/patterns/pattern-dark.svg);  background-position:-1px; }
.pattern-light:before  { background-image:url(../images/svg/patterns/pattern-light.svg); background-position:-1px; } 
.pattern-white:before  { background-image:url(../images/svg/patterns/pattern-white.svg); background-position:-1px; }  


.pattern-top-left:before,
.pattern-top-right:before,
.pattern-bottom-left:before,
.pattern-bottom-right:before { 
  content:'';
  position:absolute;
  z-index:-1;
  display:block;
}

.pattern-top-left:before     { top:0; left:0; } 
.pattern-top-right:before    { top:0; right:0; }
.pattern-bottom-left:before  { bottom:0; left: 0; }
.pattern-bottom-right:before { bottom:0; right: 0; }


@media only screen and (max-width:31.250em) { 

.pattern-top-left:before,
.pattern-top-right:before,
.pattern-bottom-left:before,
.pattern-bottom-right:before { -webkit-transform:scale(0.7); transform:scale(0.7); }

.pattern-top-left:before     { -webkit-transform-origin:top left;     transform-origin:top left; } 
.pattern-top-right:before    { -webkit-transform-origin:top right;    transform-origin:top right; }
.pattern-bottom-left:before  { -webkit-transform-origin:bottom left;  transform-origin:bottom left; }
.pattern-bottom-right:before { -webkit-transform-origin:bottom right; transform-origin:bottom right; }
 
} */


/* -------------------------------- 
SLIDER TESTIMONIOS
-------------------------------- */


.slick-slider                           { position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;
                                          -ms-user-select:none; user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y; -webkit-tap-highlight-color:transparent; cursor: -webkit-grab; cursor: grab;}

.slick-slider:active                    { cursor: -webkit-grabbing; cursor: grabbing;} 

.slick-list                             { position:relative;display:block;overflow:hidden;margin:0; padding:var(--space-l) 0; z-index: 3;}
.slick-list:focus                       { outline:none}
.slick-list.dragging                    { cursor: -webkit-grabbing; cursor: grabbing;}

.slick-slider .slick-track,
.slick-slider .slick-list
                                        { -webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);
                                          -o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}

.slick-track                            { position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}
.slick-track:before,.slick-track:after  { display:table;content:''}
.slick-track:after                      { clear:both}
.slick-loading .slick-track             { visibility:hidden}
.slick-slide                            { display: none; float: left; height:100%; min-height: 1px; /**/ position: relative; }
 
.slick-slide img                        { display:block; object-fit: cover; width: 100%; position: relative;}
.slick-slide.slick-loading img          { display:none}
.slick-slide.dragging img               { pointer-events:none}
.slick-initialized .slick-slide         { display:block}
.slick-loading .slick-slide             { visibility:hidden}
.slick-vertical .slick-slide            { display:block;height:auto; border: 1px solid transparent;} 
.slick-arrow.slick-hidden               { display:none}




/***************************************************** Slick DOTS */

.slick-dots                                { padding:0; margin:0; background:rgba(40,40,40,0); position:relative; z-index: 4;
                                             list-style: none!important; bottom: 0; width: 100%; 
                                              justify-content:center; display: flex; flex-flow: row nowrap; }

.slick-dots li                             { padding: 0; margin-bottom:0; }

.slick-dots li button                      { font-size: 0; line-height: 0; display: block; width: 12px; height: 12px; border-radius: 100%; 
                                             cursor: pointer; color: transparent; border: 0; margin:0 4px; outline: none; background: hsla(var(--light),.4); 
                                           }
.slick-dots li button:hover:before,
.slick-dots li button:focus:before         { opacity:1; color:hsla(var(--dark),.3);}
.slick-dots li button:before               { content:''; color:hsla(var(--dark),.3); }

.slick-dots li.slick-active button, 
.slick-dots li.slick-active button:before  { background: hsla(var(--light),1); color:hsl(var(--light));/* background:hsl(var(--light)); */}

.slick-dots li.slick-active button:after   { width: 100%; }


.slick-slide                            { display: none; float: left; min-height: 1px; /**/ position: relative; }
.slick-slide img                        { display:block; object-fit: cover; object-position: center; width: 100%; position: relative;}


/***************************************************** Slick ARROWS */

.slick-prev,
.slick-next,
.slick-prev:active,
.slick-next:active            { font-size: 0; line-height: 0; position:absolute; top:calc(50% - 25px); display: block; 
                                width: 50px; height: 50px; padding: 0; cursor: pointer; background:transparent; transition:all .35s ease; 
                                outline: none; border:none; transform: translateY(-50%); z-index:4; }
.slick-next                   { right: -50px; }  
.slick-prev                   { left:  -50px; }     
                            
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus             { outline: none; }

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before      { opacity: 1 }
 
.slick-prev:before,
.slick-next:before            {  
    content:'';
    background-image: var(--arrow-blue);
    transform: rotate(-90deg);
    height: 50px;
    width:  50px;
    display: block;
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
} 


.slick-prev:before { transform: rotate(90deg); }

.gallery-slider:hover .slick-next  { right:0; }  
.gallery-slider:hover .slick-prev  { left: 0; } 

 

/****** STYLES SINGLE OFERTA GALLERY ********/

.gallery-slider.slick-slider .slick-track,
.gallery-slider.slick-slider .slick-list        { margin:0; padding: 0;}

.gallery-slider .slick-slide                    { height:500px; } 
.gallery-slider .slick-slide img                { height:500px; width: 100%; position: relative; object-position:center right;}

.gallery-slider .slick-slide:nth-child(2)       { height:350px; } 
.gallery-slider .slick-slide:nth-child(2) img   { height:350px; width: 100%; object-fit: contain; object-position:bottom left;}

.gallery-slider                                 { overflow: hidden; }
.gallery-slider .slick-dots                     { width:50%; flex-flow: row wrap; /*border:1px solid black; position:absolute; bottom:-90px;*/ 
                                                  justify-content:flex-start; opacity: 1; overflow: hidden; margin:0 0 var(--space-s) -0.25em;  }
.gallery-slider:hover .slick-dots               { bottom:0; }
.gallery-slider .slick-dots li                  { background-color: #fff; position: relative;  
                                                  overflow: hidden; /*border:1px solid red;*/
                                                  margin: 10px calc( var(--space-xs) / 2 ) 0; 
                                                  flex-basis: calc( 10% - var(--space-xs)); max-width: calc( 10% - var(--space-xs))
                                                }
 
 
.gallery-slider .slick-dots li img              { opacity: 1; object-fit: cover; object-position:center; width: 100%; height: 100%; }
.gallery-slider .slick-dots li.slick-active img { opacity: .3;  }
.gallery-slider .slick-dots li.slick-active     { box-shadow:inset 0 0 0 2px hsla(var(--brand-second),1); }
.gallery-slider .slick-dots {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

 
.no-slider img { display: block; width: 100%; max-width: 700px; }


@media only screen and (max-width:59.9375em) {

.gallery-slider                         { margin-bottom: var(--space-s);  }
.slick-dots                             { flex-flow: row wrap; } 

.gallery-slider .slick-slide                    { height:300px; } 
.gallery-slider .slick-slide img                { height:300px; object-position:center;}
.gallery-slider .slick-slide:nth-child(2)       { height:300px; } 
.gallery-slider .slick-slide:nth-child(2) img   { height:300px; object-position:center;}

.gallery-slider .slick-dots             { width:100%;  }
.no-slider img                          { margin:0 auto; }

.slick-prev,
.slick-next,
.slick-prev:active,
.slick-next:active            { top:50%; } 

.slick-next                   { right: 0; }  
.slick-prev                   { left:  0; }   

}


@media only screen and (max-width:31.250em) { 

 
/*.gallery-slider .slick-slide                    { height:250px; } */
/*.gallery-slider .slick-slide img                { height:250px; object-position:center;}*/
.gallery-slider .slick-slide                    { height:100%; min-height: 220px; } 
.gallery-slider .slick-slide img                { height: 100%; object-position: center; object-fit: contain; }
.gallery-slider .slick-slide:nth-child(2)       { height:250px; } 
.gallery-slider .slick-slide:nth-child(2) img   { height:250px; object-position:center;}

.slick-prev,
.slick-next,
.slick-prev:active,
.slick-next:active            { width: 40px; top:50%; }
.slick-next                   { right: 0; }  
.slick-prev                   { left:  0; }    

}



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

UI THINGS

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

.toggle,
.toggle:after, 
.toggle-panel,
.read-more,
.tabbed a,
.tabbed a:after,
.tabbed section,
[id*="more-"]:before  {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}


.tabbed    { width: 100%; position: relative; padding:0; margin:0;}
.tabbed a  { position: relative; margin-right: -4px; display: inline-block; }  

.tabbed a.active          { color: hsla(var(--brand-second),1); }

.tabbed .tabspanel        { opacity:0; overflow: hidden; /*max-height: 0px;*/ display: none; float: left;width: 100%; position: relative; top: 0; left: 0; }
.tabbed .tabspanel.active { opacity:1; /*max-height: 220em;*/ display: block; }  
 
 
.toggle {
  color: hsla(var(--dark),1);
  margin: 0;
  position: relative;
  cursor: pointer;
  outline: 0;
}
 
.toggle:hover             { color: hsla(var(--brand-second),1);  }
.toggle:hover:after,
.toggle.active:after      { opacity: 1}
.toggle.active            { color: hsla(var(--brand-second),1); }
 
.toggle-panel             { opacity:0; overflow: hidden; max-height: 0px; }
.toggle-panel.active      { opacity:1; max-height: 820em; } 


.toggle:after ,
.tabbed a:after  {
  content:'';
  background:var(--arrow);
  width:24px;
  height:24px;
  display:block;
  position:absolute;
  top:calc(50% - 12px); 
  right:10px;
  opacity: .6;
}

@media (min-width: 960px) {
  .tabbed a:after  {
    display: none;
  }
}

 
.toggle.active:after,
.tabbed a.active:after     { transform: rotate(180deg); }

[id*="more-"] {
width: 100%;
cursor: pointer;
display: block;
padding: var(--space-m) 0;
text-align: center;
position: relative;

}

[id*="more-"]:before {
  content: 'Leer más';
  font-weight: 600;
  display: block;
  text-align: center;
}

[id*="more-"].active:before {
  content: 'Leer menos';
  font-weight: 600;
  display: block;
  text-align: center;
}
 

[id*="more-"]:hover:before {
  color: black;
}

.read-more                { opacity:1; overflow: hidden; max-height:0; border-bottom: 1px solid hsla(var(--dark),.2); margin-bottom: var(--space-m); }
.read-more.active         { opacity:1; max-height: 420em; border-bottom:none } 

.toggle__historico         { 
    padding: var(--space-m);
    margin-bottom: var(--space-l);
    border-bottom:1px solid hsla(var(--dark),.2);
    text-align: center;
    width: 100%;
    text-transform: uppercase;
  }

.toggle-panel__historico.active  { overflow:visible; width: 100%  } 

.toggle__historico:before {
  content: 'VER';
  display: inline-block;

} 
.toggle__historico.active:before {
  content: 'OCULTAR';
} 

@media only screen and (max-width:59.9375em) {

.tabbed,
.tabbed a,
.tabbed a.active { display: block; overflow: hidden; }
.tabbed a        { margin:0;}

}



/******

GLIGHTBOX CSS

****/

.glightboxvideo { position: relative;  }
.glightboxvideo:before
/*.gallery-slider .slick-dots li:last-child:before*/ {
 content:''; 
 background-image:url('../images/svg/bx-video.svg'); 
 background-position: center; 
 transform: rotate(90deg);
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%,-50%);
 display: block; 
 width: 70px; 
 height: 70px; 
 z-index: 4
}

/*.gallery-slider .slick-dots li:last-child:before {
 background-size: 24px;
 width: 24px; 
 height: 24px; 
}*/

.plyr__control--overlaid,
.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, 
.plyr--video .plyr__control[aria-expanded=true]  { background: hsla(var(--brand-second),1)!important; }
.plyr__control.plyr__tab-focus                   { box-shadow: 0 0 0 5px hsla(var(--brand-second),.5); }
.plyr--full-ui input[type=range]                 { color: hsla(var(--brand-second),1)!important; }


.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: none;
  overflow: hidden;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

/* top: 0;
        left: 0;
        right: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); */

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
        .glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
        .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
    .gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
        .desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
        .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  width: 100%;
  max-width: 100%;
  position: relative;
  width: 100vh;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
        /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  padding: 20px;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 62vh;
}

.gslide-media {
  display: block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  background-color: #fff;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
    .desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
}

.gslide-description.description-left,
    .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
    .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p::last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: transparent;
  position: absolute;
  bottom: 15px;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .75) 100%);
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc string {
  color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: .4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  opacity: .4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader .8s infinite linear;
  animation: lightboxLoader .8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  background-repeat: no-repeat;
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  display: block;
  background-position: 0 0;
  border: none;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: .1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
    .glightbox-closing .gprev,
    .glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */

.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner,
.glightbox-modern .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title,
.glightbox-modern .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc,
.glightbox-modern .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video,
.glightbox-modern .gslide-video {
  background: #000;
}

/* .gprev,
    .gnext,
    .gclose{
        border: none;
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGMAAAA2CAYAAADTeCfRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5NThDMEMwNzg3NjgxMUU1QUM2MUYwRDYwNTNEN0UxMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5NThDMEMwODg3NjgxMUU1QUM2MUYwRDYwNTNEN0UxMSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk1OEMwQzA1ODc2ODExRTVBQzYxRjBENjA1M0Q3RTExIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjk1OEMwQzA2ODc2ODExRTVBQzYxRjBENjA1M0Q3RTExIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+htE8KwAAA9BJREFUeNrsm1tIFGEYhndDI4OSLgqkMrKjBXYwCjt40QkpL4pMyoqMgigIgm6iiy66KSwpj2vrucKgpINRRhYRooQkWYEWUkaWERokhVQXbu/QOyDhpjPzz3H/Dx7W1f2+753/3X9mnPnHHwqFfDKcEWPkEEgzZEgzpBkybDbjHLhvIP8GKLNhPILgksEaFaDKKWacAMdAn4Ean8F+kGOxGXFgDyjSmZ8L9oFpurKVU1uBnAr9jZMCah1hrQLBGkciyL7FGvNymXdZb2+RG3GGYo4LrHmINS9abEiZRkMu8PNXjPQVJV4Vc9SEgclm7WqLDSkd5RdBiBGizCihmMMmDkwWe1yz2JBy9g2E+ft5o7smkWZUUMwBCwYmg71u2nQMCZhphFEzaihmt4UDk86e9TYZUsj3OaKNMGJGHcVkWjwoChvZ+7HFfQvZt42vpaJ76Em6SzHbbDBCZR01NFvct519u8yorzXhEcWk2WiESiq1tFrUT901veZrnp1mNFHEWgcYoZJMTe0m98ljn3K+z+f7oB1mtLD5agcZoZJEbZ3Ab0J9deCrwpzSB6004xWbLnegESqJ1NgNok04aFeF+XtA5MF8pA90stkiBxuhkkCtvSBGQL2iEYz415Bys8yIAu/ZZKELjFCJp+Z+EGugTgHrVGq8ClEm2oxZ4CUYAHNcZIRKHOjj6ed8A8eISo15xUaPIcP9spFFk11ohMp0bkOHxrxa5lXo7Ksack9Pvn+YpTqLwS0QDZbxRo+bYgJoBZPAZtCiIVe5QzceZBroXwP8YKfWRH+YdVOx4AOYCOJBt0uMUAz4BGLAVNDjhXvg/bwF2UdTElywLVOoN5o/97hsRv/3HvgAv10fwVuQ6ODtUO45f6HmyaDXi6tDfoMZNKMdJDlwG2ZyN/qVs/mbl5fqDILZoAO8AMkO0j8XvONJhjKLf0TKuqkF4Dl4BlY6QLty1vcGdHE39SvSFrEtBc2gCWywUfcKfjE6eHIxGKkrCleBRvAApNmgOQU8BW2crRG/vDMV1JN0C/WmcmYqZizxeSyMLO/cBG6DOyDDAq3rwRPOyhSfB8PoWtst4DrJMlGnYnwDeMjZ4c0QdGGumhfIsk246LeVtetcfOFyVEQJ8nQv+AkqwThQIqjuDnAV1ILtPo9HlMBaB/kfewCMBfkG6ylL85VnJZSroLt8kRAmTLezOpfUD+W0WQvFnIzfpEePlaeO5oE1OvOVp56+R8KuaWiYZYYMG05tZUgzpBkypBnSDBnSDGmGDGmGDGmGNEOGNEOaIUOa4YH4I8AAM9m8BFEzyDIAAAAASUVORK5CYII=');
    } */

.glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose,
    .glightbox-modern .gprev,
    .glightbox-modern .gnext,
    .glightbox-modern .gclose {
  background-color: rgba(0, 0, 0, 0.12);
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover,
.glightbox-modern .gprev:hover,
.glightbox-modern .gnext:hover,
.glightbox-modern .gclose:hover {
  background-color: rgba(0, 0, 0, 0.20);
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path,
.glightbox-modern .gprev path,
.glightbox-modern .gnext path,
.glightbox-modern .gclose path {
  fill: #fff;
}

.glightbox-clean button:focus:not(.focused):not(.disabled),
.glightbox-modern button:focus:not(.focused):not(.disabled) {
  outline: none;
}

.glightbox-clean .gprev,
.glightbox-modern .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 56px;
}

.glightbox-clean .gnext,
.glightbox-modern .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 56px;
}

.glightbox-clean .gclose,
.glightbox-modern .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
  opacity: .7;
  background-position: -59px 2px;
}

.glightbox-clean .gclose svg,
.glightbox-modern .gclose svg {
  width: 20px;
}

.glightbox-clean .gclose:hover,
.glightbox-modern .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/

.gfadeIn {
  -webkit-animation: gfadeIn .5s ease;
  animation: gfadeIn .5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut .5s ease;
  animation: gfadeOut .5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft .3s ease;
  animation: gslideOutLeft .3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft .3s ease;
  animation: gslideInLeft .3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight .3s ease;
  animation: gslideOutRight .3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight .3s ease;
  animation: gslideInRight .3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn .5s ease;
  animation: gzoomIn .5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut .5s ease;
  animation: gzoomOut .5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d( 0, 0, 0);
    transform: translate3d( 0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d( 0, 0, 0);
    transform: translate3d( 0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 0;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
                .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: calc(100% - 20px);
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 95vh;
  }
  .gslide-description.description-left,
    .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, .92);
  }
  .glightbox-clean .gslide-media,
.glightbox-modern .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .gprev,
.glightbox-modern .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext,
.glightbox-modern .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose,
.glightbox-modern .gclose {
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}


.cc-floating.cc-theme-classic {
    padding: 1.2em;
    border-radius: 5px;
    box-shadow: var(--shadow20)
}

@media only screen and (max-width:57.9375em) {
 
 .cc-floating.cc-theme-classic  { 
    margin: 5px;
  }
}

#cancel-comment-reply-link {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: inherit;
    text-decoration: none;
}

#cancel-comment-reply-link:hover {
    color: #005177;
}

#banner_iteration{
  display: none;
}
.data_filter--sidebar li.is-hidden {
    display: none;
}