/*
 * Some components are made by Google LLC
 * Compiled & modified by Amatris
 */
/* button-unelevated.min.css */
:root {
    --amd-btn-line-height: 36px;
}

.btn {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: 0;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    color: #fff;
    font-family: var(--amd-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: var(--amd-btn-line-height);
    outline: 0;
    cursor: pointer;
    padding: 0 20px;
    border-radius: 4px;
    text-decoration: none
}

.btn:not(.btn-text, .btn-outline) {
    background: linear-gradient(45deg, var(--amd-primary), rgba(var(--amd-primary-rgb), .5));
}

.btn::-moz-focus-inner {
    border: 0
}

.btn::after, .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0
}

.btn::before {
    background-color: var(--amd-color-white);
    transition: opacity .2s
}

.btn::after {
    /* TODO */
    /*background: radial-gradient(circle at center, currentColor 1%, transparent 1%) center/10000% 10000% no-repeat;*/
    transition: opacity 1s, background-size .5s
}

.btn:hover::before {
    opacity: .08
}

.btn:focus::before {
    opacity: .24
}

.btn:hover:focus::before {
    opacity: .32
}

.btn:active::after {
    opacity: .32;
    background-size: 100% 100%;
    transition: background-size 0s
}

.btn:disabled {
    color: rgba(0, 0, 0, .38);
    background-color: rgba(0, 0, 0, .12);
    cursor: initial
}

.btn:disabled::after, .btn:disabled::before {
    opacity: 0
}

.btn:not(.wrap){
    white-space: nowrap;
}

.btn.btn-primary {
    background-color: rgb(var(--amd-primary-rgb))
}

.btn.btn-sharp {
    border-radius: 4px !important
}

.btn.btn-sm {
    font-size: 13px;
    height: 34px;
    padding: 0 12px
}

.btn.btn-lg {
    font-size: 16px;
    height: 40px;
    padding: 0 20px
}

.btn-upper {
    text-transform: uppercase
}

.btn:not(.btn-text, .btn-outline).--red {
    background: linear-gradient(45deg, var(--amd-color-red), rgba(var(--amd-color-red-rgb), .6));
}

.btn:not(.btn-text, .btn-outline).--green {
    background: linear-gradient(45deg, var(--amd-color-green), rgba(var(--amd-color-green-rgb), .6));
}

.btn:not(.btn-text, .btn-outline).--blue {
    background: linear-gradient(45deg, var(--amd-color-blue), rgba(var(--amd-color-blue-rgb), .6));
}

.btn:not(.btn-text, .btn-outline).--orange {
    background: linear-gradient(45deg, var(--amd-color-orange), rgba(var(--amd-color-orange-rgb), .6));
}

.btn:not(.btn-text, .btn-outline).--transparent {
    background: transparent
}

/* button-outlined.min.css */
.btn-outline {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
    border: 2px solid rgba(var(--amd-primary-rgb), .8);
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    color: rgb(var(--amd-text-color));
    background-color: transparent;
    font-family: var(--amd-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: var(--amd-btn-line-height);
    outline: 0;
    cursor: pointer;
    text-decoration: none
}

.btn-outline::-moz-focus-inner {
    border: 0
}

.btn-outline::after, .btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
    opacity: 0
}

.btn-outline::before {
    background-color: rgb(var(--amd-primary-rgb));
    transition: opacity .2s
}

.btn-outline::after {
    /* TODO */
    /*background: radial-gradient(circle at center, currentColor 1%, transparent 1%) center/10000% 10000% no-repeat;*/
    transition: opacity 1s, background-size .5s
}

.btn-outline:hover::before {
    opacity: .04
}

.btn-outline:focus::before {
    opacity: .12
}

.btn-outline:hover:focus::before {
    opacity: .16
}

.btn-outline:active::after {
    opacity: .16;
    background-size: 100% 100%;
    transition: background-size 0s
}

.btn-outline:disabled {
    color: rgba(var(--amd-color-black-rgb), .38);
    background-color: transparent;
    cursor: initial
}

.btn-outline:disabled::after, .btn-outline:disabled::before {
    opacity: 0
}

/* button-text.min.css */
.btn-text {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
    border: 0;
    border-radius: 4px;
    padding: 0 8px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    color: var(--amd-primary);
    background: linear-gradient(45deg, rgba(var(--amd-primary-rgb), .1), rgba(var(--amd-primary-rgb), 0));
    font-family: var(--amd-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: var(--amd-btn-line-height);
    outline: 0;
    cursor: pointer;
    text-decoration: none
}
.btn-text.--red { color: var(--amd-color-red) }
.btn-text.--green { color: var(--amd-color-green) }
.btn-text.--blue { color: var(--amd-color-blue) }
.btn-text.--orange { color: var(--amd-color-orange) }

.btn-text.no-special { background: transparent !important }

body.dark .btn-text { color: var(--amd-text-color) }

.btn-text::-moz-focus-inner {
    border: 0
}

.btn-text::after, .btn-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0
}

.btn-text::before {
    background-color: var(--amd-primary);
    transition: opacity .2s
}

.btn-text.--red {
    background: linear-gradient(45deg, rgba(var(--amd-color-red-rgb), .1), rgba(var(--amd-color-red-rgb), 0));
}
.btn-text.--green {
    background: linear-gradient(45deg, rgba(var(--amd-color-green-rgb), .1), rgba(var(--amd-color-green-rgb), 0));
}
.btn-text.--blue {
    background: linear-gradient(45deg, rgba(var(--amd-color-blue-rgb), .1), rgba(var(--amd-color-blue-rgb), 0));
}
.btn-text.--orange {
    background: linear-gradient(45deg, rgba(var(--amd-color-orange-rgb), .1), rgba(var(--amd-color-orange-rgb), 0));
}

.btn-text.--red::before { background: var(--amd-color-red) }
.btn-text.--green::before { background: var(--amd-color-green) }
.btn-text.--blue::before { background: var(--amd-color-blue) }
.btn-text.--orange::before { background: var(--amd-color-orange) }

.btn-text::after {
    /* TODO */
    /*background: radial-gradient(circle at center, currentColor 1%, transparent 1%) center/10000% 10000% no-repeat;*/
    transition: opacity 1s, background-size .5s
}

.btn-text:hover::before {
    opacity: .04
}

.btn-text:focus::before {
    opacity: .12
}

.btn-text:hover:focus::before {
    opacity: .16
}

.btn-text:active::after {
    opacity: .16;
    background-size: 100% 100%;
    transition: background-size 0s
}

.btn-text:disabled {
    color: rgba(var(--amd-text-color-rgb), .38);
    background-color: transparent;
    cursor: initial
}

.btn-text:disabled::after, .btn-text:disabled::before {
    opacity: 0
}

.btn-text.--low {
    background: linear-gradient(45deg, rgba(var(--amd-primary-rgb), .1), rgba(var(--amd-primary-rgb), 0));
    color: rgba(var(--amd-color-white-rgb), .7);
}

.btn.--square {
    min-width: 36px;
    width: 36px;
    height: 36px;
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
}

/* 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
}

/* progress-linear.min.css */
@keyframes hb-progress-linear {
    0%, 2% {
        background-position: 32% 0, 32% 0, 50% 0
    }
    21% {
        background-position: 32% 0, -18% 0, 0 0
    }
    42% {
        background-position: 32% 0, -68% 0, -27% 0
    }
    50% {
        background-position: 32% 0, -93% 0, -46% 0
    }
    56% {
        background-position: 32% 0, -118% 0, -68% 0
    }
    66% {
        background-position: -11% 0, -200% 0, -100% 0
    }
    71% {
        background-position: -32% 0, -200% 0, -100% 0
    }
    79% {
        background-position: -54% 0, -242% 0, -100% 0
    }
    86% {
        background-position: -68% 0, -268% 0, -100% 0
    }
    to {
        background-position: -100% 0, -300% 0, -100% 0
    }
}

