/* 
Theme Name:      Darupalooza
Theme URI:       https://www.ingenima.com/
Description:     Darupalooza is a child theme of Blacklight
Author:          Ingenima
Template:        blacklight
Version:         1.0.0
Text Domain:     Darupalooza
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# General
    ## Reset
    ## Selection
    ## BG Colors
    ## Text Colors
    ## iFrame
    ## Buttons
    ## Typography
    ## Right Image
    ## Elements
# Nav
# Modal
    ## Boton
# Heros
# GF
# Especial CSS
# Form
    ## Landing
    ## Forms
# Footer

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --main-red: #D9043D;
  --main-blue: #003a78;
}

/*******
## Reset
*******/

html,
body {
  height:100%;
}

.post,
.page {
  margin: 0 !important;
}

/*******
## Selection
*******/

::-moz-selection {
  background: rgb(9 1 38 / 90%);
  color:#fff
}

::selection {
  background: rgb(9 1 38 / 90%);
  color:#fff
}

/*******
## BG Colors
*******/

/* 
  ### Main Colors 
*/


/* 
  ### Secondary Colors 
*/


/*******
## Text Colors
*******/

/* 
  ### Main Colors 
*/

.darupalooza-red {
  color:#D9043D;
}


/* 
  ### Secondary Colors 
*/



/*******
## iFrame
*******/

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*******
## Buttons
*******/

.blm-btn,
.gform_button,
#bs4navbar > ul > li:last-child a {
    font-size: 17px;
    color: #fff !important;
    background-color: #D9043D;
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    text-decoration: none;
    outline: none;
    border: 3px solid transparent;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.04);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.04);
    cursor: pointer;
    display: inline-block;
    letter-spacing: .025em;
    margin-bottom: 0;
    padding: 5px 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blm-btn:hover,
.gform_button:hover,
#bs4navbar > ul > li:last-child a:hover {
    color: #000 !important;
    background-color:#fff;
    border: 3px solid #000 !important;
}

/*
  ## btn secondary
*/


.wpcf7-submit {
  color:#fff !important;
  border:3px solid #000;
}

.wpcf7-submit:hover {
  color:#000 !important;
  border:3px solid #000 !important;
  background-color:#fff;
}

.video-btn,
.blm-btn,
.wpcf7-submit {
  -webkit-appearance: none !important; /*Safari/Chrome*/
  -moz-appearance: none !important; /*Firefox*/
  -ms-appearance: none !important; /*IE*/
  -o-appearance: none !important; /*Opera*/
  appearance: none !important;
}


/*******
## Typography
*******/

body,
button,
input,
select,
optgroup,
textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: montserrat,sans-serif;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-weight: 400;
  font-style: normal;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-size:16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-style: normal;
  font-family: gastromond, sans-serif;

}

h1 {
  font-size: 55px;
}

h2 {
  font-size:30px;
}

h3 {
  font-size: 1.4em;
  font-weight: 400;
  color:var(--main-orange, eb871e)
}

/*******
## Right Image
*******/
.alignright {
  max-width: 260px;
  height: auto;
  display: inline;
  float: right;
}

/*******
## Elements
*******/
#removeSticky {
  position:relative;
  top:-400px;
}

.img-h100 {
  max-height:inherit !important;
}

.img-img {
  border-radius:20px;
  -webkit-box-shadow: 0px 0px 12px 5px rgba(0,0,0,0.2); 
  box-shadow: 0px 0px 12px 5px rgba(0,0,0,0.2);
}

/*--------------------------------------------------------------
# Shapes
--------------------------------------------------------------*/

.bg-textura {
  background-image: url("img/textura.jpg");
  background-repeat:repeat;
  background-size:auto
}

.bg-footer {
  background-image: url("img/footer.jpg");
  background-repeat:no-repeat;
  background-size:100%;
  background-position: bottom center ;
  min-height:120vh;
}

/*--------------------------------------------------------------
# Nav
--------------------------------------------------------------*/

#menu ul li {
  padding:0px 10px;
}

.admin-bar .ini-navbar.fixed-top {
  top:32px;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

#cf-basic br {
  display:none;
}

.modal-dialog {
  max-width: 500px;
}

.modal-header h3 {
  margin-bottom:0 !important;
}

.modal-header button {
  line-height:1em !important;
}

.modal-body h3,
.modal-body p {
  font-size:20px !important;
}

.modal-body img {
  max-width:300px;
  margin-top:25px;
}

