/* 动画 */

@keyframes mask {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bubbles {
    from {
        transform: scale(0, 0);
    }

    to {
        transform: scale(1, 1);
    }
}


@keyframes design__loading-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes design__loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40px;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120px;
    }
}

@keyframes stretch {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        background-color: #ddd;
    }

    50% {
        background-color: #fff;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        background-color: #eee;
    }
}


/* 动画 */

.single-code {
    width: 100%;
    margin: 20px 0;
    border: 1px solid #eaeaea;
    background: linear-gradient(275deg, var(--diy-color1), #f8f8f8, #ffffff);
    padding: 0 10px;
}

.single-code .step {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
    position: relative;
}

.single-code .step+.step {
    /* margin-top: 10px; */
    border-top: 1px solid #eaeaea;
}

/* 左边 */
.single-code .step .step-left {
    position: relative;
    flex: 1;
    margin-right: 10px;
}

.single-code .step .step-left-line {
    width: 2px;
    background-color: #c0c4cc;
}

.single-code .step .step-left-icon {
    border-radius: 50%;
    border: 1px solid #c0c4cc;
    padding: 3px;
    width: 25px;
    height: 25px;
    line-height: 18px;
    text-align: center;
    font-size: 13px;
    margin: 0 auto;
}

/* 右边 */
.single-code .step .step-right {
    width: 100%;
    min-height: 30px;
    /* border: 1px solid #eaeaea;
  background-color: #f8f8f8; */
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-code .step .step-right .text {
    font-size: 12px;
}

.single-code .step .step-right .text .tip {
    color: #f00;
}

.single-code .step .step-right .tool {
    display: flex;
    align-items: center;
}

.single-code .step .step-right .tool #imgFileName {
    margin-right: 15px;
    font-size: 12px;
    cursor: pointer;
}

.single-code .step .step-right .tool #imgFileName:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.single-code .step .step-right .tool .btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 12px;
    padding: 4px 13px;
    border-radius: 15px;
}


.cart__content .spec p {
    max-width: 210px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.single-code .step .step-right .tool .btn.not-empty-field {
    margin-right: 10px;
}

.single-code .step .step-right .tool .btn:hover {
    background-color: #414141;
    cursor: pointer;
}

.single-code .step .step-right .tool .link {
    display: inline-block;
    font-size: 12px;
    width: 80px;
    text-decoration: underline;
}

.single-code .step .step-right .tool .btn+.link {
    margin-left: 20px;
}


/* 弹出框样式 */
html.lock,
html.lock body.lock {
    position: relative;
    height: 100% !important;
    overflow: hidden !important;
}

button,
input,
ul,
li {
    outline: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

button,
input {
    overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.design-loading,
.design-modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.design-modal {
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    justify-items: center;
    align-items: center;
}

.design-modal-mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    animation: mask 0.2s linear;
}

.design-modal-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    overflow: hidden;
    animation: bubbles 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

@media screen and (min-width: 768px) {
    .design-modal-content {
        width: 500px;
        height: 700px;
        margin: auto;
        border-radius: 6px;
        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }
}
@media screen and (max-width: 1024px) {
    .design-modal-content {
        width: 800px !important;
        height: 500px !important;
    }
}

@media screen and (min-width: 1124px) {
    .design-modal-content {
        height: 720px !important;
        width: 1000px !important;
    }
}

@media screen and (max-width: 768px) {
    .design-modal-content {
        width: 100% !important;
        height: 100% !important;
    }
}
.design-button {
    position: relative;
    background-color: #dd9193;
    border: 0;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
    width: 100%;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    outline: none !important;
    cursor: pointer;
}

.design-button:active {
    opacity: 0.8;
}

.design-modal-content #design-node {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.design-modal-content #design-node * {
    box-sizing: border-box;
}

.design-modal-content #design-node .design__layout {
    position: relative;
    width: 100%;
    height: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.design-modal-content #design-node .design__layout .design-spotify-code {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.design-spotify-code .design__input-wrapper {
    position: relative;
    display: flex;
    padding: 6px;
    margin: 30px 12px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px -2px rgb(0 0 0 / 15%);
}

.design-spotify-code .design__input-wrapper input {
    flex: 1;
    height: 38px;
    border: 0;
    border-radius: 4px;
    background: #f2f2f2;
    padding: 6px 10px;
    color: #000;
    font-size: 16px;
}

