/*
 * Some components are made by Google LLC
 * Compiled & modified by Amatris
 */
/* button-unelevated.min.css */
:root {
    --amd-btn-line-height: 36px;
    --amd-btn-radius: 6px;
}
.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;
    background-color: rgb(var(--amd-primary-rgb));
    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 12px;
    letter-spacing: 0 !important;
    border-radius: var(--amd-btn-radius);
    text-decoration: none
}

.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 {
    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-color: var(--amd-color-red) }
.btn:not(.btn-text, .btn-outline).--green { background-color: var(--amd-color-green) }
.btn:not(.btn-text, .btn-outline).--blue { background-color: var(--amd-color-blue) }
.btn:not(.btn-text, .btn-outline).--orange { background-color: var(--amd-color-orange) }
.btn:not(.btn-text, .btn-outline).--transparent { background-color: transparent }

/* button-text.min.css */
.btn-text {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
    border: 0;
    border-radius: var(--amd-btn-radius);
    padding: 0 12px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    color: var(--amd-primary);
    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-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);
}

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: rgb(var(--amd-primary-rgb));
    transition: opacity .2s
}

.btn-text.--low.--red::before {
    background-color: rgb(var(--amd-color-red-rgb), .2);
}
.btn-text.--low.--green::before {
    background-color: rgb(var(--amd-color-green-rgb), .2);
}
.btn-text.--low.--blue::before {
    background-color: rgb(var(--amd-color-blue-rgb), .2);
}
.btn-text.--low.--orange::before {
    background-color: rgb(var(--amd-color-orange-rgb), .2);
}

.btn-text::after {
    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-color-black-rgb), .38);
    background-color: transparent;
    cursor: initial
}

.btn-text:disabled::after, .btn-text:disabled::before {
    opacity: 0
}

.btn-text.--low {
    background-color: rgba(var(--amd-primary-rgb), .2);
}

.btn-text.--low.--red { background-color: rgba(var(--amd-color-red-rgb), .2) }
.btn-text.--low.--green { background-color: rgba(var(--amd-color-green-rgb), .2) }
.btn-text.--low.--blue { background-color: rgba(var(--amd-color-blue-rgb), .2) }
.btn-text.--low.--orange { background-color: rgba(var(--amd-color-orange-rgb), .2) }

.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: var(--amd-color-black);
    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-color-black-rgb), .38);
    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: var(--amd-color-black);
    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-wrapper-bg);
    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.--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 {
    position: relative;
    background: var(--amd-input-bg);
    width: max-content;
    padding: 20px 0 0;
    cursor: text;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: width ease .3s
}

.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%;
    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-primary);
    transition: all ease .3s
}
.ht-textarea > textarea:focus + span,
.ht-textarea > textarea:not(:placeholder-shown) + span {
    color: var(--amd-text-color);
}

.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 }
.ht-textarea > ._icon_ { margin: 16px }

body.rtl .ht-textarea > textarea + span,
body.ltr .ht-textarea > ._icon_ { right: 0; left: unset; top: 0; }


body.ltr .ht-textarea > 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;
    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)
}

.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% {
        background: rgba(var(--amd-primary-rgb), .8);
    }
    20% {
        background: rgba(var(--amd-color-red-rgb), .8);
    }
    40% {
        background: rgba(var(--amd-color-green-rgb), .8);
    }
    60% {
        background: rgba(var(--amd-color-blue-rgb), .8);
    }
    80% {
        background: rgba(var(--amd-color-orange-rgb), .8);
    }
    100% {
        background: rgba(var(--amd-primary-rgb), .8);
    }
}

@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-wrapper-fg);
    margin: 0 8px;
    width: 50px;
    padding: 8px 16px;
    border-radius: 12px;
}

.amd-message-box.--mine > .--item > .-box {
    background: rgba(var(--amd-color-green-rgb), .1);
}

.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);
}.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}:root {
    --amd-sidebar-width: 280px;
    --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;
}

a {
    color: var(--amd-color-blue);
    font-size: var(--amd-size-md);
}

address {
    font-style: normal;
    font-size: var(--amd-size-md);
    text-align: start;
    background: var(--amd-wrapper-bg);
    color: var(--amd-text-color);
    padding: 8px;
    margin: 8px;
    border-radius: 8px;
}

.row > div {
    padding: 0 !important;
}

.size-sm {
    font-size: var(--amd-size-sm)
}

.size-md {
    font-size: var(--amd-size-md)
}

.size-lg {
    font-size: var(--amd-size-lg)
}

.size-xl {
    font-size: var(--amd-size-xl)
}

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;
}

#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
}

