/* variables*/
/* important info to open modal*/
.modal__background {
  background: rgba(0, 0, 0, 0.678);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: .35s;
  transition: .35s;
  z-index: 2;
}

.modal__background:target {
  opacity: 1;
  pointer-events: auto;
}

/* standard styles*/
.background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ff7300;
  width: 100vw;
  height: 100vh;
}

.button {
  background: #fff;
  border-radius: 4px;
  color: #ff7300;
  display: block;
  margin: auto;
  padding: 1rem;
  text-decoration: none;
  -webkit-transition: .25s;
  transition: .25s;
}

.button:hover {
  background: #008cff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.modal__content {
  background: #fff;
  border-radius: 5px;
  border: 6px solid rgba(0, 44, 187, 0.774);
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 699px) {
  .modal__content {
    margin: 2rem;
    margin-top: 6rem;
  }
}

@media screen and (min-width: 700px) {
  .modal__content {
    margin: 9rem auto;
    max-width: 750px;
    min-height: 300px;
  }
}

.modal__content a {
  color: rgba(0, 0, 0, 0.5);
  font-size: 35px;
  position: absolute;
  right: 1rem;
  text-decoration: none;
  top: .5rem;
  -webkit-transition: .25s;
  transition: .25s;
}

.modal__content a:hover {
  color: black;
}

h2 {
  color: #008cff;
  font-size: 20px;
  margin: 0 0 1rem;
  text-align: center;
}

.success {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .modal__content p {
    font-size: 11px;
    margin-bottom: 5px!important;
    line-height: 22px!important;
  }
  .modal__content img{width: 100%!important;}
}
/*# sourceMappingURL=modal-doctores.css.map */