/**
* Template Name: Appland - v2.0.0
* Template URL: https://bootstrapmade.com/free-bootstrap-app-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family:  "Open Sans", sans-serif;
  color: #000;
}

a {
  color: #47a0d9;  /* #5777ba; */
}

a:hover {
  color:  #7e7e7e; /*#7b94c9; */
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

.bold {font-weight: bold;}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #f5db12;
  color: #000;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
	color: #000;
  background: rgba(245, 219, 18, 0.7);
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
 background-color: #f5db12;
}

#header.header-scrolled {
  background: rgba(245, 219, 18, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 2px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #000;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000;
  padding: 8px 15px 12px 15px;
  /* transition: 0.3s; */
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  text-shadow: -0.06ex 0 black, 0.06ex 0 black;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #fff;
  color: #000;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
  font-weight: bold;
  cursor: pointer;
}

.nav-menu .get-started a:hover {
  background: #000;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #233355;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #000;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 22px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #000;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #000;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #000;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(35, 51, 85, 0.7);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero{
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 72px 0 100px 0;
  background-color: rgba(245,219,18,1);
}

#static  {
	width: 100%;
	padding: 100px 0 100px 0;
}


#hero .h1 {
  margin: 50px 0 10px 0;
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
}

#hero h1 {
  color: #000;
  margin-bottom: 50px;
  font-size: 20px;
  line-height:1.5;
}

#hero h2  {
	font-weight: normal;
	font-size: 16px;
	font-style: italic;
	clear: both;
	display:block;
	margin: 20px 0 40px 0;
}
#hero h1 ul {
	padding: 0;
	list-style-type: none;
	font-size: 16px;
	font-weight: normal;
	margin-top: 10px;
}
#hero h1 ul  li:before {
  content: '\2014';
  position: absolute;
  margin-left: -20px;
}
#hero h1 ul  li{
	margin: 0;
	padding: 0;
	text-align:left;
	float: left;
	width: 45%;
	margin-left: 5%;
}

@media (min-width: 576px) {
		#hero h1 ul  li.desk {display:block}
		#hero h1 ul  li.mobile {display:none}
		
}
@media (max-width: 575px) {
		#hero h1 ul  li.desk {display:none}
		#hero h1 ul  li.mobile {display:block}
		#hero h1 ul {font-size: 14px;}
				#hero h1 ul  li {	width: 48%;
	margin-left: 2%;}
}

#hero .download-btn {
  font-family: "Arial", sans-serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
  color: #000;
  position: relative;
}

#hero .download-btn:hover {
  background-color: #000;
  color: #fff;
  
}

section#features {background-color: #fff;}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn + .download-btn {
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .download-btn + .download-btn {
    margin: 0 10px;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero .h1 {
    font-size: 68px;
    line-height: 1;
  }
  #hero h1 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f1f3;
}

#section-madrid.section-bg{
  background-color: #fff;
}

#section-madrid.faq .accordion-list li{
  background: #f1f1f3;
}
#section-madrid.faq .accordion-list .accordion-title{
  color: #837e7e;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #000;
  font-family: "Roboto", sans-serif;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .section-title {padding-bottom:0;}
.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #f5db12;
  background-color: #353332;
  border-radius: 7px;
  padding: 2px;
}

.features .content .icon-box p {
  font-size: 15px;
  color: #a3a3a3;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }
  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Centered features
--------------------------------------------------------------*/
.features.centered .content .icon-box h4 {
  margin-left: 0;
}


#search-description .icon-box::before, #application .icon-box:before, .features.centered .content .icon-box:before {
	content: '';
	position: absolute;
	left: 47%;
	top: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	z-index: -1;
	background-color: rgba(245, 219, 18, 1);

}

#application .icon-box:before {z-index: 0;}


.features.centered .content .icon-box:nth-child(3):before {
	left: 37%;
}

@media (max-width: 768px) {
	.features.centered .content .icon-box:nth-child(3):before {
		left: 44%;
	}
}

.features.centered .content .icon-box:nth-child(2):before,.features.centered .content .icon-box:nth-child(3):before {
	top: 0;
}

#search-description .icon-box::before, #application .icon-box:before {
	left: 40px;
	top: 0;
}
#search-description .icon-box i,#application .icon-box i,  .features.centered .content .icon-box i {
	color: #000;
	float:none;
	font-size: 58px;
}
.features.centered .content .icon-box p {
	margin-left: 0;
}

.features.centered .content .icon-box  {
	text-align:center;
}
.features .content .icon-box i {
	background-color: transparent;
}
/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #000;
}