/* Aparicion */
.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translafteX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Comp - Flybox
--------------------------------------------------------------*/
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  padding: 16px 20px !important;
  border: none;
  border-radius:10px 0 0 10px;
  cursor: pointer;
  position: fixed;
  bottom: 50%;
  right: -100px;
  width: 120px;
  color:#fff;
  z-index:999;
  outline:none;
  font-size:18px;
}

.open-button:focus  {
  outline:none;
}

/* The popup form - hidden by default */
.form-popup {
  padding: 16px 20px;
  border: none;
  border-radius:10px 0 0 10px;
  position: fixed;
  bottom: 50%;
  transform:translateY(50%);
  color:#fff;
  z-index: 99999999;
  width:100%;
  max-width:600px;
}

.form-popup > div:last-child {
  border-left:1px solid #fff;
}

.modal.show .dialog-flybox {
  -webkit-transform: inherit;
  transform: inherit;
}

.modal.fade .dialog-flybox {
  transition: inherit;
  transition: inherit;
  transition: inherit;
  -webkit-transform: inherit;
  transform: inherit;
}

/*--------------------------------------------------------------
# Heros
--------------------------------------------------------------*/

.darupalooza-hero {
  min-height:calc(100vh - 110px);
}

.hero-img  {
  height:100%;
}

/*--------------------------------------------------------------
# GF
--------------------------------------------------------------*/

/* 
  ### Font
*/

.eide_wrapper .gfield_label, /*General*/
.eide_wrapper .select-selected, /*Select*/
.eide_wrapper .select-items,
.eide_wrapper input[type='text'],
.eide_wrapper input[type='email'],
.eide_wrapper textarea,
.eide_wrapper select {

}

/*
  ### General
*/

.eide_wrapper .gfield {
  position: relative;
}

/* Input */
.eide_wrapper .gfield input:not(.gfield-choice-input) {
  transition: .1s all linear;
  width:100% !important;
}

/* Border Color Not Active */
.eide_wrapper .gfield input,
.eide_wrapper .gfield textarea {
  border: 2px solid #ddd;
}

/* Border Color Active */
.eide_wrapper .gfield.active input,
.eide_wrapper .gfield.active textarea {
  border: 2px solid #00d07e;
}

/* Padding */
.eide_wrapper .gfield input ,
.eide_wrapper .gfield.active input,
.eide_wrapper .gfield textarea ,
.eide_wrapper .gfield.active textarea
.eide_wrapper .gfield select
.eide_wrapper .gfield.active select{
  padding:15px 0 0 10px!important;
}

/* Label */
.eide_wrapper .gfield:not(.ev-select) label {
  position: absolute;
  top: 8px;
  left: 10px;
  color: #555;
  transition: .1s all linear;
  cursor: text;
  font-weight:400 !important;
  padding:0 5px;
}

/* Label font size active */
.eide_wrapper .gfield.active .gfield_label,
.eide_wrapper .gfield_required{
  font-size:9px !important;
}

/*
  ## Pagina de contacto
*/
.ev-select .gfield_label,
.eide_wrapper legend.gfield_label {
  color:#fff !important;
}

.eide_wrapper .gfield.active label {
  top: 3px;
  left:10px;
  z-index:99;
  color:#8c8c8c;
}


/*
  ### Tooltip
*/

.gf_tooltip {
  position:relative;
}

.gf_tooltip label {
  display:none !important;
}

.gf_tooltip .gravity-tooltip {
  position:absolute;
  z-index:99;
  right:0;
  top:10px;
}

/*
  ### Select
*/

.eide_wrapper .ev-select label {
  margin-bottom:0;
}

.eide_wrapper .ginput_container_select {
  margin-top:0 !important;
}

.eide_wrapper .gform_footer {
  margin-top:0px !important;
  padding:0 !important;
}

/*
  ## Select
*/
/*
  ### Select
*/

.eide_wrapper .ev-select label {
  margin-bottom:0;
}

.eide_wrapper .ginput_container_select {
  margin-top:0 !important;
}

.eide_wrapper .gform_footer {
  margin-top:10px !important;
  padding:0 !important;
}

/*
  ## Select
*/

/* Oculta la flecha por defecto*/
.eide_wrapper select,
.eide_wrapper select {
  -webkit-appearance: none !important;
  appearance: none !important;
}

.eide_wrapper .ginput_container_select {
  position: relative;
}

.eide_wrapper .ginput_container_select select {
  border: 1px solid #dfdfdf !important;
  background-color:#fff;
  color:#555 !important;
  width:100% !important;
  border-radius:5px;
}

