/** Shopify CDN: Minification failed

Line 598:19 Expected identifier but found whitespace
Line 598:24 Unexpected ";"
Line 611:3 Unexpected "/"

**/
:root {
    --purple: #392f5a;
    --grey: #b3b3b3;
    --green: #39b54a;
    --red: rgb(237, 28, 36);
}

.btn {
    /* background: var(--purple); */
    background: rgb(var(--accent-color));
    color: white;
    border-radius: var(--buttons-radius);
    padding: 10px 15px;

    font-family: 'Questrial', sans-serif;
}

.loader-wrapper {
    height: 100px;
    width: 100px;
    position: relative;
}

.loader-circle {
    width: 100%;
    height: 100%;
}

.loader-star-small {
    height: 25%;
    width: auto;
    position: absolute;
    bottom: 20%;
    right: 23%;
    animation: stars-rotate 3s infinite;
}

.loader-star-medium {
    height: 28%;
    width: auto;
    position: absolute;
    top: 18%;
    right: 30%;
    animation: stars-rotate 3s infinite ease-in-out;
    animation-delay: 0.5s;
}

.loader-star-large {
    height: 35%;
    width: auto;
    position: absolute;
    bottom: 25%;
    left: 20%;
    animation: stars-rotate 3s infinite ease-in-out;
    animation-delay: 1s;
}

@keyframes stars-rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-90deg) scale(0);
    }
    100% {
        transform: rotate(-180deg) scale(1);
    }
}


.btn[disabled] {
    background: var(--grey);
}

.back-button {
    align-items: center;
    background: rgb(var(--accent-color));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    height: 39px;
    justify-content: center;
    left: 10%;
    /* left: 149px; */
    position: absolute;
    right: auto;
    top: 144px;
    width: 39px;
    z-index: 1;
}

.back-button.back-button-step-1 {
    left: 5%;
}

.back-button svg {
    height: 16px;
}

.back-button[disabled] {
    display: none;
}


.step-progress {
    width: 400px;
    padding: 6px;
    background: rgb(240, 240, 240);
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 2px inset, rgba(255, 255, 255, 0.08) 0px 1px;
    height: 20px;

    display: flex;
    align-items: center;
    gap: 8px;

    margin: 20px auto;
}

.step-progress[hidden] {
    display: none;
}

.step-progress-item {
    width: 0;
    transition: width 0.3s ease-in-out;
}

.step-progress-item.active {
    background: rgb(var(--accent-color));
    border-radius: 4px;
    flex-grow: 0;
    flex-shrink: 1;
    height: 100%;
    width: 49%
}

.image-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.image-upload__inner {
    width: 100%;
    background: white;
}
.upload-step {
    display: none;

    min-height: 100vh;
}
.upload-step.active {
    display: flex;
}
.upload-step:not(.upload-step-1).active {
    flex-direction: column;
}

.upload-step-1 {
    justify-content: space-between;
}

.upload-step-1__message {
    display: flex;
    align-items:center;
    justify-content: center;
    gap: 15px;

    margin: 15px 0;
}

.upload-step-1__message .message-text {
    font-size: 12px;
    line-height: 120%;
}

.upload-step-1__message svg {
    flex-shrink: 0;
}

.upload-step-2 {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

.upload-step-3 {
    max-width: 600px;
    margin: 0 auto;

    padding: 0 20px;
}

.upload-step-3 img,
.modal-content img {
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none;
}
.image-upload__left {
    width: 20%;
    position: relative;
    background: rgb(var(--accent-color));
    /* background: linear-gradient(to bottom, #2d1e49 0%, #c0b8d3 100%); */
}

.preview-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.image-upload__preview {
    min-width: 100px;
    min-height: 100px;
    width: 35vh;
    height: 35vh;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 20vh);
    overflow: hidden;
    cursor: pointer;
}

.image-preview {
    background-color: white;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    margin: 0 auto;
}

.image-upload__preview img,
.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-upload__right {
    flex-grow: 1;

    position: relative;
}

.main-title {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 54px;
}

.main-title--mobile {
 display: none;
}

#upload-form-container {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
}

.image-upload__drop-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0px auto 40px;
    max-height: 260px;
    min-height: 140px;
    height: 21vh;
    max-width: 600px;
    width: 100%;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding-top: 18px;
    padding-bottom: 18px;
}
.image-upload__drop-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-upload__button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(var(--accent-color));
    color: white;
    border: none;
    border-radius: var(--buttons-radius);
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    height: 48px;
    border-radius: 12px;
}

.image-upload__button svg {
    width: 18px;
    height: 18px;
}

#image-input {
    display: none;
}


.next-button {
    justify-content: center;
    margin: 0px auto;
    height: 50px;
    min-width: 120px;
    /* padding: 6px 32px; */
    font-size: 2rem;
    /* font-size: 25px; */
    display: flex;
    align-items: center;
    width: fit-content;

    font-weight: bold;
}

