.modalBasis{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  animation-name: modalOpen;
  animation-duration: .3s;
}

.modalContent{
  width: 100vw;
  max-width: 1200px;
  height: 100vh;
  max-height: 600px;
  box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 7px 20px 0 rgba(0,0,0,0.2);
  animation-name: modalOpen;
  animation-duration: 1s;
}

.modalHeader{
  display: flex;
  height: 75px;
  padding:0px 10px;
  margin: 0px 0px 10px 0px;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #457B9D;
  color: white;
  border-radius: 3px;
}

.modalBody{
  display: flex;
  background-color: rgba(67, 79, 91, 1);
  height: calc(100% - 85px);
  width: 100%;
  border-radius: 5px;
  flex-direction: column;
}

.modalFooter{
  display: flex;
}

.modalHeader_Stationsname, .modalHeader_regionName{
  display: flex;
  width: 100%;
  height: 45px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.modal_select_container{
  display: flex;
  flex-direction: row;
  height: 30px;
  padding: 10px;
  width: calc(100% - 20px);
  align-items: center;
}

.modal_select{
  height: 30px;
  color: rgba(200, 200, 200, 1);
  background-color: rgba(67, 79, 91, 1);
  border: 1px solid rgba(60, 60, 60, 1);;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.btn_modal_add_parameter{
  height: 30px;
  border: 1px solid rgba(60, 60, 60, 1);
  border-radius: 0px;
  margin: 0px 0px 0px 10px; 
  color: rgba(200, 200, 200, 1);
  background: linear-gradient( 0deg, rgba(67, 79, 91, 0.5), rgba(128, 128, 128, 0.1));
  cursor: pointer;
  box-shadow: inset 0px 2px 2px rgba(112, 112, 112, 0.3),
              inset 0px 5px 5px rgba(112, 112, 112, 0.1),
              inset 0px -1px 2px rgba(50, 50, 50, 0.3),
              inset 0px -3px 5px rgba(50, 50, 50, 0.1),
              inset 1px 1px 2px rgba(50, 50, 50, 1),
              inset -1px -1px 2px rgba(50, 50, 50, 1);
  font-family: 'Poppins', sans-serif;             
}

.btn_modal_add_parameter:active{
  background: rgba(56, 66, 75, 1);
  box-shadow: inset 1px 1px 2px rgba(50, 50, 50, 1),
              inset -1px -1px 2px rgba(50, 50, 50, 1);
  color: rgba(162, 162, 162, 1);
}

@media only screen and (max-width: 1000px){
  .modalContent{
    max-height: 90vh;
  }
}

@media only screen and (min-width: 2000px){

  .modalContent{
    max-width: 2350px;
    max-height: 1175px;
  }

  .modalHeader{
    display: flex;
    height: 150px;
    padding:0px 10px;
    margin: 0px 0px 10px 0px;
  }
  
  .modalHeader_Stationsname, .modalHeader_regionName{
    display: flex;
    width: 100%;
    height: 67px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal_select_container{
    display: flex;
    flex-direction: row;
    height: 50px;
    padding: 10px;
    width: calc(100% - 20px);
    align-items: center;
  }
  
  .modal_select{
    height: 50px;
    font-size: 18px;
  }
  
  .btn_modal_add_parameter{
    height: 50px;
    font-size: 18px;
    padding: 0px 10px;
  }
}

@keyframes modalOpen{
  from{ opacity: 0}
  to{ opacity: 1}
}