body {
    font-family: var(--amd-font-family);
    background: var(--amd-wrapper-bg);
    color: var(--amd-text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.amd-sidebar {
    position: fixed;
    width: var(--amd-sidebar-width);
    height: 100vh;
    top: 0;
    background: var(--amd-wrapper-fg);
    text-align: center;
    box-shadow: var(--amd-shadow);
    z-index: 1000;
}

.amd-sidebar.spaced {
    top: 10px;
    width: calc(var(--amd-sidebar-width) - 10px);
    height: calc(100vh - 40px);
    border-radius: var(--amd-sidebar-radius);
}

body.rtl .amd-sidebar {
    right: 0;
    transition: right ease .3s
}

body.ltr .amd-sidebar {
    left: 0;
    transition: left ease .3s;
}

body.rtl .amd-sidebar.spaced {
    right: 10px
}

body.ltr .amd-sidebar.spaced {
    left: 10px
}

@media (max-width: 992px) {
    body.ltr .amd-sidebar.collapse {
        left: calc(0px - var(--amd-sidebar-width))
    }

    body.rtl .amd-sidebar.collapse {
        right: calc(0px - var(--amd-sidebar-width))
    }
}

@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;
}

.amd-navbar {
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    width: 100vw;
    height: var(--amd-navbar-height);
    background: var(--amd-wrapper-fg);
    margin: 0 0 12px;
    top: 0;
    box-shadow: var(--amd-shadow);
    overflow: hidden;
    z-index: 999;
}

.amd-navbar.sticky {
    position: fixed;
}

.amd-navbar.spaced {
    top: 10px;
    width: calc(100vw - 20px);
    border-radius: var(--amd-navbar-radius);
}

@media (min-width: 993px) {
    .amd-navbar {
        width: calc(100vw - var(--amd-sidebar-width));
    }

    .amd-navbar.spaced {
        width: calc(100vw - var(--amd-sidebar-width) - 40px);
    }
}

.amd-navbar .__side {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex: 0 0 50%;
}

.amd-navbar .--side-left {
    justify-content: start;
}

.amd-navbar .--side-right {
    flex-direction: row;
    justify-content: end;
}

.amd-navbar .__side > a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: rgba(var(--amd-text-color-rgb), .8);
    background: transparent;
    text-decoration: none;
    height: calc(var(--amd-navbar-height) - 16px);
    width: auto;
    aspect-ratio: 1;
    margin: 8px;
    margin-inline-start: 8px;
    margin-inline-end: 4px;
    border-radius: 4px;
    transition: background-color ease .2s, color ease .1s;
}

.amd-navbar .__side > a:hover,
.amd-navbar .__side > a.active {
    background: rgba(var(--amd-primary-rgb), .2);
    color: var(--amd-primary);
}

