@font-face {
    font-family: myFont;
    src: url(fonts/TiroDevanagariMarathi-Regular.ttf);
}


* {
    box-sizing: border-box;
    font-family: myFont;
    padding: 0; margin: 0;
  }
  
  body {
    padding: 0;
    margin: 0;
    height: 100%; 
    display: flex;
    flex-direction: column;  
    overflow: hidden;
  }

  html {
    height: 100%;
    overflow-y: hidden;
    min-width: 580px;
  }



#headings {
    background-color: hsl(0deg 0% 20%);
    padding-left: 10px;
    display: flex;
    max-height: 70px;
}

.th-button {
    background-color: hsl(0deg 0% 20%);
    height: 70px;
    width: 100px;
    color: white;
    cursor: pointer;
    user-select: none;
    border: none;
    transition: all .4s ease;
    transition-property: width, height;
}

.th-button:hover {
    background-color: hsl(0deg 0% 24%);
}

.divider {
    height: 50px;
    width: 2px;
    background-color: white;
    align-self: center;
    margin-left: 6px;
    margin-right: 6px;
}

#center-container {
    /*height: calc(100% - 70px);*/
    height: 100%;
    display: flex;
}

#left-pane {
    flex: 1;
    min-width: 300px;
    -webkit-box-shadow: 0px 6px 11px 3px #000000;
    box-shadow: 0px 6px 11px 3px #000000;

    transition: all .4s ease;
    transition-property: min-width;
    background-color: hsl(0deg 0% 87%);
}

#left-pane-heading {
    text-align: center;
    background-color: hsl(0deg 0% 80%);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    padding-top: 3px;
    padding-bottom: 3px;
}

#left-pane-items {
    background-color: hsl(0deg 0% 87%);
    height: 200px;
}

#left-pane-logo {
    height: 100px;
    background-color: hsl(0deg 0% 87%);
    border-top: 1px solid black;
    text-align: center;
    padding-top: 10px;
    border-bottom: 1px solid black;
    margin-top: 6px;
}

#left-pange-filters {

    font-size: 14px;
    padding: 3px 5px 5px 5px;
}

#right-pane {    flex: 6;
    
    overflow: hidden; 
}

.mtable {
    font-size: 13px;
    padding: 10px 0 0 10px;
}

tr {
    height: 25px;
}

tr td:first-child {
    width: 90px;
}

#dialog-container {
    background-color: rgba(194, 194, 194, 0.185);
    width: 100%;    
    height: 100%;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
}

#msg-box {
    width: 400px;
    height: 172px;
    background-color: #545454;
    color: white;
    border-radius: 3px;
    position: relative;
}

#msg-box-header {
    font-size: 14px;
    padding: 4px 0 0 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

#msg-box-Body {
    background-color: #dedede;
    height: 80%;
    width: 96%;
    margin: auto;
    border-radius: 3px;
    margin-top: 5px;
    color: black;
    text-align: center;
    font-size: 13px;
    padding-top: 50px;
}

#dialog-3d {
    position: absolute;
    left: 340px;
    top: 100px;
    background-color: #545454;
    width: 800px;
    height: 800px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 6px 11px 3px #000000;
    box-shadow: 0px 6px 11px 3px #000000;
    display: none;
}

#dialog-3d-header {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    color: white;
    padding: 4px 0 0 14px; 
    cursor: move;   
}

#viewer-3d {
    background-color: black;
    width: 780px;
    height: 760px;
    margin: auto;
    margin-top: 10px;
    border-radius: 3px;
}

#dlg-loader {
    position: absolute;
    left: 350px;
    top: 150px;
    font-size: 24px;
    color: blue;
    letter-spacing: 3px;
    border: 1px solid black;
    border-radius: 2px;
    padding: 3px;
    display: none;
}

.roll-in-right {
	-webkit-animation: roll-in-right 0.6s ease-out both;
	        animation: roll-in-right 0.6s ease-out both;
}



 @-webkit-keyframes roll-in-right {
    0% {
      -webkit-transform: translateX(800px) rotate(540deg);
              transform: translateX(800px) rotate(540deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) rotate(0deg);
              transform: translateX(0) rotate(0deg);
      opacity: 1;
    }
  }
  @keyframes roll-in-right {
    0% {
      -webkit-transform: translateX(800px) rotate(540deg);
              transform: translateX(800px) rotate(540deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) rotate(0deg);
              transform: translateX(0) rotate(0deg);
      opacity: 1;
    }
  }
  
  

#close-btn {
    position: absolute;
    fill: white;
    top: 4px;
    right: 14px;
    width: 12px;
    height: 12px;
    cursor: pointer;
} 



#close-btn:hover {

    fill: rgb(143, 143, 5);
}

#color-div {
    position: absolute;
    left: 140px;
    top: 480px;
    background-color: #545454;
    width: auto;
    height: auto;
    min-width: 100px;
    min-height: 50px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 6px 11px 3px #000000;
    box-shadow: 0px 6px 11px 3px #000000;
    padding: 0 5px 5px 5px;
    display: none;
}

#color-box-header {
    font-size: 14px;
    padding: 4px 0 0 14px;
    font-weight: bold;
    letter-spacing: 2px;
    color: white;
}

#color-box {
    width: 400px;
    height: auto;
    background-color: white;
    color: black;
    border-radius: 3px;
    position: relative;
    padding: 6px;
    display: flex;
    justify-items: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.color-item {

    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
}

.color-item span {
    font-size: 13px;
}

.color-item span {
    font-size: 13px;
}

.color-item-box {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    margin-left: 2px;
    margin-right: 6px;
}

.color-item-box:hover {
    border: 3px solid black;
}

#loader {

    position: absolute;
    left: 340px;
    top: 100px;
    display: none;
}

@media only screen and (max-width: 980px) {
    .th-button   {
      font-size: 10px;
      height: 20px;
      width: 30px;
      padding-top: 16px;
    }

    #left-pane {
        min-width: 200px;
        display: none;
    }

    table {
        font-size: 12px !important;
    }
  }