.hb-progress-linear {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    width: 160px;
    height: 4px;
    vertical-align: middle;
    color: rgb(var(--amd-primary-rgb));
    background-color: rgba(var(--amd-primary-rgb), .12)
}

.hb-progress-linear::-webkit-progress-bar {
    background-color: transparent
}

.hb-progress-linear::-webkit-progress-value {
    background-color: currentColor;
    transition: all .2s
}

.hb-progress-linear::-moz-progress-bar {
    background-color: currentColor;
    transition: all .2s
}

.hb-progress-linear::-ms-fill {
    border: 0;
    background-color: currentColor;
    transition: all .2s
}

.hb-progress-linear:indeterminate {
    background-size: 200% 100%;
    background-image: linear-gradient(to right, currentColor 16%, transparent 16%), linear-gradient(to right, currentColor 16%, transparent 16%), linear-gradient(to right, currentColor 25%, transparent 25%);
    animation: hb-progress-linear 1.8s infinite linear
}

.hb-progress-linear:indeterminate::-webkit-progress-value {
    background-color: transparent
}

.hb-progress-linear:indeterminate::-moz-progress-bar {
    background-color: transparent
}

.hb-progress-linear:indeterminate::-ms-fill {
    animation-name: none
}

/* radio.min.css */
.hb-radio {
    z-index: 0;
    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-radio > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: 1;
    position: absolute;
    display: block;
    box-sizing: border-box;
    margin: 2px 0;
    border: solid 2px;
    border-color: rgba(var(--amd-color-black-rgb), .6);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    outline: 0;
    cursor: pointer;
    transition: border-color .2s
}

.hb-radio > input + span {
    display: inline-block;
    box-sizing: border-box;
    padding-left: 30px;
    width: inherit;
    cursor: pointer
}

.hb-radio > input + span::after, .hb-radio > input + span::before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50%
}

.hb-radio > input + span::before {
    left: -10px;
    top: -8px;
    width: 40px;
    height: 40px;
    background-color: rgb(var(--amd-color-black-rgb));
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    transition: opacity .3s, transform .2s
}

.hb-radio > input + span::after {
    top: 2px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: rgb(var(--amd-primary-rgb));
    transform: translate(5px, 5px) scale(0);
    transition: transform .2s
}

.hb-radio > input:checked {
    border-color: rgb(var(--amd-primary-rgb))
}

.hb-radio > input:checked + span::before {
    background-color: rgb(var(--amd-primary-rgb))
}

.hb-radio > input:checked + span::after {
    transform: translate(5px, 5px) scale(1)
}

.hb-radio:hover > input + span::before {
    transform: scale(1);
    opacity: .04
}

.hb-radio > input:focus + span::before {
    transform: scale(1);
    opacity: .12
}

.hb-radio:hover > input:focus + span::before {
    transform: scale(1);
    opacity: .16
}

.hb-radio:active > input {
    border-color: rgb(var(--amd-primary-rgb))
}

.hb-radio:active:hover > input + span::before, .hb-radio:active > input + span::before {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s
}

.hb-radio > input:disabled {
    border-color: rgba(var(--amd-color-black-rgb), .38);
    cursor: initial
}

.hb-radio > input:disabled + span {
    color: rgba(var(--amd-primary-rgb), .38);
    cursor: initial
}

.hb-radio > input:disabled + span::before {
    opacity: 0;
    transform: scale(0)
}

.hb-radio > input:disabled + span::after {
    background-color: currentColor
}

/* switch.min.css */
.hb-switch, .hb-switch > input {
    position: relative;
    display: inline-block
}

.hb-switch {
    z-index: 0;
    color: rgba(var(--amd-color-black-rgb), .87);
    font-family: var(--amd-font-family);
    font-size: 16px;
    line-height: 1.5
}

.hb-switch > input:before {
    content: none !important
}

.hb-switch > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: 1;
    float: right;
    margin: 0 0 0 5px;
    border: solid 5px transparent !important;
    border-radius: 12px;
    width: 46px;
    height: 24px;
    background-clip: padding-box;
    background-color: rgba(var(--amd-text-color-rgb), .7);
    outline: 0;
    cursor: pointer;
    transition: background-color .2s, opacity .2s
}

.hb-switch > input + span {
    display: inline-block;
    box-sizing: border-box;
    margin-right: -51px;
    padding-right: 51px;
    color: var(--amd-text-color);
    user-select: none;
    width: inherit;
    cursor: pointer
}

.hb-switch > input + span::after, .hb-switch > input + span::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.hb-switch > input + span::before {
    right: 11px;
    top: -8px;
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--amd-text-color-rgb), .7);
    opacity: 0;
    transform: scale(1);
    transition: opacity .3s .1s, transform .2s .1s
}

.hb-switch > input + span::after {
    z-index: 1;
    top: 2px;
    right: 22px;
    width: 20px;
    height: 20px;
    background-color: var(--amd-text-color);
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    transition: background-color .2s, transform .2s
}

.hb-switch > input:checked {
    background-color: rgba(var(--amd-primary-rgb), .6)
}

.hb-switch > input:checked + span::before {
    right: -5px;
    background-color: var(--amd-primary)
}

.hb-switch > input:checked + span::after {
    background-color: var(--amd-primary);
    transform: translateX(16px)
}

.hb-switch:hover > input + span::before {
    opacity: .04
}

.hb-switch > input:focus + span::before {
    opacity: .12
}

.hb-switch:hover > input:focus + span::before {
    opacity: .16
}

.hb-switch:active > input {
    background-color: rgba(var(--amd-primary-rgb), .6)
}

.hb-switch:active > input:checked {
    background-color: rgba(var(--amd-color-black-rgb), .38)
}

.hb-switch:active > input + span::before {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s
}

.hb-switch > input:disabled {
    background-color: rgba(var(--amd-color-black-rgb), .38);
    opacity: .38;
    cursor: default
}

.hb-switch > input:checked:disabled {
    background-color: rgba(var(--amd-primary-rgb), .6)
}

.hb-switch > input:disabled + span {
    color: rgba(var(--amd-color-black-rgb));
    cursor: default
}

.hb-switch > input:disabled + span::before {
    z-index: 1;
    margin: 10px;
    width: 20px;
    height: 20px;
    background-color: var(--amd-wrapper-bg);
    transform: scale(1);
    opacity: 1;
    transition: none
}

.hb-switch > input:disabled + span::after {
    opacity: .38
}

/* hb-input.min.css */
.ht-input, .ht-input > input {
    font-family: var(--amd-font-family)
}

.ht-input {
    position: relative;
    display: block;
    background: var(--amd-input-bg);
    padding: 20px 0 0;
    margin: 8px 8px 16px;
    cursor: text;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all ease .3s
}

.ht-input.invalid:before,
.ht-input.valid:before,
.ht-input.info:before,
.ht-input.warning:before {
    content: ' ';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
    transition: background-color ease .3s
}

.ht-input.invalid:before {
    background: rgba(var(--amd-color-red-rgb), .2);
}
.ht-input.invalid {
    border-color: rgba(var(--amd-color-red-rgb), .2);
}

.ht-input.info:before, .ht-input.warning:before {
    background: rgba(var(--amd-color-blue-rgb), .2);
}
.ht-input.info, .ht-input.warning {
    border-color: rgba(var(--amd-color-blue-rgb), .2);
}

.ht-input.warning:before {
    background: rgba(var(--amd-color-orange-rgb), .2);
}
.ht-input.warning {
    border-color: rgba(var(--amd-color-orange-rgb), .2);
}

.ht-input.round {
    border-radius: 30px
}

.ht-input > input {
    box-sizing: border-box;
    border: 0;
    outline: 0;
    background: 0 0;
    color: var(--amd-text-color);
    font-size: 15px;
    height: 30px;
    padding: 0 16px;
    width: 100%
}

