:root {
    --body-bg: white;
    --body-color: var(--ink);
    --card-bg: #fff;
    --card-radius: .6rem;
    --avatar-bg: #E5E7EB;
    --depth-4: 0 .16rem .36rem 0 rgba(0, 0, 0, 0.132), 0 .03rem .09rem 0 rgba(0, 0, 0, 0.108);
    --depth-8: 0 .32rem .72rem 0 rgba(0, 0, 0, 0.132), 0 .06rem .18rem 0 rgba(0, 0, 0, 0.108);
    --depth-16: 0 .64rem 1.44rem 0 rgba(0, 0, 0, 0.132), 0 .12rem .36rem 0 rgba(0, 0, 0, 0.108);
    --depth-64: 0 2.56rem 5.76rem 0 rgba(0, 0, 0, 0.22), 0 .48rem 1.44rem 0 rgba(0, 0, 0, 0.18);
    --rounded: .8rem;
    --rounded-small: .4rem;
    --ink: #171717;
    --gray: #525252;
    --sky: #d4d4d4;
    --light: #f5f5f5;
    --red: #991b1b;
    --blue: #0007CC;
    --green: #166534;
    --orange: #9a3412;
    --link-color: var(--accent);
    --border-color: #e5e7eb;
    --border-light: #e5e7eb;
    --border-dark: #d1d5db;
    --input-background: #fff;
    --input-border: rgba(0, 0, 0, .24);
    --input-border-focus: var(--accent);
    --btn-border: #9CA3AF;
    --btn-color: #F9FAFB;
    --btn-bgcolor: rgba(0, 0, 0, .08);
    --btn-color-hover: #F3F4F6;
    --btn-color-focus: #E5E7EB;
    --btn-primary-color: white;
    --btn-primary-bgcolor: var(--accent);
    --accent: #1e40af;


    --btn-bgcolor: #f9fafb;
    --btn-bordercolor: #d1d5db;
    --btn-shadow: 0 0.1rem 0 rgb(0 0 0 / 6%);

    --btn-primary-shadow: 0 0.1rem 0 rgb(0 0 0 / 5%), inset 0 -0.1rem 0 rgb(0 0 0 / 20%);

}
/* 
[data-theme="dark"] {
    --body-bg: #000;

    --ink: #f3f4f6;
    --gray: #9ca3af;
    --red: #f87171;
    --accent: #93c5fd;

    --input-background: #181818;
    --input-border: rgba(255, 255, 255, .12);

    --btn-bgcolor: #171717;
    --btn-bordercolor: #404040;

    --btn-primary-color: black;
    --btn-primary-shadow: 0 0.1rem 0 rgb(0 0 0 / 6%);


--border-color: #171717;

} */


*,
*:before,
*:after {
    box-sizing: border-box
}

html {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%
}

body {
    color: var(--body-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    background: var(--body-bg);
    line-height: 2.2rem;
    word-wrap:break-word;
}

.align-left {
    text-align: left
}

.align-center {
    text-align: center
}

.align-right {
    text-align: right
}

.text-title-1 {
    font-size: 4rem;
    line-height: 4.8rem;
    letter-spacing: -.04em;
}

.text-title-2 {
    font-size: 3.2rem;
    line-height: 4rem;
    letter-spacing: -.032em;
}

.text-title-3 {
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: 0 .024em
}

.text-large {
    font-size: 1.8rem;
    line-height:2.4rem;
}

.text-regular {
    font-size: 1.6rem;
    line-height:2.2rem;
}

.text-small,
figcaption {
    font-size: 1.4rem;
    line-height: 1.8rem;
}

.text-micro {
    font-size: 1.2rem;
    line-height:1.6rem;
}

.text-bold {
    font-weight: 700
}

.text-semibold {
    font-weight: 600
}

.text-extrabold {
    font-weight: 800
}

.text-uppercase {
    text-transform: uppercase
}

.color-ink {
    color: var(--ink)
}

.color-gray {
    color: var(--gray)
}

.color-sky {
    color: var(--sky)
}

.color-light {
    color: var(--light)
}

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

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

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

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

.color-accent {
    color: var(--accent)
}

.color-white {
    color: #fff
}

.flex {
    display: flex;
    min-width: 0
}

.flex-wrap {
    flex-wrap: wrap
}

.flex-1 {
    flex: 1
}

.flex-center {
    align-items: center
}

.flex-end {
    align-items: flex-end
}

.btn {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 2.4rem;
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    padding: .7rem 1.6rem;
    border-radius: .4rem;
    text-align: center;
    color: inherit;
    text-decoration: none !important;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--btn-bgcolor);
    border: solid .1rem var(--btn-bordercolor);
    margin: 0;
    box-shadow: var(--btn-shadow);
}