.details .content ul,
.search-description .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li,
.search-description .content ul li {
  padding-bottom: 10px;
}

.details .content ul i,
.search-description .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #000;
}

.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list .content + .content,
.blog .content + .content {
    margin-top: 100px;
}

.blog-list .content h3,
.blog .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #000;
}

.blog-list .content ul {
    list-style: none;
    padding: 0;
}

.blog-list .content ul li,
.blog .content ul li {
    padding-bottom: 10px;
}

.blog-list .content ul i,
.blog .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #000;
}

.blog-list .content p:last-child {
    margin-bottom: 0;
}
.blog-list .row.content:nth-child(odd){
    background-color: #f1f1f3;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.blog-list .row.content:nth-child(even){
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 25px;
    padding-bottom: 25px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .owl-nav, .gallery .owl-dots {
  margin-top: 40px;
  text-align: center;
}

.gallery .owl-item {
  transition: 0.3s ease-in-out;
}

.gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #f1f1f3; !important;
}

.gallery .owl-dot.active {
  background-color: #000 !important;
}

.gallery .gallery-carousel {
  padding-top: 30px;
}

.gallery .gallery-carousel .owl-stage-outer {
  overflow: visible;
}

@media (min-width: 992px) {
  .gallery .gallery-carousel .center {
    border: 6px solid #000;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
    border-radius: 25px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #f1f1f3;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #000 !important;
}


@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box,
#powerOfAttorney .box{
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #000;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.bg-highlight {
	background: rgba(245, 219, 18, 0.5);
	color: #000;
}
.pricing ul li span {
	color: #000;
}
.pricing ul li {
  margin-bottom: 12px;
}

.pricing ul i {
  color: #000;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .col-lg-12 ul {
	text-align:center;
	margin-top: 10px;
}
.pricing .description{
    color: #bababa;
    font-size: 14px;
}

.get-started-btn {
 background: rgb(245, 219, 18);
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #000;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  font-family: "Arial", sans-serif;
  transition: 0.3s;
}

.get-started-btn:hover {
  background: rgba(245, 219, 18, 0.7);
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

 .get-started-btn {
  background: rgb(245, 219, 18);
}

 .get-started-btn:hover {
  background: rgba(245, 219, 18, 0.7);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .accordion-list {
  padding: 0 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li + li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .accordion-list  li > a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b1c0df;
}

.faq .accordion-list .icon-show, .faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
#chipmunk .faq .accordion-list p{
    margin-bottom: 1.5rem;
}
.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #000;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

.faq .accordion-list .collapse ul {
	margin: 20px;
}
.faq .accordion-list .collapse ul li {
	padding: 0;
	margin-bottom: 12px;
}
.faq .accordion-list .accordion-title{
    font-size: 15px;
    color: #a3a3a3;
    padding-top: 0;
}
@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 40px;
  background: #f1f3f6;
  color: #000;
  text-align: center;
  border: 1px solid #fff;
}

.contact .info i {
  font-size: 48px;
  color: #9fb2d8;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.contact .info p {
  font-size: 15px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
}
.secondaryDocument .php-email-form .error-message,
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.error-message .sent-message,
.block-messages .sent-message,
.secondaryDocument .php-email-form .sent-message,
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#alert-message .loading {
    background: #fff;
    text-align: left;
}

#alert-message .loading:before{
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #8a8c95;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.block-messages .loading{
    display: none;
    background: initial;
    text-align: center;
    padding: 15px;
}

#secondaryDocument .validation .loading,
.application-send .validation .loading,
.logotip-change .validation .loading,
#powerOfAttorney .validation .loading,
.error-message .loading,
.secondaryDocument .php-email-form .loading,
.form-sign .error-message .loading,
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.error-message .loading:before,
.logotip-change .validation .loading:before,
.application-send .validation .loading:before,
.block-messages .loading:before,
#secondaryDocument .validation .loading:before,
#powerOfAttorney .validation .loading:before,
.secondaryDocument .php-email-form .loading:before,
.form-sign .error-message .loading:before,
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
  color: #8a8c95;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #000;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #fff;
  border: 2px solid #000;
  padding: 10px 24px;
  color: #000;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #000;
  font-size: 14px;
  background: #f1f1f3;;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f1f3;;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #000;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgb(245, 219, 18);
  color: #000;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: rgba(245, 219, 18, 0.7);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #000;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #8a8c95;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9fb2d8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #8a8c95;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #000;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(245, 219, 18);
  color: #000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: rgba(245, 219, 18, 0.7);
  text-decoration: none;
}

