.stickers-calculator {
    background-color: var(--gray-3);
    padding: 20px;
    border-radius: 8px;
    width: 100%;

    .stickers-container {
        display: flex;
        align-items: start;
        gap: 24px;
    }

    .stickers-image {
        width: 30%;
    }

    .flr {
        width: 100%;
    }

    h1 {
        margin: 0 0 16px 0; 
    }

    .mrb15 {
        margin-bottom: 15px;
    }

    .lh45 {
        line-height: 45px;
    }

    .mrt15 {
        margin-top: 15px;
    }

    .w150 {
        width: 150px;
    }

    .lhnorm {
        line-height: normal !important;
    }

    .subtxt {
        font-size: 0.8em;
        color: var(--gray-1);
        line-height: normal;
    }

    .clRed {
        color: var(--red);
        display: flex;
        align-items: center;
        gap: 4px;

        & .fa::before {
            vertical-align: -3px; 
        }
    }

    .plink2 {
        color: var(--orange-1);
    }

    .kp-button--green:disabled, .kp-button--green:disabled:hover {
        background-color: var(--gray);
        border-color: var(--gray);
        color: #ffffff !important;
        outline: none !important;
    }

    input[type='number'], select {
        border-radius: 8px;
        border: 1px solid var(--gray-2);
        padding: 10px;
        height: auto;
    }

    .slider {
        position: relative;
        width: 100%;
        height: auto;
        margin: 10px 0 20px;
        padding: 0;
    }

    .slider > input[type='range'],
    .slider input#qtt {
        display: block;
        width: 100%;
        max-width: 100%;
        position: static;
        height: 20px;
        margin: 0;
        -webkit-appearance: auto;
        appearance: auto;
        accent-color: var(--green-3);
        background: transparent;
        cursor: pointer;
    }
}

.preview-buttons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
.checkbox-container input[type="checkbox"] {
    width:16px;
    min-width: 16px;
    height:16px;
    margin-right: 4px;
    &::before {
    mask-size: 10px;
    -webkit-mask-size: 10px;
    }
}

.disigner-footer {
  margin: 30px 15px 0 370px;
  @media (max-width: 1024px) {
    margin: 0;
  }
}

.mrr15 {
  margin-right: 15px;
}

.mrb10 {
  margin-bottom: 10px;
}

.mrb20 {
  margin-bottom: 20px;
}

.mrl10 {
  margin-left: 10px;
}

.inl {
  display: inline-block;
  vertical-align: top;
}

.w400 {
  width: 400px;
}

.flr {
  float: right;
}

.clRed {
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;

  & .fa::before {
      vertical-align: -3px; 
  }
}

select.service-variants {
  border-radius: 8px;
  border: 1px solid var(--gray-2);
  padding: 10px;
  height: auto;
}

@media (max-width: 1023px) {
    .stickers-calculator {
        padding: 12px;

        .stickers-image {
            display: none;
        }

        .w150 {
            width: auto;
        }

        .area_count {
            margin-left: 4px;
        }

        .slider > input[type='range'] {
            width: 100%; 
            min-height: 44px;
        }
    }
}