.design-spotify-code .design__input-wrapper input::placeholder {
    text-align: center;
    font-size: 13px;
    color: #aeaeae;
}

.design-spotify-code .design__input-wrapper .design__search-wrapper {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-spotify-code .design__input-wrapper .design__search-wrapper svg {
    width: 26px;
    height: 26px;
    fill: #a9a9a9;
}

.design-spotify-code .design__input-wrapper .design__confirm {
    position: relative;
    width: 38px;
    height: 38px;
    margin-left: 6px;
    display: none;
    justify-content: center;
    align-items: center;
    background: var(--design-theme-color);
    border-radius: 6px;
    box-shadow: 0 3px 10px -2px var(--design-theme-color-o5);
    cursor: pointer;
}

.design-spotify-code .design__input-wrapper .design__confirm .design__icon-wrapper svg {
    display: flex;
    width: 30px;
    height: 30px;
    fill: #fff;
}

.design-spotify-code .design__track-list-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.design__loading svg {
    width: 100%;
    height: 100%;
    animation: design__loading-rotate 2s linear infinite;
}

.design__loading svg>circle {
    animation: design__loading-dash 1.5s ease-in-out infinite;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 6;
    stroke-linecap: round;
}

.design-spotify-code .design__track-list-wrapper.design__recommend .design__recommend-title {
    padding: 30px 12px 0;
    text-align: center;
    font-size: 16px;
    color: #000;
}

.design-spotify-code .design__track-list-wrapper.design__result .design__result-title {
    height: 30px;
    padding: 10px 12px 0;
    color: #cdcdcd;
    font-size: 12px;
}

.design-spotify-code .design__track-list-wrapper.design__recommend .design__track-list {
    position: relative;
    padding-top: 10px;
}

.design-spotify-code .design__track-list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.design-spotify-code .design__track-list .design__track {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    margin: 0 12px 8px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px -2px rgb(0 0 0 / 15%);
    cursor: pointer;
}

.design-spotify-code .design__track-list .design__track-album {
    width: 36px;
    height: 36px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f2f2f2;
}

.design-spotify-code .design__track-list .design__track-content {
    flex: 1;
    padding: 0 10px;
    overflow: hidden;
}

.design-spotify-code .design__track-list .design__track-content .design__track-name {
    color: #555;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.design-spotify-code .design__track-list .design__track-content .design__track-artists {
    color: #999;
    font-size: 12px;
}

.design-spotify-code .design__close-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 2px 4px 10px rgb(0 0 0 / 15%);
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    transition: all 0.6s;
}

.design-spotify-code .design__close-wrapper.design__close-wrapper-track {
    bottom: 20px;
}

.design-spotify-code .design__close-wrapper svg {
    width: 30px;
    height: 30px;
    fill: #000;
}

.design-spotify-code .design__input-wrapper .design__confirm {
    position: relative;
    width: 38px;
    height: 38px;
    margin-left: 6px;
    display: none;
    justify-content: center;
    align-items: center;
    background: #910136;
    border-radius: 6px;
    box-shadow: 0 3px 10px -2px #91013680;
    cursor: pointer;
}

.design-spotify-code .design__input-wrapper .design__confirm .design__icon-wrapper svg {
    display: flex;
    width: 30px;
    height: 30px;
    fill: #fff;
}