#next-step-1 {
    height: 78px;
    font-size: 46px;
    display: flex;
    justify-content: center;
    align-items: center; gap: 6px;

    border-radius: 22px;
    font-weight: 400;
    min-width: 300px;
}

#next-step-1-toggle {
    font-size: 25px;
}

#next-step-1 svg {
    height: 28px;
    width: 28px;
}

.upload-atc {
    width: 100%;
    border-radius: 12px;
    height:65px;
}

.hidden {
    display: none;
}

/* tips */
.tips {
    margin-bottom: 20px;
}

.tips__title, .tips__subtitle {
    margin: 0 auto 20px;
    text-align: center;
}
.tips__title {
    font-size: 36px;
}
.tips__subtitle {
    font-size: 14px;
    line-height: 120%;
    margin-top: 10px;
}
.tips__container {
    display: grid;
    grid-template-columns: 146px 146px 146px 146px;
    /* grid-template-columns: 170px 146px 146px 146px; */
    gap: 28px;
    margin: 10px;
    margin-inline-start: 25px;
    justify-content: center;
}

.tip-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tip-item-image-container {
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--grey);
    aspect-ratio: 1 /1 ;

    position: relative;
}

.tip-item-image-container img {
    position: absolute;
    border-radius: inherit;

    width: 100%;
    height: 100%;

    object-fit: cover;
}
.tip-item--correct .tip-item-image-container {
    border: 4px solid var(--green);
}

.tips-icon {
    position: absolute;
    border-radius: 50%;
    bottom: 5%;
    right: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.correct-icon {
    background: rgb(81, 137, 10);
}
.incorrect-icon {
    background: var(--red);
    border: 2px solid white;
    padding: 2px;
}

.incorrect-icon svg{
    height: 10px;
    width: 10px;
}


.tip-item__text {
    margin: 0;
    text-align: center;
    font-weight: 700;
    color: var(--grey);
    line-height: 120%;
    font-size: 18px;
}

.tip-item--correct .tip-item__text{
    color:var(--green);
}

/* .tip-item--correct .tip-item-image-container {
    width: 160px;
    height: 160px;
} */
.tip-item--incorrect .tip-item-image-container img{
    -webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
}


/* step2 */
.personalise-text {
    text-align: center;
    font-size: 25px;
}

@media screen and (max-width: 1320px) {
    .tips__container {
        gap: 0;
        grid-template-columns: repeat(4, 80px)
    }

    .tip-item {
        max-width: 80px;
    }

    .tip-item__text {
        font-size: 13px;
        max-width: 70px;
        margin: 0 auto;
    }

    .tip-item--correct {
        /* margin-right: 20px; */
    }
    .tip-item--incorrect:nth-of-type(2) {
        transform: translateX(40px);
        z-index: 3;
    } 
    .tip-item--incorrect:nth-of-type(3) {
        transform: translateX(20px);
        z-index: 2;
    } 
    .tip-item--incorrect:nth-of-type(4) {
        z-index: 1;
    } 

    .tip-item-image-container,
    .tip-item--correct .tip-item-image-container {
        width: 88px;
        height: 88px;
    }

    .tips-icon {
        bottom: 0;
        right: 5px
    }
}

/*  */

.image-editor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.image-editor__text {
    margin: 0;
    font-size: 14px;
}

.image-upload__inner div:empty:not(.image-loader) {
    display: block !important;
}


#editable-image {
    max-width: 100%;
    object-fit: cover;
    /* width: 100%; */
    transition: all 0.3s ease;
}

.image-controls {
    bottom: 0;
    left: 50%;
    /* max-width: 450px; */
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    padding: 20px 15px;

    background: rgba(0, 0, 0, 0.4)
}

.image-controls button {
    height: 24px;
    /* width: 24px; */

    display: flex;
    justify-content: center;
    align-items: center;
}

.rotation-control {
    display: flex;
    align-items: center;
    gap: 10px;

    position: relative;
}

/* .rotation-gradient {
    position: absolute;
    width: 20px;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%); */
    pointer-events: none;

    z-index: 20;
}

.rotation-gradient--left {
    left: 0;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%); */
}

.rotation-gradient--right {
    right: 0;
    /* background: linear-gradient(to left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%); */
} */

#rotate-slider {
    width: 200px;
}

