.contentsection{
margin: 0px 13px;
background: #ffffff;
padding: 10px 20px 30px 20px;
border-radius: 4px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
border: 1px solid #dce3e6;
margin-bottom: 30px;
}
/*MATERIAL CSS STARTS HERE*/
.material {
position: relative;
padding: 0;
margin-top: 16px;
border: none;
overflow: visible;
}
.material input {
box-sizing: border-box;
width: 100%;
padding: 12px 0px 8px 0px;
border: none;
border-radius: 0;
box-shadow: none;
border-bottom: 1px solid #DDD;
font-size: 14px;
outline: none;
cursor: text;
}
.material input::-webkit-input-placeholder {
transition: color 300ms ease;
}
.material input:not(:focus)::-webkit-input-placeholder {
color: transparent;
}
.material hr {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
margin: 0;
padding: 0;
width: 100%;
height: 2px;
border: none;
background: #1a4362;
font-size: 1px;
will-change: transform, visibility;
transition: all 200ms ease-out;
-webkit-transform: scaleX(0);
transform: scaleX(0);
visibility: hidden;
z-index: 10;
}
.material input:focus ~ hr {
-webkit-transform: scaleX(1);
transform: scaleX(1);
visibility: visible;
}
.material label {
position: absolute;
top: 10px;
font-size: 14px;
color: #333;
opacity: .7;
-webkit-transform-origin: 0 -150%;
transform-origin: 0 -150%;
transition: -webkit-transform 300ms ease;
transition: transform 300ms ease;
transition: transform 300ms ease, -webkit-transform 300ms ease;
pointer-events: none;
}
.material input:focus ~ label,
.material input:valid ~ label {
-webkit-transform: scale(0.6);
transform: scale(0.6);
font-size: 20px;
color:#1a4362;
}
.select-text {
position: relative;
font-family: inherit;
background-color: transparent;
width: 100%;
padding: 10px 10px 10px 0;
border-radius: 0;
border: none;
border-bottom: 1px solid rgba(0,0,0, 0.2);
font-size: 14px;
height: 42px;
outline: none;
}
.select-text:focus {
outline: none;
border-bottom: 1px solid rgba(0,0,0, 0);
outline: none;

}
.select .select-text {
appearance: none;
-webkit-appearance:none
}
.select:after {
position: absolute;
top: 18px;
right: 10px;
width: 0;
height: 0;
padding: 0;
content: '';
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid rgba(0, 0, 0, 0.12);
pointer-events: none;
}
.select-label {
color: rgba(0,0,0, 0.26);
font-size: 18px;
font-weight: normal;
position: absolute;
pointer-events: none;
left: 0;
top: 10px;
transition: 0.2s ease all;
}
.select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
color: #1a4362;
top: -13px;
transition: 0.2s ease all;
font-size: 14px;
}
.select-bar {
position: relative;
display: block;
/* width: 350px; */
}
.select-bar:before, .select-bar:after {
content: '';
height: 2px;
width: 0;
bottom: 1px;
position: absolute;
background: #1a4362;
transition: 0.2s ease all;
}
.select-bar:before {
left: 50%;
}
.select-bar:after {
right: 50%;
}
.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
width: 50%;
}
.select-highlight {
position: absolute;
height: 60%;
width: 100px;
top: 25%;
left: 0;
pointer-events: none;
opacity: 0.5;
}
/*MATERIAL CSS ENDS HERE*/ 
.checkboxfields,.radiofields {
margin-top: 10px;
}
/* CHECKBOX CSS STARTS HERE */
.md-checkbox {
  position: relative;
  margin: 1em 0;
  text-align: left;
  display: flex !important;
}
.md-checkbox.md-checkbox-inline {
  display: inline-block;
}
.md-checkbox label {
  cursor: pointer;
  display: inline;
  line-height: 1.25em;
  vertical-align: top;
  clear: both;
  padding-left: 1px;
}
.md-checkbox label:not(:empty) {
  padding-left: 10px;
    padding-right: 10px;
}
.md-checkbox label:before, .md-checkbox label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.md-checkbox label:before {
  width: 1.25em;
  height: 1.25em;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.54);
  border-radius: 0.125em;
  cursor: pointer;
  transition: background .3s;
}
.md-checkbox input[type="checkbox"] {
  outline: 0;
  visibility: hidden;
  width: 1.25em;
  margin: 0;
  display: block;
  float: left;
  font-size: inherit;
}
.md-checkbox input[type="checkbox"]:checked + label:before {
  background: #1a4362;
  border: none;
}
.md-checkbox input[type="checkbox"]:checked + label:after {
  transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
  width: 0.75em;
  height: 0.375em;
  border: 0.125em solid #fff;
  border-top-style: none;
  border-right-style: none;
}
.md-checkbox input[type="checkbox"]:disabled + label:before {
  border-color: rgba(0, 0, 0, 0.26);
}
.md-checkbox input[type="checkbox"]:disabled:checked + label:before {
  background: rgba(0, 0, 0, 0.26);
}

