﻿ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-bottom: 10px;
}
/*ul.tabs li:first-child
{
    border-top-left-radius: 8px;
}

ul.tabs li:last-child
{
    border-top-right-radius: 8px;
}*/
    ul.tabs li {
        background: #dedede;
        /*border: 1px solid #1d1d1d;*/ /*COmmented by rahul demand from manish bhai*/
        border: 1px solid #b5b5b5;
        display: inline-block;
        padding: 8px;
        cursor: pointer;
        border-radius: 10px; 
        /*border-radius: 20px;*/ /*COmmented by rahul demand from manish bhai*/
        width: 120px;
        margin-left: 10px;
    }
        ul.tabs li.current {
            background: #e5ecfe;
            border: 1px solid #858585;
            /*border: 1px solid #3f81f0;*/ /*COmmented by rahul demand from manish bhai*/
        }
ul.tabs li .info {
  float: right;
  padding: 0px 5px;
  border-radius: 20px;
  background: #999999;
  color: white;
}
ul.tabs li.current .info {
  background: #3f81f0;
}
.tab-content {
  display: none;
  border-collapse: collapse;
}
.tab-content.current {
  display: inherit;
}
.TabButtonsLightInkBlue {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
}
.TabButtonsLightInkBlue li {
  background: #84a3d4;
  padding: 5px 5px;
  cursor: pointer;
  align-items: center;
}
.TabButtonsLightInkBlue li.current {
  background: white;
  color: black;
  width: auto !important;
}
.HighlightedTab {
  background: #c34a4a !important;
  color: white !important;
}