
/* drop default styles */

/*=================================Variables=============================*/
:root {
  --main-font-family: 'Inter', sans-serif;
  --accent-color: #f07d00;
  --accent-color-disabled: rgba(240, 125, 0, 0.5);
  --icon-color-default: #e5e7eb;
  --icon-color-1: #34b559;
  --icon-color-2: #8b5cf6;
  --icon-color-3: #00a63e;
  --icon-color-4: #9810fa;
  --icon-color-5: #008236;
  --font-light-color: #6b7280;
  --font-darker-color: #4b5563;
  --font-dark-color: #0a0a0a;
  --font-title-color: #229743;

  --transition-for-all: all linear 1000ms;
  /* --transition-for-all: all cubic-bezier(0.075, 0.82, 0.165, 1) 1500ms; */
}



html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  font-family: inherit;
}

body {
  margin: 0;
  max-width: 100%;
  height: 100vh;
  font-family: var(--main-font-family);
  font-size: 14px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--font-dark-color);
  letter-spacing: 0;
  background:
    linear-gradient(135deg,
      rgba(240, 249, 255, 0) 0%,
      rgba(240, 249, 255, 0.7) 50%,
      rgba(250, 245, 255, 0.6) 100%),
    #fef8f0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

button {
  display: block;
  padding: 0;
  cursor: pointer;
}

nav {
  padding: 0;
}

input {
  margin: 0;
}

button:disabled {
  opacity: 0.5;
  cursor: no-drop !important;
}

