/* list table Starts here */

.list-table {
    width: 100%;
    background: #fff;
    margin: 0px auto;
    padding: 12px 0px;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
}

.list-table>li {
    width: calc(100% - 1%);
    max-width: calc(100% - 1%);
    flex-basis: calc(100% / 1 - 1%);
    padding-bottom: 3px;
    border-bottom: 1px solid #4287c7;
    margin: 0px 0.5%;
}

.list-table.no-border>li {
    border-bottom: 1px solid transparent;
}

.list-table.no-border>li .btn {
    margin-top: 17px;
}

.list-table.column-2>li {
    max-width: calc(100% / 2 - 1%);
    flex-basis: calc(100% / 2 - 1%);
}

.list-table.column-3>li {
    max-width: calc(100% / 3 - 1%);
    flex-basis: calc(100% / 3 - 1%);
}

.list-table.column-4>li {
    max-width: calc(100% / 4 - 1%);
    flex-basis: calc(100% / 4 - 1%);
}

.list-table.column-5>li {
    max-width: calc(100% / 5 - 1%);
    flex-basis: calc(100% / 5 - 1%);
}

.list-table.column-6>li {
    max-width: calc(100% / 6 - 1.01%);
    flex-basis: calc(100% / 6 - 1.01%);
}

.list-table.column-7>li {
    max-width: calc(100% / 7 - 1.01%);
    flex-basis: calc(100% / 7 - 1.01%);
}

.list-table.column-8>li {
    max-width: calc(100% / 8 - 1%);
    flex-basis: calc(100% / 8 - 1%);
}

.list-table>li>div:not([class]):first-child {
    font-size: 12px;
}

.list-table>li>div:not([class]):last-child {
    margin-top: 10px;
    color: #758999;
    font-size: medium;
    font-family: 'semibold';
}

.list-table.with-help>li>div .help {
    min-height: 18px;
    display: block;
}

.list-table>li>div {
    min-height: 0px;
    margin-top: 6px;
    height: auto;
}

.list-table>li>div .help {
    min-height: 0px;
}

.text-text {
    position: relative;
    overflow: hidden;
    min-height: 0px;
    padding: 0px;
}

.text-text>label {
    font-size: 12px;
    color: #283A47;
    font-weight: normal;
}

.text-text>span.value {
    display: block;
    padding: 6px 0px;
    font-size: 12px;
    color: #283A47;
    font-family: 'proxima-nova-semibold';
}

.text-text>span.help {
    min-height: 18px;
    font-size: 12px;
    display: block;
}


/* list table ends here */

input::-ms-clear {
    display: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    display: none;
}

.text-field>span,
.text-field>label {
    font-size: 12px;
    display: block;
}

.text-field>input.input-suffix+i::after {
    content: attr(data-suffix);
    position: absolute;
    left: -20px;
    top: -1px;
    pointer-events: none;
}

.text-field.error>input.input-suffix,
.text-field.success>input.input-suffix,
.text-field>input.input-suffix {
    padding-right: 50px;
}

.text-field>input {
    width: 100%;
    font-size: 14px;
    padding: 6px;
    border: 1px solid #becfe0;
    color: #8a8a8a;
    transition: 0.25s all;
    padding-right: 30px;
    height: 36px;
}

.text-field>input:active,
.text-field>input:focus {
    border: 1px solid #428BCA;
    background-color: #FFFFFF;
    outline: none;
}

.text-field>input:active,
.text-field>input:focus,
.text-field.error>input,
.text-field.success>input {
    color: #2E4251;
}

.text-field {
    position: relative;
    overflow: hidden;
}

.text-field>input:active+i,
.text-field>input:focus+i {
    content: "\e93a";
    opacity: 1;
    color: #597181;
}

.text-field.success>i.ewm-calendar-small:before,
.text-field>i.ewm-calendar-small:hover:before,
.text-field>i.ewm-cancel:hover:before {
    content: "\e917";
    color: #597181;
    transition: 0.25s all ease;
    opacity: 1;
}

.text-field>i:hover {
    opacity: 0.9;
}

.text-field>i {
    position: absolute;
    top: 26px;
    right: 8px;
    opacity: 0;
    transition: 0.25s all ease;
    font-size: 18px;
    cursor: pointer;
}

.text-field.no-label>i {
    top: 10px;
}

.text-field.table-filter>i {
    top: 12px;
}

.text-field.date-picker input,
.text-field.success input,
.text-field.error input {
    padding-right: 30px;
}

.text-field.date-picker>i,
.text-field.success>i,
.text-field.error>i {
    color: #597181;
    opacity: 1;
}

.text-field.readonly {
    pointer-events: none;
}

.text-field.date-picker>input:active+i:before,
.text-field.date-picker>input:focus+i:before,
.text-field.success>input:active+i:before,
.text-field.success>input:focus+i:before,
.text-field.error>input:active+i:before,
.text-field.error>input:focus+i:before {
    content: "\e917";
}

.text-field.readonly>i {
    opacity: 0;
}

.text-field.readonly>.help {
    visibility: hidden;
}

.text-field.error>span,
.text-field.error>i:before {
    content: "\e93a";
    color: #D0021B;
}

.text-field.readonly>input,
.text-field.disabled>input {
    background: #EFF1F3;
    border: 1px solid #DFE4E7;
    border-radius: 1px;
}

.text-field.readonly,
.text-field.disabled {
    color: #597181;
    pointer-events: none;
}

