/* ============================ Reset ============================ */

@charset "UTF-8";

*,
*:before,
*:after {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

    font-family: "Rubik", serif;
    font-optical-sizing: auto;

    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    box-sizing: border-box;
    word-wrap: break-word;
    outline: 0;
    padding: 0;
    margin: 0;
}

@media only screen and (max-width:768px) {
    * {
        cursor: default !important;
    }
}

.card {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--gray);
    background: var(--card);
}

.card.shadow {
    border: 0;
    box-shadow: var(--shadow);
}

.card.focus {
    border-color: var(--key);
    box-shadow: 0 8px 0 0 var(--key);
}

.card.key {
    background: var(--key);
    color: white;
}

.sticky2 {
    position: sticky;
    top: 144px;
    z-index: 99;
}

hr {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.fade {
    opacity: .6;
}

b,
strong {
    font-weight: 700;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.wrapper {
    margin: auto;
    width: 1280px;
    max-width: calc(100% - 48px);
}

@media only screen and (max-width:1440px) {
    .wrapper {
        margin: auto;
        width: 1140px;
        max-width: calc(100% - 48px);
    }
}

body {
    font-size: 16px;
    line-height: 1.6;

    transition: color .05s;
}

@media only screen and (max-width:768px) {
    body {
        font-size: 14px;
        line-height: 1.4;
    }
}

a {
    color: var(--key);
    text-decoration: none;
    cursor: pointer;
}

/* ============================ NOTICE ============================ */

/*
████████████████████████████████████████████████████████

                notice

████████████████████████████████████████████████████████
*/
#notice {
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: auto;
    max-width: 50%;
    font-size: 90%;
    border-radius: var(--radius);
    background: rgba(0 0 0 / 80%);
    color: white;
    visibility: hidden;
    opacity: 0;
    padding: 10px 30px;
    transition: .1s;
}

#notice.open {
    visibility: visible;
    opacity: 1;
    bottom: 60px;
}

@media only screen and (max-width: 1024px) {
    #notice {
        left: 0;
        bottom: -30px;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius) var(--radius) 0 0;
        padding: 30px;
    }

    #notice.open {
        bottom: 0;
    }
}

/* ============================ STEPPER ============================ */

.stepper {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
}

.stepper>.item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stepper>.item::before {
    position: absolute;
    content: "";
    border-bottom: 5px solid var(--gray);
    width: 100%;
    top: 7.5px;
    left: -50%;
    z-index: 2;
}

.stepper>.item>.counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    top: -16px;
    color: var(--key);
    box-shadow: 0 0 0 5px var(--gray);
}

.stepper>.item.active>.counter {
    background-color: var(--key);
    border-color: var(--key);
    color: white;
    box-shadow: none;
}

.stepper>.item.active::after {
    position: absolute;
    content: "";
    border-bottom: 5px solid var(--key);
    width: 100%;
    top: 7.5px;
    left: 50%;
    z-index: 3;
}

.stepper>.item.canceled>.counter {
    background-color: #cb0b04;
    border-color: #cb0b04;
    color: white;
    box-shadow: none;
}

.stepper>.item.canceled::after {
    position: absolute;
    content: "";
    border-bottom: 5px solid #cb0b04;
    width: 100%;
    top: 7.5px;
    left: 50%;
    z-index: 3;
}

.stepper>.item:first-child::before {
    content: none;
}

.stepper>.item:last-child::after {
    content: none;
}

/* ============================ ANIMATE ============================ */

@keyframes blinking {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.blinking {
    animation: blinking 1s infinite;
    animation-fill-mode: both;
}


/* ============================ BTN ============================ */

.btn {
    display: inline-block;
    border-radius: var(--radius);
    text-align: center;
    padding: 8px 16px;
    border: 1px solid var(--gray);
    font-size: 90%;
    color: var(--txt);
    box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1);
}

.btn:active {
    box-shadow: none;
}

.btn.block {
    display: block;
    padding: 16px;
}