/* ==========================Visually hidden class=======================================*/
.visually-hidden {
  /* display: none; */
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

/*============================Break points=================================================*/
@media screen and (min-width: 320px) {
  .container {
    max-width: 1024px;
    padding: 30px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 810px) {

  /* Починаю використовувати десктоп верстку для форми*/
  .container {
    max-width: 1024px;
    padding: 42px 15px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1025px) {

  /* Починаю використовувати десктоп верстку для навігатора сторінки*/
  .container {
    max-width: 1100px;
  }
}

@media screen and (min-width: 320px) {
    .pageTitle-mob-block {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;

        margin-bottom: 23px;
    }

    .pageTitle-mob-block::before {
        display: inline-block;
        content: "";

        width: 35px;
        height: 35px;

        border-radius: 10px;
        background: #F07D00;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);

        background-image: url(https://art-photobest.com.ua/wp-content/assets/molbert.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 21px 21px;
    }

    .pageTitle-mob {
        margin-bottom: 3px;

        color: #F07D00;
        font-size: 20.672px;
        font-weight: 700;
        line-height: 1.27;
    }

    .slang-mob {
        color: #4B5563;
        font-size: 11px;
        line-height: 1.54;
    }

    .slang-mob span {
        color: #229743;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.54;
    }

    .pageTitle-desktop {
        display: none;
    }

    .slang {
        display: none;
    }

    .order-form {
        position: relative;
        padding: 30px 22px 22px;
        border-radius: 15px;
        border: 2px solid #E5E7EB;
        background: #FFF;
        box-shadow:
            0px 10px 15px -3px rgba(0, 0, 0, 0.10),
            0px 4px 6px -4px rgba(0, 0, 0, 0.10);

        overflow: hidden;
    }

    .order-form:before {
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        content: "";
        width: 100%;
        height: 4px;

        background-color: var(--accent-color);
    }

    .stage-title {
        display: flex;
        align-items: center;

        margin-bottom: 15px;

        color: var(--font-title-color);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.57;
    }

    .stage-description {
        margin: 0 auto 21px;

        color: var(--font-darker-color);
        text-align: center;
        font-size: 10px;
        line-height: 1.4;
    }

    .order-form .stage-title {
        justify-content: center;
    }

    .stage-pseudo-common:before {
        display: inline-block;
        content: "";
        width: 14px;
        height: 14px;
        margin-right: 7px;

        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .mb-14 {
        margin-bottom: 14px;
    }

    .image-preview-wrapper {
        position: relative;

        border-radius: 10px;
        border: 2px solid #E5E7EB;
        background: #E5E7EB;

        overflow: hidden;
    }

    .text-left {
        margin: 0 auto 27px 0;
        width: 100%;
        text-align: left;
    }

    .final-view-form {
        position: relative;

        padding: 45px 22px 22px;

        border-radius: 15px;
        border: 1px solid #E5E7EB;
        background: #FFF;
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.10),
            0 4px 6px -4px rgba(0, 0, 0, 0.10);

        overflow: hidden;
    }

    .final-view-form::before {
        position: absolute;
        top: 0;
        left: 0;

        display: inline-block;
        content: "";
        width: 100%;
        height: 4px;

        background: linear-gradient(90deg, rgba(0, 201, 80, 0.00) 0%, #00C950 100%);

    }

    /* ===================Image ViewBox==================== */

    .image-preview {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .disabled {
        pointer-events: none;
        opacity: 0.5;
    }

    .dragover {
        background-color: #f0f8ff;
        outline: 2px dashed #1976d2;
    }

    
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/

    .pageTitle-mob-block {
        display: none;
    }

    .pageTitle-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        margin-bottom: 18px;
        color: var(--accent-color);
        text-align: center;
        font-size: 42px;
        font-weight: 700;
        line-height: 1.02;
    }

    .slang {
        display: block;

        margin-bottom: 28px;

        color: var(--font-darker-color);
        text-align: center;
        font-size: 16px;
    }

    .slang span {
        color: var(--icon-color-3);
        font-size: 17px;
        font-style: normal;
        font-weight: 700;
    }

    .pageTitle-desktop::before {
        display: inline-block;
        content: "";

        width: 50px;
        height: 50px;

        border-radius: 50%;

        background-color: var(--accent-color);
        background-image: url(https://art-photobest.com.ua/wp-content/assets/molbert.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 28px 28px;
    }

    .order-form {
        position: relative;
        padding: 50px 30px 30px;
        border-radius: 15px;
    }

    .stage-title {

        margin-bottom: 18px;

        font-size: 20px;
        line-height: 1.4;
    }

    .stage-description {
        margin: 0 auto 27px;

        font-size: 15px;
        line-height: 1.67;
    }

    .order-form .stage-description {
        max-width: 590px;
    }

    .stage-pseudo-common:before {
        width: 21px;
        height: 21px;
        margin-right: 4px;
    }

    .mb-14 {
        margin-bottom: 14px;
    }

    .image-preview-wrapper {
        position: relative;

        border-radius: 10px;
        border: 2px solid #E5E7EB;
        background: #E5E7EB;

        overflow: hidden;
    }

    .text-left {
        margin: 0 auto 27px 0;
        width: 100%;
        text-align: left;
    }

    .final-view-form {
        padding: 50px 47px;
    }


    /* ===================Image ViewBox==================== */

    .image-preview {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }
}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {
    .page-informer {
        padding: 18px 11px 22px;
        margin-bottom: 24px;

        border-radius: 15px;
        border: 1px solid #e5e7eb;
        background: transparent;
        box-shadow:
            0px 10px 15px -3px rgba(0, 0, 0, 0.1),
            0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    }

    .page-informer-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* justify-content: space-between; */
    }

    .page-informer-top-item {
        position: relative;
    }

    .page-informer-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-informer-icon-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        border-radius: 50%;
        background: var(--icon-color-default);
        box-shadow:
            0px 4px 6px -1px rgba(0, 0, 0, 0.1),
            0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    }

    .page-informer-top-item.activated .page-informer-icon-wrapper.stage-1 {
        background-color: var(--accent-color);
        box-shadow: 0px 4px 6px -1px #FFFFFF;
        box-shadow: 0px 0px 0px 4px #FFFFFF;
    }

    .page-informer-top-item.activated .page-informer-icon-wrapper.stage-2 {
        background-color: #34B559;
        box-shadow: 0px 4px 6px -1px #FFFFFF;
        box-shadow: 0px 0px 0px 4px #FFFFFF;
    }

    .page-informer-top-item.activated .page-informer-icon-wrapper.stage-3 {
        background-color: #8B5CF6;
        box-shadow: 0px 4px 6px -1px #FFFFFF;
        box-shadow: 0px 0px 0px 4px #FFFFFF;
    }

    .page-informer-top-item.activated .page-informer-icon-wrapper.stage-4 {
        background-color: #00A63E;
        box-shadow: 0px 4px 6px -1px #FFFFFF;
        box-shadow: 0px 0px 0px 4px #FFFFFF;
    }

    .page-informer-top-item.activated .page-informer-icon-wrapper.stage-5 {
        background-color: #9810FA;
        box-shadow: 0px 4px 6px -1px #FFFFFF;
        box-shadow: 0px 0px 0px 4px #FFFFFF;
    }

    .page-informer-top-item.activated .page-informer-icon-wrapper.stage-6 {
        background-color: #008236;
        box-shadow: 0px 4px 6px -1px #FFFFFF;
        box-shadow: 0px 0px 0px 4px #FFFFFF;
    }

    .page-informer-icon {
        display: inline-block;
        width: 21px;
        height: 21px;
        stroke: var(--font-light-color);
        fill: var(--font-light-color);
        color: var(--font-light-color);
    }

    .page-informer-top-item.activated .page-informer-icon {
        stroke: #fff;
        fill: #fff;
        color: #fff;
    }

    .page-informer-bottom {
        display: none;

    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/
    .page-informer-top {
        justify-content: space-around;
    }
}

@media screen and (min-width: 1025px) {

    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
    .page-informer {
        padding: 22px 36px;
        margin-bottom: 28px;
    }

    .page-informer-icon-wrapper {
        width: 42px;
        height: 42px;

        margin-bottom: 10px;
    }

    .page-informer-top {
        justify-content: space-between;
    }

    .page-informer-top-item.activated .page-informer-icon-wrapper {}

    .page-informer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;

    }

    .stage-1::after,
    .stage-2::after,
    .stage-3::after,
    .stage-4::after,
    .stage-5::after {
        position: absolute;
        left: calc(100% + 15px);

        display: inline-block;
        content: "";
        width: 56px;
        height: 2px;
        background-color: inherit;

    }

    .page-informer-top-item.activated .page-informer-text::after {
        border-color: var(--accent-color);
        background-color: var(--accent-color);
    }

    .page-informer-text1::after,
    .page-informer-text2::after,
    .page-informer-text3::after,
    .page-informer-text4::after,
    .page-informer-text5::after,
    .page-informer-text6::after {
        display: inline-block;
        content: "";
        width: 7px;
        height: 7px;
        border: 1px solid var(--font-light-color);
        border-radius: 50%;
        background-color: white;
    }

    .activated.page-informer-text1::after,
    .activated.page-informer-text2::after,
    .activated.page-informer-text3::after,
    .activated.page-informer-text4::after,
    .activated.page-informer-text5::after,
    .activated.page-informer-text6::after {
        border-color: var(--accent-color);
        background-color: var(--accent-color);
    }

    .page-informer-text1,
    .page-informer-text2,
    .page-informer-text3,
    .page-informer-text4,
    .page-informer-text5,
    .page-informer-text6 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;

        font-size: 12px;
        color: var(--font-light-color);
        white-space: nowrap;
    }

    .page-informer-text1.activated,
    .page-informer-text2.activated,
    .page-informer-text3.activated,
    .page-informer-text4.activated,
    .page-informer-text5.activated,
    .page-informer-text6.activated {
        color: var(--accent-color);
    }
}
@media screen and (min-width: 320px) {
    .form-informer {
        display: none;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/
    .form-informer {
        display: block;
    }

    .form-informer-top {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;

        margin-bottom: 23px;
    }

    .right-side {
        position: relative;
        width: 100%;
    }

    .stage-number {
        display: flex;
        justify-content: center;
        align-items: center;

        min-width: 35px;
        min-height: 35px;

        font-size: 16px;
        font-weight: 700;
        line-height: 1.55;

        border-radius: 50%;
        color: white;
        background: var(--accent-color);
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px -1px rgba(0, 0, 0, 0.10);
    }

    .stage-name {
        margin-bottom: -7px;
        /* вимушено */
        font-size: 25px;
        font-weight: 700;
        line-height: 1.25;
        /* 124.136% */
        color: var(--font-title-color);
    }

    .progress {
        /* position: absolute;
        top: 100%; */

        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 100%;
        height: 7px;
        border: none;
        border-radius: 4px;
        overflow: hidden;
    }

    /* WebKit (Chrome, Safari, Edge Chromium) */
    .progress::-webkit-progress-value {
        background-color: var(--accent-color);
    }

    .progress::-webkit-progress-bar {
        background-color: var(--icon-color-default);
    }

    /* Firefox */
    .progress::-moz-progress-bar {
        background-color: var(--accent-color);
    }

    .form-informer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-bottom: 32px;
    }

    .step {
        color: var(--font-title-color);
        font-size: 12px;
    }

    .persantage {
        color: var(--font-darker-color);
        font-size: 12px;
    }
}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
 /* <input type="range" min="0" max="100" value="50" id="range" /> */

 input[type="range"] {
     -webkit-appearance: none;
     width: 100%;
     height: 14px;
     border-radius: 7px;
     background: linear-gradient(to right, var(--accent-color) 50%, var(--icon-color-default) 50%);
     background-size: 100% 100%;
     background-repeat: no-repeat;
     outline: none;
     cursor: pointer;
 }

 /* Chrome, Safari */
 input[type="range"]::-webkit-slider-thumb {
     -webkit-appearance: none;
     appearance: none;
     width: 18px;
     height: 18px;
     background: white;
     border: 2px solid var(--accent-color);
     border-radius: 50%;
     margin-top: -1px;

     cursor: pointer;
 }

 /* Firefox */
 input[type="range"]::-moz-range-thumb {
     width: 18px;
     height: 18px;
     background: white;
     border: 2px solid var(--accent-color);
     border-radius: 50%;
     cursor: pointer;
 }

 input[type="range"]::-moz-range-track {
     height: 14px;
     background: var(--icon-color-default);
     border-radius: 7px;
 }
.custom-checkbox-block label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.checkbox-thumb-wrapper {
    position: relative;

    width: 28px;
    height: 16px;

    border-radius: 8px;

    background-color: var(--icon-color-default);

    cursor: pointer;
    transition: background-color linear 500ms;
}

.checkbox-thumb {
    position: absolute;
    top: 0;
    left: 0;

    width: 16px;
    height: 16px;

    stroke: var(--icon-color-default);

    transition: left linear 200ms;
}

.custom-checkbox-block input:checked+label .checkbox-thumb-wrapper {
    background-color: var(--accent-color);
}

.custom-checkbox-block input:checked+label .checkbox-thumb-wrapper .checkbox-thumb {
    left: calc(100% - 16px);

    stroke: var(--accent-color);
}
@media screen and (min-width: 320px) {
    select {
        display: flex;
        justify-content: space-between;
        align-items: center;

        appearance: none;
        /* Стандарт */
        -webkit-appearance: none;
        /* Safari */
        -moz-appearance: none;
        /* Firefox */

    }

    /* units select */

    .units {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;

        margin-bottom: 11px;
    }

    .units select {

        min-width: 100%;
        padding: 7px 12px;

        border-radius: 8px;
        border: 1px solid #C4B5FD;
        background: #FFF;

        color: #0A0A0A;
        font-size: 10px;
        line-height: 1.6;
    }

    .units .select-wrapper {
        position: relative;
        width: 100%;
    }

    .units .select-wrapper::after {
        position: absolute;
        top: 50%;
        right: 12px;

        transform: translate(0, -50%);
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/arrow-down.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    /* font select */

    .fonts {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 7px;

        margin-bottom: 20px;
    }

    .fonts select {
        width: 100%;
        padding: 9px 13px;


        color: #0A0A0A;
        font-size: 12px;
        line-height: 1.6;

        border-radius: 6px;
        border: 1px solid #E0E0E0;
        background: #FFF;
    }

    .fonts .select-wrapper {
        position: relative;
        width: 100%;
    }

    .fonts .select-wrapper::after {
        content: "";

        position: absolute;
        top: 50%;
        right: 13px;
        z-index: 10;
        transform: translate(0, -50%);

        display: inline-block;

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/arrow-down-grey.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/
    select {

        cursor: pointer;
    }

    /* units select */

    .units {
        gap: 14px;

        margin-bottom: 14px;
    }

    .units .select-wrapper {
        position: relative;
        width: fit-content;
    }

    .units select {
        width: 112px;
        font-size: 12px;
    }



    /* font select */

    .fonts {
        gap: 12px;

        margin-bottom: 24px;
    }

    .fonts select {
        width: 148px;
    }

    .fonts .select-wrapper {
        width: fit-content;
    }

    .fonts .select-wrapper::after {
        width: 16px;
        height: 16px;
    }
}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {
    .stage1-pseudo::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/image.svg);
    }

    .stage1-description-mob {
        margin-bottom: 19px;

        color: #4B5563;
        text-align: center;
        font-size: 10px;
        line-height: 1.4;
    }

    .stage1-description {
        display: none;
    }

    .upload-area {
        padding: 16px;
        margin-bottom: 10px;

        border-radius: 10px;
        border: 2px dashed var(--icon-color-default);
    }

    .upload-area-description {
        max-width: 190px;
        margin: 0 auto 10px;
        color: var(--font-dark-color);
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.5;
    }

    .upload-area-description span {
        color: var(--font-light-color);
        text-align: center;
        font-size: 10px;
        line-height: 1.42;
    }

    .select-file-button {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 90px;
        padding: 9px 12px;
        margin: 0 auto;

        border-radius: 9px;
        border: 2px solid #D1D5DB;
        background: #FFF;

        color: var(--font-dark-color);
        text-align: center;
        font-size: 10px;
        white-space: nowrap;
    }

    .file-requirements-block-mob {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;

        width: 100%;
        padding: 8px;
        margin-bottom: 26px;

        border-radius: 11px;
        border: 1px solid #BAE6FD;
        background: #F0F9FF;

        color: #374151;
        font-size: 10px;
        line-height: 1.39;
    }

    .file-requirements-block-mob::before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/image-blue.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .file-requirements-list-mob {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .file-requirements-list-mob li {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
    }

    .file-requirements-list-mob li::before {
        display: inline-block;
        content: "";

        width: 10px;
        height: 10px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .file-requirements-list {
        display: none;
    }

    .about-selected-image-area {
        display: grid;
        grid-template-columns: 90px 1fr;
        grid-template-rows: 1;
        gap: 22px;

        padding: 20px 14px 20px;
        margin-bottom: 26px;

        border-radius: 10px;
        border: 1px solid #C8E8FA;
        background: #EEF8FF;
        box-shadow: 0px 0px 8px 2px #BEDDF3;
    }

    .photo-container {
        position: relative;

        width: 80px;
        height: 80px;

        border-radius: 5px;
        border: 2px solid #FFF;
    }

    .selected-image-wrapper {
        width: 100%;
        height: 100%;

        border-radius: 5px;
        overflow: hidden;
    }

    .selected-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .photo-container:after {
        position: absolute;
        top: -10px;
        right: -10px;

        display: inline-block;
        content: "";
        width: 20px;
        height: 20px;

        border-radius: 50%;
        background-color: var(--icon-color-1);
        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved-white.svg);
        background-repeat: no-repeat;
        background-size: 15px 15px;
        background-position: center;
    }

    .selected-image-properties-container {
        overflow: hidden;
        white-space: wrap;
    }

    .selected-image-name {
        display: flexbox;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;

        margin-bottom: 10px;

        color: #000;
        font-size: 12px;
        font-weight: 600;
        line-height: 1;
    }

    .selected-image-name:before {
        display: inline-block;
        content: "";

        width: 16px;
        height: 16px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/image.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .selected-image-properties-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 5px;

        margin-bottom: 12px;
    }

    .selected-image-property-common {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;

        padding: 3px 8px;
        border-radius: 15px;
        border: 1px solid;

        font-size: 8px;
        font-weight: 500;
        line-height: 1.25;
        text-transform: uppercase;
    }

    .selected-image-size {
        color: #0CA5E9;
        border-color: #BAE6FC;
        background: #F0F9FF;
    }

    .selected-image-size::before {
        display: inline-block;
        content: "";
        width: 4px;
        height: 4px;

        border-radius: 50%;
        background-color: #00A6F5;
    }

    .selected-image-extension {
        color: #8B5CF6;
        border-color: #DDD6FE;
        background: #F5F3FF;
    }

    .selected-image-extension:before {
        display: inline-block;
        content: "";
        width: 4px;
        height: 4px;

        border-radius: 50%;
        background-color: #8B5CF6;
    }

    .selected-image-informer {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;

        margin-bottom: 14px;

        color: var(--font-title-color);
        font-size: 10px;
        font-weight: 600;
        line-height: 1.1;
    }

    .selected-image-informer:before {
        display: inline-block;
        content: "";

        width: 12px;
        height: 12px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .delete-image-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;

        padding: 5px 10px;
        border-radius: 8px;
        border: 1px solid #FFA2A3;

        color: #E7000B;
        font-size: 10px;
        font-weight: 500;
        line-height: 1.25;
        background: #FFF;
    }

    .delete-image-button:before {
        display: inline-block;
        content: "";

        width: 8px;
        height: 8px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/delete.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/
    .stage1-description-mob {
        display: none;
    }

    .stage1-description {
        display: block;
    }

    .stage1-pseudo::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/image.svg);
    }

    .stage1-description span {
        color: var(--icon-color-4);
    }

    .upload-area {
        padding: 45px;
        margin-bottom: 28px;

        border-radius: 15px;
    }

    .upload-area-description {
        max-width: 270px;
        margin: 0 auto 14px;
        font-size: 17px;
        line-height: 1.45;
    }

    .upload-area-description span {
        color: var(--font-light-color);
        font-size: 13px;
        line-height: 1.6;
    }

    .select-file-button {
        gap: 14px;

        width: 142px;
        margin: 0 auto 40px;

        border-radius: 9px;
        border: 2px solid var(--accent-color);
        background: #FFF;

        color: var(--accent-color);
        font-size: 12px;
    }

    .select-file-button:before {
        display: inline-block;
        content: "";
        width: 14px;
        height: 14px;

        padding: 1px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/image-orange.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .file-requirements-block-mob {
        display: none;
    }

    .file-requirements-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .file-requirements-common {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 5px 11px;

        border: 1px solid;
        border-radius: 15px;

        white-space: nowrap;
    }

    .file-requirements-common:before {
        display: inline-block;
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;

        font-size: 12px;
        line-height: 1.4;
    }

    .file-requirements-list-item1 {
        border-color: #BBF0C7;
        color: #1E7A37;
        background: #F0F9F4;
    }

    .file-requirements-list-item2 {
        border-color: #DDD6FE;
        color: #6D28D9;
        background: #F5F3FF;
    }

    .file-requirements-list-item3 {
        border-color: #BAE6FD;
        color: #0EA5E9;
        background: #F0F9FF;
    }

    .file-requirements-list-item4 {
        border-color: #E5E7EB;
        color: #374151;
        background: #F9FAFB;
    }

    .file-requirements-list-item1.file-requirements-common:before {
        background-color: #34B559;
    }

    .file-requirements-list-item2.file-requirements-common:before {
        background-color: #8B5CF6;
    }

    .file-requirements-list-item3.file-requirements-common:before {
        background-color: #00A6F4;
    }

    .file-requirements-list-item4.file-requirements-common:before {
        background-color: #6A7282;
    }

    .about-selected-image-area {
        display: grid;
        grid-template-columns: 112px 1fr;
        grid-template-rows: 1;
        gap: 22px;

        padding: 28px 22px 25px;
        margin-bottom: 26px;

        border-radius: 16px;
        border: 1px solid #C8E8FA;
        background: #EEF8FF;
        box-shadow: 0px 0px 8px 2px #BEDDF3;
    }

    .about-selected-image-area {
        grid-template-columns: 112px 1fr;


        padding: 28px 22px 25px;
        margin-bottom: 26px;

        border-radius: 16px;
    }

    .photo-container {
        position: relative;

        width: 112px;
        height: 112px;

        border-radius: 8px;
        border: 2px solid #FFF;
    }

    .selected-image-wrapper {
        width: 100%;
        height: 100%;

        border-radius: 8px;
        overflow: hidden;
    }

    .selected-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .photo-container:after {
        top: -12px;
        right: -12px;

        width: 25px;
        height: 25px;

        background-size: 20px 20px;
    }

    .selected-image-properties-container {}

    .selected-image-name {
        gap: 7px;

        margin-bottom: 14px;
        font-size: 18px;
    }

    .selected-image-name:before {
        display: inline-block;
        content: "";

        width: 21px;
        height: 21px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/image.svg);

    }

    .selected-image-properties-list {
        gap: 5px;

        margin-bottom: 12px;
    }

    .selected-image-property-common {
        padding: 5px 10px;

        font-size: 14px;
    }

    .selected-image-size::before {
        width: 7px;
        height: 7px;
    }

    .selected-image-extension:before {
        width: 7px;
        height: 7px;
    }

    .selected-image-informer {
        gap: 6px;

        margin-bottom: 22px;

        font-size: 16px;
    }

    .selected-image-informer:before {
        display: inline-block;
        content: "";

        width: 15px;
        height: 15px;
    }

    .delete-image-button {

        gap: 5px;

        font-size: 14px;
        font-weight: 500;
    }

    .delete-image-button:before {

        width: 12px;
        height: 12px;
    }
}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {
    .stage2-pseudo:before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/size-green.svg);

    }

    .size-selection-area {
        max-width: 720px;

        margin: 0 auto 47px;
    }

    .size-selection-area-top {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-columns: auto;

        gap: 12px;

        max-width: 450px;
        margin: 0 auto 10px;
    }

    .size-selection-area-subtitle {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;

        margin-bottom: 20px;

        color: #374151;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.46;
    }

    .size-selection-area-subtitle1:before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/ruler-green.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .size-selection-area-subtitle2:before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/ruler-purpur.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .size-selection-area-subtitle3 {
        margin-bottom: 30px;
    }

    .size-selection-area-subtitle3:before {
        display: inline-block;
        content: "";

        width: 21px;
        height: 21px;

        border-radius: 50%;
        background: var(--icon-color-1);

        background-image: url(https://art-photobest.com.ua/wp-content/assets/size-white.svg);
        background-repeat: no-repeat;
        background-size: 11px 11px;
        background-position: center;
    }

    .size-selection-area-top-left-side {
        width: 100%;
        max-width: 100%;
    }

    .sizes-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;

        width: 100%;
        max-width: 450px;
        margin: 0 auto;

        margin: 0 auto;
    }

    .sizes-list-item {
        width: 100%;
        height: 120px;
    }

    .sizes-list-item label {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 100%;
        padding: 8px;

        border-radius: 9px;
        border: 2px solid;
        color: #0A0A0A;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.42;
        text-align: center;

        background: #FFF;
        overflow: hidden;
    }

    .sizes-list-item label::after {
        margin-top: 5px;
        color: inherit;
        font-size: 10px;
        line-height: 1.4;
    }


    .sizes-list-item label::before {
        display: inline-block;
        content: "";

        width: 28px;
        height: 28px;
        margin-bottom: 16px;
        border-radius: 50%;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/ruler-black.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 21px 21;
    }

    .sizes-list-item input:checked+label::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved-white.svg);
        background-color: #f39733;
    }

    .sizes-list-item input:checked+label {
        color: white;
        background-color: var(--accent-color);
    }

    .size-30x30 label {
        border-color: var(--accent-color);
    }

    .size-30x30 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-50x50 label {
        border-color: #00C950;
    }

    .size-50x50 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-80x80 label {
        border-color: #AD46FF;
    }

    .size-80x80 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-100x100 label {
        border-color: #00A63E;
    }

    .size-100x100 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-20x30 label {
        border-color: #9810FA;
    }

    .size-20x30 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-40x60 label {
        border-color: var(--accent-color);
    }

    .size-40x60 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-60x90 label {
        border-color: #00C950;
    }

    .size-60x90 input:checked+label {
        border-color: var(--accent-color);
    }

    /* ===========================================********================================ */
    .size-80x120 label {
        border-color: var(--accent-color);
    }

    .size-80x120 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-30x20 label {
        border-color: #00C950;
    }

    .size-30x20 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-60x40 label {
        border-color: #AD46FF;
    }

    .size-60x40 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-90x60 label {
        border-color: #9810FA;
    }

    .size-90x60 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-120x80 label {
        border-color: var(--accent-color);
    }

    .size-120x80 input:checked+label {
        border-color: var(--accent-color);
    }

    .size-private label {
        border-color: #99A1AF;
    }

    .size-private input:checked+label {
        border-color: var(--accent-color);
    }

    .size-30x30 label::after {
        content: "30 × 30 см";
    }

    .size-50x50 label::after {
        content: "50 × 50 см";
    }

    .size-80x80 label::after {
        content: "80 × 80 см";
    }

    .size-100x100 label::after {
        content: "100 × 100 см";
    }

    .size-20x30 label::after {
        content: "20 × 30 см";
    }

    .size-40x60 label::after {
        content: "40 × 60 см";
    }

    .size-60x90 label::after {
        content: "60 × 90 см";
    }

    .size-80x120 label::after {
        content: "80 × 120 см";
    }

    .size-30x20 label::after {
        content: "30 x 20 см";
    }

    .size-60x40 label::after {
        content: "60 x 40 см";
    }

    .size-90x60 label::after {
        content: "90 × 60 см";
    }

    .size-120x80 label::after {
        content: "120 × 80 см";
    }

    .size-selection-area-top-right-side {
        color: #374151;
        font-size: 10px;
    }

    .set-private-size {
        padding: 15px;

        border-radius: 15px;
        border: 1px solid #DDD6FE;
        background: #F5F3FF;
    }

    .size-inputs-block {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));

        gap: 7px;

        width: 100%;

    }

    .size-inputs-block label {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;

        gap: 7px;
        width: 100%;
    }

    .size-inputs-block input {
        display: inline-block;

        width: 100%;
        padding: 9px 12px;

        border-radius: 9px;
        border: 1px solid #C4B5FD;
        background: #FFF;
    }

    .size-selection-area-bottom {
        max-width: 450px;

        padding: 11px;
        margin: 0 auto;

        border-radius: 15px;
        border: 1px solid #BBF0C7;
        background: #F0F9F4;
    }

    .size-selection-result-area {
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 23px;

        border-radius: 10px;
        border: 2px dashed #8AE6A2;
        background: #FFF;
    }

    .size-selection-result-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 21px;
    }

    .material-sample {
        position: relative;

        width: 42px;
        height: 60px;

        border-radius: 4px;
        border: 2px solid #99A1AF;
        background: #E5E7EB;
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px -1px rgba(0, 0, 0, 0.10);
    }

    .material-size {
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(0, -30%);

        width: fit-content;
        padding: 7px;

        color: #FFF;
        font-size: 10px;
        line-height: 1.4;

        border-radius: 15px;
        background: #34B559;
        box-shadow:
            0px 1px 3px 0px rgba(0, 0, 0, 0.10),
            0px 1px 2px -1px rgba(0, 0, 0, 0.10);
    }

    .material-description {
        color: #374151;
        font-size: 10px;
        line-height: 1.4;
    }

    .material-description .description-1,
    .material-description .description-2 {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
    }

    .material-description .description-1::before,
    .material-description .description-2::before {
        display: inline-block;
        content: "";

        width: 10px;
        height: 10px;

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .material-description .description-1::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved.svg);
    }

    .material-description .description-2:before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/ruler-purpur.svg);
    }

    .material-description .format {
        color: #229743;
    }
}

