#coupons.coupons {
    margin-top: 32px;
    margin-bottom: 32px;
}

#coupons .coupons__title {
    margin-bottom: 32px;
    text-align: center;
    font-size: 24px;
}

#coupons .coupons__title.coupons__title-animate {
    -webkit-animation: 1.5s infinite scaleCoupon linear;
    animation: 1.5s infinite scaleCoupon linear;
}

#coupons .coupons__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 32px;
}

@media not all and (min-width: 640px) {

    #coupons .coupons__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.coupon {
    --card-w: 100px;
    --card-h: 51.9682px;
    margin: 0px;
    height: calc(var(--card-h) * 1.5);
    width: calc(var(--card-w) * 1.5);
    border-style: none;
    padding: 0px;

    -webkit-box-shadow: none;

    box-shadow: none;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    background: transparent;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    /* letter-spacing: 1px; */
}

.flip,
.unflip {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.unflip {
    font-size: 33px;
    letter-spacing: -0.05em;
}

.inner-coupon-backface {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    background: url("../img/coupon.svg") no-repeat center;
    -webkit-transform: rotateX(0) rotateY(0deg) scale(1) translateZ(-4px);
    transform: rotateX(0) rotateY(0deg) scale(1) translateZ(-4px);
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    will-change: transform, filter;
}

.inner-coupon-backface-selected {
    background: url("../img/coupon-red.svg") no-repeat center;
}

.coupon.flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.coupon .flip-inner-coupon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.coupon .inner-coupon {
    font-size: 2rem;
    color: white;
    padding: 1rem 2rem;
    line-height: 3rem;
    will-change: transform, filter;
    float: none;
    background: url("../img/coupon.svg") no-repeat center;
    /* background-size: calc(100% + 6px) auto; */
    /* background-position: -3px -3px; */
    margin: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    height: auto;
    border-radius: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    display: block;
    margin: 0px auto;
    -webkit-transform: rotateX(0deg) rotateY(0deg) scale(1);
    transform: rotateX(0deg) rotateY(0deg) scale(1);
    top: 0;
    height: 100%;
    -webkit-filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
    font-weight: 500;
    -webkit-perspective-origin: 0 0;
    perspective-origin: 0 0;
    letter-spacing: 0;
}

.coupon .glare {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    pointer-events: none;
    height: 100%;
    border-radius: 14px;
    z-index: 9999;
    mix-blend-mode: hard-light;
    background: radial-gradient(circle at 50% 50%, rgb(199 198 243), transparent);
    opacity: 0;
}

.coupon.animated .glare {
    opacity: 0.3;
}

@-webkit-keyframes scaleCoupon {

    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes scaleCoupon {

    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

html {
    scroll-behavior: smooth !important;
}

#order .shadow {
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

#ribbon path {
    fill: var(--ribbon-color);
}

#ribbon rect {
    fill: var(--ribbon-dark-color);
}

#order .order {
    --background-color: #075985;
    --border-radius: 32px;
    --form-radius: calc(var(--border-radius) / 4);
    --font-size: 18px;
    --ribbon-size: 150px;
    --ribbon-color: rgb(175, 0, 0);
    --ribbon-dark-color: rgb(125, 0, 0);
    --grad-from: #909090;
    --grad-to: #075985;
    --grad-direction: to bottom right;
    --form-gap: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 40px 0;
    border-radius: var(--border-radius);
    padding: 24px;
    background-color: #fff;
    gap: 32px 32px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#order .order__left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 min(40%, 210px);
    flex: 1 1 min(40%, 210px);
    border-radius: var(--border-radius);
    padding: 8px;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--grad-direction)), color-stop(var(--grad-from)), to(var(--grad-to)));
    background: linear-gradient(var(--grad-direction), var(--grad-from), var(--grad-to));
    background-color: var(--background-color);
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

#order .order__inner {
    position: absolute;
    left: -17px;
    top: -17px;
    width: var(--ribbon-size);
    height: var(--ribbon-size);
}

#order .order__ribbon {
    width: 100%;
    height: 100%;
}

#order .order__discount {
    position: absolute;
    left: 40%;
    top: 40%;
    margin: 0;
    width: auto;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    color: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

#order .order__product {
    display: block;
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: auto;
    max-width: 100%;
    max-height: 450px;
    -o-object-fit: contain;
    object-fit: contain;
}

