body.light .no-light {
    display: none !important
}

body:not(.light) .no-dark {
    display: none !important
}

.amd-mini-dashboard p {
    color: var(--amd-text-color);
    font-size: 15px;
}
.amd-mini-dashboard mark {
    background: var(--amd-primary-x-low);
    color: var(--amd-primary);
}
.amd-mini-dashboard address {
    font-size: 16px;
    background: var(--amd-wrapper-fg);
    padding: 12px;
    border: 1px solid rgba(var(--amd-primary-rgb), .2);
    border-radius: 9px;
}
.amd-mini-dashboard h1,
.amd-mini-dashboard h2,
.amd-mini-dashboard h3,
.amd-mini-dashboard h4,
.amd-mini-dashboard h5,
.amd-mini-dashboard h6 {
    font-family: var(--amd-title-font);
    color: var(--amd-title-color);
    margin: 8px 0;
}

.amd-mini-dashboard-main {
    position: relative;
    box-sizing: border-box;
    font-family: var(--amd-font-family);
    max-width: 1000px;
    margin: auto;
    padding: 16px;
}
.amd-mini-dashboard {
    box-sizing: border-box;
    background: var(--amd-wrapper-bg);
    width: 100%;
    padding: 16px;
    border-radius: 8px;
}
.amd-md-tab-content {
    display: none;
}