.md-checkbox input[type="checkbox"]:disabled + label{
  color: #ccc;
}
/* CHECKBOX CSS ENDS HERE */
/* RADIO BUTTON CSS STARTS HERE */
@keyframes ripple {
0% {
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
}
50% {
box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
}
100% {
box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
}
}
.md-radio {
margin: 5px 0;
}
.md-radio.md-radio-inline {
display: inline-block;
}
.md-radio input[type="radio"] {
display: none;
}
.md-radio input[type="radio"]:checked + label:before {
border-color: #1a4362;
animation: ripple 0.2s linear forwards;
}
.md-radio input[type="radio"]:disabled + label:before {
border-color: #ccc;
}
.md-radio input[type="radio"]:disabled + label{
color: #ccc;
pointer-events: none;
cursor: default;
}

.md-radio input[type="radio"]:disabled + label:after{
background:#ccc;
cursor: default;
}
.md-radio input[type="radio"]:checked + label:after {
transform: scale(1);
}
.md-radio label {
display: inline-block;
height: 20px;
position: relative;
padding: 0 30px;
margin-bottom: 0;
cursor: pointer;
vertical-align: bottom;
padding-right: 12px;
}
.md-radio label:before, .md-radio label:after {
position: absolute;
content: '';
border-radius: 50%;
transition: all .3s ease;
transition-property: transform, border-color;
}
.md-radio label:before {
left: 0;
top: 0;
width: 20px;
height: 20px;
border: 2px solid rgba(0, 0, 0, 0.54);
}
.md-radio label:after {
top: 5px;
left: 5px;
width: 10px;
height: 10px;
transform: scale(0);
background: #1a4362;
}
/* RADIO BUTTON CSS ENDS HERE */
/* TEXT AREA CSS STARTS HERE */
textarea:focus ~ label, textarea:valid ~ label {
color: #1a4362;
top: -1.45rem;
-webkit-transition: all 0.125s ease;
transition: all 0.125s ease;
}

.styled-input {
float: left;
width: 33.3333%;
margin: 2rem 0 1rem;
position: relative;
border-bottom: 1px solid #ccc;
}

.styled-input label {
color: #999;
padding-top: 0px;
position: absolute;
top: 0;
left: 0;
-webkit-transition: all 0.25s ease;
transition: all 0.25s ease;
pointer-events: none;
}

.styled-input.wide { width: 100%; }

textarea {
border: 0;
width: 100%;
}

textarea ~ span {
display: block;
width: 0;
height: 3px;
background: #1a4362;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all 0.125s ease;
transition: all 0.125s ease;
}

textarea:focus { outline: 0; }

textarea:focus ~ span {
width: 100%;
-webkit-transition: all 0.075s ease;
transition: all 0.075s ease;
}

textarea {
width: 100%;

}
/* TEXT AREA CSS ENDS HERE */
/* ACCORDION CSS STARTS HERE */
.panel {
border-width: 0 0 1px 0;
border-style: solid;
border-color: #fff;
background: none;
box-shadow: none;
}
.mt20{
  margin-top: 20px;
}

.panel:last-child {
border-bottom: none;
}

.panel-group > .panel:first-child .panel-heading {
border-radius: 4px 4px 0 0;
}

.panel-group .panel {
border-radius: 0;
}

.panel-group .panel + .panel {
margin-top: 0;
}