.text-area>textarea {
    background: #FFFFFF;
    border: 1px solid #becfe0;
    border-radius: 1px;
    width: 100%;
    font-size: 16px;
    color: #2E4251;
    padding: 6px;
}


/* single select dropdown starts here */

.dropdown-container {
    background: #fff;
    border: 1px solid #D3D9Df;
}

.dropdown-list {
    min-width: 95px;
}

.dropdown-list.small {
    max-width: 100px;
}


/*
    NO    |  Column size
    --------------------------------------------------------------
    Class |  std  | xxx_narrow  | xx_narrow | x_narrow | narrow | wide   | x_wide  | .xx_wide     
    Size  |  100px | 30px        | 50px      | 70px     | 85px  | 135px  | 160px   | 200px
*/

.dropdown-list.wide {
    width: 160px;
}

.dropdown-list.xx_wide {
    width: 200px;
}

.dropdown-list {
    transition: 1s all ease-in-out;
    position: relative;
}

.dropdown-list.readonly {
    opacity: 0.5;
}

.group-by>label,
.dropdown-list>span,
label {
    font-size: 12px;
    display: block;
    margin: 0px;
}

.btn-light:active,
.btn-light:hover,
.btn-light {
    border: 0px;
    color: #395f83;
    background: transparent;
}

.dropdown-list>span.value {
    display: block;
    color: #2E4251;
    background: #e8f1f9;
    padding: 6px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #becfe0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 24px;
    height: 36px;
    line-height: 22px;
    padding-left: 12px;
    font-size: 14px;
}

.groupby.dropdown-list>span.value {
    color: #2E4251;
    background: #dfe0e1;
}

.dropdown-list.disabled>label,
.dropdown-list.disabled>span {
    opacity: 0.6;
    pointer-events: none;
}

.dropdown-list>span.value>span {
    padding: 2px;
    background: #428bca;
    color: #fff;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-width: 24px;
    display: inline-block;
    position: relative;
    top: 0px;
    line-height: 16px;
    font-size: 13px;
}

.dropdown-list>span.value:before {
    font-family: 'ewm-icon' !important;
    content: '\e90e';
    position: absolute;
    right: 4px;
    color: #395f83;
    font-size: 12px;
    margin: 0px 5px 0px 0px;
}

.dropdown-list.success>span.value:after,
.dropdown-list.error>span.value:after {
    font-family: 'ewm-icon' !important;
    position: absolute;
    right: 7px;
    margin: 0px 24px 0px 0px;
    font-size: 18px;
}

.error .help {
    font-size: 10px;
    color: #D0021B;
    display: block;
}

.error input,
.dropdown-list.error>span.value {
    border-color: #dc3545;
}

.dropdown-list.error>span.value:after {
    content: '\e93a';
    color: #D0021B;
}


/* .dropdown-list.success>span.value:after {
    content: '\e933';
    color: #7DBE31;
} */

.dropdown-list.success>span.value:after {
    content: '';
    color: #7DBE31;
}

.dropdown-container>input:focus {
    outline: none;
}

.dropdown-container>input {
    display: block;
    width: 100%;
    padding: 6px 30px 6px 12px;
    border: 0px;
    border-bottom: 1px solid #D3D9Df;
    min-height: 36px;
    box-sizing: border-box !important;
    border-radius: 5px 5px 0px 0px;
}

.dropdown-container.no-search:before {
    content: none;
}

.dropdown-container.warning:before,
.dropdown-container:before {
    font-family: 'ewm-icon' !important;
    content: '\e94d';
    position: absolute;
    right: 4px;
    margin: 8px 2%;
    color: #AEB8C3;
}

.dropdown-container.warning:before {
    content: '\e963';
    color: #FAA51F;
}

.text-field>span,
.dropdown-list>span.help {
    min-height: 16px;
}

.dropdown-list.groupby label+i {
    position: relative;
    padding: 10px 9px;
    background: #74787c;
    float: left;
    color: #fff;
}

.dropdown-container {
    position: absolute;
    top: 18px;
    width: 100%;
    display: none;
    z-index: 20;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.19);
    max-width: 570px;
    border-radius: 2px;
}

.dropdown-list.no-label .dropdown-container {
    top: 0px;
}

.dropdown-btn-group>button,
.dropdown-container>button {
    margin: 4px 2%;
    background: #fff;
    border: 0px;
    text-align: left;
    transition: 0.25s all;
    padding: 6px;
    border-radius: 2px;
    cursor: pointer;
}

.dropdown-btn-group>button.done {
    float: right;
}

.dropdown-list .dropdown-container>button {
    display: block;
    width: 96%;
}

.dropdown-btn-group>button:active,
.dropdown-container>button:active {
    background: #2E4251;
}

.dropdown-btn-group>button:hover,
.dropdown-container>button:hover {
    background: #2a6496;
    color: #fff;
}

.dropdown-container>ul {
    margin: 0px;
    list-style-type: none;
    padding: 0px;
    border-bottom: 1px solid #D3D9Df;
    overflow-y: scroll;
    max-height: 250px !important;
}

table .dropdown-list .value {
    background: #fff;
    min-width: 0px;
}

table .dropdown-list * {
    font-weight: 100;
}

.dropdown-container>ul.multiSelect {
    padding: 12px 0 10px 0;
}

.dropdown-container>ul.multiSelect>li.active,
.dropdown-container>ul.multiSelect>li:hover {
    background: #fff;
}

.dropdown-container>ul>li.active,
.dropdown-container>ul>li:hover {
    background: #2a6496;
    color: #fff;
}

