button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: small;
    line-height: inherit;
}

select,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"] {
    width: 100%;
    /*height: 25px;*/
    height: auto;
    text-align: left;
    border-radius:1px;
}

input[type="submit"],
button,
input[type="button"] {
    font-size: 14px !important;
    /*height: 25px;*/
    height: auto;
}

textarea {
    width: 100%;
}

/*Drag & Drop */



.main{
    text-align: center;
    vertical-align: middle;
    border: 5px solid rgb(52, 116, 136);
    width: 99%;
    height: 510px;
    transform: scale(1.0);
    margin: 0;
}
.drag{
    width: 170px;
    padding: 12px 7px;
    background-color: rgb(189, 241, 241);
    margin: 5px;
    list-style: none;
    border: 1px solid black;
    display: inline-block;

}
.leftArea{
    display: inline-block;
    margin-left: 15px;
}
.right_display{
    display:inline-block;
    margin-top: 5px;
   position: relative;
   /* padding-left: 15px; */
   /* margin-left: 5px; */
}



#submit{
    position: relative;
    margin: 0px 30px 0px;
    align-items: center;
    padding: 8px;
    border: 1px solid black;
}
.btns{
    position: relative;
    text-align: center;
    display: inline-block;
    width: 410px;
    margin-top: 10px;
}

#clear{
    padding: 8px;
    border: 1px solid black;
}



.display{
    text-align: center;
    display: inline-block;
    margin-left: 37px;
 }


 .typecode{
    text-align: left;
    margin-left: 45px;
 }

 #codeselection{
    width: 150px;
    padding: 5px;
    border: 1px solid black;
 }

 .uldrag{
     text-align: left;
     margin-left: 160px;
     float: left;
 }

 .ft{
     text-align: left;
     margin-left: 45px;
     
    }

    #fixedTextEdit{
        width: 400px;
        font-size: large;
        height: 24px;
        vertical-align: middle;
        border: 1px solid black;
    }

    #result, #length{
        text-align: left;
        margin-left: 10px;
        font-weight: bolder;
    }


    .column {
        float: left;
        width: 50%;
        padding: 10px;
        height: 300px; /* Should be removed. Only for demonstration */
      }
      
      /* Clear floats after the columns */
      .row:after {
        content: "";
        display: table;
        clear: both;
      }

/* Menu Bar */

.mainmenu{
    width: 100%;
    height: 30px;
   text-align: left;
   transition-duration: .75s;
   background-color: black;
   z-index: 1;
   position: absolute;
}

.content {
    display: none;
    /* position: absolute; */
}

.content a {
    color: black;
    text-decoration: none;
    margin-top: 5px;
    padding-right:20px;
}
/* .image:hover + .imgtitle {
     display: inline-block;
      color: white;
} */


.settings:hover + .mainmenu{
    display: inline-block;
    background-color: rgb(0, 0, 0);
    height: 100px;
    transition-duration: .75s;
}
.settings:hover +.mainmenu>.content {
    display: inline-block;
    margin-top: 15px;
    margin-left: 50px;
    transition-duration: .75s;

}
.mainmenu:hover{
    display: inline-block;
    background-color: rgb(0, 0, 0);
    height: 100px;
    transition-duration: .75s;
}

.mainmenu:hover .content {
    display: inline-block;
    margin-top: 15px;
    margin-left: 50px;
    transition-duration: .75s;
}



.image{
    margin-top: 10px;
    width: 50px;
    height: 50px;
}

.image:hover+ .imgtitle{
    vertical-align: middle;
    margin-top: -25px;
    padding-left: 20px;
    
}

.imgtitle{
    display: none;
    visibility: hidden;
    background-color: pink;
    color: white;
    /* padding: 1px; */
    border-radius: 5px;
    position: absolute; 
    z-index: 1;
    bottom: 70%; 
    margin-left: -95px;
    text-align: center;
    width: 200px;
}
.image:hover + .imgtitle {
    display: inline-block;
    visibility: visible;
     color: black;
    
}

.imgtitle::after {
    content: "";
    position: absolute;
    top: 100%;
    left:50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
  }

.settings{
display: inline-block; 
width: 15px;
transition-duration:  .75s;
position:absolute;
z-index: 2;
}




#myProgress{
    width: 100%;
    background-color: #ddd;
}

#myBar{
    width: 1%;
    height: 30px;
    background-color: #4CAF50;
    text-align: center;
    line-height: 30px;
    color: white;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }



/* tool tip */

