/*
    Styles des boutons / checkbox / radio'.

    Author : Michael Smaga <michael@bvb-software.fr>
    Version : 1.0.0
*/

/*
**********************
* Checkbox-custom 
**********************
*/
.checkbox-custom {
  opacity: 0;
  position: absolute;
}

.checkbox-custom,
.checkbox-custom-label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  cursor: pointer;
}

.checkbox-custom-label {
  position: relative;
  display: flex;
}

.checkbox-custom+.checkbox-custom-label:before {
  content: '';
  background: #fff;
  border: 2px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
}

.checkbox-custom:checked+.checkbox-custom-label:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
**********************
* Toggle custom
**********************
*/
.toggle-custom {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.toggle-custom input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-custom .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle-custom .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle-custom input:checked+.slider {
  background-color: #2196F3;
}

.toggle-custom input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

.toggle-custom input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.toggle-custom .slider.round {
  border-radius: 34px;
}

.toggle-custom .slider.round:before {
  border-radius: 50%;
}

/* 
**********************
* Boutons Documents
**********************
*/
#docs-btn {
  position: absolute;
  right: 2%;
  background-color: white;
  color: #be1f38;
  z-index: 10;
}

#docs-btn:after {
  background: url("../images/tarification/btn-docs.png") no-repeat;
}

/* 
**********************
* SELECT
**********************
*/
.custom-select {
  display: inline-block;
  width: auto;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 2.75rem 0.375rem 0.75rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/* 
*****************************
* BOUTON DE LA PAGE D'ACCUEIL
*****************************
*/

.btn-propo-instance {
  background-color: crimson;
}


.custom-btn-hp-3-instance::after {
  background: url("../images/accueil/icones/prop-emises-instance.png") no-repeat;
}

/* 
*****************************
* Badges
*****************************
*/

.badge-light {
  color: #21384e;
  background-color: #fff;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge {
  /* width: 33px; */
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
  border-radius: 5px;
  font-weight: bold;
  border: 1px solid #ffffff70;
}

.capsule-badge {
  position: absolute;
  top: -10px;
  left: 0;
}

.badge-orange {
  color: #000;
  background-color: #ff9800;
}

/* bouton contact podium */
.btn-contact-podium.deces {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  border: none;
  left: -25px;
  padding: 10px;
  cursor: default;
}

.btn-contact-podium-couple.deces {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  border: none;
  left: -25px;
  padding: 10px;
  cursor: default;
}

.btn-contact-podium-2.deces {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  border: none;
  left: -25px;
  padding: 10px;
  cursor: default;
}
.btn-contact-podium-3.deces {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  border: none;
  left: -25px;
  padding: 10px;
  cursor: default;
}

.btn-contact-podium:focus {
  outline: none;
}

.btn-contact-podium-couple:focus {
  outline: none;
}
.btn-contact-podium-2:focus {
  outline: none;
}
.btn-contact-podium-3:focus {
  outline: none;
}

.btn-contact-podium.add-insured {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  border: none;
  cursor: default;
}

#contact-podium-modal .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bell-notif-booking {
  margin-right: 10px;
}


.btn-center{
  text-align: center;
  padding: 5px !important;
  min-width: 200px;
}

.btn-center i{
  margin-left: 5px;
}