.form-action-btn {
    display: inline;
}

.form-control-select {
    height: max-content !important;
}

.table-th {
    text-align: right !important;
}

.main-header {
    margin-bottom: 0px !important;
    /* border-bottom: 25px solid #f4f6f9 !important;  */
}

.form-span-error {
    color:red;
    font-size:11px;
}

/* tables column tooltip */

a.tooltip {outline:none; }
a.tooltip strong {line-height:30px;}
a.tooltip:hover {text-decoration:none;} 
a.tooltip span {
    z-index:10;display:none; padding:14px 20px;
    margin-top:-30px; margin-left:28px;
    width:300px; line-height:16px;
}
a.tooltip:hover span{
    display:inline; position:absolute; color:#111;
    border:1px solid #DCA; background:#fffAF0;}
.callout {z-index:20;position:absolute;top:30px;border:0;left:-12px;}
    
/*CSS3 extras*/
a.tooltip span
{
    border-radius:4px;
    box-shadow: 5px 5px 8px #CCC;
}


tr .spnTooltip {
    z-index:10;
    display:none;
    padding:14px 20px;
    margin-top:-10px;
    margin-right:-100px;
    width:300px;
    line-height:16px;
}
/* td:hover .spnTooltip{
    display:inline; 
    position:absolute; 
    color:#111;
    border:1px solid #cdcfd3;
    border-radius: 5px;
    background:#f4f6f9;
} */

tr .spnDetails {
    height: 18px;
    width: 140px;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin: 0 5px 0 5px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
}

tr .copyTooltip {
    float: left;
}

.callout {
    z-index:20;
    position:absolute;
    top:30px;
    border:0;
    left:-12px;
}

/* Multi Step Form  */
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);



/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin: 30px 0px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ee0979;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #ee0979;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}

#msform .action-button-previous {
    width: 100px;
    background: #ee0979;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

#msform .action-button-next {
    width: 100px;
    background: #ee0979;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    pointer-events: none;
}

#msform .action-button-next:hover, #msform .action-button-next:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #ee0979;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}


/******************* anchor button ********************/
.button {
    display: block;
    width: 100px;
    height: 30px;
    background: #92c8ed;
    padding: 6px;
    text-align: center;
    border-radius: 2px;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    line-height: 11px;
    text-decoration: none !important;
}

/***************** transparent button ********************/

.button-transparent {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}

.notactive {
    pointer-events: none;
    cursor: default;
    background-color: #a79494 !important;
    color: black !important;
    border: none !important;
}

.jq-validation-error {
    color: red;
}

.jq-validation-valid {
    color: green;
}

.uppy-Dashboard-inner {
    height: 350px !important;
    margin: 0 auto !important;
}

.swal2-icon.swal2-warning {
    font-size: small !important;
}

.swal2-icon-show {
    font-size: small !important;
}


/******************** list using div with table style ********************/

