.tabs {

  position: relative;   
  min-height: 500px; /* This part sucks */
  height: 100%;
  clear: both;
  margin: 8px 0px;
}

.tab {
  float: left;
}

.tab-content {
  position: absolute; 
  top: 41px;
  left: 0px;
  background: #fff;
  right: 0;
  bottom: 0;
  padding: 20px;
  border: 1px solid #ccc; 
  background-color: rgb(249, 249, 247);

}

.current-tab .tab-content{

}

.tab label {
  margin-right: 6px;
  min-width: 200px;
  padding: 10px; 
  border-top: 1px solid #ccc; 
  border-left: 1px solid #ccc; 
  border-right: 1px solid #ccc; 
  border-bottom: none;
  margin-left: -1px; 
  position: relative;
  left: 1px; 
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  
}
.inactive-tab .tab-content, .active-tab .tab-content{
  display: none;
}

.active-tab.current-tab .tab-content{
  display: block;
}

.active-tab label{
  color: #4C5C63;
  background-color: rgba(249, 249, 247, .1);
  opacity: 1;
  font-weight: 800;
}

.active-tab.current-tab label{
  z-index: 1;
  color: #4C5C63;
  background-color: rgb(249, 249, 247);
  border-bottom: 1px solid  rgb(249, 249, 247);
  opacity: 1;
  font-weight: 800;
}

.inactive-tab label{   
  color: #4C5C63;
  background-color: rgba(249, 249, 247, .1);
  opacity: 1;
  font-weight: 800;
}

.tab .header-bar{
  color: white;
  background-color: red;
}


.tab h3{
  color: #5F737C;
  color: #FF6622; 
  font-weight: 800;
}


.tab h4{
  color: #555;
  margin-bottom: 6px;
}

.tab .checkmark img{
  height: 24px;
  color: #888;
}

.tab .container{
}

.tab .form-wrapper{

  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 5px;
  background-color: rgb(249, 249, 247);
    background-color: #fff;
}

#upload-in-tab{
  color: #555;
  font-weight: 400;
  background-color: #eee;
  border: 1px solid #aaa;

}