#footer .copyright {
  color: #000;
  font-size: 13px;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #000;
}

@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}

#search-description{
    padding-top: 100px;
}
#section-national .not-result-search{
    color: #8a8c95;
    background: #fff;
    border-radius: 4px;
    padding: 20px !important;
}

#application .row{
    background: #fff;
    border-radius: 4px;
    padding: 20px !important;
}
#application .row .accordion-title{
    color: #8a8c95;
    font-weight: 400;
}
#section-madrid .not-result-search{
    color: #8a8c95;
    background: #f1f1f3;
    border-radius: 4px;
    padding: 20px !important;
}

.download-search-pdf{
    top: 15px;
    position: absolute;
    left: 90px;
}

@media (max-width: 375px) {
    .download-search-pdf{
        top: 5px;
        position: absolute;
        left: 90px;
    }
}

.custom-file-label{
    border-radius: 0;
    text-align: left;
    color: #8a8e94;
    width: 90%;
    font-size: 14px;
}

.form-sign .error-message .error,
.block-messages .error-message,
.error-message .error,
#powerOfAttorney .validation .error-message{
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#powerOfAttorney .validation .sent-message{
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#outgoing .row,
#incoming .row{
    background: #fff;
    border-radius: 4px;
}

.modal-header{
    border-bottom: 0;
}
.fade.in {
    opacity: 1;
}
.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}
.modal-dialog{
    margin-top: 75px;
}
.modal-footer{
    background-color: rgb(241, 241, 243);
}
.modal-body label{
    font-weight: 500;
}
@media (max-width: 375px) {
    .model-footer{
        justify-content: center;
    }
}
.get-started-btn[disabled]{
    background: #fff;
    color: #000;
    font-weight: 600;
    opacity: 0.7;
}
#application .get-started-btn[disabled]{
    background: #f1f1f3;
}
.gradient-overflow-bottom {
    position: absolute
}

.gradient-overflow-bottom:after {
    height: 50px;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 95%;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

@media (min-width: 1000px) {
    .gradient-overflow-bottom:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 705px
    }
}
.overcrowded:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 20px;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), to(hsla(0, 0%, 100%, 0)));
    background: linear-gradient(0deg, #fff 0, hsla(0, 0%, 100%, 0))
}
.gradient-divider {
    border-top: 1px solid #dfe1e5;
    position: relative;
    margin: 0 -20px
}

.gradient-divider-btn {
    height: 45px;
    width: 45px;
    border: 1px solid #dfe1e5;
    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;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -23px;
    background-color: #fff;
    overflow: hidden;
    z-index: 1
}
.gradient-divider-btn svg {
    width: 15px;
    fill: #676767;
    -webkit-transition: -webkit-transform .2s ease-in;
    transition: -webkit-transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in, -webkit-transform .2s ease-in
}

.gradient-divider-btn.rotate svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.gradient-divider-btn:hover {
    cursor: pointer
}
#terms .title-terms.open{
    max-height: 1000px;
}

#terms .title-terms{
    max-height: 85px;
    overflow: hidden;
}
.modal-content.gradient-overflow-bottom {
    position: absolute
}

.modal-content.gradient-overflow-bottom:after {
    height: 50px;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 95%;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

@media (min-width: 1000px) {
    .modal-content.gradient-overflow-bottom:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 705px
    }
}

.modal-content.gradient-overflow-top {
    position: absolute
}

.modal-content.gradient-overflow-top:before {
    opacity: 0;
    visibility: hidden;
    left: 0;
    width: 95%;
    top: 61px;
    height: 50px;
    z-index: 1;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in
}

@media (min-width: 1000px) {
    .modal-content.gradient-overflow-top:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 705px
    }
}

.modal-content.gradient-bottom-removed.gradient-overflow-bottom:after {
    opacity: 0;
    visibility: hidden
}

.modal-content.gradient-top-applied.gradient-overflow-top:before {
    opacity: 1;
    visibility: visible
}
.alert-danger{
    color: #fff;
    background-color: red;
    border-color: red;
}
.alert-warning {
    color: #000;
    background-color: #fff;
    border-color: #8a8c95;;
}

#chipmunk {
    padding-top: 70px;
}

#chipmunk section:nth-child(odd){
    background-color: #f1f1f3;
}

#chipmunk section:nth-child(even){
    background-color: #fff;
}

#chipmunk section:nth-child(even)#terms ul>li.term-item{
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
}

select#documentType{
    font-size: 14px;
}

a[disabled="disabled"] {
    pointer-events: none;
}

