.indicator-progress {
    display: none !important;
}

[data-kt-indicator=on] > .indicator-progress {
    display: inline-block !important;
}

[data-kt-indicator=on] > .indicator-label {
    display: none !important;
}

.progress {
    display: flex;
    height: 8px;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #efecf3;
    border-radius: 0.375rem;
    box-shadow: none;
}

.avatar-upload {
    position: relative;
    max-width: 205px;
}
.avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}
.avatar-edit >input {
    display: none;
}
.avatar-edit > label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
}
.avatar-edit > label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}
.avatar-edit > label:after {
    content: "\eaa7";
    font-family: "Unicons" !important;
    color: #757575;
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}
.avatar-preview {
    width: 160px;
    height: 160px;
    position: relative;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border: 1px solid #d5d2dc;
    border-radius: 0.75rem;
    font-family: "Noto Sans",sans-serif;
    cursor: pointer;
}
.avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.upload__box {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px dashed #d5d2dc;
    border-radius: 0.75rem;
    font-family: "Noto Sans",sans-serif;
    min-height: 160px;
    height: auto;
    padding: 0px 10px;
}
.upload__inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.upload__img-box {
    width: 150px;
    padding: 0 10px;
    margin-bottom: 12px;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}
.upload__img-close:after {
    content: '\2716';
    font-size: 14px;
    color: white;
}

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

.page-loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s .2s ease-in-out;
    transition: all .4s .2s ease-in-out;
    background-color: #e2dcdcbf;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
  }
  .page-loading.active {
    opacity: 1;
    visibility: visible;
  }
  .page-loading-inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    opacity: 0;
  }
  .page-loading.active > .page-loading-inner {
    opacity: 1;
  }
  .page-loading-inner > span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-primary-color);
  }
  .page-spinner {
    display: inline-block;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: .75rem;
    vertical-align: text-bottom;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
  }

  @-webkit-keyframes spinner {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spinner {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  .card-nav {
    margin: 0;
    padding: 0;
    list-style: none
}

.card-nav li {
    margin-bottom: 0
}

.card-nav-link {
    position: relative;
    display: block;
    padding: 0.5rem 0;
    transition: color .25s ease-in-out,background-color .25s ease-in-out,box-shadow .25s ease-in-out,border-color .25s ease-in-out;
    border-top: 1px solid #efecf3;
    color: #454056;
    text-decoration: none
}

.card-nav-link::before {
    position: absolute;
    display: none;
    top: 0;
    left: -1.25rem;
    width: .125rem;
    height: 100%;
    background-color: var(--bs-primary-color);
    content: ""
}

.card-nav-link:hover {
    color: var(--bs-primary-color);
}

.card-nav-link.active {
    color: var(--bs-primary-color);
}

.card-nav-link.active::before {
    display: block
}

.card-nav-link>i {
    margin-top: -0.125rem;
    transition: opacity .25s ease-in-out
}

.card-nav-link:hover>i,.card-nav-link.active>i {
    opacity: 1 !important
}

.card-nav-light .card-nav-link,.card-light .card-nav-link {
    border-top-color: rgba(255,255,255,.15);
    color: rgba(255,255,255,.65)
}

.card-nav-light .card-nav-link::before,.card-light .card-nav-link::before {
    background-color: #fff
}

.card-nav-light .card-nav-link:hover,.card-light .card-nav-link:hover {
    color: #fff
}

.card-nav-light .card-nav-link.active,.card-light .card-nav-link.active {
    color: #fff
}

.custom-link {
    text-decoration: none;
    padding: 1rem 0.5rem;
    font-weight: 500;
    color: #020202;
}
.custom-link:hover {
    color: var(--bs-primary);
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

.sticky-top-80px {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    z-index: 1005;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1005;
}

.offcanvas-backdrop{
    width: 100% !important;
    height: 100% !important;
}

.input-group-border-left {
    border-top-left-radius: 0.4rem !important;
    border-bottom-left-radius: 0.4rem !important;
}

.input-group-border-left-unset{
    border-top-left-radius: unset !important;
    border-bottom-left-radius: unset !important;
}

.pl4 {
    justify-content: space-between;
}
.pl4__a, .pl4__b, .pl4__c, .pl4__d {
    width: 0.75em;
    height: 0.75em;
}
.pl4 {
    align-items: flex-end;
}
.pl4__a, .pl4__b, .pl4__c, .pl4__d {
    animation: bounce4 2s linear infinite;
    transform-origin: 50% 100%;
}
.pl4 {
    display: flex;
    margin: 1.5em;
    width: 6em;
    height: 6em;
}
.pl4__a {
    background: #f42f25;
}
.pl4__b {
    background: #f49725;
    animation-delay: 0.1s;
}
.pl4__c {
    background: #255ff4;
    animation-delay: 0.2s;
}
.pl4__d {
    background: #9725f4;
    animation-delay: 0.3s;
}

@keyframes bounce4 {
    from, 20%, 40%, 60%, 80%, to {
        transform: scaleY(1);
        animation-timing-function: ease-out;
    }
    10% {
        transform: scaleY(8);
        animation-timing-function: ease-in;
    }
    30% {
        transform: scaleY(4);
        animation-timing-function: ease-in;
    }
    50% {
        transform: scaleY(2);
        animation-timing-function: ease-in;
    }
    70% {
        transform: scaleY(1.5);
        animation-timing-function: ease-in;
    }
}

#setup_progress {
    background-color: var(--bs-primary-color);
}

.modal-slider{
    max-width: 100%;
    position: relative;
    margin: auto;
    max-height: 100%;
}
.modal-slider .item img {
    object-fit: cover;
    padding: 10px;
    width: 100%;
    max-height: 100%;
}

.modal-slider .previous, .modal-slider .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}
.modal-slider .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.modal-slider .previous:hover,
.modal-slider .next:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.modal-slider .item {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {
        opacity: 0.4
    }
    to {
        opacity: 1
    }
}

@media (min-width: 1200px){
    #website_setup_modal .modal-xl{
        
    --bs-modal-width: 780px;
    }
}