.flip-controls button {
    margin: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.image-container {
    position: relative;
    max-width: 650px;
    width: 50%;
    height: calc(-373px + 100vh);
    padding: 40px 10px 80px;
    background: black;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}
.image-container__inner {
    position: relative;
    height: 100%;
    width: 100%;
}

.rotation-container {
    position: relative;

}

.rotation-control {
    position: relative;
    width: 300px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}
.rotation-slider {
    position: relative;
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.tick-marks {
    position: absolute;
    width: 300%; 
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.1s linear;

    cursor: grab;
}

.tick-marks div.center-tick {
    height: 20px;
    background: red;
}
.tick-marks div {
    width: 2px;
    height: 15px;
    background: white;
    opacity: 0.6;
}
.slider-handle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: cyan;
    border-radius: 5px;
    cursor: grab;
}
#rotation-value {
    color: cyan;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px; 
    top: -6px;
}


/* variant options */

.product-variants {
    display: flex;
    flex-direction: column;
    gap: 20px;

    max-width: 600px;
    width: 100%;
    margin: 0 auto 30px;;
}
.upload-variant-option {
    padding: 1.3rem;
    cursor: pointer;
    border-radius: 4px;
    background: rgba(var(--accent-color),.02);
    border: 1px solid rgba(var(--accent-color),.3);
    position: relative;
}

.upload-variant-option.selected, .upload-variant-option:hover  {
    background: rgba(var(--accent-color),.1);
    border: 1px solid rgb(var(--accent-color));
}

.upload-variant-option__inner {
    font-family: 'Questrial', sans-serif;
}

.upload-variant-option__inner .quantity-break__label-text,
.upload-variant-option__inner .quantity-break__price{
    font-size: 16px;
    font-weight: 700;
}

#upload-form-container.drag-over .image-upload__drop-area{
    border: 2px dashed rgb(var(--accent-color));
    background-color: rgba(var(--accent-color), 0.08);
}

/* Remove arrows in Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}



.personalisation-input {
    border-radius: 4px;
    border: 1.3px solid #E3E3E3;

    height: 50px;
    padding: 6px;
    position: relative;
    transition: 0.3s;

    /* margin-bottom: 20px; */
}

.number-input-container:has(input:focus) {
    border: 1.3px solid rgb(var(--accent-color));
}


.options-selection {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    flex-shrink: 0;;
}

#personalisation-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto 20px;

    padding: 30px 20px;
    border-top: 1px solid rgba(0,0,0, 0.12);
    border-bottom: 1px solid rgba(0,0,0, 0.12);
}

.personalisation-input label {
    position: absolute;
    font-size: 11px;
    top: -10px;
    left: 10px;
    background: white;
    padding: 0 4px;
    line-height: 100%;
}

.personalisation-input {
    text-align: center;
    flex-grow: 0;
}

.number-input-container {
    width: 70px
}

.personalisation-options {
    display: flex;
    gap: 4px;
    align-items: center;
    width: 100%;
}

#custom-number {
    display: block;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: transparent;
    text-align: center;

    font-size: 16px;

}

#custom-number:focus {
    outline: none;
    box-shadow: none;
}


.step-2-form-btn {
    border-radius: 4px;
    padding: 6px 10px;
    height: 100%;
    min-width: fit-content;
    transition: 0.3s;

    flex-grow: 1;
    font-size: 16px;
}

.step-2-form-btn.selected {
    background: rgb(var(--accent-color));
    color: white;
}


.generated-image-wrapper {
    width: 50%;
}

.generated-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    background: #f0f0f0;
    position: relative;
    outline: 2px solid transparent;
    cursor: pointer;

    border-radius: 6px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Soft grey shadow */
    transition: box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    overflow: hidden;
  }

  .image-placeholder {
    font-size: 12px;
    text-align: center;
    padding-top: 8px;
    line-height: 1.2;
  }

  .generated-image:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .generated-image img {
    width: 100%;
    height: 10%;
    object-fit: cover;
    /* aspect-ratio: 1 /1; */
  }

  .generated-images {
    display: flex;
    gap: 30px;

    margin-bottom: 30px;
  }
  .generated-image.selected {
    border: 2px solid white;
    outline: 2px solid rgb(var(--accent-color));
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }

  .generated-image-magnifier {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: white;
    border-radius: 50%;

    position: absolute;
    right: 5%;
    bottom: 5%;
  }

  .generated-image-magnifier svg {
    height: 20px;
    width: 20px;
  }
  
  .generated-images-modal {
    display: none;

    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    z-index: 10000;
    background: rgba(0,0,0, 0.2);

    padding: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    width: 100%;
  }

  .modal-content {
    background: white;
    height: 100%;
    width: fit-content;
    padding: 40px;
    border-radius: 12px;
    margin: auto;
    position: relative;
    overflow: hidden;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 30px;
    height: 30px;

    font-size: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: rgb(var(--accent-color));
    color: white;

    cursor: pointer;
  }

  .modal-content img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  @media screen and (max-width: 640px) {
    .generated-images-modal {
        padding: 10px;
    }

    .modal-content {
        padding: 20px;
        height: fit-content;
    }
  }

  /* Progress circle container */
.progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* width: 100px;
    height: 100px; */
  }
  
  /* Circular loader */
  .progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid #f3f3f3;
    border-top: 8px solid rgb(var(--accent-color));
    animation: rotate 2s linear infinite;
  }
  
  /* Animated rotation */
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Optional: Inner circle to make it look like a donut */
  .circle-loader {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    /* background-color: white; */
  }
  
  
  .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ddd;

    border-radius: inherit;
  }

  .progress-text {
    position: absolute;
    top: -25px;
    right: 0;
  }
  
  .progress-fill {
    width: 0;
    height: 100%;
    background: rgb(var(--accent-color));
    border-radius: inherit;
  }
/* 
  .progress-container {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 30px;
    width: 100%;

    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    overflow: hidden;
  } */
  
  @keyframes progressAnimation {
    from { width: 0%; }
    to { width: 100%; }
  }


  /* cropper */
  .image-container {
    position: relative;
  }
  
  #editable-image {
    width: 100%;
    height: 100%;
  }
  
  .cropper-overlay {
    width: 95%;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
  }
  
  .cropper-draggable {
    position: absolute;
    background-color: #fff;
    width: 10px; /* Adjust size of draggable lines */
    height: 10px;
    cursor: pointer;
    z-index: 100;
  }
  
  
  #cropper-top {
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
  }
  
  #cropper-left {
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
  }
  
  #cropper-right {
    right: 0;
    top: 0;
    height: 100%;
    width: 2px;
  }
  
  #cropper-bottom {
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
  }
  
  .cropper-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    border: 2px dashed transparent;
    pointer-events: none; 
  }
  
  .transparent-area {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.4); 
    pointer-events: none;
  }
  
  
  @media screen and (max-width: 1550px) {
    .image-upload__preview {
        width: 30vh;
        height: 30vh;
        left: calc(100% - 15vh);
    }

    .tips__subtitle {
        max-width: 600px;
    }

    .main-title {
        font-size: 52px;
    }
}

@media screen and (max-width: 1000px) {
    .upload-step-1 {
        flex-direction: column;
    }

    .upload-step-1:has(#upload-form-container.hidden) .image-upload__left{
        display: none;
    }

    #next-step-1 {
        width: 100%;
        font-size: 34px;
        height: 62px;
    }

    .image-upload__button {
        height: 48px;
        border-radius: 30px;
    }

    .image-container {
        min-width: 450px;
        min-height: 400px;
        max-width: 70%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    .image-upload__right {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .image-upload__left {
        width: 100%;
        height: 25vh;
        position: relative;
    }

    .image-upload__preview {
        min-width: 136px;
        min-height: 136px;
        width: 22vh;
        height: 22vh;
        left: 50%;
        transform: translateX(-50%);
        top: calc(100% - 16vh);
    }

    .main-title--mobile {
        display: block;
        color: white;
        text-align: center;
        font-size: 24px;
        margin-top: 20px;
    }
    .main-title {
        display: none;
    }

    #upload-form-container {
        margin-top: 60px;
    }

    .image-upload__drop-area {
        border: none;
        gap: 0;
        height: fit-content;
        padding-bottom: 0;
        min-height: fit-content;
    }

    .upload-form-text {
        display: none;
    }

    #next-button-1 {
        width: 80%
    }

    .back-button {
        left: 3%;
    }

    .back-button.back-button-step-1 {
        top: 0;
    }
}

@media screen and (max-width: 660px) {
    .image-container {
        max-width: 100%;
        min-width: 310px;;
        /* margin: 0 20px; */
    }

    .rotation-control {
        width: 200px;
    }

    .tick-marks {
        width: 450%;
    }

    .progress-circle {
        width: 60px;
        height: 60px;
    }
}
@media screen and (max-width: 570px) {
    .tips__title {
        font-size: 24px;
    }

    .back-button {
        top: 6%;
    }

    .step-progress {
        width: 95%;
    }

    .generated-images {
        gap: 15px;
    }

}



/* Watermark styles */
.watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    pointer-events: none;
}

/* Modal watermark styles */
.modal-watermark-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-content .modal-watermark-container {
    padding: 35px 30px;
}

.modal-watermark-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.modal-watermark {
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    font-weight: bold;
    flex: 1;
    text-align: center;
}

.modal-content .modal-watermark {
    font-size: 30px;
}

@media screen and (max-width: 640px) {
    .watermark {
        font-size: 12px;
        bottom: 8px;
        right: 8px;
    }

    .modal-watermark {
        font-size: 18px;
    }

    .modal-content .modal-watermark {
        font-size: 20px;
    }

    .modal-watermark-row {
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .watermark {
        font-size: 10px;
        bottom: 6px;
        right: 6px;
    }

    .generated-image .modal-watermark {
        font-size: 14px;
    }

    .modal-watermark-row {
        gap: 10px;
    }
}