.dropdown-container>ul>li {
    margin: 6px;
    padding: 6px;
    transition: 0.25s all;
    border-radius: 2px;
    word-wrap: break-word;
    font-size: 14px;
    cursor: pointer;
    display: block;
}

.dropdown-container>ul.multiSelect>li {
    min-height: 28px;
    padding: 0px 6px;
    box-sizing: border-box;
}

.dropdown-container>ul.multiSelect>li>.checkbox span:after {
    content: none;
}

.dropdown-container>ul.multiSelect>li {
    padding: 0px;
    margin: 0px;
}

.dropdown-container>ul.multiSelect>li>.checkbox {
    float: left;
}

.dropdown-container>ul.multiSelect>li>.checkbox span::before {
    position: absolute;
    top: -2px;
    left: 0px;
}

.dropdown-container>ul.multiSelect>li>.checkbox span.label-text {
    padding-left: 24px;
    position: relative;
}

.dropdown-container>ul>li>label {
    width: 100%;
}

.dropdown-btn-group>.select-all {
    text-align: center;
    margin-left: 6px;
    margin-top: 6px;
    padding-bottom: 5px;
    padding-right: 6px;
    border-radius: 1px;
    border: 1px solid transparent;
    float: left;
}

.dropdown-btn-group .indeterminate>input[type="checkbox"]+.label-text:before,
.indeterminate>input[type="checkbox"]:checked+.label-text:before {
    content: "\e904";
    color: #428BCA;
    background: transparent;
}

.label-required::after,
.text-area.required label::after,
.dropdown-list.required:not(.no-label)>label::after,
.text-field.required label::after {
    content: ' *';
    color: red;
}

.dropdown-menu {
    font-size: 14px;
}

.dropdown-item.active,
.dropdown-item:focus,
.dropdown-item:hover {
    background: #428ace;
    color: #fff;
}

.link {
    text-decoration: underline;
    cursor: pointer;
}
.child-account-dropdown>.dropdown-list>.dropdown-container{
   width:max-content;
	max-width:200%;
	top:0px;
	min-width:100%;
	z-index: 2000;
	text-align: left;
}
.child-account-dropdown>.dropdown-list>span.value,.dropdown-container>ul>li{
    font-size: 12px;
}
.child-account-dropdown>.dropdown-list>.dropdown-container>input
{
    text-align: left !important;
}
.child-account-dropdown>.dropdown-list>span.value
{    
	border: 1px solid #597181;
	background: #fff;
}
@media only screen and (max-width: 820px) {
    .child-account-dropdown>.dropdown-list {
        max-width: 93%;
    }
    
 .child-account-dropdown>.dropdown-list>.dropdown-container > input {
    display:block;
  }
}
/* single select dropdown ends here */


/* Radio */
 
.radio>.label-text {
    margin: 6px 24px 6px;
    line-height: 16px;
    font-size: 16px;
}

.radio>input[type="radio"]+.label-text:before {
    content: " ";
    position: absolute;
    left: 0px;
    height: 14px;
    width: 14px;
    background: transparent;
    color: transparent;
    border-radius: 50%;
    padding: 2px;
    line-height: 0;
    border: 1.5px solid #fff;
    box-shadow: 0px 0px 0px 2px rgb(148, 163, 174);
}

.radio>input[type="radio"]:checked+.label-text:before {
    background: #428BCA;
}

.radio.readonly>input[type="radio"]:checked+.label-text:before,
.radio.disabled>input[type="radio"]:checked+.label-text:before {
    background: #C6DCEF;
    box-shadow: 0px 0px 0px 2px #D3D9Df;
}

.radio.readonly>input[type="radio"]+.label-text:before,
.radio.disabled>input[type="radio"]+.label-text:before {
    background: transparent;
    box-shadow: 0px 0px 0px 2px #D3D9Df;
}


/* radio button switch */


/* check box and radio button */

label.checkbox {
    position: relative;
    cursor: pointer;
    color: #2E4251;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:focus {
    outline: 0px;
}

.checkbox>input[type="checkbox"],
.radio>input[type="radio"] {
    position: absolute;
    visibility: hidden;
    top: 10px;
}

.checkbox,
.checkbox-switch,
.radio {
    position: relative;
    transition: 0.25s all;
    display: inline-block;
}

.label-text:after {
    transition: 0.25s all;
}

.checkbox-group .help,
.radio-group .help {
    font-size: 12px;
    display: block;
}


/* .checkbox-group,
.radio-group {
    height: 70px;
}
 */

.checkbox {
    margin-right: 10px;
}

.label-text:before {
    width: 18px;
    height: 18px;
    top: 2px;
    position: relative;
    font-size: 18px;
    font-family: "ewm-icon";
    margin-right: 5px;
    transition: 0.25s all;
}

.checkbox>input[type="checkbox"]+.label-text:before {
    content: "\e906";
    color: #597181;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.checkbox>input[type="checkbox"]:checked+.label-text:before {
    content: "\e905";
    color: #428BCA;
    background: transparent;
}

.dropdown-btn-group .indeterminate>input[type="checkbox"]+.label-text:before,
.indeterminate>input[type="checkbox"]:checked+.label-text:before {
    content: "\e904";
    color: #428BCA;
    background: transparent;
}

th>.indeterminate>input[type="checkbox"]+.label-text:before {
    content: "\e904";
    color: #428BCA;
    background: transparent;
}