.border-radius-100{
    border-radius: 100% !important;
}

.max-w-550px{
    max-width: 550px !important;
}

.w-700{
    width: 700px !important;
}

.form-control:focus, .form-select:focus:focus{
    border-color: var(--bs-primary-color);
}


.mb-1-5rem{
    margin-bottom: 1.5rem;
}

.tabel-padding-10 td, .tabel-padding-10 th {
    padding: 10px !important;
}

.max-w-515px{
    max-width: 515px !important;
}

.custom-form-control-sm {
    min-width: 2.5rem;
    padding: 0.2rem 0.5rem;
    background-position: right 0.4rem center;
    min-height: calc(1.7em + 0.8rem + 2px);
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 0.4rem;
}

footer.bg-light a,
footer.bg-pale-aqua a,
footer.bg-pale-purple a ,
footer.bg-pale-leaf a {
    --bs-text-opacity: 1;
    color: var(--bs-body-color) !important;
}

.text-ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
}

.category-block:hover{
    border-radius: 0.4rem;
    border: 1px solid var(--bs-body-color) !important;
    background-color: var(--bs-soft-primary-color) !important;
}

.ui-widget {
    font-family: inherit;
    list-style: none;
    font-size: 14px;
}

.ui-autocomplete {
    z-index: 9999;
}