body.dashboard table {
    font-size: 14px;
}

.modal{
    font-size: 14px;
}

.popover{
    background-color: black;
}

.popover-body{
    color: white;
}

.bs-popover-top>.arrow::after{
    border-top-color: black;
}
.link-dashed {
    text-decoration: none;
    border-bottom: 1px dashed #000080;
}
.no-logo-search-tm{
    background: #fff;
    color: black;
    padding: 10px;
    text-align: center;
    max-width: 150px;
    overflow: hidden;
}
.row.applicant-edit{
    background: #f1f1f3 !important;
    margin: 1em 0 1em 0;
}
#pending-actions .alert-warning{
    border: 1px solid #dee2e6;
}
#pending-actions .alert-warning span{
    font-size: 12px;
    color: #8a8c95;
    font-weight: 400;
}
p.holder{
    overflow: hidden;
    word-break: break-word;
}
.spinner-border-custom{
    color: #f5db12!important;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: .15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.filter span{
    color: #47a0d9;
}

.filter span.active{
    color:  #7e7e7e;
    border-bottom: 1px dashed #000080;
    font-weight: 900;
}
.filter span:hover {
    color:  #7e7e7e;
    text-decoration: none;
    cursor: pointer;
}
.not-result-search-app{
    border: 1px solid #dee2e6;
    background: #f2f2f2;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    display: block;
}
.text-date{
    color: #7e7e7e !important;
    font-size: 14px;
}

/*Custom checkbox*/

.custom_checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.custom_checkbox + .custom_checkbox {
    margin-top: 8px
}

.custom_checkbox_hidden {
    display: none
}

.custom_checkbox_val {
    margin: 0;
    line-height: 22px
}

.custom_checkbox_box {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background-color: #ebe9e9;
    -webkit-box-shadow: inset 0 1px 4px 0 #c7c7c7;
    box-shadow: inset 0 1px 4px 0 #c7c7c7;
    position: relative;
    cursor: pointer;
}

.custom_checkbox_box:before {
    content: "";
    display: block;
    width: 5px;
    height: 12px;
    border: 2px solid #000;
    border-top-width: 0;
    border-left-width: 0;
    position: absolute;
    top: 45%;
    left: 25%;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s
}

.custom_checkbox.checked .custom_checkbox_box {
    background-color: #f5db12;
    -webkit-box-shadow: none;
    box-shadow: none
}

.custom_checkbox.checked .custom_checkbox_box:before {
    opacity: 1
}

.custom_checkbox.removable {
    position: relative
}

.custom_checkbox.removable .custom_checkbox_box {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.custom_checkbox.removable .custom_checkbox_box:before {
    opacity: 1
}

.custom_checkbox .btn_remove {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    cursor: pointer;
}

@media (min-width: 1000px) {
    .custom_checkbox .btn_remove {
        -webkit-transition: .2s ease-in;
        transition: .2s ease-in;
        opacity: 0
    }
}

.custom_checkbox .btn_remove:after, .custom_checkbox .btn_remove:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    background-color: #000;
    -webkit-transition: color .2s ease-in;
    transition: color .2s ease-in
}

@media (min-width: 1000px) {
    .custom_checkbox .btn_remove:after, .custom_checkbox .btn_remove:before {
        background-color: #e6e6e6
    }
}

.custom_checkbox .btn_remove:after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg)
}

.custom_checkbox:hover .custom_checkbox_val {
    cursor: pointer
}

@media (min-width: 1000px) {
    .custom_checkbox:hover .btn_remove {
        opacity: 1
    }

    .custom_checkbox:hover .btn_remove:after, .custom_checkbox:hover .btn_remove:before {
        background-color: #000
    }
}
.active.active-red{
    font-size: 12px;
    color: #fff;
    background: red;
    padding: 5px;
    text-align: center;
    border-radius: 5%;
    margin-top: 10px;
    display: block;
}
.active.active-yellow{
    font-size: 12px;
    color: #000;
    background: yellow;
    padding: 5px;
    text-align: center;
    border-radius: 5%;
    margin-top: 10px;
    display: block;
}
.active.active-green{
    font-size: 12px;
    color: #fff;
    background: green;
    padding: 5px;
    text-align: center;
    border-radius: 5%;
    margin-top: 10px;
    display: block;
}
.active.active-dull-green{
    font-size: 12px;
    color: #fff;
    background: seagreen;
    padding: 5px;
    text-align: center;
    border-radius: 5%;
    margin-top: 10px;
    display: block;
}
.logo-change:hover img{
    background: rgba(0, 0, 0, 0.31);
}