:root {
    --primary: #524fc5;
    --secondary: #51CFED;
    --light: #F8F2F0;
    --dark: #060315;
    --rouge: #d00029;
}

.bg-primary-tls {
    background-color: var(--primary) !important;
}
.border-primary-tls {
    border-color: var(--primary) !important;
}
.service-item a.btn-slide i, .service-item a.btn-slide span, .price-item a.btn-slide i, .price-item a.btn-slide span, .team-item div.btn-slide i, .team-item div.btn-slide span {
    background:  var(--primary) !important;
}
.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    color: #000;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:disabled, .btn-primary.disabled {
   /* color: #000;*/
    background-color:  var(--primary);
    border-color:  var(--primary);
 }
.btn-primary:hover {
    /*color: #000;*/
    background-color: var(--rouge);
    border-color: var(--rouge);
}

.text-primary-tls {
    color: var(--rouge) !important;
}

.bg-rouge {
     background-color: var(--rouge) !important;
}

/**/
.destinations {
	margin: 40px 0;
}

.destination {
	width: 100%;
	height: 150px;
	margin: 40px 0;
	text-align: center;
	border: 1px solid #ddd;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-color: var(--primary);
}

.destination .icon-holder {
	position: relative;
	top: 50px;
	display: inline-block;
	margin-bottom: 20px;
	padding: 0px;
	background: white;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.destination .heading {
	position: relative;
	top: 100px;
	-webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.destination .icon-holder > img.icon {
	width: 40px;
}

.destination:hover {
	border-color: #00a8ff;
}

.destination:hover .icon-holder {
	top: -20px;
}

.destination:hover .heading {
	top: -30px;
}

.destination .description {
	width: 80%;
	margin: 0 auto;
	opacity: 0;
	-webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.destination:hover .description {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.centered-element{
    margin-left: auto;
    margin-right: auto;
   width: 300px;
}

.container-connexion {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*** lds */
.lds-facebook {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
}
.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 9px;
  background:#7FB3D5;/* #fff;*/
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 4px;
  animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
  left: 20px;
  animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
  left: 35px;
  animation-delay: 0;
}
@keyframes lds-facebook {
  0% {
    top: 6px;
    height: 45px;
  }
  50%, 100% {
    top: 15px;
    height: 20px;
  }
}



#loadingoverlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

/***/
#toast-container > div{
    width : 400px !important;
}

.toast-success {
  //background-color: #28B463 !important;
  background-color: var(--primary);
}

.toast-error {
  background-color: var(--primary) !important;
}
