/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.color-orange{
	color: orange;
}

@media (max-width: 767px){
	.hidden-xs {
	  display: none !important;
	}

	.min-vh-100 {
	  min-height: 60vh !important;
	}
	.full-header #logo {
		padding-right: 0;
		text-align: center;
	}
	#logo {
		padding-right: 0;
		text-align: center;
	}
}


/****** boton whatsapp ******/
.i-wapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50px;
  padding: 15px 17px;
  line-height: 0;
  display: block;
  z-index: 1000;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
  animation: pulse 1s infinite;
}
.i-wapp:hover {
  animation: none;
}
.i-wapp i {
  font-size: 33px;
  color: #fff;
}
@-webkit-keyframes i-wapp {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes i-wapp {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}


@media (min-width: 768px) and (max-width: 991px) {
  .i-wapp {
    /*top: 120px;*/
    -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -mos-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
  }
}
@media (max-width: 767px) {
  .i-wapp {
    right: 10px;
    /*top: 120px;*/
    -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -mos-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
  }
}
/****** boton whatsapp ******/


/* MODAL */
.modal-strip {
  padding: 18px 0;
  position: fixed;
  bottom: 1%;
  z-index: 200;
  width: 98%;
  margin: 0 1%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate3d(0, 100px, 0);
  -webkit-transform: translate3d(0, 100px, 0);
  -moz-transform: translate3d(0, 100px, 0);
  opacity: 0;
}
.modal-strip.reveal-modal {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  opacity: 1;
}
.modal-strip .close-modal {
  position: absolute;
  right: 32px;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.modal-strip i.close-modal {
  font-size: 18px;
}
.modal-strip .icon + p {
  padding-left: 32px;
  position: relative;
  top: 3px;
}
.modal-strip p + .btn {
  margin-left: 24px;
}
@media all and (max-width: 1024px) {
  .modal-strip {
    margin: 0;
    width: 100%;
    bottom: 0;
  }
}
@media all and (max-width: 767px) {
  .modal-strip .close-modal {
    position: relative;
    top: 0;
    right: 0;
    left: 15px;
    transform: none !important;
    -webkit-transform: none !important;
    margin-top: 16px;
  }
  .modal-strip .icon {
    display: none;
  }
  .modal-strip .icon + p {
    padding-left: 0;
    top: 0;
  }
}


.btn.btn-whatsapp {
    color: #fff;
    background: #0dc143;
    border-color: #0dc143;
}
.btn.btn-whatsapp:hover {
    background: #018c2a;
    color: #fff;
}
.btn.btn-call {
    color: #fff;
    background: #007ac8;
    border-color: #007ac8;
}
.btn.btn-call:hover {
    background: #0fa1ff;
    color: #fff;
}


.sticky-float-bottom {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: calc(100vh - 134px); /* 100vh - alert-height() - 30px */
}

@media (min-width: 992px) {
	.sticky-float-bottom {
		top: calc(100vh - 94px); /* 100vh - alert-height() - 30px */
	}
}
/* MODAL */