#order .order__right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 min(50%, 260px);
    flex: 1 1 min(50%, 260px);
    -ms-flex-item-align: center;
    align-self: center;
    /*  min-width: 260px;*/
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

#order .order__prices {
    margin: 0;
    margin-bottom: var(--form-gap);
    border-bottom: 1px solid #d5d5d5;
    padding: 0;
    padding-bottom: var(--form-gap);
}

#order .order__form {
    margin-bottom: var(--form-gap);
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: var(--form-gap);
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

#order .order__prod-left {
    margin: 0;
    padding: 0;
}

#order .prod-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(var(--font-size) - 2px);
    text-align: center;
}

#order .prod-left__text {
    margin-right: 6px;
}

#order .prod-left__pad {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 5px;
    padding: 8px 8px 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1;
    color: #fff;
    background-color: var(--background-color);
}

#order .prod-left__pad b {
    -webkit-animation: 1s ease-in-out infinite blink;
    animation: 1s ease-in-out infinite blink;
}

#order .prod-left__pad--low {
    color: #fff;
    background-color: #b51111;
}

#order .form {
    width: 100%;
    font-family: inherit;
}

#order .form__group {
    position: relative;
    margin-bottom: calc(var(--form-gap) / 2);
    padding: var(--form-gap) 0 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
}

#order .form__group:last-of-type {
    margin-bottom: calc(var(--form-gap) * 1.5);
}

#order .form__field {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    display: block;
    border: 1px solid var(--background-color);
    border-radius: var(--form-radius);
    padding: 8px 16px;
    width: 100%;
    font-family: inherit;
    font-size: var(--font-size);
    line-height: 1;
    text-align: left;
    outline: none;
}

#order .form__field::-moz-placeholder {
    color: transparent;
}

#order .form__field:-ms-input-placeholder {
    color: transparent;
}

#order .form__field::-webkit-input-placeholder {
    color: transparent;
}

#order .form__field::-ms-input-placeholder {
    color: transparent;
}

#order .form__field::placeholder {
    color: transparent;
}

#order .form__field:-moz-placeholder-shown~.form__label {
    top: calc(var(--form-gap) * 1.5);
    left: 1rem;
    font-size: var(--font-size);
    color: rgba(0, 0, 0, 0.5);
    cursor: text;
}

#order .form__field:-ms-input-placeholder~.form__label {
    top: calc(var(--form-gap) * 1.5);
    left: 1rem;
    font-size: var(--font-size);
    color: rgba(0, 0, 0, 0.5);
    cursor: text;
}

#order .form__field:placeholder-shown~.form__label {
    top: calc(var(--form-gap) * 1.5);
    left: 1rem;
    font-size: var(--font-size);
    color: rgba(0, 0, 0, 0.5);
    cursor: text;
}

#order .form__field:focus~.form__label {
    position: absolute;
    top: 0;
    left: 0.5rem;
    display: block;
    font-size: 0.8rem;
    color: #333;
}

#order .form__field:required,
#order .form__field:invalid {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#order .form__label {
    position: absolute;
    top: 0;
    left: 0.5rem;
    display: block;
    font-family: inherit;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-weight: 700;
    font-size: 0.8rem;
    color: #333;
}

#order .form__label>span {
    color: var(--grad-to);
}

#order .form__btn {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    display: block;
    margin-right: auto;
    margin-left: auto;
    border-radius: var(--form-radius);
    padding: 10px 16px;
    width: 100%;
    max-width: 320px;
    font-weight: 700;
    font-size: var(--font-size);
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--background-color);
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition-property: color, background-color, border-color;
    transition-property: color, background-color, border-color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

#order .form__btn:hover,
#order .form__btn:focus {
    color: var(--background-color);
    background-color: #fff;
    border-color: currentColor;
}

#order .prices {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
}

#order .prices__column {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
}

#order .prices__column.old {
    opacity: 0.7;
}

#order .prices__title {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    margin: 0;
    margin-bottom: 4px;
    padding: 0;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
}

#order .prices__price {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    margin: 0;
    margin-top: auto;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}

#order .prices__price--new {
    font-weight: 700;
    font-size: 28px;
    color: #b51111;
    -webkit-transform: translatey(3px);
    transform: translatey(3px);
}

#order .prices__price--old {
    font-size: 24px;
}