.checkbox.readonly>input[type="checkbox"]+.label-text:before,
.checkbox.disabled>input[type="checkbox"]+.label-text:before {
    color: #C6DCEF;
    background: transparent;
}

.checkbox.readonly>input[type="checkbox"]:checked+.label-text:before,
.checkbox.disabled>input[type="checkbox"]:checked+.label-text:before {
    content: "\e905";
    color: #C6DCEF;
    background: transparent;
}

.indeterminate.readonly>input[type="checkbox"]:checked+.label-text:before,
.indeterminate.disabled>input[type="checkbox"]:checked+.label-text:before {
    content: "\e904";
    color: #C6DCEF;
    background: transparent;
}

.radio span:after,
.checkbox span:after {
    content: '';
    display: block;
    position: absolute;
    left: 4px;
    top: 8px;
    width: 48px;
    height: 48px;
    margin-left: -18px;
    margin-top: -16px;
    background: #2a6496;
    border-radius: 100%;
    opacity: .6;
    transform: scale(0);
}

.radio span:after {
    margin-left: -21px;
    margin-top: -22px;
}

.radio input:checked+span:after,
.checkbox input:checked+span:after {
    animation: rippleDuplicate .4s ease-out;
}

.radio span:after,
.checkbox span:after {
    visibility: visible;
}

.radio input:focus+span:after,
.checkbox input:focus+span:after {
    visibility: visible;
}


/* focus____ */

@media screen and (min-width: 769px),
screen and (min-height: 375px) and (min-width: 812px) {
    button[data-toggle="collapse"]:focus {
        background: #c1e1ff;
    }
    .top.d-flex.justify-content-end .btn:focus,
    .menu-container .middle-container .top .btn-group .btn:not(.active):focus {
        background: #e8f1f9;
    }
    .btn.dropdown-toggle:focus,
    .table-group-btn:focus,
    .filter-body div .btn:focus {
        box-shadow: 0px 0px 0px 1px #3c83c5;
    }
    .btn-light:focus {
        box-shadow: 0px 0px 2px 2px rgba(84, 148, 206, 0.24) !important;
    }
}


/* check box and radio button */


/* multi select starts here */

.dropdown-container>ul.multiSelect>li {
    min-height: 28px;
    padding: 0px;
    margin: 2px 0px;
    box-sizing: border-box;
}

.dropdown-container>ul.multiSelect>li>.checkbox {
    float: left;
    display: flex;
    padding: 6px;
    transition: 0.25s all;
}

.dropdown-list .value:focus {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #3c83c5;
}

.dropdown-btn-group .label-text:focus {
    background: rgb(241, 248, 255);
    border: 1px solid #3c83c5;
}

.dropdown-btn-group .label-text,
.dropdown-container>ul.multiSelect>li>.checkbox {
    border: 1px solid #fff;
}

.dropdown-container>ul:not(.multiSelect)>li.focus {
    background: #3c83c5;
    color: #fff;
}

.dropdown-container>ul.multiSelect>li.focus>.checkbox {
    background: rgb(232, 241, 249);
    border: 1px solid #3c83c5;
}

.dropdown-container>ul.multiSelect>li.active>.checkbox {
    background: rgb(232, 241, 249);
}

.dropdown-container>ul>li>label {
    width: 100%;
}


/* multi select ends here */

.btn:focus {
    box-shadow: none;
}

.text-field>input,
.dropdown-list>span.value,
.btn {
    border-radius: 2px;
}

.text-right input {
    text-align: right !important;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #3C83C5;
    border-color: #3C83C5;
}

.btn.btn-primary {
    background: #e8f1f9;
    color: #2E4251;
    border: 1px solid rgb(190, 207, 224);
    font-size: 14px;
    padding: 6px 12px;
    white-space: nowrap;
}

.btn.btn-link {
    text-decoration: none;
    background: transparent;
    cursor: default;
}

.btn.btn-link i.inActive {
    color: #e6e6e6;
}

.btn.btn-icon {
    cursor: pointer;
}

.btn.icon-left i {
    margin: 6px;
}

.btn.btn-danger {
    color: #D0021B;
    background: transparent;
    border: 1px solid #D0021B;
}

.btn.btn-danger:hover,
.btn.btn-danger:focus {
    color: red;
}

.btn.btn-reset:hover,
.btn.btn-reset:focus {
    color: #2a6496;
}

.btn.btn-secondary i {
    font-size: 12px;
    margin-right: 4px;
}

.btn.btn-primary i {
    font-size: 12px;
    color: #fff;
    margin-left: 4px;
}

.btn.btn-secondary {
    color: #2a6496;
    background-color: #e8f1f9;
    border-color: #2a6496;
    border-radius: 1px;
    font-size: 14px;
    height: 36px;
}

.btn:disabled,
.btn.disabled {
    pointer-events: none;
    opacity: 0.25;
}

.btn.btn-secondary:disabled,
.btn.btn-secondary.disabled {
    pointer-events: none;
    border-color: #a0c1dd;
    opacity: 0.45;
}

.btn.btn-primary {
    background: #428BCA;
    color: #fff !important;
    height: 36px;
}

.btn.btn-primary-dark {
    font-size: 14px;
    height: 36px;
    background: #485E6E;
    color: #fff;
}

.filter-body button[type=reset]:hover {
    background: #c3c3c3;
}

.filter-body button[type=reset]:focus,
.filter-body button[type=reset]:active {
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.1);
}

.filter-body button[type=reset] {
    color: #2E4251;
    background: #dfe0e1;
    border: 1px solid #becfe0;
}

