* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', 'Noto Sans Myanmar', sans-serif !important;
    background-color: #fafcfc;
    min-height: 100vh;
}

body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

#wrapper > .bg-light {
    background-color: #fafcfc !important;
    min-height: 80vh;
}


body.offcanvas-menu:before {
    opacity: 1;
    z-index: 1002;
    visibility: visible;
}


h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Poppins', 'Noto Sans Myanmar', sans-serif;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

a, a:hover {
    text-decoration: none !important;
    cursor: pointer;
}

.min-height {
    min-height: 80vh;
}

.coming-soon-wrapper {
    width: 100%;
    min-height: 100%;
    height: auto;
    display: table;
}

.coming-soon-content {
    display: table-cell;
    vertical-align: middle;
}

.coming-soon-item {
    width: auto;
    height: auto;
    margin: 0 auto;
    text-align: center;
    padding: 8px;
}

.coming-soon-item h1 {
    margin: 0;
    font-size: 4em;
    word-spacing: 16px;
}

.coming-soon-item p {
    font-size: 1.4em;
}

.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* =====================================================================
    Slider CSS 
=========================================================================*/
#header {
    width: 100%;
    height: 100vh;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.title {
    position: absolute;
    text-align: center;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
}

h1 {
    font-size: 5rem;
}

.animated {
    animation-duration: 1.3s;
    animation-delay: .5s;
}


img {
    object-fit: cover;
    /*height: 100%;*/
}

.icon-logout::before {
    content: "\f2f5";
    font-family: FontAwesome;
    color: #fff;
}    

/*  ============================================================
    Login Page CSS 
=================================================================
*/

.login-bg {
    background: url(../images/login/personal-banking.jpg) no-repeat center;
    background-size: auto;
    background-size: cover;
    position: relative;
    min-height: 86vh;
}

.corporate-login-bg {
    background: url(../images/login/corporate-banking.jpg) no-repeat center;
    background-size: auto;
    background-size: cover;
    position: relative;
    min-height: 86vh;
}

.login-form {
    padding: 15px 0px;
    color: #254fa2;
}

#loginForm, #corporateLoginForm {
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 3px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3), 0 6px 3px 0 rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3), 0 6px 3px 0 rgba(0, 0, 0, 0.23);
    border-bottom: 0;
}

.mt-10 {
    margin-top: 2rem;
}

.login-text h2 {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.login-text h3 {
    text-transform: uppercase;
    font-size: 1.3rem;
}

/* ====================================================================
    Floating Label
==================================================================
*/

.text-danger {
    color: #f21f1f !important;
    font-size: 13px !important;
}

#myMessages {
    font-weight: 500;
    color: #f21f1f !important;
    font-size: 13px !important;
}

/****  floating-Lable style start ****/
.floating-label {
    position: relative;
    margin-bottom: 30px;
}

.floating-input, .floating-select {
    font-size: 14px;
    padding: 4px 4px;
    display: block;
    width: 100%;
    height: 30px;
    background: none;
    border: none;
    border-bottom: 1px solid #75757573;
}

.floating-input:focus, .floating-select:focus {
    outline: none;
    border-bottom: 2px solid #254fa2;
}

.floating-form label {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
    top: -18px;
    font-size: 14px;
    color: #254fa2;
}

.floating-select:focus ~ label, .floating-select:not([value=""]):valid ~ label {
    top: -18px;
    font-size: 14px;
    color: #254fa2;
}

/* active state */
.floating-input:focus ~ .bar:before,
.floating-input:focus ~ .bar:after,
.floating-select:focus ~ .bar:before,
.floating-select:focus ~ .bar:after {
    width: 50%;
}

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
}

/* highlighter */
.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.floating-input:focus ~ .highlight, .floating-select:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* animation */
@-webkit-keyframes inputHighlighter {
    from {
        background: #254fa2;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #254fa2;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #254fa2;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.pd-1 {
    padding: 1rem;
}

.pd-6 {
    padding: .6rem;
}

.fz-8 {
    margin-top: -6px !important;
    font-size: .92rem !important;
}

.mt-10px {
    margin-top: 10px;
    font-size: .92rem;
}

.bg-orange {
    background-color: #ff741f;
    color: #fff !important;
}


.btn-blue {
    color: #fff !important;
    background-color: #254fa2;
    border-color: #254fa2;
}

.btn-blue:hover {
    color: #fff;
    background-color: #254fa2;
    border-color: #254fa2;
}

.btn-blue:focus {
    box-shadow: none !important;
}

.btn-orange {
    color: #fff;
    background-color: #fdb941;
    border-color: #fdb941;
}

.btn-orange:hover {
    color: #fff;
    background-color: #fdb941;
    border-color: #fdb941;
}

.btn-orange:focus {
    box-shadow: none !important;
}

.login-footer a {
    padding-top: 1rem;
    display: block;
    color: #254fa2;
}

#loginResult {
    margin: 20px 0;
    font-size: 13px;
    color: #f21f1f;
}

.ladda-progress {
    width: 5px !important;
}

/* ===============================================================
    otpModalContent CSS 
===================================================================
*/

.fade-centered {
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}

.fade-centered.show {
    opacity: 1;
    transform: scale(1);
}

.fade-centered .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%) !important;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1rem;
    color: #254fa2;
    font-weight: 600;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 2rem !important;
}

.form-horizontal .form-group label {
    font-size: 1em;
    color: #254fa2;
    font-weight: 600;
}

#myMessage {
    color: #f21f1f;
    font-size: .85rem;
    font-weight: 400;
}

.modal-footer {
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;*/
    padding: 1rem;
    border-top: 1px solid #fff !important;
    /* border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    margin-left: -1rem;*/
}

.mt-7 {
    margin-top: 7rem;
}

/* ==================================================
    switch Check Box
======================================================
*/

#switch-check label {
    font-weight: 400;
    display: inline-block;
    float: none;
    width: 50%;
    height: 24px;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: none;
    color: none;
    margin: 0;
    font-size: .95rem;
    border-left: none;
    border-bottom: none;
}

#switch-check-alert label {
    font-weight: 400;
    display: inline-block;
    float: none;
    width: 45px;
    height: 24px;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: none;
    color: none;
    margin: 0;
    font-size: .95rem;
    border-left: none;
    border-bottom: none;
}

.charges-label {
    background: none;
    color: #667c88;
    width: 100%;
    border-left: none;
    border-bottom: none;
    padding-top: 0rem;
}

#eAlert-container {
    color: #484848;
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #aab7b8;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked + .slider {
    background-color: #254fa2;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #254fa2;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

.switch .slider.round {
    border-radius: 90px;
}

.slider.round:before {
    border-radius: 50%;
}

/* ====================================================================
    Personal Summary 
=========================================================================*/
#tableContainerMiniStmt {
    margin-bottom: 2rem;
}

#tableContainer {
    margin-bottom: 2rem;
}

.ministatement-table table tr th, .ministatement-table table tr td {
    border-bottom: 1px solid #ebeff1 !important;
    border-top: 1px solid #fff;
    font-size: 15px;
    background: none !important;
}

#e-statement-table table tr th {
    font-size: 16px !important;
}

.ministatement-table table th {
    font-weight: 500 !important;
    text-align: left;
}

.answer-group p {
    margin: 0;
}

.ministatement-table table td {
    font-weight: 300;
    text-align: left;
    font-size: 15px;
    color: #484848;
}

.text-success {
    color: #28a745 !important;
    font-weight: 500;
}

.text-green {
    color: #308459 !important;
    font-weight: 500;
}

.text-orange {
    color: #fdb941 !important;
    font-weight: 500;
}

.text-danger {
    font-weight: 500;
    color: #f21f1f !important;
    font-size: 13px !important;
}

.text-red {
    font-weight: 500;
    color: #f21f1f !important;
}

.fa-eye::before {
    content: "\f06e";
    color: #fff;
}

.fa-arrows-rotate::before, .fa-refresh::before, .fa-sync::before {
    content: "\f021";
    margin-right: 10px;
    color: #fff;
}

.trans-btn {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}


#containerSummary {
    margin-bottom: 10rem;
}

.summary-container {
    background: #fff;
    padding: 10px;
    /* border: 1px solid #ebeff1;*/
    border-radius: 5px 5px 0px 0px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.summary-border-top {
    /*border-top: 2px solid #254fa2;*/
    border-radius: 5px;
}

.summary-sidebar {
    float: right;
    position: relative;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 4px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #484848;
    cursor: pointer;
}

.summary-sidebar .fa-bars::before, .fa-navicon::before {
    content: "\f0c9";
    color: #484848;
}

.fa-angle-double-down::before, .fa-angles-down::before {
    content: "\f103";
    font-size: 20px;
    color: #484848;
}

.fa-angle-double-up::before, .fa-angles-up::before {
    content: "\f102";
    font-size: 20px;
    color: #484848;
}

#containerPaymentDetail {
    padding-top: 1.8rem;
}

#inner-standing-order {
    margin-top: -1rem;
}

.summary-detail h3, .summary-detail h4, .summary-detail h5 {
    font-size: 19px;
}

.summary-detail h3 {
    font-weight: 500;
}

.summary-detail h4 {
    font-weight: 300;
    color: #484848;
}

.summary-detail h5, .summary-detail span {
    font-weight: 300;
    color: #888;
}

.e-statement-detail h5 {
    font-weight: 300;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

#containerSummary .dropdown-menu {
    position: absolute;
    will-change: transform;
    top: 0px;
    left: 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translate3d(-192px, 0px, 0px) !important;
    border-top: 3px solid #ff741f;
}

#corporate-device .dropdown-menu {
    position: absolute;
    will-change: transform;
    top: 0px;
    left: 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translate3d(0px, 37px, 0px) !important;
    border-top: 3px solid #ff741f;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: .9rem;
}

#corporate-device .dropdown-item {
    display: block;
    width: 100%;
    padding: .9rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: .9rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0 !important;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0.25rem;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #254fa2 !important;
    text-decoration: none;
    background-color: #f8f9fa !important;
}