.btn img,
.btn svg {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: .6rem;
    margin-left: -.4rem
}

.btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition:.2s;
}

.btn:hover:after,
.btn:focus:after {
   
    background: rgba(0, 0, 0, 0.04);
}


.btn-small {
    padding: .3rem 1.2rem;
    font-size: 1.4rem
}

.btn-small img,
.btn-small svg {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: .6rem;
    margin-left: -.4rem
}

.btn-large {
    padding: 1.1rem 2.4rem;
    font-size: 1.8rem
}

.btn-large img,
.btn-large svg {
    margin-right: 1.2rem
}

.btn-primary {
    background: var(--btn-primary-bgcolor);
    border-color: var(--btn-primary-bgcolor);
    color: var(--btn-primary-color);
    box-shadow: var(--btn-primary-shadow);
    border:0;
    padding-top:.8rem;
    padding-bottom:.8rem;
}

.btn-primary:hover:after,
.btn-primary:focus:after {
    background: rgba(0, 0, 0, .12);
}


.btn-primary.btn-small {
    padding-top: .4rem;
    padding-bottom: .4rem
}

.btn-primary.btn-large {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem
}

.btn-primary .ripple {
    background-color: gold
}

.btn-icon {
    padding: .7rem
}

.btn-icon img,
.btn-icon svg {
    margin: 0
}

.btn-icon.btn-small {
    padding: .6rem
}

.btn-icon.btn-small img,
.btn-icon.btn-small svg {
    width: 1.8rem;
    height: 1.8rem
}

.btn-danger {
    color: var(--red)
}

.btn-fullwidth {
    display: flex;
    width: 100%
}

.btn:disabled {
    opacity: .64;
    cursor: not-allowed
}

.btn-disabled {
    cursor: not-allowed;
    color: #4b5563;
    background-color: #f3f4f6 !important
}

.btn-rounded {
    border-radius: 10em
}

.btn-link {
    border-color: transparent;
    color: var(--link-color);
    box-shadow: none !important;
    background: transparent;
    font-weight: 400
}

.btn-link-semibold {
    font-weight: 600
}

.btn-line {
    border-color: var(--btn-primary-color);
    color: var(--btn-primary-color);
    box-shadow: none !important;
    background: transparent
}

.btn-menu {
    border-color: transparent;
    box-shadow: none;
    width: 100%;
    text-align: left;
    justify-content: left;
    background: transparent
}

.btn-menu .affix {
    margin: 0 -.4rem 0 0
}

label {
    display: block
}

label+.form-control {
    margin-top: .4rem
}

.form-control {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    border: solid 0.1rem var(--input-border);
    border-radius: 0;
    outline: 0 !important;
    position: relative;
    font-family: inherit;
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: .6rem .8rem;
    text-overflow: ellipsis;
    height: 4rem;
    transition: border-color .12s ease-in-out, box-shadow .12s ease-in-out;
    background: var(--input-background);
    color: var(--ink);
    border-radius: .4rem;
}