.design-spotify-code .design__track-list-wrapper.design__result .design__track-list-gradient {
    top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.design-spotify-code .design__track-list-wrapper.design__result .design__track-list-gradient div {
    height: 100px;
}

.design-spotify-code .design__track-list-wrapper.design__result .design__track-list-gradient div.design__bottom-gradient {
    background-image: linear-gradient(to bottom, rgba(242, 242, 242, 0), #f2f2f2);
}

.design-spotify-code .design__track-list .design__loadmore {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.design__loading svg {
    width: 100%;
    height: 100%;
    animation: design__loading-rotate 2s linear infinite;
}

.design-spotify-code .design__track-list .design__loadmore svg>circle {
    stroke: #555;
}

.design-form {
    width: 100%;
    font-family: "Open Sans";
    font-weight: 500;
}

.design-form #design-button {
    width: 100%;
    position: relative;
    background-color: #e60044;
    border: 0;
    -webkit-appearance: none;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
}

.design-form #design-cart,
.design-form #design-input,
.design-modal {
    display: none;
}

.design-spotify-code .design__wrapper.design__track-wrapper {
    overflow: hidden;
}

.design__wrapper {
    left: 0;
    /* top: 0; */
    right: 0;
    bottom: 0;
}

.dots-loading {
    font-size: 0;
}

.dots-loading .design-button-text {
    display: none;
}

.dots-loading .dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots-loading .dots i {
    display: block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    font-weight: 400;
    border-radius: 100%;
    animation: stretch 0.5s ease-out 0.1s infinite alternate;
    -webkit-animation: stretch 0.5s ease-out 0.1s infinite alternate;
}

.dots-loading .dots i:first-child {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    margin: 0;
}

.dots-loading .dots i:last-child {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    margin: 0;
}

/* 字体 */
@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Roboto"), local("Roboto-Regular"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
        U+FE2E-FE2F;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Roboto"), local("Roboto-Regular"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2) format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Roboto"), local("Roboto-Regular"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2) format("woff2");
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Roboto"), local("Roboto-Regular"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2) format("woff2");
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Roboto"), local("Roboto-Regular"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
        U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Roboto"), local("Roboto-Regular"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
        U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Roboto"), local("Roboto-Regular"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
        U+FEFF, U+FFFD;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Roboto Bold"), local("Roboto-Bold"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCRc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
        U+FE2E-FE2F;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Roboto Bold"), local("Roboto-Bold"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfABc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Roboto Bold"), local("Roboto-Bold"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCBc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Roboto Bold"), local("Roboto-Bold"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBxc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Roboto Bold"), local("Roboto-Bold"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfCxc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
        U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Roboto Bold"), local("Roboto-Bold"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfChc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
        U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Roboto Bold"), local("Roboto-Bold"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
        U+FEFF, U+FFFD;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local("Roboto Black"), local("Roboto-Black"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCRc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
        U+FE2E-FE2F;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local("Roboto Black"), local("Roboto-Black"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfABc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local("Roboto Black"), local("Roboto-Black"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCBc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local("Roboto Black"), local("Roboto-Black"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfBxc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local("Roboto Black"), local("Roboto-Black"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfCxc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
        U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local("Roboto Black"), local("Roboto-Black"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfChc4AMP6lbBP.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
        U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local("Roboto Black"), local("Roboto-Black"),
        url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtfBBc4AMP6lQ.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
        U+FEFF, U+FFFD;
}

/* 完整合成样式 */
.design {
    margin-top: 28px;
}

.sunzi-loading,
.sunzi-modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.sunzi-modal {
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    justify-items: center;
    align-items: center;
}

.sunzi-modal-mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    animation: mask 0.2s linear;
}

.sunzi-modal-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    overflow: hidden;
    animation: bubbles 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

@media screen and (min-width: 768px) {
    .sunzi-modal-content {
        width: 500px;
        height: 600px;
        margin: auto;
        border-radius: 6px;
        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }
}

.sunzi-modal-content #sunzi-node {
    position: relative;
    width: 100%;
    height: 100%;
}

.design-form {
    width: 100%;
    font-family: 'Open Sans';
    font-weight: 500;
}

.design-form #sunzi-button {
    width: 100%;
    position: relative;
    background-color: #e60044;
    border: 0;
    -webkit-appearance: none;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
}

.design-form #sunzi-cart,
.design-form #sunzi-input,
.sunzi-modal {
    display: none;
}

.sunzi-spotify-code .sunzi__wrapper-hJY8k.sunzi__track-wrapper-3NPQH {
    overflow: hidden;
}

.dots-loading {
    font-size: 0;
}

.dots-loading .sunzi-button-text {
    display: none;
}

.dots-loading .dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots-loading .dots i {
    display: block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    font-weight: 400;
    border-radius: 100%;
    animation: stretch 0.5s ease-out 0.1s infinite alternate;
    -webkit-animation: stretch 0.5s ease-out 0.1s infinite alternate;
}

.dots-loading .dots i:first-child {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    margin: 0;
}

.dots-loading .dots i:last-child {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    margin: 0;
}