#order .prices__price--old>span {
    text-decoration: line-through;
    text-decoration-color: #b61717;
    text-decoration-thickness: 3px;
}

@media screen and (min-width: 576px) {
    #order .prices__price--new {
        font-size: 34px;
    }

    #order .prices__price--old {
        font-size: 28px;
    }
}

@-webkit-keyframes blink {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes blink {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* @tailwind base; */

/* lotteri */

.lotteri {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.lotteri__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    border-radius: 8px;
    border-width: 3px;
    border-style: dashed;
    --tw-border-opacity: 1;
    border-color: rgb(45 3 128 / var(--tw-border-opacity));
    background-image: -webkit-gradient(linear, left bottom, right top, from(var(--tw-gradient-stops)));
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
    --tw-gradient-from: rgb(24 24 27 / 0.2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(24 24 27 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-to-position: 40%;
    padding: 8px;
}

@media (min-width: 768px) {

    .lotteri__container {
        padding: 16px;
    }
}

.lotteri__container {

    -webkit-box-shadow: 0 0 4px 0 #2d038073;

    box-shadow: 0 0 4px 0 #2d038073;
}

.lotteri__bg {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-image: url("../img/gifts-bg.png");
    opacity: 0.1;
    --tw-grayscale: grayscale(100%);
    -webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.lotteri__content {
    position: relative;
    z-index: 30;
    -ms-flex-item-align: center;
    align-self: center;
}

.lotteri__heading {
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgb(45 3 128 / var(--tw-text-opacity));
}

@media not all and (min-width: 640px) {

    .lotteri__heading {
        text-align: center;
    }
}

.lotteri__subheading {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.025em;
    --tw-text-opacity: 1;
    color: rgb(128 125 127 / var(--tw-text-opacity));
}

@media not all and (min-width: 640px) {

    .lotteri__subheading {
        text-align: center;
    }
}

@media (min-width: 640px) {

    .lotteri__subheading {
        margin-bottom: 48px;
    }
}

.lotteri__wrap {
    position: relative;
    z-index: 30;
}

@media not all and (min-width: 640px) {

    .lotteri__wrap {
        display: none;
    }
}

.lotteri__img {
    max-height: 350px;
}

.lotteri__img--mob {
    margin-bottom: 16px;
    max-height: 300px;
}

@media (min-width: 640px) {

    .lotteri__img--mob {
        display: none !important;
    }
}

.lotteri__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
/*    display: flex;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(46 45 44 / var(--tw-text-opacity));
}

.lotteri__item:not(:last-child) {
    margin-bottom: 12px;
}

.lotteri__item::before {
    margin-right: 6px;
    display: block;
    height: 24px;
    width: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    --tw-content: '';
    content: var(--tw-content);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='32.000244140625 59.15949630737305 455.9960632324219 401.6855163574219'%3e%3cg%3e%3cpath d='M239.987 460.841a10 10 0 0 1-7.343-3.213L34.657 243.463A10 10 0 0 1 42 226.675h95.3a10.006 10.006 0 0 1 7.548 3.439l66.168 76.124c7.151-15.286 20.994-40.738 45.286-71.752 35.912-45.85 102.71-113.281 216.994-174.153a10 10 0 0 1 10.85 16.712c-.436.341-44.5 35.041-95.212 98.6-46.672 58.49-108.714 154.13-139.243 277.6a10 10 0 0 1-9.707 7.6z' data-name='Check' fill='%2306d200' opacity='1' data-original='black'/%3e%3c/g%3e%3c/svg%3e");
}

.hl-accent {
    font-weight: 700;
    color: var(--color-primary);
}

.hl-secondary {
    font-weight: 700;
    color: var(--color-secondary);
    -webkit-background-clip: text;
    background-clip: text;
}

.quotation {
    position: relative;
    margin-top: 24px;
    margin-bottom: 24px;
    -webkit-transition: opacity 0.5s ease-in, -webkit-transform 0.9s ease-in;
    transition: opacity 0.5s ease-in, -webkit-transform 0.9s ease-in;
    transition: opacity 0.5s ease-in, transform 0.9s ease-in;
    transition: opacity 0.5s ease-in, transform 0.9s ease-in, -webkit-transform 0.9s ease-in;
}

.quotation--image {
    margin-top: 32px;
    margin-bottom: 32px;
    gap: 16px;
}

@media (min-width: 640px) {

    .quotation--image {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.quotation.quotation--visible {
    --tw-translate-x: 0px;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1;
}

.quotation__image {
    --quotation-max-w: 90px;
    left: 44px;
    top: -24px;
    z-index: 2;
}

@media not all and (min-width: 640px) {

    .quotation__image {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (min-width: 640px) {

    .quotation__image {
        max-width: var(--quotation-max-w);
    }
}

.quotation__image-inner {
    height: 48px;
    width: 48px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (min-width: 640px) {

    .quotation__image-inner {
        height: 90px;
        width: 90px;
    }
}

.quotation__image-inner>img {
    margin-top: 0px;
    margin-bottom: 0px;
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    -o-object-fit: cover;
    object-fit: cover;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 640px) {

    .quotation__image-inner>img {
        margin-bottom: 0.5rem;
    }
}

.quotation__name {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

@media not all and (min-width: 640px) {

    .quotation__name {
        display: inline-block;
        width: 100%;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-width: 1px;
        border-color: var(--color-secondary);
        --tw-bg-opacity: 1;
        background-color: rgb(245 247 247 / var(--tw-bg-opacity));
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.25rem;
    }
}

.quotation__wrap {
    position: relative;
    border-radius: 16px;
    --tw-bg-opacity: 1;
    background-color: rgb(245 247 247 / var(--tw-bg-opacity));
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 768px) {

    .quotation__wrap {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.quotation__wrap>p {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 500;
}

.quotation__wrap>p:first-child::before {
    content: ",,";
    position: absolute;
    left: 16px;
    top: -12px;
    --tw-rotate: 180deg;
    -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    font-size: 72px;
    font-style: normal;
    line-height: 1;
    letter-spacing: -6px;
}

@media (min-width: 768px) {

    .quotation__wrap>p:first-child::before {
        left: 24px;
    }
}

.quotation__wrap>p:not(:last-child) {
    margin-bottom: 0.75rem;
}

mark {
    --color1: springgreen;
    --bg-height: 100%;

    all: unset;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color1)), to(var(--color1)));
    background-image: linear-gradient(var(--color1), var(--color1));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 var(--bg-height);
    -webkit-animation: highlight 1500ms 1 ease-out;
    animation: highlight 1500ms 1 ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes highlight {
    to {
        background-size: 100% var(--bg-height);
    }
}

@keyframes highlight {
    to {
        background-size: 100% var(--bg-height);
    }
}

.dialog {
    --dialog-bg-rgb: 173 174 176;
    --dialog-bg-color: rgb(var(--dialog-bg-rgb) / 1);
    --dialog-bg-transp: rgb(var(--dialog-bg-rgb) / 0.7);
    --dialog-text-color: #242424;
    position: relative;
    margin-top: 32px;
    margin-bottom: 32px;
    gap: 16px;
}

@media (min-width: 640px) {

    .dialog {
        margin-top: 24px;
        margin-bottom: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.dialog.dialog--interviewer {
    --dialog-bg-rgb: 174 29 31;
    --dialog-bg-transp: rgb(var(--dialog-bg-rgb) / 0.7);
    --dialog-text-color: rgb(255, 255, 255);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.15;
}

.dialog.dialog--interviewer h3 {
    font-size: 17px;
    color: var(--dialog-text-color) !important;
}

.dialog.dialog--doctor {
    --dialog-bg-rgb: 229 231 235;
}

.dialog__left {
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media not all and (min-width: 640px) {

    .dialog__left {
        position: absolute;
        left: -12px;
        top: -24px;
        gap: 16px;
    }
}

@media (min-width: 640px) {

    .dialog__left {
        max-width: 90px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.dialog__avatar {
    height: 48px;
    width: 48px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 9999px;
    background-color: var(--dialog-bg-color) !important;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 640px) {

    .dialog__avatar {
        height: 60px;
        width: 60px;
    }
}

.dialog__avatar.dialog__avatar--svg {
    fill: #fff;
    stroke: #fff;
    padding: 6px;
}

@media (min-width: 640px) {

    .dialog__avatar.dialog__avatar--svg {
        padding: 12px;
    }
}

.dialog__avatar-inner {
    margin: 0px !important;
    height: 100% !important;
    width: 100% !important;
    border-radius: 0px !important;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 640px) {

    .dialog__avatar:not(:last-child) {
        margin-bottom: 8px;
    }
}

.dialog__name {
    text-align: center;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-primary);
}

@media (min-width: 640px) {

    .dialog__name {
        font-size: 14px;
        letter-spacing: -0.05em;
    }
}

.dialog__content {
    position: relative;
    margin-top: 8px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-radius: 16px;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--tw-gradient-stops)));
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: var(--dialog-bg-color) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
    --tw-gradient-to: var(--dialog-bg-transp) var(--tw-gradient-to-position) !important;
    padding: 16px;
    color: var(--dialog-text-color) !important;
}

@media not all and (min-width: 640px) {

    .dialog__content {
        padding-top: 26px;
    }
}

.dialog__content::before {
    --dialog-cube-size: 12px;

    /* content: ""; */

    position: absolute;

    top: 12px;

    left: calc(var(--dialog-cube-size) / -2);

    height: var(--dialog-cube-size);

    width: var(--dialog-cube-size);

    -webkit-transform-origin: bottom left;

    transform-origin: bottom left;

    --tw-rotate: 45deg;

    -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

    background-color: var(--dialog-bg-color);
}

@media (min-width: 640px) {

    .dialog__content::before {
        --tw-content: '';
        content: var(--tw-content);
    }
}

.dialog__content>h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
}

.dialog__content>p {
    margin: 0px;
    margin-bottom: 0px;
    color: inherit;
}

.dialog__content>p:not(:last-child) {
    margin-bottom: 16px !important;
}

/* certificates */

.certificates-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 32px;
}

.certificates-container.certificates-container--absolute {
    position: absolute;
    left: 50%;
    bottom: -45px;
    --tw-translate-x: -50%;
    -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.certificates-container.certificates-container--form {
    position: absolute;
    right: 8px;
    bottom: 8px;
    gap: 8px;
}

.certificates-container>img {
    pointer-events: none;
    height: 100%;
    max-height: 130px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.certificates-container.certificates-container--form>img {
    max-height: 80px;
}

.\ !tw-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.\ !tw-my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.tw-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.tw-my-\[32px\] {
    margin-top: 32px;
    margin-bottom: 32px;
}

.\ !tw-mb-0 {
    margin-bottom: 0px !important;
}

.\ !tw-mb-2 {
    margin-bottom: 0.5rem !important;
}

.\ !tw-mb-4 {
    margin-bottom: 1rem !important;
}

.\ !tw-mt-0 {
    margin-top: 0px !important;
}

.-tw-mt-2 {
    margin-top: -0.5rem;
}

.-tw-mt-\[32px\] {
    margin-top: -32px;
}

.tw-mb-2 {
    margin-bottom: 0.5rem;
}

.tw-mb-3 {
    margin-bottom: 0.75rem;
}

.tw-mb-8 {
    margin-bottom: 2rem;
}

.tw-block {
    display: block;
}

.tw-inline-block {
    display: inline-block;
}

.tw-h-0 {
    height: 0px;
}

.tw-h-0\.5 {
    height: 0.125rem;
}

.tw-w-\[100px\] {
    width: 100px;
}

.tw-rounded-lg {
    border-radius: 0.5rem;
}

.tw-rounded-md {
    border-radius: 0.375rem;
}

.tw-border-2 {
    border-width: 2px;
}

.tw-border-y-4 {
    border-top-width: 4px;
    border-bottom-width: 4px;
}

.tw-border-primary {
    border-color: var(--color-primary);
}

.tw-bg-primary {
    background-color: var(--color-primary);
}

.tw-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.tw-py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.tw-py-\[32px\] {
    padding-top: 32px;
    padding-bottom: 32px;
}

.tw-text-center {
    text-align: center;
}


.tw-font-bold {
    font-weight: 700;
}

.tw-uppercase {
    text-transform: uppercase;
}

.tw-text-primary {
    color: var(--color-primary);
}

.tw-text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.tw-transition-colors {
    -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 150ms;
    transition-duration: 150ms;
}

:root {
    --color-primary: #ae1d21;
    --color-secondary: rgb(249 115 22);
    --color-alternative: #66c5cc;
    /* --color-alert: ; */
}

::-ms-backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #3b82f680;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
}

*,
::backdrop,
:after,
:before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #3b82f680;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
}

*,
::before,
::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

::before,
::after {
    --tw-content: "";
}

body {
    min-width: 300px;
    overflow-x: hidden;
}

/* img {
  display: block;
  max-width: 100%;
} */

strong,
b {
    font-weight: 700;
}

.lead-block {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
}

.risk-list {
    margin: 0px;
    margin-bottom: 24px;
    padding: 0px;
    padding-left: 24px;
}

.risk-list>li:not(:last-child) {
    margin-bottom: 0.25rem;
}

.custom-list {
    list-style-image: none !important;
    margin: 0px !important;
    margin-bottom: 32px !important;
    padding: 0px !important;
}

.custom-list>li {
    list-style-type: none !important;
    padding: 1rem !important;
}

.custom-list>li::before {
    --tw-content: none;
    content: var(--tw-content);
}

.custom-list>li:nth-child(even) {
    border-radius: 1rem;
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}

.benefits-list {
    list-style-type: none;
    padding-left: 40px !important;
    list-style-image: none;
}

.benefits-list>li {
    position: relative;
    list-style-image: none;
}

.benefits-list>li::before {
    content: "";
    background: url("../img/butterfly.svg") no-repeat center / contain;
    position: absolute;
    right: calc(100% + 8px);
    top: -2px;
    height: 32px;
    width: 32px;
}

.conditions ul.conditions-list {
    margin: 0px !important;
}

.conditions ul.conditions-list>li:last-child {
    margin-bottom: 0px;
}

.ingr-list {
    margin-bottom: 16px;
    list-style-type: none;
}

.ingr-list>li {
    border-radius: 16px;
    padding: 12px;
}

.ingr-list>li:nth-child(odd) {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.ingr-list>li:nth-child(even) {
    /* @apply ; */
}

.ingr-list>li:not(:last-child) {
    margin-bottom: 8px;
}

.ingr-list>li>h3 {
    font-size: 19px;
    color: var(--color-primary);
}

.ingr-list>li>p {
    margin-bottom: 0px;
}

.ingr-list>li>p:not(:last-child) {
    margin-bottom: 8px;
}

.disc-list {
    margin-bottom: 16px;
    list-style-type: disc;
    padding-left: 24px;
}

.disc-list>li {
    list-style-type: disc;
}

.disc-list>li:not(:last-child) {
    margin-bottom: 8px;
}

.chart-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.chart-block__left {
    margin: 0;
}

.chart-block__left>figcaption {
    max-width: 550px;
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
}

.chart-block__left img {
    margin-top: 0px;
    margin-bottom: 0px;
}

.chart-block__list {
    -ms-flex-item-align: center;
    align-self: center;
}

.chart-block__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chart-block__item:not(:last-child) {
    margin-bottom: 16px;
}

.chart-block__item::before {
    content: '';
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.chart-block__item:nth-child(1)::before {
    background-color: #523078;
}

.chart-block__item:nth-child(2)::before {
    background-color: #67439a;
}

.chart-block__item:nth-child(3)::before {
    background-color: #8355bf;
}

.chart-block__item:nth-child(4)::before {
    background-color: #5c5c5c;
}

.chart-block__item:nth-child(5)::before {
    background-color: #8f8f8f;
}

.chart-block__item:nth-child(6)::before {
    background-color: #b5b5b5;
}

.chart-block__item:nth-child(7)::before {
    background-color: #674498;
}

.chart-block__item>p {
    padding: 0;
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}

.chart-block__item>p>span {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .chart-block {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .chart-block__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
    }

    .chart-block__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 10px);
        flex: 1 1 calc(50% - 10px);
    }

    .chart-block__item:not(:last-child) {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .chart-block__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.comments {
    margin-bottom: 40px;
}

.comments img {
    max-width: 100%;
}

.comments__title {
    margin-bottom: 20px;
    font-size: 2rem;
}

.comment:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #c6c6c6;
}

.comment__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.comment__avatar {
    margin-right: 0.5rem;
    height: 40px;
    width: 40px;
}

@media (min-width: 640px) {

    .comment__avatar {
        margin-right: 1rem;
        height: 56px;
        width: 56px;
    }
}

.comment__avatar {
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.comment__info {
    margin-right: auto;
}

.comment__author {
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    margin-bottom: 8px;
}

.comment__time {
    margin-top: auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    white-space: nowrap;
    color: #666;
}

.comment__text {
    margin: 0;
    line-height: 1.5;
}

.comment__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.comment__stars>.star {
    margin-right: 4px;
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    fill: rgb(245, 195, 16);
}

.comment__stars>.star--empty {
    fill: #c7c7c7;
}

.comment__rating {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

@media (min-width: 640px) {

    .comment__body {
        margin-left: 72px;
    }
}

.comment__content {
    font-size: 15px;
    color: #333;
}

.comment__content>p:not(:last-child) {
    margin-bottom: 0.75rem;
}

.comment__img {
    max-height: 18rem;
    border-radius: 0.5rem;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.comment .comment__link {
    position: relative;
    font-weight: 700;
    text-decoration: none;
    color: rgb(224, 62, 82);
}

.comment .comment__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    width: 100%;
    height: 1px;
    background-color: rgb(224, 62, 82);
}

.comment__footer {
    margin-top: 1rem;
}

.comment__btn {
    padding: 2px 7px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 9999px;
    color: #2a2e2e;
    cursor: pointer;
    -webkit-transition: border-color 0.3s ease-in-out, border 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.comment__btn:not(:last-child) {
    margin-right: 5px;
}

.comment__btn:hover,
.comment__btn:focus {
    border: 1px solid currentColor;
}

.comment__btn span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 13px;
    color: inherit !important;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.comment__btn span::before {
    content: '';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: -webkit-filter 0.3s ease-in-out;
    transition: -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.comment__like span::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='25' height='26' fill='none' viewBox='0 0 25 26'%3e%3cpath fill='black' d='M24.2 9.916a3.323 3.323 0 0 0-2.187-1.3 3.446 3.446 0 0 0-.532-.038h-5.536V5.014c0-2.443-2.016-4.43-4.495-4.43a1.02 1.02 0 0 0-.93.596L5.883 11.46a.991.991 0 0 0-.088.407V24.43a1.01 1.01 0 0 0 1.018 1.003h13.099c.792 0 1.558-.277 2.161-.782a3.275 3.275 0 0 0 1.138-2.01l1.6-10.28a3.23 3.23 0 0 0-.613-2.444Zm-1.402 2.14-1.6 10.28a1.3 1.3 0 0 1-1.285 1.089H7.833V12.079l4.243-9.408c1.053.274 1.832 1.22 1.832 2.343v4.568c0 .554.456 1.004 1.019 1.004h6.57a1.294 1.294 0 0 1 1.061.521c.207.275.291.613.24.95Z'/%3e%3cpath fill='black' d='M6.813 23.426H3.336a1.292 1.292 0 0 1-1.299-1.28V14.15c0-.706.583-1.28 1.3-1.28h3.476c.563 0 1.019-.45 1.019-1.004s-.456-1.004-1.019-1.004H3.336C1.496 10.863 0 12.338 0 14.151v7.994c0 1.813 1.497 3.288 3.336 3.288h3.477a1.01 1.01 0 0 0 1.019-1.003c0-.555-.456-1.004-1.019-1.004Z'/%3e%3c/svg%3e");
}

.comment__like--plus {
    color: #2faa10;
    border-color: currentColor;
    cursor: auto;
}

.comment__dislike--minus {
    color: #d94f70;
    border-color: currentColor;
    cursor: auto;
}

.comment__like--plus span::before {
    color: #2faa10;
    -webkit-filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
    filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
}

.comment__dislike--minus span::before {
    color: #d94f70;
    -webkit-filter: brightness(0) saturate(100%) invert(45%) sepia(47%) saturate(1658%) hue-rotate(313deg) brightness(88%) contrast(92%);
    filter: brightness(0) saturate(100%) invert(45%) sepia(47%) saturate(1658%) hue-rotate(313deg) brightness(88%) contrast(92%);
}

.comment__dislike span::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none' viewBox='0 0 26 26'%3e%3cpath fill='black' d='M1.147 16.015a3.323 3.323 0 0 0 2.186 1.301c.176.027.356.039.533.037H9.4v3.565c0 2.442 2.017 4.43 4.496 4.43.402 0 .767-.234.93-.596l4.636-10.279a.991.991 0 0 0 .088-.408V1.504C19.55.95 19.094.5 18.531.5H5.433c-.79 0-1.557.277-2.16.783a3.274 3.274 0 0 0-1.138 2.01l-1.6 10.28a3.23 3.23 0 0 0 .612 2.443Zm1.402-2.14 1.6-10.28a1.3 1.3 0 0 1 1.284-1.088h12.081v11.345l-4.244 9.409c-1.053-.274-1.832-1.22-1.832-2.343V16.35a1.01 1.01 0 0 0-1.018-1.004H3.849a1.294 1.294 0 0 1-1.061-.521 1.257 1.257 0 0 1-.239-.95Z'/%3e%3cpath fill='black' d='M18.533 2.506h3.477c.717 0 1.3.574 1.3 1.28v7.995c0 .705-.583 1.28-1.3 1.28h-3.477c-.562 0-1.018.45-1.018 1.004s.456 1.003 1.018 1.003h3.477c1.84 0 3.337-1.475 3.337-3.287V3.786c0-1.813-1.497-3.288-3.337-3.288h-3.477c-.562 0-1.018.45-1.018 1.004a1.01 1.01 0 0 0 1.018 1.004Z'/%3e%3c/svg%3e");
}

.comment__like:hover span::before,
.comment__like:focus span::before {
    -webkit-filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
    filter: brightness(0) saturate(100%) invert(71%) sepia(84%) saturate(4960%) hue-rotate(74deg) brightness(95%) contrast(87%);
    -webkit-transition: -webkit-filter 0.3s ease-in-out;
    transition: -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.comment__dislike:hover span::before,
.comment__dislike:focus span::before {
    -webkit-filter: brightness(0) saturate(100%) invert(45%) sepia(47%) saturate(1658%) hue-rotate(313deg) brightness(88%) contrast(92%);
    filter: brightness(0) saturate(100%) invert(45%) sepia(47%) saturate(1658%) hue-rotate(313deg) brightness(88%) contrast(92%);
    -webkit-transition: -webkit-filter 0.3s ease-in-out;
    transition: -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.comment__like:hover,
.comment__like:focus {
    color: #2faa10;
}

.comment__dislike:hover,
.comment__dislike:focus {
    color: #d94f70;
}

.marker\:tw-font-bold *::marker {
    font-weight: 700;
}

.marker\:tw-font-bold::marker {
    font-weight: 700;
}

.hover\:tw-bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.hover\:tw-text-primary:hover {
    color: var(--color-primary);
}

@media (min-width: 640px) {

    .sm\:tw-float-right {
        float: right;
    }

    .sm\:\ !tw-ml-4 {
        margin-left: 1rem !important;
    }

    .sm\:\ !tw-w-\[240px\] {
        width: 240px !important;
    }
}

@media (min-width: 768px) {

    .md\:\ !tw-self-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
}


.comment__link {
    position: relative;
    font-weight: 700;
    text-decoration: none;
    color: rgb(224, 62, 82);
}


#order .order__product {
    padding: 60px;
}

@media (max-width: 800px) {
    #order .order__product {
        padding: 20px;
        margin-top: 70px;
    }

    #order .form__field:placeholder-shown~.form__label {
        font-size: 13px;
    }
}


@media (max-width:680px) {
    #order .prices__title {
        padding: 0 8px;
    }
}
@media (max-width: 600px) {
    .lotteri__item {
        width: 80%;
    }
}

@media (max-width: 585px) {
    #order .order__product {
        margin-top: 100px;
    }
}


@media (max-width:500px) {
    .stamps__wrapper--abs {
        right: 114px;
    }

    .prod-img {
        max-height: 350px;
        max-width: 200px;
    }

    .stamps__wrapper--abs {
        bottom: -10px;
    }

    .lotteri__heading {
        color: var(--_color);
        font-size: 40px;
    }

    .comment__time {
        font-size: 11px;
    }

    .comment__avatar {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .comment__stars>.star {
        height: 18px;
        margin-right: 7px;
        width: 15px;
    }

    .comment__author {
        font-size: 12px;
    }

    .certificates-container.certificates-container--form {
        position: absolute;
        right: 8px;
        bottom: -12px;
        gap: 8px;
    }

    .certificates-container.certificates-container--form>img {
        max-height: 60px;
    }
}

@media (max-width: 450px) {
    #order .order__product {
        padding: 51px 19px 36px;
        margin-top: 0px;
    }

    .comment__top {
        flex-direction: column;
    }

    .comment__info {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .comment__author .name_link_style {
        display: flex;
        justify-content: center;
    }

    .lotteri__item {
        font-size: 14px;
    }

    #order .prices__title {
        padding: 0 20px;
    }



}