.input-group {
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: solid 0.1rem var(--input-border);
    border-radius: .4rem;
    transition: border-color .12s ease-in-out, box-shadow .12s ease-in-out;
    background: var(--input-background)
}

.input-group .form-control {
    flex: 1;
    box-shadow: none;
    border: 0;
    min-height: 3.8rem
}

.input-group:focus-within {
    border-color: var(--input-border-focus);
    position: relative;
    z-index: 2
}

.form-control-invalid {
    border-color: var(--red) !important;
    background-position: calc(100% - .8rem) center;
    background-size: 2.4rem 2.4rem;
    background-repeat: no-repeat;
}

.form-control-valid {
    border-color: var(--green) !important;
    background-position: calc(100% - .8rem) center;
    background-size: 2.4rem 2.4rem;
    background-repeat: no-repeat;
}

.form-control.disabled,
.form-control:disabled {
    cursor: not-allowed;
    color: gray !important
}

.form-control-small {
    padding: .3rem .8rem;
    height: 3.2rem;
    font-size: 1.4rem
}

input.form-control[type=search] {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAwFBMVEUAAACZmZmiormVqqqkpLafn6+WpbScqqqbpK2fpaydo7GZpqyboq6aoLKbpa+dorGapK2ao7CcpK2doq6bo7CcpbGeoq6dpbGdoq+co7CdpK6bo6+do66coq+co7CbpK6bo6+cpK6do6+bo6+doq+co6+dpLCco6+co7Cco6+co6+bpK+co6+do6+coq6co6+bo6+co6+do6+dorCco6+co6+co6+co6+co6+co6+co6+co6+co6+co6+co6////+8CE/kAAAAPnRSTlMABQsMDhAREhwlJygpKzM0NTo7PD0+P0FjZGVmdXZ3e31+f4CMk5SWt7m6u7y9vr/AwsXX2Nna2/Lz9Pn9/oLDY7MAAAE/SURBVHja7JQFlgMhEESJu7u7uzv3P9Z2xcObZsOz1R+l6I8lM8Kcf/zl4WK/XwzL/rfKIyN5Zx7/tNzWOcknTm2bvt4zkQpjt3b8S30v57fbA7n+xdDN0UHFMnFrJldot/j6KNY/cT0C9xT7CLPCmLoXqH8YmGPA1QclkXjNUsj8jFDGftVwQGGREYbUl1XDPIV9RlhZzR7AuTHCjvocauigcMcIWyvBSeHWdEkbRsCB5NSwoNl0yapvSGGJEfySSL1mGWQhwYBLZ+V+Tjwbirr8xYY/3/TJ8MwoOMYES1sS6/R9PRu0m7oLaCzBoBB0OIKFoQQHr9DghvHCgV4N3Ryt15tA04uPutAQHj7qu7RfqTeAr9hf7PabfimEVl2CmnifMj8HZxjPUfrGRtXAKJoKMAzqQaUi/jwfoy0AAMnDUpssdLNXAAAAAElFTkSuQmCC);
    background-position: .8rem center;
    background-size: 2.4rem 2.4rem;
    background-repeat: no-repeat;
    padding-left: 4rem;
    padding-right: 3.2rem;
    border-radius: 10rem
}

input.form-control-small[type=search] {
    background-size: 1.8rem 1.8rem;
    padding-left: 3.2rem
}

select.form-control {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAALVBMVEUAAACeo62bpa+dorGeorCbpK2co7Cdo6+bo6+co66coq+co6+co6+co6////8OHxBcAAAADXRSTlMAMjM0Nzh3f4CI7e7wT3gqJQAAAGRJREFUeNrtyzEWgiEQA+H4o8uq5P7XlcezMUWgsNyvnkH5m1KiQbSAkRx3/Li9+HQ95yE9zRGUY/XsOD18r4fv5XhguqTfHddbe39I7+Q6BqfEkeBXx6EwvTmk90L6vUzslFI+7ckGE1NaKQIAAAAASUVORK5CYII=);
    background-position: 97.5% center;
    background-size: 2.4rem 2.4rem;
    background-repeat: no-repeat;
    padding-right: 3.2rem;
    /* box-shadow: 0 0.1rem 0 rgba(0, 0, 0, 0.05); */
    border: solid .1rem var(--input-border);
}

