/* CSS Document */
@import url("font-awesome/5.12.1/css/all.min.css");
* {
    margin: 0;
}

.select-tile {
    width: 40px;
    height: 40px;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
    padding: 0px;
    margin: 0px;
}

textarea, input, select {
    font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
    color: #3484FF;
    font-size: 14px;
    width: 100%;
    height: 100%;
    border-style: dotted; 
    border-color: aliceblue; 
    overflow: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;       /* Remove default arrow */
    background-image: url(...);   /* Add custom arrow */
    background-color: white;
}

img {
    cursor: pointer;
    margin: 0;
}

.body-home {
    background-color: #171717;
    overflow: hidden;
}
.body-editor {
    background-color: #FFFFFF;
    background-size: cover;
    background-attachment: fixed;
}

.div-grid {
  width: 40px;
  height: 40px;
  padding: 0px;
  border-bottom: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

.td-drop {
    width: 40px;
    opacity: 100%;
    padding-bottom: 0px;margin: 0;
}

.splash {
    width: 800px;
    height: 250px;
    background-image: url("../img/Mega_Splash.png");
    background-repeat: no-repeat;
    margin: 0 auto;
}

.btn {
    border: 1px solid #3484FF;
    color: #3484FF;
    margin: 15px auto;
    width: 180px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    font-size: 18px;
    background-color: #000000;
    text-align: left;
    border-radius: 5px;
    cursor: pointer;
    
    user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.btn:Hover {
    border: 1px solid #FF0000;
    color: red;
}

.btn:active {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.right-pnl {
    float: right;
    position: fixed;
    right: 0;
    z-index: 999;
    
    background-color: #DDDDDD;
    padding: 10px;
    /*height: 100%;*/
    border: 1px groove #000000;
    opacity: 100%;
}

.notify {
    float: left;
    position: fixed;
    left: 0;
    z-index: 999;
    
    background-color: #DDDDDD;
    padding: 10px;
    /*height: 100%;*/
    border: 1px groove #000000;
    opacity: 100%;
}
.notify-txt {
    color: #3484FF;
    font-weight: bold;
}

table {
  border-collapse: collapse;
}
hr {
    margin-top: 15px;
    border: 1px solid red;
}

.field-desc {
    font-weight: bold;
    font-size: 15px;
    color: #5F5F5F;
    padding-top: 25px;
    padding-bottom: 15px;
    width: 160px;
}

.field-input {
    font-weight: normal;
    color: #5F5F5F;
}