.accountDetail-container {
    /*border-bottom: 1px solid #ebeff1;*/
    border-radius: 0px 0px 5px 5px;
    /*border-left: 1px solid #ebeff1;
    border-right: 1px solid #ebeff1;*/
    background: #fff;
    padding: 10px;
    margin-bottom: 2rem;
    font-size: .85rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 5px 0px;
}

.myaccordion {
    max-width: 500px;
    margin: 50px auto;
    box-shadow: 0 0 1px rgba(0,0,0,0.1);
}

.myaccordion .card,
.myaccordion .card:last-child .card-header {
    border: none;
}

.myaccordion .card-header {
    border-bottom-color: #EDEFF0;
    background: transparent;
}

.myaccordion .fa-stack {
    font-size: 18px;
}

.myaccordion .btn {
    width: 100%;
    font-weight: bold;
    color: #004987;
    padding: 0;
}

.myaccordion .btn-link:hover,
.myaccordion .btn-link:focus {
    text-decoration: none;
}

.myaccordion li + li {
    margin-top: 10px;
}

.fa-magnifying-glass::before, .fa-search::before {
    content: "\f002";
    margin-right: 10px;
    color: #fff;
    position: absolute;
    transform: translate(75%, -40%);
    font-size: .9rem;
}

hr.hr-line-dashed {
    border: 0;
    border-top: 1px solid #ebeff1;
    border-bottom: 1px dotted #fff;
    margin-top: -.5rem;
}

.search-btn a {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.search-btn a.learn-more {
    width: 9rem;
    height: auto;
}

.search-btn a.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 2.3rem;
    height: 2.3rem;
    background: #254fa2;
    border-radius: 0.25rem;
}

.search-btn a.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.search-btn a.learn-more .circle .icon.arrow {
    /*transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;*/
}

.search-btn a.learn-more .circle .icon.arrow::before {
    /*position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    transform: rotate(45deg);*/
}

.search-btn a.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.37rem 0;
    color: #254fa2;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    margin-left: .3rem;
    font-size: .9rem;
}

.search-btn a:hover .circle {
    width: 100%;
}

.search-btn a:hover .circle .icon.arrow {
    background: #254fa2;
    transform: translate(1rem, 0);
}

.search-btn a:hover .button-text {
    color: #fff;
}

.download-pdf-btn a.button {
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    position: relative;
    padding: 0.5em 1em;
    padding-right: 1em;
    padding-right: 4em;
    background: #254fa2;
    border: none;
    color: white;
    transition: 0.2s;
    border-radius: 0.25rem;
    float: left;
    margin-bottom: 2rem;
    font-size: .9rem;
    margin-top: 1rem;
}

.download-pdf-btn a.button:before, .download-pdf-btn a.button:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: inherit;
    padding-bottom: inherit;
    width: 2.8em;
    content: "\00a0";
    font-family: "Font Awesome 6 Free";
    font-size: 1.2em;
    text-align: center;
    transition: 0.2s;
    transform-origin: 50% 60%;
}

.download-pdf-btn a.button:before {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.download-pdf-btn a.button:hover {
    background: #0079a5;
}

.download-pdf-btn a.button:active, .download-pdf-btn a.button:focus {
    background: #009ed8;
    outline: none;
}

.download-pdf-btn a.button {
    /*min-width: 15em;*/
}

.download-pdf-btn a.arrow {
    background: #254fa2;
}

.download-pdf-btn a.arrow:hover {
    background: #254fa2;
}

.download-pdf-btn a.arrow:active, .download-pdf-btn a.arrow:focus {
    background: #254fa2;
}

.download-pdf-btn a.arrow:after {
    content: "\f1c1";
    margin-top: -2px;
    margin-right: -1px;
}

.download-pdf-btn a.arrow:hover:after {
    -webkit-animation: bounceright 0.3s alternate ease infinite;
    animation: bounceright 0.3s alternate ease infinite;
}

@-webkit-keyframes bounceright {
    from {
        -webkit-transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(3px);
    }
}

/* TABS */

.tab_container {
    width: 97%;
    margin: 0 auto;
    padding-top: 35px;
    position: relative;
    padding-bottom: 3rem;
}

#corporate-usertask .tab_container {
    width: 97%;
    margin: 0 auto;
    padding-top: 0px;
    position: relative;
    padding-bottom: 3rem;
}

.tab_container input, .tab_container section {
    clear: both;
    padding-top: 10px;
    display: none;
}

.tab_container label {
    font-weight: 400;
    display: block;
    float: left;
    width: 20%;
    padding: 1.1em;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: #254fa2;
    color: #fff;
    margin: 0;
    font-size: .95rem;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.tab_container #tab1:checked ~ #content1,
.tab_container #tab2:checked ~ #content2,
.tab_container #tab3:checked ~ #content3,
.tab_container #tab4:checked ~ #content4,
.tab_container #tab5:checked ~ #content5,
.tab_container #tab6:checked ~ #content6{
    display: block;
    padding: 3rem;
    background: #fff;
    color: #484848;
    box-shadow: 0 0 15px 8px rgba(0, 0, 0, 0.02);
}


.tab_container .tab-content h3 {
    text-align: center;
}

.tab_container [id^="tab"]:checked + label {
    background: #fff;
    color: #484848;
    box-shadow: inset 0 3px #ff741f;
}

.tab_container [id^="tab"]:checked + label .fa {
    color: #254fa2;
}

label .fa {
    margin: 0 0.4em 0 0;
}

.fa-share-from-square::before, .fa-share-square::before {
    content: "\f14d";
    margin-right: 10px;
}

#containerContent h1.special {
    /*position: relative;
    margin-bottom: 2rem;
    margin-top: 2rem;*/
}

#containerContent h1 {
    font-size: 2rem;
    /*line-height: 1.5em;*/
    letter-spacing: 5px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #254fa2;
    position: relative;
    /*text-transform: uppercase;*/
}

#containerContent h1.special::before, #containerContent h1.special::after {
    position: absolute;
    top: 100%;
}

#containerContent h1.special::before {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #254fa2;
    position: relative;
    transform: rotate(45deg) translateX(-50%);
    left: 50%;
    top: 69px;
}

#containerContent h1.special::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 3px;
    background: linear-gradient(to right, #254fa2 0%, #254fa2 45%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 55%, #254fa2 55%, #254fa2 100%);
    top: 145%;
}

.line {
    position: relative;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.line::before {
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    background-color: #254fa2;
    position: relative;
    transform: rotate(45deg) translateX(-50%);
    left: 50%;
    top: 10px;
}

.line::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 780px;
    height: 3px;
    background: linear-gradient(to right, #254fa2 0%, #254fa2 45%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 55%, #254fa2 55%, #254fa2 100%);
}

.main-logo {
    display: none;
}

[data-toggle="collapse"] .fa:before {
    content: "\f077";
}

[data-toggle="collapse"].collapsed .fa:before {
    content: "\f078";
}

.arrow-expand {
    margin-left: 10px;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.7s ease;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
    color: #667c88;
    margin: 0 auto;
}

.ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none;
    cursor: pointer;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #254fa2 !important;
    border-color: #254fa2 !important;
    margin-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.giro-btn {
    margin-top: 0rem;
}

/* ====================================================
    FAQ collapsible
========================================================
*/
.collapsible-link {
    width: 100%;
    position: relative;
    text-align: left;
    font-size: 1.3rem;
    color: #484848;
}

.collapsible-link::before {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    display: block;
    font-family: "FontAwesome";
    font-size: 1.1rem;
}

.collapsible-link[aria-expanded="true"]::before {
    content: "\f106";
}

.card-container {
    border: none !important;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    border-radius: 16px;
}

.card-detail ul li a:hover {
    color: #fdb941;
}

.card-activate-container {
    background: #fff;
    opacity: .3;
}

.card-activate-container ul li a {
    pointer-events: none;
}

.card-activate-btn {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 4rem;
}

.card-detail {
    background: #667c881c;
    border-radius: 0rem 0rem 5px 5px;
}

.card-detail ul {
    margin-bottom: 0rem;
}

.card-detail ul li {
    list-style: none;
    display: inline-flex;
    text-align: center;
    margin: 10px 9px;
}

.card-name-container {
    display: inline-flex;
}

.card-name-container h5 {
    font-size: 16px;
    margin-left: 1rem;
    color: #fff;
}

.bg-blue {
    background-color: #254fa2 !important;
}

.card-circle {
    width: 35px;
    height: 35px;
}

.display-block {
    display: block;
}

/*==============================================*/

.inner-card-container {
    padding: 1rem;
}

.card-cb-logo {
    margin-bottom: 1.2rem;
    margin-left: -1rem;
}

.Wrap {
    display: flex;
    justify-content: left;
    align-items: center;
}

.Base {
    background: #ccc;
    height: 170px;
    width: 292px;
    border-radius: 15px;
}

.Inner-wrap {
    /*background-color: #0c0014;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpolygon fill='%230d1838' points='1600%2C160 0%2C460 0%2C350 1600%2C50'/%3E%3Cpolygon fill='%230e315d' points='1600%2C260 0%2C560 0%2C450 1600%2C150'/%3E%3Cpolygon fill='%230f4981' points='1600%2C360 0%2C660 0%2C550 1600%2C250'/%3E%3Cpolygon fill='%231062a6' points='1600%2C460 0%2C760 0%2C650 1600%2C350'/%3E%3Cpolygon fill='%23117aca' points='1600%2C800 0%2C800 0%2C750 1600%2C450'/%3E%3C/g%3E%3C/svg%3E");*/
    /*background-size: auto 147%;
    background-position: center;
    position: relative;
    height: 208px;
    width: 100%;
    border-radius: 16px;
    padding: 23px 35px;
    box-sizing: border-box;
    color: #fff;
    background: linear-gradient(248.61deg, #01c2ff 0.03%, #2d0067 99.03%);
    box-shadow: rgba(38, 57, 77, 0.54) 0px 20px 30px -10px;*/
    position: relative;
    text-align: center;
}

.Inner-wrap img {
    width: 100%;
        
}

.Logo {
    position: absolute;
    height: 80px;
    width: 80px;
    right: 0;
    top: 0;
    padding: inherit;
    fill: #117aca;
}

.card-bodys {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: .5rem !important;
}

.card-feature span {
    line-height: 30px;
}

.card-feature-ml-15px {
    margin-left: 15px;
}

.card-feature {
    margin-top: 1.5rem;
    cursor: pointer;
}

.card-feature-icon {
    text-align: center;
    font-size: 13px;
    color: #254fa2;
    font-weight: 500;
}

.card-feature ul li a {
    display: flex;
    margin-left: 10px;
}

.card-feature ul {
    list-style: none;
    display: block;
}

.card-feature i {
    font-size: 20px;
    display: block;
}

.card-feature ul li {
    text-align: left;
    padding: 5px;
    font-size: 15px;
    color: #254fa2;
    font-weight: 500;
}

.card-feature h5 span, .card-feature h6 span {
    margin-left: 20px;
}

.card-feature h5 {
    font-size: 1rem;
    color: #254fa2;
    margin-left: 15px;
}

.card-feature h6 {
    font-size: .9rem;
    font-weight: 400;
    margin-bottom: 2rem;
    margin-left: 15px;
}

.Chip {
    height: 20px;
    margin: 0px 0 25px 0;
}

.gold path {
    fill: url(#gold-gradient);
}

svg {
    display: block;
}

.Card-number p {
    text-align: center;
}

.Card-number {
    font-size: 7px;
    display: flex;
    justify-content: center;
    color: rgb(208,211,212);
    width: 100%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.siluet-1 {
    background: rgba(255, 255, 255, 0.05);
    left: 180px;
    top: 0;
    margin: 0 15px 0 0;
    padding: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -ms-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
}

.siluet-2 {
    -webkit-transform: skew(75deg);
    -moz-transform: skew(75deg);
    -ms-transform: skew(75deg);
    -o-transform: skew(75deg);
    transform: skew(75deg);
}

.card-name-title {
    font-size: .8rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.list-group-item-blue {
    color: #254fa2;
    background-color: #85a4e238;
}

.list-group-item-blue:hover {
    color: #fff;
    background-color: #254fa2;
}

.list-group-card-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    margin-bottom: 5px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 5px;
}


.header-pd {
    padding: 1.25rem 1.25rem 0rem 1.25rem;
}

.custom-ul {
    padding: 0;
}

.custom-ul .custom-li {
    list-style: none;
    float: left;
    margin: 0px 10px;
    font-size: 2.2em;
}

#first-li {
    margin-left: 0;
}

#last-li {
    margin-right: 0;
}

.st0 {
    fill: url(#gold-gradient);
    stroke: #000000;
    stroke-width: 10;
    stroke-miterlimit: 10;
}

/*===============================================
    DataTable
==================================================*/

#tblStatements_length {
    float: right;
}

#tblStatements_length label {
    background: none;
    display: flex;
    color: #484848;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    padding: 4px;
    /*margin: -5px 10px 0px 10px;*/
}