.list-table {
    text-align: center;
    margin: 10% auto 0;
    border-collapse: separate;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.list_table_cell {
    /* padding: 5px 0px; */
    height: 100%;
}

.list_table_row:nth-child(even){
    background-color:  #f9f9f9;
    border-bottom: 1px dashed #f4f4f4;
}

.list_table_header_row {
    /* border-bottom: #ccc 1px solid;
    border-top: #ccc 1px solid;
    background: #bdbdbd;
    color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 700; */
    text-align: center;
    font-weight: 700 !important;
    font-size: 14px !important;
    color:#a1a5b7;
    padding: 10px 0;
}

.list_table_header{
    padding: 0px !important;
}

.list_table_row > .list_table_small > .list_table_cell:nth-child(odd) {
    display: none;
    background: #bdbdbd;
    color: #e5e5e5;
 
}
  
.list_table_row_me > .list_table_small_me > .list_table_cell_me {
    /* margin-top: 3px; */
    /* margin-bottom: 3px; */
    color: #5b5b5b;
    /* border-bottom: #ccc 1px solid; */
}

.list_table_row > .list_table_small {
    padding: 5px 5px;
}

.list_info_table > .list_table_row{
    background-color: #d6eaf8;
}

.fa-bars-a-parent {
    display: none;
}

@media screen and (max-width: 650px) {
    
    .list_table_header_row{
        display: none;
    }

    .list_table_small {
        display: flex;
    }
   
    .list_table_row > .list_table_small > .list_table_cell:nth-child(odd) {
        display: block;
        min-height: 30px;
        border-bottom: 1px solid #fff;
    }

    .list_table_row > .list_table_small > .list_table_cell:nth-child(even) {
        border-bottom: 1px solid #ccc;
        align-content: center;
    }

    .list_table_row > .list_table_small > .list_info_table_cell {
        background: #aed6f1  !important;
        color:  #21618c !important;
    }

    .list_info_table_title {
        display: block !important;
    }

    .list_table_row > .list_table_small {
        padding: 0px;
    }

    
}

div .spnTooltip {
    z-index:10;
    display:none;
    padding:5px;
    /* margin-top:-5px; */
    margin-left:-10px;
    min-width:200px;
    max-width:400px;
    line-height:16px;
}
/* td:hover .spnTooltip{
    display:inline; 
    position:absolute; 
    color:#111;
    border:1px solid #cdcfd3;
    border-radius: 5px;
    background:#f4f6f9;
} */

div .spnDetails {
    /* height: 18px; */
    /* width: 140px; */
    padding: 0;
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin: 0 5px 0 5px;
    /* text-align: center; */
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
}

/******************** list using div with table style ********************/
.list-table {
    text-align: center;
    margin: 10% auto 0;
    border-collapse: separate;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.list_table_row{
   
    /* margin-top: 5px; */
    background: white;
    /* border-radius: 0 0.5rem 0.5rem 0.5rem; */
    counter-increment: gradient-counter;
    min-height: 3rem;
    /* padding: 1rem 1rem 1rem 3rem; */
    position: relative;
    /* box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05); */
    padding: 0px !important;
    margin: 0px !important;
    text-align: center;
    font-size: 13px;
    
}

.list_table_cell {
    /* padding: 5px 0px; */
    height: 100%;
}

.list_table_row:nth-child(even){
    background-color:  #f9f9f9;
    border-bottom: 1px dashed #f4f4f4;
}

.list_table_header_row {
    /* border-bottom: #ccc 1px solid;
    border-top: #ccc 1px solid;
    background: #bdbdbd;
    color: #e5e5e5;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 700; */
    margin: 0px !important;
    padding: 0px !important;
    background: white;
    /* border-radius: 0 0.5rem 0.5rem 0.5rem; */
    counter-increment: gradient-counter;
    margin-top: 1rem;
    min-height: 3rem;
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
    text-align: center;
    /* box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05); */
}
/* .list_table_row > .list_table_small > .list_table_cell:nth-child(odd) {
    display: none;
    background: #bdbdbd;
    color: #e5e5e5;
} */
  
.list_table_row_me > .list_table_small_me > .list_table_cell_me {
    /* margin-top: 3px; */
    /* margin-bottom: 3px; */
    color: #5b5b5b;
    /* border-bottom: #ccc 1px solid; */
}

.list_table_row > .list_table_small {
    padding: 5px 5px;
    align-content: center;
    display: grid;
}

.list_info_table > .list_table_row{
    background-color: #d6eaf8;
}


.required:after {
    content:" *";
    color: red;
}

.transparent-button {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}


/*************** input with font awesome inside it **************/


.input-container-for-input-with-font-awesome {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.icon-font-awesome {
    padding: 5px;
    background: dodgerblue;
    color: white;
    min-width: 50px;
    text-align: center;
}

.input-with-font-awesome {
    width: 100%;
    padding: 10px;
    outline: none;
}
  
.list-icon:hover {
    color: #D35400 !important;
}

.list-icon {
    font-size: 18px;
    color: dimgray;
}

.refferer {
    text-align: left;
}

.input-left-text-align {
    text-align: left;
}
.input-left-text-align::placeholder {
    text-align: right;
}
/** align element of anchor tag at center **/
.anchor-with-icon {
    border: 1px solid grey;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}