/*

Template: Customised CSs

*/
/* Login Screen*/

.signin_head {

}
    .signin_head:after {
        content: " ";
        width: 70px;
        height: 5px;
        background: #405189;
        color: #0b163f;
        display: block;
        margin-top: 8px;
    }
.setup-content label, .form-label {
    font-weight: 400;
    margin: 0;
}
.red_star {
    color: #d7373f;
}
.inlineError {
    color: #d7373f !important;
    font-size: 13px;
    padding-top: 8px;
}
.setup-content .form-control, .form-control {
    border: 1px solid #C8C8C8;
    padding: 0.65rem;
}
/* login Right*/
.banner-sec {
    position: relative;
    display: block;
}
.banner-text-upper {
    position: absolute;
    text-align: center;
    z-index: 999;
    top: 100px;
    margin:;
    width: 100%;
    /* margin: 0 5%; */
}
    .banner-text-upper h2 {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    width: 60%;
    margin: 0 auto;
}
.banner-text-upper p {
    color: #fff;
    margin-top: 15px;
    font-size: 18px;
}
/* Login slider */
.carousel {
    position: relative;
}

    .carousel.pointer-event {
        -ms-touch-action: pan-y;
        touch-action: pan-y;
    }

.carousel-inner {
    position: relative;
    width: 100%;
    min-height: 700px;
}

    .carousel-inner::after {
        display: block;
        clear: both;
        content: "";
    }

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        -webkit-transition: none;
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

    /* rtl:begin:ignore */
    .carousel-item-next:not(.carousel-item-start),
    .active.carousel-item-end {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    .carousel-item-prev:not(.carousel-item-end),
    .active.carousel-item-start {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

/* rtl:end:ignore */
.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none;
}

    .carousel-fade .carousel-item.active,
    .carousel-fade .carousel-item-next.carousel-item-start,
    .carousel-fade .carousel-item-prev.carousel-item-end {
        z-index: 1;
        opacity: 1;
    }

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0s 0.6s;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
        -webkit-transition: none;
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 300px;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
        -webkit-transition: none;
        transition: none;
    }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

    .carousel-indicators [data-bs-target] {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        padding: 0;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: 0.5;
        -webkit-transition: opacity 0.6s ease;
        transition: opacity 0.6s ease;
    }

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators [data-bs-target] {
        -webkit-transition: none;
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
    -webkit-filter: invert(1) grayscale(100);
    filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #0c0800;
}

.carousel-dark .carousel-caption {
    color: #0c0800;
}
.carousel-inner {
    border-radius: 0;
    overflow: hidden;
}
.carousel-caption {
    text-align: center;
    /* left: 5%; */
}
.banner-text {
    width: 96%;
    position: absolute;
    margin: 0 auto;
    /* margin-left: 12%; */
    top: 100px;
}
    .banner-text h2 {
        color: #fff;
        font-weight: bold;
        text-transform: capitalize;
        font-size: 1.5rem;
        text-align: center;
        color: #0b163f;
    }
    .banner-text p {
        color: #0b163f;
        text-align: center;
    }


.fw-bold {
    font-weight: 800 !important;
}
.text-center {
    text-align: center !important;
}
.btn-block {
    display: block;
    width: 100% !important;
}
.banner-sec a {
    font-size: 15px;
    font-weight: 600;
}
.carousel-control-prev-icon {
    background-image: url(../images/previous-arrow.svg);
}
.carousel-control-next-icon {
    background-image: url(../images/next-arrow.svg);
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    fill: #000000;
}
.carousel-indicators li {
    background-color: rgb(189 188 188 / 70%);
    background-color: rgb(189 188 188 / 70%);
}
.carousel-indicators .active {
    background-color: #405189;
}
.over_flow {
    overflow:hidden;
}
select.form-select {
    background-image: url(../images/dropdown-arrow.svg) !important;
    height: auto !important;
}

input[type]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder, select.form-select {
    font-size: 0.875rem;
}
.btn-back {
    background-color: transparent;
    border-color: #405189;
    color: #405189;
}
.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.375em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(12, 8, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}
.form-check-input[type=radio] {
    border-radius: 50%;
}
.form-check-input:checked {
    background-color: #405189;
    border-color: #405189;
}
    .form-check-input:checked[type=radio] {
       background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    }