body.rtl .ht-input > input {
    text-align: right
}
body.ltr .ht-input > input {
    text-align: left
}
.ht-input.--ltr > input {
    text-align: left !important;
    direction: ltr !important;
}

.ht-input > span {
    position: absolute;
    font-size: 16px;
    top: 15px;
    color: rgba(var(--amd-text-color-rgb), .5);
    user-select: none;
    transition: all ease .3s
}

body.rtl .ht-input > span:not(._icon_) {
    right: 16px;
    left: unset;
}
body.ltr .ht-input > span:not(._icon_) {
    left: 16px;
    right: unset;
}
.ht-input.--ltr > span:not(._icon_) {
    left: 16px !important;
    right: unset !important;
}

.ht-input > input:focus + span:not(._icon_), .ht-input > input:not(:placeholder-shown) + span:not(._icon_) {
    font-size: 13px;
    top: 5px;
    color: var(--amd-primary);
    transition: all ease .3s
}

.ht-input-row, .ht-input > ._icon_ {
    display: flex;
    align-items: center
}

.ht-input > ._icon_ {
    position: absolute;
    top: 0;
    font-size: 20px;
    color: rgba(var(--amd-text-color-rgb), .8);
    background: var(--amd-input-bg);
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    justify-content: center
}

.ht-input > svg.iconhub {
    width: 22px;
    margin: 0 8px;
}

body.rtl .ht-input > ._icon_ {
    left: 0;
    right: unset;
}
body.ltr .ht-input > ._icon_{
    right: 0;
    left: unset;
}
.ht-input.--ltr > ._icon_ {
    right: 0 !important;
    left: unset !important
}

.ht-input-row {
    flex-wrap: wrap
}

.ht-input-row > .ht-input {
    flex: 1;
    margin: 8px
}

@media (max-width: 992px) {
    .ht-input-row > .ht-input {
        flex: 0 0 100%
    }
}

.ht-input-row:not(.not-center) {
    justify-content: center
}

body:not(.light) .ht-input > input:focus + span, body:not(.light) .ht-input > input:not(:placeholder-shown) + span {
    color: rgba(var(--amd-text-color-rgb), .7)
}

.ht-input-btn {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amd-primary);
    color: #fff;
    z-index: 1;
}

.hb-select-group {
    position: relative;
    background: var(--amd-input-bg);
    border-radius: 12px;
    height: 50px;
    padding-top: 10px;
    margin: 8px 8px 16px;
    overflow: hidden
}

.hb-select-group > select {
    position: absolute;
    top: 0;
    font-family: var(--amd-font-family);
    font-size: 14px;
    background: 0 0;
    width: 100%;
    height: 100%;
    color: var(--amd-text-color);
    outline: 0;
    border: 0;
    padding: 16px 16px 0;
    cursor: var(--amd-pointer);
    -webkit-appearance: none;
    -moz-appearance: none
}

.hb-select > option:not(:checked) {
    background: #fff;
    color: #414141
}

.hb-select-group > span {
    position: absolute;
    font-size: 13px;
    color: var(--amd-primary);
    top: 5px
}

body:not(.light) .hb-select-group > span {
    color: rgba(var(--amd-text-color-rgb), .7)
}

.hb-select-group > ._icon_ {
    position: absolute;
    font-size: 18px;
    color: rgba(var(--amd-text-color-rgb), .8);
    top: 18px
}
.hb-select-group > svg._icon_ {
    width: 20px;
    fill: currentColor;
}

body.rtl .hb-select-group > span {
    right: 16px
}

body.ltr .hb-select-group > span,
body.rtl .hb-select-group > ._icon_ {
    left: 16px
}
body.ltr .hb-select-group > ._icon_ {
    right: 16px
}

.ht-textarea, .ht-textarea > textarea {
    display: block;
    font-family: var(--amd-font-family)
}

.ht-textarea {
    position: relative;
    background: var(--amd-primary-x-low);
    width: max-content;
    padding: 20px 0 0;
    cursor: text;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: width ease .3s
}

.ht-textarea.--full {
    width: calc(100% - 16px);
    margin: 8px auto
}
.ht-textarea.--simple {
    padding: 0 !important;
    background: var(--amd-input-bg);
}
.ht-textarea.--simple > textarea {
    padding: 12px !important
}

.ht-textarea.error, .ht-textarea.invalid {
    border-color: var(--amd-color-red);
    transition: all ease .3s
}

.ht-textarea.success, .ht-textarea.valid {
    border-color: var(--amd-color-green);
    transition: all ease .3s
}

.ht-textarea.info, .ht-textarea.warning {
    border-color: var(--amd-color-blue);
    transition: all ease .3s
}

.ht-textarea.warning {
    border-color: var(--amd-color-orange)
}

.ht-textarea > textarea {
    box-sizing: border-box;
    background: 0 0;
    border: 0;
    outline: 0;
    resize: none;
    width: 100%;
    height: 100%;
    max-height: 400px;
    color: var(--amd-text-color);
    padding: 22px 12px
}

.ht-textarea > span {
    position: absolute;
    color: var(--amd-text-color);
    top: 15px;
    transition: all ease .3s
}

.ht-textarea > textarea:focus + span, .ht-textarea > textarea:not(:placeholder-shown) + span {
    color: var(--amd-text-color);
    transition: all ease .3s
}

.ht-textarea > ._icon_ {
    position: absolute;
    top: 15px;
    font-size: 20px;
    color: var(--amd-text-color);
    background: 0 0;
    height: 50px;
    display: flex;
    align-items: center;
    width: auto;
    aspect-ratio: 1;
    justify-content: center
}
.ht-textarea > svg._icon_ {
    width: 20px;
    height: auto;
    fill: currentColor;
}

body .ht-textarea > textarea + span { margin: 16px }

body.rtl .ht-textarea > span,
body.ltr .ht-textarea > ._icon_ { right: 0; left: unset; top: 0 }

body.ltr .ht-textarea > span,
body.rtl .ht-textarea > ._icon_ { left: 0; right: unset; top: 0 }

body.rtl .ht-textarea {
    text-align: right;
    direction: rtl
}

body.ltr .ht-textarea {
    text-align: left;
    direction: ltr
}

.ht-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--amd-primary-x-low);
    outline: 0;
    cursor: pointer;
    border-radius: 4px
}

.ht-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--amd-primary);
    border-radius: 8px;
    border: 0
}

.ht-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--amd-primary);
    border-radius: 8px;
    border: 0
}

/* tabs.min.css */
.hb-tab {
    margin: 15px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    direction: ltr
}

body.rtl .hb-tab {
    margin-right: auto
}

body.ltr .hb-tab {
    margin-left: auto
}

.hb-tab.--scrollable {
    overflow-x: auto
}

.hb-tab::-webkit-scrollbar {
    display: none
}

.hb-tab .indicator {
    position: absolute;
    background: rgba(var(--amd-primary-rgb), .8);
    width: 0;
    height: 3px;
    left: 0;
    transition: all ease .3s
}

body.dark .hb-tab .indicator {
    background: var(--amd-title-color)
}

.tab-items {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: max-content
}

.tab-items > .item {
    max-width: 100px;
    height: 22px;
    padding: 8px 18px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: var(--amd-pointer);
    border-radius: 5px;
    text-decoration: none;
    margin: 0 5px
}

body.rtl .tab-items > .item {
    direction: rtl
}

body.ltr .tab-items > .item {
    direction: ltr
}

.tab-items > .item:focus, .tab-items > .item:hover {
    background: var(--amd-primary-x-low)
}

.tab-items > .item .text {
    font-size: 14px;
    color: var(--amd-text-color)
}

.tab-items > .item.active {
    background: var(--amd-primary-x-low)
}

/* checkbox.min.css */
.hb-checkbox {
    --hb-checkbox-tint: var(--amd-primary-rgb);
    z-index: 0;
    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-white-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: rgb(var(--amd-color-black-rgb));
    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)
}