.amd-md-btn {
    font-family: var(--amd-title-font);
    font-size: 15px;
    background: var(--amd-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px !important;
    cursor: pointer;
    text-decoration: none;
    transition: color ease .3s, background-color ease .3s;
    min-width: 80px;
}
.amd-md-btn:hover {
    border: none;
}
.amd-md-btn.low:hover {
    filter: brightness(.9);
}
.amd-md-btn.low {
    background: var(--amd-primary-x-low);
    color: var(--amd-primary);
    filter: brightness(1);
    transition: all ease .3s;
}
body.dark .amd-md-btn.low {
    color: #fff;
}
.amd-md-btn.red {
    background: var(--amd-color-red);
    color: #fff;
    border-color: rgba(var(--amd-color-red-rgb), .3) !important;
}
.amd-md-btn.low.red {
    background: rgba(var(--amd-color-red-rgb), .2);
    color: var(--amd-color-red);
}
.amd-md-btn.green {
    background: var(--amd-color-green);
    color: #fff;
    border-color: rgba(var(--amd-color-green-rgb), .3) !important;
}
.amd-md-btn.low.green {
    background: rgba(var(--amd-color-green-rgb), .2);
    color: var(--amd-color-green);
}
.amd-md-btn.blue {
    background: var(--amd-color-blue);
    color: #fff;
    border-color: rgba(var(--amd-color-blue-rgb), .3) !important;
}
.amd-md-btn.low.blue {
    background: rgba(var(--amd-color-blue-rgb), .2);
    color: var(--amd-color-blue);
}
.amd-md-btn.orange {
    background: var(--amd-color-orange);
    color: #fff;
    border-color: rgba(var(--amd-color-orange-rgb), .3) !important;
}
.amd-md-btn.low.orange {
    background: rgba(var(--amd-color-orange-rgb), .2);
    color: var(--amd-color-orange);
}
.amd-md-btn.black {
    background: var(--amd-title-color);
    color: var(--amd-wrapper-bg);
    border-color: rgba(var(--amd-title-color-rgb), .3) !important;
}
.amd-md-btn.low.black {
    background: rgba(var(--amd-title-color-rgb), .2);
    color: var(--amd-title-color);
}

.amd-md-card-grid,
.amd-md-btn.icon,
.amd-md-tabs > *,
.amd-md-tabs {
    display: flex;
    align-items: center;
    justify-content: start;
}
.amd-md-tabs {
    flex-wrap: wrap;
    border-radius: 8px;
    gap: 8px;
}
.amd-md-tabs > .tab {
    flex: 1;
    border: 1px solid rgba(var(--amd-primary-rgb), .2);
    white-space: nowrap;
    min-width: 150px;
}
body.dark .amd-md-tabs > .tab {
    color: #fff;
}
.amd-md-tabs > .tab:hover {
    border: 1px solid rgba(var(--amd-primary-rgb), .2);
}
.amd-md-btn.icon {
    justify-content: space-between;
    gap: 8px;
}
.amd-md-btn.icon > span {
    font-size: 15px;
}
.amd-md-card-grid * {
    box-sizing: border-box;
}
.amd-md-card-grid {
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
}
.amd-md-card-grid > .--item {
    flex: 0 0 50%;
    padding: 8px;
}
.amd-md-card {
    background: var(--amd-wrapper-fg);
    padding: 8px;
    border-radius: 10px;
    border: 1px solid rgba(var(--amd-text-color-rgb), .1);
}
.amd-md-card.stretch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.amd-md-card ._title {
    color: var(--amd-title-color);
    font-size: 15px;
    font-family: var(--amd-title-font);
    margin: 0;
    text-align: center;
    width: 100%;
    padding: 8px 16px 12px;
    border-bottom: 1px solid rgba(var(--amd-text-color-rgb), .1);
}
.amd-md-card ._content {
    color: var(--amd-text-color);
    font-size: 16px;
    padding: 16px 8px;
}
@media (max-width: 993px) {
    .amd-md-card-grid > .--item {
        flex: 0 0 100%;
    }
}

.amd-md-input > span {
    display: inline-block;
    font-size: 16px;
    font-family: var(--amd-title-font);
    color: var(--amd-title-color);
    margin: 0 0 8px;
}
.amd-md-input > input {
    font-size: 16px;
    font-family: var(--amd-font-family);
    padding: 8px 16px;
    background: var(--amd-input-bg);
    border: 1px solid rgba(var(--amd-text-color-rgb), .1);
    outline: none;
    border-radius: 8px;
    color: var(--amd-text-color);
    width: 100%;
    margin: 0 0 16px;
}
.amd-md-input > input:disabled {
    color: rgba(var(--amd-text-color-rgb), .5);
}

.amd-md-toast > .text {
    margin: 0;
}
.amd-md-toast {
    background: var(--amd-title-color);
    color: var(--amd-wrapper-bg);
    position: fixed;
    left: calc(50% - 150px);
    top: calc(50% - 150px);
    width: 300px;
    padding: 16px 22px;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: var(--amd-title-font);
    text-align: center;
    border: 1px solid rgba(var(--amd-wrapper-bg-rgb), .1);
}

.amd-md-pagination {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.amd-md-pagination > .amd-md-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    width: 40px !important;
    height: auto;
    min-width: unset;
    aspect-ratio: 1;
}

/* Alignment */
.force-center {
    width: max-content;
    margin: auto
}

.text-center {
    text-align: center
}

.text-start {
    text-align: start
}

.text-end {
    text-align: end
}

.text-justify {
    text-align: justify
}

/* Padding all */
.pa-10 {
    padding: 10px;
}

.pa-16 {
    padding: 16px;
}

.pa-20 {
    padding: 20px;
}

.pa-50 {
    padding: 50px;
}

/* Padding top */
.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-50 {
    padding-top: 50px;
}

/* Padding bottom */
.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* Padding left */
.pl-10 {
    padding-left: 10px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-50 {
    padding-left: 50px;
}

/* Padding left & right */
.plr-8 {
    padding-right: 8px;
    padding-left: 8px
}

.plr-8-im {
    padding-right: 8px !important;
    padding-left: 8px !important
}

.plr-10 {
    padding-right: 10px;
    padding-left: 10px
}

.plr-20 {
    padding-right: 20px;
    padding-left: 20px
}

.plr-50 {
    padding-right: 50px;
    padding-left: 50px
}

/* Margin all */
.ma-10 {
    margin: 10px
}

.ma-8 {
    margin: 8px
}

.ma-20 {
    margin: 20px
}

/* Margin left & right */
.mlr-0 {
    margin-right: 0;
    margin-left: 0
}

.mlr-0-im {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mlr-5 {
    margin-right: 5px;
    margin-left: 5px
}

.mlr-8 {
    margin-right: 8px;
    margin-left: 8px
}

.mlr-10 {
    margin-right: 10px;
    margin-left: 10px
}

.mlr-20 {
    margin-right: 20px;
    margin-left: 20px
}

.padding-0 {
    padding: 0
}

.padding-0-im {
    padding: 0 !important
}

.decoration-none {
    text-decoration: none
}

.line-through {
    text-decoration: line-through
}

/* Margin */
.margin-auto {
    margin: auto
}

.margin-auto-im {
    margin: auto !important
}

.margin-0 {
    margin: 0
}

.margin-0-im {
    margin: 0 !important
}

.mt-5 {
    margin-top: 5px
}

.mt-8 {
    margin-top: 8px
}

.mt-8-im {
    margin-top: 8px !important
}

.mt-10 {
    margin-top: 10px
}

.mt-20 {
    margin-top: 20px
}

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

.mbt-5 {
    margin-top: 5px;
    margin-bottom: 5px
}

.mbt-10 {
    margin-top: 10px;
    margin-bottom: 10px
}

.mbt-20 {
    margin-top: 20px;
    margin-bottom: 20px
}

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

/* Padding */
.pa-7 {
    padding: 7px
}

.pa-7-im {
    padding: 7px !important
}

.tiny-text {
    font-size: 13px;
}

.tiny-text-im {
    font-size: 13px !important;
}

.small-text {
    font-size: 15px;
}

.small-text-im {
    font-size: 15px !important;
}

.size-15px {
    font-size: 15px
}

.max-content {
    width: max-content
}

.weight-normal {
    font-weight: normal
}

/* Height */
.h-10 {
    height: 10px
}

.h-20 {
    height: 20px
}

.h-50 {
    height: 50px
}

.h-100 {
    height: 100px
}

/* Width */
.w-10 {
    width: 10px
}

.w-20 {
    width: 20px
}

.w-50 {
    width: 50px
}

.w-100 {
    width: 100px
}

.min-w-100 {
    min-width: 100px
}

.max-w-100 {
    max-width: 100px
}

.max-w-30ch {
    max-width: 30ch !important
}

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

/* Offset */
.offset {
    position: relative
}

.offset.b2 {
    bottom: -2px
}

.offset.b3 {
    bottom: -3px
}

.offset.b5 {
    bottom: -5px
}

.offset.t2 {
    top: -2px
}

.offset.t3 {
    top: -3px
}

.offset.t5 {
    top: -5px
}

.size-1 {
    font-size: 14px
}

.size-2 {
    font-size: 16px
}

.size-3 {
    font-size: 18px
}

.font-title {
    font-family: var(--amd-title-font)
}

.w-bold {
    font-weight: bold
}

.w-normal {
    font-weight: normal
}

.no-shadow {
    box-shadow: none
}

.no-border {
    border: none
}

.clickable {
    cursor: var(--amd-pointer)
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.lower-case {
    text-transform: lowercase
}

.upper-case {
    text-transform: uppercase
}

.uc-first {
    text-transform: capitalize
}

.color-red {
    color: var(--amd-color-red)
}

.color-red-im {
    color: var(--amd-color-red) !important
}

.color-green {
    color: var(--amd-color-green)
}

.color-green-im {
    color: var(--amd-color-green) !important
}

.color-blue {
    color: var(--amd-color-blue)
}

.color-blue-im {
    color: var(--amd-color-blue) !important
}

.color-orange {
    color: var(--amd-color-orange)
}

.color-orange-im {
    color: var(--amd-color-orange) !important
}

.color-white {
    color: var(--amd-color-white)
}

.color-white-im {
    color: var(--amd-color-white) !important
}

.color-black {
    color: var(--amd-color-black)
}

.color-black-im {
    color: var(--amd-color-black) !important
}

.color-primary {
    color: var(--amd-primary)
}

.color-primary-im {
    color: var(--amd-primary) !important
}

.color-low {
    color: rgba(var(--amd-text-color-rgb), .9)
}

.color-low-im {
    color: rgba(var(--amd-text-color-rgb), .9) !important
}

.color-title {
    color: var(--amd-title-color)
}

.color-title-im {
    color: var(--amd-title-color) !important
}

.color-text {
    color: var(--amd-text-color)
}

.color-text-im {
    color: var(--amd-text-color) !important
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--amd-primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    margin: 8px;
    width: max-content;
    min-width: 50px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge.--marker {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 13px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    padding: 0;
}

.badge.--sm {
    min-width: 50px;
    padding: 4px 14px;
    font-size: 13px;
    margin: 4px;
}

.badge > ._icon_ {
    width: 15px;
    height: max-content;
    font-size: 15px;
    margin: 0 4px;
    cursor: var(--amd-pointer);
}

.bg-red {
    background: var(--amd-color-red)
}

.bg-red-im {
    background: var(--amd-color-red) !important
}

.bg-green {
    background: var(--amd-color-green)
}

.bg-green-im {
    background: var(--amd-color-green) !important
}

.bg-blue {
    background: var(--amd-color-blue)
}

.bg-blue-im {
    background: var(--amd-color-blue) !important
}

.bg-orange {
    background: var(--amd-color-orange)
}

.bg-orange-im {
    background: var(--amd-color-orange) !important
}

.bg-white {
    background: var(--amd-color-white)
}

.bg-white-im {
    background: var(--amd-color-white) !important
}

.bg-black {
    background: var(--amd-color-black)
}

.bg-black-im {
    background: var(--amd-color-black) !important
}

.bg-primary {
    background: var(--amd-primary)
}

.bg-primary-im {
    background: var(--amd-primary) !important
}

.bg-x-low {
    background: var(--amd-primary-x-low)
}

.bg-x-low-im {
    background: var(--amd-primary-x-low) !important
}

.bg-none {
    background: none
}

.bg-none-im {
    background: none !important
}

.bg-low {
    background: rgba(var(--amd-text-color-rgb), .9)
}

.bg-title {
    background: var(--amd-title-color)
}

.bg-text {
    background: var(--amd-text-color)
}

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

@media (max-width: 992px) {
    .pa-col {
        padding: 10%;
    }

    .margin-auto-mb {
        margin: auto;
    }

    .row.mobile-reverse {
        flex-direction: row-reverse !important;
    }

    .no-mobile {
        display: none !important
    }
}

@media ( min-width: 993px) {
    .pa-col {
        padding: 5% 10%;
    }

    .margin-auto-dk {
        margin: auto;
    }

    .row.desktop-reverse {
        flex-direction: row-reverse !important;
    }

    .no-desktop {
        display: none !important
    }
}

.waiting {
    opacity: .7;
    pointer-events: none;
}

.flex-align,
.flex-center,
.flex-ratio-1 {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}

.flex-ratio-1 {
    aspect-ratio: 1;
}

svg.iconhub > path:not(.--exclude),
svg.iconhub > line:not(.--exclude),
svg.iconhub > rect:not(.--exclude),
svg.iconhub > polygon:not(.--exclude),
svg.iconhub > circle:not(.--exclude),
svg.iconhub > polyline:not(.--exclude) {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px
}

.waiting {
    pointer-events: none;
    opacity: .7;
}

.amd-md-row * {
    box-sizing: border-box
}

.amd-md-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.amd-md-table {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-size: 16px;
    background: var(--amd-wrapper-bg);
}

.amd-md-table::-webkit-scrollbar {
    display: none;
}

.amd-md-table > table {
    width: 100%;
    border-collapse: collapse;
}

.amd-md-table > table tr > th {
    font-family: var(--amd-title-font);
    background: rgba(var(--amd-primary-rgb), .7);
    color: var(--amd-wrapper-fg);
    text-align: start;
    font-size: var(--amd-size-lg);
    border: none !important;
    height: 30px;
    padding: 8px 16px;
}
body.dark .amd-md-table > table tr > th {
    color: #fff;
}

body.rtl .amd-md-table > table tr > th:first-child {
    border-top-right-radius: 8px
}

body.rtl .amd-md-table > table tr > th:last-child {
    border-top-left-radius: 8px
}

body.ltr .amd-md-table > table tr > th:first-child {
    border-top-left-radius: 8px
}

body.ltr .amd-md-table > table tr > th:last-child {
    border-top-right-radius: 8px
}

.amd-md-table > table tr > td {
    text-align: start;
    font-size: var(--amd-size-md);
    color: var(--amd-text-color);
    height: 30px;
    padding: 8px 16px;
    background-color: transparent;
    border: none !important;
    transition: background-color ease .2s;
}

.amd-md-table > table tr:nth-child(even) > td {
    background-color: rgba(var(--amd-wrapper-fg-rgb), .2);
}

.amd-md-table > table tr:nth-child(odd) > td {
    background-color: var(--amd-wrapper-fg);
}

.amd-md-table > table tr:hover > td {
    background-color: rgba(var(--amd-primary-rgb), .08);
}

.amd-md-col-lg,
.amd-md-col-lg-1,
.amd-md-col-lg-10,
.amd-md-col-lg-11,
.amd-md-col-lg-12,
.amd-md-col-lg-2,
.amd-md-col-lg-3,
.amd-md-col-lg-4,
.amd-md-col-lg-5,
.amd-md-col-lg-6,
.amd-md-col-lg-7,
.amd-md-col-lg-8,
.amd-md-col-lg-9,
.amd-md-col-lg-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 993px) {
    .amd-md-col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .amd-md-col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .amd-md-col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .amd-md-col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .amd-md-col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .amd-md-col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .amd-md-col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .amd-md-col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .amd-md-col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .amd-md-col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .amd-md-col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .amd-md-col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .amd-md-col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .amd-md-col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.no-wrap {
    white-space: nowrap;
}

.amd-md-scrollbar {
    --scrollbar-weight: 6px;
    scrollbar-width: initial !important
}

.amd-md-scrollbar.-y::-webkit-scrollbar {
    width: var(--scrollbar-weight)
}

.amd-md-scrollbar.-x::-webkit-scrollbar {
    height: var(--scrollbar-weight)
}

.amd-md-scrollbar::-webkit-scrollbar {
    display: initial !important
}

.amd-md-scrollbar::-webkit-scrollbar-track {
    background: rgba(var(--amd-text-color-rgb), .1) !important;
    border-radius: 8px
}

.amd-md-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(var(--amd-text-color-rgb), .2);
    border-radius: 8px
}

.amd-md-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--amd-text-color-rgb), .25)
}

/* progress-circular.min.css */
@keyframes hb-progress-circular {
    0% {
        transform: rotate(0deg)
    }
    12.5% {
        transform: rotate(180deg);
        animation-timing-function: linear
    }
    25% {
        transform: rotate(630deg)
    }
    37.5% {
        transform: rotate(810deg);
        animation-timing-function: linear
    }
    50% {
        transform: rotate(1260deg)
    }
    62.5% {
        transform: rotate(1440deg);
        animation-timing-function: linear
    }
    75% {
        transform: rotate(1890deg)
    }
    87.5% {
        transform: rotate(2070deg);
        animation-timing-function: linear
    }
    to {
        transform: rotate(2520deg)
    }
}

@keyframes hb-progress-circular-pseudo {
    0% {
        -webkit-clip-path: polygon(50% 50%, 37% 0, 50% 0, 50% 0, 50% 0, 50% 0);
        clip-path: polygon(50% 50%, 37% 0, 50% 0, 50% 0, 50% 0, 50% 0)
    }
    18% {
        -webkit-clip-path: polygon(50% 50%, 37% 0, 100% 0, 100% 0, 100% 0, 100% 0);
        clip-path: polygon(50% 50%, 37% 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }
    53% {
        -webkit-clip-path: polygon(50% 50%, 37% 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
        clip-path: polygon(50% 50%, 37% 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }
    88% {
        -webkit-clip-path: polygon(50% 50%, 37% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
        clip-path: polygon(50% 50%, 37% 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }
    to {
        -webkit-clip-path: polygon(50% 50%, 37% 0, 100% 0, 100% 100%, 0 100%, 0 63%);
        clip-path: polygon(50% 50%, 37% 0, 100% 0, 100% 100%, 0 100%, 0 63%)
    }
}

.hb-progress-circular {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    border: 0;
    border-radius: 50%;
    padding: .25em;
    width: 3em;
    height: 3em;
    color: rgb(var(--amd-primary-rgb));
    background-color: transparent;
    font-size: 16px;
    overflow: hidden
}

.hb-progress-circular::-webkit-progress-bar {
    background-color: transparent
}

.hb-progress-circular:indeterminate {
    animation: hb-progress-circular 6s infinite cubic-bezier(.3, .6, 1, 1)
}

.hb-progress-circular:indeterminate::-webkit-progress-value, .hb-progress-circular:indeterminate::before {
    content: "";
    display: block;
    box-sizing: border-box;
    margin-bottom: .25em;
    border: solid .25em currentColor;
    border-radius: 50%;
    width: 100% !important;
    height: 100%;
    background-color: transparent;
    -webkit-clip-path: polygon(50% 50%, 37% 0, 50% 0, 50% 0, 50% 0, 50% 0);
    clip-path: polygon(50% 50%, 37% 0, 50% 0, 50% 0, 50% 0, 50% 0);
    animation: hb-progress-circular-pseudo .75s infinite linear alternate;
    animation-play-state: inherit;
    animation-delay: inherit
}

.hb-progress-circular:indeterminate::-moz-progress-bar {
    box-sizing: border-box;
    border: solid .25em currentColor;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    clip-path: polygon(50% 50%, 37% 0, 50% 0, 50% 0, 50% 0, 50% 0);
    animation: hb-progress-circular-pseudo .75s infinite linear alternate;
    animation-play-state: inherit;
    animation-delay: inherit
}

.hb-progress-circular:indeterminate::-ms-fill {
    animation-name: -ms-ring
}

.hb-progress-circular.--progress-white-2x {
    color: #fff;
    width: 26px;
    height: 26px;
    font-size: 14px;
    position: relative;
    bottom: -6px
}

.hb-checkbox {
    --hb-checkbox-tint: var(--amd-primary-rgb);
    z-index: 0;
    direction: rtl;
    position: relative;
    display: inline-block;
    color: rgba(var(--amd-color-black-rgb), .87);
    font-family: var(--amd-font-family);
    font-size: 16px;
    line-height: 1.5
}

.hb-checkbox.--red { --hb-checkbox-tint: var(--amd-color-red-rgb) }
.hb-checkbox.--green { --hb-checkbox-tint: var(--amd-color-green-rgb) }
.hb-checkbox.--blue { --hb-checkbox-tint: var(--amd-color-blue-rgb) }
.hb-checkbox.--orange { --hb-checkbox-tint: var(--amd-color-orange-rgb) }

.hb-checkbox > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: 1;
    position: absolute;
    display: block;
    box-sizing: border-box;
    margin: 3px 1px;
    border: solid 2px;
    border-color: rgba(var(--amd-color-black-rgb), .6);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    outline: 0;
    cursor: pointer;
    transition: border-color .2s, background-color .2s
}

.hb-checkbox > input + span {
    display: inline-block;
    box-sizing: border-box;
    padding-left: 30px;
    width: inherit;
    cursor: pointer
}

.hb-checkbox > input + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    display: block;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--amd-color-black);
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity .3s, transform .2s
}

.hb-checkbox > input + span::after {
    content: "";
    z-index: 1;
    display: block;
    position: absolute;
    top: 3px;
    left: 11px;
    box-sizing: content-box;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right-width: 0;
    border-top-width: 0;
    pointer-events: none;
    transform: translate(3px, 4px) rotate(-45deg);
    transition: border-color .2s
}

.hb-checkbox > input:checked, .hb-checkbox > input:indeterminate {
    border-color: rgb(var(--hb-checkbox-tint));
    background-color: rgb(var(--hb-checkbox-tint));
}

.hb-checkbox > input:checked + span::before, .hb-checkbox > input:indeterminate + span::before {
    background-color: rgb(var(--hb-checkbox-tint))
}

.hb-checkbox > input:checked + span::after, .hb-checkbox > input:indeterminate + span::after {
    border-color: var(--amd-color-white)
}

.hb-checkbox > input:indeterminate + span::after {
    border-left-width: 0;
    transform: translate(4px, 3px)
}

.hb-checkbox:hover > input + span::before {
    opacity: .04
}

.hb-checkbox > input:focus + span::before {
    opacity: .12
}

.hb-checkbox:hover > input:focus + span::before {
    opacity: .16
}

.hb-checkbox:active:hover > input, .hb-checkbox:active > input {
    border-color: rgb(var(--hb-checkbox-tint))
}

.hb-checkbox:active > input:checked {
    border-color: transparent;
    background-color: rgba(var(--amd-color-black-rgb), .6)
}

.hb-checkbox:active > input + span::before {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s
}

.hb-checkbox > input:disabled {
    border-color: rgba(var(--amd-color-black-rgb), .38);
    cursor: initial
}

.hb-checkbox > input:checked:disabled, .hb-checkbox > input:indeterminate:disabled {
    border-color: transparent;
    background-color: rgba(var(--amd-color-black-rgb), .38)
}

.hb-checkbox > input:disabled + span {
    color: rgba(var(--amd-color-black-rgb), .38);
    cursor: initial
}

.hb-checkbox > input:disabled + span::before {
    opacity: 0;
    transform: scale(0)
}