/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
VARIABLES
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
BODY
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 87, sass/sass/main.scss */
body, html {
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004) !important;
  background-color: #f1f1f1;
}

/* line 97, sass/sass/main.scss */
::selection {
  background: #0586ff;
  color: #fff;
  text-shadow: none;
}

/* line 103, sass/sass/main.scss */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: 'Roboto', sans-serif;
}

/* line 106, sass/sass/main.scss */
::-moz-placeholder {
  /* Firefox 19+ */
  font-family: 'Roboto', sans-serif;
}

/* line 109, sass/sass/main.scss */
:-ms-input-placeholder {
  /* IE 10+ */
  font-family: 'Roboto', sans-serif;
}

/* line 112, sass/sass/main.scss */
:-moz-placeholder {
  /* Firefox 18- */
  font-family: 'Roboto', sans-serif;
}

/* line 116, sass/sass/main.scss */
.iconos-svg {
  width: 24px;
  height: 24px;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
FLASH
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 127, sass/sass/main.scss */
.flash {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 450;
}
/* line 134, sass/sass/main.scss */
.flash .content-flash {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
/* line 142, sass/sass/main.scss */
.flash .content-flash .aviso {
  font-size: 2rem;
  color: #fff;
  font-family: 'Aldakin-Bold', sans-serif;
  letter-spacing: 1px;
}
/* line 149, sass/sass/main.scss */
.flash .content-flash .close-flash {
  margin-left: 20px;
  font-weight: 200;
  cursor: pointer;
}

/* line 157, sass/sass/main.scss */
.flash_success {
  background-color: #2AAF74;
}

/* line 161, sass/sass/main.scss */
.flash_wrong {
  background-color: #F95959;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NAV
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 171, sass/sass/main.scss */
nav {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  z-index: 200;
  background-color: #fff;
}
/* line 183, sass/sass/main.scss */
nav .nav_left {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* line 187, sass/sass/main.scss */
nav .nav_left .main_logo {
  width: 180px;
  height: 60px;
  background-image: url("../img/brand.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 130px;
  padding: 22px;
  background-color: #0586ff;
}
/* line 198, sass/sass/main.scss */
nav .nav_left .btn_box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  margin-left: 30px;
}
/* line 203, sass/sass/main.scss */
nav .nav_left .btn_box .btn_element {
  height: 60px;
  padding-top: 21px;
  font-size: 1.6rem;
  margin-right: 30px;
  color: #333;
  opacity: 0.5;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
/* line 213, sass/sass/main.scss */
nav .nav_left .btn_box .btn_element:hover {
  opacity: 0.75;
  border-bottom: 2px solid #ccc;
}
/* line 218, sass/sass/main.scss */
nav .nav_left .btn_box .btn_element_on {
  opacity: 1;
  color: #0586ff;
  border-bottom: 4px solid #0586ff;
}
/* line 224, sass/sass/main.scss */
nav .nav_left .btn_box .btn_element_on:hover {
  opacity: 1;
  color: #0586ff;
  border-bottom: 4px solid #0586ff;
}
/* line 232, sass/sass/main.scss */
nav .language_contact {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
/* line 239, sass/sass/main.scss */
nav .language_contact form select {
  height: 30px;
  color: #999;
  margin-right: 12px;
  -webkit-appearance: none;
  width: 58px;
  font-size: 1.4rem;
  border: none;
  outline: none;
  padding: 5px;
  background-color: transparent;
  background-image: url("../img/ico_drop_down.svg");
  background-position: right;
  background-size: 18px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
}
/* line 258, sass/sass/main.scss */
nav .language_contact i {
  padding: 18px 18px 17px 20px;
  background-color: #fff;
  color: #0586ff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
/* line 266, sass/sass/main.scss */
nav .language_contact i:hover {
  background-color: #0586ff;
  color: #fff;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NAV
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 279, sass/sass/main.scss */
.nav_backend {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  z-index: 200;
  background-color: #0079eb;
}
/* line 291, sass/sass/main.scss */
.nav_backend .nav_left {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* line 295, sass/sass/main.scss */
.nav_backend .nav_left .main_logo {
  width: 180px;
  height: 60px;
  background-image: url("../img/brand.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 130px;
  padding: 22px;
  background-color: #0586ff;
}
/* line 306, sass/sass/main.scss */
.nav_backend .nav_left .btn_box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  margin-left: 30px;
}
/* line 311, sass/sass/main.scss */
.nav_backend .nav_left .btn_box .btn_element {
  height: 60px;
  padding-top: 21px;
  font-size: 1.6rem;
  margin-right: 30px;
  color: #fff;
  opacity: 0.5;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  font-weight: 500;
  letter-spacing: 0.3px;
}
/* line 323, sass/sass/main.scss */
.nav_backend .nav_left .btn_box .btn_element:hover {
  opacity: 0.75;
  border-bottom: 2px solid #fff;
}
/* line 328, sass/sass/main.scss */
.nav_backend .nav_left .btn_box .btn_element_on {
  opacity: 1;
  color: #fff;
  border-bottom: 4px solid #fff;
}
/* line 334, sass/sass/main.scss */
.nav_backend .nav_left .btn_box .btn_element_on:hover {
  opacity: 1;
  color: #fff;
  border-bottom: 4px solid #fff;
}
/* line 342, sass/sass/main.scss */
.nav_backend .language_contact {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
/* line 349, sass/sass/main.scss */
.nav_backend .language_contact form select {
  height: 30px;
  color: #fff;
  margin-right: 12px;
  -webkit-appearance: none;
  width: 58px;
  font-size: 1.4rem;
  border: none;
  outline: none;
  padding: 5px;
  background-color: transparent;
  background-image: url("../img/ico_drop_down_w.svg");
  background-position: right;
  background-size: 18px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
}
/* line 368, sass/sass/main.scss */
.nav_backend .language_contact i {
  padding: 18px 18px 18px 20px;
  background-color: #0079eb;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
/* line 376, sass/sass/main.scss */
.nav_backend .language_contact i:hover {
  background-color: #fff;
  color: #0586ff;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
BTN
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 390, sass/sass/main.scss */
.btn_normal {
  cursor: pointer;
  font-size: 1.4rem;
  padding: 8px 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #0586ff;
  color: #0586ff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #fff;
}

/* line 401, sass/sass/main.scss */
.btn_normal:hover {
  border-color: #006cd1;
  background-color: #0586ff;
  color: #fff;
}

/* line 407, sass/sass/main.scss */
.btn_main {
  cursor: pointer;
  font-size: 1.4rem;
  padding: 8px 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #006cd1;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #0586ff;
}

/* line 418, sass/sass/main.scss */
.btn_main:hover {
  border-color: #006cd1;
  background-color: #006cd1;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
POP_GENERICOS
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 429, sass/sass/main.scss */
.pop_container {
  position: absolute;
  z-index: 400;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
/* line 436, sass/sass/main.scss */
.pop_container .pop_canvas {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* line 442, sass/sass/main.scss */
.pop_container .pop_canvas_out {
  -ms-transform: translate(0px, 70px);
  /* IE 9 */
  -webkit-transform: translate(0px, 70px);
  /* Safari */
  transform: translate(0px, 70px);
  opacity: 0;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
POP_PDF
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 456, sass/sass/main.scss */
#pop_pdf {
  padding: 50px;
}
/* line 459, sass/sass/main.scss */
#pop_pdf #pop_pdf_canvas {
  width: 100%;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}
/* line 464, sass/sass/main.scss */
#pop_pdf #pop_pdf_canvas .pdf_conditions {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* line 469, sass/sass/main.scss */
#pop_pdf #pop_pdf_canvas .pdf_conditions .pdf_info {
  font-size: 1.4rem;
  margin-top: 20px;
  color: #fff;
  opacity: 0.8;
}
/* line 476, sass/sass/main.scss */
#pop_pdf #pop_pdf_canvas .pdf_conditions .btn_main {
  margin-top: 20px;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
POP_CONTACTO
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 489, sass/sass/main.scss */
#pop_contact {
  display: none;
}
/* line 492, sass/sass/main.scss */
#pop_contact #pop_contact_canvas {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* line 497, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box {
  width: 500px;
  height: auto;
  padding: 50px;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -ms-transform: translate(0px, 70px);
  /* IE 9 */
  -webkit-transform: translate(0px, 70px);
  /* Safari */
  transform: translate(0px, 70px);
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* line 509, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box .pop_header {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 30px;
}
/* line 517, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box .pop_header .title_header {
  font-size: 2.4rem;
}
/* line 521, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box .pop_header i {
  opacity: 0.5;
  cursor: pointer;
}
/* line 526, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box .pop_header i:hover {
  opacity: 1;
}
/* line 531, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box .title_data {
  font-size: 1.2rem;
  margin-bottom: 10px;
  opacity: 0.5;
}
/* line 537, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box .data_data {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #333;
}
/* line 543, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box .data_data:last-child {
  margin-bottom: 0px;
}
/* line 547, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_box a:hover {
  color: #0586ff;
  text-decoration: underline;
}
/* line 553, sass/sass/main.scss */
#pop_contact #pop_contact_canvas .pop_canvas_in {
  -ms-transform: translate(0px, 0px);
  /* IE 9 */
  -webkit-transform: translate(0px, 0px);
  /* Safari */
  transform: translate(0px, 0px);
  opacity: 1;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CONTAINER
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 569, sass/sass/main.scss */
.container {
  width: 100%;
  padding-top: 60px;
}
/* line 573, sass/sass/main.scss */
.container .header_researcher {
  max-width: 1100px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  margin-bottom: -35px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}
/* line 589, sass/sass/main.scss */
.container .header_researcher .header_left {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
/* line 594, sass/sass/main.scss */
.container .header_researcher .header_left .title_researcher {
  font-size: 2.4rem;
  font-weight: 100;
}
/* line 599, sass/sass/main.scss */
.container .header_researcher .header_left .title_evaluation {
  font-size: 2.4rem;
  margin-left: 20px;
  opacity: 0.35;
}
/* line 605, sass/sass/main.scss */
.container .header_researcher .header_left .element_conditions {
  font-size: 1.2rem;
  padding: 8px 14px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #888;
  margin-left: 20px;
}
/* line 616, sass/sass/main.scss */
.container .header_researcher .header_left .element_conditions_not_accepted {
  border-color: #ee5b5b;
  color: #ee5b5b;
}
/* line 621, sass/sass/main.scss */
.container .header_researcher .header_left .element_conditions_accepted {
  border-color: #57c4b9;
  color: #57c4b9;
}
/* line 628, sass/sass/main.scss */
.container .content {
  max-width: 1100px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 100px;
  /*
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  INDEX
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  */
  /*
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  FORMULARIO
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  */
}
/* line 645, sass/sass/main.scss */
.container .content .header_content {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}
/* line 653, sass/sass/main.scss */
.container .content .header_content .header_left {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
/* line 658, sass/sass/main.scss */
.container .content .header_content .header_left .title_header {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-right: 20px;
}
/* line 665, sass/sass/main.scss */
.container .content .header_content .header_left .element_fecha {
  font-size: 1.2rem;
  padding: 8px 14px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #888;
  margin-right: 10px;
}
/* line 678, sass/sass/main.scss */
.container .content .table_content {
  width: 100%;
  height: auto;
  padding: 30px;
}
/* line 683, sass/sass/main.scss */
.container .content .table_content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e8e8e8;
  font-size: 1.4rem;
}
/* line 691, sass/sass/main.scss */
.container .content .table_content table thead tr {
  height: 30px;
  background-color: #e8e8e8;
}
/* line 695, sass/sass/main.scss */
.container .content .table_content table thead tr td {
  padding: 0px 10px;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  opacity: 0.75;
}
/* line 704, sass/sass/main.scss */
.container .content .table_content table tbody {
  cursor: pointer;
}
/* line 707, sass/sass/main.scss */
.container .content .table_content table tbody tr {
  height: 35px;
  border-bottom: 1px solid #e8e8e8;
}
/* line 711, sass/sass/main.scss */
.container .content .table_content table tbody tr td {
  padding: 0px 10px;
}
/* line 715, sass/sass/main.scss */
.container .content .table_content table tbody tr .options {
  padding: 10px;
  height: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  justify-content: flex-end;
}
/* line 722, sass/sass/main.scss */
.container .content .table_content table tbody tr .options a {
  width: 16px;
  height: 16px;
  opacity: 0.25;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  float: rigth;
  cursor: pointer;
}
/* line 731, sass/sass/main.scss */
.container .content .table_content table tbody tr .options .more_info {
  background-image: url("../img/more_info.svg");
}
/* line 735, sass/sass/main.scss */
.container .content .table_content table tbody tr .options .download {
  background-image: url("../img/ico_download.svg");
  margin-left: 8px;
}
/* line 740, sass/sass/main.scss */
.container .content .table_content table tbody tr .options .delete {
  background-image: url("../img/ico_delete.svg");
  margin-left: 8px;
}
/* line 745, sass/sass/main.scss */
.container .content .table_content table tbody tr .options .edit {
  background-image: url("../img/ico_edit.svg");
  margin-left: 8px;
}
/* line 750, sass/sass/main.scss */
.container .content .table_content table tbody tr .options a:hover {
  opacity: 0.75;
}
/* line 756, sass/sass/main.scss */
.container .content .table_content table tbody tr:hover {
  background-color: #fafcff;
}
/* line 769, sass/sass/main.scss */
.container .content .form_content {
  width: 100%;
  height: auto;
  padding: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/* line 775, sass/sass/main.scss */
.container .content .form_content label {
  width: 50%;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 5px;
  opacity: 0.50;
}
/* line 783, sass/sass/main.scss */
.container .content .form_content input[type="text"], .container .content .form_content input[type="number"], .container .content .form_content input[type="password"] {
  width: 50%;
  font-size: 1.8rem;
  padding: 15px 0px;
  font-size: 1.8rem;
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
/* line 795, sass/sass/main.scss */
.container .content .form_content input[type="text"]:focus, .container .content .form_content input[type="number"]:focus, .container .content .form_content input[type="password"]:focus {
  border-color: #0586ff;
}
/* line 799, sass/sass/main.scss */
.container .content .form_content textarea {
  resize: none;
  height: 135px;
  width: 100%;
  font-size: 1.8rem;
  padding: 15px;
  margin-top: 15px;
  font-size: 1.8rem;
  border: none;
  border: 1px solid #f1f1f1;
  outline: none;
  background-color: #f1f1f1;
  margin-bottom: 30px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
/* line 816, sass/sass/main.scss */
.container .content .form_content textarea:last-child {
  margin-bottom: 0px;
}
/* line 820, sass/sass/main.scss */
.container .content .form_content textarea:focus {
  border: 1px solid #0586ff;
  background-color: #fff;
}
/* line 825, sass/sass/main.scss */
.container .content .form_content select {
  -webkit-appearance: none;
  width: 50%;
  font-size: 1.8rem;
  padding: 15px 10px 15px 0px;
  font-size: 1.8rem;
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin-bottom: 30px;
  background-color: transparent;
  background-image: url("../img/ico_drop_down.svg");
  background-position: right;
  background-size: 24px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
/* line 843, sass/sass/main.scss */
.container .content .form_content .box_date {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 50%;
}
/* line 848, sass/sass/main.scss */
.container .content .form_content .box_date .select_day, .container .content .form_content .box_date .select_year {
  width: 25%;
}
/* line 852, sass/sass/main.scss */
.container .content .form_content .box_date .select_month {
  width: 48%;
  margin-left: 10px;
  margin-right: 10px;
}
/* line 859, sass/sass/main.scss */
.container .content .form_content select:focus {
  border-color: #0586ff;
}
/* line 863, sass/sass/main.scss */
.container .content .form_content .label_check_radio {
  margin-bottom: 20px;
}
/* line 867, sass/sass/main.scss */
.container .content .form_content .element_check_radio {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
/* line 873, sass/sass/main.scss */
.container .content .form_content .element_check_radio input[type="checkbox"] {
  outline: none;
}
/* line 877, sass/sass/main.scss */
.container .content .form_content .element_check_radio .name_check_radio {
  font-size: 1.8rem;
  margin-top: 2px;
  margin-left: 12px;
  opacity: 0.5;
}
/* line 885, sass/sass/main.scss */
.container .content .form_content .elemet_check_radio:last-child {
  margin-bottom: 0px;
}
/* line 889, sass/sass/main.scss */
.container .content .form_content input:last-child {
  margin-bottom: 0px;
}
/* line 895, sass/sass/main.scss */
.container .content .form_content:last-child {
  border-bottom: 0px;
}
/* line 900, sass/sass/main.scss */
.container .footer_logos {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* line 909, sass/sass/main.scss */
.container .footer_logos img {
  width: 35%;
  text-align: center;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CONTAINER LOGIN
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* line 922, sass/sass/main.scss */
.container_login {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0586ff;
  background: -moz-linear-gradient(top, #0586ff 0%, #7db9e8 100%);
  background: -webkit-linear-gradient(top, #0586ff 0%, #7db9e8 100%);
  background: linear-gradient(to bottom, #0586ff 0%, #7db9e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0586ff', endColorstr='#7db9e8',GradientType=0);
}
/* line 935, sass/sass/main.scss */
.container_login .login_content {
  width: 400px;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
  padding: 50px;
}
/* line 943, sass/sass/main.scss */
.container_login .login_content .main_brand {
  width: 200px;
  margin-bottom: 40px;
}
/* line 948, sass/sass/main.scss */
.container_login .login_content .login_title {
  font-size: 1.8rem;
  opacity: 0.75;
  margin-bottom: 30px;
}
/* line 956, sass/sass/main.scss */
.container_login .login_content form label {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  opacity: 0.4;
  letter-spacing: 0.2px;
}
/* line 964, sass/sass/main.scss */
.container_login .login_content form input[type="text"], .container_login .login_content form input[type="password"] {
  width: 100%;
  height: 40px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-color: #f9f9f9;
  outline: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding-left: 10px;
  font-size: 1.6rem;
}
/* line 978, sass/sass/main.scss */
.container_login .login_content form input[type="text"]:focus, .container_login .login_content form input[type="password"]:focus {
  border-color: #0586ff;
  background-color: #fff;
}
/* line 983, sass/sass/main.scss */
.container_login .login_content form input[type="submit"] {
  padding: 10px 13px;
  background-color: #0586ff;
  border: 1px solid #006cd1;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 25px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  outline: none;
}
/* line 996, sass/sass/main.scss */
.container_login .login_content form input[type="submit"]:hover {
  background-color: #006cd1;
}
/* line 1000, sass/sass/main.scss */
.container_login .login_content form .forgot_password {
  font-size: 1.3rem;
  color: #333;
  opacity: 0.5;
}
/* line 1006, sass/sass/main.scss */
.container_login .login_content form .keep_signed {
  margin-top: 20px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* line 1011, sass/sass/main.scss */
.container_login .login_content form .keep_signed input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 2px;
}
