﻿@charset "utf-8";
a:link, a:visited, a:active, h1, h2 {
  color: #06539c;
}
a:hover {
  color: #adcf37;
}
.progress-bar, .btn-primary, .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active, .panel-primary > .panel-heading {
  background-color: #06539c;
  border-color: #06539c;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary, .btn-warning:hover {
  background-color: #adcf37;
  border-color: #adcf37;
}
.row-header {
  color: #06539c;
}
.col-header {
  background-color: #06539c;
  border: 1px solid #06539c;
}
.table th {
  background-color: #06539c;
}

/*Start of Tab CSS*/
.tabs a {
  padding: 20px 25px;
  line-height: normal;
  display: block;
  background-color: #EEE; /*Color of Tab*/
  color: #666;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  height: 100%;
  margin: 0 -15px;
}
.tabs a::before {
  content: '';
  display: block;
  height: 6px;
  background: #adcf37; /*Underline color*/
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: -webkit-transform ease-in-out 250ms;
  -webkit-transition: -webkit-transform ease-in-out 250ms;
  -o-transition: transform ease-in-out 250ms;
  transition: transform ease-in-out 250ms;
  transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
}
.tabs a:hover::before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.tabs a.active, .tabs a.active:hover {
  color : #FFF ; /*Font color of active tab*/
  background : no-repeat 92% center #06539c ; /*Color of active tab*/
  background-size : 7px 10px ;
  border : none;
}
a .tablinks :hover {
  color : #666666 ; /*Font color on tab hover*/
  text-decoration: none;
}
.tabcontent {
  padding: 0px 12px;
  width: 100%;
}
.tabs {
  margin-bottom: 10px;
}
/*End of Tab CSS*/

/*Other common CSS*/
.btn-round{
        border-radius: 25px;
    padding: 10px 20px;
}