/*
*
*Styles for google maps
*
*/

.controlsContainer {
  position: absolute;
  top: 45px;
  left: 45px;
  width: 400px;
}

.hospiceLogo {
  position: relative;
}

.hospiceLogo img {
  width: 100%;
}

.buttonContainer {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.mtgLogo {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.mtgLogo img {
  width: 60%;
  float: right;
}

.btn-group{
    width: 70%;
    
}

.customButton {
  margin-right: 5px;
  border-radius: 5px !important;
  font-size: 25px;
  width: 100%;
  margin: 0 5px 5px 0;
  font-weight: bolder;
  padding: 5px 0 5px 0;
}

.customButton:nth-child(1) {
  background-color: #b37ab5;
  border: none;
}

.customButton:nth-child(2) {
  background-color: #8cc63f;
  border: none;
  color: #404040;
}

.customButton:nth-child(3) {
  background-color: #006cb8;
  border: none;
}

.customButton:nth-child(4) {
  background-color: #e6cd22;
  border: none;
  color: #404040;
}

/*
*
*Styles for the form
*
*/

.custom-select {
  width: 100%;
  padding: 10px;
  border: solid 1px #3786bd;
  border-radius: 5px;
  color: #404040;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

#datepicker {
  width: 100%;
  margin: 0;
}

.input-date-picker {
  margin: 0;
  width: 100%;
  border-radius: 5px;
}

.mtg-logo {
  width: 25%;
  padding-top: 10px;
}

.mtg-logo-heading {
  color: #ffffff;
  font-size: 12px;
}

.mtg-logo:hover {
  cursor: pointer;
}

.terms-and-conditions:hover {
  cursor: pointer;
}

.validation-message {
  color: #ff2a3c;
  font-size: 15px;
  min-height: 22px;
}

.input-group-addon::placeholder {
  font-family: "Roboto", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 100;
}

/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 100;
  margin-top: 10px;
}

/*Check box*/

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.checkmark:hover {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkmark:after {
  left: 9px;
  top: 4px;
  width: 7px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal-dialog {
  z-index: 2000;
}

.vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
}
.vertical-align-center {
  /* To center vertically */
  display: table-cell;
  vertical-align: middle;
}
.modal-content {
  /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  width: inherit;
  height: inherit;
  /* To center horizontally */
  margin: 0 auto;
}

.thankyou-message {
  text-align: center;
  display: none;
}

body {
  margin: 0;
  height: 100vh;
  background: #5eb2b3;
}

.page-content {
  width: 100%;
  margin: 0 auto;
  background: #5eb2b3;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}
.form-v5-content {
  width: 670px;
  border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  margin: 65px 0;
  font-family: "Roboto", sans-serif;
  color: #333;
  font-weight: 100;
  position: relative;
  font-size: 18px;
}
.form-v5-content .form-detail {
  padding: 30px 45px 30px 45px;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
}
.form-detail h2 {
  font-weight: 100;
  font-size: 35px;
  text-align: center;
  position: relative;
  padding: 3px 0 20px;
  margin-bottom: 40px;
}
.form-detail h2::after {
  background: #3786bd;
  width: 50px;
  height: 2px;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.form-detail .form-row {
  position: relative;
}
.form-detail .form-row-last {
  text-align: center;
}
.form-detail label {
  display: block;
  font-size: 18px;
  padding-bottom: 10px;
}
.form-detail .input-text {
  margin-bottom: 26px;
}

.form-detail input:focus {
  border: 1px solid #b3b3b3;
}

.register {
  width: 65%;
}

.form-detail .register {
  font-size: 18px;
  color: #fff;
  background: #3786bd;
  border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  border: none;
  margin: 19px 0 40px;
  cursor: pointer;
}
.form-detail .register:hover {
  background: #2f73a3;
}
.form-detail .form-row-last input {
  padding: 14px;
}
.form-detail i {
  font-size: 14px;
  color: #999;
  right: 15px;
  top: 50%;
  transform: translateX(-50%);
  position: absolute;
}
input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
  font-size: 16px;
}
input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
  font-size: 16px;
}
input:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
  font-size: 16px;
}
input:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
  font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 767px) {
  .form-v5-content {
    margin: 115px 20px;
  }

  .register {
    width: 100%;
  }
}
