.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: 15px;
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: #612c91;
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;
-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;
margin-top: -30px;
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
}
.material input:focus ~ label,
.material input:valid ~ label {
-webkit-transform: scale(0.6);
transform: scale(0.6);
font-size: 20px;
color:#612c91;
}
.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.12);
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: #612c91;
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: #612c91;
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;
}
.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: #612c91;
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: 10px 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: #612c91;
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: #612c91;
}
/* RADIO BUTTON CSS ENDS HERE */
/* TEXT AREA CSS STARTS HERE */
textarea:focus ~ label, textarea:valid ~ label {
color: #612c91;
top: -2.25rem;
-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: 10px;
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: #612c91;
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;
}
.mt30{
margin-top:30px !important;
}
.inline-block{
display: inline-block;
}

.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: #612c91;
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(/assets/img/master/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: #612c91;
border-color: #612c91;
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;
background-color:#fff;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
border: 1px solid #dce3e6;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.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:#612c91!important;
position:absolute;
z-index:996;
bottom:0;
transition:all .4s linear;
}
.nav-tabs .active
{
background-color:transparent!important;
border:none!important;
color:#612c91!important;

} 
.tab-content>.tab-pane{
border: 2px solid #e9ecef;
height: 120px;
padding: 20px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border: 1px solid #dce3e6;
}
/* TABS CSS ENDS HERE*/
.fieldheading {
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
margin-top: 20px;
}


/* TABLE CSS STARTS HERE */
.tablecss,#example {
border: 1px solid #dee2e6;
border-radius: 5px;
}

table thead th {
vertical-align: middle !important;
border-bottom: 2px solid #eb4e3f !important;
}

table th {
border-top: none !important;
text-align: left;
}
.dataTables_paginate {
float: right;
margin-top: -25px !important;
margin-right: 12px !important;
}
.dataTables_paginate a{
color: #612c91;
margin: 3px;
padding: 4px 10px;
text-decoration: none;
cursor: pointer;
}
.datatablescroll {
max-height: 100% !important;
}
.paginate_button.current {
background: #612c91;
border: 1px solid #612c91;
color: #fff;
}
.dt-buttons{
float: right;
margin-top: -63px; 
}

.Reportservice-buttons{
float: right;
margin-top: -63px; 
}
.excelicon,.pdficon,.copyicon,.csvicon{
background-size: cover;
background: transparent;
border: 1px solid white;
cursor:pointer;
}
/* TABLE CSS ENDS HERE */

/* TOGGLE CSS STARTS HERE */
.toggle {
position: absolute;
top: 65%;
left: 25%;
width: 60px;
height: 30px;
border-radius: 100px;
background-color: #ddd;
margin: -10px -40px;
overflow: hidden;
box-shadow: inset 0 0 2px 1px rgba(0,0,0,.05);
}

.check {
position: absolute;
display: block;
cursor: pointer;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: 6;
}

.check:checked ~ .track {
box-shadow: inset 0 0 0 20px #eb4e3f;
}

.check:checked ~ .switch {
right: 2px;
left: 36px;
transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
transition-property: left, right;
transition-delay: .05s, 0s;
}

