.ncr-cb-loader-body {    --ncr-cb-entry-loader-color: #bbb;        padding: 0;    margin: 0;    display: -webkit-flex;    display: flex;    -webkit-flex-direction: column;    flex-direction: column;    -webkit-align-items: center;    align-items: center;    position: relative;    padding: 15px;}/** CIRCULAR PROGRESS BAR **/.ncr-ag-circular-progress-container {    display: flex;    justify-content: center;}.ncr-ag-circular-progress-span {    width: 40px;    height: 40px;    display: inline-block;    color: var(--ncr-cb-entry-loader-color, #bbb);    animation: 1.4s linear 0s infinite normal none running ncr-ag-circular-animation-span;}.ncr-ag-circular-progress-svg {    display: block;}.ncr-ag-circular-progress-circle {    stroke: currentcolor;    stroke-dasharray: 80px, 200px;    stroke-dashoffset: 0;    stroke-width: 3.6;    animation: 1.4s ease-in-out 0s infinite normal none running ncr-ag-circular-animation-circle;}@keyframes ncr-ag-circular-animation-span {    0% {        transform: rotate(0deg);    }    100% {        transform: rotate(360deg);    }}@-webkit-keyframes ncr-ag-circular-animation-span {    0% {        transform: rotate(0deg);    }    100% {        transform: rotate(360deg);    }}@keyframes ncr-ag-circular-animation-circle {    0% {        stroke-dasharray: 1px, 200px;        stroke-dashoffset: 0;    }    50% {        stroke-dasharray: 100px, 200px;        stroke-dashoffset: -15px;    }    100% {        stroke-dasharray: 100px, 200px;        stroke-dashoffset: -125px;    }}@-webkit-keyframes ncr-ag-circular-animation-circle {    0% {        stroke-dasharray: 1px, 200px;        stroke-dashoffset: 0;    }    50% {        stroke-dasharray: 100px, 200px;        stroke-dashoffset: -15px;    }    100% {        stroke-dasharray: 100px, 200px;        stroke-dashoffset: -125px;    }}#ncr-cb-change-lang-section {    position: fixed;    top: 0;    left: 0;    right: 0;    bottom: 0;    margin: auto;    background-color: rgba(248, 248, 248, 0.92);    width: 275px;        height: fit-content;    border-radius: 14px;    font-size: 16px;    opacity: 1;    z-index: 100007;    font-family: var(--va-font-family, "Lato", "Avenir", Helvetica, Arial, sans-serif);}#ncr-cb-change-lang-header {    font-size: 18px;    font-weight: 700;    padding: 10px 20px;    border-radius: 14px 14px 0px 0px;}.ncr-cb-change-lang-option {    line-height: 1.75;    display: flex;    align-items: center;    }.ncr-cb-change-lang-option:hover {    background-color: lightgray;}.ncr-cb-change-lang-option > input[name="ncr-cb-lang"] {    height: 18px;        width: 20px;    margin: 0px;}.ncr-cb-change-lang-option > label {    margin-left: 5px;}#ncr-cb-change-lang-content {    padding: 7px 20px 20px 25px;}#ncr-cb-change-lang-footer {    display: flex;    border-width: 1px 0px 0px 0px;    border-style: solid;    border-color: #BEBEBE;    color: #03427A !important;    border-radius: 0px 0px 14px 14px;    }.ncr-cb-change-lang-action-btn {    display: flex;    align-items: center;    justify-content: center;    flex-basis: 50%;    line-height: 1.5;    height: 45px;}.ncr-cb-change-lang-action-btn:hover {    background-color: lightgray;}#ncr-cb-change-lang-cancel-btn {    border-width: 0px 1px 0px 0px;    border-style: solid;    border-color: #BEBEBE;    border-radius: 0px 0px 0px 14px;}#ncr-cb-change-lang-confirm-btn {    border-radius: 0px 0px 14px 0px;}.ncr-cb-cursor-pointer {    cursor: pointer;}#ncr-cb-change-lang-trigger-btn {    position: absolute;        line-height: 1.5;        width: 56px;    height: 26px;    border-radius: 13px;    left: 10px;    background-color: #6D89A5;    align-items: center;    justify-content: center;}#ncr-cb-change-lang-trigger-btn:hover {    background-color: var(--hover-color, #1D2029);}#ncr-cb-change-lang-trigger-btn > img {    width: 24px;    height: 24px;}#ncr-cb-lang-code {    font-size: 17px;    font-weight: 700;    font-family: var(--ncr-cb-font-family, var(--va-font-family, "Lato", "Avenir", Helvetica, Arial, sans-serif)) !important;        padding-left: 4px;    color: #ffffff;}#ncr-cb-msg {    position: fixed;    top: 20px;    right: 0;    left: 0;    bottom: 0;    z-index: 100004;    margin: 0 auto;    visibility: hidden;    box-sizing: content-box;    width: 300px;        display: inline-flex;    border-radius: 2px;    box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%), 0 2px 15px 0 rgb(0 0 0 / 5%);    height: fit-content;}#ncr-cb-msg.show {    visibility: visible;    animation: showMsg 1s ease-in;    -webkit-animation: showMsg 1s ease-in;}#ncr-cb-msg.hide {    animation: hideMsg 1.5s ease-in;    -webkit-animation: hideMsg 1.5s ease-in;}#ncr-cb-icon-section {    width: 60px;        display: flex;    align-items: center;    justify-content: center;    text-align: center;    background-color: #F1B51C;    min-height: 60px;}#ncr-cb-msg-text {    width: 240px;        display: flex;    align-items: center;    justify-content: flex-start;    background-color: #FFFFFF;    padding-left: 20px;    font-family: var(--va-font-family, "Lato", "Avenir", Helvetica, Arial, sans-serif);    box-sizing: border-box;    line-height: 1.5;    font-size: 16px;    min-height: 60px;    padding-right: 10px;}@keyframes hideMsg {    from {        opacity: 1;        visibility: visible;        top: 20px;    }    to {        opacity: 0;        visibility: hidden;        top: 0px;    }}@-webkit-keyframes hideMsg {    from {        opacity: 1;        visibility: visible;        top: 20px;    }    to {        opacity: 0;        visibility: hidden;        top: 0px;    }}@keyframes showMsg {    from {        opacity: 0;        top: 0px;    }    to {        opacity: 1;        top: 20px;    }}@-webkit-keyframes showMsg {    from {        opacity: 0;        top: 0px;    }    to {        opacity: 1;        top: 20px;    }}