
.modal{
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  opacity: 0;

 
}
.modal iframe {
  width: 100%;
  height: 600px;
  border: 0;
}


.modal.show{
  visibility: visible;
  opacity: 1;
  transition: 0.2s;

}

.modal-content{
  background-color: white;
  max-width: 600px;
  width: auto;
  margin: auto;
  flex: 1;
  position: relative;
  border-radius: 5px;
}

.modal-close{
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-weight: bold;
}

.modal-header{
  padding: 10px;
  border-bottom: 1px solid #ddd;
    font-size: 1.5em;

    font-weight: bold;

}

.modal-body{
  padding: 10px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-footer{
  padding: 10px;
  border-top: 1px solid #ddd;
  text-align: right;
}

.btn{
  padding: 5px;
  background-color: var(--mainColor);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 3px;
}

.btn-close{
  background-color: red;
}


label.bold {
  font-weight: bold;
}

textarea {
  width: 90%;
  padding: 5px;
}

.inline {
  display: inline;
}

.submit {
  border: 0px
}

.disclaimer {
  font-size: 0.8rem;
  /* font-style: italic; */
}


.child_block  {
  display:grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}


.imgmodal__item img {
  max-width: 100%;
}