.eide_wrapper .ginput_container_select:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position:absolute;
}

.eide_wrapper .ginput_container_select:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  top:4px;
  right:12px;
  position: absolute;
}

.eide_wrapper .gfield_checkbox input[type=checkbox],
.eide_wrapper .gfield_radio input[type=radio] {
    opacity: 0;
    position: absolute;   
}

.eide_wrapper .gfield_checkbox input[type=checkbox] + label,
.eide_wrapper .gfield_radio input[type=radio] + label{
    position: relative;
    overflow: hidden;
    padding: 5px 0px 5px 30px;
    cursor: pointer;
    display: inline-block;
    font-weight:400;
    border-bottom:1px solid transparent;
    margin-bottom:0 !important;
    width:100%;
    color:#fff;
}

.eide_wrapper .gfield_checkbox input[type=checkbox] + label:before,
.eide_wrapper .gfield_checkbox input[type=checkbox] + label:after,
.eide_wrapper .gfield_radio input[type=radio] + label:before,
.eide_wrapper .gfield_radio input[type=radio] + label:after {
    content: '';
    position: absolute;
    left: 0;
    z-index: 1;
    -webkit-transition: .2s;
    transition: .2s;
    top:80px !im;
}

/* ### After */

.eide_wrapper .gfield_checkbox input[type=checkbox]:not(:checked) + label:after,
.eide_wrapper .gfield_radio input[type=radio]:not(:checked) + label:after  {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    top: 7px;
}

.eide_wrapper .gfield_checkbox input[type=checkbox]:checked + label:after,
.eide_wrapper .gfield_radio input[type=radio]:checked + label:after {
    top: 7px;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid #fff;
    background-color: #fff;
}
/* Checkboxs */
.eide_wrapper .gfield_checkbox input[type=checkbox]:not(:checked) + label:after {
    border-radius:3px;
}

.eide_wrapper .gfield_checkbox input[type=checkbox]:checked + label:after {
    border-radius: 3px
}

/* Radio */
.eide_wrapper .gfield_radio input[type=radio]:not(:checked) + label:after {
    border-radius:50%;
}

.eide_wrapper .gfield_radio input[type=radio]:checked + label:after {
    border-radius: 50%;
    background-color:#fff;
    border:2px solid #26a69a
}

/* ### Before */

/* Checkboxs */
.eide_wrapper .gfield_checkbox input[type=checkbox]:not(:checked) + label:before{
    width: 0;
    height: 0;
    border: 3px solid transparent;
    left: 6px;
    top: 10px;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.eide_wrapper .gfield_checkbox input[type=checkbox]:checked + label:before{
    top: 10px;
    left: 2px;
    width: 6px;
    height: 10px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

/* Radio */
.eide_wrapper .gfield_radio input[type=radio]:not(:checked) + label:before{
    top: 7px;
    left: 2px;
    width: 6px;
    height: 10px;
    background-color:#fff;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.eide_wrapper .gfield_radio input[type=radio]:checked + label:before{
    top: 8px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius:50%;
    background-color:#26a69a;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

body #gform_wrapper_1 .gform_body .gform_fields .gfield select:not(#input_1_31) {
  border: 1px solid #dfdfdf;
  background-color:#fff;
  color:#ff00f;
  padding:10px;
  width:100%;
  border-radius:5px;
}

/*--------------------------------------------------------------
# Especial CSS
--------------------------------------------------------------*/

.vidContainer {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 5%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.embed-container {
  position: relative;
  height: 0;
  overflow: hidden;
}

.embed-container-video {
  padding-bottom: 56.25%;
}

.embed-container-map {
  padding-bottom: 30%;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chevron-hero {
  position:absolute;
  left:50%;
  bottom:0;
  font-size:30px;
}

/*
    ## Pulse
*/
.pulse {
    -webkit-animation-name: pulse;
    animation-iteration-count: infinite;
    animation-name: pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.20, 1.20, 1.20);
        transform: scale3d(1.20, 1.20, 1.20);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
        50% {
        -webkit-transform: scale3d(1.20, 1.20, 1.20);
        transform: scale3d(1.20, 1.20, 1.20);
    }
        100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
} 

.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select {
    max-width: 100%;
    height: 25px;
    width: 25px;
}

.gform_wrapper,
.gform_wrapper label{
  font-size:20px !important;
}

.gform_wrapper .gchoice {
  padding:10px 0;
}