@media screen and (min-width: 570px) {
    .sizes-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 10px;

        margin: 0 auto;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/

    .size-selection-area {
        padding: 22px;
        margin: 0 auto 32px;

        border-radius: 15px;
        border: 1px solid var(--icon-color-default);

        background: #FFF;
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    }

    .size-selection-area-top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;

        max-width: 100%;
        margin: 0 auto 21px;
    }

    .size-selection-area-subtitle {
        margin-bottom: 29px;

        font-size: 15px;
        line-height: 1.6;
    }

    .size-selection-area-subtitle1:before {
        width: 18px;
        height: 18px;
    }

    .size-selection-area-subtitle2:before {
        width: 18px;
        height: 18px;
    }

    .size-selection-area-subtitle3 {
        margin-bottom: 35px;
    }

    .size-selection-area-subtitle3:before {
        width: 35px;
        height: 35px;

        background-size: 18px 18px;
    }

    .size-selection-area-top-left-side {}

    .sizes-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 10px;

        max-width: 100%;
        margin: 0;
    }

    .sizes-list-item {
        max-width: 100%;
    }

    .sizes-list-item label {

        padding: 10px;

        font-size: 12px;

        cursor: pointer;
    }

    .sizes-list-item label::after {
        margin-top: 9px;
    }

    .sizes-list-item label::before {
        display: inline-block;
        content: "";

        width: 28px;
        height: 28px;
        margin-bottom: 16px;
        border-radius: 50%;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/ruler-black.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 21px 21;
    }

    .sizes-list-item input:checked+label::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved-white.svg);
        background-color: #f39733;
    }

    .sizes-list-item input:checked+label {
        color: white;
        background-color: var(--accent-color);
    }

    .size-30x30 label::after {
        content: "30 × 30 см";
    }

    .size-50x50 label::after {
        content: "50 × 50 см";
    }

    .size-80x80 label::after {
        content: "80 × 80 см";
    }

    .size-100x100 label::after {
        content: "100 × 100 см";
    }

    .size-20x30 label::after {
        content: "20 × 30 см";
    }

    .size-40x60 label::after {
        content: "40 × 60 см";
    }

    .size-60x90 label::after {
        content: "60 × 90 см";
    }

    .size-selection-area-top-right-side {
        font-size: 12px;
    }

    .set-private-size {
        padding: 15px;

        border-radius: 15px;
        border: 1px solid #DDD6FE;
        background: #F5F3FF;
    }

    .size-inputs-block {
        gap: 10px;

    }

    .size-inputs-block label {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 7px;
    }

    .size-inputs-block input {
        max-width: 140px;

        padding: 9px 12px;

        border-radius: 9px;
        border: 1px solid #C4B5FD;
        background: #FFF;
    }

    .size-selection-area-bottom {
        max-width: 100%;
        padding: 22px;
        margin: 0;
    }

    .size-selection-result-area {
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 23px;

        border-radius: 10px;
        border: 2px dashed #8AE6A2;
        background: #FFF;
    }

    .size-selection-result-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 21px;
    }

    .material-sample {
        position: relative;

        width: 42px;
        height: 60px;

        border-radius: 4px;
        border: 2px solid #99A1AF;
        background: #E5E7EB;
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px -1px rgba(0, 0, 0, 0.10);
    }

    .material-size {
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(0, -30%);

        width: fit-content;
        padding: 7px;

        color: #FFF;
        font-size: 10px;
        line-height: 1.4;

        border-radius: 15px;
        background: #34B559;
        box-shadow:
            0px 1px 3px 0px rgba(0, 0, 0, 0.10),
            0px 1px 2px -1px rgba(0, 0, 0, 0.10);
    }

    .material-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .material-description .description-1,
    .material-description .description-2 {
        gap: 7px;
    }

    .material-description .description-1::before,
    .material-description .description-2::before {

        width: 14px;
        height: 14px;
    }

}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {
    .stage3-pseudo::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/print-set-green.svg);
    }

    .print-type-selection-area {
        padding: 0;
        margin: 0 auto;

        background: #FFF;
    }

    .print-type-options {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 7px;

        max-width: 450px;
        width: 100%;
        margin: 0 auto 10px;

        color: #4B5563;
        font-size: 10px;
        line-height: 1.73;
    }

    .print-type-options-item {
        width: 100%;
    }

    .print-type-options-item label {
        display: block;
        width: 100%;
        height: 100%;
    }

    .about-print-type-options-item {
        display: grid;
        grid-template-areas:
            "A B"
            "C C";
        grid-template-columns: 56px 1fr;
        gap: 10px;

        width: 100%;
        height: 100%;

        padding: 9px 9px 13px 13px;

        border-radius: 15px;
        border: 1px solid var(--icon-color-default);
        background: #FFF;

    }

    .right-subblock-wrapper {
        grid-area: B;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0;
    }

    .print-type-title {
        display: flex;
        align-items: center;
        justify-content: space-between;

        min-width: 100%;
        margin-bottom: 4px;

        color: #1F2937;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.47;
    }

    .material-advantage-mob p {
        margin-bottom: 7px
    }

    .material-advantage-mob .about-material-text {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 4px;
    }

    .about-material-span:before {
        display: inline-block;
        content: "";

        width: 5px;
        height: 5px;
        margin-right: 4px;

        border-radius: 50%;

        background-color: #99A1AF;
    }

    .work-speed {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 3px;

        width: 60px;
    }

    .work-speed::before {
        display: inline-block;
        content: "";

        width: 10px;
        height: 10px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/clock.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .decor {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .decor::after {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        border-radius: 50%;
        border: 2px solid #D1D5DB;

        background-color: #FFF;
    }

    .decor span {
        align-items: center;
        justify-content: center;
        gap: 3px;

        line-height: 1.4;
    }

    .decor span::before {
        display: inline-block;
        content: "";

        width: 10px;
        height: 10px;

        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .decor-selected-span {
        display: none;

        color: #229743;
    }

    .decor-select-span {
        display: flex;
    }

    .decor-selected-span::before {

        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved-green.svg);
    }

    .decor-select-span::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved-grey.svg);
    }

    .print-type-image-wrapper {
        grid-area: A;
        position: relative;

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

        width: 56px;
        height: 70px;

        border-radius: 5px;
        /* background: #F3F4F6; */
    }

    .print-type-image-1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 54px;

        border-radius: 2px;
        border: 2px solid #D1D5DB;
        background-color: #E5E7EB;

        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.10)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.10));

        overflow: hidden;
    }

    .print-type-image-1 img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .print-type-image-2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 54px;
        /* height: 68px; */

        border: 2px solid #1E2939;
        background-color: #E5E7EB;

        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.10)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.10));

        overflow: hidden;
    }

    .print-type-image-2 img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        position: center;
    }

    .print-type-image-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 54px;
        /* height: 68px; */

        border-radius: 2px;
        border: 2px solid #461F05;
        background-color: #E5E7EB;

        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.10)) drop-shadow(0 10px 15px rgba(0, 0, 0, 0.10));

        overflow: hidden;
    }

    .print-type-image-3 img {
        width: 100%;
        height: 100%;

        border: 4px solid #545175;

        object-fit: cover;
        position: center;
    }

    .image-container {
        position: relative;

        width: fit-content;

    }

    .print-type-image-4 {
        position: absolute;
        top: 50%;
        left: 12%;
        transform: translate(0, -50%);

        width: 50%;

        overflow: hidden;
    }

    .print-type-image-4 img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        position: center;
    }

    .print-type-image-5 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%);

        width: 40%;

        overflow: hidden;
    }

    .print-type-image-5 img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        position: center;
    }

    .additional-info-mob {
        display: none;

        grid-area: C;

        border-top: 1px solid #e5e7eb80;
    }

    .additional-info-mob li {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
    }

    .additional-info-mob li::before {
        display: inline-block;

        content: "";

        width: 10px;
        height: 10px;
        white-space: nowrap;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved-green.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .print-type-description-block-desktop {
        display: none;
    }

    .print-type-description {
        margin-bottom: 10px;

        color: var(--font-darker-color);
        font-size: 11px;
    }

    .print-type-price-status-1,
    .print-type-price-status-2,
    .print-type-price-status-3,
    .print-type-price-status-4,
    .print-type-price-status-5 {
        display: flex;
        align-items: center;
        justify-content: space-between;

        color: var(--font-title-color);
        font-size: 15px;
        line-height: 1.6;
    }

    .print-type-price-status-1::after,
    .print-type-price-status-2::after,
    .print-type-price-status-3::after,
    .print-type-price-status-4::after,
    .print-type-price-status-5::after {
        content: "Обрати";

        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.10);

        color: #0A0A0A;
        text-align: center;
        font-size: 12px;
        background: #FFF;
    }

    .print-type-options-item input:checked~label article {
        border: 2px solid #F07D00;
        background: linear-gradient(90deg, #FFF7ED 0%, #FFEDD4 100%);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
        transition: var(--transition-for-all);
    }

    .print-type-options-item input:checked~label article .additional-info-mob {
        display: block;
    }

    .print-type-options-item input:checked~label article .decor-selected-span {
        display: flex;
    }

    .print-type-options-item input:checked~label article .decor-select-span {
        display: none;
    }

    .print-type-options-item input:checked~label article .decor::after {
        border: none;
        background-color: transparent;
        background-image: url(https://art-photobest.com.ua/wp-content/assets/selected-point.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .selected-stuff-informer-mob {
        display: grid;
        grid-template-columns: max-content 1fr;
        align-items: center;
        gap: 10px;

        max-width: 450px;
        width: 100%;
        padding: 11px 11px 19px;
        margin: 0 auto;

        border-radius: 14px;
        border: 1px solid #BBF0C7;
        background: linear-gradient(90deg, #F0FDF4 0%, #F0F9FF 100%);
    }



    .selected-stuff-informer-mob::before {
        display: inline-block;
        content: "";

        width: 28px;
        height: 28px;

        border-radius: 50%;

        background-color: #34B559;
        background-image: url(https://art-photobest.com.ua/wp-content/assets/approved-white-2.svg);
        background-repeat: no-repeat;
        background-size: 14px 14px;
        background-position: center;
    }

    .stuff-name {
        color: #1F2937;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.44;
    }

    .delivery-price-block {
        display: flex;
        align-items: center;
        justify-content: space-between;

        color: #4B5563;
        font-size: 10px;
        line-height: 1.42;
    }

    .stuff-delivery {}

    .stuff-price {
        color: #229743;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.8;
    }

}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/

    .print-type-selection-area {
        max-width: 720px;

        padding: 22px;
        margin: 0 auto 25px;

        border-radius: 14px;
        border: 1px solid #E5E7EB;
        background: #FFF;
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.10),
            0 4px 6px -4px rgba(0, 0, 0, 0.10);
    }

    .print-type-options {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
        gap: 14px;

        max-width: 100%;
        margin: 0;
    }

    .print-type-options-item label {
        cursor: pointer;
    }

    .about-print-type-options-item {
        display: flex;
        flex-direction: column;
        height: 100%;

        padding: 15px;
    }

    .span-price-mob {
        display: none;
    }

    .print-type-title {
        margin-bottom: 0;

        font-size: 15px;
        font-weight: 400;
        line-height: 1.65;
    }

    .material-advantage-mob {
        display: none;
    }

    .print-type-options-item input:checked~label article .additional-info-mob {
        display: none;
    }

    .print-type-title::after {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/info-marker.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;

    }

    .print-type-image-wrapper {
        position: relative;

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

        width: 100%;
        height: 112px;
        margin-bottom: 0;

        border-radius: 10px;
        background: #F3F4F6;
    }

    .print-type-image-1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 54px;
        /* height: 68px; */

        border-radius: 2px;
        border: 2px solid #D1D5DB;
        background-color: #E5E7EB;

        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.10)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.10));

        overflow: hidden;
    }

    .print-type-image-1 img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .print-type-image-2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 54px;
        /* height: 68px; */

        border: 2px solid #1E2939;
        background-color: #E5E7EB;

        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.10)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.10));

        overflow: hidden;
    }

    .print-type-image-2 img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        position: center;
    }

    .print-type-image-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 54px;
        /* height: 68px; */

        border-radius: 2px;
        border: 2px solid #461F05;
        background-color: #E5E7EB;

        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.10)) drop-shadow(0 10px 15px rgba(0, 0, 0, 0.10));

        overflow: hidden;
    }

    .print-type-image-3 img {
        width: 100%;
        height: 100%;

        border: 4px solid #545175;

        object-fit: cover;
        position: center;
    }

    .image-container {
        position: relative;

        width: fit-content;

    }

    .print-type-image-4 {
        position: absolute;
        top: 50%;
        left: 12%;
        transform: translate(0, -50%);

        width: 50%;

        overflow: hidden;
    }

    .print-type-image-4 img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        position: center;
    }

    .print-type-image-5 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%);

        width: 40%;

        overflow: hidden;
    }

    .print-type-image-5 img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        position: center;
    }

    .additional-info-mob {
        display: none;
    }

    .print-type-description-block-desktop {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        justify-items: flex-start;
        flex-grow: 1;
        gap: 10px;

        min-height: 0;
    }

    .print-type-description {
        margin-bottom: 0;
        color: var(--font-darker-color);
        font-size: 11px;
    }

    .print-type-price-status-1,
    .print-type-price-status-2,
    .print-type-price-status-3,
    .print-type-price-status-4,
    .print-type-price-status-5 {
        display: flex;
        align-items: center;
        justify-content: space-between;

        color: var(--font-title-color);
        font-size: 15px;
        line-height: 1.6;
    }

    .print-type-price-status-1::after,
    .print-type-price-status-2::after,
    .print-type-price-status-3::after,
    .print-type-price-status-4::after,
    .print-type-price-status-5::after {
        content: "Обрати";

        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.10);

        color: #0A0A0A;
        text-align: center;
        font-size: 12px;
        background: #FFF;
    }

    .print-type-options-item input:checked~label article {
        border: 1px solid #2B7FFF;
        background: #EFF6FF;
        transition: var(--transition-for-all);
    }

    .print-type-options-item input:checked~label article .print-type-price-status-common::after {
        content: "Обрано";

        color: white;
        background: #F07D00;
    }

    .print-type-options-item input:checked~label article .print-type-image-wrapper {
        background: white;
    }

    .decor {
        display: none;
    }

    .selected-stuff-informer-mob {
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {
    .stage4-pseudo::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/filter-effects-green.svg);
    }

    .filter-selection-area {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 7px));
        gap: 14px;

        max-width: 720px;
        height: 100%;
        padding: 0;
        margin: 0 auto 26px;
    }

    .filter-selection-area-settings {
        color: #0A0A0A;
        font-size: 11px;
    }

    .filter-selection-area-settings-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;

        padding-top: 2px;
        margin-bottom: 18px;

    }

    .filter-selection-subtitle {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.75
    }

    .label-visible {
        display: none;
    }

    .filter-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;

        gap: 7px;

        margin-bottom: 11px;
    }

    .filter-options-item label {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 40px;
        padding: 4px;

        border-radius: 9px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        background: #FFF;

        text-align: center;
    }

    .filter-options-item input:checked+label {
        border-color: var(--accent-color);
        color: white;
        background-color: var(--accent-color);
        transition: background-color linear 500ms;
    }


    .manual-filter-settings-list {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;

        gap: 14px;

        margin-bottom: 45px;
    }

    .manual-filter-settings-list-item label {
        display: inline-block;

        margin-bottom: 7px;
    }

    .reset-filters-button {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.10);

        font-size: 12px;

        background: #FFF;
    }

    .filter-selection-area-preview {
        height: 100%;

        color: #4B5563;
        font-size: 11px;

        transition: var(--transition-for-all);
    }

    .filter-selection-result {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 36px;

        height: auto;
        padding: 10px;

        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        background: #F9FAFB;
    }

    .filter-selection-result .image-preview-wrapper {
        width: 100%;
        height: auto;
    }

    .filter-selection-text {
        margin-bottom: 7px;
    }

    .filters-current-settings-list {
        display: grid;
        grid-template-columns: max-content;
        grid-template-rows: auto;
        gap: 4;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/

    .filter-selection-area {
        grid-template-columns: repeat(2, calc(50% - 14px));
        gap: 28px;

        padding: 10px 22px 22px;
        margin: 0 auto 26px;

        border-radius: 14px;
        border: 1px solid #E5E7EB;
        background: #FFF;
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.10),
            0 4px 6px -4px rgba(0, 0, 0, 0.10);
    }

    .filter-selection-area-settings {
        font-size: 12px;
    }

    .filter-selection-area-settings-top {
        margin-bottom: 14px;
    }

    .filter-selection-subtitle {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6
    }

    .label-visible {
        display: inline-block;
    }

    .filter-options {

        margin-bottom: 21px;
    }

    .filter-options-item label {

        width: 100%;
        height: 40px;

        cursor: pointer;
    }

    .manual-filter-settings-list {

        margin-bottom: 25px;
    }

    .manual-filter-settings-list-item label {
        margin-bottom: 7px;
    }


    .filter-selection-area-preview {
        font-size: 12px;
    }

    .filter-selection-result {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        /* ============================================================= */
        gap: 36px;

        height: auto;
        padding: 15px;

        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        background: #F9FAFB;
    }

    .filter-selection-result .image-preview-wrapper {
        width: 100%;
        height: auto;
    }

    .filter-selection-text {
        margin-bottom: 7px;
    }

    .filters-current-settings-list {
        display: grid;
        grid-template-columns: max-content;
        grid-template-rows: auto;
        gap: 4;
    }
}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {
    .stage5-pseudo::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/typographic-green.svg);
    }

    .typographic-selection-area {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;

        max-width: 720px;
        margin: 0 auto 20px;
    }

    .text-settings-area {}

    .text-settings-title {
        margin-bottom: 8px;

        font-size: 12px;
        font-weight: 600;
        line-height: 1.75;
    }

    .add-text-block {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;

        margin-bottom: 31px;
    }

    .text-settings-area textarea {
        width: 100%;
        height: 76px;

        padding: 8px 12px;

        border: none;
        border-radius: 8px;
        line-height: 1.45;
        background: #F8FAFC;
        resize: none;
    }

    .add-text-button {
        display: flex;
        padding: 7px 10px;
        justify-content: center;
        align-items: center;
        gap: 14px;

        border: none;
        border-radius: 8px;
        color: white;
        background: var(--accent-color);
    }

    .add-text-button::before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/plus.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .upload-font-block {
        margin-bottom: 14px;
    }

    .upload-font-button-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 7px;
    }

    .upload-font-button {
        display: flex;
        padding: 7px 11px;
        justify-content: center;
        align-items: center;

        gap: 14px;

        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.10);

        font-size: 12px;
        line-height: 1.5;
        white-space: nowrap;
        background: #FFF;
    }

    .upload-font-button::before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/upload-black.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .font-requirements {
        color: #6B7280;
        font-size: 11px;
    }

    .text-elements-list {
        border-radius: 16px;
        border: 1px solid #E0E0E0;
        background: #F9FAFB;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

    .text-elements-list-item {
        padding: 15px;
    }

    .text-elements-title {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;

        margin-bottom: 17px;

        font-size: 15px;
        font-weight: 600;
        line-height: 1.56;
    }

    .text-elements-title::before {
        display: inline-block;
        content: "";

        width: 20px;
        height: 20px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/typographic-black.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .edit-text-block {
        margin-bottom: 25px;
    }

    .edit-text-block label {
        display: inline-block;

        margin-bottom: 7px;

        line-height: 1.4;
    }

    .edited-text-wrapper {
        position: relative;
    }

    .edit-text-block input {
        width: 100%;
        height: 40px;
        padding: 9px 30px 9px 9px;

        border-radius: 6px;
        border: 1px solid #E0E0E0;
        background: #FFF;
    }

    .delete-text-button {
        position: absolute;
        top: 50%;
        right: 11px;

        transform: translate(0, -50%);

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

        width: 16px;
        height: 16px;

        border: none;
        background-color: transparent;
    }

    .delete-text-button svg {
        width: 16px;
        height: 16px;
    }

    .font-size-block {
        margin-bottom: 24px;
    }

    .font-size-block label {
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-bottom: 7px;
    }

    .font-colors-list-label {
        margin-bottom: 8px;
    }

    .font-colors-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
        column-gap: 30px;
        row-gap: 15px;

        margin-bottom: 26px;
    }

    .font-colors-list-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .font-colors-list-item label {
        display: block;

        width: 35px;
        height: 35px;

        border-radius: 4px;
        border: 2px solid #E0E0E0;

        cursor: pointer;
        transition: var(--transition-for-all);
    }

    .font-colors-list-item input:checked+label {
        transform: scale(1.105);
        border-color: var(--accent-color);
    }

    .font-color-1 {
        background-color: #282C34;
    }

    .font-color-2 {
        background-color: #1976D2;
    }

    .font-color-3 {
        background-color: #D32F2F;
    }

    .font-color-4 {
        background-color: #388E3C;
    }

    .font-color-5 {
        background-color: #7B1FA2;
    }

    .font-color-6 {
        background-color: #F57C00;
    }

    .font-color-7 {
        background-color: #FFF200;
    }

    .font-color-8 {
        background-color: #05E274;
    }

    .font-color-9 {
        background-color: #E91E63;
    }

    .font-color-10 {
        background-color: #FFFFFF;
    }

    .text-positionX-block {
        margin-bottom: 22px;
    }

    .text-positionX-block label {
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-bottom: 8px;
    }

    .text-positionY-block {
        margin-bottom: 22px;
    }

    .text-positionY-block label {
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-bottom: 8px;
    }

    .font-style-label {
        margin-bottom: 17px;

        line-height: 1.4;
    }

    .font-styles-list {
        display: grid;
        grid-template-columns: 1fr max-content;
        grid-template-rows: auto;
        row-gap: 8px;
        column-gap: 14px;
    }

    .font-styles-list-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .text-preview-area {}

    .text-preview-area-title {
        margin-bottom: 12px;

        color: #1E7A37;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.75;

        text-align: center;
    }

    .image-text-preview-wrapper {
        color: #4F504B;
        font-size: 12px;
        line-height: 1;

        text-align: center;

        margin-bottom: 22px;
    }

    .image-text-preview-wrapper .image-preview-wrapper {
        margin-bottom: 10px;
    }

    .image-text-preview-wrapper .image-preview-wrapper img {
        pointer-events: none;
        -webkit-user-drag: none;
        -webkit-user-drag: none;
        -moz-user-drag: none;
        user-select: none;
    }

    .default-text-settings {
        position: absolute;
        z-index: 1;
        color: #4F504B;
        line-height: 1;
        cursor: move;
        user-select: none;
        /* white-space: nowrap; */
        display: block;
        pointer-events: auto;
    }

    .current-font-settings {
        padding: 10px;

        border-radius: 8px;
        background: rgba(245, 245, 245, 0.50);
    }

    .current-font-settings p {
        margin-bottom: 8px;
    }

    .current-font-settings-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;

        row-gap: 7px;
        column-gap: 25px;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/

    .typographic-selection-area {
        grid-template-columns: 1fr 1fr;
        gap: 28px;

        padding: 10px 22px 22px;
        margin: 0 auto 20px;

        color: #282C34;
        border-radius: 14px;
        border: 1px solid #E5E7EB;
        background: #FFF;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    }

    .text-settings-area {}

    .text-settings-title {
        margin-bottom: 14px;

        font-size: 13px;
        font-weight: 400;
        line-height: 1.63;
    }

    .add-text-block {
        gap: 7px;

        margin-bottom: 21px;
    }

    .text-settings-area textarea {
        line-height: 1.25;
    }

    .upload-font-block {
        margin-bottom: 21px;
    }

    .upload-font-button::before {
        width: 15px;
        height: 15px;
    }

    .text-elements-list-item {
        padding: 25px;
    }

    .text-elements-title {
        gap: 8px;

        margin-bottom: 27px;

        font-size: 18px;
        font-weight: 400;
    }

    .text-elements-title::before {
        display: inline-block;
        content: "";

        width: 15px;
        height: 15px;
    }

    .edit-text-block {
        margin-bottom: 30px;
    }

    .edit-text-block label {
        margin-bottom: 9px;
    }

    .edit-text-block input {
        padding: 12px 30px 12px 12px;
    }

    .font-size-block label {
        margin-bottom: 12px;
    }

    .font-colors-list-label {
        margin-bottom: 14px;
    }

    .font-colors-list {
        grid-template-columns: repeat(auto-fit, minmax(19px, 1fr));

        column-gap: 40px;
        row-gap: 6px;

        margin-bottom: 56px;
    }

    .font-colors-list-item label {
        width: 18px;
        height: 18px;
    }

    .font-colors-list-item label:hover,
    .font-colors-list-item input:checked+label {
        transform: scale(1.105);
        border-color: var(--accent-color);
    }

    .text-positionX-block {
        margin-bottom: 25px;
    }

    .text-positionX-block label {
        margin-bottom: 12px;
    }

    .text-positionY-block {
        margin-bottom: 25px;
    }

    .text-positionY-block label {
        margin-bottom: 12px;
    }

    .font-style-label {
        margin-bottom: 17px;

        line-height: 1.4;
    }


    .text-preview-area {}

    .text-preview-area-title {
        margin-bottom: 17px;

        color: #1E7A37;
        font-size: 17px;
        font-weight: 700;
        line-height: 1.43;
    }

    .image-text-preview-wrapper {
        padding: 15px 15px 12px;
        margin-bottom: 28px;

        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        font-size: 14px;
        /* text-align: left; */

        background: #F9FAFB;
    }

    .image-text-preview-wrapper .image-preview-wrapper {
        margin-bottom: 31px;
    }

    .current-font-settings {
        padding: 16px;
    }

    .current-font-settings-list {
        grid-template-columns: max-content;

        gap: 7px;
    }
}

@media screen and (min-width: 1025px) {

    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {
    .stage6-pseudo::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/shield-green.svg);
    }

    .add-cover-area {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;

        max-width: 720px;
    }

    .add-cover-description {
        color: #0A0A0A;
        font-size: 11px;
    }

    .price-block {
        padding: 19px 16px 22px;
        margin-bottom: 20px;

        border-radius: 14.5px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        background: #F9FAFB;
    }

    .price-block label {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        margin-bottom: 9px;
        font-size: 14px;
        line-height: 1.7;
    }

    .price-block label::before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        margin-right: 9px;

        border-radius: 4px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        background: #F8FAFC;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

    .price-block input:checked+label::before {
        border-color: var(--accent-color);
        background-color: var(--accent-color);
        background-image: url(https://art-photobest.com.ua/wp-content/assets/check-marker.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 90% 90%;
    }

    .price-block label::after {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;
        margin-left: 22px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/info-marker.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .price-block-text {
        padding-left: 25px;

        color: #4B5563;
        font-size: 11px;
    }

    .price-block-text p+p {
        margin-top: 18px;
    }

    .price-block-text span {
        color: #229743;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.54;
    }

    .advantage-title {
        margin-bottom: 12px;

        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
    }

    .advantage-list {
        display: grid;
        grid-template-columns: 100%;
        gap: 22px;

        font-size: 11px;
    }

    .advantage-list-item {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .advantage-list-item::before {
        display: inline-block;
        content: "";

        min-width: 28px;
        min-height: 28px;

        border-radius: 50%;
        background: #DBEAFE;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 14px 14px;
    }

    .advantage-1::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/shield-blue.svg);
    }

    .advantage-2::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/water-resistance-blue.svg);
    }

    .advantage-3::before {
        background-image: url(https://art-photobest.com.ua/wp-content/assets/uv-protection-blue.svg);
    }

    .add-cover-preview {
        color: #4B5563;
        font-size: 10px;
    }

    .comparison-title {
        margin-bottom: 10px;
        color: #0A0A0A;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
    }

    .image-compare-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 10px;

        padding: 10px;
        margin-bottom: 20px;

        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        background: #F9FAFB;
    }

    .left-side-wrapper,
    .right-side-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .left-side-wrapper .image-wrapper,
    .right-side-wrapper .image-wrapper {
        position: relative;

        width: 100%;
        height: auto;

        margin-bottom: 8px;

        border-radius: 10px;
        border: 2px solid #E5E7EB;
        background-color: lightgray;

        overflow: hidden;
    }

    .right-side-wrapper .cover {
        position: relative;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .left-side-wrapper .without-cover::after {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;

        display: inline-block;

        content: "";

        width: 100%;
        height: 100%;

        background-color: #fff;

        opacity: 0.2;
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .right-side-wrapper p,
    .left-side-wrapper p {
        text-align: center;
    }

    .recomendations-block {
        padding: 15px;

        border-radius: 15px;
        border: 1px solid #BBF0C7;
        background: #F0F9F4;
    }

    .recomendations-title {
        margin-bottom: 25px;

        color: #016630;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.6;

        text-align: center;
    }

    .recomendations-list {
        display: grid;
        grid-template-columns: max-content;
        grid-template-rows: auto;
        gap: 12px;

        color: #1E7A37;
        font-size: 11;
        line-height: 1.56;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/

    .add-cover-area {
        grid-template-columns: 1fr 1fr;

        gap: 32px;

        padding: 22px;
        margin: 0 auto 26px;

        border-radius: 15px;
        border: 1px solid #E5E7EB;
        background: #FFF;
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.10),
            0 4px 6px -4px rgba(0, 0, 0, 0.10);
    }

    .add-cover-description {
        font-size: 12px;
    }

    .price-block {
        padding: 22px 22px 25px;
        margin-bottom: 21px;
    }

    .price-block label {
        font-size: 15px;
        line-height: 1.67;

        cursor: pointer;
    }

    .price-block label::before {
        margin-right: 14px;
    }


    .price-block label::after {
        margin-left: 7px;
    }

    .price-block-text {
        padding-left: 30px;

        font-size: 12px;
    }

    .price-block-text p+p {
        margin-top: 21px;
    }

    .price-block-text span {
        color: #229743;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.65;
    }

    .advantage-title {
        margin-bottom: 14px;

        font-weight: 400;
    }

    .advantage-list {
        grid-template-columns: 240px;
        gap: 16px;

        font-size: 13px;
    }

    .add-cover-preview {
        font-size: 12px;
    }

    .comparison-title {
        margin-bottom: 14px;
        font-weight: 400;
    }

    .image-compare-block {
        gap: 17px;

        padding: 17px;
        margin-bottom: 14px;
    }


    .left-side-wrapper .image-wrapper,
    .right-side-wrapper .image-wrapper {
        margin-bottom: 9px;
    }

    .recomendations-title {
        margin-bottom: 28px;

        text-align: left;
    }

    .recomendations-list {
        gap: 4px;
    }
}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {

    .form-navigator-block {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;

        gap: 10px;

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

        width: 100%;

        padding: 20px 28px;

        border-top: 1px solid var(--icon-color-default);
        background: linear-gradient(90deg, rgba(240, 253, 244, 0.00) 0%, rgba(240, 253, 244, 0.95) 50%, rgba(240, 249, 255, 0.95) 100%);
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
        backdrop-filter: blur(4px);
    }

    .bottom-price-informer-mob {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;

        padding-right: 20px;

        color: #4B5563;
        font-size: 12px;
    }

    .bottom-price-informer-mob span {
        color: #F07D00;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.57;
    }

    .form-navigator-button-back {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 9px 12px;

        border-radius: 8.5px;
        border: 2px solid #D1D5DB;
        color: var(--font-dark-color);
        background: #FFF;
    }

    .form-navigator-button-back::before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;
        background-image: url(https://art-photobest.com.ua/wp-content/assets/arrow-back.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .form-navigator-informer {
        display: none;
    }

    .form-navigator-button-forward {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 9px 11px;

        border-radius: 9px;
        border: none;
        color: #FFF;
        font-size: 12px;
        border: 2px solid var(--accent-color);
        background: var(--accent-color);
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    }

    .form-navigator-button-forward::after {
        display: inline-block;
        content: "";
        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/arrow-forward.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/
    .form-navigator-block {
        position: static;

        padding: 22px 0 0;

        backdrop-filter: none;
        background: none;
        box-shadow: none;
    }

    .bottom-price-informer-mob {
        display: none;
    }

    .form-navigator-button-back {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 9px 12px;

        border-radius: 8.5px;
        border: 2px solid #D1D5DB;
        opacity: 0.5;
        background: #FFF;
    }

    .form-navigator-button-back::before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;
        background-image: url(https://art-photobest.com.ua/wp-content/assets/arrow-back.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .form-navigator-informer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 7px 14px;

        color: var(--font-light-color);
        font-size: 12px;

        border-radius: 33554400px;
        background: #F3F4F6;
    }

    .form-navigator-informer span {
        padding: 5px 8px;

        border-radius: 3.5px;
        border: 1px solid #D1D5DB;
        background: #FFF;
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px -1px rgba(0, 0, 0, 0.10);
    }

    .form-navigator-button-forward {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 9px 11px;

        border-radius: 9px;
        border: none;
        color: #FFF;
        font-size: 12px;
        background: var(--accent-color);
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    }

    .form-navigator-button-forward::after {
        display: inline-block;
        content: "";
        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/arrow-forward.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}

@media screen and (min-width: 1025px) {

    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}
@media screen and (min-width: 320px) {
    .final-view {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        color: #229743;
        font-size: 21px;
        line-height: 1.34;
    }

    .final-view::before {
        display: inline-block;
        content: "";

        width: 21px;
        height: 21px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/eye-green.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .final-description {
        text-align: center;
        font-size: 13px;
        line-height: 1.6;
    }

    .summary-block {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;

        width: 100%;
    }

    .summary-block-image-part {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;

        gap: 42px;

        overflow: visible;
    }

    .summary-block-image-part .buttons-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;

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

        gap: 11px;

        width: 100%;
        padding: 15px 32px 12px;

        border-bottom: 1px solid #E5E7EB;
        background: linear-gradient(90deg, rgba(240, 253, 244, 0.00) 0%, rgba(240, 253, 244, 0.95) 50%, rgba(240, 249, 255, 0.95) 100%);
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
        backdrop-filter: blur(4px);
    }

    /* .bottom-price-informer-mob {
           Styles in _form-navigator
    } */

    .summary-block-image-part .buttons-wrapper button {
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 9px;
        font-size: 12px;
    }

    .summary-block-image-part .buttons-wrapper button[type="button"] {

        color: #000;

        border-radius: 8px;
        border: 2px solid #D1D5DB;
        background: #FFF;
    }

    .summary-block-image-part .buttons-wrapper button[type="button"]:before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/arrow-back.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .summary-block-image-part .buttons-wrapper button[type="button"]::after {
        content: "Назад";

        color: inherit;
    }

    .summary-block-image-part .buttons-wrapper button[type="submit"] {

        color: white;

        border-radius: 8px;
        background-color: var(--accent-color);
        border: 2px solid var(--accent-color);
    }

    .summary-block-image-part .buttons-wrapper button[type="submit"]::before {
        display: inline-block;
        content: "";

        width: 14px;
        height: 14px;
        margin-right: 7px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/trash-white.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .summary-block-image-part .buttons-wrapper button[type="submit"]::after {
        content: "До кошика";
        /* Додати у кошик */
        color: inherit;
    }

    .summary-block-image-part .image-preview-wrapper {
        width: 100%;

        border-radius: 10px;
        border: 2px solid #D1D5DC;
    }

    .summary-block-image-part .image-preview-wrapper p {
        position: absolute;
        top: 10%;
        left: 10%;
    }

    .summary-block-text-part {
        padding: 20px 25px 17px;

        border-radius: 10px;
        border: 1px solid #D1D5DC;
    }

    .summary-title {
        margin-bottom: 26px;

        color: #229743;
        font-size: 17px;
        font-weight: 700;
        line-height: 1.43;
    }

    .summary-title::before {
        display: inline-block;
        content: "";

        width: 17px;
        height: 17px;
        margin-right: 7px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/trash-green.svg);
    }

    .summary-list {
        display: grid;
        grid-template-columns: max-content;
        grid-template-rows: auto;
        gap: 12px;

        margin-bottom: 43px;

        color: #4B5563;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.6;
    }

    .summary-list-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        gap: 12px;
    }

    .summary-list-item::before {
        display: inline-block;
        content: "";

        width: 19px;
        height: 19px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/list-marker.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .summary-table {
        width: 100%;

        color: #000;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.54;
    }

    .summary-table th {
        width: 100%;

        font-weight: 500;
        text-align: left;
    }

    .summary-table td {
        text-align: right;
    }

    .summary-table tbody tr:first-child th,
    .summary-table tbody tr:first-child td {
        padding-top: 43px;
        padding-bottom: 8px;

        border-top: 1px solid #E5E5E5;
    }

    .summary-table tbody tr:last-child th,
    .summary-table tbody tr:last-child td {
        padding-bottom: 16px;
        border-bottom: 1px solid #E5E5E5;
    }

    .summary-table tfoot th,
    .summary-table tfoot td {
        padding-top: 5px;

        color: #00A63E;
        font-weight: 700;
        line-height: 1.5;
    }
}

@media screen and (min-width: 810px) {

    /* Починаю використовувати десктоп верстку для форми*/

    .summary-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 25px;

        max-width: 972px;
    }

    .summary-block-image-part {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;

        gap: 42px;

        overflow: visible;
    }

    .summary-block-image-part .buttons-wrapper {
        position: static;

        justify-content: space-between;

        gap: 5px;

        padding: 0;

        border-bottom: none;
        background: none;
        box-shadow: none;
        backdrop-filter: none;

    }

    .bottom-price-informer-mob {
        display: none;
    }


    .summary-block-image-part .buttons-wrapper button[type="button"] {
        width: 210px;
        height: 49px;

        color: #000;

        border: 1px solid #D1D5DC;
        background: #FFF;
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.10),
            0 4px 6px -4px rgba(107, 114, 128, 0.10);
    }

    .summary-block-image-part .buttons-wrapper button[type="button"]:before {
        display: inline-block;
        content: "";

        width: 21px;
        height: 21px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/arrow-back-grey.svg);
    }

    .summary-block-image-part .buttons-wrapper button[type="button"]:after {
        content: "Назад до редагування";

        color: inherit;
    }

    .summary-block-image-part .buttons-wrapper button[type="submit"] {
        min-width: 210px;
        height: 49px;

        border-radius: 8px;
        background: #00A63E;
        border: 1px solid #00A63E;
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.10),
            0 4px 6px -4px rgba(0, 0, 0, 0.10);
    }

    .summary-block-image-part .buttons-wrapper button[type="submit"]::before {

        margin-right: 4px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/trash-white.svg);
    }

    .summary-block-image-part .buttons-wrapper button[type="submit"]::after {
        content: "Додати у кошик";
        /* Додати у кошик */
        color: inherit;
    }

    .summary-block-image-part .image-preview-wrapper {
        border-radius: 10px;
        border: 2px solid #D1D5DC;
    }

    .summary-block-image-part .image-preview-wrapper p {
        position: absolute;
        top: 10%;
        left: 10%;
    }

    .summary-block-text-part {
        padding: 20px 25px 17px;

        border-radius: 10px;
        border: 1px solid #D1D5DC;
    }

    .summary-title {
        margin-bottom: 26px;

        color: #229743;
        font-size: 17px;
        font-weight: 700;
        line-height: 1.43;
    }

    .summary-title::before {
        display: inline-block;
        content: "";

        width: 17px;
        height: 17px;
        margin-right: 7px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/trash-green.svg);
    }

    .summary-list {
        display: grid;
        grid-template-columns: max-content;
        grid-template-rows: auto;
        gap: 12px;

        margin-bottom: 43px;

        color: #4B5563;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.6;
    }

    .summary-list-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        gap: 12px;
    }

    .summary-list-item::before {
        display: inline-block;
        content: "";

        width: 19px;
        height: 19px;

        background-image: url(https://art-photobest.com.ua/wp-content/assets/list-marker.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .summary-table {
        width: 100%;

        color: #000;
        font-size: 11px;
        font-weight: 500;
        line-height: 1.54;
    }

    .summary-table th {
        width: 100%;

        font-weight: 500;
        text-align: left;
    }

    .summary-table td {
        text-align: right;
    }

    .summary-table tbody tr:first-child th,
    .summary-table tbody tr:first-child td {
        padding-top: 43px;
        padding-bottom: 8px;

        border-top: 1px solid #E5E5E5;
    }

    .summary-table tbody tr:last-child th,
    .summary-table tbody tr:last-child td {
        padding-bottom: 16px;
        border-bottom: 1px solid #E5E5E5;
    }

    .summary-table tfoot th,
    .summary-table tfoot td {
        padding-top: 5px;

        color: #00A63E;
        font-weight: 700;
        line-height: 1.5;
    }
}

@media screen and (min-width: 1025px) {
    /* Починаю використовувати десктоп верстку для навігатора сторінки*/
}