
:root {
    --inari-app-primary: #044E80;
    --inari-app-secondary: #76175F;
    --inari-app-blue: #3286E4;
    --inari-app-blue-dark: #1C73D4;
    --inari-app-color: #FFF;
    --inari-app-color-inv: #000;
    --inari-app-bgd: linear-gradient(-45deg, #044E80 0%, #000000 78%);
    --inari-app-box-bgd: linear-gradient(to top right, rgba(19, 66, 106, 0.5), rgba(19, 66, 106, 0.75) 78%);
    --inari-app-disabled: #B5B9BB;
    --inari-app-grey: #4D4F53;
}
body {font-family: 'Source Sans Pro', sans-serif;}
body:before {
    background-image: var(--inari-app-bgd);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: -2;
}
body:after {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-image: url(images/Background-img-big.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* TAMAÑO MOVIL ======================================= */

@media screen and (max-width: 767px) {
  .row {
    display: block;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
  }
}

/* ==================================================== */

.btn-primary {
    color: var(--inari-app-color);
    background-color: var(--inari-app-blue);
    border-color: var(--inari-app-blue);
}
.btn-primary:hover {
    color: var(--inari-app-color);
    background-color: var(--inari-app-blue-dark);
    border-color: var(--inari-app-blue-dark);
}

.contact-form-container {
  /* position: absolute; */
  /* top: 12%; */
  /* top: 64px; */
  /* right: 0; */
  
  position: initial;
  width: 100%;
}

@media screen and (max-width: 1267px) {
  /*
.contact-form-container {
    position: initial;
    width: 100%;
  }
 */
}

@media screen and (max-width: 1200px) {
  .contact-form-container {
    position: initial;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-container {
    /* margin-top: 130px; */
    margin-top: 20px;
  }
}

#contact-form {
    background: rgba(0,38,69,0.80); border-radius: 8px;
    padding: 30px;
    /* margin: 10% auto; */
    margin-bottom: 10%;
    display: block;
    color: var(--inari-app-color);
    overflow: hidden;
}

form label {
	color: var(--inari-app-color);
	font-weight: 600;
	/* 
white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
 */
	display: block;
}
form label.error{color: var(--danger);font-weight: 100;}
inpur.error{border-color:var(--danger);}

.disabled label,.disabled:before,.disabled:after {color:var(--inari-app-grey);}
.disabled.file-upload-wrapper{outline-color:var(--inari-app-grey)}
.was-validated .file-upload-wrapper.bs-invalid{outline-color:var(--danger);color:var(--danger)}

.file-upload-wrapper input {
    padding: 100px 0px 50px;
    margin: 0;
    width: 100% !important;
    opacity: 0;
}

.file-upload-wrapper input:hover {cursor: pointer;}

.file-upload-wrapper label {
    position: absolute;
    top: 10%;
    display: block;
    margin: auto;
    text-align: center;
    width: calc(100% - 30px);
    line-height: normal;
}
.file-upload-wrapper label.file-return{top:unset;bottom:1em;}
.file-upload-wrapper input:focus{
    outline: 2px dashed var(--inari-app-primary);
    outline-offset: -10px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    border: 1px solid var(--inari-app-primary);
 }
.file-upload-wrapper{
    position: relative;
    outline: 2px dashed var(--inari-app-primary);
    outline-offset: -5px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    margin: 15px;
    color: var(--inari-app-blue);
    background: rgba(0,0,0,0.30);
    border-radius: 4px;
    transition: 0.3s all;
}

.file-upload-wrapper.disabled {
  pointer-events: none;
}

.file-upload-wrapper:hover {
  background: var(--inari-app-blue-dark);
  cursor: pointer !important;
  opacity: .8;
  transition: 0.3s all;
}

@media screen and (max-width: 767px) {
  .file-upload-wrapper{
    width: auto;
  }
}

.file-upload-wrapper:after {
    position: absolute;
    pointer-events: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 30%;
    left: 1rem;
    width: calc(100% - 30px);
    content: "\f382";
    display: inline-block;
    margin: auto;
    font-size: 3rem;
    text-align: center;
}
.file-upload-wrapper:before {
    position: absolute;
    bottom: 23%;
    left: 0;
    pointer-events: none;
    width: 100%;
    right: 0;
    content: "Drag and drop a file here or click";
    display: block;
    margin: 0 auto;
    font-weight: 400;
    text-align: center;
}

.input-group-addon .input-prefix{
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 1;
    padding: 4px;
}
.was-validated .input-prefix{display:none}
.input-group-addon{position: relative;color: var(--inari-app-grey);padding-left: 5px;padding-right: 0px;}
.input-group-addon input {padding-right: 2em;}

@media screen and (max-width: 992px) {
  .file-upload-wrapper:after {
    top: 45%;
    font-size: 2rem;
  }
  .file-upload-wrapper:before {
    bottom: 5px;
    padding: 5px;
  }
}

@media screen and (max-width: 767px) {
  .file-upload-wrapper:after {
    top: 30%;
    font-size: 3rem;
  }
  .file-upload-wrapper:before {
    bottom: 23%;
    padding: 0px;
  }
}

.btn-group.col:not(.btn-group-toggle) {flex-flow: column;}

/*
Make bootstrap-select work with bootstrap 4 see:
https://github.com/silviomoreto/bootstrap-select/issues/1135
*/
.bootstrap-select.open .dropdown-menu{display:block;max-height: 300px !important;}
.dropdown button{width: 100%;}
.dropdown .dropdown-menu.show {width:100%;}
.dropdown:not(.countrypicker) .dropdown-menu.show {width: calc(100% - 30px);}
.dropdown-menu.inner {position:relative; top:0}
ul.dropdown-menu {border:none}
.bootstrap-select.countrypicker{width: 100%!important}
.filter-option {display: inline-block;width: 100%;}
.dropdown-toggle.btn-default {
  color: #292b2c;
  background-color: #fff;
  border-color: var(--inari-app-grey);
}
.bootstrap-select.show > .dropdown-menu > .dropdown-menu {
  display: block;
}
.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden {
  display: none;
}
.bootstrap-select > .dropdown-menu > .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 3px 1.5rem;
  clear: both;
  font-weight: 400;
  color: #292b2c;
  text-align: inherit;
  white-space: nowrap;
  background: 0 0;
  border: 0;
  text-decoration: none;
}
.bootstrap-select > .dropdown-menu > .dropdown-menu li a:hover {
  background-color: #f4f4f4;
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
}
.dropdown-menu > li.active > a {
  color: #fff !important;
  background-color: #337ab7 !important;
}
.bootstrap-select .check-mark {
  line-height: 14px;
}
.bootstrap-select .check-mark::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
}
.bootstrap-select button {
  overflow: hidden;
  text-overflow: ellipsis;
}
.info {padding: 0px 15px 15px 15px; text-align:center;font-weight: 100;}

/* Make filled out selects be the same size as empty selects */
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: blo !important;
}
.was-validated .countrypicker button{
    border-color: #28a745;
    padding-right: calc(.75em + 2.3125rem);
    background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
    background-repeat: no-repeat;
    background-position: right calc(.375em + 1.1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.was-validated .countrypicker button.bs-invalid {
    border-color: #dc3545;
    padding-right: calc(.75em + 2.3125rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + 1.1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.was-validated .countrypicker button:after{
    margin-left: 1.8rem;
}

form h3{font-weight: 600;font-size: 1.4rem;position: relative;padding-left: 8px;text-transform: none;}
form h3::before {content:'';width: 4px;height: calc(100% - 6px);background-color: var(--inari-app-blue);display: block;position: absolute;left: 0;margin: 2px 0;border-radius: 2px;overflow: hidden;}
.form-group.row {max-width: 100%;margin-left: auto;margin-right: auto;}

.form-control:disabled, .form-control[readonly] {
    background-color: var(--inari-app-disabled);
    opacity: .8;
    color: var(--inari-app-grey);
}
header {
    /* position: fixed; */
    height: 82px;
    width: 100%;
    top: 0;
}
.branding {
    height: 100%;
    /* width: 200px; */
    width: 100%;
    /* padding: 15px; */
    padding: 15px 26px 1px 26px;
    /* margin: 0 17px; */
    margin: 0;
	position: relative;
	display: flex;
    align-items: center;
}

.hide-form .branding {
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1200px) {
	header {
    	position: initial;
    }
    
	.branding {
		justify-content: space-between;
		align-items: center;
	}

	section h1 br {
		/* display: none; */
	}
}

.branding .logo.eca {
	margin-left: 32px;
}

.branding .logo {
    display: inline-block;
}

.branding .logo.fifa img {
    width: 242px;
}

.branding .logo.eca img {
    width: 252px;
}

@media screen and (max-width: 767px) {
	.branding {
		height: 64px;
    	padding: 0px 20px 1px 20px;
	}

	/* 
.branding .logo.fifa img {
		width: 64px;
	}

	.branding .logo.eca img {
		width: 126px;
	}
 */
}

form {position: relative}
form section {
  padding: 1em;
  /* position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%) */
}
form preloader {display: none;}

form.sending>.form-group,
form.sending>h3,
form.sending>input,
form.sending .info {opacity:.2}

form.sending preloader {
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #ffffff42;
    display: flex;
    position: absolute;
}
form.sending preloader svg {
    height: 50vh;
    width: 50vw;
    margin: auto;
}

.col-center {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    display: flex;
    align-items: center;
}
.col-center section {
  padding: 1em 0;
  /* position: fixed; */
  /* top: 25%; */
  /* top: 12%; */
  /* top: 64px; */
  /* width: 36%; */
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.hide-form .col-center section {
  max-width: 100%;
}

.hide-form .col-center section {
  width: 100%;
}

@media screen and (max-width: 1267px) {
  /*
.col-center section {
    position: initial;
  }
 */
  /*
.col-center section h1 br {
    display: none !important;
  }
 */
}

@media screen and (max-width: 1200px) {
  .col-center section {
    padding: 1em 26px;
    position: initial;
    width: 100%;
  }
  #contact-form {
    margin-top: 36px;
  }
}

@media screen and (max-width: 767px) {
  .col-center section {
    /* margin-top: 120px; */
    margin-top: 0px;
  }
  /*
.col-center section h1 br {
    display: inline-block !important;
  }
 */
}

.col-center section h1 {
    /* font-size: 68px; */
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0;
    line-height: normal;
    /*text-shadow: 0 2px 4px #044E80;*/
}

.col-center section h3 {
    /* font-size: 28px; */
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    text-align: left;
    /*text-shadow: 0 2px 4px #044E80;*/
    margin-top: 2em
}

/* 
@media (max-width: 1330px) {
	.col-center section h1 {
    	font-size: 56px;
	}
}
 */

@media (max-width: 767px) {
	.col-center section h1 {
    	font-size: 32px;
	}
}


section button {margin-top:0}

.daterangepicker .calendar-table {background-color:transparent;border:none}
.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {border-color:var(--inari-app-color)}
.daterangepicker {background-color:var(--inari-app-primary);border-color: transparent;color: var(--inari-app-color);}
.daterangepicker:after{border-bottom-color:var(--inari-app-primary);}
.daterangepicker:before {border-bottom-color:transparent;}
.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {background-color:transparent}
.daterangepicker td.active, .daterangepicker td.active:hover {background-color: var(--inari-app-secondary);}
.daterangepicker td.in-range {background-color: var(--inari-app-blue-dark);color: var(--inari-app-color);}
.daterangepicker {font-family: 'Source Sans Pro';}
.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    border: none;
    background-color: transparent;
    font-family: 'Source Sans Pro';
    font-size: 1.5em;
    color: inherit;
    font-weight: 100;
}

.daterangepicker .drp-buttons .btn {color: inherit;background-color: var(--inari-app-grey);font-weight: 400;padding: .5em 3em;}
.daterangepicker .drp-buttons .btn.btn-primary {
    color: var(--inari-app-color);
    background-color: var(--inari-app-blue);
    border-color: var(--inari-app-blue);
}

.hide-form .col-center {
    max-width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-height: 75vh;
}

.hide-form .col-center section h1{
    font-size: 86px;
    line-height: 96px;
}

@media screen and (max-width: 1200px) {
  .hide-form .col-center section h1{
    font-size: 64px;
    line-height: 74px;
   }
}

@media screen and (max-width: 893px) {
  .hide-form .col-center section h1{
    font-size: 46px;
    line-height: 56px;
   }
}


@media screen and (max-width: 767px) {
	.hide-form .col-center section h1{
		font-size: 32px;
		line-height: 42px;
	}
}

.hide-form #contact-form{display:none}
.hide-form .col-center {position: absolute;top: 0;left: 0;right: 0;bottom: 0;}
.hide-form .col-center section {
  padding: 2em;
  position: absolute;
  top: 25%;
  /* left: 50%; */
  /* margin-right: -50%; */
  /* transform: translate(-50%, -50%); */
}
.hide-form .col-center section br.hide_cover {
    display: none;
}

@media (max-width: 1200px) {
    body {
    	/* margin-top: 82px; */
    	margin-top: 12px;
    }
    .col-center {
        max-width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-height: 25vh;
    }
    .col-center section h3{margin-top: 1em}
}

.terms_container {
  width: 100%;
  text-align: center;
  padding: 15px;
}

input[type=checkbox], input[type=radio] {
  margin-right: 5px;
}

.terms_container a {
  color: var(--inari-app-blue);
  text-decoration: underline;
  transition: 0.3s all;
}
.terms_container a:hover {
  color: var(--inari-app-blue-dark);
  text-decoration: none;
  transition: 0.3s all;
}
.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {color: var(--inari-app-disabled);text-align: left;}

.form-control::placeholder,
.custom-select:invalid,
.custom-select option:disabled {color: var(--inari-app-disabled);}

.form-control,
.custom-select option:not(:disabled){color:var(--inari-app-grey);}



/* COLORES FORMULARIO ECA */
.btn-primary {
    background-color: #339137;
    border-color: #339137;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus,
.btn-primary.focus,
.btn-primary:focus {
	box-shadow: 0 0 0 0.2rem rgba(18,88,56,.5);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
    background-color: #257724;
    border-color: #257724;
}

.col-center section h1 {
	/*text-shadow: 0 2px 4px #257724;*/
}

.file-upload-wrapper {
    color: #339137;
    outline: 2px dashed #339137;
}

.file-upload-wrapper:hover {
    background: #257724;
}

form h3::before {
    background-color: #339137;
}

/*
#contact-form {
    background: rgba(18,88,56,.8);
}
 */
 
.terms_container a {
    color: #339137;
}

.terms_container a:hover {
    color: #257724;
}