.btn.btn-primary-dark:focus {
    box-shadow: 0px 0px 2px 4px #7190a7;
}

.btn.btn-primary-dark:hover {
    background: #506779;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #3378BD;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background-color: #A1C5E5 !important;
}

.btn.btn-secondary:active {
    background-color: #A1C5E5 !important;
    border-color: #2a6496 !important;
    box-shadow: 0 0 0 .2rem #2a649683;
    color: #fff !important;
}


/* table */

.margin-50 {
    margin-top: 50px;
}

.margin-25 {
    margin-top: 25px;
}


/* date picker */


/* data picker */

.ui-datepicker {
    width: 17em;
    padding: 0.2em 1.2em;
    display: none;
    background: #fff;
    border-radius: 2px;
    border: 2px solid #AEB8C3;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1), 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    z-index: 9999 !important;
}

.datepicker {
    z-index: 1600 !important;
}

.ui-state-active {
    background: #428BCA !important;
    color: #fff !important;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    text-align: center;
    padding: 4px 12px;
    cursor: pointer;
}

.ui-datepicker-unselectable.ui-state-disabled>.ui-state-default {
    color: #AEB8C3 !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 45%;
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

.ui-datepicker th {
    padding: .7em .3em;
    font-weight: bold;
    border: 0;
}

.ui-datepicker td {
    border: 0;
    padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: center;
    text-decoration: none;
    border: 1px #fff solid;
    transition: 0.25s all ease-in;
    color: #2E4251
}

.ui-datepicker td a:hover {
    border: 1px #428BCA solid;
    color: #428bca;
}

.ui-state-highlight {
    background: #E8F1F9;
    color: #428BCA;
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em .6em;
    width: auto;
    overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}


/* with multiple calendars */

.ui-datepicker.ui-datepicker-multi {
    width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}


/* RTL support */

.ui-datepicker-rtl {
    direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px;
}

.ui-datepicker .ui-datepicker-title select.ui-datepicker-month {
    margin-right: 10px;
}


/*  wizard Starts here */

.wizard div.col:before {
    content: counter(step-counter);
    position: relative;
    border: 1px solid #2E4251;
    padding: 2px 10px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-block;
    margin-left: 18px;
    margin-right: 12px;
}

.wizard div.col:first-child::before {
    margin-left: 0px;
}

.agreement-container>* {
    float: left;
}


/* tryangle */

.wizard>div.col:after {
    content: '';
    position: absolute;
    display: flex;
    top: 7px;
    right: -21px;
    z-index: 1;
    height: 40px;
    width: 40px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 1px solid #3979b5;
    border-right: 1px solid #3979b5;
    border-radius: 0px 6px 0px 0px;
}


/* tryangle */

.wizard>div.col:last-child:after {
    content: none;
}

.wizard>div.col {
    counter-increment: step-counter;
    border-top: 1px solid #3979b5;
    border-bottom: 1px solid #3979b5;
    padding-bottom: 12px;
    padding-top: 12px;
    border-right: 1px solid #3979b5;
    background: #fff;
}

.wizard>div.col:first-child {
    margin-left: 3px;
}

.wizard>div.col:last-child {
    margin-right: 3px;
    border-right: 0px;
}

.wizard>div.col a:hover {
    text-decoration: none;
}

.wizard>div.col a {
    color: #2E4251;
}


/* status */

.wizard>div.col.active::after,
.wizard>div.col.active {
    background: #e8f1f9;
}

.wizard>div.col.active::before {
    background: #3979b5;
    color: #fff;
    border-color: #3979b5;
}


/* success */

.wizard>div.col.error::before,
.wizard>div.col.warning::before,
.wizard>div.col.success::before {
    font-family: 'ewm-icon';
    padding-left: 6px;
    color: #fff;
}

.wizard>div.col.success::after,
.wizard>div.col.success {
    background: #c3e6cb;
}

.wizard>div.col.success::before {
    content: '\e5ca';
    background: #7dbe31;
    border-color: #7dbe31;
}

.wizard>div.col.error::before,
.wizard>div.col.warning::before {
    content: '\e645';
    background: #FAA51F;
    border-color: #FAA51F;
}

.wizard>div.col::before {
    margin-left: 30px;
}

.wizard>div.col.active.success {
    animation-delay: 2s;
    animation: bk-anim 3s ease-in 1 forwards;
}

.wizard>div.col.active.success:before {
    color: #fff;
    content: '\e5ca';
    background: #7dbe31;
    border-color: #7dbe31;
    animation: loading 3s ease-in 1 forwards;
}


/*  */

.wizard>div.col.warning {
    background: #FEF4E4;
}

.wizard>div.col.warning::after {
    background: #FEF4E4;
}


/*  */

.wizard>div.col.error {
    background: #F9E1E4;
}

.wizard>div.col.error::after {
    background: #F9E1E4;
}

.wizard>div.col.error::before {
    background: #D0021B;
    border: 1px solid #D0021B;
}


/*  */

.wizard>div.col.disabled {
    background: #e4e4e4;
}

.wizard>div.col.disabled::after {
    background: #e4e4e4;
}

.wizard>div.col.disabled::before {
    color: #fff;
    background: #c9cac8;
    border-color: #bebebe;
    pointer-events: none;
}

.wizard-footer .btn {
    margin: auto 3px;
}

.wizard-footer .dropdown-list>span.value {
    height: 36px;
}

.wizard-footer {
    margin: 12px -12px 0px -12px;
}

.wizard-footer .btn.btn-reset {
    color: #428BCA;
    background: transparent;
}

.wizard.top-sticky,
.wizard-footer.bottom-sticky {
    position: fixed;
    z-index: 99;
    max-width: 1366px;
}

.wizard.top-sticky {
    top: 0;
    margin-left: -28px;
    padding: 0px 12px;
    width: 100%;
}

.wizard-footer.bottom-sticky {
    bottom: 0;
    margin: 0px -28px;
    width: 100%;
    padding: 0px 15px;
}

.wizard-footer .btn i {
    padding: 0px !important;
}

.wizard-footer.bottom-sticky .dropdown-list>span.value::before {
    display: inline;
    transform: rotate(180deg);
}

.wizard-top-container {
    min-height: 55px;
}

.wizard-bot-container {
    min-height: 64px;
    /* display: grid; */
}

.wizard-footer>div {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #bebebe;
    background: #fff;
}

.wizard-footer>div {
    padding-top: 6px;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
}

.wizard-footer .ewm-close::before {
    font-size: 12px;
}

.wizard-footer>div:first-child {
    justify-content: flex-start;
}

.wizard-footer>div:first-child>* {
    margin: 2px;
}

.wizard-footer>div:first-child {
    justify-content: center;
}

.wizard-footer>div:nth-child(2) {
    order: -1;
}

.wizard-footer>div:last-child {
    justify-content: flex-end;
}

.wizard-footer .dropdown.show .dropdown-toggle {
    background: rgb(243, 248, 252);
}

.wizard-footer .dropdown .btn {
    background: #E8F1F9;
    color: #2E4251;
    border: 1px solid #a7a7a7;
}

.wizard-footer .radio-group .checkbox {
    margin-right: 0px;
}

.wizard-footer .radio-group {
    height: auto;
}

.wizard-footer .radio-group+a.btn {
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    color: #0084ff;
    margin-top: 1.2px;
    margin-left: 3px;
    margin-right: 3px;
}

.wizard-footer .radio-group+a.btn:hover {
    text-decoration: underline;
}

.wizard-footer .radio-group .label-text::before {
    height: auto;
    width: auto;
    font-size: 14px;
}


/* mobile */


/*  wizard ends here */


/* alert starts here */

.alert {
    box-shadow: -4px 0px 0px 0px #a5a5a5;
    background: #f7f7f7;
    border-radius: 0px;
    transition: 0.5s all ease;
    padding: 8px 12px;
}

.alert>p {
    line-height: 1.8;
    margin-bottom: 0px;
}

.alert.icon,
.alert.icon.error,
.alert.icon.info,
.alert.icon.warning,
.alert.icon.success {
    padding: 10px 44px 8px 44px;
}

.alert.icon::before,
.alert.icon.error::before,
.alert.icon.info::before,
.alert.icon.warning::before,
.alert.icon.success::before {
    content: '';
    font-family: 'ewm-icon';
    position: absolute;
    left: 12px;
    font-size: 1.5rem;
}

.alert.icon.info::before {
    content: '\e940';
    color: #428BCA;
}

.alert.icon.success::before {
    content: '\e955';
    color: #7dbe31;
}

.alert.icon.warning::before {
    content: '\e963';
    color: #FAA51F;
}

.alert.icon.error::before {
    content: '\e93a';
    color: #D0021B;
}

.alert.icon::before {
    content: '\e93d';
    color: #a5a5a5;
}

.alert.success {
    background: #EFF7E6;
    box-shadow: -4px 0px 0px 0px #7dbe31;
}

.alert.warning {
    background: #FEF4E4;
    box-shadow: -4px 0px 0px 0px #FAA51F;
}

.alert.error {
    background: #F9E1E4;
    box-shadow: -4px 0px 0px 0px #D0021B;
}

.alert.info {
	background: #E8F1F9;
	box-shadow: -4px 0px 0px 0px #428BCA;
}

.alert-container {
    position: fixed;
    top: 0;
    height: auto;
    margin: auto;
    left: 0px;
    right: 0px;
    z-index: 102;
    width: auto;
}

.alert-container.alert-modal {
    z-index: 99999;
}

.alert-container>.container::before,
.alert-container>.container::after {
    content: '';
}

.alert-container>.container {
    position: fixed;
    margin: auto;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 999;
    max-width: 994px;
}

.alert-container .alert>p {
    margin: 0px;
    word-wrap: break-word;
}

.alert-container .alert {
    position: relative;
    margin: 8px auto;
    padding: 5px 35px 13px 12px;
    background: #fff;
    outline: 2px solid #428BCA;
    box-shadow: inset 4px 0 0 0 #428BCA, 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.05);
    border: 0px;
    border-radius: 0px;
}

.alert-container .alert-icon {
    color: #428BCA;
    font-size: 24px;
    top: 5px;
    position: relative;
    margin-right: 10px;
}

.alert-container .alert i.close {
    font-size: 12px;
    color: #3f505c;
    position: absolute;
    top: 6px;
    right: 4px;
    padding: 12px;
    cursor: pointer;
}

.alert-container .alert.info {
	outline: 1px solid #428BCA !important;
    box-shadow: -4px 0px 0px 0px #428BCA;	
}

.alert-container .alert.success {
    outline: 1px solid #7DBE31;
    box-shadow: inset 4px 0 0 0 #7DBE31, 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.05);
}

.alert-container .alert.warning {
    outline: 1px solid #FAA51F;
    box-shadow: inset 4px 0 0 0 #FAA51F, 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.05);
}

.alert-container .alert.error {
    outline: 1px solid #D0021B;
    box-shadow: inset 4px 0 0 0 #D0021B, 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.05);
}

.alert-container .alert.success .alert-icon {
    color: #7DBE31;
}

.alert-container .alert.warning .alert-icon {
    color: #FAA51F;
}

.alert-container .alert.error .alert-icon {
    color: #D0021B;
}


/* alert ends here */


/* TOAST MESSAGE */

.toast-container {
    position: fixed;
    z-index: 999999;
    left: 0px;
    bottom: 30px;
    right: 0px;
    display: flex;
    justify-content: center;
}

.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    padding: 10px 24px 10px 24px;
    border-radius: 26px;
    position: relative;
    text-align: center;
}

