.mainContainerDontCopy {
    width: 100%;
    background-color: #191631;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: block;
}

.flex-container-cui{
  margin: 10px;
}

.row-cui{
width: 100%;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.card-cui-1{
  position: relative;
  flex: 1;
  max-width: 300px;
  min-height: 150px;
  margin: 10px;
}

.card-cui-2{
  position: relative;
  flex: 1;
  max-width: 460px;
  min-width: 250px;
  min-height: 200px;
  height: 100%;
  margin: 10px;
}

.card-cui-3{
  position: relative;
  flex: 2;
  min-width: 450px;
  max-width: 780px;
  margin: 10px;
}

.card-cui-4{
  /* extra wide card for TAF table */
  position: relative;
  flex: 3;
  min-width: 700px;
  width: fit-content;
  max-width: 800px;
  margin: 10px;
}

.card-cui-fw{
  position: relative;
  flex: 3;
  min-width: 350px;
  max-width: 100%;
  margin: 10px;
}

@media (max-width: 900px){
  .card-cui-1{
    flex: 100%;
    max-width: 100%;
  }

  .card-cui-2{
    flex: 100%;
    max-width: 100%;
  }

  .card-cui-3{
    flex: 100%;
    max-width: 100%;
  }

  .card-cui-4{
    flex: 100%;
    min-width: 300px;
    max-width: 100%;
  }
}

@media (max-width: 600px){
  .card-cui-3{
    min-width: 350px;
  }
}



.inputSectionContainer-padding{
  padding: 20px;
  padding-top: 0px;
}

.inputSectionContainer-cui{
    padding:20px;
    padding-bottom: 15px;
    background-color:rgba(0, 0, 0, 0.3);
    max-width: 750px;
    border-left: 5px solid #ffffff;
    margin-left:auto;
    margin-right:auto;
    margin-top: 0px; 
    margin-bottom: 10px;
}

.inputSectionContainer-fw-cui{
  padding:20px;
  padding-bottom: 15px;
  background-color:rgba(0, 0, 0, 0.3);
  max-width: 100%;
  border-left: 5px solid #ffffff;
  margin-left:auto;
  margin-right:auto;
  margin-top: 0px; 
  margin-bottom: 10px;
}

.checkbox-container-cui{
padding-bottom: 15px;
}

.inputBoxHr{
  width: 98%;
  border: 1px solid #dddddd;
  margin-top: 15px;
  margin-bottom: 15px;	
}

/* Customize the label (the container) */
.container-cui {
    font-weight: normal;  
    text-align: left;  
    color:aliceblue;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-left: 0px;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
    font-size: 1.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container-cui input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark-cui {
    position: absolute;
    margin: auto;
    left: 0;
    bottom: 0px;
    top: 0px;
    height: 25px;
    width: 25px;
    background-color: #098e1b00;
    border: 2px solid #3f3f3f;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
  }
  
 
  /* When the checkbox is checked, add a green background */
  .container-cui input:checked ~ .checkmark-cui {
    background-color: #1ce03d;
    border: 2px solid #110F22;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark-cui:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container-cui input:checked ~ .checkmark-cui:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container-cui .checkmark-cui:after {
    box-sizing: content-box;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid rgb(11, 5, 51);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .inputBoxTitle{
    font-size: 2.2rem;
    font-weight: bold;
    color: rgb(228, 195, 47);
    margin-bottom: 10px;
  }

  .headerDescription{
    font-size: 1.4rem;
    text-align: center;
    font-weight: normal;
    color: aliceblue;
    margin-bottom: 15px;
  }
  
  .inputBoxDescription{
    text-align: left;
    font-size: 1.4rem;
    font-weight: normal;
    color: aliceblue;
    margin-bottom: 15px;
  }

  /* range slider  */

  .slider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 60px;
    padding: 30px;
    padding-left: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    }
    .slider p {
    width: 130px;
    font-size: 1.7rem;
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 0px;
    color: aliceblue;
    }

    .sliderNumberInput{
      text-align: right;
    max-width: 70px;
    width: fit-content;
    font-size: 1.7rem;
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 0px;
    color: aliceblue; 
    border: none;
    background-color: transparent;
    }

    .sliderNumberInputUnit{
      font-size: 1.7rem;
      font-weight: 600;
      padding-left: 0px;
      margin-bottom: 0px;
      color: aliceblue;
    }

    .slider input[type="range"] {
    -webkit-appearance:none !important;
    appearance:none !important;
    /* width: 420px; */
    height: 2px;
    background: aliceblue;
    border: none;
    outline: none;
    }
    .slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 20px;
    height: 20px;
    background: #44ff00;
    border-radius: 50px;
    cursor: pointer;
    transition: all .15s ease-in-out;
    }
    .slider input[type="range"]::-webkit-slider-thumb:hover {
    background: #41e107;
    }

    .slider-container{
      padding: 15px;
      position: relative;
    }

    .sliderTitle{
      font-size: 1.5rem;
      font-weight: bold;
      color: aliceblue;
      padding-right: 20px;
    }




  
  .textinput-box {
    margin-top: 25px;
    margin-left: 10px;
    margin-right: 10px;
    transition: all 0.3s;
      position: relative;
    }
    
 .textinput-box input {
      width: 100%;
      padding: 10px 0;
      padding-left: 10px;
      font-size: 16px;
      color: #fff;
      margin-bottom: 15px;
      border: none;
      /* border-bottom: 1px solid #fff; */
      border: 2px solid #fff;
      border-radius: 10px;
      outline: none;
      background: transparent;
      transition: .5s;
    }
.textinput-box label {
      position: absolute;
      top:0;
      left: 0;
      padding: 12px 0;
      padding-left: 15px;
      font-size: 1.4rem;
      color: rgb(118, 118, 118);
      pointer-events: none;
      transition: .5s;
    }
    
.textinput-box input:focus ~ label,
.textinput-box input:not(:placeholder-shown) ~ label {
      top: -32px;
      left: 0;
      color: rgb(228, 195, 47);
      font-size: 12px;
    }

.textinput-box input:not(:placeholder-shown) {
  border: 2px solid #fff;
  /* doesn't currently change anything, but might want to change border color later */
    }

  .textInput-warning-active{
    display: block;
    color: rgb(255, 0, 0);
    position: absolute;
    top: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 8px;
    height: auto;
  }
  .textInput-warning-inactive{
  display: none;
  }





/* radio input */
.radioInputContainer{
  margin-top: 15px;
  margin-bottom: 15px;
}

.radioInputTitle{
  font-size: 1.5rem;
  font-weight: bold;
  color: aliceblue;
  margin-bottom: 10px;
}

.radioInputDescription{
  font-size: 1.2rem;
  font-weight: normal;
  color: aliceblue;
  margin-bottom: 15px;
}

label input[type="radio"] {
  display: none;
}
label input[type="radio"] ~ span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-weight: normal;
  color: aliceblue;
  margin-bottom: 5px;
  transition: all 300ms ease-in-out;
}
label input[type="radio"] ~ span:before {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  background: #ffffff;
  margin-right: 5px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  left: 0;
  top: 0;
  box-sizing: border-box;
  transition: all 300ms ease-in-out;
}
label input[type="radio"]:checked ~ span:before {
  border: 4px solid #ffffff;
  background: rgb(11, 8, 48);
}

