:root {
  --lightgray: #efefef;
  --blue: steelblue;
  --white: #fff;
  --black: rgba(0, 0, 0, 0.8);
  --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}
.open-modal-CAS {
  font-weight: bold;
  background: var(--blue);
  color: var(--white);
  /* padding: 0.75rem 1.75rem; */
  margin-bottom: 1rem;
  border-radius: 5px;
}
/*CUSTOM VARIABLES HERE*/

.modal-CAS {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--black);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  z-index: 1010;
  transition: all 0.35s ease-in;
}

/*CUSTOM VARIABLES HERE*/

.modal-dialog-CAS {
  position: relative;
  width: 50%;
  height: 100%;
  border-radius: 5px;
  background: var(--white);
  overflow: auto;
  cursor: default;
}
/*CUSTOM VARIABLES HERE*/

.modal-dialog-CAS > * {
  padding: 2rem;
  /* white-space: pre-wrap; */
}

.label_model label{
    margin-right:5px;
  font-size: 1rem;
  white-space: pre-wrap;
}
.modal-header-CAS,
.close-modal-CAS {
  background: var(--lightgray);
}

.modal-header-CAS {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-CAS .close-modal-CAS {
  font-size: 1rem;
}

.modal-titulo-CAS{
    font-size:18px;
}

.close-modal-CAS {
  right: 0;
  /*border: 1px solid rgba(255, 255, 255, .5);*/
  color: #808080;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  text-align: center;
  /*border-radius: 20px;*/
  cursor: pointer;
  transition: 0.2s;
}

.close-modal-CAS:hover {
  /*border: 1px solid rgba(255, 255, 255, 1);*/
  /*transform: translateY(-2px);*/
  color: rgba(0, 0, 0, 0.8);
  background-color: #d9dfe1;
}

.modal-CAS p + p {
  margin-top: 1rem;
}

.modal-CAS {
  visibility: hidden;
  /* opacity: 0;
    transition: all 0.35s ease-in; */
}

.modal-CAS.is-visible {
  visibility: visible;
  opacity: 1 !important;
  z-index: 9999 !important;
}

/*CUSTOM VARIABLES HERE*/

[data-animation="slideInOutLeft"] .modal-dialog-CAS {
  opacity: 0;
  /* transform: translateX(-100%); */
  transition: all 0.5s var(--bounceEasing);
}

[data-animation="slideInOutLeft"].is-visible .modal-dialog-CAS {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

iframe {
  width: 100%;
  border: 0;
  height: 100%;
}

.ocultar {
  display: none;
}

@media only screen and (max-width: 1390px) {
  .modal-dialog-CAS {
    min-width: 60%;
    min-height: auto;
    max-height: auto;
  }
  .label_model label{
  margin-right:5px;
  font-size:1rem;
  }
}


@media only screen and (max-width: 750px) {
  .modal-dialog-CAS {
    min-width: 100%;
    min-height: auto;
    max-height: auto;
  }
  .label_model label{
  margin-right:5px;
  font-size:0.8rem;
  }
}

@media only screen and (max-width: 324px) {
  .modal-dialog-CAS {
    width: 100%;
    min-height: auto;
    overflow-x: hidden; 
  }
  .label_model label {
    font-size: 0.7rem;
    margin-right: 5px;
    display: block;
    word-wrap: break-word; 
  }
}


