/* Chrome, Safari, Edge, Opera */
/* below code is used to disable arrow keys in the number input textbox */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.container{
  position: relative;
  top: 15vh;
  width: 70%;
  margin: auto;
  min-width: 800px;
  margin-bottom: 50px;
  /* overflow: auto; */
}

.heading{
  width: 100%;
  background-color: rgb(35, 37, 40);
  height: 50px;
  color: white;
  text-align: center;
  border-radius: 7px 7px 0 0;
  font-size: 18px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: lighter;
}

.partition_heading th{
  background-color: rgb(35, 37, 40);
  height: 50px;
  color: white;
  text-align: center;
  font-size: 17px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: lighter;
}

.partition_heading th:first-child{
  border-radius: 7px 0 0 0;
}

.partition_heading th:last-child{
  border-radius: 0 7px 0 0;
}

table{
  width: 100%;
  background-color: white;
  border-collapse: collapse;
  border-radius: 7px;
}

tr{
  height: 57px;
}

tr:last-child td:first-child{
  border-radius: 0 0 0 7px;
}

tr:last-child td:last-child{
  border-radius: 0 0 7px 0;
}

tr:nth-child(even){
  background: rgb(245, 246, 247);
}

tr td:last-child{
  padding-right: 10px;
}

.td_txt{
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: right;
  padding-right: 5px;
  width: 100px;
}

.td_info_txt{
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  padding-left: 5px;
  width: 100px;
}

.text_input{
  width: 150px;
  height: 30px;
  padding-left: 10px;
  position: relative;
  border: none;
  background-color: lightgrey;
  border-radius: 3px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.long_text_input{
  width: 350px;
  height: 30px;
  padding-left: 10px;
  position: relative;
  border: none;
  background-color: lightgrey;
  border-radius: 3px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.pattern_btn{
  width: 150px;
  height: 30px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  border:none;
  border-radius: 5px;
}

.td_btn{
  text-align: center;
}

.td_btn input{
  width: 150px;
  height: 30px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  border:none;
  border-radius: 5px;
}

select, option{
  width: 150px;
  height: 30px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  padding-left: 10px;
  border: none;
  background-color: lightgrey;
}

.checkbox{
  padding-left: 5px;
  padding-top: 5px;
}

.td_img{
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  padding-right: 5px;
  width: 200px;
  overflow: auto;
}

.image_input{
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  width: 100%;
}

.td_img_link{
  text-align: center;
}

.td_img_link a{
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: red;
}

.td_img_link img{
  width: 40px;
  height: 30px;
  border-radius: 2px;
}

.td_imgs_link{
  display: flex;
  justify-content: center;
  vertical-align: middle;
}

#sub_imgs_outer{
  max-height: 50px;
  max-width: 170px;
  display: flex;
  flex-wrap: nowrap;
}

#sub_imgs_inner{
  max-height: 50px;
  max-width: 150;
  overflow-x: hidden;
  display: flex;
}

.td_imgs_link a{
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: red;
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 8px;
}

.td_imgs_link a:hover{
  background-color: #ddd;
  color: black;
}

.td_imgs_link .scroll_arrow{
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: red;
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 8px;
  background-color: #f1f1f1;
  color: black;
}

.td_imgs_link .scroll_arrow:hover{
  background-color: #ddd;
  color: black;
  cursor: pointer;
}

.td_imgs_link img{
  width: 40px;
  height: 30px;
  border-radius: 2px;
}

.text_input:focus{
  outline: none;
  border: 2px solid green;
  background-color: lightgreen;
}

.long_text_input:focus{
  outline: none;
  border: 2px solid green;
  background-color: lightgreen;
}

#save_btn{
  background-color: lightgreen;
  color: darkgreen;
  margin-right: 5px;
}

#save_btn:hover{
  background-color: darkgreen;
  color: white;
}

#view_btn{
  background-color: lightblue;
  color: blue;
  margin-right: 5px;
}

#view_btn:hover{
  background-color: blue;
  color: white;
}

#cancel_btn{
  background-color: rgb(236, 191, 141);
  color: Red;
  margin-left: 5px;
}

#cancel_btn:hover{
  background-color: red;
  color: white;
}

#delete_btn{
  background-color: rgb(186, 193, 184);
  color: Black;
  margin-left: 5px;
}

#delete_btn:hover{
  background-color: black;
  color: white;
}

#error_row{
  display: none;
}

#error_msg{
  font-family: 'Titillium Web', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: red;
  text-align: center;
}

/* the below code is for edit html */
.edit_info{
  color: darkblue;
  text-align: center;
  font-size: small;
}

.small_partition_heading{
  background-color: rgb(35, 37, 40);
  height: 20px;
  width: 100px;
  color: white;
  text-align: center;
  font-size: 12px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: lighter;
}

.small_partition_heading:first-child{
  border-radius: 7px 0 0 0;
}

.small_partition_heading:last-child{
  border-radius: 0 7px 0 0;
}
.small_row_heading {
  height: 45px;
}

.small_row {
  height: 30px;
}

.small_td_txt{
  font-family: 'Titillium Web', sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  width: 50px;
}

.small_text_input{
  width: 60px;
  height: 20px;
  position: relative;
  padding-right: 10px;
  text-align: right;
  margin-right: 10px;
  border: none;
  background-color: lightgrey;
  border-radius: 2px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.small_text_input:focus{
  background-color: lightgreen;
}

.small_text_input:focus{
  background-color: lightgreen;
}

.small_pattern_btn{
  width: 75px;
  height: 20px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 13px;
  font-weight: 900;
  border:none;
  border-radius: 5px;
}

.small_td_btn{
  text-align: center;
}

.small_td_btn input{
  width: 150px;
  height: 30px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 900;
  border:none;
  border-radius: 5px;
}

.small_checkbox{
  padding-left: 5px;
  padding-top: 5px;
}

.small_pattern_btn{
  width: 80px;
  height: 20px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 11px;
  font-weight: 900;
  border:none;
  border-radius: 5px;
}

#vlcc_chart_div{
  width: 100%;
  background-color: white;
  border-radius: 7px;
}
.td_chart{
  padding-left: 30px;
  max-width: 300px;
  max-height: 300px;
  text-align: right;
}

.small_td_img_link{
  text-align: center;
  padding-top:4px;
}

.small_td_img_link a{
  font-family: 'Titillium Web', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: red;
}

.small_td_img_link img{
  width: 30px;
  height: 20px;
  border-radius: 2px;
}

.sort_select{
  text-align: left;
}

.search_dropdown{
  width: 170px;
}