.action_icon {
    text-align: right;
    margin-bottom: 10px;
    overflow: hidden;
}
    .action_icon img {
        text-align: left;
        float: left;
    }
.action_icon a {
    margin-left: 15px;
    display: inline-block;
}
    .action_icon a i {
        color: #575757;
    }

hr {
    margin: 0 0;
    color: rgba(11, 22, 63, 0.12);
    background-color: rgba(11, 22, 63, 0.12);
    border: 0;
    opacity: 1;
    height: 1px;
    width: 100%;
}
.bg-light {
    background-color: #f8f9fa !important;
}
.print-border-top {
    border-top: rgba(11, 22, 63, 0.12);
}
.printTable .pad-10 {
    padding: 10px 0;
    margin: 0;
}
.float-end {
    float: right !important;
}
.text-black {
    opacity: 1;
    color: #000000 !important;
}
.pricing-section {
}
.card-wrap {
    background: #ffffff;
}
    .card-wrap .header {
        color: #313541;
        font-size: 18px;
        font-weight: 400;
        padding: 0 0 10px 0;
        margin-bottom: 30px;
        border-bottom: 1px solid #e5e5e5;
    }
        .card-wrap .header span {
            border: 1px solid #CCCCCC;
            padding: 5px;
            color: #CCCCCC;
            font-size: 14px;
            border-radius: 50%;
            min-width: 30px;
            min-height: 30px;
            text-align: center;
            line-height: 20px;
            display: inline-block;
            margin-left: 7px;
        }


.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(12, 8, 0, 0.125);
    border-radius: 0.3125rem;
}
.card {
    border: 0;
}
.pricing-section .card {
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}
.card.checkbox-active-app {
    border: 1px solid #b2c3fd;
    background: #f9fdff;
}


.module-select-checkbox {
    position: absolute;
    right: 15px;
    width: 14px;
    heighT: 15px;
}
input[type=checkbox].module-select-checkbox {
    accent-color: #405189;
}
.pricing-section .price-module-img {
    margin-right: 12px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background: #405189;
    border-radius: 6px;
}
.card-head span {
    line-height: 22px;
    font-weight: bold;
    color: #000000;
    display: inline-block;
    /*padding-top: 20px;*/
}
@media (min-width: 768px) {
    .order-md-last {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
}

.order-md-last h4 {
    color: #313541;
    font-size: 20px;
    font-weight: 600;
    padding: 25px 20px;
    background: #ffffff;
    margin-bottom: 0;
}
.order-md-last table {
    background: #ffffff;
}
.order-md-last tbody tr {
    border: 0;
    padding: 1rem;
    border-bottom: 1px dashed #e5e5e5;
}
.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.product_cart_img {
    margin-right: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background: #405189;
    border-radius: 6px;
}
.order-md-last h6 {
    display: inline-block;
    font-size: 15px;
}
.form-group {
    margin-bottom: 20px;
}
.position-relative {
    position: relative !important;
}
.form-control-lg {
    min-height: calc(1.75em + 1.5rem + 2px);
    padding: 0.75rem 1.25rem;
    font-size: 1.0625rem;
    border-radius: 0.4375rem;
}
.resend-btn {
    border: 0;
    outline: none;
    background: #ffffff;
    color: #405189;
}
small, .small {
    font-size: 0.8em;
}
.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}
.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}
.progressstimer {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}
.progressstimer img {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    -webkit-animation: rotating 1s linear infinite;
    animation: rotating 1s linear infinite;
}
b, strong {
    font-weight: bolder;
}
.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.3125rem;
}
.verify-alert {
    border-radius: 0;
    background: #405189;
    border-color: #405189;
    color: #ffffff;
}
.alert-dismissible {
    padding-right: 3rem;
}
.close {
    border: 0;
    background: transparent;
    font-size: 32px;
}

