
.button-conf-modal {
  padding: 0.6rem 1.2rem;
  background-color: #888;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  opacity: 0.9;
  font-size: 0.8rem;
}

.button-conf-modal-primary {
  background-color: #007bff;
}

.button-conf-modal-close {
  padding: 0.2rem 0.4rem;
}

.button-conf-modal:hover {
  opacity: 1;
}

#fade_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
}

#modal_conf {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 300px !important;
  max-width: 90%;
  background-color: #fff;
  padding: 1.2rem;
  border-radius: 0.5rem;
  z-index: 10;
  font-family: Helvetica;
}

#fade_modal,
#modal_conf {
  transition: 0.5s;
  opacity: 1;
  pointer-events: all;
  box-sizing: border-box;
}

#modal_conf .modal-conf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
#modal_conf .modal-conf-footer {
  display: flex;
  justify-content:right;
  border-top: 1px solid #ccc;
  margin-top: 1rem;
  padding-top: 1rem;
}
#modal_conf .modal-conf-footer button{
  margin-left: 8px;
}
.modal-conf-body p {
  margin-bottom: 1rem;
}

#modal_conf.hide,
 #fade_modal.hide {
  opacity: 0;
  pointer-events: none;
}

#modal_conf.hide {
  top: 0;
}
.modal-conf-body label{
  display: flex;
  width: 100%;
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.modal-conf-body input, textarea, select{
  display: flex;
  width: 100%;
  border: 1px solid #ccc;
  padding: 0.6rem;
}
.modal-conf-body input, textarea, select{
  background-color: #fff;
}
#modal_conf_msg{
  display: flex;
  width: 100%;
  margin-top: 0.3rem;
  padding-bottom: 0.3rem;
  color: #ea4335;
  font-size: 0.8rem;
}

#modal_title{
    font-size: 1.4em !important;
}