.ui-widget-header {
    border: none !important;
    background: none !important;
    color: #484848;
}

.ui-state-default {
    border: none !important;
    color: #484848 !important;
    font-weight: 500 !important;
    background: none !important;
}

table.dataTable.display tbody td {
    border-top: none !important;
}

table.dataTable.display > tbody > tr.odd > * {
    box-shadow: none !important;
}

table.dataTable.display > tbody > tr:hover > * {
    box-shadow: none !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default,
.ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    color: #484848;
    font-weight: 400 !important;
    background: none;
}

#fileRequestTbl_filter {
    display: none;
}

#fileRequestTbl_length {
    float: right;
    width: 100%;
}

#fileRequestTbl_length label {
    background: none;
    display: flex;
    color: #484848;
}

.statement-btn {
    margin-top: 2rem;
}

.col-form-label span {
    color: #f21f1f;
}

#containerAdvencedSearch input {
    padding-top: 5px;
}

.fa-circle-minus::before, .fa-minus-circle::before {
    content: "\f056";
    margin-right: 10px;
}

.fa-magnifying-glass-plus::before, .fa-search-plus::before {
    content: "\f00e";
    margin-right: 10px;
}

@media only screen and (max-width: 900px) {
.tab_container {
    width: 98%; }

.tab_container label {
    font-weight: 400;
    display: block;
    float: left;
    width: auto;
    padding: 1.1em;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: #254fa2;
    margin: 0;
    font-size: .85rem; }
}

/*===========================================
    permission
====================================================*/
.permission-mt-10 {
    margin-top: 10rem;
}

.mt-3rem {
    margin-top: -3rem;
}

.permission-container {
    background-image: url('../images/form-bg.jpg');
    color: #888;
    /*background-repeat:no-repeat;*/
    background-size: cover;
}

#standing-order-container {
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.standing-order-goback-btn {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.df {
    display: flex;
}

.mr-btn3 {
    margin-right: .3rem;
}

.fa-trash-alt::before, .fa-trash-can::before {
    content: "\f2ed";
    color: #fff;
}

.btn-orange {
    color: #fff !important;
    background-color: #fdb941;
    border-color: #fdb941;
}

.btn-red {
    color: #fff !important;
    background-color: #f24049;
    border-color: #f24049;
}

.btn-green {
    color: #fff !important;
    background-color: #308459;
    border-color: #308459;
}

.border-bottom-none {
    border-bottom: none !important;
}

.fa-rotate-back::before, .fa-rotate-backward::before, 
.fa-rotate-left::before, .fa-undo-alt::before {
    content: "\f2ea";
    margin-right: 5px;
}

.fa-check::before {
    content: "\f00c";
    margin-right: 10px;
}

#containerLoading {
    padding: 3rem;
}

.standing-order-edit-content, .inner-standing-order-edit {
    padding-bottom: 3rem;
}

.fa-chevron-down::before {
    content: "\f078";
    color: #888;
    font-size: 1.1rem;
}

.fa-chevron-up::before {
    content: "\f077";
    color: #888;
    font-size: 1.1rem;
}

.site-position {
    text-align: center;
}

/*========================================================
    sweet alert
========================================================= */

.sweet-alert .icon.success .placeholder {
    width: 80px;
    height: 80px;
    border: 3px solid #254fa2;
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}

.sweet-alert .icon.success .fix {
    width: 5px;
    height: 90px;
    background-color: #254fa2;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sweet-alert .icon.success::before, .sweet-alert .icon.success::after {
    content: '';
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: #254fa2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sweet-alert .icon.success {
    border-color: #254fa2;
}

.sweet-alert .icon.success .line {
    height: 5px;
    background-color: #254fa2;
    display: block !important;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
    margin-top: 0 !important;
}

.sweet-alert .icon.success .line::before {
    height: 0px !important;
}

.sweet-alert button {
    background-color: #AEDEF4;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 26px 5px 0 5px;
    cursor: pointer;
    background-color: #254fa2 !important;
    box-shadow: none !important;
    font-family: 'Poppins', 'Noto Sans Myanmar', sans-serif;
}

.sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    margin: 0;
    line-height: normal;
    font-family: 'Poppins', 'Noto Sans Myanmar', sans-serif;
}

.file-statement-pd {
    padding: 20px;
}

.file-statement-btn-pd {
    padding-bottom: 2rem;
}

.file-statement-pd-bottom {
    padding-bottom: 3rem;
}

.btn-group-file-statement {
    position: relative;
    display: block;
}

.btn-group-file-statement button {
    margin-right: 1rem;
    border-radius: 0.25rem;
}

.file-statement-pdf-btn {
    margin-top: 0rem;
}

.request-info-btn #btnEdit {
    margin-bottom: .3rem;
}

.font-weight-600 {
    font-weight: 600;
}

.span-color-gray {
    color: #495057 !important;
}

.accountDetail-popup h3, .cardDetail-popup h3 {
    color: #254fa2;
}

.accountDetail-popup h3, .accountDetail-popup .respon-msg-span {
    margin-bottom: 1rem;
    display: block;
}

.font-weight-500 {
    font-weight: 500;
}

/* =======================================================
    Radio button Design
========================================================== */
.cbTocb-btn {
    margin-top: 3rem;
}

.custom-radio-cbtocb {
    display: block;
    margin-top: -7px;
    margin-left: 2rem;
}

.custom-radio-cbtocb input {
    display: block;
    padding-top: 2px !important;
}


.custom-radio-cbtocb .option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 25px;
    right: 0;
    bottom: 0;
    left: -31px;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
}

.custom-radio-cardTransfer {
    display: block;
    margin-top: -7px !important;
    margin-left: 2rem;
}

.custom-radio-cardTransfer input {
    display: block;
    padding-top: 2px !important;
}

.custom-radio-cardTransfer .option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 10px;
    right: 0;
    bottom: 0;
    left: 100px;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
}

.custom-radio-eStatement .option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 7px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
}

.custom-radio-cbtocb .option-input:hover {
    /*background: #9faab7;*/
}

.custom-radio-cbtocb .option-input:checked,
.custom-radio-cardTransfer .option-input:checked,
.custom-radio-eStatement .option-input:checked {
    background: #254fa2;
}

.custom-radio-cbtocb .option-input:checked::before,
.custom-radio-cardTransfer .option-input:checked::before,
.custom-radio-eStatement .option-input:checked::before {
    width: 25px;
    height: 25px;
    display: flex;
    content: '\f00c';
    font-size: 13px;
    font-weight: bold;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 5 Free';
}

.custom-radio-cbtocb .option-input:checked::after,
.custom-radio-cardTransfer .option-input:checked::after,
.custom-radio-eStatement .option-input:checked::after {
    background: #40e0d0;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}

.custom-radio-cbtocb .option-input.radio,
.custom-radio-cardTransfer .option-input.radio,
.custom-radio-eStatement .option-input.radio {
    border-radius: 50%;
}

.custom-radio-cbtocb .option-input.radio::after,
.custom-radio-cardTransfer .option-input.radio::after,
.custom-radio-eStatement .option-input.radio::after {
    border-radius: 50%;
}

.custom-radio-cbtocb label {
    padding: 0;
}

.custom-radio-cardTransfer label {
    padding: 10px;
}

.custom-radio-eStatement label {
    padding: 10px;
    margin-right: 20px;
}

#cbTocb-preview {
    padding: 3.1rem;
    margin-bottom: 3rem;
}