.panel-heading {
background-color: #1a4362;
border-radius: 0;
border: none;
color: #fff;
padding: 0;
}

.panel-title a {
display: block;
color: #fff;
padding: 15px;
position: relative;
font-size: 16px;
font-weight: 400;
text-decoration: none;
}

.panel-body {
background: #fff;
padding: 20px;
    border: 1px solid #afafaf;
}

.panel:last-child .panel-body {
border-radius: 0 0 4px 4px;
}

.panel:last-child .panel-heading {
border-radius: 0 0 4px 4px;
transition: border-radius 0.3s linear 0.2s;
}

.panel:last-child .panel-heading.active {
border-radius: 0;
transition: border-radius linear 0s;
}

.panel-heading a:before {
content: '\e146';
position: absolute;
font-family: 'Material Icons';
right: 5px;
top: 10px;
font-size: 24px;
transition: all 0.5s;
transform: scale(1);
}

.panel-heading.active a:before {
content: ' ';
transition: all 0.5s;
transform: scale(0);
}

#bs-collapse .panel-heading a:after {
content: "\f078";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #000;
font-size: 18px;
padding-right: 0.5em;
position: absolute;
top: 10px;
right: 0;
color:#fff;
}

#bs-collapse .panel-heading.active a:after {
content: '\e909';
transform: scale(1);
transition: all 0.5s;
}
/* #accordion rotate icon option */

#accordion .panel-heading a:before {
content: "\f077";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #000;
font-size: 18px;
padding-right: 0.5em;
position: absolute;
top: 10px;
right: 0;
color:#fff;
transform: rotate(0deg);
}

#accordion .panel-heading.active a:before {
transform: rotate(180deg);
transition: all 0.5s;
padding-left: 10px;
}
/* ACCORDION CSS ENDS HERE */
/* SELECT CSS STARTS HERE */
.select-text .drop-down-loc{
    margin: 0px 200px;
    background: #ffffff;
    padding: 10px 40px 30px 40px;
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);  
}
.drop-down-loc {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    /*background: #fff url(../img/downarrow.png) no-repeat right center !important;*/
    background-origin: content-box !important;
}
/* FILE UPLOAD CSS STARTS HERE */
.it input.form-control
{

border:none;
margin-bottom:0px;
border-radius: 0px;
border-bottom: 1px solid #ddd;
box-shadow: none;
}
.it .form-control:focus
{
border-color: #ff4d0d;
box-shadow: none;
outline: none;
}
.fileUpload {
position: relative;
overflow: hidden;
}
.fileUpload input.upload {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
.blueupload {
    background-color: #5f6265;
    border-color: #5f6265;
    color: #fff;
    border-radius: 0px;
    margin-top: 20px;
}
.blueupload:hover{
  color: #fff;
}
.fileuploadinput{
  border-radius: 0px !important;
  margin-top: 20px !important;
  outline: 0px;
}
/* FILE UPLOAD CSS ENDS HERE */  
/* TABS CSS STARTS HERE*/
.tile
{
  margin-top: 20px;
}

.nav-tabs
{
position:relative;
border:none!important;
background-color:#fff;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}
.nav-tabs li
{
margin:0px!important;
}
.nav-tabs li a
{
position:relative;
margin-right:0px!important;
padding: 15px 40px!important;
font-size:16px;
border:none!important;
color:#333;
}
.nav-tabs a:hover
{
background-color:#fff!important;
border:none;
}
.slider
{
display:inline-block;
width:30px;
height:4px;
border-radius:3px;
background-color:#1a4362!important;
position:absolute;
z-index:1200;
bottom:0;
transition:all .4s linear;

}
.nav-tabs .active
{
background-color:transparent!important;
border:none!important;
color:#1a4362!important;

} 
.tab-content>.tab-pane{
  border: 2px solid #e9ecef;
  height: 120px;
  padding: 20px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}
/* TABS CSS ENDS HERE*/
.fieldheading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
}
/* FIREFOX FOCUS ISSUE FIX */
button::-moz-focus-inner {
  border: 0 !important; 
}
a, a:visited, a:focus, a:active, a:hover{
  outline:0 none !important;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.form-control:focus {
	border-color: transparent !important; 
	box-shadow: none !important;
}