select.form-control[multiple] {
    background-image: none;
    height: auto;
    max-height: 12rem;
    padding-right: .8rem
}

textarea.form-control {
    height: auto
}

.form-control:focus {
    border-color: var(--input-border-focus);
    position: relative;
    z-index: 2
}

.form-control:read-only:focus {
    border: solid 0.1rem var(--input-border-focus);
    box-shadow: none
}

.input-feedback {
    display: block;
    margin-top: .4rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: var(--gray)
}

.input-feedback-invalid {
    color: var(--red)
}

.input-feedback-valid {
    color: var(--green)
}

.help-block.error {
    color: var(--vermilion)
}

.radio {
    display: flex;
    align-items: center;
    line-height: 2.4rem
}

.radio-btn {
    position: relative;
    display: block
}

.radio-btn input[type=radio] {
    opacity: 0;
    position: absolute
}

.radio-btn div {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    border: solid 0.2rem var(--input-border);
    padding: .2rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    overflow: hidden
}

.radio-btn div:after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.radio-btn input[type=radio]:checked~div {
    border-color: var(--green);
    transition: .2s
}

.radio-btn input[type=radio]:checked~div:after {
    background: var(--green);
    transition: .2s
}

.checkbox-btn {
    position: relative
}

.checkbox-btn input[type=checkbox] {
    opacity: 0;
    position: absolute
}

.checkbox-btn div {
    width: 2.4rem;
    height: 2.4rem;
    padding: .2rem;
    background-color: #fff;
    border: solid 0.2rem var(--input-border);
    position: relative;
    overflow: hidden;
    border-radius: .4rem
}

.checkbox-btn div:after {
    content: "";
    position: absolute;
    width: 2.0rem;
    height: 2.0rem;
    top: 0;
    left: 0;
    background-color: var(--input-border);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMAChUuM3V3f4CIwNHr7sq7CnQAAABsSURBVHja7NI1GoAwFAPgujf3vy0y4ZKPCWjmP9UnWloeRVvSF0TSA5H08N/wzatkOJ9RDeFlBlD02gdxGIch1RD3nRr3/NS466fGTT81iP8KoyzT+9zcg5oHR/ipwfihMXoqIfQDEqNgFAAACEUJ7ipu+uwAAAAASUVORK5CYII=);
    background-size: 2rem 2rem;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0
}

.checkbox-btn input[type=checkbox]:checked~div {
    border-color: var(--green);
    background: var(--green);
    transition: .2s
}

.checkbox-btn input[type=checkbox]:checked~div:after {
    background-color: var(--green);
    transition: .2s;
    opacity: 1
}

.switch {
    position: relative
}

.switch__input {
    position: relative;
    display: block;
    height: 2rem;
    width: 4rem;
    background: #e5e7eb;
    border-radius: 10rem;
    cursor: pointer;
    transition: all .3s ease;
    margin: .2rem 0;
    box-shadow: 0 0.1rem rgba(0, 0, 0, 0.08) inset
}

.switch__btn {
    position: absolute;
    left: 0;
    top: -.2rem;
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #fff;
    border: solid 0.1rem var(--border-color);
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.64), 0 0.3rem 0.3rem rgba(0, 0, 0, 0.08);
    content: '';
    transition: all .3s ease
}

.switch input[type=checkbox] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0
}

.switch input[type=checkbox]:checked~.switch__input {
    background: var(--green)
}

.switch input[type=checkbox]:checked~.switch__input .switch__btn {
    left: 1.6rem
}