.btn.ellipsis, .btn-text.ellipsis, .btn-outline.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 20ch;
}

.btn.rainbow {
    animation: color_rainbow ease 10s infinite;
}

.btn.text.rainbow {
    animation: color_rainbow_text ease 10s infinite;
}

@keyframes color_rainbow {
    0% {
        filter: hue-rotate(360deg);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}

@keyframes color_rainbow_text {
    0% {
        background: rgba(var(--amd-primary-rgb), .2);
        color: var(--amd-primary);
    }
    20% {
        background: rgba(var(--amd-color-blue-rgb), .2);
        color: var(--amd-color-blue);
    }
    40% {
        background: rgba(var(--amd-color-red-rgb), .2);
        color: var(--amd-color-red);
    }
    60% {
        background: rgba(var(--amd-color-green-rgb), .2);
        color: var(--amd-color-green);
    }
    80% {
        background: rgba(var(--amd-color-orange-rgb), .2);
        color: var(--amd-color-orange);
    }
    100% {
        background: rgba(var(--amd-primary-rgb), .2);
        color: var(--amd-primary);
    }
}

.amd-message-box > .--item,
.amd-message-box {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.amd-message-box.--reverse > .--item {
    flex-direction: row-reverse;
}

.amd-message-box {
    position: relative;
    width: 100%;
}

.amd-message-box > ._spacer {
    box-sizing: border-box;
    background: var(--amd-primary-x-low);
    font-size: 14px;
    color: var(--amd-primary);
    width: max-content;
    max-width: 100%;
    padding: 8px 16px 7px;
    border-radius: 30px;
    min-width: 140px;
    margin: 8px;
    text-align: center;
}

.amd-message-box > ._spacer.--center { margin: 8px auto }
.amd-message-box > ._spacer.--full { width: 100% }

.amd-message-box > .--item {
    flex-wrap: nowrap;
    width: 100%;
    margin: 8px 0;
}

.amd-message-box > .--item > .-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 8px;
    width: 50px;
    overflow: hidden;
    background: var(--amd-primary);
}
.amd-message-box > .--item > .-image.--red { background: var(--amd-color-red) }
.amd-message-box > .--item > .-image.--green { background: var(--amd-color-green) }
.amd-message-box > .--item > .-image.--blue { background: var(--amd-color-blue) }
.amd-message-box > .--item > .-image.--orange { background: var(--amd-color-orange) }
.amd-message-box > .--item > .-image.--purple { background: var(--amd-color-purple) }

.amd-message-box > .--item > .-box {
    flex: 1;
    background: var(--amd-primary-x-low);
    margin: 0 8px;
    width: 50px;
    padding: 8px 16px;
    border-radius: 12px;
}

.amd-message-box > .--item > .-box > .-name {
    margin: 0 0 4px;
}

.amd-message-box > .--item > .-box > .-text {
    margin: 8px 0;
}

.amd-message-box > .--item > .-box > .-time {
    margin: 4px 0;
    font-size: 14px;
    color: rgba(var(--amd-text-color-rgb), .7);
}body.theme-dracula .amd-sidebar-menu>.amd-menu-item>a>._icon_.tabler{width:42px}
body.theme-amatris .amd-sidebar-menu>.amd-menu-item>a>._icon_.tabler{width:42px;margin-inline-end:8px}
.ht-input>._icon_.tabler{width:24px;margin:0 8px}
.amd-admin-tabs>.--tabs>div>i{}.step-indicators>.--step,.step-indicators{display:flex;align-items:center;justify-content:center}.step-indicators{flex-wrap:wrap;gap:16px}.step-indicators>.--step{aspect-ratio:1;width:40px;background:var(--amd-primary-x-low);padding:8px;border-radius:50%;transition:all ease .3s}.step-indicators>.--step.active{background:var(--amd-primary);color:#fff}.step-indicators>.--step.--complete.active{background:var(--amd-color-green)}.steps{max-width:500px;margin:16px auto}.steps>.--item:not(.active){display:none}    .btn.btn-icon-square{width:max-content !important;min-width:max-content !important;display:inline-flex !important;aspect-ratio:1;align-items:center;justify-content:center;padding:8px !important}
    .btn-icon-square.bis-sm{padding:2px !important}
    .btn-sm.btn-icon-square>._icon_{width:18px;height:auto}
    .btn.btn-icon-square.--block{display:flex !important}
    .btn.btn-full{width:100%}
    .hb-select-group>select{left:0}
    body.rtl .hb-select-group>select{text-align:right}
    body.ltr .hb-select-group>select{text-align:left}.adp-receipt {
        position: relative;
    }
    .adp-receipt > .receipt-content {
        background: var(--amd-wrapper-fg);
        text-align: center;
        padding: 16px 8px;
    }
    .adp-receipt > .receipt-top > svg,
    .adp-receipt > .receipt-bottom > svg {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
    }
    .adp-receipt > .receipt-top {
        bottom: -2px;
    }
    .adp-receipt > .receipt-bottom {
        top: -2px;
    }
    .adp-receipt .receipt-items > .-item.--spacer {
        border-bottom: 1px dashed rgba(var(--amd-text-color-rgb), .2);
    }
    .adp-receipt .receipt-items > .-item,
    .adp-receipt .receipt-items {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 6px 0;
    }
    .adp-receipt .receipt-items {
        justify-content: center;
        flex-direction: column;
    }
    .adp-receipt .receipt-items > .-item {
        flex-direction: row;
        width: 100%;
        max-width: 300px;
    }
    .adp-receipt .receipt-items > .-item > .-sub-item {
        flex: 1;
    }
    .adp-receipt .receipt-items > .-item > .-sub-item:first-child {
        text-align: start;
    }
    .adp-receipt .receipt-items > .-item > .-sub-item:last-child {
        text-align: end;
    }:root {
    --amd-sidebar-width: 300px;
    --amd-navbar-height: 60px;
    --amd-sidebar-radius: 8px;
    --amd-navbar-radius: 8px;
    --amd-size-sm: 13px;
    --amd-size-md: 15px;
    --amd-size-lg: 18px;
    --amd-size-xl: 22px;
}

body {
    font-family: var(--amd-font-family);
    margin: 0;
    padding: 0;
    color: var(--amd-text-color);
    background-color: var(--amd-wrapper-bg);
    background-attachment: fixed;
    background-size: cover;
}

body.no-x {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--amd-title-font);
    color: var(--amd-title-color);
    text-shadow: 0 0 6px rgba(var(--amd-title-color-rgb), .1);
}

h1 {
    font-size: 30px !important;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 14px;
}

h6 {
    font-size: 13px;
}

address {
    font-family: var(--amd-font-family);
    font-weight: normal;
    font-style: italic;
    font-size: 15px;
}

a {
    color: var(--amd-title-color);
}

#content ul {
    margin: 0
}

#content ul > li {
    margin: 8px 0
}

body.rtl { direction: rtl }
body.ltr { direction: ltr }
body.rtl .no-rtl { display: none !important }
body.ltr .no-ltr { display: none !important }
body.light .no-light { display: none !important }
body.dark .no-dark { display: none !important }

.amd-wrapper {
    box-sizing: border-box;
    position: relative;
    width: 100vw;
    padding: 12px 32px;
    margin-top: 0;
    padding-top: 0;
}

@media (min-width: 993px) {
    .amd-wrapper {
        width: calc(100vw - var(--amd-sidebar-width));
    }

    body.rtl .amd-wrapper {
        margin-right: var(--amd-sidebar-width);
    }

    body.ltr .amd-wrapper {
        margin-left: var(--amd-sidebar-width);
    }
}

/* Sidebar */
.amd-sidebar {
    position: fixed;
    top: 0;
    width: var(--amd-sidebar-width);
    height: 100vh;
    background-color: transparent;
    z-index: 1000;
    transition: left ease .2s, right ease .2s;
}