.CbToCb-success-btn {
    margin-top: 2rem;
}

.pdf-cbTocb-success {
    margin-top: 0rem;
}

.tws-statement-btn {
    margin-right: 0rem;
    margin-top: 0rem;
}

.logout-container {
    margin-top: 10rem;
}

.logout-container h1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.logout-container h5 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mt-btn-2rem {
    margin-top: 2rem;
}

.add-new-btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

#containerAddBeneficiary {
    padding: 4rem;
}

.beneficiary-container {
    margin-bottom: 3rem;
}

.span-error {
    float: right;
    margin-right: 1.5rem;
}

.span-error-bene {
    float: right;
    margin-right: 1.1rem;
}


.beneficy-btn-search {
    margin-bottom: 0rem;
}

.beneficiary-text-box {
    margin-bottom: .5rem;
}

.beneficy-btn-add-new {
    margin-top: 1rem;
}

#beneficiary-details .tab_container label {
    font-weight: 400;
    display: block;
    float: left;
    width: auto;
    padding: 1.1em;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    margin: 0;
    font-size: .95rem;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.confirm-otp {
    margin-top: 3rem;
    color: #f21f12;
}

.file-request-btn-disable {
    cursor: not-allowed !important;
    background: #6c8dca;
    border: 1px solid #6c8dca;
}

.file-request-btn-disable:hover {
    cursor: not-allowed !important;
    background: #6c8dca;
    border: 1px solid #6c8dca;
}

.inter-payment-btn {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.mr-10px {
    margin-right: 5px;
}

.mt-refresh {
    margin-top: .3rem;
}

#alertInfo h6 {
    color: #667c88;
}

.forget-password-header {
    color: #667c88;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* =====================================================
    CheckBox CSS
======================================================== */

.checkbox label {
    padding-left: 35px;
}

.checkbox input[type="checkbox"] {
    display: none !important;
}

.checkbox input[type="checkbox"] + .box:before,
.checkbox input[type="checkbox"] + .box:after {
    transition: all .3s;
}

.checkbox input[type="checkbox"] + .box:after {
    position: absolute;
    left: 4px;
    top: 3px;
    margin-top: -3px;
    margin-left: 15px;
    display: inline-block;
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 2px;
    background-color: #fff;
    z-index: 1000;
}

.checkbox input[type="checkbox"]:checked + .box:after {
    background-color: #254fa2;
    border-color: #254fa2;
}

.checkbox input[type="checkbox"]:checked + .box:before {
    transform: rotate(45deg);
    position: absolute;
    left: 26px;
    top: 2px;
    width: 6px;
    height: 13px;
    border-width: 2px;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    border-color: #fff;
    content: '';
    z-index: 10000;
}

.bulk-detail-header {
    margin-left: 2rem;
}

.mytask-btn-detail {
    float: none;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

/* ==============================================
    product show pagination CSS
  ================================================
*/
.bill-items-wrapper .bill-items {
    position: relative;
    /*max-width: calc(100% - 111px);*/
    float: left;
    padding: 0;
    border: none;
    background-color: transparent;
}

.bill-items-wrapper .bill-items .nav-item {
    width: 170px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
}

.bill-items-wrapper .bill-items .nav-item:hover > .nav-link i[class*="la-"],
.bill-items-wrapper .bill-items .nav-item.active .nav-link i[class*="la-"] {
    color: #fff;
}

/*.preloader .animated-preloader, .preloader .animated-preloader::before, 
.bill-items-wrapper .bill-items .nav-item.active .nav-link i, 
.bill-items-wrapper .bill-items .nav-item::after, 
.bill-items-wrapper .bill-items .nav-item:hover .nav-link i, 
.cmn-btn, .scroll-to-top .scroll-icon, 
.feature-card:hover .feature-card__icon, 
.social-links.style--two li a, .d-widget__icon, 
.d-widget::before, .d-widget__btn, .client-slider .slick-arrow:hover, 
.service-card:hover, .table thead {
    background: #145BCD;
}*/

.bill-items-wrapper .bill-items .nav-item .nav-link i[class*="la-"] {
    font-size: 26px;
    color: #145BCD;
}

.bill-items-wrapper .bill-items .nav-item.active .nav-link i {
    background-color: #145BCD;
    color: #ffffff;
}

.bill-items-wrapper .bill-items .nav-item i {
    width: 45px;
    height: 45px;
    color: #363636;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #a3c6ff;
    background: -webkit-linear-gradient(to bottom, #fbfbfb, #dae8ff);
    background: linear-gradient(to bottom, #fbfbfb, #dae8ff);
}

.bill-items-wrapper .bill-items .nav-item:hover > .nav-link i[class*="la-"],
.bill-items-wrapper .bill-items .nav-item.active .nav-link i[class*="la-"] {
    color: #fff;
}

.bill-items-wrapper .bill-items .nav-item .nav-link i[class*="la-"] {
    font-size: 26px;
    color: #145BCD;
}

.bill-items-wrapper .bill-items .nav-item.active .nav-link i {
    color: #ffffff;
}

.bill-items-wrapper .bill-items .nav-item i {
    color: #363636;
}

.bill-items-wrapper .bill-items .nav-item span {
    color: #484848;
    font-size: 14px;
    width: 100%;
    margin-top: 5px;
    display: inline-block;
}

.bill-items-wrapper .bill-items .nav-item:hover > .nav-link i[class*="la-"],
.bill-items-wrapper .bill-items .nav-item.active .nav-link i[class*="la-"] {
    color: #fff;
}

.bill-items-wrapper .bill-items .nav-item.active .nav-link i,
.bill-items-wrapper .bill-items .nav-item::after,
.bill-items-wrapper .bill-items .nav-item:hover .nav-link i {
    background: #254fa2;
}

.bill-items-wrapper .bill-items .nav-item .nav-link i[class*="la-"] {
    font-size: 26px;
    color: #145BCD;
}

.bill-items-wrapper .bill-items .nav-item:hover .nav-link i {
    background-color: #254fa2;
    color: #fdb941;
    border: none !important;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    /*border-color: #e9ecef #e9ecef #dee2e6;*/
}

.bill-items-wrapper .bill-items .nav-item i {
    width: 65px;
    height: 65px;
    color: #254fa2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #f7f9fa;
    font-size: 22px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.biller-category {
    padding: 7px;
    border: 1px solid #e4e5e7;
    background: #f7f9fa;
    margin: 7px 0;
    cursor: pointer;
    font-size: 14px;
}
/*==============================================================
    step by step Form CSS
=================================================================
*/
.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.signup-step-container {
    padding: 35px 0px;
}

.wizard .nav-tabs {
    position: relative;
    margin-bottom: 0;
    border-bottom-color: transparent;
}

.wizard > div.wizard-inner {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    margin-right: 30px;
}

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15px;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover,
.wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 1px solid #ddd;
}

span.round-tab i {
    color: #555555;
}

.wizard li.active span.round-tab {
    background: #254fa2;
    color: #fff;
    border-color: #254fa2;
}

.wizard li.active span.round-tab i {
    color: #5bc0de;
}

.wizard .nav-tabs > li.active > a i {
    color: #254fa2;
}

.wizard .nav-tabs > li {
    width: 25%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: red;
    transition: 0.1s ease-in-out;
}

.wizard .nav-tabs > li a {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}

.wizard .nav-tabs > li a i {
    position: absolute;
    top: -8px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    left: 50%;
    transform: translate(10%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.wizard .nav-tabs > li a:hover {
    background: transparent;
}

.wizard .tab-pane {
    position: relative;
    padding-top: 65px;
}

.wizard h3 {
    margin-top: 0;
}

.prev-step,
.next-step {
    font-size: 15px;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
}

.next-step {
    background-color: #254fa2;
}

.skip-btn {
    background-color: #cec12d;
}

.step-head {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.term-check {
    font-size: 14px;
    font-weight: 400;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 40px;
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
    margin: 0;
    opacity: 0;
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 2;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 38px;
    padding: .375rem .75rem;
    line-height: 2;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}

.footer-link {
    margin-top: 30px;
}

.all-info-container {
}

.list-content {
    margin-bottom: 10px;
}

.list-content a {
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
    background-color: #f5f5f5;
    position: relative;
    color: #565656;
    font-weight: 400;
    border-radius: 4px;
}

.list-content a[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.list-content a i {
    text-align: right;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: 0.5s;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
}

.list-box {
    padding: 10px;
}

.signup-logo-header .logo_area {
    width: 200px;
}

.signup-logo-header .nav > li {
    padding: 0;
}

.signup-logo-header .header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-inline li {
    display: inline-block;
}

/* ========================================================
    Biller Design CSS
   ========================================================= */

.cards {
    /* width: 100%;
    display: flex;*/
    justify-content: center;
    align-items: center;
}

.cards .card {
    height: 350px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 20px 35px -25px rgba(0, 0, 0, 0.4);
    max-width: 300px;
    /*  min-width: 260px;*/
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
    margin: 0 10px;
    border: none;
    cursor: pointer;
}

.cards .card::before {
    height: 190px;
    width: calc(100% + 100px);
    content: "";
    position: absolute;
    /*background-image: linear-gradient(to top, #e12035 0%, #e12035 100%);*/
    border-radius: 4px 4px 100% 100%;
    transition: all 0.4s ease-out;
    top: 0;
}

.cards .card article {
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.cards .card article h5 {
    color: #484848;
    margin: 0;
    padding: 40px 20px 10px 20px;
    font-weight: 500;
    font-size: 15px;
    /* letter-spacing: 0.5px;*/
}

.cards .card article .title {
    color: white;
    padding: 10px 20px;
    letter-spacing: 0.8px;
    transition: all 0.4s ease;
}

.cards .card article .desc {
    padding: 5px;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    color: #666;
    height: 90px;
    transition: all 0.4s ease-out;
}

.cards .card article .pic {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 100%;
    margin: 20px 0;
    /*box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.3);*/
    transition: all 0.6s ease;
    background: #fff;
    border: 1px solid #eee;
}

.cards .card article .pic img {
    height: auto;
    /* width: 100%;*/
    transform: translate(-3%,43%);
    /*top: 43%;
    left: 50%;
    position: absolute;*/
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%);*/
}

@keyframes icon {
    0% {
        width: 22px;
    }

    50% {
        width: 40px;
    }

    100% {
        width: 22px;
    }
}


.cards .card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.3);*/
}

.cards .card:hover:before {
    height: 100%;
    border-radius: 4px;
}

.cards .card .desc {
    color: #484848;
}

.cards .card:hover .desc {
    color: #484848;
}

.cards .card:hover .pic {
    /*box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.3);*/
}

.cards .card:hover .pic img {
    /* -webkit-filter: grayscale(0%);
        filter: grayscale(0%);*/
}

.testimonials {
    /*padding: 100px 0;*/
}

.testimonials h3 {
    margin-bottom: 20px;
}

.testimonials .card {
    border-bottom: 3px #254fa2 solid !important;
    transition: 0.5s;
    margin-top: 60px;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    height: 160px;
}

.testimonials .card i {
    background-color: #254fa2;
    color: #ffffff;
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: -40px auto 0 auto;
    font-size: 1.3em;
}

.testimonials p {
    font-size: 15px;
}

.testimonials a {
    color: #484848;
}

.not-allow-textbox {
    background: #eee;
    display: block;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    cursor: not-allowed;
}

.otp-textbox {
    padding: 5px;
    width: 70%;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background: #eee;
}

.category-image-container {
    padding: 1rem;
    /* border: 1px solid #254fa2;*/
    border-radius: 100%;
    height: 110px;
    width: 110px;
    align-items: center;
    justify-content: center;
    display: flex;
/* background: linear-gradient(90deg, rgba(39,93,201,1) 0%, rgba(37,79,162,1) 48%, rgba(50,83,149,1) 100%);*/
}

.biller-image-container {
    padding: 1rem;
    border: 1px solid #fff;
    border-radius: 100%;
    height: 110px;
    width: 110px;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #fff;
}

.online-biller-container {
    border: 1px solid #eee;
    padding: 40px;
    margin-bottom: 2rem;
}

#nestable2 ol li {
    list-style: none;
}

#nestable2 li {
    background: #eee;
    padding: 7px 10px;
    border: 1px solid #bfc9ca;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

#nestable2 li:hover {
    background: #254fa2;
    padding: 7px 10px;
    border: 1px solid #254fa2;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    color: #fff;
}

.i-mt-2 {
    margin-top: .2rem;
}

.hr-margin {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.summary-pd {
    padding: 0 0rem;
}

.form-pd {
    padding: 0 0rem;
}

.opt-form {
    display: none;
}

.profile-header {
    color: #667c88;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding: 10px;
    font-weight: 400;
}

.profile-main-header {
    color: #667c88;
    margin: 20px;
    font-weight: 400;
}

/* ============================================================
    Common CSS
=============================================================== */
    #billProcesses {
        margin-top: 3rem;
    }

#tblStatements_length select,
#fileRequestTbl_length select {
    margin: -5px 10px 0px 10px;
}

#loanDetail table td > span, #bulk-detail table td > span {
    font-weight: 400;
    color: #484848;
    font-size: 16px;
}

#tblPendingTransaction td:nth-child(3),
#tblAuthorizedTransaction td:nth-child(3),
#tblDeletedTransaction td:nth-child(3) {
    vertical-align: top;
}

#tblRules th:nth-child(7) {
    width: 310px;
}