.filter_bar {
    background: #ffffff;
    margin-bottom: 2px;
}
    .filter_bar .nav-tabs {
        justify-content: center;
    }
    .filter_bar .nav-tabs {
        border-bottom: 0px solid #e2e8f0;
    }
        .filter_bar .nav-tabs .nav-link {
            border: 0;
            background: transparent;
            border-radius: 0;
            border-bottom: 1px solid transparent;
            padding: 16px 27px 10px;
        }
    .filter_bar .nav-link.active {
        background: rgba(41,156,219,.1);
        border-bottom: 2px solid #405189;
        color: #405189;
    }
.order-md-last table th {
    font-weight: bold;
    font-size: 15px;
    color: #000000;
}
.order-md-last .table > :not(:first-child) {
    border-top: 2px solid #e5e5e5;
}
.product_cart_img {
    margin-right: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background: #405189;
    border-radius: 6px;
}
.order-md-last tbody tr.trfooter {
    border-bottom: 0px dashed #e5e5e5;
}
.order-md-last tbody tr.noborder-tr {
    border-color: transparent;
}
.order-md-last tbody tr.trfooter td {
    color: #3A443C;
    padding: 15px 7px;
    color: #000000;
    font-size: 15px;
}
.order-md-last tbody tr {
    border: 0;
    padding: 1rem;
    border-bottom: 1px dashed #e5e5e5;
}
.order-md-last tbody tr.noborder-tr {
    border-color: transparent;
}
    .order-md-last tbody tr.total-footer td {
        padding: 15px 7px 25px 7px;
        font-weight: bold;
        color: #000000;
        font-size: 17px;
    }
.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #dee2e6;
}
.price-h6 {
    margin-top: 15px;
    font-weight: 400;
    font-size: 0.8125rem;
    color: #575757;
    margin-bottom: 0;
}
.card-head span.text-black-50 {
    color: #000000 !important;
    font-weight: bolder;
}
.card-footer {
    padding: 0.5rem 1rem;
    background-color: rgba(12, 8, 0, 0.03);
    border-top: 1px solid rgba(12, 8, 0, 0.125);
}
.card-footer {
    border-top: 1px solid #cfcccc;
    margin-top: 15px;
    padding: 0;
    padding-top: 15px;
    background-color: transparent;
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.3125rem - 1px) calc(0.3125rem - 1px);
}
.user-num {
    font-size: 12px;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #f8f9fa;
    opacity: 1;
}
.price-wrap input[type=number].number_input {
    width: 70px;
    border: 0;
    outline: none;
    padding: 0;
    min-height: 10px;
    height: 16px;
    font-weight: bold;
    font-size: 16px;
    background-color: #ffffff;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.price-wrap .btn-sm, .price-wrap .btn-sm:hover, .price-wrap .btn-sm:focus {
    border-color: #575757;
    Background: #ffffff;
    border-radius: 50%;
    border-width: 1px;
    outline:none;
    box-shadow:none;
}
.price-wrap .btn-left {
    border-radius: 18px 0 0 18px !important;
    border-right: 0;
}
.price-wrap .btn-right {
    border-radius: 0 18px 18px 0 !important;
}
.price-wrap .input-group .btn {
    position: relative;
    z-index: 2;
    padding: 4px 12px;
}