.btn.cta {
    background: var(--key) !important;
    color: white !important;
}

.btn img {
    display: inline-block;
    vertical-align: middle;
    max-height: 24px;
    border-radius: var(--radius);
}

.btn img.left {
    margin-right: 8px;
}

.btn img.right {
    margin-left: 8px;
}

/* ============================ LOADING ============================ */


.loading {
    position: relative;
    min-height: 48px;
}

.loading:before {
    content: '';
    background: var(--white);
    opacity: .9;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loading:after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    margin-left: -24px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top-color: var(--key);
    animation: anim_loading .6s linear infinite;
}

body.loading:before {
    position: fixed;
    z-index: 9999;
}

body.loading:after {
    position: fixed;
    z-index: 10000;
    width: 64px;
    height: 64px;
    margin-top: -32px;
    margin-left: -32px;
}

/* ============================ FORM ============================ */

.form {
    font-size: 95%;
}

.form .info {
    display: block;
    margin-top: 8px;
}

.form fieldset {
    border: 0;
    border-top: 1px solid var(--gray);
    display: block;
    min-width: 0;
    position: relative;
}

.form fieldset legend {
    padding-right: 24px;
    margin-bottom: 24px;
    white-space: nowrap;
}

.form fieldset legend .number {
    background: var(--key);
    color: white;
    font-weight: 600;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 8px;
}

@keyframes blink-legend {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: var(--key);
    }

    100% {
        border-color: transparent;
    }
}

.form fieldset:hover>legend {
    padding-left: calc(24px - 8px);
    border-left: 8px solid var(--key);
    margin-left: -24px;

    /* animation: blink-legend .8s infinite; */
    animation-fill-mode: both;
}

.form fieldset label {
    position: relative;
}

.form fieldset label input[type="radio"] {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.form fieldset label input[type="radio"]+span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid var(--gray);
    background: var(--white);
    padding: 16px 16px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    font-size: 90%;
}

.form fieldset label input[type="radio"]:hover:not(:checked)+span {
    top: -2px;
    box-shadow: 0 2px 0 0 var(--gray);
}

.form fieldset label input[type="radio"]:active+span {
    top: 0 !important;
    box-shadow: none !important;
}

.form fieldset label input[type="radio"]:checked+span {
    border-color: var(--key);
    color: var(--key);
}

.form fieldset label input[type="radio"]:checked+span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--key);
    opacity: .1;
}

.form fieldset label input[type="radio"]+span:after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    /* background: var(--key); */
    /* background-image: url("data:image/svg+xml,%3Csvg version='1.1' style='fill:white;' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17.837 17.837' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M16.145,2.571c-0.272-0.273-0.718-0.273-0.99,0L6.92,10.804l-4.241-4.27 c-0.272-0.274-0.715-0.274-0.989,0L0.204,8.019c-0.272,0.271-0.272,0.717,0,0.99l6.217,6.258c0.272,0.271,0.715,0.271,0.99,0 L17.63,5.047c0.276-0.273,0.276-0.72,0-0.994L16.145,2.571z'/%3E%3C/g%3E%3C/svg%3E"); */
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: 48% auto;

    transition: .1s;
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
}

.form fieldset label input[type="radio"]:checked+span:after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.form .rating {
    display: flex;
    position: relative;
}

.form .rating i {
    color: orange;
    transform: scale(1);
    transition: .1s;
}

