* {
font-family: sans-serif;
color: #000000;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

.btnStartSTART {
    background-color: #7FFFD4;
    color: black;
}
.btnStartSTOP {
    background-color: #FF5F1F;
    color: white;
}
.btnStartAUTHORIZING {
    background-color: #FFFF8F;
    color: black;
}
  
.css-input {
    width: 100%;
    padding: 5px;
    font-size: 16px;
    border-width: 1px;
    border-color: #000000;
    background-color: #ffffff;
    color: #000000;
    border-style: solid;
    /*box-shadow: 0px 0px 5px rgba(101,185,230,.75);*/
    text-align: center;
    text-align-last: center;
    background: transparent;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.css-input:focus {
    outline:none;
}

.divStat {
    height: 15px;
    background-color: #FFFF8F;
    width: 0%;
    text-align: left;
}

.container_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "cont_header cont_header"
        "cont_tengah1 cont_tengah2"
        "cont_footer1 cont_footer2"
        "cont_footer3 cont_footer4";
    gap: 3px;
    width: 98vw;
    height: 96vh;
}

.container_header {
    grid-area: cont_header;
    text-align: center;
}

.container_tengah1 {
    background-color: #A0E9FF;
    border-radius: 20px;
    grid-area: cont_tengah1;
    overflow: auto;
 }

.container_tengah2 {
    background-color: #E3ACF9;
    border-radius: 20px;
    grid-area: cont_tengah2;
    overflow: auto;
 }

.container_footer1 {
    background-color: #FDFF00;
    border-radius: 20px;
    grid-area: cont_footer1;
 }

.container_footer2 {
    background-color: #FDFF00;
    border-radius: 20px;
    grid-area: cont_footer2;
 }

.container_footer3 {
    background-color: #FDFF00;
    border-radius: 20px;
    grid-area: cont_footer3;
 }

.container_footer4 {
    background-color: #FDFF00;
    border-radius: 20px;
    grid-area: cont_footer4;
 }

.tdInfo {
    font-size: 1.2rem;
    color: #000000;
}

.divLog {
    width: 100%;
    height: 57px;
    overflow-y: auto;
    margin-left: 15px;
}

.stepper-wrapper {
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
  }
  
  .stepper-item.active {
    font-weight: bold;
  }
  
  .stepper-item.completed .step-counter {
    background-color: #4bb543;
  }

  .stepper-item.completed .step-name {
    color: #4bb543;
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #4bb543;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .container_main {
        grid-template-columns: 1fr;
        grid-template-areas: 
        "cont_header"
        "cont_tengah1"
        "cont_tengah2"
        "cont_footer1"
        "cont_footer3"
        "cont_footer2"
        "cont_footer4";
        gap: 2px;
    }
    .ez-logo {height: 25px;}
    .ez-logo-tool {height: 15px;}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .ez-logo {height: 25px;}
    .ez-logo-tool {height: 15px;}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .ez-logo {height: 25px;}
    .ez-logo-tool {height: 15px;}
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .ez-logo {height: 35px;}
    .ez-logo-tool {height: 25px;}
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .ez-logo {height: 35px;}
    .ez-logo-tool {height: 25px;}
}