.checkmark {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 2.4rem;
    padding: .8rem 0
}

.checkmark-btn {
    position: relative;
    display: block
}

.checkmark-btn div {
    position: relative;
    display: block;
    height: 2.4rem;
    width: 2.4rem;
    background: #e5e7eb;
    border-radius: 50%;
    transition: .2s;
    overflow: hidden;
    transition: .2s
}

.checkmark-btn div:after {
    content: "";
    position: absolute;
    width: 2.4rem;
    height: 2.4rem;
    top: 0;
    left: 0;
    background-color: var(--input-border);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMAChUuM3V3f4CIwNHr7sq7CnQAAABsSURBVHja7NI1GoAwFAPgujf3vy0y4ZKPCWjmP9UnWloeRVvSF0TSA5H08N/wzatkOJ9RDeFlBlD02gdxGIch1RD3nRr3/NS466fGTT81iP8KoyzT+9zcg5oHR/ipwfihMXoqIfQDEqNgFAAACEUJ7ipu+uwAAAAASUVORK5CYII=);
    background-size: 2rem 2rem;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: var(--green);
    opacity: 0
}

.checkmark-btn input[type=radio] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0
}

.checkmark-btn input[type=radio]:checked~div:after {
    opacity: 1
}

.thumbnail {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.thumbnail img {
    border: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.thumbnail iframe {
    border: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.thumbnail-wide {
    padding-bottom: 56.25%
}

.thumbnail-square {
    padding-bottom: 100%
}

.thumbnail-landscape {
    padding-bottom: 75%
}

.thumbnail-half {
    padding-bottom: 50%
}

.thumbnail-third {
    padding-bottom: 33.33333%
}

.thumbnail-quarter {
    padding-bottom: 25%
}

.bg-cover {
    background-size: cover
}

.bg-cover img {
    object-fit: cover
}

.bg-contain {
    background-size: contain
}

.bg-contain img {
    object-fit: contain
}

.bg-fill {
    background-size: contain
}

.bg-fill img {
    object-fit: fill
}

.avatar {
    position: relative;
    width: 4.8rem;
    height: 4.8rem;
    text-align: center;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.avatar-img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.avatar-img img,
.avatar-img svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3
}

.avatar-large {
    width: 6.4rem;
    height: 6.4rem;
    line-height: 6.4rem
}

.avatar-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background: #fff;
    padding: .4rem;
    z-index: 4
}

.avatar-small {
    width: 3.2rem;
    height: 3.2rem;
    line-height: 3.2rem
}

.avatar-tiny {
    width: 2.4rem;
    height: 2.4rem;
    line-height: 2.4rem
}

.icon {
    width: 2.4rem;
    height: 2.4rem;
    position: relative
}

.icon img,
.icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.icon-small {
    width: 1.8rem;
    height: 1.8rem
}

.icon-badge {
    padding: 0 .4rem;
    background: var(--red);
    border-radius: 10rem;
    top: -.9rem;
    right: -.9rem;
    position: absolute;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    line-height: 1.8rem;
    min-width: 1.8rem;
    text-align: center
}

.icon-dot:after {
    content: "";
    width: .8rem;
    height: .8rem;
    background-color: var(--red);
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%
}

.card {
    position: relative;
    background:var(--card-bg);
}

a {
    color: var(--accent);
    text-decoration: none
}

a:hover,
a:focus {
    text-decoration: underline
}

b,
strong {
    font-weight: 600
}

pre,
code {
    font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    max-width: 100%;
    border-style: none
}

article p {
    margin: 0 auto 2.2rem
}

article p img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto
}

article ol,
article ul {
    margin: 0 auto 2.2rem;
    padding-left: 2em
}

article ol ol,
article ol ul,
article ul ol,
article ul ul {
    margin: 0
}

article ol ol {
    list-style: lower-alpha
}

article blockquote {
    padding-left: 2em;
    position: relative;
    border: 0 !important;
    margin: 0 auto 2.2rem
}

article blockquote p:last-of-type {
    margin: 0
}

article blockquote:before {
    content: "";
    position: absolute;
    top: .4rem;
    bottom: .4rem;
    width: .8rem;
    left: 0;
    background: var(--sky)
}

article figure {
    margin: 0 auto 2.2rem
}

article figure img {
    display: block
}

article figcaption {
    color: var(--gray);
    margin-top: .8rem
}

.overflow-hidden {
    overflow: hidden
}

.overflow-auto {
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

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

.separator {
    clear: both;
    height: 0;
    border-bottom: solid 0.1rem var(--border-color)
}

.bordered {
    border: solid 0.1rem var(--border-color)
}

.rounded {
    border-radius: var(--rounded)
}

.depth-1 {
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.12) inset
}

.depth-4 {
    box-shadow: 0 0.16rem 0.36rem 0 rgba(0, 0, 0, 0.132), 0 0.03rem 0.09rem 0 rgba(0, 0, 0, 0.108)
}

.depth-8 {
    box-shadow: 0 0.32rem 0.72rem 0 rgba(0, 0, 0, 0.132), 0 0.06rem 0.18rem 0 rgba(0, 0, 0, 0.108)
}

.depth-16 {
    box-shadow: 0 0.64rem 1.44rem 0 rgba(0, 0, 0, 0.132), 0 0.12rem 0.36rem 0 rgba(0, 0, 0, 0.108)
}

.depth-64 {
    box-shadow: 0 2.56rem 5.76rem 0 rgba(0, 0, 0, 0.22), 0 0.48rem 1.44rem 0 rgba(0, 0, 0, 0.18)
}

.p-0 {
    padding: 0
}

.p-4 {
    padding: .4rem
}

.p-8 {
    padding: .8rem
}

.p-12 {
    padding: 1.2rem
}

.p-16 {
    padding: 1.6rem
}

.p-20 {
    padding: 2rem
}

.p-24 {
    padding: 2.4rem
}

.pl-0 {
    padding-left: 0
}

.pl-4 {
    padding-left: .4rem
}

.pl-8 {
    padding-left: .8rem
}

.pl-12 {
    padding-left: 1.2rem
}

.pl-16 {
    padding-left: 1.6rem
}

.pl-20 {
    padding-left: 2rem
}

.pl-24 {
    padding-left: 2.4rem
}

.pt-0 {
    padding-top: 0
}

.pt-4 {
    padding-top: .4rem
}

.pt-8 {
    padding-top: .8rem
}

.pt-12 {
    padding-top: 1.2rem
}

.pt-16 {
    padding-top: 1.6rem
}

.pt-20 {
    padding-top: 2rem
}

.pt-24 {
    padding-top: 2.4rem
}

.pr-0 {
    padding-right: 0
}

.pr-4 {
    padding-right: .4rem
}

.pr-8 {
    padding-right: .8rem
}

.pr-12 {
    padding-right: 1.2rem
}

.pr-16 {
    padding-right: 1.6rem
}

.pr-20 {
    padding-right: 2rem
}

.pr-24 {
    padding-right: 2.4rem
}

.pb-0 {
    padding-bottom: 0
}

.pb-4 {
    padding-bottom: .4rem
}

.pb-8 {
    padding-bottom: .8rem
}

.pb-12 {
    padding-bottom: 1.2rem
}

.pb-16 {
    padding-bottom: 1.6rem
}

.pb-20 {
    padding-bottom: 2rem
}

.pb-24 {
    padding-bottom: 2.4rem
}

.m-a {
    margin: auto
}

.m-0 {
    margin: 0
}

.m-4 {
    margin: .4rem
}

.m-8 {
    margin: .8rem
}

.m-12 {
    margin: 1.2rem
}

.m-16 {
    margin: 1.6rem
}

.m-20 {
    margin: 2rem
}

.m-24 {
    margin: 2.4rem
}

.ml-0 {
    margin-left: 0
}

.ml-4 {
    margin-left: .4rem
}

.ml-8 {
    margin-left: .8rem
}

.ml-12 {
    margin-left: 1.2rem
}

.ml-16 {
    margin-left: 1.6rem
}

.ml-20 {
    margin-left: 2rem
}

.ml-24 {
    margin-left: 2.4rem
}

.mt-0 {
    margin-top: 0
}

.mt-4 {
    margin-top: .4rem
}

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

.mt-12 {
    margin-top: 1.2rem
}

.mt-16 {
    margin-top: 1.6rem
}

.mt-20 {
    margin-top: 2rem
}

.mt-24 {
    margin-top: 2.4rem
}

.mr-0 {
    margin-right: 0
}

.mr-4 {
    margin-right: .4rem
}

.mr-8 {
    margin-right: .8rem
}

.mr-12 {
    margin-right: 1.2rem
}

.mr-16 {
    margin-right: 1.6rem
}

.mr-20 {
    margin-right: 2rem
}

.mr-24 {
    margin-right: 2.4rem
}

.mb-0 {
    margin-bottom: 0
}

.mb-4 {
    margin-bottom: .4rem
}

.mb-8 {
    margin-bottom: .8rem
}

.mb-12 {
    margin-bottom: 1.2rem
}

.mb-16 {
    margin-bottom: 1.6rem
}

.mb-20 {
    margin-bottom: 2rem
}

.mb-24 {
    margin-bottom: 2.4rem
}

.badge {
    display: inline-flex;
    line-height: 2.2rem;
    border: solid .1rem transparent;
    padding: 0 .8rem;
    border-radius: .4rem;
    background: #f9fafb;
    font-size: 1.2rem;
    align-items: center;
    color: #111827;
    vertical-align: middle;
    max-width: 200px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.badge-small {
    line-height: 1.6rem;
    padding: 0 .8rem;
}



.badge-info {
    color: #1e3a8a;
    background: #eff6ff;
}


.badge-success {
    color: #14532d;
    background: #f0fdf4;
}



.badge-warning {
    color: #7c2d12;
    background: #fff7ed;
}



.badge-danger {
    color: #7f1d1d;
    background: #fef2f2;
}



.badge img,
.badge svg {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    margin: auto .4rem auto -.4rem
}

.alert {
    display: flex;
    border: solid .1rem transparent;
    padding: 1.2rem 1.6rem;
    border-radius: var(--card-radius);
    background: #f9fafb;
    align-items: center;
    border: solid 0.1rem rgba(0, 0, 0, .08);
}

.alert-info {
    background: #eff6ff
}

.alert-success {
    background: #f0fdf4
}

.alert-warning {
    background: #fefce8;
}

.alert-danger {
    background: #fef2f2
}

.snackbar {
    display: flex;
    padding: 1.2rem 1.6rem;
    border-radius: var(--card-radius);
    align-items: center;
    background-color: var(--ink);
    color: #fff
}

span.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: var(--blue);
    opacity: .12
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0
    }
}

.btn-ripple {
    position: relative;
    overflow: hidden
}

/* .tab {
    display: flex;
    align-items: center;
    border-bottom: solid 0.1rem var(--border-color)
}

.tab a {
    display: flex;
    flex: 1;
    line-height: 2.4rem;
    text-decoration: none;
    color: inherit;
    padding: 1.2rem 1.6rem;
    text-align: center;
    justify-content: center;
    position: relative
}

.tab a.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: .2rem;
    background-color: var(--accent)
} */

.panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    transform: translateY(120%);
    transition: .2s
}

.panel.active {
    transform: translate(0)
}

.panel>.rounded {
    border-radius: 1.6rem 1.6rem 0 0
}