.amd-navbar .__side > a > .bi {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.amd-navbar .__side > a > .mi {
    font-size: 26px;
}

.amd-navbar .__side > a > svg.iconhub {
    width: 24px;
    height: auto;
}

body.rtl .amd-navbar {
    left: 0
}

body.ltr .amd-navbar {
    right: 0
}

body.rtl .amd-navbar.spaced {
    left: 10px
}

body.ltr .amd-navbar.spaced {
    right: 10px
}

.amd-wrapper {
    position: relative;
    box-sizing: border-box;
    margin-top: calc(var(--amd-navbar-height) + 10px);
    width: 100vw;
    height: 100vh;
    background: var(--amd-wrapper-bg);
    padding: 12px 32px;
}

.amd-wrapper.static_nav {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

@media (min-width: 993px) {
    .amd-wrapper {
        width: calc(100vw - var(--amd-sidebar-width));
        height: calc(100vh - var(--amd-navbar-height));
    }

    body.rtl .amd-wrapper {
        margin-right: var(--amd-sidebar-width);
    }

    body.ltr .amd-wrapper {
        margin-left: var(--amd-sidebar-width);
    }
}

.amd-sidebar-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    margin-top: 24px;
    padding: 0;
    max-height: calc(100% - 250px);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body.not_optimized .amd-sidebar-menu {
    /*margin-top: 24px;*/
}

.amd-sidebar-menu::-webkit-scrollbar {
    display: none;
}

.amd-sidebar-menu > .amd-menu-item {
    position: relative;
    width: 100%;
}

.amd-sidebar-menu > .amd-menu-item.active:not(.no-indicator):before {
    content: ' ';
    position: absolute;
    display: block;
    width: 4px;
    height: 70%;
    top: 15%;
    background: var(--amd-primary);
}

.amd-sidebar-menu > .amd-menu-item.active.indicator-3:before {
    width: 4px;
    height: 100%;
    top: 0;
}

body.rtl .amd-sidebar-menu > .amd-menu-item.active.indicator-1:before {
    left: 0;
    border-radius: 0 4px 4px 0
}

body.ltr .amd-sidebar-menu > .amd-menu-item.active.indicator-1:before {
    right: 0;
    border-radius: 4px 0 0 4px
}

body.rtl .amd-sidebar-menu > .amd-menu-item.active.indicator-2:before {
    left: 4px;
    border-radius: 4px
}

body.ltr .amd-sidebar-menu > .amd-menu-item.active.indicator-2:before {
    right: 4px;
    border-radius: 4px
}

body.rtl .amd-sidebar-menu > .amd-menu-item.active.indicator-3:before {
    left: 0
}

body.ltr .amd-sidebar-menu > .amd-menu-item.active.indicator-3:before {
    right: 0
}

.amd-sidebar-menu > .amd-menu-item > a {
    font-family: var(--amd-title-font);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    color: rgba(var(--amd-text-color-rgb), .8);
    text-decoration: none;
    transition: background-color ease .2s;
    padding: 4px 18px;
    height: 50px;
}

.amd-sidebar-menu > .amd-menu-item.active > a {
    color: var(--amd-primary);
    background: rgba(var(--amd-primary-rgb), .2);
}

.amd-sidebar-menu > .amd-menu-item:hover > a {
    background: rgba(var(--amd-primary-rgb), .1);
}

.amd-sidebar-menu > .amd-menu-item > a > .--text {
    font-size: var(--amd-size-lg);
}

.amd-sidebar .--user {
    height: 160px;
    padding: 16px 8px 0;
}

.amd-sidebar .--user-name {
    display: block;
    font-family: var(--amd-title-font);
    font-size: 18px;
    line-height: 18px;
    margin: 0;
    text-transform: capitalize;
}

.amd-sidebar .--welcome {
    display: block;
    font-family: 'shabnam';
    font-size: 14px;
    margin: 10px 0 0;
    color: rgba(var(--amd-text-color-rgb), .8);
}

.amd-sidebar .--quick-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-bottom: 10px;
}

.amd-navbar > .__side > .navbar-item {
    position: relative;
}

.amd-sidebar .--quick-options > a {
    box-sizing: content-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: rgba(var(--amd-text-color-rgb), .9);
    text-decoration: none;
    width: 24px;
    height: auto;
    aspect-ratio: 1;
    padding: 8px;
    border-radius: 4px;
    margin: 12px 0;
    background: transparent;
    transition: background-color ease .3s, color ease .2s;
}

body.not_optimized .amd-sidebar .--quick-options > a {

}

.amd-sidebar .--quick-options > a:hover {
    background: rgba(var(--amd-primary-rgb), .2);
    color: var(--amd-primary);
}

.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: 16px }
body.ltr .amd-sidebar-menu > .amd-menu-item > a > .--badge { right: 16px }
body.rtl .amd-navbar .navbar-item > .--badge { left: -3px }
body.ltr .amd-navbar .navbar-item > .--badge { right: -3px }

.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%;
}

/* Material icons setup */
.amd-sidebar-menu > .amd-menu-item > a > .mi {
    font-size: 20px;
    padding: 12px;
}

.amd-sidebar .--quick-options > a > .mi {
    font-size: 24px;
}

/* End of Material icons setup */

/* Bootstrap icons setup */
.amd-sidebar-menu > .amd-menu-item > a > .bi {
    font-size: 18px;
    padding: 12px;
}

.amd-sidebar .--quick-options > a > .bi {
    font-size: 18px;
}

/* End of Bootstrap icons setup */

/* Iconhub setup */
svg.iconhub path,
svg.iconhub line,
svg.iconhub polyline {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px
}

.amd-sidebar-menu > .amd-menu-item > a > svg.iconhub {
    box-sizing: content-box;
    padding: 12px;
    width: 18px;
    height: auto;
}

.amd-sidebar .--quick-options > a > svg.iconhub {
    width: 20px;
    height: auto;
}

/* End of Iconhub setup */

.amd-card {
    position: relative;
    background: var(--amd-wrapper-fg);
    border-radius: 10px;
    box-shadow: var(--amd-shadow);
    margin: 8px;
    overflow: hidden;
}

.amd-card.--boxed {
    margin-top: 22px;
    overflow: unset !important;
}