.toast.show.success,
.toast.show.warning {
    padding: 10px 24px 10px 60px;
}

.toast.show.success::before,
.toast.show.warning::before {
    content: '\e5ca';
    font-family: 'ewm-icon';
    font-size: 28px;
    position: absolute;
    left: 16px;
    top: 0px;
}

.toast.show.success {
    background-color: green;
}

.toast.show.warning::before {
    content: '\e963';
    font-size: 22px;
    left: 19px;
    color: #FAA51F;
    top: 5px;
}

.toast.show {
    visibility: visible;
    -webkit-animation: fade-in 0.5s, fade-out 0.5s 2.5s;
    animation: fade-in 0.5s, fade-out 0.5s 2.5s;
    animation-fill-mode: forwards;
}


/* dialog */


/* key-figure */

.key-figure-container {
    margin-bottom: 12px;
}

.key-figure-container .key {
    border-radius: 2px;
    background: #fff;
    text-align: center;
    padding: 12px;
    box-shadow: 0px 0px 0px 2px #498cca, 0px 1px 1px 1px #5686ae;
    transition: 0.5s all ease;
    height: 100%;
}

.key-figure-container .static {
    pointer-events: none;
}

.key-figure-container * {
    cursor: pointer;
}

.key-figure-container>div:not(.static) .key:hover {
    box-shadow: 0 10px 20px 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 2px #498cca, 0px 2px 10px 0px #5686ae;
}