#tblNonAmountRule th:nth-child(7) {
    width: 230px;
}

#tblRules th:nth-child(2) {
    min-width: 150px;
}

#online-biller-table td:nth-child(1) {
    border-top: none !important;
}

#tblDomesticBeneficiary th:nth-child(9),
#tblInternationalBeneficiary1 th:nth-child(9),
#tblCbBeneficiary th:nth-child(5),
#tbPayrollFileList th:nth-child(9),
#tblStandingOrder th:nth-child(10) {
    min-width: 75px;
}

#tblDomesticBeneficiary_length label,
#tblInternationalBeneficiary1_length label,
#tblCbBeneficiary_length label,
#tblDepositList_length label,
#tblAccountStatement_length label,
#tbDeletedList_length label,
#tbErrorList_length label,
#tbPayrollFileList_length label,
#tblLoanSchedule_length label,
#tblDepositSchedule_length label,
#tbPayrollAuthorizedList_length label,
#tblPendingTransaction_length label,
#tblAuthorizedTransaction_length label,
#tblDeletedTransaction_length label {
    width: 100% !important;
    background: none;
    color: #484848;
}

#authorizedContent .form-group label,
#deletedContent .form-group label,
#errorContent .form-group label,
#fileDetail .form-group label {
    padding: .2rem;
}

#containerAdvencedSearch .form-group label,
#cbtocb-transfer .form-group label,
#cbtonrc-transfer .form-group label,
#cbtoother-trabsfer .form-group label,
#beneficiary-detail-container .form-group label,
#cbToOtherBank-transfer .form-group label,
#P2P-transfer .form-group label,
#cheque-container .form-group label,
#chequeStopPayment .form-group label,
#internation-payment .form-group label,
#swiftPreview .form-group label,
#bulkAccount .form-group label,
#authorizedContent .form-group label,
#deletedContent .form-group label,
#errorContent .form-group label,
#fileDetail .form-group label,
#containerFixedDeposit .form-group label,
#fileUpload .form-group label,
#corporate-user .form-group label,
#divAddUser .form-group label {
    width: 100%;
    background: none;
    text-align: left;
    color: #484848;
}

#cbtocb-transfer input, #cbtocb-transfer section,
#cbtonrc-transfer input,
#containerAdvencedSearch input,
#cbtoother-trabsfer input,
#beneficiary-detail-container input,
#cbToOtherBank-transfer input,
#P2P-transfer input,
#cheque-container input,
#chequeStopPayment input,
#internation-payment input,
#swiftPreview input,
#bulkAccount input,
#authorizedContent input,
#deletedContent input,
#errorContent input,
#fileDetail input,
#containerFixedDeposit input,
#fileUpload input,
#corporate-user input,
#divAddUser input {
    display: block;
    padding-top: 5px;
}


#containerAdvencedSearch .form-group,
#cbtocb-transfer .form-group,
#cbtonrc-transfer .form-group,
#cbtoother-trabsfer .form-group,
#cbToOtherBank-transfer .form-group,
#P2P-transfer .form-group,
#cheque-container .form-group,
#chequeStopPayment .form-group,
#internation-payment .form-group,
#bulkAccount .form-group,
#authorizedContent .form-group,
#deletedContent .form-group,
#errorContent .form-group,
#fileDetail .form-group,
#fileUpload .form-group,
#corporate-user .form-group,
#divAddUser .form-group {
    margin-bottom: 0rem;
}

#containerAdvencedSearch .form-group span,
#cbtocb-transfer .form-group span,
#cbtonrc-transfer .form-group span,
#cbtoother-trabsfer .form-group span,
#containerAddBeneficiary .form-group span,
#cbToOtherBank-transfer .form-group span,
#P2P-transfer .form-group span,
#InternationalBeneficiary .form-group span,
#cheque-container .form-group span,
#chequeStopPayment .form-group span,
#internation-payment .form-group span,
#swiftPreview .form-group span,
#bulkAccount .form-group span,
#authorizedContent .form-group span,
#deletedContent .form-group span,
#errorContent .form-group span,
#fileDetail .form-group span,
#containerFixedDeposit .form-group span,
#fileUpload .form-group span,
#divforgetPassword .form-group span,
#billProcesses .form-group span,
.corporate-user .form-group span,
#corporate-user .form-group span,
#divAddUser .form-group span,
#Giro .form-group span,
.repayment .form-group span,
#profile .form-group span {
    color: #f21f1f;
}


/*=======================================================
    FontAwesome
========================================================== */

.fa-circle-info::before, .fa-info-circle::before {
    content: "\f05a";
    font-size: 1.2rem;
}

.fa-chevron-circle-down::before, .fa-circle-chevron-down::before {
    content: "\f13a";
    font-size: 18px;
    color: #667c88;
}

.fa-cog::before, .fa-gear::before {
    content: "\f013";
    margin-right: 10px;
}

.fa-tablet-alt::before, .fa-tablet-screen-button::before {
    content: "\f3fa";
    margin-right: 10px;
}

.fa-arrow-right::before {
    content: "\f061";
    margin-right: 10px;
}

.fa-arrow-left::before {
    content: "\f060";
    margin-right: 10px;
}

#card-show .fa-bars::before, .fa-navicon::before {
    content: "\f0c9";
    margin-right: 15px;
}

#card-show .fa-circle-info::before, .fa-info-circle::before {
    content: "\f05a";
    margin-right: 5px;
}

#card-show .fa-clock-rotate-left::before, .fa-history::before {
    content: "\f1da";
    margin-right: 15px;
}

#card-show .fa-unlock::before {
    content: "\f09c";
    margin-right: 15px;
}

.fa-trash::before {
    content: "\f1f8";
    color: #fff;
}

.fa-add::before, .fa-plus::before {
    content: "\2b";
}

.fa-check-circle::before, .fa-circle-check::before {
    content: "\f058";
    margin-right: 10px;
}

.fa-circle-xmark::before, .fa-times-circle::before, .fa-xmark-circle::before {
    content: "\f057";
    margin-right: 10px;
}

.fa-arrow-alt-circle-right::before, .fa-circle-right::before {
    content: "\f35a";
    margin-right: 10px;
}

.fa-right-to-bracket::before, .fa-sign-in-alt::before {
    content: "\f2f6";
    margin-right: 10px;
}