.form .rating [type=radio] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form .rating label {
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.form .rating [type=radio]:checked~label i {
    color: gray;
    transform: scale(.9);
}

.form .rating:hover label i {
    color: orange !important;
    transform: scale(1) !important;
}

.form .rating label:hover~label i {
    color: gray !important;
    transform: scale(.9) !important;
}

.form .rating label:active i {
    transform: scale(.9) !important;
}

.form [name] {
    color: currentColor;
    display: block;
    width: 100%;
    padding: 0 16px;
    height: 48px;
    background: var(--lightgray);
    border-radius: var(--radius);
    border: 2px solid var(--gray);
    resize: vertical;
    text-overflow: ellipsis;
    font-size: 90%;
}

.form textarea[name] {
    height: auto;
    padding: 16px;
}

.form [name]:focus {
    border-color: var(--key);
    background: var(--white);
}

.form select[name] {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z'/></g></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 12.5px) 50%;
    background-size: auto 16px;
    padding-right: calc(12.5px + 12.5px + 16px);
}

.form [name][type=number]::-webkit-inner-spin-button,
.form [name][type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form [type=button],
.form button {
    display: block !important;
    width: 100% !important;
    border-radius: var(--radius) !important;
    padding: 0 32px !important;
    height: 48px !important;
    border: 0 !important;
    font-size: 100% !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    background: var(--key) !important;
    color: white !important;
    box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .2) !important;
}

.form [type=button]:active,
.form button:active {
    box-shadow: none;
}

/* ============================ NOTICE ============================ */

.warning {
    background: #FDF7E7;
    border: 1px solid #F0AB00;
    padding: 15px 24px;
    border-radius: var(--radius);
    font-size: 80%;
    box-shadow: -5px 0 0 0 #F0AB00;
}

html[data-theme="dark"] .warning {
    background: transparent;
    border: 1px solid #F0AB00;
    color: var(--txt);
    background: var(--card);
}

/* ============================ TABLE ============================ */

table.border {
    width: 100%;
    border-collapse: collapse;
}

table.border th {
    font-weight: 600;
    text-align: left;
    background: var(--key);
    color: white;
}

table.border th,
table.border td {
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, .1);
}

table.border tr:hover td {
    background: var(--lightgray);
}

table.sum {
    width: 100%;
    border-collapse: collapse;
    font-size: 80%;
}

table.sum tr:nth-last-child(1) td {
    padding-top: 8px;
    font-weight: 600;
}

table.sum tr td:last-of-type {
    text-align: right;
}

/* ============================ LEFT / CENTER / RIGHT ============================ */

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-danger {
    color: red;
}

.text-success {
    color: green;
}

[class*=status-] {
    display: inline-block;
    vertical-align: middle;
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 80%;
    color: white;
}

.status-danger {
    background: red;
}

.status-success {
    background: green;
}

.float-right {
    float: right;
}

/* ============================ HIDE / INLINE / BLOCK ============================ */
.block-t,
.inline-t,
.block-m,
.inline-m {
    display: none;
}

@media only screen and (max-width:1024px) {
    .hide-t {
        display: none;
    }

    .block-t {
        display: block;
    }

    .inline-t {
        display: inline-block;
    }

    .text-left-t {
        text-align: left !important;
    }

    .text-right-t {
        text-align: right !important;
    }

    .text-center-t {
        text-align: center !important;
    }
}

@media only screen and (max-width:768px) {
    .hide-m {
        display: none;
    }

    .block-m {
        display: block;
    }

    .inline-m {
        display: inline-block;
    }

    .text-left-m {
        text-align: left !important;
    }

    .text-right-m {
        text-align: right !important;
    }

    .text-center-m {
        text-align: center !important;
    }
}

/* ============================ TAB ============================ */

.tab .tab-menu {
    background: var(--bg);
    box-shadow: 0 1px 0 0 var(--gray);
    position: sticky;
    left: 0px;
    display: block;
    width: 100%;
    padding: 16px 24px;
    z-index: 99;
    width: calc(100% + 48px);
    margin-left: -24px;
}

.tab .tab-menu ul {
    display: inline-block;
    vertical-align: middle;
    overflow: auto;
    width: 100%;
}

@media only screen and (max-width:768px) {
    .tab .tab-menu ul {
        width: calc(100% + 48px);
        margin-left: -24px;
        padding: 0 24px;
    }
}

.tab .tab-menu ul li {
    margin-right: 8px;
}

.tab .tab-menu ul li:last-of-type {
    margin-right: 0;
}