label input[type="radio"]:checked ~span{
  color: #ffffff;
  font-weight: bold;
}


.radioInputLabelContainer{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}




/* dropdown */
.dropdownLabel{
  clear: both;
  float: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: aliceblue;
  margin-bottom: 10px;
  padding-right: 5px;
}

.dropdownBox{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  color:aliceblue;
  border:2px solid rgb(255, 255, 255);
  background-color:#1515152f;
  min-width: 80%;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.customOptionSelect {
  transition: all 0.3s ease-in-out;
  text-align: center;
  color: aliceblue;
  background: rgb(30, 30, 30);
}

.inputExplanation{
  padding-left: 30px;
  font-size: 1.2rem;
  text-align: left;
  font-weight: normal;
  color: rgb(201 173 130);;
  margin-bottom: 15px;

}

/* hiding up and down arrows on number inputs */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.numberinput-box {
  text-align: left;
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  transition: all 0.3s;
    position: relative;
  }
  
.numberinput-box input {
    /* max-width: 150px; */
    width: 70%;
    padding: 10px 0;
    padding-left: 10px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    border: none;
    /* border-bottom: 1px solid #fff; */
    border: 2px solid #fff;
    border-radius: 10px;
    outline: none;
    background: transparent;
    transition: .5s;
  }

.numberinput-box label {
  vertical-align: middle;
  min-width: 160px;
  width: 20%;
  display: inline-block;
  padding-right: 10px;
  font-size: 1.4rem;
  color: rgb(228, 195, 47);
  pointer-events: none;
  transition: .5s;
}

.mbnumberinput-box label {
  vertical-align: middle;
  width: 20%;
  display: inline-block;
  padding-right: 10px;
  font-size: 1.4rem;
  color: rgb(224, 209, 144);
  pointer-events: none;
  transition: .5s;
}

.mbnumberinput-box input {
  /* max-width: 150px; */
  width: 32%;
  margin-left: 5px;
  padding: 10px 0;
  padding-left: 10px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  border: none;
  /* border-bottom: 1px solid #fff; */
  border: 2px solid #fff;
  border-radius: 10px;
  outline: none;
  background: transparent;
  transition: .5s;
}
.mbnumberlegend1{
width: 25%;
margin-right: 10px;
float: left;
margin-bottom: 5px;
}

.mbnumberlegend2{
  font-weight: bold;
  font-size: 1.5rem;
  float: left;
  width: 32%;
  margin-left: 5px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 5px;
}

.dateAndTimeLabel{
  font-size: 1.5rem;
  font-weight: normal;
  color: aliceblue;
}

.dateAndTimeInput{
  border-radius: 5px;
  padding: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 10px;
  margin-bottom: 10px;
  background-color: #ffffffe6;
  border: 2px solid #000000;
  color:rgb(30, 30, 30);
}

.dateAndTimeInputContainer{
  left: 0px;
  width: fit-content;
}

.syncIsCorrect{
  color: rgb(11, 255, 0);
  font-weight: bold;
  font-size: 1.5rem;
  padding: 5px;
  border: 1px solid rgb(11, 255, 0);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.syncIsIncorrectDiv{
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 1.7rem;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px; 
  border: 1px solid rgb(228, 195, 47);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.syncIsIncorrectText2{
  font-weight: normal;
  font-size: 1.5rem;
}

.aircraftProfilesDownloadText{
  font-weight: normal;
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  width: fit-content;
}