.text-right.text-right {
    text-align: right;
}
input::-webkit-input-placeholder ,textarea::placeholder{ /* Edge */
font-weight: 400;
}

input:-ms-input-placeholder ,textarea::placeholder{ /* Internet Explorer 10-11 */
font-weight: 400;
}

input::placeholder, textarea::placeholder {
font-weight: 400;
}
.p-right{
    padding-right: 30px;
}
.no-wrap.no-wrap{
    white-space: nowrap;
}
.bg-transparent.bg-transparent{
    background: transparent !important;
    border: 0;
}
.flex-row,
.flex-column,
.flex-center,
.flex-row-space-bw-align-center,
.flex-row-space-bw-align-start,
.flex-column-space-bw-align-start,
.flex-row-all-center,
.flex-row-space-around-align-center,
.flex-row-space-bw-align-stretch,
.justify-bw-align-start{
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
}

.flex-row,
.flex-row-space-bw-align-stretch,
.flex-row-justify-around-align-center,
.flex-row-all-center,
.flex-row-space-bw-align-center,
.flex-row-space-bw-align-start {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-space-bw-align-stretch,
.flex-row-space-bw-align-center,
.flex-row-space-bw-align-start,
.flex-column-space-bw-align-start,
.justify-bw-align-start  {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-row-space-bw-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.flex-row-justify-around-align-center {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-row-all-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-row-space-bw-align-center {
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}

.flex-row-space-bw-align-start {
 -webkit-box-align: start;
 -ms-flex-align: start;
 align-items: flex-start;
}

.flex-column,
.flex-column-space-bw-align-start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-space-bw-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.justify-bw-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

::-webkit-input-placeholder {
    color: #7F8FA4;
    font-family:'proxima-nova';
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

::-moz-placeholder {
    color: #7F8FA4;
    font-family:'proxima-nova';
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

:-ms-input-placeholder {
    color: #7F8FA4;
    font-family:'proxima-nova';
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

:-moz-placeholder {
    color: #7F8FA4;
    font-family:'proxima-nova';
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

/* custom checkbox */
.custom-checkbox.custom-checkbox {
    width: 15px;
    height: 15px;
    position: relative;
    margin-left: 0;
}
.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
  position: absolute;
  margin: 0;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
  left: 0;
}
.custom-checkbox [type="checkbox"]:not(:checked) + i,
.custom-checkbox [type="checkbox"]:checked + i {
  cursor: pointer;
}

/* checkbox aspect */
.custom-checkbox [type="checkbox"]:not(:checked) + i:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../images/checkbox.svg");
}

.custom-checkbox [type="checkbox"]:checked + i:before {
    background: url("../images/checkbox-checked.svg");
}

/* checked mark aspect */
.custom-checkbox [type="checkbox"]:not(:checked) + i:after,
.custom-checkbox [type="checkbox"]:checked + i:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0px;
    line-height: 0.8;
    color: #09ad7e;
    transition: all .2s;
}

.custom-checkbox [type="checkbox"]:checked + i:after {
    height: 15px;
    width: 15px;
    background: center / 100% no-repeat url(../images/checkbox-checked.svg);
}
.eq-report .custom-checkbox [type="checkbox"]:checked + i:after {
    background: center / 100% no-repeat url(../images/checkbox-checked-white.svg);
}
/* checked mark aspect changes */
.custom-checkbox [type="checkbox"]:not(:checked) + i:after {
  opacity: 0;
  transform: scale(0);
}
.custom-checkbox [type="checkbox"]:checked + i:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
.custom-checkbox [type="checkbox"]:disabled:not(:checked) + i:before,
.custom-checkbox [type="checkbox"]:disabled:checked + i:before {
    box-shadow: none;
    border-color: transparent;
    background-color: transparent;
}
.custom-checkbox [type="checkbox"]:disabled:checked + i:after {
    color: #999;
}
.custom-checkbox [type="checkbox"]:disabled + i {
    color: #aaa;
}

.custom-checkbox [type="checkbox"]:checked:focus + i:before,
.custom-checkbox [type="checkbox"]:not(:checked):focus + i:before {
   /* border: 2px solid #7F8FA4;*/
}

/* custom select */
select {
    font-family:'proxima-nova';
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    color: #7F8FA4;
    line-height: 26px;
    padding: 0 30px 0 10px;
    height: 26px;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #E6EAEE;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #E6EAEE;
    background-image: url(../images/down-dropdown.svg);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
select.ap-none {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    color: #262935;
}

select::-ms-expand {
    display: none;
}

select:hover {
    border-color: #E6EAEE;
}

select:focus {
    border-color: #E6EAEE;
    color: #7F8FA4;
    outline: none;
}

select option {
    font-weight:normal;
}


.form-field label {
    font-size: 14px;
    line-height: 14px;
    width: 195px;
}
.label-align-right label {
    text-align: right;
    padding-right: 30px;
}
.checkbox-outer {
    display: flex;
    align-items: center;
}
.checkbox-outer.have-attr {
    width: 100%;
    align-items: flex-start;
}
.form-checkbox.two-col .checkbox-inner {
    flex-basis: auto;
}

.checkbox-col {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.checkbox-col label {
    margin-left: 15px;
    width: auto !important;
    padding-right: 10px;
}
.form-checkbox.two-col {
    max-width: 400px;
    justify-content: space-between;
    margin-bottom: 0;
}
.form-checkbox.two-col .checkbox-outer{
    margin-bottom: 12px;
}
.form-field input, .form-field select, .form-field textarea {
    background-color: #E6EAEE;
    border: 0;
    flex-grow: 2;
    padding: 0px 10px;
    height: 25px;
    color: #262935;
    box-shadow: none;
    outline: none;
    width: 100%;
    max-width: 196px;
    border-radius: 2px;
}
div#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
}

div#loader:after {
    content: "";
    position: fixed;
    width: 100px;
    height: 100px;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    background: url(../images/loader.png)center;
    z-index: 99999999999;
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}
 
.button-block.right .form-checkbox {
    justify-content: flex-end;
}
.button-green {
    font-size: 16px;
    line-height: 18px;
    padding: 1px 18px;
    background: #3EB643;
    border-radius: 2px;
    border: 0;
    color: #fff;
    cursor: pointer;
}
.button-block.right.w-space {
    margin-top: 80px;
    padding: 0 15px 15px 0;
}
form .button-block.right.no-space{
    margin-top: 0;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

.form-field.calander-icon {
    position: relative;
    max-width: 350px;
}

.cal-icon {
    position: absolute;
    right: 0px;
    width: 15px;
    height: 15px;
    background: url(../images/calander-icon.svg);
}
.button-block.right .form-checkbox label {
    width: auto;
}
.phone-field .input-code {
    max-width: 30px !important;
    flex-grow: 0;
    padding: 0 3px;
    font-family: 'proxima-nova';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #7F8FA4;
    margin-right: 6px;
}
.form-field textarea{
    height: auto;
    min-height: 67px;
    resize: vertical;
    padding: 5px 23px;
}

.form-field {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

form .button-block {
       margin-top: 80px;
    text-align: center;
    padding-left: 120px;
}
form .button-block.right {
    text-align: right;
}
.section-header-top .label-align-right label {
    width: auto;
}

.scroll-table.default .tbl-header th {
    color: #7F8FA4;
    background: #fff;
    padding: 17px 0;
}

.scroll-table.table.default {
    border: 0;
}

.scroll-table.default .tbl-content td,
.tbl-content .eq-report td.active.active {
    border: 0;
    background: #e6eaee;
}
.scroll-table.default tr:nth-child(odd) td, .tbl-content .eq-report tr:nth-child(odd) td.active.active{
    background: #fff;
}

.scroll-table.default .tbl-content tr {
    border: 0;
}

.scroll-table.default .tbl-content td:last-child:before, 
.scroll-table.default .tbl-header th:last-child:before {
    display: none;
}
.scroll-table.default .tbl-header th{
    border-bottom: 1px solid #E6EAEE;
}
.section-header-top .button-block.right {
    padding-left: 100px;
}
.active select.ap-none {
    color: #fff;
}
.active select.ap-none option {
    color: #262935;
}
 form .submit-btn,.button-primary, .button-secondary, .btn {
    background: #ED0000;
    border: 0;
    color: #fff;    
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    padding: 3px 27px 4px 27px;
    cursor: pointer;
    min-width: 105px;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    text-align: center;
}

.btn {
    line-height: 1;
    padding: 7px 31px;
    display: inline-block;
}

.submit-btn, .button-secondary, 
[class^="button-"], [class^="button-"]{
    margin-left: 20px;
} 
.button-secondary, .submit-btn,
.button-block .button-secondary, .button-secondary {
    margin-left: 20px;
}
.button-secondary {
    background: #E6EAEE;
    color: #ED0000;
}
.btn-grey {
    color: #ED0000;
    background: #E6EAEE;
}
.mb-10.mb-10 {
    margin-bottom: 10px;
}
.text-left.text-left {
    text-align: left;
}
.mb-50.mb-50{
    margin-bottom: 50px;
}
.breadcrumb {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 22px;
    color: #7F8FA4;
    margin-top: -20px;
    margin-bottom: 20px;
    padding-left: 20px;
}
.no-padding.no-padding{
    padding: 0;
}
.card {
    border: 1px solid #E6EAEE;
    background: #fff;
    border-radius: 3px;
}

.link {
    color: #0F9AFF;
}

.w-60 {
    width: 60%;
}

.w-55 {
    width: 55%;
}

.w-40 {
    width: 40%;
}

.green {
    background: #50E3C2;
}

.color--green {
    color:#50E3C2;
}

.voilet {
    background: #CED2D6;
}

.color--red {
    color: #ED0000;
}

.color--grey {
    color: #7F8FA4;
}

.color--blue {
    color:#0F9AFF;
}

.arrow--blue-link {
    color:#0F9AFF;
    position: relative;
    padding-right: 22px;
    text-transform: capitalize;
}

.arrow--blue-link::after {
    position: absolute;
    content: "";
    right: 0;
    top: 2px;
    width: 12px;
    height: 14px;
    background: center / contain no-repeat url(../images/arrow-right.svg);
}

button:focus {
    outline: none;
}
.centered{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media all and (max-width:  767px){


    .form-field > label, .label-align-right > label,
    .clientSetup.clientSetup .form-field > label,
    .checkbox-outer.checkbox-outer.have-attr > label,
    .label-align-right .form-field > label {
        margin-bottom: 7px;
        padding-right: 0;
        text-align: left;
        width: 100%;
    }
    .clientSetup .form-field label{
        text-align: left;
    }
    .form-field.form-checkbox label {
        width: auto;
        margin-right: 10px;
    }
    .form-field.form-checkbox.two-col label {
        width: 150px;
        margin-right: 0;
    }
    .breadcrumb{
        padding-left: 0;
    }

    form .button-block.right {
        padding-left: 0;
        margin-top: 30px;

    }

    .form-field, .checkbox-outer.have-attr {
        flex-wrap: wrap;
    }
}

@media all and (max-width: 600px){
    .form-field.form-checkbox.two-col .have-attr label{
        width: 100%;
    }
}

/*transition css*/

.sidebar, .sidebar .sidebar__header,
.sidebar .sidebar__content, .sidebar__footer,
header, .content-area{
transition: all .3s;
}
.sidebar .sidebar__header{
    height: 70px;
}
.sidebar.sidebar .sidebar__content{
    overflow: hidden;
    overflow-y: auto;
}
.sidebar ul{
    width: 200px;
}
.sidebar .criteria-details li.open > a {
    color: #ed0000;
}
.sidebar .criteria-details li li {
    margin-bottom: 5px;
}

.sidebar .criteria-details li li a {
    margin-bottom: 0;
}