.bs-stepper .step-trigger {
    padding: 10px;
    font-size: .9rem;
}

.bs-stepper-header {
    display: block;
    -ms-flex-align: center;
    align-items: center;
}

.pt-9rem {
    padding-top: 9rem;
}

.done.dropload select {
    pointer-events: auto;
    opacity: 1;
}

.done.dropload::before {
    display: none;
}

.card-img-absolute {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.biller-container a {
    color:#484848 !important;
}

.biller-category-container {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: auto auto auto;
    margin-bottom: 25px;
    background: #fff;
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(0);
    box-shadow: 0 0 0.625rem 0 rgba(76, 76, 76, .16), 0 0.25rem 0.5rem -0.375rem rgba(76, 76, 76, .8);
    cursor: pointer;
}


.biller-name-container {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: auto auto auto;
    margin-bottom: 25px;
    background: #fff;
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(0);
    box-shadow: 0 0 0.625rem 0 rgba(76, 76, 76, .16), 0 0.25rem 0.5rem -0.375rem rgba(76, 76, 76, .8);
    cursor: pointer;
    background: #254fa2;
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(0);
    color: #fff;
}

.biller-name-container:hover {
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(-.5rem);
}

.biller-category-container:hover {
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(-.5rem);
    border: 1px solid #254fa2;
}

.biller-name-containers a {
    color: #fff;
}

.grid-item {
    padding: 10px;
}

.biller-category-container > :nth-child(1),
.biller-category-container > :nth-child(2),
.biller-category-container > :nth-child(3) {
    border-bottom: 1px solid #eee;
}

.biller-category-container > :nth-child(2) {
    align-items: center;
    justify-content: center;
    display: flex;
}

.biller-category-container > :nth-child(4),
.biller-category-container > :nth-child(5),
.biller-category-container > :nth-child(6) {
    font-size: 12px;
}

.biller-category-container > :nth-child(4) > p:nth-child(2),
.biller-category-container > :nth-child(5) > p:nth-child(2),
.biller-category-container > :nth-child(6) > p:nth-child(2) {
    font-weight: 600;
}

.biller-category-container .grid-item > i {
    cursor: pointer;
}


.biller-name-container > :nth-child(1),
.biller-name-container > :nth-child(2),
.biller-name-container > :nth-child(3) {
    border-bottom: 1px solid #fff;
}

.biller-name-container > :nth-child(2) {
    align-items: center;
    justify-content: center;
    display: flex;
}

.biller-name-container > :nth-child(4),
.biller-name-container > :nth-child(5),
.biller-name-container > :nth-child(6) {
    font-size: 12px;
}

.biller-name-container > :nth-child(4) > p:nth-child(2),
.biller-name-container > :nth-child(5) > p:nth-child(2),
.biller-name-container > :nth-child(6) > p:nth-child(2) {
    font-weight: 600;
}

.biller-name-container .grid-item > i {
    cursor: pointer;
}

.biller-img-category-container {
    padding: 1rem;
    border: 1px solid #254fa2;
    border-radius: 7px;
    height: 55px;
    width: 55px;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #254fa2;
}

.biller-img-name-container {
    padding: 1rem;
    border: 1px solid #fff;
    border-radius: 7px;
    height: 55px;
    width: 55px;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #fff;
}

.tooltip > .arrow {
    background-color: transparent;
}

.tooltip > .tooltip-inner {
    text-align: center;
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 5px;
    color: black;
    background-color: white;
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.15);
    max-width: 270px !important;
    font-family: 'Poppins', 'Noto Sans Myanmar', sans-serif !important;
}

.bs-tooltip-top,
.bs-tooltip-right,
.bs-tooltip-left,
.bs-tooltip-bottom {
    background-color: transparent;
}

.tooltip.show {
    opacity: 1 !important;
}

.tooltip.bs-tooltip-top .arrow:before,
.tooltip.bs-tooltip-bottom .arrow:before {
    border-top-color: white;
    border-right-color: transparent;
    border-bottom-color: white;
    border-left-color: transparent;
}

.tooltip.bs-tooltip-right .arrow:before,
.tooltip.bs-tooltip-left .arrow:before {
    border-top-color: transparent;
    border-right-color: white;
    border-bottom-color: transparent;
    border-left-color: white;
}

#card-dxp i {
    position: absolute;
    top: 10px;
    right: 15px;
}

.card-sidebar {
    float: right;
    position: absolute;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 4px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #fff;
    cursor: pointer;
    top: 10%;
    left: 90%;
    transform: translate(-50%, -50%);
}

.card-sidebar div > a > i {
    color: #fff;
}

.card-sidebar .dropdown-menu {
    position: absolute;
    top: 73%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 25rem;
    padding: 0 !important;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: medium;
    border-radius: 0.25rem;
}

.card-sidebar .dropdown-menu {
    position: absolute;
    will-change: transform;
    top: 0px;
    left: 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translate3d(-158px, 23px, 0px) !important;
    border-top: 3px solid #ff741f;
}
/* ============================================================
    Responsive
=============================================================== */
    @media only screen and (min-width: 576px) {
        .summary-pd {
        padding: 0 0rem;
    }

    .form-pd {
        padding: 0 0rem;
    }

    .card-name-title {
        font-size: .95rem;
        margin-bottom: 1.2rem;
        font-weight: 500;
    }

    .card-feature-ml-15px {
        margin-left: 15px;
    }

    .card-feature ul li a {
        display: flex;
        margin-left: 10px;
    }

    .card-feature ul {
        list-style: none;
        display: block;
    }

    .card-feature ul li {
        text-align: center;
        padding: 5px;
        font-size: 15px;
        color: #254fa2;
        font-weight: 500;
    }

    #switch-check-alert label {
        font-weight: 400;
        display: inline-block;
        float: none;
        width: 45px;
        height: 24px;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: none;
        color: none;
        margin: 0;
        font-size: .95rem;
        border-left: none;
        border-bottom: none;
    }

    #switch-check label {
        font-weight: 400;
        display: inline-block;
        float: none;
        width: 50%;
        height: 24px;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: none;
        color: none;
        margin: 0;
        margin-top: 0px;
        font-size: .95rem;
        border-left: none;
        border-bottom: none;
    }

    .giro-btn {
        margin-top: 0rem;
    }

    .bs-stepper .step-trigger {
        padding: 10px;
        font-size: .9rem;
    }

    .bs-stepper-header {
        display: block;
        -ms-flex-align: center;
        align-items: center;
    }

    .mytask-btn-detail {
        float: none;
        margin-bottom: 1rem;
        margin-left: 1rem;
    }

    .mt-refresh {
        margin-top: 0rem;
    }

    .confirm-otp {
        margin-top: 2.3rem;
        color: #f21f12;
    }

    #beneficiary-details .tab_container label {
        font-weight: 400;
        display: block;
        float: left;
        width: auto;
        padding: 1.1em;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        margin: 0;
        font-size: .95rem;
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .beneficy-btn-add-new {
        margin-top: 1.5rem;
    }

    .beneficiary-text-box {
        margin-bottom: .5rem;
    }

    .beneficy-btn-search {
        margin-bottom: 0rem;
    }

    .containers {
        max-width: 1120px;
    }

    .mt-10 {
        margin-top: 2rem;
    }

    .login-form {
        padding: 15px 0px;
        color: #254fa2;
    }

    .login-text h2 {
        text-transform: uppercase;
        font-size: 1.9rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .login-text h3 {
        text-transform: uppercase;
        font-size: 1.3rem;
    }

    .download-pdf-btn a.button {
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        position: relative;
        padding: 0.5em 1em;
        padding-right: 1em;
        padding-right: 4em;
        background: #254fa2;
        border: none;
        color: white;
        transition: 0.2s;
        border-radius: 0.25rem;
        float: right;
        margin-bottom: 2rem;
        font-size: .9rem;
        margin-top: -2.4rem;
    }

    .site-navbar-pd {
        padding: 2.5rem;
    }

    .language-dropdown {
        display: inline-block;
        margin: 6px 0px;
    }

    .site-position {
        text-align: center;
    }

    .file-statement-pdf-btn {
        margin-top: 2.5rem;
    }

    .btn-group-file-statement {
        position: relative;
        display: -webkit-inline-box;
    }

    .request-info-btn #btnEdit {
        margin-bottom: .3rem;
    }

    .custom-radio-cbtocb input {
        display: block;
        padding-top: 1px !important;
    }

    .custom-radio-cbtocb {
        display: block;
        margin-top: -7px;
        margin-left: 2rem;
    }

    .custom-radio-cbtocb label {
        padding: 0;
    }

    .pdf-cbTocb-success {
        margin-top: 4rem;
    }

    .tws-statement-btn {
        margin-right: -2.5rem;
        margin-top: 1.1rem;
    }

    .span-error {
        float: right;
        margin-right: 1.5rem;
    }

    .span-error-bene {
        float: right;
        margin-right: 1.1rem;
    }
}

