#solo-popin {
  position: fixed;
  bottom: 0;
  right: 1%;
  padding: 10px 60px;
  background: #CB4896;
  color: white;
  border: none;
  border-radius: 5px 5px 0px 0px;
  z-index: 999;
}

.rdv-page-container {
  text-align: center;
  margin: 2% 20%;
  border: #CB4896 1px solid;
  border-radius: 0px;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
  position: fixed;
  bottom: 0;
  right: 0;
  margin-bottom: 25px;
  margin-right: 5px;
  border-radius: 5px;
  background-color: #fefefe;
  width: 450px;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  opacity: 1;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  height: 40px;
  padding: 5px 16px;
  background-color: #CB4896;
  color: white;
}

.modal-body {
  padding: 5px 16px;
}

.modal-content .bold {
  font-weight: bolder;
}

.modal-content .underlined {
  text-decoration: underline;
}

.modal-content .center {
  text-align: center;
}

#popin-rdv-call-to-action {
  background: #F39E3F;
  box-shadow: 0px 3px 6px #00000029;
  border: none;
  border-radius: 5px;
  padding: 5px 15px;
  color: white;
  display: block;
  margin: 0px auto;
}

#popin-rdv-message {
  display: none;
}


/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}