.cu-wallpaper-configurator-section{
    padding: calc(1rem / 1.25);
}

.cu-wallpaper-configurator-section #app{
    min-height: 100svh;
}
.cu-wallpaper-configurator-gallery-list{
    columns: 300px;
    column-gap: 1rem;
}
.cu-wallpaper-configurator-gallery-item {
    margin-bottom: 1rem;
    overflow: hidden;
    break-inside: avoid;
}
.cu-wallpaper-configurator-gallery-item a {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.cu-wallpaper-configurator-gallery-item a .tcl-gallery-card__title {
    position: absolute;
    bottom: 0;
    z-index: 1;
    background: rgba(255, 255, 255, .4);
    width: 100%;
    padding: 5px;
}
.cu-wallpaper-configurator-gallery-item .pi-gallery-card__container {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 10;
}

.cu-wallpaper-configurator-gallery-no-items{
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cu-wallpaper-configurator-no-items{
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cu-wallpaper-configurator-no-items > h1{
    padding-top: 1.5rem;
}
.cu-wallpaper-configurator-no-items > a{
    padding-top: 1.5rem;
}
/*preloader*/
.cut-spinner-container {
    position: fixed;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}

.cut-overview.show {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.cut-spinner-container.show {
    z-index: 1001;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.2ms;
    transition: opacity 0.2ms;
}

.cut-spinner {
    --t: 2500ms;
    --animation: rotate var(--t) linear infinite;
    --animation2: scale var(--t) linear infinite alternate;
    width: 10rem;
    height: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-animation: var(--animation), var(--animation2);
    animation: var(--animation), var(--animation2);
}

.cut-spinner::before,
.cut-spinner::after {
    content: "";
    position: absolute;
}

.cut-spinner::before {
    inset: 0;
    border: 3px solid #8f000a;
    border-radius: 50%;
    -webkit-mask-image: conic-gradient(transparent 10%, black);
    mask-image: conic-gradient(transparent 10%, black);
    -webkit-animation: borderScale var(--t) linear infinite alternate;
    animation: borderScale var(--t) linear infinite alternate;
}

.cut-spinner-logo {
    position: absolute;
    width: 60px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.pi-single-motive__container{
    margin-top: 10px;
    display: flex;
    justify-content: end;
}
@-webkit-keyframes rotate {
    to {
        rotate: calc(360deg + var(--r, 0deg));
    }
}

@keyframes rotate {
    to {
        rotate: calc(360deg + var(--r, 0deg));
    }
}
@-webkit-keyframes scale {
    to {
        scale: var(--scale, 0.5);
    }
}
@keyframes scale {
    to {
        scale: var(--scale, 0.5);
    }
}
@-webkit-keyframes borderScale {
    to {
        border: 6px solid #8f000a;
    }
}
@keyframes borderScale {
    to {
        border: 6px solid #8f000a;
    }
}