.tab .tab-menu * {
    list-style: none;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

.tab .tab-menu ul li a {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid var(--gray);
    border-radius: 24px;
    font-size: 80%;
    white-space: nowrap;
    color: var(--txt);
}

.tab .tab-menu ul li a svg {
    width: 16px;
    height: 16px;
}

.tab .tab-menu ul li a:hover {
    background: var(--lightgray);
}

.tab .tab-menu ul li a:active {
    background: var(--gray);
}

.tab .tab-menu ul li a.active {
    border: 2px solid var(--key);
    color: var(--key);
}

.tab .tab-menu ul li a.active i {
    color: var(--key);
}

.tab .tab-section {
    padding: 24px 0;
}

/* ============================ ICON ============================ */

i.icon {
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

i.left {
    margin-right: 8px;
}

i.right {
    margin-left: 8px;
}

i.icon svg {
    display: block;
    margin: auto;
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    transition: .1s;
}

small i.icon svg,
i.icon.small svg {
    width: 16px;
    height: 16px;
}

i.icon.large svg {
    width: 32px;
    height: 32px;
}


/* ============================ Flex ============================ */

.flex {
    display: flex;
}

.flex>.wrap {
    margin: auto;
}

.flex>.wrap.full {
    width: 100%;
}

.flex>.wrap.left {
    margin-left: 0;
}

.flex>.wrap.right {
    margin-right: 0;
}

.flex>.wrap.top {
    margin-top: 0;
}

.flex>.wrap.bottom {
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {

    .flex>.wrap.full-t {
        width: 100%;
    }

    .flex>.wrap.left-t {
        margin-left: 0;
    }

    .flex>.wrap.right-t {
        margin-right: 0;
    }

    .flex>.wrap.top-t {
        margin-top: 0;
    }

    .flex>.wrap.bottom-t {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 768px) {

    .flex>.wrap.full-m {
        width: 100%;
    }

    .flex>.wrap.left-m {
        margin-left: 0;
    }

    .flex>.wrap.right-m {
        margin-right: 0;
    }

    .flex>.wrap.top-m {
        margin-top: 0;
    }

    .flex>.wrap.bottom-m {
        margin-bottom: 0;
    }
}

/* ============================ Flex ============================ */

[class*="grid-"],
.grid {
    display: grid;
    min-width: 0;
}

.grid-title {
    grid-template-columns: 1fr auto;
    grid-gap: 24px;
}

[class*="grid-"]>*,
.grid>* {
    min-width: 0;
}

.col-a-1 {
    grid-template-columns: auto 1fr !important;
}

.col-1-a {
    grid-template-columns: 1fr auto !important;
}

.col-1-2 {
    grid-template-columns: 1fr 2fr !important;
}

.col-1-3 {
    grid-template-columns: 1fr 3fr !important;
}

.col-2-1 {
    grid-template-columns: 2fr 1fr !important;
}

.col-3-1 {
    grid-template-columns: 3fr 1fr !important;
}

.col-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.col-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.col-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

.col-5 {
    grid-template-columns: repeat(5, 1fr) !important;
}

.col-6 {
    grid-template-columns: repeat(6, 1fr) !important;
}

.gap-8 {
    grid-gap: 8px !important;
}

.gap-16 {
    grid-gap: 16px !important;
}

.gap-24 {
    grid-gap: 24px !important;
}

.gap-32 {
    grid-gap: 32px !important;
}

.gap-40 {
    grid-gap: 40px !important;
}

.gap-48 {
    grid-gap: 48px !important;
}

.gap-56 {
    grid-gap: 56px !important;
}

.gap-64 {
    grid-gap: 64px !important;
}

.full-width {
    width: calc(100% + 48px);
    margin-left: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

@media only screen and (max-width: 1024px) {
    .full-width-t {
        border-radius: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .col-1-t {
        grid-template-columns: 1fr !important;
    }

    .col-2-t {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .col-3-t {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .col-4-t {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .col-5-t {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    .col-6-t {
        grid-template-columns: repeat(6, 1fr) !important;
    }

    .gap-8-t {
        grid-gap: 8px !important;
    }

    .gap-16-t {
        grid-gap: 16px !important;
    }

    .gap-24-t {
        grid-gap: 24px !important;
    }

    .gap-32-t {
        grid-gap: 32px !important;
    }

    .gap-40-t {
        grid-gap: 40px !important;
    }

    .gap-48-t {
        grid-gap: 48px !important;
    }

    .gap-56-t {
        grid-gap: 56px !important;
    }

    .gap-64-t {
        grid-gap: 64px !important;
    }

    .swipe-t {
        display: flex;
        overflow: auto;
        width: calc(100% + 48px);
        margin-left: -24px;
        padding: 8px 24px 16px;
        margin-bottom: -16px;
    }

    .swipe-t>* {
        min-width: 48vw;
    }

}

@media only screen and (max-width: 768px) {
    .full-width-m {
        border-radius: 0;
        width: calc(100% + 48px);
        margin-left: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .col-1-m {
        grid-template-columns: 1fr !important;
    }

    .col-2-m {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .col-3-m {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .col-4-m {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .col-5-m {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    .col-6-m {
        grid-template-columns: repeat(6, 1fr) !important;
    }

    .gap-8-m {
        grid-gap: 8px !important;
    }

    .gap-16-m {
        grid-gap: 16px !important;
    }

    .gap-24-m {
        grid-gap: 24px !important;
    }

    .gap-32-m {
        grid-gap: 32px !important;
    }

    .gap-40-m {
        grid-gap: 40px !important;
    }

    .gap-48-m {
        grid-gap: 48px !important;
    }

    .gap-56-m {
        grid-gap: 56px !important;
    }

    .gap-64-m {
        grid-gap: 64px !important;
    }

}

/* ============================ ACCORDION ============================ */
.accordion {
    display: grid;
    grid-gap: 16px;
    font-size: 90%;
}

.accordion .title {
    cursor: pointer;
    display: block;
    padding: 16px 24px;
    border-radius: var(--radius);
    background: var(--bg);
}

.accordion .title .grid>* {
    display: inline-flex;
    align-items: center;
    justify-content: left;
}

.accordion .title b {
    display: inline-block;
    vertical-align: middle;
}

.accordion .title.active {
    border-radius: var(--radius) var(--radius) 0 0;
}

.accordion .title i {
    color: var(--key);
    transition: .1s;
}

.accordion .title.active i {
    transform: rotate(90deg);
}

.accordion .content {
    padding: 16px;
    display: none;
    border: 1px solid var(--bg);
    border-radius: 0 0 var(--radius) var(--radius);
}

/* ============================ CS ============================ */

#cs {
    position: fixed;
    z-index: 99;
    bottom: 24px;
    right: 24px;
}

#cs .cs-cta {
    display: block;
    border-radius: 64px 64px 16px 64px;
    width: 64px;
    height: 64px;
    padding: 16px;
    background: var(--key);
    border: 0;
    cursor: pointer;
    box-shadow: var(--shadow);

    transition: .1s;
    transform-origin: bottom right;
    opacity: 1;
    transform: scale(1);
}

#cs .cs-cta img {
    border-radius: 64px;
}

#cs .cs-cta.active {
    visibility: hidden;
    opacity: 0;
    transform: scale(.8);
}

#cs .cs-wrap {
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    width: 320px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px 16px 16px 16px;
    box-shadow: var(--shadow);

    transition: .1s;
    transform-origin: bottom right;
    transform: scale(.8);
    visibility: hidden;
    opacity: 0;
}

#cs .cs-wrap.toggle {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

#cs .cs-wrap header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-gap: 16px;
}

#cs .cs-wrap header .wa {
    background: var(--key);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px 16px 16px 8px;
}

#cs .cs-wrap header img {
    max-height: 24px;
    border-radius: 24px;
}

#cs .cs-wrap header .info {
    display: flex;
}

#cs .cs-wrap header .info .wrap {
    margin: auto 0;
    line-height: 1.2;
}

#cs .cs-wrap header .info b {
    display: block;
}

#cs .cs-wrap .cs-close {
    cursor: pointer;
}

#cs .cs-wrap .txt {
    padding: 24px;
    padding-bottom: 48px;
    background: var(--bg);
    margin: 24px -24px;
}

#cs .cs-wrap .txt span {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    font-size: 80%;
    border-radius: 4px 16px 16px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

#cs .cs-wrap form {
    display: grid;
    grid-template-columns: 1fr auto;
}

#cs .cs-wrap form>* {
    border: 0;
    background: transparent;
}

