/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* ALERT MESSAGES
======================================================== */
.alert_wrapper {
  margin: 0;
  position: fixed;
  z-index: 999;
  /* COLOR */
  /* CONTENT */
}
.alert_wrapper[data-position="top"] {
  top: 0;
  left: 0;
  right: 0;
}
.alert_wrapper[data-position="top"] .alert {
  animation: slideInFromTop 0.5s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
  -webkit-animation: slideInFromTop 0.5s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
  transform-origin: top left;
  -webkit-transform-origin: top left;
  border-radius: 0;
}
.alert_wrapper[data-position="bottom"] {
  bottom: 0;
  left: 0;
  right: 0;
}
.alert_wrapper[data-position="bottom"] .alert {
  animation: slideInFromBottom 0.5s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
  -webkit-animation: slideInFromBottom 0.5s cubic-bezier(0.05, 0.74, 0.27, 0.99) forwards;
  transform-origin: top left;
  -webkit-transform-origin: top left;
}
.alert_wrapper[data-position^='top-'] {
  top: 60px;
}
.alert_wrapper[data-position^='bottom-'] {
  bottom: 60px;
}
.alert_wrapper[data-position$='-right'] {
  right: 20px;
}
.alert_wrapper[data-position$='-left'] {
  left: 20px;
  right: 0;
}
.alert_wrapper[data-position="content"] {
  position: relative;
  margin-bottom: 20px;
}
.alert_wrapper[data-position="content"] p {
  font-size: 0.813rem;
  text-align: left;
}
.alert_wrapper[data-position="content"] .close {
  font-size: 20px;
}
.alert_wrapper .alert {
  margin: 0;
  padding: 12px;
}
.alert_wrapper .container {
  position: relative;
}
.alert_wrapper .bar {
  border-radius: 0;
}
.alert_wrapper .circle {
  animation: fadeInCircle 0.15s ease forwards, resizeCircle 0.75s 0.4s cubic-bezier(0.25, 0.25, 0.4, 1.6) forwards;
  -webkit-animation: fadeInCircle 0.15s ease forwards, resizeCircle 0.75s 0.4s cubic-bezier(0.25, 0.25, 0.4, 1.6) forwards;
  margin-bottom: 10px;
}
.alert_wrapper .circle .alert {
  border-radius: 50px;
  padding: 5px 55px 5px 5px;
  overflow: hidden;
}
.alert_wrapper .circle .close {
  opacity: 0;
  top: 5px;
  right: 20px;
  text-shadow: none;
  animation: fadeIn 0.75s ease forwards 0.75s;
  -webkit-animation: fadeIn 0.75s ease forwards 0.75s;
}
.alert_wrapper .primary .alert {
  background: rgba(30, 33, 35, 0);
  color: #FFF;
}
.alert_wrapper .primary .alert .close {
  color: #ffffff;
}
.alert_wrapper .info .alert {
  background: #37b0e9;
  color: #FFF;
}
.alert_wrapper .info .alert .close {
  color: #0b4763;
}
.alert_wrapper .success .alert {
  background: #4cbb6c;
  color: #FFF;
}
.alert_wrapper .success .alert .close {
  color: #102b18;
}
.alert_wrapper .warning .alert {
  background: #ff9a52;
  color: #FFF;
}
.alert_wrapper .warning .alert .close {
  color: #853700;
}
.alert_wrapper .error .alert {
  background: #ff4c4c;
  color: #FFF;
}
.alert_wrapper .error .alert .close {
  color: #7f0000;
}
.alert_wrapper p {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.alert_wrapper .close {
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 2rem;
  opacity: 0.85;
  text-shadow: none;
}
.alert_wrapper .close:not(:disabled):not(.disabled):hover,
.alert_wrapper .close:not(:disabled):not(.disabled):focus {
  opacity: 1;
}
.alert_wrapper .image-alert {
  float: left;
  height: 50px;
  width: 50px;
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 50px;
  margin-right: 10px;
}
.alert_wrapper .image-alert:hover {
  cursor: pointer;
}
.alert_wrapper .image-alert span.img-shadow {
  border-radius: 50px;
}
.alert_wrapper .image-alert span.img-shadow:before {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50px;
}
.alert_wrapper .image-alert span.img-shadow i {
  height: 50px;
  width: 50px;
  border: 1px solid;
  font-size: 30px;
  border-radius: 50px;
  line-height: 50px;
}
.alert_wrapper .image-alert span.img-shadow img {
  opacity: 1;
  z-index: 10;
  max-height: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  border-radius: 50px;
}
.alert_wrapper .txt-alert {
  max-height: 48px;
  line-height: 16px;
  opacity: 0;
  animation: fadeIn 0.3s 0.5s ease forwards;
  -webkit-animation: fadeIn 0.3s 0.5s ease forwards;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  word-wrap: break-word;
}
/* RESPONSIVE */
body.sidebar-visible .alert_wrapper .bar,
body.sidebar-visible .alert_wrapper .circle {
  margin-left: 280px;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
  -moz-transition: -moz-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
  -o-transition: -o-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
  transition: transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
}
@media (max-width: 479px) {
  body.sidebar-visible .alert_wrapper .bar,
  body.sidebar-visible .alert_wrapper .circle {
    margin-left: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.sidebar-visible .alert_wrapper .bar,
  body.sidebar-visible .alert_wrapper .circle {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.sidebar-visible .alert_wrapper .bar,
  body.sidebar-visible .alert_wrapper .circle {
    margin-left: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.sidebar-visible .alert_wrapper .bar,
  body.sidebar-visible .alert_wrapper .circle {
    margin-left: 60px;
  }
}
body.sidebar-open .alert_wrapper {
  position: fixed;
  z-index: 10;
}
body.sidebar-open .alert_wrapper .bar,
body.sidebar-open .alert_wrapper .circle {
  -webkit-transform: translate3d(220px, 0, 0);
  transform: translate3d(220px, 0, 0);
  -ms-transform: translate(220px, 0);
}
@media (max-width: 479px) {
  body.sidebar-open .alert_wrapper .bar,
  body.sidebar-open .alert_wrapper .circle {
    -webkit-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
    -ms-transform: translate(250px, 0);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  body.sidebar-open .alert_wrapper .bar,
  body.sidebar-open .alert_wrapper .circle {
    -webkit-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
    -ms-transform: translate(250px, 0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.sidebar-open .alert_wrapper .bar,
  body.sidebar-open .alert_wrapper .circle {
    transform: translate(220px, 0) !important;
    -webkit-transform: translate(220px, 0) !important;
    -ms-transform: translate(280px, 0) !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.sidebar-open .alert_wrapper .bar,
  body.sidebar-open .alert_wrapper .circle {
    transform: translate(220px, 0) !important;
    -webkit-transform: translate(220px, 0) !important;
    -ms-transform: translate(220px, 0) !important;
  }
}
/* ALERT ANIMATION
======================================================== */
@keyframes slideInFromTop {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-150%);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes slideInFromBottom {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes slideInFromBottom {
  0% {
    -webkit-transform: translateY(150%);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-webkit-keyframes animateShake {
  0% {
    -webkit-transform: rotate(13deg);
    -moz-transform: rotate(13deg);
    -ms-transform: rotate(13deg);
    -o-transform: rotate(13deg);
    transform: rotate(13deg);
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-13deg);
    -moz-transform: rotate(-13deg);
    -ms-transform: rotate(-13deg);
    -o-transform: rotate(-13deg);
    transform: rotate(-13deg);
  }
}
@-webkit-keyframes flashNotification {
  50% {
    opacity: 0;
  }
}
@keyframes fadeInCircle {
  0% {
    opacity: 0;
    width: 60px;
  }
  100% {
    opacity: 1;
    width: 60px;
  }
}
@keyframes resizeCircle {
  0% {
    width: 60px;
  }
  100% {
    max-width: 800px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS LAYOUT - */
/* BTN TOP
==================================================== */
button.btnBackTop,
a.btnBackTop {
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: -45px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 2px solid;
  color: #E30233;
  border-color: #E30233;
  transition: all 0.15s ease-in-out;
}
button.btnBackTop i,
a.btnBackTop i {
  font-size: 20px;
}
button.btnBackTop:hover,
a.btnBackTop:hover,
button.btnBackTop:focus {
  background: #E30233;
  border-color: #E30233;
  cursor: pointer;
  text-decoration: none;
  color: #FFF;
}
a.btnBackTop:focus {
  color: #FFF;
}
button.btnBackTop.visible,
a.btnBackTop.visible {
  opacity: 1;
  bottom: 30px;
}
/* STYLES BTN
==================================================== */
.socialBtn{
 color: black!important;
}
button.btn,
a.btn,
.btn {
  font-size: 0.813rem;
  border-radius: 4px;
  padding: 11px 35px;
  color: #FFF;
  /* STYLE */
  /* COLOR */
}
button.btn:hover,
a.btn:hover,
.btn:hover,
button.btn:focus,
a.btn:focus,
.btn:focus {
  text-decoration: none;
  cursor: pointer;
}
button.btn.btnSizeXl,
a.btn.btnSizeXl,
.btn.btnSizeXl {
  font-size: 1.5rem;
}
button.btn.btnRound,
a.btn.btnRound,
.btn.btnRound {
  border-radius: 50px;
}
button.btn.btnForm,
a.btn.btnForm,
.btn.btnForm {
  padding: 11px 0;
}
button.btn.btnFull,
a.btn.btnFull,
.btn.btnFull {
  width: 100%;
}
button.btn.btnLargeBorder,
a.btn.btnLargeBorder,
.btn.btnLargeBorder {
  border: 2px solid;
}
button.btn.btnSmall,
a.btn.btnSmall,
.btn.btnSmall {
  padding: 5px 15px;
  font-size: 0.875rem;
}
button.btn.btnIcon,
a.btn.btnIcon,
.btn.btnIcon {
  display: inline-flex;
  align-items: center;
}
button.btn.btnIcon i,
a.btn.btnIcon i,
.btn.btnIcon i,
button.btn.btnIcon span,
a.btn.btnIcon span,
.btn.btnIcon span {
  font-size: 18px;
}
button.btn.btnIconLarge,
a.btn.btnIconLarge,
.btn.btnIconLarge {
  display: inline-flex;
  align-items: center;
}
button.btn.btnIconLarge i,
a.btn.btnIconLarge i,
.btn.btnIconLarge i,
button.btn.btnIconLarge span,
a.btn.btnIconLarge span,
.btn.btnIconLarge span {
  font-size: 25px;
}
button.btn.btnIconXl i,
a.btn.btnIconXl i,
.btn.btnIconXl i,
button.btn.btnIconXl span,
a.btn.btnIconXl span,
.btn.btnIconXl span {
  font-size: 40px;
}
button.btn.btnIconXXl i,
a.btn.btnIconXXl i,
.btn.btnIconXXl i,
button.btn.btnIconXXl span,
a.btn.btnIconXXl span,
.btn.btnIconXXl span {
  font-size: 120px;
  padding: 0 5px;
}
@media (max-width: 479px) {
  button.btn.btnIconXXl i,
  a.btn.btnIconXXl i,
  .btn.btnIconXXl i,
  button.btn.btnIconXXl span,
  a.btn.btnIconXXl span,
  .btn.btnIconXXl span {
    font-size: 40px;
    padding: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  button.btn.btnIconXXl i,
  a.btn.btnIconXXl i,
  .btn.btnIconXXl i,
  button.btn.btnIconXXl span,
  a.btn.btnIconXXl span,
  .btn.btnIconXXl span {
    font-size: 40px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  button.btn.btnIconXXl i,
  a.btn.btnIconXXl i,
  .btn.btnIconXXl i,
  button.btn.btnIconXXl span,
  a.btn.btnIconXXl span,
  .btn.btnIconXXl span {
    font-size: 40px;
    padding: 0;
  }
}
button.btn.btnTop,
a.btn.btnTop,
.btn.btnTop {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
button.btn.btnTopRight,
a.btn.btnTopRight,
.btn.btnTopRight {
  position: absolute;
  right: 15px;
  top: 0;
}
@media (max-width: 479px) {
  button.btn.btnTopRight,
  a.btn.btnTopRight,
  .btn.btnTopRight {
    position: relative;
    margin-top: 20px;
    margin-left: 15px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  button.btn.btnTopRight,
  a.btn.btnTopRight,
  .btn.btnTopRight {
    position: relative;
    margin-top: 20px;
    margin-left: 15px;
  }
}
button.btn.btnPaddingZero,
a.btn.btnPaddingZero,
.btn.btnPaddingZero {
  padding: 0;
}
button.btn.btnPaddingSquare,
a.btn.btnPaddingSquare,
.btn.btnPaddingSquare {
  padding: 11px 12px;
}
button.btn.btnOver,
a.btn.btnOver,
.btn.btnOver {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 0;
  right: 0;
  border-radius: 0;
  padding: 10px;
}
button.btn.btn-defaut,
a.btn.btn-defaut,
.btn.btn-defaut,
button.btn.btn-default,
a.btn.btn-default,
.btn.btn-default {
  background-color: #6a7174;
  border-color: #6a7174;
  color: #353d42;
}
button.btn.btn-defaut:hover,
a.btn.btn-defaut:hover,
.btn.btn-defaut:hover,
button.btn.btn-default:hover,
a.btn.btn-default:hover,
.btn.btn-default:hover,
button.btn.btn-defaut:active,
a.btn.btn-defaut:active,
.btn.btn-defaut:active,
button.btn.btn-default:active,
a.btn.btn-default:active,
.btn.btn-default:active,
button.btn.btn-defaut:focus,
a.btn.btn-defaut:focus,
.btn.btn-defaut:focus,
button.btn.btn-default:focus,
a.btn.btn-default:focus,
.btn.btn-default:focus {
  background-color: #454a4c;
  border-color: #454a4c;
}
button.btn.btn-defaut:not([disabled]):not(.disabled):active,
a.btn.btn-defaut:not([disabled]):not(.disabled):active,
.btn.btn-defaut:not([disabled]):not(.disabled):active,
button.btn.btn-default:not([disabled]):not(.disabled):active,
a.btn.btn-default:not([disabled]):not(.disabled):active,
.btn.btn-default:not([disabled]):not(.disabled):active,
button.btn.btn-defaut:not([disabled]):not(.disabled).active,
a.btn.btn-defaut:not([disabled]):not(.disabled).active,
.btn.btn-defaut:not([disabled]):not(.disabled).active,
button.btn.btn-default:not([disabled]):not(.disabled).active,
a.btn.btn-default:not([disabled]):not(.disabled).active,
.btn.btn-default:not([disabled]):not(.disabled).active,
.show > button.btn.btn-defaut.dropdown-toggle,
.show > a.btn.btn-defaut.dropdown-toggle,
.show > .btn.btn-defaut.dropdown-toggle,
.show > button.btn.btn-default.dropdown-toggle,
.show > a.btn.btn-default.dropdown-toggle,
.show > .btn.btn-default.dropdown-toggle {
  box-shadow: none;
  background-color: #525759;
  border-color: #525759;
}
button.btn.btn-primary,
a.btn.btn-primary,
.btn.btn-primary {
  background-color: #1E2123;
  border-color: #1E2123;
}
button.btn.btn-primary:hover,
a.btn.btn-primary:hover,
.btn.btn-primary:hover,
button.btn.btn-primary:active,
a.btn.btn-primary:active,
.btn.btn-primary:active,
button.btn.btn-primary:focus,
a.btn.btn-primary:focus,
.btn.btn-primary:focus {
  background-color: #000000;
  border-color: #000000;
}
button.btn.btn-primary:not([disabled]):not(.disabled):active,
a.btn.btn-primary:not([disabled]):not(.disabled):active,
.btn.btn-primary:not([disabled]):not(.disabled):active,
button.btn.btn-primary:not([disabled]):not(.disabled).active,
a.btn.btn-primary:not([disabled]):not(.disabled).active,
.btn.btn-primary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-primary.dropdown-toggle,
.show > a.btn.btn-primary.dropdown-toggle,
.show > .btn.btn-primary.dropdown-toggle {
  box-shadow: none;
  background-color: #060708;
  border-color: #060708;
}
button.btn.btn-secondary,
a.btn.btn-secondary,
.btn.btn-secondary {
  background-color: #E30233;
  border-color: #E30233;
}
button.btn.btn-secondary:hover,
a.btn.btn-secondary:hover,
.btn.btn-secondary:hover,
button.btn.btn-secondary:active,
a.btn.btn-secondary:active,
.btn.btn-secondary:active,
button.btn.btn-secondary:focus,
a.btn.btn-secondary:focus,
.btn.btn-secondary:focus {
  background-color: rgba(255, 255, 255, 0);
  color: #E30233;
}
button.btn.btn-secondary:not([disabled]):not(.disabled):active,
a.btn.btn-secondary:not([disabled]):not(.disabled):active,
.btn.btn-secondary:not([disabled]):not(.disabled):active,
button.btn.btn-secondary:not([disabled]):not(.disabled).active,
a.btn.btn-secondary:not([disabled]):not(.disabled).active,
.btn.btn-secondary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-secondary.dropdown-toggle,
.show > a.btn.btn-secondary.dropdown-toggle,
.show > .btn.btn-secondary.dropdown-toggle {
  box-shadow: none;
  background-color: #b00228;
  border-color: #b00228;
}
button.btn.btn-success,
a.btn.btn-success,
.btn.btn-success {
  background-color: #4cbb6c;
  border-color: #4cbb6c;
}
button.btn.btn-success:hover,
a.btn.btn-success:hover,
.btn.btn-success:hover,
button.btn.btn-success:active,
a.btn.btn-success:active,
.btn.btn-success:active,
button.btn.btn-success:focus,
a.btn.btn-success:focus,
.btn.btn-success:focus {
  background-color: #33874c;
  border-color: #33874c;
}
button.btn.btn-success:not([disabled]):not(.disabled):active,
a.btn.btn-success:not([disabled]):not(.disabled):active,
.btn.btn-success:not([disabled]):not(.disabled):active,
button.btn.btn-success:not([disabled]):not(.disabled).active,
a.btn.btn-success:not([disabled]):not(.disabled).active,
.btn.btn-success:not([disabled]):not(.disabled).active,
.show > button.btn.btn-success.dropdown-toggle,
.show > a.btn.btn-success.dropdown-toggle,
.show > .btn.btn-success.dropdown-toggle {
  box-shadow: none;
  background-color: #3a9a56;
  border-color: #3a9a56;
}
button.btn.btn-error,
a.btn.btn-error,
.btn.btn-error {
  background-color: #ff4c4c;
  border-color: #ff4c4c;
}
button.btn.btn-error:hover,
a.btn.btn-error:hover,
.btn.btn-error:hover,
button.btn.btn-error:active,
a.btn.btn-error:active,
.btn.btn-error:active,
button.btn.btn-error:focus,
a.btn.btn-error:focus,
.btn.btn-error:focus {
  background-color: #ff0000;
  border-color: #ff0000;
}
button.btn.btn-error:not([disabled]):not(.disabled):active,
a.btn.btn-error:not([disabled]):not(.disabled):active,
.btn.btn-error:not([disabled]):not(.disabled):active,
button.btn.btn-error:not([disabled]):not(.disabled).active,
a.btn.btn-error:not([disabled]):not(.disabled).active,
.btn.btn-error:not([disabled]):not(.disabled).active,
.show > button.btn.btn-error.dropdown-toggle,
.show > a.btn.btn-error.dropdown-toggle,
.show > .btn.btn-error.dropdown-toggle {
  box-shadow: none;
  background-color: #ff1919;
  border-color: #ff1919;
}
button.btn.btn-info,
a.btn.btn-info,
.btn.btn-info {
  background-color: #37b0e9;
  border-color: #37b0e9;
}
button.btn.btn-info:hover,
a.btn.btn-info:hover,
.btn.btn-info:hover,
button.btn.btn-info:active,
a.btn.btn-info:active,
.btn.btn-info:active,
button.btn.btn-info:focus,
a.btn.btn-info:focus,
.btn.btn-info:focus {
  background-color: #1588bf;
  border-color: #1588bf;
}
button.btn.btn-info:not([disabled]):not(.disabled):active,
a.btn.btn-info:not([disabled]):not(.disabled):active,
.btn.btn-info:not([disabled]):not(.disabled):active,
button.btn.btn-info:not([disabled]):not(.disabled).active,
a.btn.btn-info:not([disabled]):not(.disabled).active,
.btn.btn-info:not([disabled]):not(.disabled).active,
.show > button.btn.btn-info.dropdown-toggle,
.show > a.btn.btn-info.dropdown-toggle,
.show > .btn.btn-info.dropdown-toggle {
  box-shadow: none;
  background-color: #1799d6;
  border-color: #1799d6;
}
button.btn.btn-warning,
a.btn.btn-warning,
.btn.btn-warning {
  color: #353d42;
  background-color: #ff9a52;
  border-color: #ff9a52;
}
button.btn.btn-warning:hover,
a.btn.btn-warning:hover,
.btn.btn-warning:hover,
button.btn.btn-warning:active,
a.btn.btn-warning:active,
.btn.btn-warning:active,
button.btn.btn-warning:focus,
a.btn.btn-warning:focus,
.btn.btn-warning:focus {
  background-color: #ff6d05;
  border-color: #ff6d05;
}
button.btn.btn-warning:not([disabled]):not(.disabled):active,
a.btn.btn-warning:not([disabled]):not(.disabled):active,
.btn.btn-warning:not([disabled]):not(.disabled):active,
button.btn.btn-warning:not([disabled]):not(.disabled).active,
a.btn.btn-warning:not([disabled]):not(.disabled).active,
.btn.btn-warning:not([disabled]):not(.disabled).active,
.show > button.btn.btn-warning.dropdown-toggle,
.show > a.btn.btn-warning.dropdown-toggle,
.show > .btn.btn-warning.dropdown-toggle {
  box-shadow: none;
  background-color: #ff7c1f;
  border-color: #ff7c1f;
}
button.btn.btn-border,
a.btn.btn-border,
.btn.btn-border {
  background-color: #dde0e4;
  border-color: #dde0e4;
  color: rgba(53, 61, 66, 0.65);
}
button.btn.btn-border:hover,
a.btn.btn-border:hover,
.btn.btn-border:hover,
button.btn.btn-border:active,
a.btn.btn-border:active,
.btn.btn-border:active,
button.btn.btn-border:focus,
a.btn.btn-border:focus,
.btn.btn-border:focus {
  background-color: #b3bac2;
  border-color: #b3bac2;
}
button.btn.btn-border:not([disabled]):not(.disabled):active,
a.btn.btn-border:not([disabled]):not(.disabled):active,
.btn.btn-border:not([disabled]):not(.disabled):active,
button.btn.btn-border:not([disabled]):not(.disabled).active,
a.btn.btn-border:not([disabled]):not(.disabled).active,
.btn.btn-border:not([disabled]):not(.disabled).active,
.show > button.btn.btn-border.dropdown-toggle,
.show > a.btn.btn-border.dropdown-toggle,
.show > .btn.btn-border.dropdown-toggle {
  box-shadow: none;
  background-color: #c1c7cd;
  border-color: #c1c7cd;
}
button.btn.btn-white,
a.btn.btn-white,
.btn.btn-white {
  background-color: #FFF;
  border-color: #FFF;
  color: #353d42;
}
button.btn.btn-white:hover,
a.btn.btn-white:hover,
.btn.btn-white:hover,
button.btn.btn-white:active,
a.btn.btn-white:active,
.btn.btn-white:active,
button.btn.btn-white:focus,
a.btn.btn-white:focus,
.btn.btn-white:focus {
  background-color: #FFF;
  border-color: #FFF;
  color: inherit;
}
button.btn.btn-white:not([disabled]):not(.disabled):active,
a.btn.btn-white:not([disabled]):not(.disabled):active,
.btn.btn-white:not([disabled]):not(.disabled):active,
button.btn.btn-white:not([disabled]):not(.disabled).active,
a.btn.btn-white:not([disabled]):not(.disabled).active,
.btn.btn-white:not([disabled]):not(.disabled).active,
.show > button.btn.btn-white.dropdown-toggle,
.show > a.btn.btn-white.dropdown-toggle,
.show > .btn.btn-white.dropdown-toggle {
  box-shadow: none;
  background-color: #FFF;
  border-color: #FFF;
  color: inherit;
}
button.btn.btn-outline-defaut,
a.btn.btn-outline-defaut,
.btn.btn-outline-defaut,
button.btn.btn-outline-default,
a.btn.btn-outline-default,
.btn.btn-outline-default {
  background-color: #FFF;
  border-color: #6a7174;
  color: #353d42;
}
button.btn.btn-outline-defaut:hover,
a.btn.btn-outline-defaut:hover,
.btn.btn-outline-defaut:hover,
button.btn.btn-outline-default:hover,
a.btn.btn-outline-default:hover,
.btn.btn-outline-default:hover,
button.btn.btn-outline-defaut:active,
a.btn.btn-outline-defaut:active,
.btn.btn-outline-defaut:active,
button.btn.btn-outline-default:active,
a.btn.btn-outline-default:active,
.btn.btn-outline-default:active,
button.btn.btn-outline-defaut:focus,
a.btn.btn-outline-defaut:focus,
.btn.btn-outline-defaut:focus,
button.btn.btn-outline-default:focus,
a.btn.btn-outline-default:focus,
.btn.btn-outline-default:focus {
  background-color: #6a7174;
  border-color: #6a7174;
}
button.btn.btn-outline-defaut:not([disabled]):not(.disabled):active,
a.btn.btn-outline-defaut:not([disabled]):not(.disabled):active,
.btn.btn-outline-defaut:not([disabled]):not(.disabled):active,
button.btn.btn-outline-default:not([disabled]):not(.disabled):active,
a.btn.btn-outline-default:not([disabled]):not(.disabled):active,
.btn.btn-outline-default:not([disabled]):not(.disabled):active,
button.btn.btn-outline-defaut:not([disabled]):not(.disabled).active,
a.btn.btn-outline-defaut:not([disabled]):not(.disabled).active,
.btn.btn-outline-defaut:not([disabled]):not(.disabled).active,
button.btn.btn-outline-default:not([disabled]):not(.disabled).active,
a.btn.btn-outline-default:not([disabled]):not(.disabled).active,
.btn.btn-outline-default:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-defaut.dropdown-toggle,
.show > a.btn.btn-outline-defaut.dropdown-toggle,
.show > .btn.btn-outline-defaut.dropdown-toggle,
.show > button.btn.btn-outline-default.dropdown-toggle,
.show > a.btn.btn-outline-default.dropdown-toggle,
.show > .btn.btn-outline-default.dropdown-toggle {
  box-shadow: none;
  background-color: #6a7174;
  border-color: #6a7174;
  color: #FFF;
}
button.btn.btn-outline-primary,
a.btn.btn-outline-primary,
.btn.btn-outline-primary {
  background-color: transparent;
  border-color: #1E2123;
  color: #1E2123;
}
button.btn.btn-outline-primary:hover,
a.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:hover,
button.btn.btn-outline-primary:active,
a.btn.btn-outline-primary:active,
.btn.btn-outline-primary:active,
button.btn.btn-outline-primary:focus,
a.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:focus {
  background-color: #1E2123;
  border-color: #1E2123;
  color: #FFF;
}
button.btn.btn-outline-primary:not([disabled]):not(.disabled):active,
a.btn.btn-outline-primary:not([disabled]):not(.disabled):active,
.btn.btn-outline-primary:not([disabled]):not(.disabled):active,
button.btn.btn-outline-primary:not([disabled]):not(.disabled).active,
a.btn.btn-outline-primary:not([disabled]):not(.disabled).active,
.btn.btn-outline-primary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-primary.dropdown-toggle,
.show > a.btn.btn-outline-primary.dropdown-toggle,
.show > .btn.btn-outline-primary.dropdown-toggle {
  box-shadow: none;
  background-color: #1E2123;
  border-color: #1E2123;
  color: #FFF;
}
button.btn.btn-outline-secondary,
a.btn.btn-outline-secondary,
.btn.btn-outline-secondary {
  background-color: transparent;
  border-color: #E30233;
  color: #E30233;
}
button.btn.btn-outline-secondary:hover,
a.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:hover,
button.btn.btn-outline-secondary:active,
a.btn.btn-outline-secondary:active,
.btn.btn-outline-secondary:active,
button.btn.btn-outline-secondary:focus,
a.btn.btn-outline-secondary:focus,
.btn.btn-outline-secondary:focus {
  background-color: #E30233;
  border-color: #E30233;
  color: #FFF;
}
button.btn.btn-outline-secondary:not([disabled]):not(.disabled):active,
a.btn.btn-outline-secondary:not([disabled]):not(.disabled):active,
.btn.btn-outline-secondary:not([disabled]):not(.disabled):active,
button.btn.btn-outline-secondary:not([disabled]):not(.disabled).active,
a.btn.btn-outline-secondary:not([disabled]):not(.disabled).active,
.btn.btn-outline-secondary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-secondary.dropdown-toggle,
.show > a.btn.btn-outline-secondary.dropdown-toggle,
.show > .btn.btn-outline-secondary.dropdown-toggle {
  box-shadow: none;
  background-color: #E30233;
  border-color: #E30233;
  color: #FFF;
}
button.btn.btn-outline-success,
a.btn.btn-outline-success,
.btn.btn-outline-success {
  background-color: transparent;
  border-color: #4cbb6c;
  color: #4cbb6c;
}
button.btn.btn-outline-success:hover,
a.btn.btn-outline-success:hover,
.btn.btn-outline-success:hover,
button.btn.btn-outline-success:active,
a.btn.btn-outline-success:active,
.btn.btn-outline-success:active,
button.btn.btn-outline-success:focus,
a.btn.btn-outline-success:focus,
.btn.btn-outline-success:focus {
  background-color: #4cbb6c;
  border-color: #4cbb6c;
  color: #FFF;
}
button.btn.btn-outline-success:not([disabled]):not(.disabled):active,
a.btn.btn-outline-success:not([disabled]):not(.disabled):active,
.btn.btn-outline-success:not([disabled]):not(.disabled):active,
button.btn.btn-outline-success:not([disabled]):not(.disabled).active,
a.btn.btn-outline-success:not([disabled]):not(.disabled).active,
.btn.btn-outline-success:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-success.dropdown-toggle,
.show > a.btn.btn-outline-success.dropdown-toggle,
.show > .btn.btn-outline-success.dropdown-toggle {
  box-shadow: none;
  background-color: #4cbb6c;
  border-color: #4cbb6c;
  color: #FFF;
}
button.btn.btn-outline-error,
a.btn.btn-outline-error,
.btn.btn-outline-error {
  background-color: transparent;
  border-color: #ff4c4c;
  color: #ff4c4c;
}
button.btn.btn-outline-error:hover,
a.btn.btn-outline-error:hover,
.btn.btn-outline-error:hover,
button.btn.btn-outline-error:active,
a.btn.btn-outline-error:active,
.btn.btn-outline-error:active,
button.btn.btn-outline-error:focus,
a.btn.btn-outline-error:focus,
.btn.btn-outline-error:focus {
  background-color: #ff4c4c;
  border-color: #ff4c4c;
  color: #FFF;
}
button.btn.btn-outline-error:not([disabled]):not(.disabled):active,
a.btn.btn-outline-error:not([disabled]):not(.disabled):active,
.btn.btn-outline-error:not([disabled]):not(.disabled):active,
button.btn.btn-outline-error:not([disabled]):not(.disabled).active,
a.btn.btn-outline-error:not([disabled]):not(.disabled).active,
.btn.btn-outline-error:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-error.dropdown-toggle,
.show > a.btn.btn-outline-error.dropdown-toggle,
.show > .btn.btn-outline-error.dropdown-toggle {
  box-shadow: none;
  background-color: #ff4c4c;
  border-color: #ff4c4c;
}
button.btn.btn-outline-info,
a.btn.btn-outline-info,
.btn.btn-outline-info {
  background-color: transparent;
  border-color: #37b0e9;
  color: #37b0e9;
}
button.btn.btn-outline-info:hover,
a.btn.btn-outline-info:hover,
.btn.btn-outline-info:hover,
button.btn.btn-outline-info:active,
a.btn.btn-outline-info:active,
.btn.btn-outline-info:active,
button.btn.btn-outline-info:focus,
a.btn.btn-outline-info:focus,
.btn.btn-outline-info:focus {
  background-color: #37b0e9;
  border-color: #37b0e9;
  color: #FFF;
}
button.btn.btn-outline-info:not([disabled]):not(.disabled):active,
a.btn.btn-outline-info:not([disabled]):not(.disabled):active,
.btn.btn-outline-info:not([disabled]):not(.disabled):active,
button.btn.btn-outline-info:not([disabled]):not(.disabled).active,
a.btn.btn-outline-info:not([disabled]):not(.disabled).active,
.btn.btn-outline-info:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-info.dropdown-toggle,
.show > a.btn.btn-outline-info.dropdown-toggle,
.show > .btn.btn-outline-info.dropdown-toggle {
  box-shadow: none;
  background-color: #37b0e9;
  border-color: #37b0e9;
  color: #FFF;
}
button.btn.btn-outline-warning,
a.btn.btn-outline-warning,
.btn.btn-outline-warning {
  background-color: transparent;
  border-color: #ff9a52;
  color: #ff9a52;
}
button.btn.btn-outline-warning:hover,
a.btn.btn-outline-warning:hover,
.btn.btn-outline-warning:hover,
button.btn.btn-outline-warning:active,
a.btn.btn-outline-warning:active,
.btn.btn-outline-warning:active,
button.btn.btn-outline-warning:focus,
a.btn.btn-outline-warning:focus,
.btn.btn-outline-warning:focus {
  background-color: #ff9a52;
  border-color: #ff9a52;
  color: #FFF;
}
button.btn.btn-outline-warning:not([disabled]):not(.disabled):active,
a.btn.btn-outline-warning:not([disabled]):not(.disabled):active,
.btn.btn-outline-warning:not([disabled]):not(.disabled):active,
button.btn.btn-outline-warning:not([disabled]):not(.disabled).active,
a.btn.btn-outline-warning:not([disabled]):not(.disabled).active,
.btn.btn-outline-warning:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-warning.dropdown-toggle,
.show > a.btn.btn-outline-warning.dropdown-toggle,
.show > .btn.btn-outline-warning.dropdown-toggle {
  box-shadow: none;
  background-color: #ff9a52;
  border-color: #ff9a52;
  color: #FFF;
}
button.btn.btn-outline-border,
a.btn.btn-outline-border,
.btn.btn-outline-border {
  background-color: transparent;
  border-color: #dde0e4;
  color: #353d42;
}
button.btn.btn-outline-border:hover,
a.btn.btn-outline-border:hover,
.btn.btn-outline-border:hover,
button.btn.btn-outline-border:active,
a.btn.btn-outline-border:active,
.btn.btn-outline-border:active,
button.btn.btn-outline-border:focus,
a.btn.btn-outline-border:focus,
.btn.btn-outline-border:focus {
  background-color: #dde0e4;
  border-color: #dde0e4;
}
button.btn.btn-outline-border:not([disabled]):not(.disabled):active,
a.btn.btn-outline-border:not([disabled]):not(.disabled):active,
.btn.btn-outline-border:not([disabled]):not(.disabled):active,
button.btn.btn-outline-border:not([disabled]):not(.disabled).active,
a.btn.btn-outline-border:not([disabled]):not(.disabled).active,
.btn.btn-outline-border:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-border.dropdown-toggle,
.show > a.btn.btn-outline-border.dropdown-toggle,
.show > .btn.btn-outline-border.dropdown-toggle {
  box-shadow: none;
  background-color: #dde0e4;
  border-color: #dde0e4;
  color: #FFF;
}
button.btn.btn-outline-quaternary,
a.btn.btn-outline-quaternary,
.btn.btn-outline-quaternary {
  background-color: transparent;
  border-color: #B1AFAE;
  color: #B1AFAE;
}
button.btn.btn-outline-quaternary:hover,
a.btn.btn-outline-quaternary:hover,
.btn.btn-outline-quaternary:hover,
button.btn.btn-outline-quaternary:active,
a.btn.btn-outline-quaternary:active,
.btn.btn-outline-quaternary:active,
button.btn.btn-outline-quaternary:focus,
a.btn.btn-outline-quaternary:focus,
.btn.btn-outline-quaternary:focus {
  background-color: #B1AFAE;
  border-color: #B1AFAE;
  color: #FFF;
}
button.btn.btn-outline-quaternary:not([disabled]):not(.disabled):active,
a.btn.btn-outline-quaternary:not([disabled]):not(.disabled):active,
.btn.btn-outline-quaternary:not([disabled]):not(.disabled):active,
button.btn.btn-outline-quaternary:not([disabled]):not(.disabled).active,
a.btn.btn-outline-quaternary:not([disabled]):not(.disabled).active,
.btn.btn-outline-quaternary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-quaternary.dropdown-toggle,
.show > a.btn.btn-outline-quaternary.dropdown-toggle,
.show > .btn.btn-outline-quaternary.dropdown-toggle {
  box-shadow: none;
  background-color: #B1AFAE;
  border-color: #B1AFAE;
  color: #FFF;
}
button.btn.btn-outline-white,
a.btn.btn-outline-white,
.btn.btn-outline-white {
  background-color: transparent;
  border-color: #FFF;
  color: #FFF;
}
button.btn.btn-outline-white:hover,
a.btn.btn-outline-white:hover,
.btn.btn-outline-white:hover,
button.btn.btn-outline-white:active,
a.btn.btn-outline-white:active,
.btn.btn-outline-white:active,
button.btn.btn-outline-white:focus,
a.btn.btn-outline-white:focus,
.btn.btn-outline-white:focus {
  background-color: #FFF;
  border-color: #FFF;
  color: #353d42;
}
button.btn.btn-outline-white:not([disabled]):not(.disabled):active,
a.btn.btn-outline-white:not([disabled]):not(.disabled):active,
.btn.btn-outline-white:not([disabled]):not(.disabled):active,
button.btn.btn-outline-white:not([disabled]):not(.disabled).active,
a.btn.btn-outline-white:not([disabled]):not(.disabled).active,
.btn.btn-outline-white:not([disabled]):not(.disabled).active,
.show > button.btn.btn-outline-white.dropdown-toggle,
.show > a.btn.btn-outline-white.dropdown-toggle,
.show > .btn.btn-outline-white.dropdown-toggle {
  box-shadow: none;
  background-color: #FFF;
  border-color: #FFF;
  color: #353d42;
}
button.btn.btn-transparent,
a.btn.btn-transparent,
.btn.btn-transparent {
  background-color: transparent;
  border-color: transparent;
}
button.btn.btn-transparent:hover,
a.btn.btn-transparent:hover,
.btn.btn-transparent:hover,
button.btn.btn-transparent:active,
a.btn.btn-transparent:active,
.btn.btn-transparent:active,
button.btn.btn-transparent:focus,
a.btn.btn-transparent:focus,
.btn.btn-transparent:focus {
  background-color: transparent;
  border-color: transparent;
  color: inherit;
}
button.btn.btn-transparent:not([disabled]):not(.disabled):active,
a.btn.btn-transparent:not([disabled]):not(.disabled):active,
.btn.btn-transparent:not([disabled]):not(.disabled):active,
button.btn.btn-transparent:not([disabled]):not(.disabled).active,
a.btn.btn-transparent:not([disabled]):not(.disabled).active,
.btn.btn-transparent:not([disabled]):not(.disabled).active,
.show > button.btn.btn-transparent.dropdown-toggle,
.show > a.btn.btn-transparent.dropdown-toggle,
.show > .btn.btn-transparent.dropdown-toggle {
  box-shadow: none;
  background-color: transparent;
  border-color: transparent;
  color: inherit;
}
button.btn.btn-disabled,
a.btn.btn-disabled,
.btn.btn-disabled {
  opacity: 0.5;
}
button.btn.btn-disabled i,
a.btn.btn-disabled i,
.btn.btn-disabled i {
  text-decoration: none;
}
button.btn.btn-disabled:hover,
a.btn.btn-disabled:hover,
.btn.btn-disabled:hover,
button.btn.btn-disabled:focus,
a.btn.btn-disabled:focus,
.btn.btn-disabled:focus {
  cursor: no-drop;
  background: #dde0e4;
  border-color: #dde0e4;
}
button.btn.btn-color-defaut,
a.btn.btn-color-defaut,
.btn.btn-color-defaut,
button.btn.btn-color-default,
a.btn.btn-color-default,
.btn.btn-color-default {
  color: #6a7174;
}
button.btn.btn-color-defaut:hover,
a.btn.btn-color-defaut:hover,
.btn.btn-color-defaut:hover,
button.btn.btn-color-default:hover,
a.btn.btn-color-default:hover,
.btn.btn-color-default:hover,
button.btn.btn-color-defaut:active,
a.btn.btn-color-defaut:active,
.btn.btn-color-defaut:active,
button.btn.btn-color-default:active,
a.btn.btn-color-default:active,
.btn.btn-color-default:active,
button.btn.btn-color-defaut:focus,
a.btn.btn-color-defaut:focus,
.btn.btn-color-defaut:focus,
button.btn.btn-color-default:focus,
a.btn.btn-color-default:focus,
.btn.btn-color-default:focus {
  color: #525759;
}
button.btn.btn-color-defaut:not([disabled]):not(.disabled):active,
a.btn.btn-color-defaut:not([disabled]):not(.disabled):active,
.btn.btn-color-defaut:not([disabled]):not(.disabled):active,
button.btn.btn-color-default:not([disabled]):not(.disabled):active,
a.btn.btn-color-default:not([disabled]):not(.disabled):active,
.btn.btn-color-default:not([disabled]):not(.disabled):active,
button.btn.btn-color-defaut:not([disabled]):not(.disabled).active,
a.btn.btn-color-defaut:not([disabled]):not(.disabled).active,
.btn.btn-color-defaut:not([disabled]):not(.disabled).active,
button.btn.btn-color-default:not([disabled]):not(.disabled).active,
a.btn.btn-color-default:not([disabled]):not(.disabled).active,
.btn.btn-color-default:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-defaut.dropdown-toggle,
.show > a.btn.btn-color-defaut.dropdown-toggle,
.show > .btn.btn-color-defaut.dropdown-toggle,
.show > button.btn.btn-color-default.dropdown-toggle,
.show > a.btn.btn-color-default.dropdown-toggle,
.show > .btn.btn-color-default.dropdown-toggle {
  box-shadow: none;
  color: #525759;
}
button.btn.btn-color-primary,
a.btn.btn-color-primary,
.btn.btn-color-primary {
  color: #1E2123;
}
button.btn.btn-color-primary:hover,
a.btn.btn-color-primary:hover,
.btn.btn-color-primary:hover,
button.btn.btn-color-primary:active,
a.btn.btn-color-primary:active,
.btn.btn-color-primary:active,
button.btn.btn-color-primary:focus,
a.btn.btn-color-primary:focus,
.btn.btn-color-primary:focus {
  color: #060708;
}
button.btn.btn-color-primary:not([disabled]):not(.disabled):active,
a.btn.btn-color-primary:not([disabled]):not(.disabled):active,
.btn.btn-color-primary:not([disabled]):not(.disabled):active,
button.btn.btn-color-primary:not([disabled]):not(.disabled).active,
a.btn.btn-color-primary:not([disabled]):not(.disabled).active,
.btn.btn-color-primary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-primary.dropdown-toggle,
.show > a.btn.btn-color-primary.dropdown-toggle,
.show > .btn.btn-color-primary.dropdown-toggle {
  box-shadow: none;
  color: #060708;
}
button.btn.btn-color-secondary,
a.btn.btn-color-secondary,
.btn.btn-color-secondary {
  color: #E30233;
}
button.btn.btn-color-secondary:hover,
a.btn.btn-color-secondary:hover,
.btn.btn-color-secondary:hover,
button.btn.btn-color-secondary:active,
a.btn.btn-color-secondary:active,
.btn.btn-color-secondary:active,
button.btn.btn-color-secondary:focus,
a.btn.btn-color-secondary:focus,
.btn.btn-color-secondary:focus {
  color: #b00228;
}
button.btn.btn-color-secondary:not([disabled]):not(.disabled):active,
a.btn.btn-color-secondary:not([disabled]):not(.disabled):active,
.btn.btn-color-secondary:not([disabled]):not(.disabled):active,
button.btn.btn-color-secondary:not([disabled]):not(.disabled).active,
a.btn.btn-color-secondary:not([disabled]):not(.disabled).active,
.btn.btn-color-secondary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-secondary.dropdown-toggle,
.show > a.btn.btn-color-secondary.dropdown-toggle,
.show > .btn.btn-color-secondary.dropdown-toggle {
  box-shadow: none;
  color: #b00228;
}
button.btn.btn-color-success,
a.btn.btn-color-success,
.btn.btn-color-success {
  color: #4cbb6c;
}
button.btn.btn-color-success:hover,
a.btn.btn-color-success:hover,
.btn.btn-color-success:hover,
button.btn.btn-color-success:active,
a.btn.btn-color-success:active,
.btn.btn-color-success:active,
button.btn.btn-color-success:focus,
a.btn.btn-color-success:focus,
.btn.btn-color-success:focus {
  color: #3a9a56;
}
button.btn.btn-color-success:not([disabled]):not(.disabled):active,
a.btn.btn-color-success:not([disabled]):not(.disabled):active,
.btn.btn-color-success:not([disabled]):not(.disabled):active,
button.btn.btn-color-success:not([disabled]):not(.disabled).active,
a.btn.btn-color-success:not([disabled]):not(.disabled).active,
.btn.btn-color-success:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-success.dropdown-toggle,
.show > a.btn.btn-color-success.dropdown-toggle,
.show > .btn.btn-color-success.dropdown-toggle {
  box-shadow: none;
  color: #3a9a56;
}
button.btn.btn-color-error,
a.btn.btn-color-error,
.btn.btn-color-error {
  color: #ff4c4c;
}
button.btn.btn-color-error:hover,
a.btn.btn-color-error:hover,
.btn.btn-color-error:hover,
button.btn.btn-color-error:active,
a.btn.btn-color-error:active,
.btn.btn-color-error:active,
button.btn.btn-color-error:focus,
a.btn.btn-color-error:focus,
.btn.btn-color-error:focus {
  color: #ff1919;
}
button.btn.btn-color-error:not([disabled]):not(.disabled):active,
a.btn.btn-color-error:not([disabled]):not(.disabled):active,
.btn.btn-color-error:not([disabled]):not(.disabled):active,
button.btn.btn-color-error:not([disabled]):not(.disabled).active,
a.btn.btn-color-error:not([disabled]):not(.disabled).active,
.btn.btn-color-error:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-error.dropdown-toggle,
.show > a.btn.btn-color-error.dropdown-toggle,
.show > .btn.btn-color-error.dropdown-toggle {
  box-shadow: none;
  color: #ff1919;
}
button.btn.btn-color-info,
a.btn.btn-color-info,
.btn.btn-color-info {
  color: #37b0e9;
}
button.btn.btn-color-info:hover,
a.btn.btn-color-info:hover,
.btn.btn-color-info:hover,
button.btn.btn-color-info:active,
a.btn.btn-color-info:active,
.btn.btn-color-info:active,
button.btn.btn-color-info:focus,
a.btn.btn-color-info:focus,
.btn.btn-color-info:focus {
  color: #1799d6;
}
button.btn.btn-color-info:not([disabled]):not(.disabled):active,
a.btn.btn-color-info:not([disabled]):not(.disabled):active,
.btn.btn-color-info:not([disabled]):not(.disabled):active,
button.btn.btn-color-info:not([disabled]):not(.disabled).active,
a.btn.btn-color-info:not([disabled]):not(.disabled).active,
.btn.btn-color-info:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-info.dropdown-toggle,
.show > a.btn.btn-color-info.dropdown-toggle,
.show > .btn.btn-color-info.dropdown-toggle {
  box-shadow: none;
  color: #1799d6;
}
button.btn.btn-color-warning,
a.btn.btn-color-warning,
.btn.btn-color-warning {
  color: #ff9a52;
}
button.btn.btn-color-warning:hover,
a.btn.btn-color-warning:hover,
.btn.btn-color-warning:hover,
button.btn.btn-color-warning:active,
a.btn.btn-color-warning:active,
.btn.btn-color-warning:active,
button.btn.btn-color-warning:focus,
a.btn.btn-color-warning:focus,
.btn.btn-color-warning:focus {
  color: #ff7c1f;
}
button.btn.btn-color-warning:not([disabled]):not(.disabled):active,
a.btn.btn-color-warning:not([disabled]):not(.disabled):active,
.btn.btn-color-warning:not([disabled]):not(.disabled):active,
button.btn.btn-color-warning:not([disabled]):not(.disabled).active,
a.btn.btn-color-warning:not([disabled]):not(.disabled).active,
.btn.btn-color-warning:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-warning.dropdown-toggle,
.show > a.btn.btn-color-warning.dropdown-toggle,
.show > .btn.btn-color-warning.dropdown-toggle {
  box-shadow: none;
  color: #ff7c1f;
}
button.btn.btn-color-txt,
a.btn.btn-color-txt,
.btn.btn-color-txt {
  color: rgba(53, 61, 66, 0.5);
}
button.btn.btn-color-txt:hover,
a.btn.btn-color-txt:hover,
.btn.btn-color-txt:hover,
button.btn.btn-color-txt:active,
a.btn.btn-color-txt:active,
.btn.btn-color-txt:active,
button.btn.btn-color-txt:focus,
a.btn.btn-color-txt:focus,
.btn.btn-color-txt:focus {
  color: rgba(53, 61, 66, 0.75);
}
button.btn.btn-color-txt:not([disabled]):not(.disabled):active,
a.btn.btn-color-txt:not([disabled]):not(.disabled):active,
.btn.btn-color-txt:not([disabled]):not(.disabled):active,
button.btn.btn-color-txt:not([disabled]):not(.disabled).active,
a.btn.btn-color-txt:not([disabled]):not(.disabled).active,
.btn.btn-color-txt:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-txt.dropdown-toggle,
.show > a.btn.btn-color-txt.dropdown-toggle,
.show > .btn.btn-color-txt.dropdown-toggle {
  box-shadow: none;
  color: rgba(53, 61, 66, 0.75);
}
button.btn.btn-color-border,
a.btn.btn-color-border,
.btn.btn-color-border {
  color: #dde0e4;
}
button.btn.btn-color-border:hover,
a.btn.btn-color-border:hover,
.btn.btn-color-border:hover,
button.btn.btn-color-border:active,
a.btn.btn-color-border:active,
.btn.btn-color-border:active,
button.btn.btn-color-border:focus,
a.btn.btn-color-border:focus,
.btn.btn-color-border:focus {
  color: #c1c7cd;
}
button.btn.btn-color-border:not([disabled]):not(.disabled):active,
a.btn.btn-color-border:not([disabled]):not(.disabled):active,
.btn.btn-color-border:not([disabled]):not(.disabled):active,
button.btn.btn-color-border:not([disabled]):not(.disabled).active,
a.btn.btn-color-border:not([disabled]):not(.disabled).active,
.btn.btn-color-border:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-border.dropdown-toggle,
.show > a.btn.btn-color-border.dropdown-toggle,
.show > .btn.btn-color-border.dropdown-toggle {
  box-shadow: none;
  color: #c1c7cd;
}
button.btn.btn-color-white,
a.btn.btn-color-white,
.btn.btn-color-white {
  color: #FFF;
}
button.btn.btn-color-white:hover,
a.btn.btn-color-white:hover,
.btn.btn-color-white:hover,
button.btn.btn-color-white:active,
a.btn.btn-color-white:active,
.btn.btn-color-white:active,
button.btn.btn-color-white:focus,
a.btn.btn-color-white:focus,
.btn.btn-color-white:focus {
  color: #e6e6e6;
}
button.btn.btn-color-white:not([disabled]):not(.disabled):active,
a.btn.btn-color-white:not([disabled]):not(.disabled):active,
.btn.btn-color-white:not([disabled]):not(.disabled):active,
button.btn.btn-color-white:not([disabled]):not(.disabled).active,
a.btn.btn-color-white:not([disabled]):not(.disabled).active,
.btn.btn-color-white:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-white.dropdown-toggle,
.show > a.btn.btn-color-white.dropdown-toggle,
.show > .btn.btn-color-white.dropdown-toggle {
  box-shadow: none;
  color: #e6e6e6;
}
button.btn.btn-color-delete,
a.btn.btn-color-delete,
.btn.btn-color-delete {
  color: #6a7174;
  background: transparent;
}
button.btn.btn-color-delete:hover,
a.btn.btn-color-delete:hover,
.btn.btn-color-delete:hover,
button.btn.btn-color-delete:active,
a.btn.btn-color-delete:active,
.btn.btn-color-delete:active,
button.btn.btn-color-delete:focus,
a.btn.btn-color-delete:focus,
.btn.btn-color-delete:focus {
  color: #ff4c4c;
  background: transparent;
}
button.btn.btn-color-delete:not([disabled]):not(.disabled):active,
a.btn.btn-color-delete:not([disabled]):not(.disabled):active,
.btn.btn-color-delete:not([disabled]):not(.disabled):active,
button.btn.btn-color-delete:not([disabled]):not(.disabled).active,
a.btn.btn-color-delete:not([disabled]):not(.disabled).active,
.btn.btn-color-delete:not([disabled]):not(.disabled).active,
.show > button.btn.btn-color-delete.dropdown-toggle,
.show > a.btn.btn-color-delete.dropdown-toggle,
.show > .btn.btn-color-delete.dropdown-toggle {
  box-shadow: none;
  color: #ff4c4c;
  background: transparent;
}
button.btn.btn-hover-defaut,
a.btn.btn-hover-defaut,
.btn.btn-hover-defaut,
button.btn.btn-hover-default,
a.btn.btn-hover-default,
.btn.btn-hover-default {
  color: #6a7174;
}
button.btn.btn-hover-defaut:hover,
a.btn.btn-hover-defaut:hover,
.btn.btn-hover-defaut:hover,
button.btn.btn-hover-default:hover,
a.btn.btn-hover-default:hover,
.btn.btn-hover-default:hover,
button.btn.btn-hover-defaut:active,
a.btn.btn-hover-defaut:active,
.btn.btn-hover-defaut:active,
button.btn.btn-hover-default:active,
a.btn.btn-hover-default:active,
.btn.btn-hover-default:active,
button.btn.btn-hover-defaut:focus,
a.btn.btn-hover-defaut:focus,
.btn.btn-hover-defaut:focus,
button.btn.btn-hover-default:focus,
a.btn.btn-hover-default:focus,
.btn.btn-hover-default:focus {
  color: #FFF;
  background-color: #6a7174;
}
button.btn.btn-hover-defaut:not([disabled]):not(.disabled):active,
a.btn.btn-hover-defaut:not([disabled]):not(.disabled):active,
.btn.btn-hover-defaut:not([disabled]):not(.disabled):active,
button.btn.btn-hover-default:not([disabled]):not(.disabled):active,
a.btn.btn-hover-default:not([disabled]):not(.disabled):active,
.btn.btn-hover-default:not([disabled]):not(.disabled):active,
button.btn.btn-hover-defaut:not([disabled]):not(.disabled).active,
a.btn.btn-hover-defaut:not([disabled]):not(.disabled).active,
.btn.btn-hover-defaut:not([disabled]):not(.disabled).active,
button.btn.btn-hover-default:not([disabled]):not(.disabled).active,
a.btn.btn-hover-default:not([disabled]):not(.disabled).active,
.btn.btn-hover-default:not([disabled]):not(.disabled).active,
.show > button.btn.btn-hover-defaut.dropdown-toggle,
.show > a.btn.btn-hover-defaut.dropdown-toggle,
.show > .btn.btn-hover-defaut.dropdown-toggle,
.show > button.btn.btn-hover-default.dropdown-toggle,
.show > a.btn.btn-hover-default.dropdown-toggle,
.show > .btn.btn-hover-default.dropdown-toggle {
  box-shadow: none;
  color: #FFF;
  background-color: #6a7174;
}
button.btn.btn-hover-primary,
a.btn.btn-hover-primary,
.btn.btn-hover-primary {
  color: #1E2123;
}
button.btn.btn-hover-primary:hover,
a.btn.btn-hover-primary:hover,
.btn.btn-hover-primary:hover,
button.btn.btn-hover-primary:active,
a.btn.btn-hover-primary:active,
.btn.btn-hover-primary:active,
button.btn.btn-hover-primary:focus,
a.btn.btn-hover-primary:focus,
.btn.btn-hover-primary:focus {
  color: #FFF;
  background-color: #1E2123;
}
button.btn.btn-hover-primary:not([disabled]):not(.disabled):active,
a.btn.btn-hover-primary:not([disabled]):not(.disabled):active,
.btn.btn-hover-primary:not([disabled]):not(.disabled):active,
button.btn.btn-hover-primary:not([disabled]):not(.disabled).active,
a.btn.btn-hover-primary:not([disabled]):not(.disabled).active,
.btn.btn-hover-primary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-hover-primary.dropdown-toggle,
.show > a.btn.btn-hover-primary.dropdown-toggle,
.show > .btn.btn-hover-primary.dropdown-toggle {
  box-shadow: none;
  color: #FFF;
  background-color: #1E2123;
}
button.btn.btn-hover-secondary,
a.btn.btn-hover-secondary,
.btn.btn-hover-secondary {
  color: #E30233;
}
button.btn.btn-hover-secondary:hover,
a.btn.btn-hover-secondary:hover,
.btn.btn-hover-secondary:hover,
button.btn.btn-hover-secondary:active,
a.btn.btn-hover-secondary:active,
.btn.btn-hover-secondary:active,
button.btn.btn-hover-secondary:focus,
a.btn.btn-hover-secondary:focus,
.btn.btn-hover-secondary:focus {
  color: #FFF;
  background-color: #E30233;
}
button.btn.btn-hover-secondary:not([disabled]):not(.disabled):active,
a.btn.btn-hover-secondary:not([disabled]):not(.disabled):active,
.btn.btn-hover-secondary:not([disabled]):not(.disabled):active,
button.btn.btn-hover-secondary:not([disabled]):not(.disabled).active,
a.btn.btn-hover-secondary:not([disabled]):not(.disabled).active,
.btn.btn-hover-secondary:not([disabled]):not(.disabled).active,
.show > button.btn.btn-hover-secondary.dropdown-toggle,
.show > a.btn.btn-hover-secondary.dropdown-toggle,
.show > .btn.btn-hover-secondary.dropdown-toggle {
  box-shadow: none;
  color: #FFF;
  background-color: #E30233;
}
button.btn.btn-hover-success,
a.btn.btn-hover-success,
.btn.btn-hover-success {
  color: #4cbb6c;
}
button.btn.btn-hover-success:hover,
a.btn.btn-hover-success:hover,
.btn.btn-hover-success:hover,
button.btn.btn-hover-success:active,
a.btn.btn-hover-success:active,
.btn.btn-hover-success:active,
button.btn.btn-hover-success:focus,
a.btn.btn-hover-success:focus,
.btn.btn-hover-success:focus {
  color: #FFF;
  background-color: #4cbb6c;
}
button.btn.btn-hover-success:not([disabled]):not(.disabled):active,
a.btn.btn-hover-success:not([disabled]):not(.disabled):active,
.btn.btn-hover-success:not([disabled]):not(.disabled):active,
button.btn.btn-hover-success:not([disabled]):not(.disabled).active,
a.btn.btn-hover-success:not([disabled]):not(.disabled).active,
.btn.btn-hover-success:not([disabled]):not(.disabled).active,
.show > button.btn.btn-hover-success.dropdown-toggle,
.show > a.btn.btn-hover-success.dropdown-toggle,
.show > .btn.btn-hover-success.dropdown-toggle {
  box-shadow: none;
  color: #FFF;
  background-color: #4cbb6c;
}
button.btn.btn-hover-error,
a.btn.btn-hover-error,
.btn.btn-hover-error {
  color: #ff4c4c;
}
button.btn.btn-hover-error:hover,
a.btn.btn-hover-error:hover,
.btn.btn-hover-error:hover,
button.btn.btn-hover-error:active,
a.btn.btn-hover-error:active,
.btn.btn-hover-error:active,
button.btn.btn-hover-error:focus,
a.btn.btn-hover-error:focus,
.btn.btn-hover-error:focus {
  color: #FFF;
  background-color: #ff4c4c;
}
button.btn.btn-hover-error:not([disabled]):not(.disabled):active,
a.btn.btn-hover-error:not([disabled]):not(.disabled):active,
.btn.btn-hover-error:not([disabled]):not(.disabled):active,
button.btn.btn-hover-error:not([disabled]):not(.disabled).active,
a.btn.btn-hover-error:not([disabled]):not(.disabled).active,
.btn.btn-hover-error:not([disabled]):not(.disabled).active,
.show > button.btn.btn-hover-error.dropdown-toggle,
.show > a.btn.btn-hover-error.dropdown-toggle,
.show > .btn.btn-hover-error.dropdown-toggle {
  box-shadow: none;
  color: #FFF;
  background-color: #ff4c4c;
}
button.btn.btn-hover-info,
a.btn.btn-hover-info,
.btn.btn-hover-info {
  color: #37b0e9;
}
button.btn.btn-hover-info:hover,
a.btn.btn-hover-info:hover,
.btn.btn-hover-info:hover,
button.btn.btn-hover-info:active,
a.btn.btn-hover-info:active,
.btn.btn-hover-info:active,
button.btn.btn-hover-info:focus,
a.btn.btn-hover-info:focus,
.btn.btn-hover-info:focus {
  color: #FFF;
  background-color: #37b0e9;
}
button.btn.btn-hover-info:not([disabled]):not(.disabled):active,
a.btn.btn-hover-info:not([disabled]):not(.disabled):active,
.btn.btn-hover-info:not([disabled]):not(.disabled):active,
button.btn.btn-hover-info:not([disabled]):not(.disabled).active,
a.btn.btn-hover-info:not([disabled]):not(.disabled).active,
.btn.btn-hover-info:not([disabled]):not(.disabled).active,
.show > button.btn.btn-hover-info.dropdown-toggle,
.show > a.btn.btn-hover-info.dropdown-toggle,
.show > .btn.btn-hover-info.dropdown-toggle {
  box-shadow: none;
  color: #FFF;
  background-color: #37b0e9;
}
button.btn.btn-hover-warning,
a.btn.btn-hover-warning,
.btn.btn-hover-warning {
  color: #ff9a52;
}
button.btn.btn-hover-warning:hover,
a.btn.btn-hover-warning:hover,
.btn.btn-hover-warning:hover,
button.btn.btn-hover-warning:active,
a.btn.btn-hover-warning:active,
.btn.btn-hover-warning:active,
button.btn.btn-hover-warning:focus,
a.btn.btn-hover-warning:focus,
.btn.btn-hover-warning:focus {
  color: #FFF;
  background-color: #ff9a52;
}
button.btn.btn-hover-warning:not([disabled]):not(.disabled):active,
a.btn.btn-hover-warning:not([disabled]):not(.disabled):active,
.btn.btn-hover-warning:not([disabled]):not(.disabled):active,
button.btn.btn-hover-warning:not([disabled]):not(.disabled).active,
a.btn.btn-hover-warning:not([disabled]):not(.disabled).active,
.btn.btn-hover-warning:not([disabled]):not(.disabled).active,
.show > button.btn.btn-hover-warning.dropdown-toggle,
.show > a.btn.btn-hover-warning.dropdown-toggle,
.show > .btn.btn-hover-warning.dropdown-toggle {
  box-shadow: none;
  color: #FFF;
  background-color: #ff9a52;
}
button.btn.btn-hover-border,
a.btn.btn-hover-border,
.btn.btn-hover-border {
  color: #dde0e4;
}
button.btn.btn-hover-border:hover,
a.btn.btn-hover-border:hover,
.btn.btn-hover-border:hover,
button.btn.btn-hover-border:active,
a.btn.btn-hover-border:active,
.btn.btn-hover-border:active,
button.btn.btn-hover-border:focus,
a.btn.btn-hover-border:focus,
.btn.btn-hover-border:focus {
  color: #FFF;
  background-color: #dde0e4;
}
button.btn.btn-hover-border:not([disabled]):not(.disabled):active,
a.btn.btn-hover-border:not([disabled]):not(.disabled):active,
.btn.btn-hover-border:not([disabled]):not(.disabled):active,
button.btn.btn-hover-border:not([disabled]):not(.disabled).active,
a.btn.btn-hover-border:not([disabled]):not(.disabled).active,
.btn.btn-hover-border:not([disabled]):not(.disabled).active,
.show > button.btn.btn-hover-border.dropdown-toggle,
.show > a.btn.btn-hover-border.dropdown-toggle,
.show > .btn.btn-hover-border.dropdown-toggle {
  box-shadow: none;
  color: #FFF;
  background-color: #dde0e4;
}
/* STYLES LINK
==================================================== */
a {
  color: #E30233;
}
a:hover,
a:focus {
  color: #1E2123;
  text-decoration: underline;
}
a.a-primary {
  color: #1E2123;
}
a.a-primary:hover,
a.a-primary:focus {
  color: #1E2123;
}
a.a-secondary {
  color: #E30233;
}
a.a-secondary:hover,
a.a-secondary:focus {
  color: #E30233;
}
a.a-black {
  color: #000;
}
a.a-black:hover,
a.a-black:focus {
  color: #000;
}
a.a-white {
  color: #000;
}
a.a-white:hover,
a.a-white:focus {
  color: #000;
}
a.a-Off {
  opacity: 0.5;
}
a i {
  vertical-align: baseline;
}
a.a-nostyle {
  text-decoration: none;
}
a.a-nostyle:hover,
a.a-nostyle:focus {
  text-decoration: none;
}
a.under-secondary {
  color: #E30233;
  text-decoration: underline;
}
a.under-secondary:hover,
a.under-secondary:focus {
  color: #1E2123;
  text-decoration: underline;
}
/* IMAGE
==================================================== */
.imgContent {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.imgContent.imgContinent {
  height: 125px;
  width: 200px;
}
.imgContent.imgCountry,
.imgContent .imgLogo {
  height: 80px;
  width: 80px;
}
.imgContent.imgCity {
  height: 80px;
  width: 120px;
}
.imgContent.imgWidth {
  height: auto;
  width: 100%;
}
.imgContent.imgHeight300 {
  height: 300px;
}
.imgContent.imgRadius {
  border-radius: 4px;
  overflow: hidden;
}
.imgContent.imgRadius .img-shadow {
  border-radius: 4px;
}
.imgContent.imgRadius .img-shadow:before {
  border-radius: 4px;
}
.imgContent.imgRadius .img-shadow img {
  border-radius: 4px;
}
.imgContent.imgCorner {
  margin-top: -60px;
}
@media (max-width: 479px) {
  .imgContent.imgCorner {
    margin-top: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .imgContent.imgCorner {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .imgContent.imgCorner {
    margin-top: 0;
  }
}
@media (max-width: 479px) {
  .imgContent.imgAvatar {
    height: 200px;
    width: 200px;
    margin: auto;
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .imgContent.imgAvatar {
    height: 200px;
    width: 200px;
    margin: auto;
    margin-bottom: 20px;
  }
}
.imgContent img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.dropdown-toggle:after {
  font-family: 'jcafFonts';
  /* icon-nav_bottom */
  content: '\e926';
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  vertical-align: -0.15rem;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}


@font-face {
  font-family: 'jcafFonts';
  src: url('../fonts/jcafFonts.eot?vro9cg');
  src: url('../fonts/jcafFonts.eot?vro9cg#iefix') format('embedded-opentype'), url('../fonts/jcafFonts.ttf?vro9cg') format('truetype'), url('../fonts/jcafFonts.woff?vro9cg') format('woff'), url('../fonts/jcafFonts.svg?vro9cg#jcafFonts') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'jcafFonts' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-trash:before {
  content: "\e945";
}
.icon-achat:before {
  content: "\e900";
}
.icon-adress_mail:before {
  content: "\e901";
}
.icon-agenda:before {
  content: "\e902";
}
.icon-amenagement:before {
  content: "\e903";
}
.icon-application:before {
  content: "\e904";
}
.icon-around:before {
  content: "\e905";
}
.icon-autres_line:before {
  content: "\e906";
}
.icon-autres:before {
  content: "\e907";
}
.icon-call:before {
  content: "\e908";
}
.icon-check:before {
  content: "\e909";
}
.icon-circle_bottom:before {
  content: "\e90a";
}
.icon-circle_check:before {
  content: "\e90b";
}
.icon-circle_delete:before {
  content: "\e90c";
}
.icon-circle_left:before {
  content: "\e90d";
}
.icon-circle_plus:before {
  content: "\e90e";
}
.icon-circle_right:before {
  content: "\e90f";
}
.icon-circle_top:before {
  content: "\e910";
}
.icon-complete:before {
  content: "\e911";
}
.icon-conception:before {
  content: "\e912";
}
.icon-delete:before {
  content: "\e913";
}
.icon-diamond:before {
  content: "\e914";
}
.icon-document:before {
  content: "\e915";
}
.icon-edit:before {
  content: "\e916";
}
.icon-electricite:before {
  content: "\e917";
}
.icon-facebook:before {
  content: "\e918";
}
.icon-facility:before {
  content: "\e919";
}
.icon-help:before {
  content: "\e91a";
}
.icon-home:before {
  content: "\e91b";
}
.icon-homeapp:before {
  content: "\e91c";
}
.icon-instagram:before {
  content: "\e91d";
}
.icon-installation:before {
  content: "\e91e";
}
.icon-linkedin:before {
  content: "\e91f";
}
.icon-logout:before {
  content: "\e920";
}
.icon-mail:before {
  content: "\e921";
}
.icon-menuiserie:before {
  content: "\e922";
}
.icon-mesure:before {
  content: "\e923";
}
.icon-minus_round:before {
  content: "\e924";
}
.icon-minus:before {
  content: "\e925";
}
.icon-nav_bottom:before {
  content: "\e926";
}
.icon-nav_left:before {
  content: "\e927";
}
.icon-nav_right:before {
  content: "\e928";
}
.icon-nav_top:before {
  content: "\e929";
}
.icon-phone_contact:before {
  content: "\e92a";
}
.icon-phone:before {
  content: "\e92b";
}
.icon-photo:before {
  content: "\e92c";
}
.icon-picture_1:before {
  content: "\e92d";
}
.icon-picture:before {
  content: "\e92e";
}
.icon-pinterest:before {
  content: "\e92f";
}
.icon-plomberie:before {
  content: "\e930";
}
.icon-plus_round:before {
  content: "\e931";
}
.icon-plus:before {
  content: "\e932";
}
.icon-pose:before {
  content: "\e933";
}
.icon-quality:before {
  content: "\e934";
}
.icon-question:before {
  content: "\e935";
}
.icon-renovation:before {
  content: "\e936";
}
.icon-search_l:before {
  content: "\e937";
}
.icon-search_r:before {
  content: "\e938";
}
.icon-solophone:before {
  content: "\e939";
}
.icon-sols:before {
  content: "\e93a";
}
.icon-star_full:before {
  content: "\e93b";
}
.icon-star:before {
  content: "\e93c";
}
.icon-stats:before {
  content: "\e93d";
}
.icon-time:before {
  content: "\e93e";
}
.icon-top:before {
  content: "\e93f";
}
.icon-twitter:before {
  content: "\e940";
}
.icon-upload:before {
  content: "\e941";
}
.icon-user:before {
  content: "\e942";
}
.icon-usercompte:before {
  content: "\e943";
}
.icon-youtube:before {
  content: "\e944";
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS NAVBAR - */
footer {
  background: #F9F9F9;
  color: #343434;
  font-size: 1rem;
  border-top: 2px solid #D8D9D0;
}
@media (max-width: 479px) {
  footer {
    font-size: 0.813rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer {
    font-size: 0.813rem;
  }
}
footer .footerNewsletter {
  background: #F9F9F9;
  padding: 30px 30px 10px 30px;
}
@media (max-width: 479px) {
  footer .footerNewsletter {
    padding-bottom: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer .footerNewsletter {
    padding-bottom: 30px;
  }
}
footer .footerNewsletter input.form-control {
  background: transparent;
  color: rgba(0, 0, 0, 0.6);
}
footer .footerNewsletter input.form-control::placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.6);
}
footer .footerDesc {
  opacity: 0.5;
}
footer .footerContent {
  padding: 30px 0;
}
footer .footerContent ul li a {
  color: rgba(0, 0, 0, 0.5);
  padding: 3px 0;
  display: inline-block;
}
@media (max-width: 479px) {
  footer .footerContent ul li a {
    padding: 10px 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer .footerContent ul li a {
    padding: 10px 0;
  }
}
footer .footerContent ul li a:hover,
footer .footerContent ul li a:focus {
  text-decoration: underline;
}
footer .footerContent .listTwoColumns {
  column-count: 2;
  column-gap: 15px;
}
@media (max-width: 479px) {
  footer .footerContent .listTwoColumns {
    column-count: 1;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer .footerContent .listTwoColumns {
    column-count: 1;
  }
}
footer .footerLogo {
  display: inline-block;
  position: relative;
  padding: 10px 5px;
  height: 80px;
  width: 100%;
}
footer .footerLogo span.img-shadow:before {
  box-shadow: none;
  -webkit-box-shadow: none;
}
footer .footerLogo span.img-shadow img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
footer .footerReseaux {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-align: right;
}
footer .footerReseaux ul li {
  display: inline-block;
}
footer .footerReseaux ul li a {
  opacity: 0.25;
}
footer .footerBottom {
  padding-bottom: 30px;
}
@media (max-width: 479px) {
  footer .footerBottom {
    padding-bottom: 50px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  footer .footerBottom {
    padding-bottom: 50px;
  }
}
footer .footerBottom .dropdown {
  padding-right: 10px;
}
footer .footerBottom .btn-color-white {
  font-size: 0.688rem;
}
footer .footerBottom .dropdown-item {
  font-size: 0.688rem;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS LAYOUT - */
/* FORMS
--------------------------------------------------- */
input,
select {
  font-weight: 300;
}
.form-row {
  margin-left: -10px;
  margin-right: -10px;
}
.form-row > .col,
.form-row > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
.required:after {
  content: '*';
  position: absolute;
  color: #ff4c4c;
  right: 12px;
  top: 6px;
  font-family: arial;
  font-size: 20px;
  z-index: 1;
}
.form-check {
  padding-left: 0;
}
.labelInline {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 479px) {
  .labelInline {
    flex-direction: column;
  }
}

.labelInline label {
  flex: none;
}
/* FORM-GROUP
------------------------------ */
.form-group {
  margin-bottom: 10px;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group .form-row {
  margin-right: -8px;
  margin-left: -8px;
}
@media (max-width: 479px) {
  .form-group .form-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .form-group .form-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.form-group .form-row > .col,
.form-group .form-row > [class*="col-"] {
  padding: 0 8px;
}
@media (max-width: 479px) {
  .form-group .form-row > .col,
  .form-group .form-row > [class*="col-"] {
    padding: 0 15px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .form-group .form-row > .col,
  .form-group .form-row > [class*="col-"] {
    padding: 0 15px;
  }
}
.input-group-text {
  background: transparent;
}
/* FORM-CONTROL
------------------------------ */
.form-control {
  min-height: 2.5rem;
  color: #353d42;
  font-size: 0.875rem;
  border-radius: 5px;
  font-family: "Asap", sans-serif;
}
.form-control::placeholder {
  opacity: 0.35;
  font-size: 0.875rem;
  color: #353d42;
  font-family: "Asap", sans-serif;
}
.form-control:focus {
  box-shadow: none;
  border-color: #b3bac2;
}
.form-control.placeholderDefault::placeholder {
  text-transform: none;
}
label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.813rem;
  font-family: "Asap", sans-serif;
  display: block;
}
textarea.form-control {
  min-height: 148px;
  padding: 0.75rem;
  font-family: "Asap", sans-serif;
  margin-bottom: 0;
  resize: none;
}
select.form-control {
  font-family: "Asap", sans-serif;
  height: 52px;
  border-color: #dde0e4;
  padding: 10px 5px;
  font-weight: 400;
  font-size: 1rem;
  border-radius: 5px;
  color: #353d42;
}
/* SELECT
------------------------------ */
.select2-container {
  width: 100% !important;
  border-color: #ced4da;
  font-weight: 400;
  font-size: 0.875rem;
  border-radius: 5px;
  color: #353d42;
  font-family: "Asap", sans-serif;
  /* single */
}
.select2-container .select2-selection--single {
  padding: 10px 5px;
  height: 52px;
  border-color: #ced4da;
  border-radius: 5px;
}
.select2-container .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--multiple .select2-selection__arrow {
  top: 10px;
  bottom: 5px;
  right: 10px;
  left: auto;
  background: transparent;
  border-left: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.select2-container .select2-results__option--highlighted[aria-selected] {
  background-color: #E30233;
}
.select2-container .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--multiple .select2-selection__arrow {
  top: 11px;
}
/* LABEL
------------------------------ */
/* CHECKBOX
---------------------- */
.checkbox + .checkbox {
  margin-top: -5px;
}
.checkbox {
  position: relative;
}
.checkbox.required:after {
  right: 0px;
  top: -6px;
}
.checkbox label.required:after {
  content: none;
}
.checkbox label.required span.required:after {
  content: '*';
  position: relative;
  color: #ff4c4c;
  font-family: arial;
  font-size: 20px;
  z-index: 1;
  top: inherit;
  right: inherit;
}
input[type="checkbox"] {
  margin-top: 1px 0 0;
  line-height: normal;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
[type=checkbox] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input,
input:focus {
  -webkit-transition: none !important;
}
.checkbox input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox input[type=checkbox]:checked + label::after {
  font-family: 'jcafFonts' !important;;
  content: '\e909';
  color: #FFF;
}
.checkbox input[type=checkbox]:checked + label:before {
  border-width: 10px;
}
.checkbox label {
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
}
.checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  min-width: 20px;
  min-height: 20px;
  line-height: 22px;
  margin-bottom: 0;
  text-transform: inherit;
  font-weight: 300;
}
.checkbox label:before {
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 0px;
  background-color: #FFF;
  border: 1px solid #dde0e4;
}
.checkbox label:before {
  top: 1.4px;
  border-radius: 3px;
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
}
.checkbox label:after {
  border-radius: 3px;
}
.checkbox label::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 20px;
  transition: border 0.2s linear 0s, color 0.2s linear 0s;
}
/* CHANGE COLOR */
.checkbox input[type=checkbox]:checked + label:before {
  border-color: #1E2123;
}
.checkbox.checkbox-secondary input[type=checkbox]:checked + label:before {
  border-color: #E30233;
}
.checkbox.checkbox-error input[type=checkbox]:checked + label:before {
  border-color: #ff4c4c;
}
.checkbox.checkbox-error label {
  color: #ff4c4c;
}
.checkbox.checkbox-alert input[type=checkbox]:checked + label:before {
  border-color: #ff9a52;
}
.checkbox.checkbox-success input[type=checkbox]:checked + label:before {
  border-color: #4cbb6c;
}
/* IN FORM GROUP */
.form-group .checkbox,
.form-group-attached .checkbox {
  display: inline-flex;
}
.form-group .checkbox label:before,
.form-group-attached .checkbox label:before {
  top: 1.4px;
}
.form-group .checkbox label::after,
.form-group-attached .checkbox label::after {
  top: 0px;
}
/* RADIOBOX
---------------------- */
.radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 15px;
  min-width: 17px;
  min-height: 17px;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}
.radio label:before {
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 10px;
  position: absolute;
  left: 0px;
  background-color: #FFF;
  border: 1px solid #dde0e4;
}
.radio label:before {
  bottom: 2.5px;
  border-radius: 99px;
  -webkit-transition: border 0.3s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  transition: border 0.3s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
}
.radio input[type=radio]:checked + label:before {
  border-width: 5px;
}
.radio input[type="radio"]:focus + label:before {
  background-color: #FFF;
}
.radio input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
}
.radio input[type=radio][disabled] + label {
  opacity: 0.65;
}
/* CHANGE COLOR */
.radio input[type=radio]:checked + label:before {
  border-color: #1E2123;
}
.radio.radio-primary input[type=radio]:checked + label:before {
  border-color: #1E2123;
}
.radio.radio-secondary input[type=radio]:checked + label:before {
  border-color: #E30233;
}
.radio.radio-error input[type=radio]:checked + label:before {
  border-color: #ff4c4c;
}
.radio.radio-error label {
  color: #ff4c4c;
}
.radio.radio-alert input[type=radio]:checked + label:before {
  border-color: #ff9a52;
}
.radio.radio-success input[type=radio]:checked + label:before {
  border-color: #4cbb6c;
}
.radio + .radio {
  margin-top: -5px;
}
/* IN FORM GROUP */
.form-group .radio,
.form-group-attached .radio {
  display: inline-flex;
  padding: 15px 0;
}
/* TOGGLE */
.toggle {
  position: relative;
  display: flex;
}
.toggle span {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.875rem;
}
.toggle input {
  display: none;
}
.toggle input,
.toggle input:after,
.toggle input:before,
.toggle input *,
.toggle input *:after,
.toggle input *:before,
.toggle input + label {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.toggle input::-moz-selection,
.toggle input:after::-moz-selection,
.toggle input:before::-moz-selection,
.toggle input *::-moz-selection,
.toggle input *:after::-moz-selection,
.toggle input *:before::-moz-selection,
.toggle input + label::-moz-selection {
  background: none;
}
.toggle input::selection,
.toggle input:after::selection,
.toggle input:before::selection,
.toggle input *::selection,
.toggle input *:after::selection,
.toggle input *:before::selection,
.toggle input + label::selection {
  background: none;
}
.toggle input + label {
  outline: 0;
  margin: 0;
  display: block;
  width: 30px;
  height: 15px;
  position: relative;
  cursor: pointer;
  border-radius: 2em;
  padding: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 40px;
  height: 20px;
}
.toggle input + label:after,
.toggle input + label:before {
  position: relative;
  display: block;
  content: "";
  width: 16px;
  height: 100%;
}
.toggle input + label:after {
  left: 0;
  border-radius: 50%;
  background: #FFF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.toggle input + label:before {
  display: none;
}
.toggle input:checked + label:after {
  left: 20px;
}
.toggle-primary input + label {
  background: #b4bbbf;
}
.toggle-primary input:checked + label {
  background: #1e2123;
}
.toggle-secondary input + label {
  background: #b4bbbf;
}
.toggle-secondary input:checked + label {
  background: #e30233;
}
.toggle-error input + label {
  background: #b4bbbf;
}
.toggle-error input:checked + label {
  background: #ff4c4c;
}
.toggle-success input + label {
  background: #b4bbbf;
}
.toggle-success input:checked + label {
  background: #4cbb6c;
}
.toggle-warning input + label {
  background: #b4bbbf;
}
.toggle-warning input:checked + label {
  background: #ff9a52;
}
.toggle-active input + label {
  background: #ff3232;
}
.toggle-active input:checked + label {
  background: #4cbb6c;
}
.disabled .toggle input + label {
  background: #d0d6d9 !important;
}
.disabled .toggle input:checked + label {
  background: #e30233;
}
/* BTN RADIO CHECKBOX RADIO */
.checkboxImg input[type=checkbox],
.checkboxImg input[type=radio] {
  display: none;
}
.checkboxImg label {
  margin-bottom: 15px;
}
.checkboxImg input[type=checkbox] + label{
  background: transparent;
  border: 2px solid;
  border-color: #dde0e4;
  border-radius: 10px;
  width: 100%;
  display: inline-block;
  padding: 15px;
  text-align: center;
}
.checkboxImg input[type=radio] + label {
  background: transparent;
  border: 2px solid;
  border-color: #dde0e4;
  border-radius: 50px;
  width: 100%;
  display: inline-block;
  padding: 15px;
  text-align: center;
}
.checkboxImg input[type=checkbox] + label:hover,
.checkboxImg input[type=radio] + label:hover,
.checkboxImg input[type=checkbox] + label:focus,
.checkboxImg input[type=radio] + label:focus {
  cursor: pointer;
}
.checkboxImg input[type=checkbox] + label i,
.checkboxImg input[type=radio] + label i {
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
}
.checkboxImg input[type=checkbox]:checked + label,
.checkboxImg input[type=radio]:checked + label {
  border-color: #E30233;
}
.checkboxImg input[type=checkbox]:checked + label i,
.checkboxImg input[type=radio]:checked + label i {
  color: #E30233;
}
/* TAGS */
.bootstrap-tagsinput {
  border: 1px solid #dde0e4;
  box-shadow: none;
  width: 100%;
  border-radius: 4px;
  padding: 5px 10px;
  min-height: 52px;
  color: #353d42;
  font-size: 0.813rem;
}
.bootstrap-tagsinput input {
  padding: 9px 10px;
  min-width: 20%;
  color: #353d42;
  font-size: 0.875rem;
}
.bootstrap-tagsinput .tag {
  padding: 5px 15px;
  border-radius: 30px;
  background: #E30233;
  display: inline-flex;
  align-items: center;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  height: 22px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  font-family: 'jcaffonts';
  content: '\e913';
  font-size: 20px;
}
.docContent {
  margin-bottom: 30px;
}
.docContent li {
  padding: 15px;
  padding-bottom: 0;
  border-bottom: 1px dotted #dde0e4;
  transition: all ease-in-out 0.125s;
}
.docContent li:hover,
.docContent li:focus {
  background: #ebebeb;
}
.docContent .docUploaded {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.docContent .statutUpload {
  font-weight: 700;
  margin-right: auto;
  margin-left: 15px;
  vertical-align: sub;
}
.docContent .statutUpload i {
  font-size: 20px;
  vertical-align: sub;
}
.docContent .docUploadedContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.docContent .docUploadedContent.success {
  color: #4cbb6c;
}
.docContent .docUploadedContent.warning {
  color: #ff9a52;
}
.docContent .docUploadedContent.error {
  color: #ff4c4c;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS LAYOUT - */
/* RESET
--------------------------------------------------- */
html {
  font-size: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Asap", sans-serif;
  font-weight: 300;
  font-size: 1em;
  color: #3C3C3C;
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
  outline: 0;
}
p {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
input:focus,
select:focus,
a:focus,
button:focus,
th:focus {
  outline: 0!important;
}
/*
.container {
    padding-right: 10px;
    padding-left: 10px;
}
.row {
    margin-left: -10px;
    margin-right: -10px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px;
}
*/
.card {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  border: 0;
}
.card.cardOverTitle {
  margin-top: -40px;
  z-index: 2;
}
.card .cardContent {
  padding: 2rem;
}

@media (max-width: 479px) {
  .card .cardContent {
    padding: 0;
  }
}

.card .cardContentRight {
  padding: 0 15px;
  padding-left: 0;
}
.card .cardBloc {
  padding: 15px;
  background: rgba(0, 0, 0, 0);
  position: relative;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS LAYOUT - */
.modal-header {
  border-bottom: none;
}
.modal-header .close {
  position: absolute;
  z-index: 11;
  right: 1rem;
  top: 1rem;
}
.modal-title {
  font-size: 1.5rem;
  text-align: center;
  flex-grow: 1;
}
.modal.fade .modal-dialog.modal-dialog-zoom {
  -webkit-transform: translate(0, 0) scale(0.5);
  transform: translate(0, 0) scale(0.5);
}
.modal.show .modal-dialog.modal-dialog-zoom {
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS MODULES - */
/* SLIDER BOOSTRAP
------------------------------------------------------------------- */
.carousel {
  height: 100%;
}
.carousel-inner {
  height: 100%;
}
.carousel-item {
  height: 100%;
}
.carouselTxt {
  position: absolute;
  left: 0;
  right: 0;
  color: #FFF;
  text-align: center;
  top: 0px;
  padding: 40px 20px;
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.carouselTxt i {
  font-size: 90px;
}
.carouselTxt p {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2rem;
}
.carouselTxt p span {
  font-weight: 700;
}
.carouselTxtBottom {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 40%;
  color: #FFF;
  text-align: left;
  bottom: 0;
  padding: 20px;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0) 100%);
}
.carouselTxtBottom p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.carouselTxtBottom p.price {
  font-size: 2.25rem;
  font-weight: 700;
  margin-left: 30px;
  display: block;
}
.sliderRealisations {
  border-radius: 4px;
  overflow: hidden;
}
.carouselImg {
  position: relative;
  overflow: hidden;
  max-height: 450px;
  border-radius: 4px;
}
.carouselImg span.img-shadow {
  border-radius: 4px;
}
.carouselImg span.img-shadow:before {
  border-radius: 4px;
  box-shadow: none;
}
.carouselImg span.img-shadow img {
  border-radius: 4px;
}
.carouselImg img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.carousel-indicators {
  bottom: -60px;
  margin-bottom: 0;
  z-index: 5;
}
.carousel-indicators.fixedBottom {
  bottom: 30px;
}
.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin-top: 3px;
  margin-left: 6px;
  margin-right: 6px;
  background-color: #FFF;
  border: 1px solid;
  border-color: #dde0e4;
}
.carousel-indicators li.active {
  width: 14px;
  height: 14px;
  border-radius: 14px;
  margin-top: 0px;
  border-color: #E30233;
  background-color: #E30233;
}
.sliderTemoignages .carousel-control-next-icon {
  background: none;
}
.sliderTemoignages .carousel-control-next-icon:after {
  content: '\e928';
  /* nav_right */
  font-family: 'jcafFonts';
}
.sliderTemoignages .carousel-control-prev-icon {
  background: none;
}
.sliderTemoignages .carousel-control-prev-icon:after {
  content: '\e927';
  /* nav_left */
  font-family: 'jcafFonts';
}
.sliderTemoignages .carousel-control-next,
.sliderTemoignages .carousel-control-prev {
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  line-height: 42px;
  font-size: 25px;
  transition: all ease-in-out 0.125s;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
.sliderTemoignages .carousel-control-next:hover,
.sliderTemoignages .carousel-control-prev:hover,
.sliderTemoignages .carousel-control-next:focus,
.sliderTemoignages .carousel-control-prev:focus {
  opacity: 1;
}
.sliderTemoignages .carousel-control-next {
  transition: all ease-in-out 0.25s;
  right: -10px;
  color: #dde0e4;
  border: 1px solid #dde0e4;
}
.sliderTemoignages .carousel-control-next:hover,
.sliderTemoignages .carousel-control-next:focus {
  color: #dde0e4;
  transition: all ease-in-out 0.25s;
}
.sliderTemoignages .carousel-control-prev {
  transition: all ease-in-out 0.25s;
  left: -10px;
  color: #dde0e4;
  border: 1px solid #dde0e4;
}
.sliderTemoignages .carousel-control-prev:hover,
.sliderTemoignages .carousel-control-prev:focus {
  color: #dde0e4;
  transition: all ease-in-out 0.25s;
}
.sliderTemoignages .carousel-control-next-icon,
.sliderTemoignages .carousel-control-prev-icon {
  width: inherit;
  height: inherit;
}
.sliderRealisations .carousel-indicators {
  bottom: -30px;
  margin-bottom: 0;
}
.sliderRealisations .carousel-control-next-icon {
  background: none;
}
.sliderRealisations .carousel-control-next-icon:after {
  content: '\e928';
  /* nav_right */
  font-family: 'jcafFonts';
}
.sliderRealisations .carousel-control-prev-icon {
  background: none;
}
.sliderRealisations .carousel-control-prev-icon:after {
  content: '\e927';
  /* nav_left */
  font-family: 'jcafFonts';
}
.sliderRealisations .carousel-control-next,
.sliderRealisations .carousel-control-prev {
  z-index: 3;
  width: 100px;
  font-size: 40px;
  transition: all ease-in-out 0.125s;
  opacity: 1;
}
.sliderRealisations .carousel-control-next:hover,
.sliderRealisations .carousel-control-prev:hover,
.sliderRealisations .carousel-control-next:focus,
.sliderRealisations .carousel-control-prev:focus {
  opacity: 1;
}
.sliderRealisations .carousel-control-next {
  transition: all ease-in-out 0.25s;
  right: 0px;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.sliderRealisations .carousel-control-next:hover,
.sliderRealisations .carousel-control-next:focus {
  transition: all ease-in-out 0.25s;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.sliderRealisations .carousel-control-prev {
  transition: all ease-in-out 0.25s;
  left: 0px;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.sliderRealisations .carousel-control-prev:hover,
.sliderRealisations .carousel-control-prev:focus {
  transition: all ease-in-out 0.25s;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.sliderRealisations .carousel-control-next-icon,
.sliderRealisations .carousel-control-prev-icon {
  width: inherit;
  height: inherit;
}
/* BANDEAU REASSURANCE
------------------------------------------------------------------- */
.reassuranceContent {
  background: #E5E5E5;
  padding: 60px 0;
}
.reassuranceItem {
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reassuranceItem i {
  font-size: 40px;
  margin-right: 10px;
  color: #1E2123;
  display: block;
}
@media (max-width: 479px) {
  .reassuranceItem {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    line-height: 0.75rem;
  }
  .reassuranceItem i {
    margin-bottom: 15px;
    margin-right: 0;
    font-size: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .reassuranceItem {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    line-height: 0.75rem;
  }
  .reassuranceItem i {
    margin-bottom: 15px;
    margin-right: 0;
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .reassuranceItem {
    display: block;
    text-align: center;
  }
  .reassuranceItem i {
    margin-bottom: 15px;
    margin-right: 0;
  }
}
/* COLLAPSE BOOSTRAP
------------------------------------------------------------------- */
.collapseBloc {
  border-bottom: 1px solid #dde0e4;
}
.collapseBloc:first-child {
  border-top: 1px solid #dde0e4;
}
.collasssad {
  max-height: 45vh;
  overflow: scroll;
}
.collapseContent {
  padding: 0 40px;
}
.collapseTitle {
  position: relative;
  margin-bottom: 0;
  padding: 15px 0;
}
.collapseTitle:after {
  content: '\e925';
  font-family: 'jcafFonts' !important;
  /* icon_minus */
  position: absolute;
  right: 0;
  top: 7px;
  font-size: 30px;
  font-weight: 700;
  opacity: 1;
  color: #353d42;
}
.collapseTitle:hover,
.collapseTitle:focus {
  cursor: pointer;
}
.collapseTitle:hover:after,
.collapseTitle:focus:after {
  opacity: 1;
}
.collapseTitle.collapsed:after {
  content: '\e932';
  font-family: 'jcafFonts' !important;
  /* icon_plus */
  position: absolute;
  right: 0;
  font-size: 30px;
  top: 7px;
  opacity: 1;
  color: #353d42;
}
.collapseTitle.collapsed:hover,
.collapseTitle.collapsed:focus {
  cursor: pointer;
}
.collapseTitle.collapsed:hover:after,
.collapseTitle.collapsed:focus:after {
  opacity: 1;
}
.collapseParagraphe {
  position: relative;
}
.collapseParagraphe:after {
  content: '\e925';
  font-family: 'jcafFonts' !important;
  /* icon_minus */
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 15px;
  font-weight: 700;
  opacity: 1;
}
.collapseParagraphe:hover,
.collapseParagraphe:focus {
  cursor: pointer;
}
.collapseParagraphe:hover:after,
.collapseParagraphe:focus:after {
  opacity: 1;
}
.collapseParagraphe.collapsed:after {
  content: '\e932';
  font-family: 'jcafFonts' !important;
  /* icon_plus */
  position: absolute;
  right: 0;
  font-size: 15px;
  top: -2px;
  opacity: 1;
}
.collapseParagraphe.collapsed:hover,
.collapseParagraphe.collapsed:focus {
  cursor: pointer;
}
.collapseParagraphe.collapsed:hover:after,
.collapseParagraphe.collapsed:focus:after {
  opacity: 1;
}
.sloganBase {
  background: #1E2123;
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sloganBase span {
    letter-spacing: -0.5px;
  }
}
.parallelogramme {
  width: 1000px;
  height: 100px;
  background: #FFF;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
}
.formContentHome {
  position: relative;
  z-index: 3;
}
.formContentHome .card {
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
}
.beAProContent {
  background: #ECECED;
}
.beAProContent .beAProTxt {
  padding: 30px 0;
}
.beAProContent .beAProTxt div.lastItem {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.beAProContent .imgContent {
  opacity: 0.75;
}
.beAProContent .imgContent span.img-shadow:before {
  box-shadow: none;
}
/* SERVICE BTOB
------------------------------------------------------------------- */
.bTobContent {
  background: linear-gradient(90deg, #E30233 50%, #FFF 50%);
  margin-top: 120px;
}
@media (max-width: 479px) {
  .bTobContent {
    background: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .bTobContent {
    background: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bTobContent {
    background: none;
  }
}
.bTobContent .imgContent {
  margin-top: -60px;
  margin-bottom: 15px;
}
@media (max-width: 479px) {
  .bTobContent .imgContent.imgSquare {
    height: 300px!important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .bTobContent .imgContent.imgSquare {
    height: 300px!important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bTobContent .imgContent.imgSquare {
    height: 300px!important;
  }
}
/* SERVICE HOME
------------------------------------------------------------------- */
.serviceUne {
  cursor: auto;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 16rem;
  margin-bottom: 30px;
  border-bottom: 3px solid #E30233;
  transition: all ease-in-out 0.125s;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 479px) {
  .serviceUne {
    height: 14rem!important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .serviceUne {
    height: 16rem!important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .serviceUne {
    height: 10rem!important;
  }
}

/* .serviceUne:hover,
.serviceUne:focus {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
} */

.serviceUne .img-shadow:before {
  box-shadow: none;
}
.serviceUne img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  transition: all ease-in-out 0.125s;
}
.serviceUne p {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  bottom: 0;
  padding: 20px 0 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #FFF;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.serviceMore {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 479px) {
  .serviceMore {
    display: block;
    text-align: center;
  }
  .serviceMore .btnRound {
    margin-top: 15px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .serviceMore {
    display: block;
    text-align: center;
  }
  .serviceMore .btnRound {
    margin-top: 15px;
  }
}
.mapWrapper {
  position: relative;
  height: 600px;
}
.mapWrapper.map300 {
  height: 350px;
}
.mapWrapper #mapGoogle {
  padding: 0;
  margin: 0;
  height: 100%;
  position: relative;
  right: 0;
  top: 0;
  overflow: hidden;
}
/* CONFIANCE
------------------------------------------------------------------- */
.confianceContent {
  position: relative;
  background: #E30233;
}
.confianceImg {
  position: relative;
  background: #1E2123;
}
.confianceImg .container-fluid {
  padding: 0;
}
.confianceImg .row {
  margin: 0;
}
.confianceImg .col {
  padding: 0;
}
.confianceItem {
  position: relative;
  overflow: hidden;
  width: 100%;
  opacity: 0.25;
  filter: blur(0px);
}
.confianceItem .img-shadow:before {
  box-shadow: none;
}
.confianceItem img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.confianceTxt {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.confianceTxt .container {
  height: 100%;
}
.confianceTxt .row {
  height: 100%;
}
/* .form-box{
  padding: 2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
} */
.formContentHome .startStep {
  display: block;
}
.formContentHome .firstStep {
  display: block;
  padding: 2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  margin: 2rem 0;
}
@media (max-width: 479px) {
  .formContentHome .firstStep{
    padding: 1rem;
  }
}
.formContentHome .secondStep {
  display: none;
  padding: 2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
}

.formContentHome.firstStepActive .secondStep {
  display: none;
}

.formContentHome.secondStepActive .secondStep {
  display: flex;
}

.formContentHome.secondStepActive .firstStep {
  display: none;
}

/* IMAGE LEFT
------------------------------------------------------------------- */
.sectionTitle {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  background: #1E2123;
}
@media (max-width: 479px) {
  .sectionTitle {
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .sectionTitle {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sectionTitle {
    margin-bottom: 20px;
  }
}
.sectionTitle .sectionTitleImg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  opacity: 0.3;
}
@media (max-width: 479px) {
  .sectionTitle .sectionTitleImg.hMarginBottom {
    height: 350px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .sectionTitle .sectionTitleImg.hMarginBottom {
    height: 350px;
  }
}
.sectionTitle .sectionTitleImg.hFull {
  height: 65vh;
}
@media (max-width: 479px) {
  .sectionTitle .sectionTitleImg.hFull {
    height: 65vh;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .sectionTitle .sectionTitleImg.hFull {
    height: 65vh;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sectionTitle .sectionTitleImg.hFull {
    height: 65vh;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sectionTitle .sectionTitleImg.hFull {
    height: 65vh;
  }
}
.sectionTitle .sectionTitleImg .img-shadow:before {
  box-shadow: none;
}
.sectionTitle .sectionTitleImg img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.sectionTitle .sectionTitleContent {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  padding-top: 70px;
}
.sectionTitle .sectionTitleContent .titleH1 {
  margin-top: 20px;
  color: #FFF;
}
.sectionTitle .sectionTitleContent .sectionTitleBtn {
  text-align: right;
}
@media (max-width: 479px) {
  .sectionTitle .sectionTitleContent .sectionTitleBtn {
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .sectionTitle .sectionTitleContent .sectionTitleBtn {
    text-align: center;
  }
}
.sectionTitle .sectionTitleContent .sectionTitleList li {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sectionTitle .sectionTitleContent .sectionTitleList li:last-child {
  margin-bottom: 0;
}
.sectionTitle .sectionTitleContent .sectionTitleList li i {
  color: #E30233;
  margin-right: 7px;
}
/* DROPZONE
----------------------------------------------------------------------- */
.uploadContent {
  display: flex;
  flex-flow: column;
}

.uploadImg {
  /* width: 4rem; */
  opacity: 1;
  /* flex-grow: 2; */
  text-align: center;
  /* margin: 10px auto 15px; */
}
.uploadTxtTop {
  color: #353d42;
  margin-top: auto;
  opacity: 0.35;
  font-size: 0.875rem;
  text-align: left;
}
.uploadTxtBottom {
  color: #353d42;
  margin-top: auto;
  opacity: 0.35;
  font-size: 0.675rem;
  text-align: center;
}
.uploadFiles {
  text-align: center;
  margin: auto;
}
.dropzone {
  padding: 0.7rem;
  border-radius: 4px;
  border: 2px solid #dde0e4;
  margin: auto;
  margin-bottom: 15px;
}
.dropzone .dz-message {
  margin: 0;
}
.dropzone-explain {
  font-size: 0.9rem;
  width: 80%;
  margin: auto;
}
.dropzone .dz-preview .dz-image {
  border-radius: 4px;
  height: 60px;
  width: 60px;
}
.dropzone .dz-preview .dz-remove{
  font-size: 13px;
}
/* IMAGE LEFT
------------------------------------------------------------------- */
.imgLeft {
  height: 100%;
  margin: auto;
  overflow: hidden;
  min-height: 300px;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  display: block;
}
.imgLeft.h400 {
  height: 400px;
}
.imgLeft .img-shadow {
  border-radius: 4px;
}
.imgLeft .img-shadow:before {
  border-radius: 4px;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.25);
}
.imgLeft .img-shadow img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  border-radius: 4px;
  transition: all 0.125s ease-in-out;
}
.boost {
  display: flex;
  align-items: flex-start;
}
.boost i {
  flex: none;
  font-size: 30px;
  color: #E30233;
  margin-right: 7px;
}
.documentList {
  margin: 20px 0;
}
.documentList li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  /* border-bottom: 1px dotted #dde0e4; */
}
/* .documentList li:first-child {
  border-top: 1px dotted #dde0e4;
} */
.documentList li i {
  font-size: 20px;
}
.documentList li.success i {
  color: #4cbb6c;
}
.documentList li.error i {
  color: #ff4c4c;
}
.domaineList {
  margin: 20px 0;
}
.domaineList li {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.domaineList li i {
  font-size: 20px;
  margin-right: 10px;
  padding: 10px;
  color: #FFF;
  background: #E30233;
  border-radius: 50px;
}
.serviceClient {
  text-align: center;
  padding-bottom: 30px;
}
.serviceClient p {
  text-align: center;
  font-size: 1.75rem;
  line-height: 2.25rem;
}
.serviceClient p span {
  font-size: 2.25rem;
  font-weight: 700;
}
.serviceClient a {
  text-align: center;
  font-size: 2rem;
  line-height: 2.25rem;
  color: #E30233;
}
.bandeauImg {
  margin-top: 90px;
  padding: 15px;
}
.bandeauImg.b-primary {
  background-color: #1E2123;
}
@media (max-width: 479px) {
  .bandeauImg .btn {
    margin-bottom: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .bandeauImg .btn {
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .bandeauImg {
    margin-top: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .bandeauImg {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bandeauImg {
    margin-top: 30px;
  }
}
.stepIntervention:before {
  content: '';
  height: 4px;
  background: #dde0e4;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 0;
  border-radius: 5px;
}
@media (max-width: 479px) {
  .stepIntervention:before {
    width: 4px;
    height: 80%;
    top: 25px;
    left: 33px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .stepIntervention:before {
    width: 4px;
    height: 80%;
    top: 25px;
    left: 33px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .stepIntervention:before {
    width: 4px;
    height: 80%;
    top: 25px;
    left: 33px;
  }
}
.stepIntervention .step {
  text-align: center;
  position: relative;
}
.stepIntervention .step i {
  font-size: 50px;
  color: #1E2123;
  text-align: center;
  margin: auto;
}
.stepIntervention .step .numberStep {
  position: absolute;
  z-index: 2;
  color: #E30233;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  left: 0;
  top: -50px;
  background: #FFF;
  border: 3px solid #E30233;
  padding: 5px 13px;
  margin: auto;
  border-radius: 50px;
}
@media (max-width: 479px) {
  .stepIntervention .step .numberStep {
    top: 5px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .stepIntervention .step .numberStep {
    top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .stepIntervention .step .numberStep {
    top: 5px;
  }
}
.stepIntervention .step .stepContent {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
@media (max-width: 479px) {
  .stepIntervention .step .stepContent {
    margin: 0 0 30px 60px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .stepIntervention .step .stepContent {
    margin: 0 0 30px 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .stepIntervention .step .stepContent {
    margin: 0 0 30px 60px;
  }
}
.stepIntervention .step .stepContent i {
  margin-right: 15px;
}
.stepIntervention .step p {
  font-size: 0.875rem;
  text-align: left;
  flex: 1;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS LAYOUT - */
header {
  position: fixed;
  width: 100%;
  z-index: 10;
  transition: all ease-in-out 0.25s;
  background: white;
  border-bottom: 2px solid #D8D9D0;
  top:0;
}
header .headerContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 5rem;
}
header .headerLeft {
  display: flex;
  align-items: center;
}
header .headerLogo {
  display: inline-block;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-left: 15px;
  padding: 15px;
  height: 90px;
}
header .headerLogo span.img-shadow img.scroll {
  display: none;
}
header .headerLogo span.img-shadow img.fixed {
  display: block;
}

header .headerLogo.logoExpress {
  height: 103px;
  margin-bottom: -13px;
}
header .headerLogo span.img-shadow:before {
  box-shadow: none;
  -webkit-box-shadow: none;
}
header .headerLogo span.img-shadow img {
  vertical-align: top;
  z-index: 10;
  height: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
header .headerNavMetiers .btn-color-white {
  font-weight: 600;
  font-size: 0.875rem;
  color: #353d42;
}
header .headerNavMetiers .btn-color-white:hover,
header .headerNavMetiers .btn-color-white:focus {
  color: #E30233;
}
header .headerNav {
  display: flex;
  margin-right: 15px;
}
header .headerNav li {
  margin: 0 10px;
}
header .headerNav li a {
  color: #1E2123;
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.875rem;
}
header .headerNav li a:hover,
header .headerNav li a:focus {
  color: #E30233;
}
header .headerNav li a.focusItem {
  border: 1px solid #1E2123;
  border-radius: 50px;
  padding: 10px 15px;
}
header .headerNav li a.focusItem:hover,
header .headerNav li a.focusItem:focus {
  border-color: #E30233;
  color: #E30233;
}
header .headerNav li a.active {
  color: #E30233;
}

header button.hamburgerNav #navIcon span {
  background: #1E2123;
}

header button.hamburgerNav:hover #navIcon span,
header button.hamburgerNav:focus #navIcon span,
header button.hamburgerNav:active #navIcon span,
header button.hamburgerNav:active:focus #navIcon span {
  background: #E30233;
}

.focusItem-red {
  color: #E30233 !important;
}

/* NAVIGATION RESPONSIVE
--------------------------------------------------- */
/* BTN MENU NAVIGATION */
button.hamburgerNav {
  float: right;
  position: relative;
  z-index: 10;
  padding: 34px 30px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  background: none;
}
button.hamburgerNav:hover,
button.hamburgerNav:focus,
button.hamburgerNav:active,
button.hamburgerNav:active:focus {
  color: #E30233;
  box-shadow: none;
}
button.hamburgerNav:hover #navIcon span,
button.hamburgerNav:focus #navIcon span,
button.hamburgerNav:active #navIcon span,
button.hamburgerNav:active:focus #navIcon span {
  background: #1E2123;
}
button.hamburgerNav #navIcon {
  width: 30px;
  height: 22px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  /*
      -webkit-transition: -webkit-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      -moz-transition: -moz-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      -o-transition: -o-transform .5s, width .5s, left .5s, top .5s ease-in-out;
      transition: transform .5s, width .5s, left .5s, top .5s ease-in-out;*/
  cursor: pointer;
  float: left;
}
button.hamburgerNav #navIcon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #FFF;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  -moz-transition: -moz-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  -o-transition: -o-transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
  transition: transform 0.25s, width 0.25s, left 0.25s, top 0.25s, background 0.25s ease-in-out;
}
button.hamburgerNav #navIcon span:nth-child(1) {
  top: 0px;
}
button.hamburgerNav #navIcon span:nth-child(2),
button.hamburgerNav #navIcon span:nth-child(3) {
  top: 10px;
}
button.hamburgerNav #navIcon span:nth-child(4) {
  top: 20px;
}
button.hamburgerNav.active #navIcon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
button.hamburgerNav.active #navIcon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
button.hamburgerNav.active #navIcon span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
button.hamburgerNav.active #navIcon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
/* BANDEAU MENU LEFT RESPONSIVE
-------------------------------------------------------------- */
.navResponsive {
  width: 100%;
  opacity: 0;
  height: 0;
  z-index: 9;
  padding-top: 80px;
  top: 0;
  position: fixed;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navResponsive .navMenu-responsive ul li a {
  padding: 15px 10px;
  display: block;
  color: #353d42;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.813rem;
  position: relative;
  font-weight: 300;
  border-bottom: 1px solid #dde0e4;
}
.navResponsive .navMenu-responsive ul li a i {
  position: absolute;
  right: 20px;
  top: 20px;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.navResponsive .navMenu-responsive ul li a.link {
  text-transform: uppercase;
  background: #E30233;
  border-bottom: 1px solid #dde0e4;
}
.navResponsive .navMenu-responsive ul li a:hover,
.navResponsive .navMenu-responsive ul li a:focus {
  background: border;
  text-decoration: none;
}
.navResponsive .navMenu-responsive ul li a.collapsed i {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.navResponsive .navMenu-responsive ul li ul li {
  border-bottom: 1px solid #010101;
}
.navResponsive .navMenu-responsive ul li ul li:last-child {
  border-bottom: 0;
}
.navResponsive .navMenu-responsive ul li ul li a {
  background: #0c0e0e;
}
.navResponsive .navLogo {
  background: #FFF;
  padding: 20px 0;
  margin: auto;
  text-align: center;
  position: fixed;
  max-width: 320px;
  width: 90%;
}
.navResponsive .navLogo img {
  max-width: 175px;
}
/* HEADER OPEN RESPONSIVE
-------------------------------------------------------------- */
header.open .headerLogo .fixed {
  display: block!important;
}
header.open .headerLogo .scroll {
  display: none!important;
}
header.open.headerFixed .headerLogo .fixed {
  display: block!important;
}
header.open.headerFixed .headerLogo .scroll {
  display: none!important;
}
header.open button.hamburgerNav:hover,
header.open button.hamburgerNav:focus,
header.open button.hamburgerNav:active,
header.open button.hamburgerNav:active:focus {
  background: #E30233;
}
header.open .navResponsive {
  background: #FFF;
  opacity: 1;
  height: auto;
}
header.open button.hamburgerNav:hover,
header.open button.hamburgerNav:focus,
header.open button.hamburgerNav:active,
header.open button.hamburgerNav:active:focus {
  color: #E30233;
  box-shadow: none;
}
header.open button.hamburgerNav:hover #navIcon span,
header.open button.hamburgerNav:focus #navIcon span,
header.open button.hamburgerNav:active #navIcon span,
header.open button.hamburgerNav:active:focus #navIcon span {
  background: #FFF;
}
/** OVERLAY CLOSE NAV RESPONSIVE OPEN **/
.closeOverlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  -moz-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  -o-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
}
.closeOverlay.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9;
  opacity: 1;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS LAYOUT - */
/* SLIDER
----------------------------------------------------------- */

.background-header {
  color: #3C3C3C;
}
@media (max-width: 479px) {
  .background-header {
    font-size: 1rem;
    line-height: 18px;
    /*margin: auto!important;
    margin-top: 6rem!important;
    top: 13%!important; */
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .background-header {
    font-size: 1rem;
    line-height: 13px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .background-header {
    /* font-size: 24px; */
    line-height: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .background-header {
    /* font-size: 24px; */
    line-height: 20px;;
  }
}
.background-header div.owl-slide-content {
  margin-bottom: 20px;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.6) 7%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.6) 7%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.6) 7%, rgba(0, 0, 0, 0) 100%);
  padding: 15px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.background-header span.first {
  display: inline-block;
  font-size: 1.875rem;
  line-height: 1.875rem;
  font-weight: 300;
}
.background-header span.first i {
  font-size: 50px;
}
/* .background-header span.second {
  display: inline-block;
  font-size: 1.875rem;
  line-height: 1.875rem;
  font-weight: 300;
} */

.background-header span.second {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.875rem;
  font-weight: 300;
}

@media (max-width: 479px) {
  .background-header span.second {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .background-header span.first{
    margin-bottom:.5rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .background-header span.second {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .background-header span.second {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .background-header span.first{
    margin-bottom:.5rem;
  }
}
.owl-theme .owl-nav [class*='owl-'] {
  background: transparent;
  color: #1E2123;
  border-radius: 20px;
  padding: 5px 10px;
}
.owl-theme .owl-nav [class*='owl-']:hover,
.owl-theme .owl-nav [class*='owl-']:focus {
  color: #FFF;
  background: rgba(30, 33, 35, 0.5);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #1E2123;
}
.owl-prev {
  float: left;
}
.owl-prev .fa {
  margin: 3px 1px 3px -1px;
}
.owl-next {
  float: right;
}
.owl-next .fa {
  margin: 3px -1px 3px 1px;
}
i.icon-right,
i.icon-left {
  font-size: 40px;
  color: #FFF;
}
/* DOTS */
.owl-carousel:hover .owl-nav .owl-prev,
.owl-carousel:focus .owl-nav .owl-prev,
.owl-carousel:hover .owl-nav .owl-next,
.owl-carousel:focus .owl-nav .owl-next {
  opacity: 0.5;
}
.owl-carousel .owl-nav {
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  bottom: 0;
  top: 0;
  height: 100%;
  opacity: 0;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:focus,
.owl-carousel .owl-nav .owl-next:focus {
  opacity: 1;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0px;
  right: auto;
  text-align: left;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-prev:focus {
  transition: all ease-in-out 0.25s;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
.owl-carousel .owl-nav .owl-prev i {
  margin-left: 10px;
}
.owl-carousel .owl-nav .owl-next {
  right: 0px;
  left: auto;
  text-align: right;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-next:focus {
  transition: all ease-in-out 0.25s;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.owl-carousel .owl-nav .owl-next i {
  margin-right: 10px;
}
.owl-carousel .owl-nav > button {
  width: 100px;
  padding: 2px;
  position: absolute;
  margin: 0;
  border: 0 solid;
  color: #FFF;
  border-color: transparent;
  background-color: transparent;
  border-radius: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
}
.owl-carousel .owl-nav > button:hover,
.owl-carousel .owl-nav > button:focus {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #FFF;
  border-color: rgba(0, 0, 0, 0.7);
  background-color: rgba(0, 0, 0, 0.7);
}
.owl-carousel .owl-dots {
  position: absolute;
  z-index: 1;
  bottom: -30px;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 3px;
  background: transparent;
  display: block;
  border-color: #1E2123;
  border: 1px solid #1E2123;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 15px;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #1E2123;
  border-color: #1E2123;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS TABLES - */

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS LAYOUT - */
.titleH1 {
  font-size: 2rem;
  padding: 0 .5rem;
}

.titleH1::before, .titleH1::after {
  background-color: #E20533;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 20%;
}

.titleH1::before{
  margin-right: .5rem;
}

.titleH1::after{
  margin-left: .5rem;
}

@media (max-width: 1199px) {
  .titleH1::before, .titleH1::after {
    width: 20%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .titleH1 {
    font-size: 1.4rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .titleH1 {
    font-size: 1.5rem;
  }

  .titleH1::before, .titleH1::after {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .titleH1 {
    font-size: 1.5rem;
  }
  .titleH1::before, .titleH1::after {
    width: 100%;
  }
}
.titleH1 span {
  display: block;
  color: #E30233;
  font-size: 1rem;
}

.titleH2 {
  font-size: 1.75rem;
}
@media (max-width: 479px) {
  .titleH2 {
    font-size: 1rem;
  }

  .titleH3{
    font-size: 1.2rem!important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .titleH2 {
    font-size: 1rem;
  }

  .titleH3{
    font-size: 1rem!important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .titleH2 {
    font-size: 1rem;
  }

  .titleH3{
    font-size: 1rem!important;
  }
}
.titleH2 span {
  display: block;
  color: #E30233;
  font-size: 1rem;
}
.titleH3 {
  font-size: 1.3rem;
  font-family: "Asap", sans-serif;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
/* - LESS USER - */
.user {
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #dde0e4;
  position: sticky;
  top: 105px;
}
.user .userAvatar {
  line-height: 20px;
  margin: auto;
  display: inline-block;
  text-align: center;
  height: 80px;
  width: auto;
  border-radius: 60px;
}
.user .userAvatar span.img-shadow {
  border-radius: 60px;
}
.user .userAvatar span.img-shadow:before {
  border-radius: 60px;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.15);
}
.user .userAvatar span.img-shadow img {
  opacity: 1;
  z-index: 10;
  border-radius: 60px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: fill;
  width: auto;
}
.user .userInfo {
  font-family: "Asap", sans-serif;
}
.requests {
  font-family: "Asap", sans-serif;
  position: relative;
}
.requests .myrequest {
  border: 1px solid #dde0e4;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}
.requests .myrequest .myrequestInfo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 479px) {
  .requests .myrequest .myrequestInfo {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .requests .myrequest .myrequestInfo {
    display: block;
  }
}
.requests .myrequest .myrequestStatut {
  color: #FFF;
  padding: 3px 15px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.75rem;
}
.requests .myrequest .myrequestStatut.success {
  background: #4cbb6c;
}
.requests .myrequest .myrequestStatut.error {
  background: #ff4c4c;
}
.requests .myrequest .myrequestStatut.warning {
  background: #ff9a52;
}
.requests .myrequest .myrequestStatut.info {
  background: #37b0e9;
}
.requests .myrequest .myrequestStatut.primary {
  background: #1E2123;
}
.requests .myrequest .myrequestStatut.secondary {
  background: #E30233;
}
.requests .myrequest .myrequestStatut.disabled {
  background: #b8bbbe;
}
.requests .myrequest .myrequestAction a {
  margin-right: 10px;
}
@media (max-width: 479px) {
  .requests .myrequest .myrequestAction a {
    margin-bottom: 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .requests .myrequest .myrequestAction a {
    margin-bottom: 10px;
  }
}
.requests .myrequest .myrequestAction a:last-child {
  margin-right: 0;
}
@media (max-width: 479px) {
  .requests .myrequest .myrequestAction a:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .requests .myrequest .myrequestAction a:last-child {
    margin-bottom: 0;
  }
}
.requests .myrequestInfoStep {
  margin: 20px 10px 20px 0;
  background: #ECECED;
  border-radius: 5px;
  padding: 10px;
  display: inline-block;
}
.requests .myrequestInfoStep ul {
  display: flex;
  justify-content: space-between;
}
.requests .myrequestInfoStep ul li {
  -ms-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  flex: 1;
  width: auto;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  text-overflow: ellipsis;
  display: block;
  line-height: 1rem;
  color: rgba(53, 61, 66, 0.4);
}
.requests .myrequestInfoStep ul li i.step {
  border-radius: 20px;
  width: 15px;
  height: 15px;
  background-color: #d3d4d6;
  display: block;
  margin: 0 auto 0.5em auto;
  z-index: 2;
}
.requests .myrequestInfoStep ul li i.step:before,
.requests .myrequestInfoStep ul li i.step:after {
  display: block;
  position: absolute;
  top: 7px;
  width: 100%;
  height: 1px;
  content: '';
  background-color: #d3d4d6;
  z-index: 1;
}
.requests .myrequestInfoStep ul li i.step:before {
  left: 0;
}
.requests .myrequestInfoStep ul li i.step:after {
  right: 0;
}
.requests .myrequestInfoStep ul li.success {
  color: #353d42;
}
.requests .myrequestInfoStep ul li.success i.step {
  background-color: #4cbb6c;
  color: #4cbb6c;
}
.requests .myrequestInfoStep ul li.success i.step:before,
.requests .myrequestInfoStep ul li.success i.step:after {
  background-color: #4cbb6c;
}
.requests .myrequestInfoStep ul li.warning {
  color: #353d42;
}
.requests .myrequestInfoStep ul li.warning i.step {
  background-color: #ff9a52;
  color: #ff9a52;
}
.requests .myrequestInfoStep ul li.warning i.step:before,
.requests .myrequestInfoStep ul li.warning i.step:after {
  background-color: #ff9a52;
}
.requests .myrequestInfoStep ul li.error {
  color: #353d42;
}
.requests .myrequestInfoStep ul li.error i.step {
  background-color: #ff4c4c;
  color: #ff4c4c;
}
.requests .myrequestInfoStep ul li.error i.step:before,
.requests .myrequestInfoStep ul li.error i.step:after {
  background-color: #ff4c4c;
}
.requests .myrequestInfoStep ul li.info {
  color: #353d42;
}
.requests .myrequestInfoStep ul li.info i.step {
  background-color: #37b0e9;
  color: #37b0e9;
}
.requests .myrequestInfoStep ul li.info i.step:before,
.requests .myrequestInfoStep ul li.info i.step:after {
  background-color: #37b0e9;
}
.requests .myrequestInfoStep ul li.primary {
  color: #353d42;
}
.requests .myrequestInfoStep ul li.primary i.step {
  background-color: #1E2123;
  color: #1E2123;
}
.requests .myrequestInfoStep ul li.primary i.step:before,
.requests .myrequestInfoStep ul li.primary i.step:after {
  background-color: #1E2123;
}
.requests .myrequestInfoStep ul li.secondary {
  color: #353d42;
}
.requests .myrequestInfoStep ul li.secondary i.step {
  background-color: #E30233;
  color: #E30233;
}
.requests .myrequestInfoStep ul li.secondary i.step:before,
.requests .myrequestInfoStep ul li.secondary i.step:after {
  background-color: #E30233;
}

/* -- RESPONSIVE -- */
/* COLOR  */
.img-shadow {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
}
.img-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
.clear {
  clear: both;
}
.m-0 {
  margin: 0;
}
/* MARGIN TOP */
.m-t--10 {
  margin-top: -10px;
}
.m-t-0 {
  margin-top: 0px;
}
.m-t-1 {
  margin-top: 1px;
}
.m-t-2 {
  margin-top: 2px;
}
.m-t-3 {
  margin-top: 3px;
}
.m-t-4 {
  margin-top: 4px;
}
.m-t-5 {
  margin-top: 5px;
}
.m-t-10 {
  margin-top: 10px;
}
.m-t-15 {
  margin-top: 15px;
}
.m-t-20 {
  margin-top: 20px;
}
.m-t-25 {
  margin-top: 25px;
}
.m-t-30 {
  margin-top: 30px;
}
.m-t-35 {
  margin-top: 35px;
}
.m-t-40 {
  margin-top: 40px;
}
.m-t-50 {
  margin-top: 50px;
}
.m-t-60 {
  margin-top: 60px;
}
.m-t-70 {
  margin-top: 70px;
}
.m-t-90 {
  margin-top: 90px;
}
/* MARGIN BOTTOM */
.m-b-0 {
  margin-bottom: 0px!important;
}
.m-b-5 {
  margin-bottom: 5px;
}
.m-b-10 {
  margin-bottom: 10px;
}
.m-b-15 {
  margin-bottom: 15px;
}
.m-b-20 {
  margin-bottom: 20px;
}
.m-b--20 {
  margin-bottom: -20px;
}
.m-b-25 {
  margin-bottom: 25px;
}
.m-b-30 {
  margin-bottom: 30px;
}
.m-b-35 {
  margin-bottom: 35px;
}
.m-b-40 {
  margin-bottom: 40px!important;
}
.m-b-50 {
  margin-bottom: 50px!important;
}
.m-b-60 {
  margin-bottom: 60px;
}
.m-b-90 {
  margin-bottom: 90px;
}
.m-b-120 {
  margin-bottom: 120px;
}
/* MARGIN RIGHT */
.m-r-5 {
  margin-right: 5px;
}
.m-r-7 {
  margin-right: 7px;
}
.m-r-10 {
  margin-right: 10px;
}
.m-r-15 {
  margin-right: 15px;
}
.m-r-20 {
  margin-right: 20px;
}
.m-auto {
  margin: auto;
}
/* MARGIN LEFT */
.m-l-5 {
  margin-left: 5px;
}
.m-l-7 {
  margin-left: 7px;
}
.m-l-10 {
  margin-left: 10px;
}
.m-l-15 {
  margin-left: 15px;
}
.m-l-20 {
  margin-left: 20px;
}
.m-l-7 {
  margin-left: 7px;
}
/* MARGIN TOP BOTTOM */
.m-tb-10 {
  margin: 10px 0;
}
.m-tb-20 {
  margin: 20px 0;
}
.m-tb-30 {
  margin: 30px 0;
}
.m-tb-40 {
  margin: 40px 0;
}
.m-tb-50 {
  margin: 50px 0;
}
/* PADDING */
.p-15 {
  padding: 15px;
}
/* PADDING TOP */
.p-t-60 {
  padding: 60px;
}
/* PADDING LEFT */
.p-l-0 {
  padding-left: 0;
}
.p-l-10 {
  padding-left: 10px;
}
.p-l-20 {
  padding-left: 20px;
}
/* PADDING RIGHT */
.p-r-0 {
  padding-right: 0;
}
.p-r-10 {
  padding-right: 10px;
}
.p-r-20 {
  padding-right: 20px;
}
.p-t-10 {
  padding-top: 10px;
}
.p-t-15 {
  padding-top: 15px;
}
.p-t-90 {
  padding-top: 90px;
}
.p-t-120 {
  padding-top: 120px;
}
.p-t-150 {
  padding-top: 150px;
}
.p-b-0 {
  padding-bottom: 0px;
}
.p-b-15 {
  padding-bottom: 15px;
}
/* COLOR */
.t-primary {
  color: #1E2123;
}
.t-secondary {
  color: #E30233!important;
}
.t-grey {
  color: rgba(52, 52, 52, 0.8);
}
.t-white {
  color: #FFF !important;
}
/* SIZE */
.t-xxs {
  font-size: 0.625rem !important;
}
.t-xs {
  font-size: 0.75rem !important;
}
.t-s {
  font-size: 0.813rem !important;
}
.t-b {
  font-size: 1rem !important;
}
.t-l {
  font-size: 1.25rem !important;
}
.t-xl {
  font-size: 1.5rem !important;
}
.t-xxl {
  font-size: 2rem !important;
}
/* ALIGN */
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
.t-right {
  text-align: right;
}
.t-justify {
  text-align: justify;
}
/* WEIGHT */
.t-100 {
  font-weight: 100;
}
.t-300 {
  font-weight: 300;
}
.t-400 {
  font-weight: 400;
}
.t-500 {
  font-weight: 500;
}
.t-600 {
  font-weight: 600;
}
.t-700 {
  font-weight: 700;
}
.t-900 {
  font-weight: 900;
}
/* STYLE TEXT */
.t-upp {
  text-transform: uppercase;
}
.t-ita {
  font-style: italic;
}
/* BACKGROUND */
.b-s {
  background-color: #E30233;
}
/* DIVIDER */
.px-divider {
  border-top: 1px dotted;
  border-color: #dde0e4;
  width: 100%;
}
.px-divider.total {
  border-top: 1px solid;
  border-color: #dde0e4;
  margin: 20px 0;
}
.divider {
  border-top: 1px solid #dde0e4;
}
.dividerDotted {
  border-top: 1px dotted #dde0e4;
}
