/*SIZE*/
/* COLORS */
/* FONTS */
/* SHADOW */
/* border */
/*Transition*/
/* Media queries */
/* Ejemplo Uso
body{ 
    ...
    @include media-breakpoint-up($sm) {
        background:red;
    }
    @include media-breakpoint-up($md) {
        background:none;
    }
    ...   
}
*/
/* Ejemplo de uso:
p{
  @include text-truncate();
}
*/
/* Ejemplo de uso:
p {
  @include font-size(13);
}
*/
/* Ejemplo de uso:
p {
    @include fluid-type($min_width, $max_width, $min_font, $max_font);
}
*/
.modal {
  padding: 0;
  background: #ffffff;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.modal::-webkit-scrollbar {
  width: 7px;
}

.modal::-webkit-scrollbar-track {
  background: #F3F3F3;
}

.modal::-webkit-scrollbar-thumb {
  background: #159B8B;
  border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: #159B8B;
}

.modal p {
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .modal {
    width: 790px;
    right: 0;
    margin: 0 auto;
    height: 92%;
    top: 50%;
    transform: translateY(-50%);
  }
}

.modal .modal-dialog {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  max-width: 100%;
}

.modal .modal-content {
  border-radius: 0;
  border: none;
  height: 100%;
  display: block;
}

.modal .modal-header {
  display: block;
  text-align: left;
  position: relative;
  border: none;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  padding-top: 75px;
  padding-bottom: 35px;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 992px) {
  .modal .modal-header {
    padding-left: 0;
    padding-right: 0;
    position: static;
  }
}

.modal .modal-header .title-border {
  margin-top: 0;
}

.modal .modal-header .title-border h2 span {
  display: block;
}

@media (min-width: 992px) {
  .modal .modal-header .title-border {
    margin: 0 0 20px;
  }
}

.modal .modal-header .text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #4B4B4B;
  line-height: 22px;
}

@media (min-width: 992px) {
  .modal .modal-header .text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 28px;
    padding-left: 28px;
  }
}

.modal .modal-header button.close {
  position: absolute;
  right: 20px;
  top: 20px;
  margin: 0;
  padding: 0;
  opacity: 1;
  font-size: 30px;
  font-size: 1.875rem;
  color: #294459;
}

@media (min-width: 992px) {
  .modal .modal-header button.close {
    top: 20px;
    right: 20px;
  }
}

.modal .modal-body {
  color: #4B4B4B;
  text-align: left;
  padding: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 992px) {
  .modal .modal-body {
    padding-left: 28px;
  }
}

.modal .modal-footer {
  border: none;
  position: fixed;
  bottom: 0;
  width: 100vw;
  background: #ffffff;
  padding: 0;
}

.modal .modal-footer .btn-green {
  width: 100%;
  margin: 0;
  min-height: 60px;
}

@media (min-width: 992px) {
  .modal .modal-footer .btn-green {
    margin-top: 50px;
    margin-bottom: 70px;
    margin-top: 70px;
  }
}

@media (min-width: 992px) {
  .modal .modal-footer {
    position: relative;
    width: auto;
    text-align: right;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 12px;
  }
  .modal .modal-footer .btn-green {
    width: 210px;
    height: 60px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.modal .message-send {
  margin-bottom: 100px;
}

@media (min-width: 992px) {
  .modal .message-send {
    margin-bottom: 0;
  }
}

.modal .message-send p {
  font-size: 20px;
  font-size: 1.25rem;
  color: #294459;
}