#cs .cs-wrap form input {
    padding-right: 24px;
    text-overflow: ellipsis;
    color: var(--txt);
}

#cs .cs-wrap form button {
    color: var(--key);
    cursor: pointer;
}

/* ============================ POP-FIRST ============================ */

.pop-first {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: flex;

    transition: .1s;
    visibility: hidden;
    opacity: 0;
}

.pop-first.open {
    visibility: visible;
    opacity: 1;
}

.pop-first .wrap {
    margin: auto;
    width: 480px;
    max-width: calc(100% - 48px);

    transition: 1s;
    transform: scale(0);
}

.pop-first.open .wrap {
    transform: scale(1);
}

.pop-first .wrap a {
    display: block;
}

.pop-first .wrap .pop-first-close {
    font-size: 16px;
    float: right;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    margin-bottom: 32px;
    background: white;
    color: var(--key);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ============================ POP ============================ */

[id*="pop-"] {
    display: none;
}

.pop {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 60px 0;
    background: rgba(0, 0, 0, .8);
    display: flex;

    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;

    transition: transform, margin .1s;
    visibility: hidden;
    opacity: 0;
}

.pop.open {
    visibility: visible;
    opacity: 1;
}

body.pop-open {
    overflow-y: hidden;
}

.pop .pop-wrap {
    display: block;
    margin: auto;
    background: var(--white);
    background-image: url(https://src.kiosweb.id/b39069bc-b508-4f9c-f652-4d0edf59fe00/public);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--black);
    box-shadow: 0 16px 16px rgba(0, 0, 0, .4);
    border-radius: 16px;
    overflow: hidden;
    width: 480px;
    max-width: calc(100% - 48px);

    transition: .1s;
    transform-origin: bottom center;
    transform: scale(.9);
}

.pop.open .pop-wrap {
    transform: scale(1);

}

.pop .pop-wrap .pop-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 24px;
}

.pop .pop-wrap .pop-header .pop-title {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    overflow: hidden;
}

.pop .pop-wrap .pop-header .pop-title h3 {
    display: block;
    margin: auto 0;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 110%;
    font-weight: 600;
}

.pop .pop-wrap .pop-header .pop-title h3 img {
    display: inline-block;
    vertical-align: middle;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    margin-right: 24px;
    border: 1px solid var(--black);
}

.pop .pop-wrap .pop-header .pop-close {
    display: flex;
    align-items: center;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    padding: 16px 24px;
    font-weight: 700;
    color: var(--key);
}

.pop .pop-wrap .pop-header .pop-close:active {
    transform: scale(.9);
}

.pop.open .pop-wrap .pop-content {
    display: block;
}

.pop .pop-wrap .pop-content {
    padding: 24px;
    padding-top: 0;
    line-height: 1.5;
}

.pop .pop-wrap .pop-content hr {
    width: calc(100% + 48px);
    margin: 0 -24px;
}

@media only screen and (max-width: 1024px) {
    .pop {
        padding: 0;
    }

    .pop .pop-wrap {
        margin-bottom: 0;
        max-width: 100%;
        width: 100% !important;
        border-radius: 16px 16px 0 0;
        transform: none;
    }

    .pop .pop-wrap .pop-content {
        max-height: 80vh;
        overflow-y: auto;
    }
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mt-2 {
    margin-top: .5rem !important;
}