/* Modals size are located on container.css to capitalize on same media queries */

.modal-content{
    border-radius: 8px;
}

.modal-header{
    background-color: #495D90;
    border-radius: 8px 8px 0 0;
}

.modal-header h4{
    font-style: normal;
    color: white;
}

.modal-header .close{
    color: white;
}

/* .modal-body{
    margin-bottom: 32px;
} */

#mkdocs-search-query {
    color: #495D90;
    margin: 32px 0 ;
    border-radius: 8px;
}

#mkdocs-search-query h3 {
    color: #495D90;
    margin-bottom: 4px;
}

#mkdocs-search-results a {
    color: #495D90;
}

.modal-footer{
    display: none;
}

.modal-illustration {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  /* overflow: auto; */
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.4);
}

.modal-illustration-content {
  background-color: rgba(0,0,0);
  margin: 5% auto;
  padding: 20px;
  width: 75vw;
  max-width: 1200px;
  height: 75vh;
  max-height: 800px;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
  0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-illustration-content iframe {
  width: 100%;
  height: 100%;
}

.modal-illustration-content img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.modal-illustration .close {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--danger-400);
  color: white;
  font-size: 36px;
  width: 36px;
  height: 36px;
  border-radius: 0px 4px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  z-index: 99;
  border: none;
  opacity: inherit;
  text-decoration: none;
}


.modal-illustration .close:hover {
  background-color: red;
}
