.standard_body{
  width:100vw;
  height:100vh;

  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 50px calc(100vh - 100px) 50px;
  grid-template-areas:
  "standard_navigation"
  "standard_content"
  "standard_footer";
}

.standard_navigation{
  grid-area: standard_navigation;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #5B9BD5;
}

.standard_nav_logo{
  width: 200px;
  height: auto;
  display:flex;
  justify-content: flex-start;
  align-items: center;
}

.standard_nav_logo a{
  text-decoration: none;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  padding-left: 20px;
}

.standard_nav_list ul{
  width: calc(100vw - 200px);
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  list-style-type: none;
}

.standard_nav_list ul li{
  padding-left: 20px;
  padding-right: 20px;
  width:auto;
  height: auto;
  display: block;
  line-height: 50px;
}

.standard_nav_list ul li.selected{
  background-color: #4B8BC5;
}

.standard_nav_list ul li:hover{
  background-color: #4B8BC5;
}

.standard_nav_list ul a{
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
}

.standard_content{
  width:100vw;
  height:auto;
  display: grid;
  grid-template-columns: 300px calc(100vw - 600px) 300px;
  grid-template-rows: calc(100vh - 100px);;
  grid-template-areas:
  "standard_leftpanel standard_midpanel standard_rightpanel";
}

.standard_leftpanel{
  grid-area: standard_leftpanel;
  width: calc(300px - 1px);
  height: calc(100vh - 100px);
  border-right: 1px solid #BFBFBF;
  display: flex;
  flex-flow: wrap row;
  align-content: flex-start;
}

.standard_midpanel{
  grid-area: standard_midpanel;
  width:calc(100vw - 600px);
  height: calc(100vh - 100px);
}

.standard_rightpanel{
  grid-area: standard_rightpanel;
  width: calc(300px - 1px);
  height:calc(100vh - 100px);
  border-left: 1px solid #BFBFBF;
}

.standard_footer{
  grid-area: standard_footer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #5B9BD5;
}

.standard_footer p{
  font-size: 14px;
  color: #FFFFFF;
}

.standard_scrollablepanel{
  margin: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  overflow: auto;
  justify-content: space-evenly;
  /*background-color: cyan;*/
}

.standard_scrollablepanel::-webkit-scrollbar {
  display: none;
}

.standard_imgselector{
  padding-bottom: 20px;
  width: auto;
  height: auto;
}

.standard_imgselector img{
  width:auto;
  height: 75px;
}

.standard_textselector{
  margin-bottom: 20px;
  padding-left: 7px;
  padding-bottom: 10px;
  height: auto;
  max-height: 100px;
  width: 240px;
  border-radius: 5px;
  background-color: #F2F2F2;
}

.standard_textselector:hover{
  background-color: #BFBFBF;
}

.standard_textselector h5{
  padding-top: 7px;
  padding-bottom: 3px;
  font-size: 14px;
}

.standard_textselector li{
  list-style-type: none;
  font-size: 11px;
  line-height: 14px;
}

.standard_textselector p{
  font-size: 11px;
  line-height: 14px;
}

.standard_textselector a{
  text-decoration: none;
  color: #333333;
}


#form_snackbar {
  visibility: hidden;
  z-index: 1;
  left: calc(100vw/2 - 125px);
  bottom: 100px;
  position: fixed;
  width: 250px;
  background-color: tomato;
  color: black;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
}

#form_snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 1s, fadeout 1s 2s;
  animation: fadein 1s, fadeout 1s 2s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 100px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 100px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 100px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 100px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.edit_content{
  width: 100vw;
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: auto;
}

.edit_content::-webkit-scrollbar {
  display: none;
}

.standard_editpanel{
  margin: 30px 40px 0px 40px;
  padding: 20px 20px 20px 20px;
  width: calc(100% - 120px);
  height: auto;
  background-color: #F2F2F2;
  border-radius: 5px;
}

.standard_editpanel h5{
  width: auto;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
}

.standard_editpanel p{
  margin-bottom: 5px;
  width: auto;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
}

.sub_editpanel{
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#editpanel_currencyselection{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#editpanel_currencyselection h5{
  width: auto;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  padding-right: 20px;
}

#editpanel_currencyselection select{
  width: 100px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  padding-right: 0px 20px 0px 20px;
}

#table_item{
  width: 100%;
  height: auto;
}

#table_item th{
  font-size: 14px;
  line-height: 40px;
  word-wrap: break-word;
}

#table_item tr.header{
  height: 40px;
  font-size: 14px;
  text-align: center;
  background-color: #D2D2D2;
}


#table_item tr.lineitem{
  font-size: 14px;
  line-height: 40px;
  text-align: center;
}

#table_item tr.lineitem_selected{
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  background-color: gold;
}

#table_item tr.lineitem:hover{
  background-color: tomato;
}

#table_item tr.total{
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  border-top: 1px solid #BFBFBF;
}

#itemedit_panel{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#itemedit_iteminfo{
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
}

#itemedit_iteminfo p{
  margin-bottom: 5px;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}

.grp_editpanel{
  width: 100px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.grp_editpanel label{
  margin-bottom: 5px;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.grp_editpanel input{
  margin-bottom: 5px;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
}

.grp_editpanel select{
  margin-bottom: 5px;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
}


#freightestimator_panel{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.grp_freightinfo{
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
}

.grp_freightinfo p{
  width: auto;
  height: auto;
  font-size: 14px;
}

#editpanel_itemoption{
  margin: 30px 40px 0px 40px;
  padding: 20px 20px 20px 20px;
  width: calc(100% - 120px);
  height: 30px;
  background-color: #F2F2F2;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
}

#editpanel_itemoption h5{
  margin-right: 30px;
  padding: 0px 20px 0px 20px;
  width: auto;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  display: flex;
  background-color: #D2D2D2;
  cursor: pointer;
}

#table_trend{
  width: 100%;
  height: auto;
}
#table_trend th{
  font-size: 14px;
  line-height: 40px;
  word-wrap: break-word;
}
#table_trend tr.header{
  height: 40px;
  font-size: 14px;
  text-align: center;
  background-color: #D2D2D2;
}
#table_trend tr.linetrend{
  font-size: 14px;
  line-height: 40px;
  text-align: center;
}
#table_trend tr.linetrend_selected{
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  background-color: gold;
}
#table_trend tr.linetrend:hover{
  background-color: tomato;
}
#table_trend tr.total{
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  border-top: 1px solid #BFBFBF;
}