.amd-sidebar.spaced {
    position: fixed;
    top: 16px;
    width: var(--amd-sidebar-width);
    height: calc(100vh - 32px);
    border-radius: 16px;
}

body.rtl .amd-sidebar { right: 0 }
body.ltr .amd-sidebar { left: 0 }
body.rtl .amd-sidebar.spaced { right: 16px }
body.ltr .amd-sidebar.spaced { left: 16px }

@media (max-width: 992px) {
    .amd-sidebar {
        background: linear-gradient(90deg, rgba(var(--amd-wrapper-fg-rgb), .5), rgba(var(--amd-wrapper-fg-rgb), .8));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .amd-content-overlay {
        position: fixed;
        content: ' ';
        display: block;
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 0;
        background: rgba(var(--amd-color-black-rgb), .2);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 10;
        opacity: 1;
        animation: fadeOut ease .5s;
        animation-iteration-count: 1;
    }

    .amd-content-overlay.hidden {
        display: none;
    }

    body.ltr .amd-sidebar { left: 16px }
    body.rtl .amd-sidebar { right: 16px }
    body.ltr .amd-sidebar.collapse { left: -300px }
    body.rtl .amd-sidebar.collapse { right: -300px }
}

.amd-sidebar-watermark,
.amd-sidebar > .--quick-options,
.amd-sidebar-watermark > .--image {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.amd-sidebar-watermark {
    position: relative;
    flex-direction: row;
    padding: 20px 16px;
    text-align: center;
}

.amd-sidebar > .--quick-options {
    display: flex;
    margin: 0 16px 16px;
}

.amd-sidebar-watermark > .--image {
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 10px;
    margin: 0 5px;
    overflow: hidden;
}

.amd-sidebar-watermark > .--image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amd-sidebar-watermark > .--text {
    font-family: var(--amd-title-font);
    text-transform: uppercase;
    font-size: 22px;
    color: #fff;
    margin: 0 5px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.ltr .amd-sidebar-watermark > .--text { letter-spacing: 4px }

.amd-sidebar-menu {
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    list-style: none;
    /*width: 250px;*/
    padding: 12px;
    margin: 0 auto;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.amd-sidebar-menu > .amd-menu-item {
    width: 100%;
}

.amd-sidebar-menu > .amd-menu-item > a {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    margin: 5px 0;
    padding: 12px 16px;
    border-radius: 16px;
    transition: background-color ease .2s;
}

.amd-sidebar-menu > .amd-menu-item.active > a {
    background: var(--amd-primary-x-low);
}

.amd-sidebar-menu > .amd-menu-item:not(.active) > a:hover {
    background: linear-gradient(90deg, rgba(var(--amd-primary-rgb), .04), rgba(var(--amd-primary-rgb), .05));
}

.amd-sidebar-menu > .amd-menu-item > a > ._icon_ {
    box-sizing: border-box;
    display: flex;
    padding: 10px;
    border-radius: 12px;
    background-color: var(--amd-primary-x-low);
    color: var(--amd-primary);
    width: max-content;
    height: auto;
}
.amd-sidebar-menu > .amd-menu-item > a > svg._icon_ {
    width: 38px;
}

.amd-sidebar-menu > .amd-menu-item.active > a > ._icon_ {
    background-color: var(--amd-primary);
    color: #fff;
}

.amd-sidebar-menu > .amd-menu-item > a > .--text {
    flex: 1;
    font-size: 16px;
    margin: 0 8px;
}

.amd-sidebar-menu > .amd-menu-item.active > a > .--text {
    font-weight: bold;
}
.amd-sidebar-menu > .amd-menu-item > a > .--badge,
.amd-navbar .navbar-item > .--badge {
    position: absolute;
    top: auto;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 10px;
    font-size: 13px;
    border-radius: 30px;
}
.amd-navbar .navbar-item > .--badge { top: -3px }
body.rtl .amd-sidebar-menu > .amd-menu-item > a > .--badge { left: 36px }
body.ltr .amd-sidebar-menu > .amd-menu-item > a > .--badge { right: 36px }
body.rtl .amd-navbar .navbar-item > .--badge { left: -3px }
body.ltr .amd-navbar .navbar-item > .--badge { right: -3px }

/* Enf of Sidebar */

/* Navbar */
.amd-navbar,
.amd-navbar > .__side,
.amd-navbar > .__side > .navbar-item,
.amd-sidebar .--quick-options > a {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.amd-navbar {
    box-sizing: border-box;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    top: 0;
    padding: 24px;
    border-radius: 0;
    background: transparent;
    z-index: 999;
    transition: all ease .2s;
}

body.rtl .amd-navbar { right: 0 }
body.ltr .amd-navbar { left: 0 }

.amd-navbar.spaced {
    border-radius: 18px;
    width: calc(100vw - 64px);
    margin-top: 16px;
}

body.rtl .amd-navbar.spaced { right: 32px }
body.ltr .amd-navbar.spaced { left: 32px }

.amd-navbar.sticky {
    position: sticky;
}

.amd-navbar.sticky.overlap {
    background: linear-gradient(90deg, rgba(var(--amd-wrapper-fg-rgb), .3), rgba(var(--amd-wrapper-fg-rgb), .5));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.amd-navbar.sticky.spaced.overlap {
    top: 16px;
}

.amd-navbar > .__side {
    align-items: start;
    justify-content: center;
}

.amd-navbar > .__side > .navbar-item,
.amd-sidebar .--quick-options > a {
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 8px;
    text-decoration: none;
    border-radius: 12px;
}

.amd-navbar > .__side > .navbar-item:hover,
.amd-navbar > .__side > .navbar-item.active,
.amd-sidebar .--quick-options > a:hover,
.amd-sidebar .--quick-options > a.active {
    background: rgba(var(--amd-primary-rgb), .1);
}

.amd-navbar > .__side > .navbar-item.active,
.amd-sidebar .--quick-options > a.active {
    color: var(--amd-primary);
}

.amd-navbar > .__side > .navbar-item > svg.iconhub,
.amd-sidebar .--quick-options > a > svg.iconhub {
    width: 24px;
    height: auto;
}

@media ( min-width: 993px ) {
    .amd-navbar {
        width: calc(100vw - var(--amd-sidebar-width)) !important;
    }

    .amd-navbar.spaced {
        width: calc(calc(100vw - var(--amd-sidebar-width)) - 64px) !important;
    }
}

/* End of Navbar */

/* Cards */
.amd-card {
    position: relative;
    border-radius: 18px;
    box-shadow: var(--amd-shadow);
    margin: 8px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(var(--amd-wrapper-fg-rgb), .9), rgba(var(--amd-wrapper-fg-rgb), .4));
    backdrop-filter: blur(3px);
}

.amd-card.--boxed {
    margin: 8px;
    padding: 8px 4px;
    overflow: unset !important;
}

.amd-card.--boxed .--footer,
.amd-card.--boxed .--footer-2 {
    font-size: 13px;
}

.amd-card.--stretch {
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: start;
    justify-content: space-between;
    background-size: cover;
}

.amd-card.--stretch > * {
    z-index: 1;
}

.amd-card.--stretch.--blur:before {
    position: absolute;
    content: ' ';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(var(--amd-wrapper-bg-rgb), .5);
    z-index: 0;
    top: 0;
    left: 0;
    transition: all ease .5s;
}

.amd-card.--stretch.--blur:hover:before {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.amd-card.--stretch.--square {
    width: max-content;
    height: auto;
    aspect-ratio: 1;
}

.amd-card.--stretch.--ratio-1-2 {
    width: max-content;
    height: auto;
    aspect-ratio: 1/2;
}

.amd-card.--stretch.--ratio-2-1 {
    aspect-ratio: 2/1;
}

.amd-card > .--title {
    font-family: var(--amd-title-font);
    font-size: 18px;
    color: rgba(var(--amd-title-color-rgb), .9);
    margin: 0 0 8px;
    padding: 8px 18px 0;
}

.amd-card.--boxed > .--title {
    margin-inline-end: 80px;
}

.amd-card.--title-box {
    margin-top: 40px;
    overflow: unset;
}

.amd-card.--title-box > .--title {
    position: relative;
    background: var(--amd-wrapper-fg);
    color: #fff;
    text-align: center;
    top: -20px;
    width: 80%;
    margin: 0 auto;
    padding: 8px 16px;
    border-radius: 14px;
}

.amd-card.--title-box.waiting > .--title {
    opacity: .1
}

.amd-card.--title-box > .--title .--button {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    margin: 0;
    border-radius: 8px !important;
    line-height: 100%;
}

.amd-card.--title-box > .--title .--button.--right {
    left: unset;
    right: 5px;
}

.amd-card > .--title-2 {
    font-family: var(--amd-title-font);
    font-size: var(--amd-size-xl);
    color: var(--amd-title-color);
    padding: 18px;
    margin: 0;
}

.amd-card.--boxed > .--icon {
    position: absolute;
    display: flex;
    top: calc(50% - 40px);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 80px;
    height: auto;
    padding: 8px;
    border-radius: 18px;
    color: rgba(var(--amd-color-white-rgb), .8);
    text-align: center;
}

body.rtl .amd-card.--boxed > .--icon {
    left: 20px
}

body.ltr .amd-card.--boxed > .--icon {
    right: 20px
}

.amd-card.--boxed > .--icon > .bi {
    font-size: 29px;
}

.amd-card.--boxed > .--icon.--flex-align > .bi {
    display: flex;
    align-content: center;
    justify-content: center;
}

.amd-card.--boxed > .--icon > svg.iconhub,
.amd-card.--boxed > .--icon > svg.tabler {
    width: 64px;
    height: auto;
}

.-gr-red { background: var(--amd-color-red) !important }
.-gr-green { background: var(--amd-color-green) !important }
.-gr-blue { background: var(--amd-color-blue) !important }
.-gr-orange { background: var(--amd-color-orange) !important }
.-gr-purple { background: var(--amd-color-purple) !important }
.-gr-primary { background: var(--amd-primary) !important }

.amd-card.--title-box > .--title.--red { background: linear-gradient(90deg, rgba(var(--amd-color-red-rgb), .7), rgba(var(--amd-color-red-rgb), .9)) !important }
.amd-card.--title-box > .--title.--green { background: linear-gradient(90deg, rgba(var(--amd-color-green-rgb), .7), rgba(var(--amd-color-green-rgb), .8)) !important }
.amd-card.--title-box > .--title.--blue { background: linear-gradient(90deg, rgba(var(--amd-color-blue-rgb), .7), rgba(var(--amd-color-blue-rgb), .9)) !important }
.amd-card.--title-box > .--title.--orange { background: linear-gradient(90deg, rgba(var(--amd-color-orange-rgb), .7), rgba(var(--amd-color-orange-rgb), .9)) !important }
.amd-card.--title-box > .--title.--purple { background: linear-gradient(90deg, rgba(var(--amd-color-purple-rgb), .7), rgba(var(--amd-color-purple-rgb), .9)) !important }
.amd-card.--title-box > .--title.--primary { background: linear-gradient(90deg, rgba(var(--amd-primary-rgb), .7), rgba(var(--amd-primary-rgb), .9)) !important }

.amd-card.--title-box > .--title.--blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.amd-card.--boxed > .--icon.-gr-purple,
.amd-card.--boxed > .--icon.-gr-red,
.amd-card.--boxed > .--icon.-gr-green,
.amd-card.--boxed > .--icon.-gr-blue {
    color: #fff;
}

.amd-card.--boxed > .--icon.-blue {
    background: var(--amd-color-blue);
    color: #fff;
}

.amd-card.--boxed > .--icon.-green {
    background: var(--amd-color-green);
    color: #fff;
}

.amd-card.--boxed > .--icon.-orange {
    background: var(--amd-color-orange);
    color: #fff;
}

.amd-card > .--content {
    font-family: var(--amd-font-family);
    font-size: var(--amd-size-md);
    padding: 0 18px 8px;
}

.amd-card.--boxed > .--content {
    margin-inline-end: 80px;
}

.amd-card > .--footer {
    font-size: var(--amd-size-sm);
    color: rgba(var(--amd-text-color-rgb), .8);
    padding: 8px 18px 12px;
}

.amd-card > .--footer-2 {
    padding: 0 18px 12px;
}

.amd-card > .--footer-2 .btn {
    margin: 4px;
}

.amd-card > .--footer a {
    font-size: 15px;
    text-decoration: none;
    color: var(--amd-title-color);
}

.amd-card > .--card-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.btn, .btn-text {
    border-radius: 30px !important;
    padding: 0 22px !important;
}

.btn.--icon, .btn-text.--icon {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
}

.btn.--icon > ._icon_,
.btn-text.--icon > ._icon_ {
    position: relative;
    height: 18px;
    right: 0;
    left: 0;
    width: auto;
    margin: 0 8px;
    color: currentColor;
    fill: currentColor;
    transition: right ease .2s, left ease .2s;
}

body.ltr .btn.--icon.--icon-shift:hover > ._icon_,
body.ltr .btn-text.--icon.--icon-shift:hover > ._icon_ {
    left: 5px;
    right: unset;
}
/* End of Cards */

/* Table */
.amd-table {
    border-radius: 10px;
    overflow: hidden;
}
.amd-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.amd-table th {
    font-family: var(--amd-title-font);
    font-size: 14px;
    text-align: start;
    color: var(--amd-color-white);
    padding: 8px;
    border: none;
    background: var(--amd-wrapper-fg);
}
.amd-table tbody tr:nth-child(even) > td {
    background: #18183f;
}
.amd-table tbody tr:nth-child(odd) > td {
    background: #151535;
}
.amd-table tbody tr > td {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.amd-table td {
    border: none;
    font-size: 16px;
    color: var(--amd-color-white);
    padding: 16px 8px;
}
.amd-table tr:not(:last-child) td {
    /*border-bottom: 1px solid rgba(var(--amd-color-white-rgb), .08);*/
}
/* End of Table */

@media (min-width: 993px) and (max-width: 1399px) {
    .card-columns.template-1 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (min-width: 1400px){
    .card-columns.template-1 {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}

@media (min-width: 993px){
    .card-columns {
        box-sizing: border-box;
    }
    .card-columns {
        -webkit-column-gap: 26px;
        -moz-column-gap: 26px;
        column-gap: 26px;
    }
    .card-columns .amd-card {
        display: inline-block !important;
        width: 100% !important;
    }
}
.card-columns .amd-card {
    margin-bottom: 12px !important;
}

.circle-image {
    display: flex;
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
}

.circle-image.s-50 { width: 50px }
.circle-image.s-80 { width: 80px }
.circle-image.s-100 { width: 100px }
.circle-image.s-200 { width: 200px }

.circle-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.select-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.select-bar > a {
    text-decoration: none;
    background: rgba(var(--amd-primary-rgb), .1);
    color: var(--amd-text-color);
    margin: 4px;
    padding: 12px 0;
    border-radius: 6px;
    transition: background-color ease .2s, color ease .2s;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-bar > a.btn {
    height: max-content;
    padding: 5px;
}

.select-bar > a:hover {
    background: rgba(var(--amd-primary-rgb), .2);
    color: var(--amd-primary);
}

.select-bar > a.active {
    background: rgba(var(--amd-primary-rgb), .7);
    color: #fff;
}

.select-bar.full-width > a {
    width: 100%;
    text-align: center;
}

.select-bar > a > span {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.select-bar > a > span > span {
    display: block;
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-bar > a > span > img {
    width: 24px;
    margin: 0 10px;
}

/* Tooltip */
.amd-tooltip {
    box-sizing: content-box;
    position: fixed;
    color: var(--amd-wrapper-fg);
    background: var(--amd-text-color);
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 5px;
    height: 18px;
    z-index: 99999;
}

/* End of Tooltip */

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    z-index: 990
}

.indeterminate-progress-bar {
    position: relative;
    background-color: rgba(var(--amd-primary-rgb), .12);
    border-radius: 9999px;
    height: 4px;
    overflow: hidden
}

.indeterminate-progress-bar__progress {
    position: absolute;
    background-color: rgba(var(--amd-primary-rgb), .5);
    border-radius: 9999px;
    bottom: 0;
    top: 0;
    width: 50%;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: indeterminate-progress-bar
}

#loader.__stop .indeterminate-progress-bar__progress {
    animation: none;
    background-color: transparent;
    left: 100%;
}

@keyframes indeterminate-progress-bar {
    from {
        left: -50%
    }
    to {
        left: 100%
    }
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--amd-text-color);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* End of Loader */
.amd-form-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--amd-wrapper-fg-rgb), .2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: inherit;
    z-index: 99999;
}

.amd-form-loading.--full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.amd-form-loading > p {
    position: absolute;
    color: var(--amd-wrapper-fg);
}

.amd-form-loading > .lds-ellipsis._loader_ {
    position: absolute !important;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
}

.amd-form-loading > p {
    font-family: var(--amd-title-font);
    font-size: 18px;
    width: 100%;
    height: 18px;
    top: calc(60% - 9px);
    left: 0;
    text-align: center;
    text-shadow: 0 0 5px rgba(var(--amd-wrapper-fg-rgb), .4);
}

.amd-card-list,
.amd-card-list > .--card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}

.amd-card-list {
    position: relative;
    flex-direction: column;
    background: var(--amd-wrapper-fg);
    width: 100%;
    border-radius: 12px;
    padding: 16px 0;
    overflow: hidden;
}
.amd-card-list:not(.no-shadow) {
    box-shadow: var(--amd-shadow);
}

.amd-card-list .--card-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.amd-card-list > .--card {
    flex: 1;
    width: calc(100% - 40px);
    padding: 16px;
}

.amd-card-list > .--separated {
    border-bottom: 1px dashed rgba(var(--amd-primary-rgb), .2);
}

.amd-card-list > .--card > .-image {
    display: flex;
    flex: 1;
    width: 80px;
    height: auto;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.amd-card-list > .--card > .-image img,
.amd-card-list > .--card > .-image svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.amd-card-list > .--card > .-image img.small {
    width: auto;
    height: 32px;
}
.amd-card-list > .--card > .-image img.medium {
    width: auto;
    height: 40px;
}

.amd-card-list > .--card > .-content {
    flex: 8;
    margin: 0 16px;
}

.amd-card-list > .--card .-title {
    font-size: var(--amd-size-lg);
    margin: 0;
}
.amd-card-list > .--card .-title a {
    text-decoration: none;
    color: currentColor;
}

.amd-card-list > .--card .-desc {
    margin: 8px 0;
}

.amd-card-list > .--card > .-side {
    flex: 1;
    text-align: end;
}

.amd-table-simple {
    margin: 16px 0;
    max-width: 300px;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.ht-magic-input {
    position: relative;
    display: block;
    font-family: var(--amd-font-family);
    background: var(--amd-primary-x-low);
    padding: 20px 0 0;
    margin: 8px 8px 16px;
    cursor: text;
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all ease .3s
}
.ht-magic-input > input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
}
.ht-magic-input > .--keys {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    height: 30px;
    opacity: 0;
    transition: opacity ease .3s;
}
.ht-magic-input.focus > .--keys,
.ht-magic-input.text > .--keys {
    opacity: 1;
}
.ht-magic-input > .--keys > span {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin: 0 8px;
}
.ht-magic-input > .--keys > span:before {
    content: ' ';
    position: absolute;
    display: block;
    bottom:  0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: rgba(var(--amd-text-color-rgb), .4);
    border-radius: 3px;
}
.ht-magic-input > .--keys > span.text:before {
    background-color: transparent;
}
.ht-magic-input.focus > .--keys > span.cursor:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: rgba(var(--amd-text-color-rgb), .1);
    animation: mgi_cursor_blink ease 1s infinite;
}
@keyframes mgi_cursor_blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.ht-magic-input > .--title {
    box-sizing: border-box;
    position: absolute;
    font-size: 16px;
    width: 100%;
    top: 15px;
    left: 0;
    text-align: center;
    padding: 0 16px;
    color: var(--amd-text-color);
    user-select: none;
    transition: all ease .3s
}
.ht-magic-input.focus > .--title,
.ht-magic-input.text > .--title {
    font-size: 13px;
    top: 5px;
    color: var(--amd-primary);
    transition: all ease .3s
}
.ht-magic-input > ._icon_ {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    font-size: 20px;
    color: rgba(var(--amd-text-color-rgb), .8);
    background: var(--amd-primary-x-low);
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    justify-content: center
}
.ht-magic-input > svg.iconhub {
    width: 22px;
    margin: 0 8px;
}
body.rtl .ht-magic-input > ._icon_ { left: 0 }
body.ltr .ht-magic-input > ._icon_ { right: 0 }

.ht-magic-select {
    position: relative;
    margin: 8px 8px 16px;
}

.ht-magic-select > label {
    position: relative;
    display: block;
    font-family: var(--amd-font-family);
    background: var(--amd-input-bg);
    padding: 20px 0 0;
    height: 30px;
    cursor: text;
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all ease .3s
}

.ht-magic-select .--input {
    box-sizing: border-box;
    position: absolute;
    font-family: var(--amd-font-family);
    color: var(--amd-text-color);
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 10px 16px 0;
    background: none;
}

body.rtl .ht-magic-select .--input {
    right: 0
}

body.ltr .ht-magic-select .--input {
    left: 0
}

.ht-magic-select .--input + span {
    position: absolute;
    font-size: 16px;
    top: 15px;
    color: var(--amd-text-color);
    user-select: none;
    transition: all ease .3s
}

body.rtl .ht-magic-select .--input + span {
    right: 16px
}

body.ltr .ht-magic-select .--input + span {
    left: 16px
}

.ht-magic-select .--input:focus + span, .ht-magic-select .--input:not(:placeholder-shown) + span {
    font-size: 13px;
    top: 5px;
    color: var(--amd-primary);
    transition: all ease .3s
}

.ht-magic-select .--value {
    position: absolute;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    background: rgba(var(--amd-primary-rgb), .2);
    color: var(--amd-primary);
}

.ht-magic-select > label.invalid > .--value {
    background-color: rgba(var(--amd-color-red-rgb), .2);
    color: var(--amd-color-red);
}

body.rtl .ht-magic-select .--value {
    left: 0
}

body.ltr .ht-magic-select .--value {
    right: 0
}

.ht-magic-select .--options {
    display: none
}

.ht-magic-select .--search {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 50px;
    left: 0;
    width: 100%;
    margin: 8px 0;
    background: var(--amd-wrapper-fg);
    z-index: 10;
    border-radius: 8px;
    border: 1px solid var(--amd-primary-x-low);
    overflow: hidden;
}

.ht-magic-select .--search > span {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    color: var(--amd-text-color);
    background: transparent;
    transition: all ease .1s;
    text-align: start;
    cursor: var(--amd-pointer);
}

.ht-magic-select .--search > span.selected {
    background: rgba(var(--amd-primary-rgb), .1);
    color: var(--amd-primary);
}

.ht-magic-select .--search > span:hover {
    background: rgba(var(--amd-primary-rgb), .2);
    color: var(--amd-primary);
}

.ht-magic-select .--search > span:not(:last-child) {
    border-bottom: 1px solid var(--amd-primary-x-low);
}

.ht-magic-select .--search > span.exclude {
    background: none !important;
    color: var(--amd-text-color) !important;
    cursor: auto;
}

.amd-alert {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: stretch;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    background: var(--amd-primary);
    padding: 8px 16px;
    border-radius: 8px;
    margin: 8px 0;
    max-width: 100%;
}

.amd-alert p {
    font-size: 15px;
    margin: 8px 0;
    flex: 1
}

.amd-alert a {
    font-size: 15px;
    text-decoration: underline !important;
    color: currentColor;
}

.amd-alert code {
    display: inline-block;
    margin: 8px 0;
    font-family: var(--amd-font-family);
    background: var(--amd-wrapper-fg);
    padding: 1px 8px;
    border-radius: 5px;
}

.amd-alert ._icon_ {
    flex: 0 0 30px;
    direction: ltr;
    font-size: 18px;
    display: inline-flex;
    width: auto;
    height: 30px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    color: var(--amd-primary);
}

.amd-alert .--close {
    position: absolute;
    top: 8px;
    left: 16px;
    margin: 0;
    opacity: 0.7;
    cursor: var(--amd-pointer);
}
.amd-alert .--close ._icon_ {
    background: none;
    color: currentColor;
}

.amd-alert svg.iconhub {
    box-sizing: border-box;
    padding: 4px;
}
.amd-alert.primary { background: var(--amd-primary) }
.amd-alert.primary code { color: var(--amd-primary) }
.amd-alert.primary ._icon_ { color: #fff }
.amd-alert.error { background: var(--amd-color-red) }
.amd-alert.error code { color: var(--amd-color-red) }
.amd-alert.error ._icon_ { color: #fff }
.amd-alert.success { background: var(--amd-color-green) }
.amd-alert.success code { color: var(--amd-color-green) }
.amd-alert.success ._icon_ { color: #fff }
.amd-alert.info { background: var(--amd-color-blue) }
.amd-alert.info code { color: var(--amd-color-blue) }
.amd-alert.info ._icon_ { color: #fff }
.amd-alert.warning { background: var(--amd-color-orange) }
.amd-alert.warning code { color: var(--amd-color-orange) }
.amd-alert.warning ._icon_ { color: #fff }
.amd-alert.info .bi { color: var(--amd-color-blue) }

.amd-list.--no-style {
    list-style: none;
}

.amd-floating-buttons {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    width: 80px;
    margin: 24px;
}
.amd-floating-buttons.--top {
    top: calc(var(--amd-navbar-height) + 8px);
}
.amd-floating-buttons.--bottom {
    bottom: 0;
}
body.rtl .amd-floating-buttons { left: 0 }
body.ltr .amd-floating-buttons { right: 0 }
.amd-floating-buttons > .--button {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 4px 0;
    padding: 0 !important;
}
.amd-floating-buttons > .--button.--white {
    background: var(--amd-text-color);
    color: var(--amd-wrapper-fg);
    box-shadow: var(--amd-shadow);
}
.amd-floating-buttons > .--button.--round {
    border-radius: 50% !important;
}
.amd-floating-buttons > .--button.--square {
    width: 50px;
    height: auto;
    aspect-ratio: 1;
}
.amd-floating-buttons > .--button.--square.--round {
    width: 60%;
}
.amd-floating-buttons > .--button.--full {
    width: 100%;
}

.amd-floating-buttons ._icon_ {
    display: flex;
    align-items: center;
    justify-content: center;
}

.amd-option-grid, .amd-option-grid > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start
}

.amd-option-grid > .-item {
    position: relative;
    flex: 0 0 100%;
    padding: 16px 0;
    flex-direction: row;
    align-items: start;
    justify-content: start
}
.amd-option-grid > .-item.--middle {
    align-items: center;
    justify-content: center;
}
.amd-option-grid > .-item.--middle > .-sub-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.amd-option-grid > .-item.--center {
    align-items: center
}

.amd-option-grid > .-item:not(:last-child):after {
    content: ' ';
    position: absolute;
    display: block;
    bottom: 0;
    width: 100%;
    height: 0;
    border: 1px dashed rgba(var(--amd-primary-rgb), .2)
}

.amd-option-grid > .-item > .-sub-item {
    flex: 1
}

.amd-option-grid > .-item > .-sub-item.g-1 { flex: 1 }
.amd-option-grid > .-item > .-sub-item.g-2 { flex: 2 }
.amd-option-grid > .-item > .-sub-item.g-3 { flex: 3 }
.amd-option-grid > .-item > .-sub-item.g-4 { flex: 4 }
.amd-option-grid > .-item > .-sub-item.g-5 { flex: 5 }
.amd-option-grid > .-item > .-sub-item.g-6 { flex: 6 }
.amd-option-grid > .-item > .-sub-item.g-7 { flex: 7 }
.amd-option-grid > .-item > .-sub-item.g-8 { flex: 8 }
.amd-option-grid > .-item > .-sub-item.g-9 { flex: 9 }
.amd-option-grid > .-item > .-sub-item.g-10 { flex: 10 }
.amd-option-grid > .-item > .-sub-item.g-auto { flex: 0 0 max-content }

.amd-option-grid > .-item > .-sub-item.--full {
    flex: 0 0 100%
}

.amd-option-grid > .-item > .-sub-item:nth-child(1) {
    text-align: start;
}

.amd-option-grid > .-item > .-sub-item:nth-child(2) {
    text-align: end
}

.amd-option-grid > .-item > .-sub-item {
    text-align: start
}

.amd-option-grid > .-item > .-sub-item {
    margin: 6px 0
}

.color-badge {
    position: relative;
    display: inline-block;
    bottom: -4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.ticket-sidebar {
    box-sizing: content-box;
    background: rgba(var(--amd-wrapper-fg-rgb), .5);
    padding: 12px 32px;
    border-radius: 11px;
    backdrop-filter: blur(3px);
}

.amd-todo-row > .--item .btn {
    padding: 0 !important
}.adp-spin{animation:adp_spin linear 2s infinite}.adp-spin.--ease{animation-timing-function:ease}.adp-spin.--rev{animation-direction:reverse}@keyframes adp_spin{0%{transform:rotate(0)}50%{transform:rotate(180deg)}100%{transform:rotate(360deg)}}body{min-height:100vh}
.select-bar{align-items:start !important}
.select-bar>.btn{max-width:100% !important}
.select-bar>a>span{align-items:start !important;justify-content:start !important}
.hello-pop.popup .hello-title,.hello-pop.popup .hello-head,.hello-pop.popup .hello-content{text-align:start !important}
.hello-pop.popup .hello-footer{justify-content:start !important}
.hello-pop svg.status-icon{position:absolute;top:0;left:0;padding:10px;margin:11px !important;border-radius:10px !important;width:24px !important;z-index:0;opacity:.7}
.hello-pop i.status-icon.success{color:var(--amd-color-green) !important;background:rgba(var(--amd-color-green-rgb), .2) !important}
.hello-pop i.status-icon.error{color:var(--amd-color-red) !important;background:rgba(var(--amd-color-red-rgb),.2) !important}
.hello-pop i.status-icon.info {color:var(--amd-color-blue) !important;background:rgba(var(--amd-color-blue-rgb),.2) !important}
.hello-pop i.status-icon.warning{color:var(--amd-color-orange) !important;background:rgba(var(--amd-color-orange-rgb),.2) !important}
.hello-pop svg.status-icon.success{fill:var(--amd-color-green) !important;background:rgba(var(--amd-color-green-rgb), .2) !important}
.hello-pop svg.status-icon.error{fill:var(--amd-color-red) !important;background:rgba(var(--amd-color-red-rgb),.2) !important}
.hello-pop svg.status-icon.info {fill:var(--amd-color-blue) !important;background:rgba(var(--amd-color-blue-rgb),.2) !important}
.hello-pop svg.status-icon.warning{fill:var(--amd-color-orange) !important;background:rgba(var(--amd-color-orange-rgb),.2) !important}