.amd-card > .--title {
    font-family: var(--amd-title-font);
    font-size: var(--amd-size-md);
    color: rgba(var(--amd-text-color-rgb), .9);
    margin: 0 0 8px;
    padding: 8px 12px 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-primary);
    color: #fff;
    text-align: center;
    top: -20px;
    width: 80%;
    margin: 0 auto;
    padding: 8px 16px;
    border-radius: 8px;
}
.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;
    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: 12px;
    margin: 0;
}

.amd-card.--boxed > .--icon {
    position: absolute;
    display: flex;
    top: -16px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 70px;
    height: auto;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 0 15px -5px #00000060;
    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-items: center;
    justify-content: center;
}

.amd-card.--boxed > .--icon > svg.iconhub {
    width: 32px;
}

body.light .amd-card.--boxed > .--icon { background: linear-gradient(8deg, #5142fc, #897fff); color: #fff }
body.dark .amd-card.--boxed > .--icon { background: linear-gradient(8deg, #4037a5, #574dd4); color: #fff }
body.light .-gr-red { background: linear-gradient(8deg, #ea524f, #fa7d7a) !important }
body.dark .-gr-red { background: linear-gradient(8deg, #983634, #aa4543) !important }
body.light .-gr-green { background: linear-gradient(8deg, #2cb947, #3efa63) !important }
body.dark .-gr-green { background: linear-gradient(8deg, #179931, #3ad058) !important }
body.light .-gr-blue { background: linear-gradient(8deg, #4f69ea, #7aadfa) !important }
body.dark .-gr-blue { background: linear-gradient(8deg, #2f43a1, #4667b5) !important }

.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 12px 12px;
}

.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;
}

.amd-card > .--footer-2 {
    padding: 0 12px 12px;
}

.amd-card > .--footer-2 .btn {
    margin: 4px;
}

.amd-card > .--footer a {
    font-size: var(--amd-size-sm);
    color: rgba(var(--amd-text-color-rgb), .9);
    text-decoration: underline;
}

.amd-card > .--card-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.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);
    height: max-content;
    max-width: 300px;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 5px;
    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-wrapper-fg);
    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-text-color-rgb), .5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    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 {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: var(--amd-wrapper-bg);
}

.amd-table::-webkit-scrollbar {
    display: none;
}

.amd-table > table {
    width: 100%;
    border-collapse: collapse;
}

.amd-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-table > table tr > th {
    color: #fff;
}

body.rtl .amd-table > table tr > th:first-child {
    border-top-right-radius: 8px
}

body.rtl .amd-table > table tr > th:last-child {
    border-top-left-radius: 8px
}

body.ltr .amd-table > table tr > th:first-child {
    border-top-left-radius: 8px
}

body.ltr .amd-table > table tr > th:last-child {
    border-top-right-radius: 8px
}

.amd-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-table > table tr:nth-child(even) > td {
    background-color: rgba(var(--amd-wrapper-fg-rgb), .2);
}

.amd-table > table tr:nth-child(odd) > td {
    background-color: var(--amd-wrapper-fg);
}

.amd-table > table tr:hover > td {
    background-color: rgba(var(--amd-primary-rgb), .08);
}

.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;
}
body:not(.light) .ht-magic-select .--input:focus + span,
body:not(.light) .ht-magic-select .--input:not(:placeholder-shown) + span {
    color: rgba(var(--amd-text-color-rgb), .7)
}
@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: var(--amd-primary-x-low);
    color: var(--amd-text-color);
}

.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;
    font-size: 15px;
    color: #fff;
    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;
    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: var(--amd-primary)
}

body.rtl .amd-alert.primary ._icon_ {
    direction: rtl !important
}
body.ltr .amd-alert.primary ._icon_ {
    direction: ltr !important
}

.amd-alert.error { background: var(--amd-color-red) }
.amd-alert.error code { color: var(--amd-color-red) }
.amd-alert.error ._icon_ { color: var(--amd-color-red) }
.amd-alert.success {
    background: var(--amd-color-green)
}

.amd-alert.success code {
    color: var(--amd-color-green)
}

.amd-alert.success ._icon_ {
    color: var(--amd-color-green)
}

.amd-alert.info {
    background: var(--amd-color-blue)
}

.amd-alert.info code {
    color: var(--amd-color-blue)
}

.amd-alert.info ._icon_ {
    color: var(--amd-color-blue)
}

.amd-alert.warning {
    background: var(--amd-color-orange)
}

.amd-alert.warning code {
    color: var(--amd-color-orange)
}

.amd-alert.warning ._icon_ {
    color: var(--amd-color-orange)
}

.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;
}
.amd-floating-buttons > .--button.--white {
    background: var(--amd-wrapper-fg);
    color: var(--amd-text-color);
    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.--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%;
}.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)}}