.key-figure-container>div:not(.static).active .key {
    box-shadow: 0px 0px 0px 2px #498cca, 0px 2px 12px 0px #92b9dd;
    background: #5B85AD;
    color: #fff;
}

.key-figure-container>div.static .key {
    background: #fcfcfc;
    border: 1px solid #bababa;
    box-shadow: none;
}

.key-figure-container .key label {
    font-size: 1rem;
}

.key-figure-container .key .value {
    display: block;
    font-size: 24px;
}


/* key-figure */


/* modal */

.modal-lg {
    max-width: 1080px;
}

.modal-md {
    max-width: 800px;
}

.modal-body {
    transition: 1s all;
    position: static;
}

.modal.z-index-h {
    z-index: 1500;
}


/* 
    Chart JS
*/

table.legend {
    width: 100%;
    /* width: 200px; */
}

ul.legend {
    margin-top: 35px;
    list-style-type: none;
}

ul.legend>li {
    cursor: default;
    padding: 6px 0px;
    font-size: 14px;
}

ul.legend>li:hover span {
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

ul.legend>li>span {
    border-radius: 12px;
    height: 14px;
    width: 14px;
    position: absolute;
    margin-left: -25px;
    margin-top: 5px;
    transition: transform .2s;
}

.chart_container {
    display: flex;
}

.chart_inner_container {
    display: flex;
    justify-content: center;
}

.legend_left,
.legend_right,
.legend_bottom {
    flex-direction: column;
}

.legend_top {
    flex-direction: column-reverse;
}

.chart_container .chart_inner_container canvas {
    max-height: 360px;
    max-width: 360px;
}

@media only screen and (min-width: 769px) {
    .chart_container {
        width: 100%;
        flex-basis: 100%;
    }
    .legend_left {
        flex-direction: row;
    }
    .legend_left .chart_inner_container {
        order: 2;
        flex-grow: 1;
        flex-basis: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .legend_left .chartLegends {
        order: 1;
        flex-grow: 1;
        flex-basis: 0;
        display: flex;
        align-items: center;
    }
    .legend_right {
        flex-direction: row;
    }
    .legend_right .chart_inner_container {
        order: 1;
        flex-grow: 1;
        flex-basis: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .legend_right .chartLegends {
        order: 2;
        flex-grow: 1;
        flex-basis: 0;
        display: flex;
        align-items: center;
    }
    .legend_top {
        flex-direction: column-reverse;
    }
    .legend_top .chart_inner_container {
        display: flex;
        justify-content: center;
    }
    .legend_bottom {
        flex-direction: column;
    }
    .legend_bottom .chart_inner_container {
        display: flex;
        justify-content: center;
    }
}


/* legend */

table.legend tr:nth-child(even) {
    background: #f8f8f8
}

table.legend td {
    padding: 6px 12px 6px 28px;
    transition: all 0.5s ease;
    position: relative;
    cursor: default;
    font-size: 14px;
}

table.legend td:first-child span {
    opacity: 1;
    height: 14px;
    width: 14px;
    border-radius: 14px;
    margin: auto;
    margin-left: -20px;
    top: 0px;
    bottom: 0px;
    position: absolute;
    transition: transform .2s ease-in;
}

table.legend tr:hover td:last-child {
    color: #333;
    opacity: 1;
}

table.legend tr:hover td:first-child span {
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

table.legend td:last-child {
    color: #111;
    text-align: right;
    font-family: 'proxima-nova-semibold';
    opacity: 0.7;
}

.filter-container {
    margin-bottom: 1rem;
}

.chart-large-icon {
    position: relative;
    left: 0px;
    right: 0px;
    margin: auto;
    font-size: 84px;
    color: #898989;
}


/*  accordion Starts here*/

.accordion-container {
    border: 1px solid #ddd;
    margin-bottom: 12px;
}

.accordion-container .accordion-title {
    background: rgb(232, 241, 249);
    padding: .75rem 1.25rem;
}

.accordion-title {
    position: relative;
}

.accordion-title button.collapsed {
    transform: rotate(180deg);
}

.accordion-title button {
    transition: ease-in-out 0.25s all;
    position: absolute;
    top: 4px;
    right: 4px;
}

.card-list .btn.btn-link:hover {
    background: #e1e1e1;
}

.accordion-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-list-content>p {
    margin-top: 12px;
    overflow-wrap: break-word;
    margin-right: 0.5%;
    margin-left: 0.5%;
}

.card-heading h4 {
    margin-left: 0.5%;
}

.card-list-content {
    max-width: 100%;
}

.card-list .card-heading,
.card-list .card-body {
    padding: 0.25rem 17px !important;
}

.card-list .card-heading {
    padding-bottom: 0px !important;
    padding-top: 12px !important;
}

.card-list .card-body {
    padding-top: 0px !important;
}

.card-list .card-list-content {
    padding: 0px !important;
}


/*  accordion ends here*/

.badge {
    color: #fff;
    background: #dc3545;
}

.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #3c83c5;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #428bca;
}

.tooltip-inner {
    background-color: #3c83c5;
}


/** 
 * Component responsive 
*/


/* 
 Animation
*/


/* @keyframes ripple {
    0% {
        transform: scale(0);
    }
    20% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes rippleDuplicate {
    0% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
} */

@-webkit-keyframes fade-in {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fade-out {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fade-out {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes loading {
    0% {
        content: '\e5ca';
        color: transparent;
        background: #fff;
        border-color: #ccc;
        border-top-color: #07d;
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(360deg);
    }
    50% {
        transform: rotate(720deg);
    }
    100% {
        transform: rotate(1440deg);
    }
}

@keyframes bk-anim {
    0% {
        background: #e8f1f9;
    }
    100% {
        background: #c3e6cb;
    }
}

.loading .icon-large {
    display: flex;
}

#excel,
#print {
    width: 48px;
    text-align: center;
    position: relative;
    height: 38px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#excel.active,
#print.active {
    animation-name: pulseDownloadButton;
    animation-duration: 1s;
    animation-iteration-count: 1;
    background: #fff !important;
}

#print .icon-large,
#excel .icon-large {
    height: 24px;
    width: 24px;
}

#print.loading,
#excel.loading {
    pointer-events: none;
}

.loading .icon-large::before {
    animation-name: download-btn-spin;
    animation-duration: 500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: center center;
    position: absolute;
    margin: auto;
    border: 2px solid #428bca;
    border-top-color: #fff;
    content: '';
    height: 25px;
    width: 25px;
    border-radius: 40px;
}


/* .complete .ewm-excel2::before {
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-name: changeDownloadButton;
    transition: all ease-in;
    border: 0px;
    content: "\ebbb";
} 
@keyframes changeDownloadButton {
    0% {
        content: "\e918";
        color: #7DBE31;
    }

    100% {
        content: "\e918";
        color: #395f83;
    }
}

*/

@keyframes download-btn-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.complete .icon-large::before {
    opacity: 1;
    height: 25px;
    width: 13px;
    transform-origin: left top;
    border-right: 3px solid #5cb85c;
    border-top: 3px solid #5cb85c;
    content: '';
    position: absolute;
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkMark;
    transform: scaleX(-1) rotate(135deg);
    display: block;
    top: 22px;
}


/* .complete .ewm-excel2::before {
    animation-delay: 801ms;
    animation-fill-mode: forwards;
    animation-name: excel;
} */

@keyframes checkMark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 13px;
        opacity: 1;
    }
    40% {
        height: 25px;
        width: 13px;
        opacity: 1;
    }
    100% {
        height: 25px;
        width: 13px;
        opacity: 1;
    }
}

@keyframes pulseDownloadButton {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}

#tour_prev{
background-color: #e8f1f9;
margin-right: 10px;
opacity: 0.45;
/* color: #ffffff; */
background-clip: border-box;
border-radius: 5px !important;
}

#tour_next{
background-color: #A1C5E5;
margin-right: 10px;
background-clip: border-box;
border-radius: 5px !important;
}

#tour_end{
background-color: #FAA51F;
color: #ffffff;
background-clip: border-box;
border-radius: 5px !important;
}

#tour_end:hover,
#tour_end:focus {
    background-color: #fcc470!important;
}

#tour_next:hover,
#tour_next:focus {
    background-color: #dfe4e7 !important;
}

#tour_prev:hover,
#tour_prev:focus {
    background-color: #A1C5E5 !important; 
}

#tour_prev.disabled{
    background-color: #ababab !important;
}

.btn-group > .btn {
	flex: 0 1 auto;
}
.child_account_dropdown{
	font-weight:bold;
	font-size: 11.5px;
}

#terms span{
  background: transparent !important;
}