.switch {
position: absolute;
left: 2px;
top: 2px;
bottom: 2px;
right: 36px;
background-color: #fff;
border-radius: 36px;
z-index: 1;
transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
transition-property: left, right;
transition-delay: 0s, .05s;
box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.track {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
box-shadow: inset 0 0 0 2px rgba(0,0,0,.05);
border-radius: 40px;
}
/* TOGGLE CSS ENDS HERE */

/* MODAL CSS STARTS HERE */
.modalcss {
margin-left: -55px;
}
.modal-header{
float: left;
display: block;
background-color: #f1eff0;
color: #000;
}
.closemodal{
color:#000;
opacity: 0.8;
}
.closemodal:hover{
color:#000;
opacity: 0.8;
}
.modal-title{
    font-weight: 500;
}
.modal-footer button{
margin-top:0px;
}
.modal-content{
-webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
border:0;
}
/* MODAL CSS ENDS HERE */

/*BUTTON CSS STARTS HERE*/
.buttoncss{
margin-left: -55px;  
}
.buttoncss button{
margin-right: 20px;
}
.btncss {
text-align: center;
position: relative;
display: inline-block;
overflow: hidden;
width: 100%;
max-width: 175px;
height: 48px;
margin-top: 20px;
text-transform: uppercase;
border-radius: 4px;
font-size: 12px;
font-weight: 500;
cursor: pointer;
line-height: 46px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}

.btn_primary {
border: 1px solid #612c91;
color: #fff !important;
background: #612c91;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.btn_primary:hover {
border: 1px solid #612c91;
color: #000 !important;
background-color: transparent !important; 
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.btn_Scondary {
border: 1px solid #858484;
color: #858484 !important;
background-color: transparent; 
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.btn_Scondary:hover{
border: 1px solid #858484 !important;
color: #fff !important;
background: #858484 !important;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

    .btn_disable {
        border: 1px solid #dae0e5;
        color: #8c8c8c !important;
        background-color: #e1e1e1;
        transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
        cursor: not-allowed !important;
    } 



button:focus{
outline:0px;
}
/*BUTTON CSS ENDS HERE*/

/* SEARCH CSS */
.searchwrap {
margin: 10px 0px;
display: inline-block;
position: relative;
height: 60px;
float: right;
padding: 0;
margin-right: -80px;
margin-top: 9px;
}
.searchwrap input[type="text"] {
height: 49px;
font-size: 16px;
font-family: 'roboto','Segoe UI', calibri, sans-serif !important;
display: inline-block; 
border: none;
outline: none !important;
color: #555;
padding: 3px;
padding-right: 60px;
width: 0px;
position: absolute;
top: 0;
right: 0;
background: none;
z-index: 1;
transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
cursor: pointer;
padding-top: 14px;
}
.nozindex{
z-index: 0 !important; 
}
.searchwrap input[type="text"]:focus:hover {
border-bottom: 2px solid #6689a9;
}
.searchwrap input[type="text"]:focus {
width: 300px;
z-index: 1;
border-bottom: 2px solid #6689a9;
cursor: text;
}
.searchwrap input[type="submit"] {  
height:64px;
width: 40px;
display: inline-block;
color: #555;
float: right;
background: url("/assets/img/PwdMgmt/search_sidegreen.png") center center no-repeat;
text-indent: -10000px;
border: none;
position: absolute;
top: 0;
right: 0;
z-index: 0;
cursor: pointer;
transition: opacity .4s ease;
outline: none !important;
}
.searchwrap input[type="submit"]:hover {
opacity: 0.8;
}
.searchwrap input[type="text"]:focus:hover {
border-bottom: 2px solid #6689a9;
}

.searchwrap input[type="text"]:focus {
width: 300px;
z-index: 1;
border-bottom: 2px solid #6689a9;
cursor: text;
}
.searchwrap input[type="submit"] {  
height: 55px;
width: 40px;
display: inline-block;
color: #555;
float: right;
background: url("/assets/img/PwdMgmt/search_sidegreen.png") center center no-repeat;
text-indent: -10000px;
border: none;
position: absolute;
top: 0;
right: 0;
z-index: 0;
cursor: pointer;
transition: opacity .4s ease;
outline: none !important;
}
.searchwrap input[type="submit"]:hover {
opacity: 0.8;
}

@media screen and (min-width:1000px) and (max-width:1250px){
.searchwrap{
margin-right: -20px;
} 
}

@media screen and (min-width:1300px) and (max-width:1500px){
.searchwrap{
margin-right: -100px;
} 
}

@media screen  and (min-width:1500px){
.searchwrap{
margin-right: -234px;
}
}

@media screen  and (max-width:768px){
.searchwrap{
margin-right: 45px;
}
}
/* SEARCH CSS */
.right {
float: right;
}
.mainfilter {
padding-top: 19px;
}
.datatableicons {
padding: 0px 7px;
}
.dataheading{
display: inline-block;
margin-top: 28px;
}


/* FIREFOX FOCUS ISSUE FIX */
button::-moz-focus-inner {
border: 0 !important; 
}
a, a:visited, a:focus, a:active, a:hover{
outline:0 none !important;
cursor: pointer;
}
select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}

.form-control:focus {
border-color: transparent !important; 
box-shadow: none !important;
}

@media screen and (max-width: 1025px) {
.nav-tabs li a {
padding: 15px 20px!important;
}

}

.mtm35{
    margin-top: 50px;
}