@media only screen and (min-width: 768px) {

    .summary-pd {
        padding: 0 0rem;
    }

    .form-pd {
        padding: 0 0rem;
    }

    .card-name-title {
        font-size: .95rem;
        margin-bottom: 1.2rem;
        font-weight: 500;
    }

    .card-feature-ml-15px {
        margin-left: 15px;
    }

    .card-feature ul li a {
        display: flex;
        margin-left: 10px;
    }

    .card-feature ul {
        list-style: none;
        display: block;
    }

    .card-feature ul li {
        text-align: center;
        padding: 5px;
        font-size: 15px;
        color: #254fa2;
        font-weight: 500;
    }

    #switch-check-alert label {
        font-weight: 400;
        display: inline-block;
        float: none;
        width: 45px;
        height: 24px;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: none;
        color: none;
        margin: 0;
        font-size: .95rem;
        border-left: none;
        border-bottom: none;
    }

    #switch-check label {
        font-weight: 400;
        display: inline-block;
        float: none;
        width: 50%;
        height: 24px;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: none;
        color: none;
        margin: 0;
        margin-top: 0px;
        font-size: .95rem;
        border-left: none;
        border-bottom: none;
    }

    .giro-btn {
        margin-top: 2rem;
    }

    .bs-stepper-header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .bs-stepper .step-trigger {
        padding: 0px;
        font-size: .8rem;
    }

    .mytask-btn-detail {
        float: none;
        margin-bottom: 1rem;
        margin-left: 1rem;
    }

    .mt-refresh {
        margin-top: 0rem;
    }

    .confirm-otp {
        margin-top: 2.3rem;
        color: #f21f12;
    }

    #beneficiary-details .tab_container label {
        font-weight: 400;
        display: block;
        float: left;
        width: auto;
        padding: 1.1em;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        margin: 0;
        font-size: .95rem;
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .beneficy-btn-add-new {
        margin-top: 1.2rem;
    }

    .beneficiary-text-box {
        margin-bottom: .5rem;
    }

    .beneficy-btn-search {
        margin-bottom: .5rem;
    }

    .containers {
        max-width: 1120px;
    }

    .mt-10 {
        margin-top: 5rem;
    }

    .login-form {
        padding: 70px 0px;
        color: #254fa2;
    }

    .login-text h2 {
        text-transform: uppercase;
        font-size: 2.2rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .login-text h3 {
        text-transform: uppercase;
        font-size: 1.5rem;
    }

    .download-pdf-btn a.button {
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        position: relative;
        padding: 0.5em 1em;
        padding-right: 1em;
        padding-right: 4em;
        background: #254fa2;
        border: none;
        color: white;
        transition: 0.2s;
        border-radius: 0.25rem;
        float: right;
        margin-bottom: 2rem;
        font-size: .9rem;
        margin-top: 0rem;
    }

    .site-navbar-pd {
        padding: 2.5rem;
    }

    .language-dropdown {
        display: inline-block;
        margin: 6px 1px;
    }

    .site-position {
        text-align: center;
    }

    .file-statement-pdf-btn {
        margin-top: 0rem;
    }

    .btn-group-file-statement {
        position: relative;
        display: -webkit-inline-box;
    }

    .request-info-btn #btnEdit {
        margin-bottom: .3rem;
    }

    .custom-radio-cbtocb {
        display: block;
        margin-top: -7px;
        margin-left: 2rem;
    }

    .custom-radio-cbtocb label {
        padding: 0;
    }

    .pdf-cbTocb-success {
        margin-top: 0rem;
    }

    .tws-statement-btn {
        margin-right: -1rem;
        margin-top: 0rem;
    }

    .span-error {
        float: right;
        margin-right: 1.5rem;
    }

    .span-error-bene {
        float: right;
        margin-right: 1.1rem;
    }
}

@media only screen and (min-width: 992px) {

    .summary-pd {
        padding: 0 0rem;
    }

    .form-pd {
        padding: 0 0rem;
    }

    .card-name-title {
        font-size: .95rem;
        margin-bottom: 1.2rem;
        font-weight: 500;
    }

    .card-feature-ml-15px {
        margin-left: 15px;
    }

    .card-feature ul li a {
        display: flex;
        margin-left: 10px;
    }

    .card-feature ul {
        list-style: none;
        display: block;
    }

    .card-feature ul li {
        text-align: center;
        padding: 5px;
        font-size: 15px;
        color: #254fa2;
        font-weight: 500;
    }

    #switch-check-alert label {
        font-weight: 400;
        display: inline-block;
        float: none;
        width: 45px;
        height: 24px;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: none;
        color: none;
        margin: 0;
        font-size: .95rem;
        border-left: none;
        border-bottom: none;
    }

    #switch-check label {
        font-weight: 400;
        display: inline-block;
        float: none;
        width: 50%;
        height: 24px;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: none;
        color: none;
        margin: 0;
        margin-top: 0px;
        font-size: .95rem;
        border-left: none;
        border-bottom: none;
    }

    .giro-btn {
        margin-top: 2rem;
    }

    .bs-stepper-header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .bs-stepper .step-trigger {
        padding: 0px;
        font-size: .9rem;
    }

    .mytask-btn-detail {
        float: right;
        margin-bottom: -2rem;
        margin-left: 0rem;
    }

    .mt-refresh {
        margin-top: 0rem;
    }

    .confirm-otp {
        margin-top: 2.3rem;
        color: #f21f12;
    }

    #beneficiary-details .tab_container label {
        font-weight: 400;
        display: block;
        float: left;
        width: auto;
        padding: 1.1em;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        margin: 0;
        font-size: .95rem;
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .beneficy-btn-add-new {
        margin-top: 0rem;
    }

    .beneficiary-text-box {
        margin-bottom: .5rem;
    }

    .beneficy-btn-search {
        margin-bottom: .5rem;
    }

    .containers {
        max-width: 1120px;
    }

    .social {
        overflow: hidden;
        margin-top: 0px;
    }

    .copyright-area {
        padding-top: 30px;
        border-top: 1px solid rgba(250,250,250,0.3);
        text-align: center;
    }

    .mt-10 {
        margin-top: 5rem;
    }

    .login-form {
        padding: 80px 0px;
        color: #254fa2;
    }

    .login-text h2 {
        text-transform: uppercase;
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .login-text h3 {
        text-transform: uppercase;
        font-size: 1.5rem;
    }

    .download-pdf-btn a.button {
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        position: relative;
        padding: 0.5em 1em;
        padding-right: 1em;
        padding-right: 4em;
        background: #254fa2;
        border: none;
        color: white;
        transition: 0.2s;
        border-radius: 0.25rem;
        float: right;
        margin-bottom: 2rem;
        font-size: .9rem;
        margin-top: 0rem;
    }

    .site-navbar-pd {
        padding: .5rem;
    }

    .language-dropdown {
        display: inline-block;
        margin: -52px 10px;
    }

    .site-position {
        text-align: center;
    }

    .file-statement-pdf-btn {
        margin-top: 0rem;
    }

    .btn-group-file-statement {
        position: relative;
        display: -webkit-inline-box;
    }

    .request-info-btn #btnEdit {
        margin-bottom: 0rem;
    }

    .custom-radio-cbtocb {
        display: block;
        margin-top: 0rem;
        margin-left: 2rem;
        margin-bottom: 11rem;
    }

    .custom-radio-cbtocb label {
        padding: 0;
    }

    .pdf-cbTocb-success {
        margin-top: 0rem;
    }

    .tws-statement-btn {
        margin-right: 0rem;
        margin-top: 0rem;
    }

    .span-error {
        float: right;
        margin-right: 1.5rem;
    }

    .span-error-bene {
        float: right;
        margin-right: 1.1rem;
    }
}

@media only screen and (min-width: 1200px) {

    .summary-pd {
        padding: 0 10rem;
    }

    .form-pd {
        padding: 0 1rem;
    }

    .card-name-title {
        font-size: .95rem;
        margin-bottom: 1.2rem;
        font-weight: 500;
    }

    .card-feature-ml-15px {
        margin-left: 0px;
    }

    .card-feature ul li a {
        display: block;
        margin-left: 0px;
    }

    .card-feature ul {
        list-style: none;
        display: flex;
    }

    .card-feature ul li {
        text-align: center;
        padding: 9px;
        font-size: 13px;
        color: #254fa2;
        font-weight: 500;
    }

    #switch-check-alert label {
        font-weight: 400;
        display: inline-block;
        float: none;
        width: 45px;
        height: 24px;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: none;
        color: none;
        margin: 0;
        font-size: .95rem;
        border-left: none;
        border-bottom: none;
    }

    #switch-check label {
        font-weight: 400;
        display: inline-block;
        float: none;
        width: 45%;
        height: 24px;
        padding: 0;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        background: none;
        color: none;
        margin: 0;
        margin-top: 0px;
        font-size: .95rem;
        border-left: none;
        border-bottom: none;
    }

    .giro-btn {
        margin-top: 2rem;
    }

    .bs-stepper-header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .bs-stepper .step-trigger {
        padding: 20px;
        font-size: 1rem;
    }

    .mytask-btn-detail {
        float: right;
        margin-bottom: -2rem;
        margin-left: 0rem;
    }

    .mt-refresh {
        margin-top: 0rem;
    }

    .confirm-otp {
        margin-top: 2.3rem;
        color: #f21f12;
    }

    #beneficiary-details .tab_container label {
        font-weight: 400;
        display: block;
        float: left;
        width: 27%;
        padding: 1.1em;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        margin: 0;
        font-size: .95rem;
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .beneficy-btn-add-new {
        margin-top: 0rem;
    }

    .beneficiary-text-box {
        margin-bottom: 0rem;
    }

    .beneficy-btn-search {
        margin-bottom: 0rem;
    }

    .containers {
        max-width: 1245px !important;
    }

    .dataTables_scrollBody {
        overflow: hidden !important;
    }

    .social {
        overflow: hidden;
        margin-top: 0px;
        text-align: center;
    }

    .copyright-area {
        padding-top: 30px;
        border-top: 1px solid rgba(250,250,250,0.3);
        text-align: left;
    }

    .mt-10 {
        margin-top: 5rem;
    }

    .login-form {
        padding: 80px 0px;
        color: #254fa2;
    }

    .login-text h2 {
        text-transform: uppercase;
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .login-text h3 {
        text-transform: uppercase;
        font-size: 1.5rem;
    }

    .download-pdf-btn a.button {
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        position: relative;
        padding: 0.5em 1em;
        padding-right: 1em;
        padding-right: 4em;
        background: #254fa2;
        border: none;
        color: white;
        transition: 0.2s;
        border-radius: 0.25rem;
        float: right;
        margin-bottom: 2rem;
        font-size: .9rem;
        margin-top: 0rem;
    }

    .site-navbar-pd {
        padding: .5rem;
    }

    .language-dropdown {
        display: inline-block;
        margin: -52px 10px;
    }

    .site-position {
        text-align: center;
    }

    .file-statement-pdf-btn {
        margin-top: 0rem;
    }

    .btn-group-file-statement {
        position: relative;
        display: -webkit-inline-box;
    }

    .request-info-btn #btnEdit {
        margin-bottom: 0rem;
    }

    .custom-radio-cbtocb {
        display: block;
        margin-top: -7px !important;
        margin-left: 2rem;
        margin-bottom: 10rem;
    }

    .custom-radio-cbtocb label {
        padding: 0;
    }

    .pdf-cbTocb-success {
        margin-top: 0rem;
    }

    .tws-statement-btn {
        margin-right: 0rem;
        margin-top: 0rem;
    }

    .span-error {
        float: right;
        margin-right: 1.5rem;
    }

    .span-error-bene {
        float: right;
        margin-right: 1.1rem;
    }
}