.ui-autocomplete .ui-menu-item {
    padding: 5px 10px;
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.ui-autocomplete li.search-product-wapper span.product-name {
    font-family:var(--bs-body-font-family);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000 !important;
}

span.product-name span {
    color: var(--bs-primary-color);
}


.ui-autocomplete li.search-product-wapper span.product-uom-form {
    font-size: 12px;
}

.ui-autocomplete li.search-product-wapper span.product-uom-form .breadcrumb{
    margin-bottom:2px;
}
.ui-autocomplete li.search-product-wapper span.product-uom-form .breadcrumb .breadcrumb-item{
    font-size:12px;
    font-family:var(--bs-body-font-family);
    padding-left: unset;
    padding-right: 3px;
}

.ui-autocomplete li.ui-menu-item.ui-state-hover,
.ui-autocomplete li.ui-menu-item.ui-state-focus {
    border: 0px solid transparent;
    background: #cccccc;
    font-weight: inherit;
    color: inherit;
}

.ui-autocomplete li.ui-menu-item.ui-state-hover a,
.ui-autocomplete li.ui-menu-item.ui-state-focus a{
    color: inherit;
}

.ui-menu .ui-menu-item-wrapper{
    padding:unset !important;
}

.toc-sticky {
    position: sticky;
    top: 95px;
}

.is-active-link {
    color: var(--bs-primary-color) !important;
}

.is-active-link::before {
    background-color: var(--bs-primary-color) !important;
}

.btn-read-more {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    max-height: 1.5rem !important;
    font-size: 16px !important;
}
.btn.btn-read-more:before {
    content: "";
    transition: all .45s cubic-bezier(.65,0,.076,1);
    width: auto;
    height: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5rem;
    border-radius: 50rem;
    z-index: 0;
}

.btn.btn-read-more i {
    position: absolute;
    z-index: 2;
    width: 1.5rem;
    height: 1.5rem;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    font-size: calc(1.0rem + .12vw);
    transition: all .45s cubic-bezier(.65,0,.076,1);
}

.btn.btn-read-more span {
    position: relative;
    z-index: 2;
    padding-left: 1.95rem;
}

.i2-pros-cons-main-wrapper .i2-pros-cons-wrapper {
    display: table;
    width: 100%;
}

.i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-pros, .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-cons {
    display: table-cell;
    width: 50%;
    margin-bottom: 15px;
    position: relative;
}

.i2-pros-cons-wrapper .i2-cons, .i2-pros-cons-wrapper .i2-pros {
    border: 1px solid #d4d4d4;
}

.i2-pros-cons-wrapper .i2-pros-title {
    background-color: #00bf08 !important;
}
.i2-pros-cons-wrapper .i2-cons-title {
    background-color: #ff0000!important;
}

.i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-pros .i2-pros-title, .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-pros .i2-cons-title, .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-cons .i2-pros-title, .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-cons .i2-cons-title {
    color: #fff;
    padding: 5px 15px 5px;
    margin: 0;
    font-size: 22px;
    display: block;
}

.i2-pros-cons-wrapper .i2-cons-title, .i2-pros-cons-wrapper .i2-pros-title {
    color: #ffffff!important;
}

.i2-pros-cons-wrapper .i2-cons-title, .i2-pros-cons-wrapper .i2-pros-title {
    text-align: center!important;
}

.i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-pros .section, .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-cons .section {
    padding-bottom: 15px;
    padding-top: 5px;
}

.i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-pros .section ul, .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-cons .section ul {
    margin: 0;
    padding: 0;
    padding-right: 15px;
    list-style: outside none none !important;
}
.i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-pros .section ul li, .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-cons .section ul li {
    padding-left: 30px;
    list-style: outside none none !important;
    position: relative;
}

@media only screen and (min-width: 993px){
    .no-space-between-column .i2-pros {
        border-right: none !important;
    }
}
@media only screen and (max-width: 992px){
    .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-pros, .i2-pros-cons-main-wrapper .i2-pros-cons-wrapper .i2-cons, .space-between-column .i2-pros-cons-wrapper .i2-pros, .space-between-column .i2-pros-cons-wrapper .i2-cons {
        display: block !important;
        width: 100% !important;
        float: initial;
    }
}

.related-post-img{
    height: 250px !important;
}

.archive-post-img{
    height: 300px !important;
}

.slider-post-figure img {
    height: 320px !important;
}

.auth-social .btn:hover .uil{
    color: #fff !important;
}

span.price-off {
    color: #000;
    font-weight: 500;
    font-size: small;
}
.pricing-list-row {
    border: var(--bs-border-width) solid rgba(164,174,198,.2);
    margin-bottom: 6px;
    border-radius: 8px;
}
.pricing-selected {
    border-color: var(--bs-primary);
}

.complete-check {
    background-image: url(/img/svg/check-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.website-action-dropdown {
    min-width: auto;
    transform: translate(-25px, 30px) !important;
    box-shadow: 0 .25rem 1.75rem rgba(30,34,40,.13)!important;
}
.website-action-dropdown li{
    padding:2px 0px;
}
.language-markup {
    background: #000 !important;
}

.help-heading {
    display: block;
    margin-bottom: 10px;
    color: #1D2B36;
    font-weight: 700;
}

.help-block {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-field-choices .inline.form-choice-option{
    width:auto !important;
}

.required:after{content:"*";position:relative;font-size:inherit;color:var(--bs-danger);padding-left:.25rem;font-weight:600}

.boder-left-radius-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.boder-right-radius-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

img.hero-img-brdr-radius-85 {
    border-top-right-radius: 16px;
    border-top-left-radius: 85px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 85px;
}

.border-radius-lt-rb-70 {
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
}

.h-550px{
    height: 550px !important;
}

.border-left-0 {
    border-left: 0 !important;
}
.border-right-0 {
    border-right: 0 !important;
}

.btn-bg-hover-white:hover{
    background-color: #ffffff60 !important;
}


@media (min-width: 601px) and (max-width: 1200px) {
    .h-md-410px{
        height: 410px !important;
    }
    .pagination .page-link {
        width: 2rem;
        height: 2rem;
    }
}
    
@media (max-width: 600px) {
    .h-sm-auto{
        height: auto !important;
    }
    .pagination .page-link {
        width: 1.8rem;
        height: 1.8rem;
    }
}

.poweredby-link {
    color: inherit !important;
}
.poweredby-link:hover {
    color: inherit !important;
}