.btn > i {
    vertical-align: middle;
}
.price-wrap .btn-sm i {
    color: #575757;
}
/* Onboarding */
.onboarding h4 {
    padding: 0;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
/* Onboarding -->  Wizard */
.stepwizard-step p {
    margin-top: 10px;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
    background: #ffffff;
    color: #c3c3c3;
    box-shadow: rgb(0 0 0 / 13%) 0px 5px 15px;
    border: 1px solid #ffffff;
}

.stepwizard-step .btn-primary, .stepwizard-step .btn-primary:hover {
    border: 1px solid #405189;
    color: #405189 !important;
    background: #ffffff;
}

.avatar {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}

.select-box .avatar {
    background-color: var(--WinDOORS-theme-color);
    border-radius: var(--WinDOORS-rounded);
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    margin-bottom: 5px;
}

.avatar.avatar-60 {
    line-height: 58px;
    height: 60px;
    width: 60px;
}

.avatar > img {
    max-width: 64%;
}

.subscription-sec {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

    .subscription-sec .form-select {
        border: 0;
        padding: 0;
        line-height: 22px;
        color: #000000;
        box-shadow: none;
    }

    .subscription-sec select optgroup {
        padding: 5px;
        font-size: 14px;
    }

    .subscription-sec .table > :not(caption) > * > * {
        box-shadow: none;
        border: 0;
    }

    .subscription-sec .table tr {
        border: 0;
        color: #000000;
        padding: 2rem;
    }

        .subscription-sec .table tr:first-child {
            border: 0;
            padding: 1rem;
            border-bottom: 1px solid #e5e5e5;
        }

        .subscription-sec .table tr:last-child {
            border: 0;
            padding: 1rem;
            border-top: 1px solid #e5e5e5;
        }

    .subscription-sec .table td b {
        padding: 0;
    }

tr.total-price {
    font-size: 18px;
}

.setup-content h3 {
    font-size: 1.25rem;
    margin: 0;
    text-transform: uppercase;
}

.setup-content p {
    font-size: 1rem;
}

.form-group {
    margin-bottom: 20px;
}

.setup-content .form-control, .form-control {
    border: 1px solid #C8C8C8;
    padding: 0.65rem;
}

.setup-content label, .form-label {
    font-weight: 400;
    margin: 0;
}
.vidth_100 input[type=text], .vidth_100 input[type=password], .vidth_100 input[type=number],
.vidth_100 input[type=email], .vidth_100 input[type=file],
.vidth_100 input[type=tel], .vidth_100 select {
    width: 100%;
    min-height: 50px;
}
}

.setup-content .input-group-text {
    background-color: #ffffff;
    border: 1px solid #C8C8C8;
    margin-left: -1px;
}
.btn-primary {
    color: #fff;
    background-color: #405189;
    border-color: #405189;
}

.onboarding {
    background: #ffffff;
    overflow: hidden;
}
.css-356 {
    padding: 60px 60px;
    overflow:hidden;
}
.setup-content h3 {
    font-size: 1.25rem;
    margin: 0;
    text-transform: uppercase;
}
.setup-content p {
    font-size: 1rem;
}
.setup-content label, .form-label {
    font-weight: 400;
    margin: 0;
}
.border-left-side {
    border-left: 1px solid #E1E1E1;
}


.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}
.divider-bar {
    width: 100%;
    min-height: 1px;
    background-color: #c0c0c5;
}
.divider-text {
    width: 60px;
    min-width: 60px;
    line-height: 1.056em;
    background-color: #f8f9fa !important;
    text-align: center !important;
    position: absolute !important;
    font-weight: 500;
    font-size: 1.0625rem;
    color: #979494;
}
.integration-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 25px;
    justify-items: center;
}
    .integration-list li {
        width: 100%;
    }
        .integration-list li .single-integration {
            -webkit-box-shadow: rgb(13 21 55 / 6%) 0 5px 50px;
            box-shadow: rgb(13 21 55 / 6%) 0 5px 50px;
            display: block;
            margin: auto;
            text-align: center;
            background: #F0F0F0;
            padding: 20px;
            border-radius: 6px;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }
            .integration-list li .single-integration img {
                width: 100%;
                height: auto;
                max-width: 55px;
                margin: auto;
            }
    .integration-list h6 {
        font-weight: normal;
        text-align: center;
    }
.modal-body {
    padding: 15px 35px;
}
.address_header a {
    color: #405189;
}
.popover {
    position: absolute;
    top: 0;
    left: 0 /* rtl:ignore */;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.75;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(12, 8, 0, 0.2);
    border-radius: 0.4375rem;
}
    .popover .popover-arrow {
        position: absolute;
        display: block;
        width: 1rem;
        height: 0.5rem;
    }
.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
    bottom: calc(-0.5rem - 1px);
}
bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(0,0,0,.25);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(12, 8, 0, 0.25);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #fff;
}
.popover-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: .8rem;
    color: #0b163f;
    background-color: #ffffff;
    border-bottom: 0;
    /* border-top-left-radius: calc(0.4375rem - 1px); */
    /* border-top-right-radius: calc(0.4375rem - 1px); */
    font-weight: normal;
    color: #000000;
    border-radius: 6px;
}
.popover-body {
    padding: 0 !important;
    /* color: #212529; */
}
.paymet_meth.form-select {
    border: 0 !important;
}