/*===============================================================*/

.dropload {
    position: relative;
}

.dropload::before {
    position: absolute;
    top: 0;
    left: 80px;
    z-index: 2;
}

.dropload select, .dropload::before {
    width: 100%;
    padding-top: 3px;
}

.dropload::before {
    content: "";
    background-image: url(../images/loading-bars.svg);
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 33px;
}

#cssLoader1.main-wrap .child-common {
    width: 8px;
    height: 50px;
    /*margin-right:5px;*/
    margin-right: 3px;
    background-color: #254fa2;
    -webkit-animation: animate1 1s infinite;
    animation: animate1 1s infinite;
    float: left;
}

#cssLoader1.main-wrap .child1 {
    margin-right: 3px;
}

#cssLoader1.main-wrap .child10 {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

#cssLoader1.main-wrap .child9 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

#cssLoader1.main-wrap .child8 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

#cssLoader1.main-wrap .child7 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

#cssLoader1.main-wrap .child6 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

#cssLoader1.main-wrap .child5 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#cssLoader1.main-wrap .child4 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

#cssLoader1.main-wrap .child3 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#cssLoader1.main-wrap .child2 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

@-webkit-keyframes animate1 {

    50% {
        -ms-transform: scaleY(0);
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@keyframes animate1 {
    50% {
        -ms-transform: scaleY(0);
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

.login-header {
    color: #254fa2;
    border-bottom: 1px solid #e5e5e5;
    text-align: center !important;
}

.login-body {
    padding: 0 20px;
}

.corporate-login-body {
    padding: 0px 20px;
}

.login-footer {
    padding: 0px 20px 10px;
    text-align: center;
}

.dd-list ol li {
    list-style: none;
}

.waitMe_container:not(body), body.waitMe_container .waitMe {
    overflow-x: hidden !important;
}


.border-top-none {
    border-top: none !important;
}

.biller-container {
    margin: 50px auto;
}

.biller-container .card {
    /* max-width: 220px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    position: relative;
    box-shadow: 0 0 0.625rem 0 rgba(76, 76, 76, .16), 0 0.25rem 0.5rem -0.375rem rgba(76, 76, 76, .8);
    cursor: pointer;
    height: 250px;
    border: none;
    /*border-radius: .8rem;*/
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(0);
}

.biller-container .card:hover {
    /* box-shadow: 0rem 0rem 0.625rem 0.0625rem rgba(0, 0, 0, 0.2);*/
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(-.5rem);
    border: 1px solid #254fa2;
}

.biller-container .card .fas.fa-arrow-right {
    position: absolute;
    bottom: -100px;
    background-color: #254fa2;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    opacity: 0;
    transform: translateY(50%);
    transition: all 0.5s ease;
}

.biller-container .card .fa-arrow-right::before {
    content: "\f061";
    margin-right: 0px;
}

.biller-container .card:hover .fas.fa-arrow-right {
    bottom: 0px;
    opacity: 1;
}

.biller-container .card i {
    font-size: 32px;
    background-color: #0000000d;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #254fa2;
}

.biller-container .card .h4 {
    font-size: 16px;
    color: #484848;
    text-align: center;
    font-weight: 500;
}

.biller-container .content {
    max-width: 300px;
}

.biller-container .content .h-6 {
    color: #4e9525;
    font-weight: 600;
}

.biller-container .content .btn.btn-primary {
    padding: 15px;
    background-color: #4e9525;
    color: white;
    border-radius: 0px;
    border: none;
    box-shadow: none;
}

.biller-container .card:hover i {
    color: #fdb941;
    background-color: #254fa2;
}

@media (max-width:990px) {
    .biller-container .content {
        max-width: 100%;
    }
}

@media (max-width:500px) {
    .btn span {
        display: none;
    }

    .biller-container .card {
        width: 100%;
    }

    .biller-container .content {
        padding: 25px;
    }
}

/*=======================================================*/

.category-margin-top {
    margin-top: -2.5rem;
}

#card-dxp, #card-commerce, #card-analytics-cloud {
    /* background-color: white;
    box-shadow: 0 0 0.625rem 0 rgba(76, 76, 76, .16), 0 0.25rem 0.5rem -0.375rem rgba(76, 76, 76, .8);
    height: 250px;
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(0);*/
    /*border-radius: 1rem;*/
    min-height: 270px;
    box-shadow: 0 0 0.625rem 0 rgba(76, 76, 76, .16), 0 0.25rem 0.5rem -0.375rem rgba(76, 76, 76, .8);
    border: none !important;
    background: linear-gradient(90deg, rgba(39,93,201,1) 0%, rgba(37,79,162,1) 48%, rgba(50,83,149,1) 100%);
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(0);
}

#card-dxp:hover, #card-commerce:hover, #card-analytics-cloud:hover {
    /*box-shadow: 0 0 0.875rem 0 rgba(76, 76, 76, .16), 0 0.5rem 1.125rem -0.5rem rgba(76, 76, 76, .8);
    height: 23rem;
    transform: translateY(0);
    transform: scale(1.1);
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    background:#254fa2;*/
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    transform: translateY(-.5rem);
    border: 1px solid #fff;
}

#card-dxp:hover .card-content h3 {
    /* color: #fff;*/
}

#card-dxp:hover .cta-icon, #card-commerce:hover .cta-icon, #card-analytics-cloud:hover .cta-icon {
    /*transform: translateX(0.5rem);
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);*/
}


@keyframes animate-link {
    0% {
        color: #0b63ce;
        opacity: 1;
        transform: translateY(0px);
    }

    30% {
        color: #0b63ce;
        opacity: 0;
        transform: translateY(0px);
    }

    60% {
        color: #fff;
        opacity: 0;
        transform: translateY(10px);
    }

    65% {
        color: #fff;
        opacity: 0.3;
        transform: translateY(10px);
    }

    100% {
        color: #fff;
        opactiy: 1;
        transform: translateY(0px);
    }
}

.card-container {
    display: flex;
    flex-grow: 1;
    /* margin: 0 3rem 0 3rem;*/
}

.card-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    width: 100%;
    margin-top: 1rem;
}

.cta-icon {
    transform: translateX(0.25rem);
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
}

.cta-link {
    color: #fff;
    margin: 0;
    text-align: center;
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
    font-size: 14px;
    display: block;
    padding: 10px;
}

.cta-link-container {
    position: absolute;
    bottom: 0rem;
    margin: 0 0 1.5rem 0;
    width: 100%;
}

#dxp-primary-blue, #dxp-more-blue, #commerce-primary-blue,
#commerce-more-blue, #analytics-cloud-primary-blue,
#analytics-cloud-more-blue {
    transition: .5s cubic-bezier(0.21, 0.66, 0.61, 1);
}

.card-content h3 {
    font-size: 16px;
    margin-top: 2rem;
    color: #fff;
    font-weight: 500;
}

.max-width {
    align-items: center;
    display: flex;
    margin: auto;
    margin-top: 15em;
    max-width: 75rem;
}

svg#dxp-curves, svg#commerce-curves, svg#analytics-cloud-curves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.onoffswitch {
    position: relative;
    width: 70px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 35px;
    padding: 0;
    line-height: 35px;
    font-size: 14px;
    color: black;
    font-weight: 500;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "ON";
    padding-left: 10px;
    background-color: #254fa2;
    color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 9px !important;
    background-color: #d42528;
    color: #FFFFFF;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    width: 24px;
    margin: 6px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 36px;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.onoffswitch label {
    font-weight: 400;
    display: block;
    float: none;
    width: 100%;
    padding: 0em;
    cursor: pointer;
    text-decoration: none;
    text-align: left;
    background: none;
    color: #fff;
    margin: 0;
    font-size: .95rem;
    border-left: none;
    border-bottom: none;
}

#corporate-rule .onoffswitch {
    position: relative;
    width: 105px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#corporate-rule .onoffswitch-checkbox {
    display: none;
}

#corporate-rule .onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
}

#corporate-rule .onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

#corporate-rule .onoffswitch-inner:before,
#corporate-rule .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 40px;
    padding: 0;
    line-height: 40px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    box-sizing: border-box;
}

#corporate-rule .onoffswitch-inner:before {
    content: "Enable";
    padding-left: 12px;
    background-color: #254fa2;
    color: #FFFFFF;
}

#corporate-rule .onoffswitch-inner:after {
    content: "Disable";
    padding-right: 8px !important;
    background-color: #d42528;
    color: #FFFFFF;
    text-align: right;
}

#corporate-rule .onoffswitch-switch {
    display: block;
    width: 29px;
    margin: 6px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 66px;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

#corporate-rule .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

#corporate-rule .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

#corporate-rule .onoffswitch label {
    font-weight: 400;
    display: block;
    float: none;
    width: 100%;
    padding: 0em;
    cursor: pointer;
    text-decoration: none;
    text-align: left;
    background: none;
    color: #fff;
    margin: 0;
    font-size: .95rem;
    border-left: none;
    border-bottom: none;
}

.datepicker table {
    color: #254fa2 !important;
    font-weight: 600;
}

.datepicker table tr td.disabled {
    color: white !important;
}

.date-readonly {
    background-color: white !important;
    cursor: auto !important;
}

.bill-icon {
    width: 75px;
}

.underline-text:hover,.underline-text {
    text-decoration: underline !important;
}

.invalid {
    border-color: #e74c3c !important;
}

.billing-header {
    color: #667c88;
    font-size: 1.3rem;
    font-weight: 400;
}