:root {
    --font-size-extra-small: 12px;
    --font-size-small: 14px;
    --font-size-base: 16px;
    --font-size-large: 18px;
    --font-size-xlarge: 23px;
    --font-size-h: 35px;

    --color-baby-blue: #06b6d4;
    --color-success: #218d3b;
    --color-background-success: #c1fed0;
    --color-danger: #f35050;
    --color-background-danger: #ffe5e5;
    --color-info: #21338d;
    --color-background-info: #c1cffe;
    --color-warning: #ff9f0c;
    --color-background-warning: #ffecc7;

    --color-primary: #0078ff;
    --color-secondary: #fff;

    --color-text: #393939;
    --color-gray-light: #bfc9da;

    --background-color: #fff;
    /* --background2-color: #f1f7f8; */
    --background2-color: #f8fafd;
}

body {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-base);
    touch-action: manipulation;
    font-family: "Hind Siliguri", sans-serif;
    color: var(--color-text);
}

html, body {
    overscroll-behavior: none;
  }

/* Main UI Layout
   ------------------------------------------------------------------------- */
.root-container {
    display: flex;
    background-color: #bfc9da;
    min-height: 100vh;
}

.root-container .column-left {
    max-width: 300px;
    width: 100%;
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    align-self: flex-start;
    min-height: 100vh;
    border-right: 1px solid #ecf3ff;
}

@media screen and (max-width: 1000px) {
    .root-container .column-left {
        position: fixed;
        left: -300px;
        z-index: 99;
        transition: all 0.3s;
        border-right: none;
    }
}

.root-container .column-left.show {
    left: 0;
    top: 0;
    transition: all 0.3s;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.root-container .column-left .logo {
    border-bottom: 1px solid #ecf3ff;
    display: flex;
    height: 72px;
}

.root-container .column-left .logo img {
    max-width: 120px;
    margin-left: 20px;
}

nav.main-navigation ul {
    list-style-type: none;
    padding: 0;
}

nav.main-navigation ul li {
    padding: 12px 20px;
    margin: 5px 10px;
    color: #919fb6;
    border-radius: 10px 0 0 10px;
    position: relative;
    transition: all 0.2s;
    border-right: 3px solid transparent;
}

nav.main-navigation ul li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav.main-navigation ul li a::after {
    content: "";
    position: absolute;
    inset: 0;
}

nav.main-navigation ul li:hover,
nav.main-navigation ul li.link-active {
    background-color: #edf9fb;
    color: var(--color-baby-blue);
    border-right: 3px solid var(--color-baby-blue);
}

.nav-icon {
    font-size: 16px;
}

.nav-mobile-icon {
    font-size: 22px;
}

.cart-items-indicator {
    width: 22px;
    height: 22px;
    background-color: #ff9b9b;
    color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size-small);
}

.root-container .column-right {
    flex-direction: column;
    background-color: var(--background2-color);
    width: calc(100% - 300px);
}

.root-container .column-right header.main-header {
    background-color: var(--background-color);
    height: 72px;
    box-sizing: border-box;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #ecf3ff;
}

header.main-header .page-name {
    font-weight: 500;
    display: flex;
    align-items: center;
}

button.back {
    color: var(--color-text);
    font-size: 20px;
    margin-right: 10px;
    padding: 10px;
}

header.main-header .header-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.header-buttons .notify-button {
    font-size: 24px;
    position: relative;
    cursor: pointer;
    border: 0;
    margin: 0;
    padding: 8px;
    border-radius: 100%;
    background-color: transparent;
    color: var(--color-text);
}

.header-buttons .notify-button:hover {
    background-color: #edf9fb;
    color: var(--color-baby-blue);
}

.header-buttons .notify-button .notify-button__new-notify {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ff9b9b;
    border-radius: 100%;
    top: 5px;
    right: 6px;
    box-sizing: border-box;
}

.header-buttons .user-button {
    display: flex;
    align-items: center;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .root-container .column-right {
        width: 100%;
    }

    .root-container .column-right header.main-header {
        padding: 0 10px;
    }
}

@media screen and (max-width: 600px) {
    .header-buttons .dropdown--user {
        display: none;
    }

    .root-container .column-right header.main-header {
        height: 43px;
    }
}

.header-buttons .user-button .user-button__avatar {
    background-color: #b2f0fb;
    color: var(--color-baby-blue);
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 5px;
    font-size: var(--font-size-large);
}

.header-buttons .user-button .user-button__user-name {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.page-banner {
    padding: 8px 10px 0 10px;
    display: none;
}

.page-banner__header {
    font-size: 25px;
    font-weight: 600;
}

.page-banner__text {
    color: #949494;
}

@media screen and (max-width: 600px) {
    .page-banner {
        display: block;
    }
}

.view {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1500px;
    margin: 40px auto;
    padding: 0 40px;
}

.view__header__title {
    font-size: var(--font-size-h);
}

.view__header__description {
    max-width: 800px;
}

section.widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.widgets__column--large,
.widgets__column--small,
.widgets__column--full {
    display: flex;
    flex-direction: column;
}

.widgets__column--large {
    flex: 1 1 720px;
}

.widgets__column--small {
    flex: 1 1 300px;
}

.widgets__column--full {
    flex: 1;
}


.window {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #f1f1f5;
}
.window__header {
    margin: 18px 18px 30px 18px;
    display: flex;
    justify-content: space-between;
}

.window__title {
    font-weight: 600;
    display: flex;
    align-items: center;
}

.window__content {
    margin: 18px 18px 28px 18px;
}

.window:not(:last-child) {
    margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
    .view {
        padding: 0 10px;
        margin: 10px auto;
    }
}

@media screen and (max-width: 600px) {
    .width-mb-100 {
        width: 100%;
    }

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



/* Notification'
   ------------------------------------------------------------------------- */
.notifications-window {
    position: absolute;
    right: 5px;
    top: 75px;
    max-width: 500px;
    width: 100%;
    min-height: 250px;
    max-height: 700px;
    background-color: #fff;
    border: 1px solid #dcdbdb;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.082);
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.notifications-window__header {
    border-bottom: 1px solid #e8e8ec;
    padding: 0 20px;
    margin-bottom: 10px;
    min-height: 72px;
}

.notifications-window__header__title {
    font-size: var(--font-size-base);
    font-weight: 500;
}

.notifications-window__content {
    overflow-y: auto;
}

.notifications-window__content__notification {
    position: relative;
    padding: 10px 14px;
}

.notifications-window__content__notification:not(:last-child) {
    border-bottom: 1px solid #e8e8ec;
    margin-bottom: 10px;
}

.notifications-window__content__notification:after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 4px;
    height: calc(100% - 10px);
    background-color: var(--color-baby-blue);
}

.notifications-window__content__notification .button--fill {
    margin-top: 10px;
    width: fit-content;
}

.notification__top {
    display: flex;
    justify-content: space-between;
}

.notification__date {
    color: var(--color-gray-light);
    font-size: var(--font-size-small);
}

.notification__name {
    font-weight: 600;
}

.notifications__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    flex-direction: column;
    font-size: var(--font-size-large);
}

.notifications__empty span {
    font-size: 30px;
    background-color: var(--color-baby-blue);
}

.notifications-window__footer {
    text-align: center;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: flex-end;
}

.button--close {
    font-size: 24px;
    position: relative;
    cursor: pointer;
    border: 0;
    margin: 0;
    padding: 8px;
    border-radius: 100%;
    background-color: #edf9fb;
    color: var(--color-baby-blue);
}

.button--close:hover {
    background-color: var(--color-background-danger);
    color: var(--color-danger);
}

@media screen and (max-width: 600px) {
    .notifications-window {
        left: 0;
        max-width: 100%;
        height: 100vh;
        max-height: inherit;
        top: 0;
        border: none;
    }

    .notifications-window__header {
        min-height: 43px;
        padding: 0;
    }
}

/* Alert'
   ------------------------------------------------------------------------- */
.alert {
    padding: 20px;
    margin: 10px 0;
    border-left: 5px solid transparent;
}

.alert-title {
    font-weight: 500;
    font-size: var(--font-size-large);
}

a.alert-link {
    color: inherit;
    font-weight: 700;
}

.alert-success {
    background-color: hsl(125, 72%, 87%);
    border-color: hsl(126, 58%, 53%);
    color: hsl(126, 76%, 17%);
}

.alert-info {
    background-color: hsl(214, 79%, 89%);
    border-color: hsl(213, 98%, 62%);
    color: hsl(213, 71%, 22%);
}

.alert-warning {
    background-color: hsl(58, 86%, 89%);
    border-color: hsl(37, 99%, 70%);
    color: hsl(38, 63%, 27%);
}

.alert-danger {
    background-color: hsl(0, 100%, 92%);
    border-color: hsl(0, 93%, 66%);
    color: hsl(0, 67%, 25%);
}


/* Mobile navigation
   ------------------------------------------------------------------------- */
nav.mobile-navigation {
    display: none;
    background-color: var(--background-color);
    justify-content: space-between;
    padding: 12px 20px 0 20px;
    height: 81px;
    position: sticky;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #ecf3ff;
}

.mobile-navigation__button {
    position: relative;
}

nav.mobile-navigation .mobile-navigation__button a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    color: #7b7683;
}

nav.mobile-navigation .mobile-navigation__button a div {
    margin-bottom: 3px;
    width: 1.1em;
    height: 1.1em;
}

nav.mobile-navigation .mobile-navigation__button .mobile-link-active {
    color: var(--color-baby-blue);
}

.mobile-navigation__button__indicator {
    background-color: #ff9b9b;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: -12px;
    border: 3px solid #fff;
}

@media screen and (max-width: 1000px) {
    nav.mobile-navigation {
        display: flex;
        z-index: 2;
    }
}

/* Drop Down
   ------------------------------------------------------------------------- */
/* .dropdown {
    position: relative;
}

.dropdown:focus-within ul.dropdown__dropdown-menu {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s;
}

.dropdown__button-dropdown-toggle {
    border: 0;
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
    cursor: pointer;
}

.dropdown__button-dropdown-toggle:hover,
.dropdown:focus-within .dropdown__button-dropdown-toggle {
    background-color: #046ce1;
}

ul.dropdown__dropdown-menu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    padding: 0;
    list-style-type: none;
    border: 1px solid #ecf3ff;
    border-radius: 7px;
    margin: 0;
    transition: all 0.2s;
}

ul.dropdown__dropdown-menu li {
    padding: 5px 10px;
    position: relative;
}

ul.dropdown__dropdown-menu li:hover {
    background-color: #efefef;
}

ul.dropdown__dropdown-menu li a {
    text-decoration: none;
    color: var(--color-text);
}

ul.dropdown__dropdown-menu li a:after {
    content: "";
    inset: 0;
    position: absolute;
} */

.dropdown {
    position: relative;
}
.dropdown ul.dropdown_content {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    padding: 0;
    list-style-type: none;
    border: 1px solid #ecf3ff;
    border-radius: 7px;
    margin: 0;
    transition: all 0.2s;
    margin-top: 10px;
}

.dropdown .dropdown_content.show {
    opacity: 1;
    visibility: visible;
}

ul.dropdown_content li {
    padding: 5px 10px;
    position: relative;
}

ul.dropdown_content li:hover {
    background-color: #efefef;
}

ul.dropdown_content li a {
    text-decoration: none;
    color: var(--color-text);
}

ul.dropdown_content li a:after {
    content: "";
    inset: 0;
    position: absolute;
}



/* Order status label
   ------------------------------------------------------------------------- */
.label__order-status {
    border-radius: 30px;
    width: fit-content;
    padding: 5px 20px;
    font-weight: 500;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.label__order-status--new {
    --bg-color: hsl(137, 58%, 91%);
    --text-color: hsl(133, 60%, 34%);
}

.label__order-status--confirmed {
    --bg-color:  hsl(192, 82%, 91%);
    --text-color: hsl(190, 75%, 27%);
}

.label__order-status--sent {
    --bg-color: hsl(30, 100%, 90%);
    --text-color: hsl(30, 100%, 30%);
}

.label__order-status--delivered {
    --bg-color: hsl(90, 60%, 90%);
    --text-color: hsl(90, 60%, 30%);
}

.label__order-status--canceled {
    --bg-color: hsl(0, 100%, 88%);
    --text-color: hsl(1, 79%, 35%);
}

.label__order-status--pending-payment {
    --bg-color: hsl(286, 78%, 91%);
    --text-color: hsl(284, 71%, 26%);
}

.label__order-status--processing {
    --bg-color: hsl(45, 100%, 90%);
    --text-color: hsl(45, 100%, 30%);
}

/* Buttons
   ------------------------------------------------------------------------- */
button {
    line-height: 23px;
    background-color: transparent;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
    font-family: "Hind Siliguri", sans-serif;
    font-size: var(--font-size-base);
}

.button--border, .button--fill {
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.3s;
    box-shadow: 0 0 0 100vmax inset rgb(0 0 0/var(--o,0%));
    padding: 7px 14px;
    text-decoration: none;
    border: none;
}

.button--border {
    color: var(--color-baby-blue);
    border: 1px solid var(--color-baby-blue);
}

.button--border:hover {
    background-color: var(--color-baby-blue);
    color: #fff;
}

.button--fill {
    background-color: var(--color-baby-blue);
    color: #fff;
}

.button--fill:hover {
    --o: 20%;
}

/* Links:a
   ------------------------------------------------------------------------- */
.link {
    color: var(--color-baby-blue);
    text-decoration: none;
    transition: all 0.4s;
    border-bottom: 2px solid transparent;
    width: max-content;
}

.link:hover {
    border-color: var(--color-baby-blue);
}

/* Page: 'Home'
   ------------------------------------------------------------------------- */
.short-access {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    grid-auto-rows: auto;
}

.short-access__link {
    background-color: #edf9fb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    aspect-ratio: 1;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.short-access__link:hover {
    background-color: #edf9fb;
    border-color: var(--color-baby-blue);
}

.short-access__icon {
    color: #059ab4;
    font-size: 110px;
}

.short-access__link__name {
    color: #059ab4;
    text-align: center;
}

.last-orders__order {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    grid-auto-rows: auto;
}

.last-orders__order:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf3ff;
}

.last-orders__order__element__name {
    font-size: var(--font-size-small);
    color: var(--color-gray-light);
}

.last-orders__order__element__value {
    font-weight: 500;
}

.naqua-license__status {
    border-radius: 8px;
    width: fit-content;
    padding: 2px 15px;
    font-weight: 500;
}

.naqua-license__status--active {
    background-color: var(--color-background-success);
    color: var(--color-success);
}

.naqua-license__status--not-active {
    background-color: var(--color-background-danger);
    color: var(--color-danger);
}

.naqua-license__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    grid-auto-rows: auto;
}

.naqua-license__info__element div:first-of-type {
    font-size: var(--font-size-small);
    color: var(--color-gray-light);
}

.naqua-license__additional-info {
    margin-top: 30px;
}

.naqua-license__button {
    background: #fc7d29;
    border-radius: 30px;
    padding: 15px 50px;
    width: fit-content;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.naqua-license__button span {
    font-size: 15px;
}

@media screen and (max-width: 600px) {
    .naqua-license__button {
        width: 100%;
    }
}

.new-in-naqua__app-version {
    font-size: var(--font-size-small);
    color: var(--color-gray-light);
}

.new-in-naqua__list__item {
    display: grid;
    grid-template-columns: 7fr 1fr 1fr;
    gap: 10px;
    grid-auto-rows: auto;
}

.new-in-naqua__list__item:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ecf3ff;
}

.new-in-naqua__new-label {
    background-color: var(--color-background-success);
    color: var(--color-success);
    border-radius: 8px;
    width: fit-content;
    padding: 2px 15px;
    font-weight: 500;
    margin-right: 10px;
}

.new-in-naqua__button--show-more {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-baby-blue);
    background-color: #edf9fb;
    justify-self: flex-end;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.new-in-naqua__button--show-more:hover {
    border-color: var(--color-baby-blue);
}

@media screen and (max-width: 600px) {
    .short-access {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .short-access__icon {
        font-size: 70px;
    }
}

/* Forms'
   ------------------------------------------------------------------------- */
form {
    align-items: flex-start;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="tel"] {
    outline: none;
    border: 1px solid #76d6e6;
    padding: 10px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

input {
    font-family: "Hind Siliguri", sans-serif;
}

@supports (-webkit-touch-callout: none) {
    input[type="date"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        color: var(--color-text);
        min-height: 66px;
    }
}

input::-webkit-date-and-time-value {
    text-align: left;
}

input[type="submit"] {
    padding: 7px 14px;
    border-radius: 7px;
    border: none;
    background-color: var(--color-baby-blue);
    color: #fff;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 0 0 100vmax inset rgb(0 0 0/var(--o,0%));
    font-family: "Hind Siliguri", sans-serif;
    font-size: var(--font-size-base);
}

input[type="submit"]:hover {
    --o: 20%;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="search"]::placeholder,
textarea::placeholder {
    color: var(--color-gray-light);
}

input[type="checkbox"] {
    cursor: pointer;
}

input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

input.validate--error {
    border: 1px solid var(--color-danger);
    background-color: var(--color-background-danger);
}

.validate__info--error {
    color: var(--color-danger);
    padding: 5px 5px 0 5px;
    box-sizing: border-box;
}

.form-control {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.form-control__row__field {
    display: flex;
    position: relative;
    flex-direction: column;
    align-self: start;
}

.form-control__row:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 10px;
}

.field__col-12 {
    flex: 12 0 100%;
}

.field__col-9 {
    flex: 9 0 calc(100% / 1.33 - 10px);
}

.field__col-6 {
    /*flex-basis: calc(100% / 2);*/
    flex: 6 0 calc(100% / 2 - 10px);
}

.field__col-4 {
    flex: 4 0 calc(100% / 3 - 10px);
}

.field__col-3 {
    flex: 3 0 calc(100% / 4 - 10px);
}

.form-control__row__field input::placeholder, textarea::placeholder {
    color: transparent;
}

.form-control__row__field input {
    flex: 1;
    padding-top: 30px;
    padding-left: 17px;
}

.form-control__row__field textarea {
    font-family: inherit;
    flex: 1;
    padding-top: 30px;
    line-height: 14px;
    padding-left: 17px;
    outline: none;
    border: 1px solid #76d6e6;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s;
}

.form-control__row__field input:focus,
.form-control__row__field textarea:focus {
    box-shadow: 0px 0px 0px 4px rgba(226, 231, 253, 1);
    border: 1px solid lightblue;
}

.form-control__row__field label {
    position: absolute;
    color: var(--color-gray-light);
    transition: all 0.3s;
    left: 15px;
    top: 20px;
    font-size: 14px;
}

.form-control__row__field input:focus + label,
.form-control__row__field input:not(:placeholder-shown) + label,
.form-control__row__field textarea:focus + label,
.form-control__row__field textarea:not(:placeholder-shown) + label {
    transform-origin: top left;
    transform: translateY(-40%) scale(0.85);
}

/* Page: 'Products'
   ------------------------------------------------------------------------- */
.search-field {
    border: 1px solid #76d6e6;
    display: flex;
    background-color: #fff;
    border-radius: 7px;
    max-width: 600px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.search-field-sticky {
    position: sticky;
    top: 72px;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-top: 10px;
    background-color: var(--background2-color);
}

@media screen and (max-width: 600px) {
    .search-field-sticky {
        top: 43px;
    }
}

.search-field input {
    padding-top: 16px;
    padding-bottom: 16px;
    border: none;
    width: 100%;
    background: transparent;
}

.button--search {
    height: 46px;
    max-width: 46px;
    width: 100%;
    margin: 4px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.button--search-clean {
    max-width: 20px;
    width: 100%;
    height: 20px;
    padding: 0;
    border-radius: 100%;
    background-color: #edf0f2;
    color: #c3cbd0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.button--search-clean:hover {
    color: #fff;
    background-color: var(--color-gray-light);
}

.select-product-type {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    grid-auto-rows: auto;
}

.products-grid__product {
    /*background-color: #f5f9fb;*/
    border: 1px solid #e8eff3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 10px;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.products-grid__product:hover {
    -webkit-box-shadow: 0px 0px 23px -5px rgba(66, 68, 90, 0.3);
    -moz-box-shadow: 0px 0px 23px -5px rgba(66, 68, 90, 0.3);
    box-shadow: 0px 0px 23px -5px rgba(66, 68, 90, 0.3);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-type {
    color: var(--color-baby-blue);
    background-color: #b2f0fb;
    padding: 0 15px;
    border-radius: 7px;
}

.products-grid__product__miniature {
    display: flex;
    justify-content: center;
}

.products-grid__product__miniature img {
    object-fit: contain;
    max-height: 200px;
    border-radius: 10px;
}

.products-grid__product__section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.products-grid__product__title {
    text-align: center;
    margin-top: 10px;
}

.products-grid__product__price {
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price--before-promotion {
    font-size: var(--font-size-base);
    color: var(--color-gray-light);
    text-decoration: line-through;
    font-weight: 300;
}

.product-price--promotion {
    color: #fff;
    background-color: #e11e2e;
    padding: 5px 10px;
    border-radius: 10px;
}

.products-grid__product__additional-price {
    text-align: center;
    font-size: var(--font-size-small);
    color: #a3a8b1;
    margin-bottom: 14px;
}

.product-grid__product__add-to-cart {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.products-grid__product form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product__quantity-control {
    /*border: 1px solid var(--color-baby-blue);*/
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-self: center;
    padding: 2px;
    max-width: 200px;
    width: 100%;
}

.product__quantity-control input[type="number"] {
    max-width: 50px;
    padding: 0 10px;
    text-align: center;
    -moz-appearance: textfield;
    border: none;
    background-color: transparent;
    /*color: var(--color-baby-blue);*/
    font-weight: 300;
    font-size: var(--font-size-large);
}

.product__quantity-control input::-webkit-outer-spin-button,
.product__quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product__quantity-control button {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #676565;
    background-color: #edf0f2;
}

.products-grid__product .button--add-to-cart {
    margin-top: 20px;
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(90deg, rgba(99,109,239,1) 0%, rgba(6,182,212,1) 84%);
}

.product-bg-rabatt {
    color: #fff;
}

.rabatt-level--1 {
    background: linear-gradient(135deg, hsl(0, 0%, 85%), hsl(0, 0%, 95%));
    color: var(--color-text);
}

.rabatt-level--2 {
    background: linear-gradient(135deg, hsl(282, 60%, 65%), hsl(292, 55%, 75%));
}

.rabatt-level--3 {
    background: linear-gradient(135deg, hsl(123, 45%, 55%), hsl(144, 50%, 75%));
}

.rabatt-level--4 {
    background: linear-gradient(135deg, hsl(204, 70%, 60%), hsl(195, 70%, 80%));
}

.rabatt-level--5 {
    background: linear-gradient(135deg, hsl(330, 60%, 65%), hsl(340, 70%, 80%));
}

.rabatt-level--6 {
    background: linear-gradient(135deg, hsl(4, 70%, 65%), hsl(14, 75%, 75%));
}

/* Page: 'Orders'
   ------------------------------------------------------------------------- */
.orders-list__order {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #f1f1f5;
    min-height: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    grid-auto-rows: auto;
    align-items: center;
    box-sizing: border-box;
    padding: 18px;
}

.orders-list__order:not(:last-child) {
    margin-bottom: 10px;
}

.orders-list__order__element__name {
    font-size: var(--font-size-small);
    color: var(--color-gray-light);
}

.orders-list__order__element__value {
    font-weight: 500;
}

.orders-list__order__element:last-child {
    grid-column: span 2;
    justify-self: end;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

@media screen and (max-width: 1237px) {
    .orders-list__order__element:last-child  {
        justify-self: initial;
    }
}

/* Page: 'Order (one)'
   ------------------------------------------------------------------------- */
.link--back {
    color: #90aed4;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 500;
    display: flex;
}

.link--back span {
    font-size: 22px;
    display: inline-block;
    margin-right: 7px;
}

.link--back:hover {
    color: var(--color-baby-blue);
}

.order-top-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.order-top-info div:not(:last-child) {
    margin-right: 20px;
}

.order-top-info__number {
    display: flex;
    flex-wrap: wrap;
}

.order-top-info__number div {
    font-size: var(--font-size-h);
    color: #607b9b;
    font-weight: 500;
}

.order-top-info__number div:last-child {
    color: #49507c;
}

.order-top-info__date {
    display: flex;
    align-items: center;
    color: #49507c;
}

.order-top-info__date span {
    margin-right: 5px;
    color: #919fb6;
    font-size: 19px;
}

.items-in-order-indicator {
    width: 28px;
    height: 28px;
    background-color: var(--color-baby-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    color: #fff;
    border-radius: 100%;
    font-weight: 400;
}

.order-element {
    display: flex;
    gap: 20px;
}

.order-element:not(:last-child) {
    border-bottom: 1px solid #f1f1f5;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.order-element__miniature {
    max-width: 80px;
}

.order-element__miniature img {
    object-fit: contain;
    max-width:  80px;
    max-height: 80px;
    border-radius: 10px;
}

.order-element__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
 }

.order-element__content__description {
    max-width: 300px;
    width: 100%;
}

.order-element__content__description__title {
    font-weight: 600;
}

.order-element__content__description__attribute {
    display: flex;
}

.order-element__content__description__attribute span {
    font-size: var(--font-size-small);
}

.order-element__content__description__attribute span:first-child {
    margin-right: 7px;
    color: var(--color-gray-light);
}

.order-element__content__summary {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.order-element__content__summary__quantity {
    border: 1px solid #f1f1f5;
    align-self: flex-start;
    padding: 0 10px;
    border-radius: 7px;
}

.order-element__content__summary__total-price {
    font-weight: 600;
}

.order__summary {
    margin: 18px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order__summary__item {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.order__summary--total {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 18px 18px 18px 18px;
    background-color: var(--color-baby-blue);
    color: #fff;
    border-radius: 0 0 10px 10px;
}

.order__address:not(:last-child) {
    border-bottom: 1px solid #f1f1f5;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.order__address div:first-child {
    font-weight: 600;
}

.order__status {
    display: flex;
    gap: 25px;
    align-items: center;
    color: var(--color-gray-light);
}

.order__status:not(:last-child) {
    margin-bottom: 30px;
}

.order__status__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0px 0px 26px -10px rgba(66, 68, 90, 1);
    font-size: 25px;
    position: relative;
    z-index: 2;
}

.order__status__name {
    width: 140px;
}

.order__status__mark {
    font-size: 23px;
}

.order__status:not(:first-child) .order__status__icon::after {
    bottom: 56px;
    content: "";
    width: 3px;
    height: 30px;
    background: linear-gradient(
            to bottom,
            #8d8d8d 0%,
            #8d8d8d 50%,
            transparent 50%,
            transparent 100%
    );
    background-size: 100% 5px; /* Wysokość jednego segmentu (5px blue, 5px transparent) */
    position: absolute;
}

.order__status--done {
    color: var(--color-baby-blue);
    font-weight: 500;
}

.order__status--done:not(:first-child) .order__status__icon::after {
    background: linear-gradient(
            to bottom,
            var(--color-baby-blue) 0%,
            var(--color-baby-blue)  50%,
            transparent 50%,
            transparent 100%
    );
    background-size: 100% 5px;
}

/* Page: 'Cart'
   ------------------------------------------------------------------------- */
.cart__item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.cart__item:not(:last-child) {
    border-bottom: 1px solid #f1f1f5;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.cart__item__miniature {
    max-width: 80px;
}

.cart__item__miniature img {
    object-fit: contain;
    max-width:  80px;
    max-height: 80px;
    border-radius: 10px;
}

.cart__item__product-info {
    flex: 1 1 200px;
    text-decoration: none;
    color: inherit;
}

.cart__item__product-info__title {
    font-weight: 500;
}

.cart__item__product-info__attributes span {
    font-size: var(--font-size-small);
}

.cart__item__product-info__attributes span:first-child {
    color: var(--color-gray-light);
    margin-right: 7px;
}

.cart__item__summary {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cart__item__summary__element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cart-item-price__before-promotion {
    font-size: var(--font-size-small);
    color: var(--color-gray-light);
    font-weight: 300;
}

.cart__item__summary__element div:first-child {
    font-size: var(--font-size-small);
    color: var(--color-gray-light);
}

.cart__item__summary__element:nth-child(3)> div:last-child {
    font-weight: 600;
}

.cart__item__remove {
    margin-top: 10px;
}

.button--remove {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 100%;
    background-color: var(--color-background-danger);
    color: var(--color-danger);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: start;

    position: absolute;
    top: -15px;
    left: -10px;
    margin: 0;
}

.button--remove:hover {
    background-color: var(--color-danger);
    color: var(--color-background-danger);
}

.button--remove span {
    font-size: 17px;
}


/*.cart__summary:not(:last-child) {*/
/*    border-bottom: 1px solid #f1f1f5;*/
/*    margin-bottom: 25px;*/
/*    padding-bottom: 15px;*/
/*}*/


.discount-code-field {
    border: 1px solid #76d6e6;
    display: flex;
    background-color: #fff;
    border-radius: 7px;
    align-items: flex-start;
}

.discount-code-field input {
    padding-top: 16px;
    padding-bottom: 16px;
    border: none;
    width: 100%;
}

.discount-code-field button {
    margin: 4px;
    display: flex;
    justify-content: center;
    align-self: stretch;
    align-items: center;
}

.cart-summary .cart-summary__item:not(:last-child) {
    border-bottom: 1px solid #f1f1f5;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.cart-summary__item__price-line {
    display: flex;
    justify-content: space-between;
}

.cart-summary__item__price-line:not(:last-child) {
    margin-bottom: 7px;
}

.cart-summary__item__price-line:last-of-type {
    font-weight: 600;
}

.button--order-process {
    height: 55px;
    width: 100%;
    background-color: #f5b358;
    color: var(--color-text);
    font-weight: 600;
    font-size: var(--font-size-base);
}

/* Page: 'Edit account'
   ------------------------------------------------------------------------- */
.account__data-edit:not(:last-child) {
    border-bottom: 1px solid #f1f1f5;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.account__data-edit__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.account__data-edit__header button {
    display: flex;
    align-items: center;
}

.account__data-edit__header button span {
    margin-left: 5px;
    font-size: 16px;
}

.account__data-edit__header:first-of-type div {
    flex: 1 1 300px;
    font-weight: 500;
}

.account__data-edit__value {
    margin-top: 10px;
}

.account__data-edit__form {
    margin-top: 20px;
}

/* Page: 'Login / Register'
   ------------------------------------------------------------------------- */
.register-account::after {
    content: "";
    background-image: url("../images/naqua-q-blue-logo-vpt0zpF.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -99;
    opacity: 0.06;
}

.register-account {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 50px 0;
    box-sizing: border-box;
}

.register-account__container {
    display: flex;
    max-width: 600px;
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 10px;
}

.register-account__container__logo img {
    width: 130px;
}

.register-account__container__large-text {
    font-size: 20px;
    text-align: center;
}

.register-window {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.082);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    padding: 18px 18px 28px 18px;
    min-height: 300px;
}

.register-window form {
    min-width: 300px;
}

.register-window form input[type="submit"] {
    width: 100%;
}

.register-account__step__name {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.register-account__step__count {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edf9fb;
    color: var(--color-baby-blue);
    border-radius: 50%;
    font-weight: 500;
}

/* Page: 'Chat'
   ------------------------------------------------------------------------- */
.chat-view {
    margin: 0 auto;
}

.window-live-chat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 75px);
    border-radius: 0;
    border: 0;
}

.window-live-chat__conversation {
    padding: 10px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: scroll;
    scrollbar-width: thin;
    height: 100%;
    overscroll-behavior: contain;
}

.live-chat__message, .live-chat__message--from-user {
    display: flex;
    max-width: 60%;
    flex-wrap: wrap;
}

.live-chat__message {
    align-self: flex-start;
}

.live-chat__message--from-user {
    align-self: flex-end;
}

.live-chat__message__sender-avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: #b2f0fb;
    color: var(--color-baby-blue);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    display: none;
}

.live-chat__message__container {
    flex: 1;
}

.live-chat__message__content {
    border-radius: 23px 23px 23px 0;
    background-color: #e9eff5;
    padding: 10px 20px;
    white-space: pre-wrap;
}

.live-chat__message__content a {
    color: #222222;
}

.live-chat__message--from-user .live-chat__message__content {
    background: rgb(113,65,233);
    background: linear-gradient(90deg, rgba(113,65,233,1) 0%, rgba(180,53,245,1) 100%);
    color: #fff;
    border-radius: 23px 23px 0 23px;
}

.live-chat__message--from-user .live-chat__message__content a {
    color: #fff;
}

.live-chat__message__date {
    color: var(--color-gray-light);
    font-size: var(--font-size-small);
    margin: 0 10px;
}

.live-chat__message--from-user .live-chat__message__date {
    text-align: right;
}

.attachment-link {
    background-color: #fff;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 15px;
    color: var(--color-baby-blue)!important;
    display: block;
}


.window-live-chat__new-message {
    background-color: #fff;
    box-shadow: 0px -17px 57px -31px rgba(66, 68, 90, 0.3);
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.new-message__field {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5px;
    background-color: #f8fafc;
    border-radius: 50px;
    flex: 1;
}

.new-message__field textarea {
    border: none;
    outline: none;
    font-family: inherit;
    resize: none;
    font-size: var(--font-size-base);
    padding: 10px 10px 0 10px;
    flex: 1;
    background-color: transparent;
    line-height: 1.5;
    height: 45px;
    box-sizing: border-box;
    max-height: 200px;
}

.new-message__field textarea::placeholder {
    color: #aeb7c5;
}

.button--chat {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: #fff;
    border-radius: 50%;
    background: rgb(113,65,233);
    background: linear-gradient(90deg, rgba(113,65,233,1) 0%, rgba(180,53,245,1) 100%);
    width: 45px;
    height: 45px;
    box-sizing: border-box;
    padding-right: 10px;
    cursor: pointer;
    align-self: flex-start;
}

.button--chat:disabled {
    opacity: 0.5;
    transform: scale(0);
}

.button--chat:disabled:hover {
    --o: 0%;
}

.window-live-chat .upload-file-container {
    padding: 10px;
    display: none;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 -4px 2px -2px rgba(0, 0, 0, 0.05);
}

.window-live-chat__upload-file-container__attachment-image-preview {
    width: 100%;
}

.window-live-chat__upload-file-container__attachment-image-preview img {
    max-height: 200px;
    border: 1px solid #91a6bb;
}

.page-name__button-back {
    display: flex; align-items: center;
    padding: 0 5px 0 0;
    color: var(--color-text);
    font-size: 20px;
}


@media screen and (max-width: 600px) {
    .chat-view {
        padding: 0;
    }

    .live-chat__message, .live-chat__message--from-user {
        max-width: 85%;
    }

    .window-live-chat {
        height: calc(100vh - 46px);
    }

    .window-live-chat__conversation {
        padding: 10px;
    }
}

.window-live-chat__info {
    padding: 10px;
    box-sizing: border-box;
    background-color: #edf9fb;
    display: none;
}

/* Placeholders for product when loading'
   ------------------------------------------------------------------------- */

   @keyframes placeholder-glow {
    50% {
        opacity: .2;
    }
}

.placeholder {
    display: flex;
    flex-wrap: wrap;
    background-color: #f1f7f8;
    padding: 20px;
    border-radius: 8px;
}

.placeholder-line {
    background-color: #868e96;
    height: 15px;
    padding: 0 10px;
    margin-bottom: 10px;
    opacity: 0.6;
    margin-right: 10px;
    border-radius: 5px;
}

.placeholder-image {
    background-color: #868e96;
    padding: 0 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 210px;
    border-radius: 5px;
}

.placeholder-glow {
    animation: placeholder-glow 2s ease-in-out infinite;
}

.pl-xs {
    width: 10%;
}

.pl-s {
    width: 20%;
}

.pl-l {
    width: 40%;
}

.pl-xl {
    width: 60%;
}

.pl-xxl {
    width: 80%;
}

.pl-full {
    width: 100%;
}

/* Reels widget'
   ------------------------------------------------------------------------- */
   .reels-widget {
    overflow-x: auto;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
    touch-action: pan-x;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex: 1 1 auto;
    gap: 20px;
}

.reels_video {
    cursor: pointer;
    border-radius: 100%;
    box-sizing: border-box;
    border: 3px solid #ff9b9b;
    padding: 3px;
}

.reels_video.is-viewed {
    border-color: #bfc9da73;
}

.reels_video img {
    width: 73px;
    height: 73px;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    box-sizing: border-box;
}

.reels-modal {
    position: fixed;
    width: calc(100% - 200px);
    background-color: #fff;
    z-index: 9999;
    border-radius: 10px;
    display: block;
    top: 10px;
    left: 100px;
    height: calc(100vh - 20px);
}

.reels-modal__video {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.reels-modal__video video {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 300px);
}

.reels-modal__image {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.reels-modal__image img {
    height: auto;
    max-height: calc(100vh - 300px);
    max-width: 100%;
}

.reels-description {
    margin: 20px 0;
    padding: 0 20px;
    max-height: 100px;
    overflow: auto;
    white-space: pre-wrap;
}

.reels-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 30px;
    font-weight: 500;
}

.reels-modal__footer {
    margin: 20px 0;
    padding: 20px 20px 0 20px;
    border-top: 1px solid #ecf3ff;
}

@media screen and (max-width: 1000px) {
    .reels-modal {
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        border-radius: 0;
    }
}

@media screen and (max-width: 600px) {
    .reels-modal__header {
        height: 43px;
    }

    .reels-modal__video video {
        max-height: calc(100vh - 260px);
    }
}

/* Page: 'Visitor: Search salons'
   ------------------------------------------------------------------------- */
   .visitor__clinics::after {
    content: "";
    background-image: url("../images/naqua-q-blue-logo-vpt0zpF.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -99;
    opacity: 0.03;
}

.visitor__clinics {
    display: flex;
    align-items: center;
    flex-direction: column;
    /*padding: 50px 0;*/
    box-sizing: border-box;
    gap: 20px;
}

.clinics__header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    background-color: #fff;
}

.clinics__header__logo {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
}

.clinics__container {
    width: 100%;
    max-width: 1400px;
    min-height: calc(100vh - 238px);
    box-sizing: border-box;
    padding: 0 10px;
}

.clinics__container__header h1 {
    margin-top: 0;
    text-align: center;
}

.clinics__container__subtitle {
    margin-bottom: 10px;
    text-align: center;
}

.clinics__search {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.clinics__results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    grid-auto-rows: auto;
}

.clinic-card {
    display: flex;
    padding: 30px;
    box-sizing: border-box;
    flex-direction: column;
    row-gap: 30px;
    column-gap: 30px;
    /*background-color: #f4f6f8;*/
    background-color: #fff;
    border-radius: 14px;
    transition: all 0.3s;
    /*border: 1px solid #e9ecef;*/
    border: 1px solid #76d6e6;
    justify-content: space-between;
}

.clinic-card:hover {
    background-color: #fff;
    box-shadow: 0px 0px 63px -5px rgba(66, 68, 90, 0.2);
    transform: scale(1.03);
    border-color: transparent;
}

.clinic-card__avatar {
    display: flex;
    justify-content: center;
    width: 100%;
}

.clinic-card__avatar__letter {
    width: 150px;
    height: 150px;
    background-color: #16eeaf;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 30px;
    color: #2a7d65;
}

.clinic-card__name {
    font-size: 24px;
    font-weight: 500;
    min-height: 100px;
}

.clinic-card__license__status {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.clinic-card__license__status.active {
    color: #03e8a5;
}

.clinic-card__license__status.inactive {
    color: #e44141;
}

.clinic-card__address {
    display: flex;
    gap: 7px;
    margin-top: 10px;
    justify-self: flex-end;
}

.clinics__paginator {
    margin-top: 30px;
    border-top: 1px solid #e9ecef;
}

.clinics__no-results {
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    color: #666;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-top: 20px;
}

.clinics__footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    /*border-top: 1px solid #e9ecef;*/
    background-color: #102026;
    color: #fff;
    box-sizing: border-box;
}

.clinics__footer__content {
    max-width: 1400px;
    width: 100%;
}

@media screen and (max-width: 600px) {
    .clinics__header {
        padding: 10px;
        box-sizing: border-box;
    }

    .clinics__container {
        padding: 10px;
    }

    .clinics__container__header h1, .clinics__container__subtitle {
        text-align: left;
    }

    .clinic-card {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 20px 15px;
        row-gap: 20px;
        column-gap: 20px;
    }

    .clinic-card__avatar {
        justify-content: flex-start;
        width: auto;
        flex: 1;
    }

    .clinic-card__avatar__letter {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }

    .clinic-card__name {
        flex: 1 1 60%;
        min-height: initial;
    }

    .clinic-card__license {
        width: 100%;
    }

    .clinics__footer {
        padding: 40px 10px;
    }
}

/* Paginator
   ------------------------------------------------------------------------- */
.paginator {
    background: #fff;
    color: #3e4649;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: inherit;
}

.paginator__controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.paginator__controls .page-link {
    color: inherit;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
    transition: all 0.3s;
}

.paginator__controls .page-link:hover,
.paginator__controls .page-link + .active {
    background-color: #0f2026;
    color: #fff;
}

.paginator__controls .page-link.disabled {
    pointer-events: none;
}

.paginator__controls .dots {
    width: 40px;
    height: 40px;
    text-align: center;
    align-content: center;
    border-radius: 50%;
    font-weight: 500;
}

.page-link--icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

@media screen and (max-width: 600px) {
    div:has(.paginator__controls) {
        justify-self: center;
        width: 100%;
        box-sizing: border-box;
    }
}

/* PWA install info div
   ------------------------------------------------------------------------- */
.pwa-install-banner {
    background-color: #edf9fb;
    display: none;
    justify-content: center;
    padding: 10px;
    border-bottom: 3px solid var(--color-baby-blue);
}

.pwa-install-banner__content {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pwa-install-banner__content div {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.pwa-install-banner__content img {
    width: 50px;
    border-radius: 10px;
}

.pwa-install-button {
    background-color: #138cfe;
    padding: 12px 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

/* Page: 'Install app'
   ------------------------------------------------------------------------- */
.devices-list details {
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid #edf9fb;
    padding: 10px;
    border-radius: 7px;
    display: block;
    margin-bottom: 10px;
}

.devices-list details.selected-device {
    border-color: var(--color-baby-blue);
}

.devices-list details p {
    text-align: left;
}

.devices-list details img {
    max-width: 100%;
    height: auto;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 8px;
}

p.step {
    border-left: 5px solid var(--color-baby-blue);
    padding-left: 5px;
}

/* Page: 'Single product'
   ------------------------------------------------------------------------- */
.product-page {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px auto 60px auto;
    padding: 0 0 20px 0;
    max-width: 1500px;
    background-color: var(--background-color);
    border-radius: 10px;
}

.product-page__image-container,
.product-page__details-container {
    flex: 1 1 49%;
    max-width: 50%;
    box-sizing: border-box;
    /*border: 1px solid blue;*/
}

.product-page__image-container {
    text-align: center;
}

.product-page__image-container img {
    border-radius: 10px;
}

.product-page__details-container {
    margin-top: 30px;
}

.product-page__name,
.product-page__price,
.product-page__short-description,
.product-page__add-to-cart {
    padding: 0 30px;
}

.product-page__name {
    font-size: 27px;
    font-weight: 500;
    line-height: 27pt;
}

.product-page__price {
    margin: 10px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-page__price__regular {
    font-size: 25px;
    font-weight: 600;
    color: var(--color-baby-blue);
}

.product-page__price__before-promotion {
    font-size: var(--font-size-base);
    color: var(--color-gray-light);
    text-decoration: line-through;
}

.product-page__features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
    text-align: center;
}

.feature-item {
    min-width: 130px;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #f3f3f3;
}

.feature-item  div:first-child {
    font-weight: 600;
}

.product-page__add-to-cart {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;

    /*position: fixed;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*width: 100%;*/
    /*box-sizing: border-box;*/
    /*background-color: var(--background-color);*/
    /*padding: 10px;*/
    /*box-shadow: 0px -14px 23px -5px rgba(66, 68, 90, 0.2);*/
    /*-webkit-box-shadow: 0px -14px 23px -5px rgba(66, 68, 90, 0.2);*/
    /*-moz-box-shadow: 0px -14px 23px -5px rgba(66, 68, 90, 0.2);*/
    /*justify-content: center;*/
}

/* Quantity select */
.quantity-select {
    display: flex;
    align-items: center;
    flex: 1 1 100%;
}

.quantity-select button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #676565;
    background-color: #edf0f2;
}

.quantity-select button span {
    font-size: 20px!important;
}

.quantity-select input::-webkit-outer-spin-button,
.quantity-select input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-select input {
    text-align: center;
    max-width: 50px;
    border: none;
    font-size: var(--font-size-large);
    font-weight: 300;
}

/* Button add to cart */
button.button--product-add-to-cart {
    background-color: #1f1f1f;
    color: #fff;
    padding: 15px 10px;
    max-width: 400px;
    width: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

button.button--product-add-to-cart:hover,
button.button--product-add-to-cart.already-in-cart {
    background-color: var(--color-baby-blue);
}

button.button--product-add-to-cart span.icon {
    font-size: 15px;
}

a.link-cart {
    width: 50px;
    height: 50px;
    background-color: #edf0f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #676565;
    font-size: 25px;
    position: relative;
}

a.link-cart .cart-items-link-cart {
    width: 22px;
    height: 22px;
    background-color: #ff9b9b;
    color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size-small);
    position: absolute;
    top: -8px;
    right: 0;
}

.product-page__description-container {
    width: 100%;
    border-top: 1px solid #f1f1f5;
    margin-top: 20px;
    padding-top: 20px;
}

.product-page__description-container > h2 {
    border-top: 1px solid #f1f1f5;
    padding: 20px 10px;
    text-align: center;
}

.product-page__description-container__content {
    padding: 0 30px;
}

.product-page__description-container__content ul.number-list {
    list-style-type: decimal;
}



@media screen and (max-width: 600px) {
    .product-page {
        margin: 0 0 162px 0;
        gap: 0;
    }

    .product-page__image-container img {
        border-radius: 0;
    }

    .product-page__image-container,
    .product-page__details-container {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .product-page__details-container {
        margin: -40px 0 0 0;
        background: #fff;
        border-radius: 30px 30px 0 0;
        padding-top: 15px;
        box-shadow: 0px -10px 24px -20px rgb(55, 55, 58);
    }

    .product-page__add-to-cart {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -1px;
        width: 100%;
        box-sizing: border-box;
        background-color: var(--background-color);
        padding: 20px 10px;
        box-shadow: 0px -14px 23px -5px rgba(66, 68, 90, 0.2);
        -webkit-box-shadow: 0px -14px 23px -5px rgba(66, 68, 90, 0.2);
        -moz-box-shadow: 0px -14px 23px -5px rgba(66, 68, 90, 0.2);
    }

    .product-page__name,
    .product-page__price,
    .product-page__short-description {
        padding: 0 10px;
    }

    .product-page__description-container__content {
        padding: 0 10px;
    }

    .product-page__description-container {
        margin-top: 0;
    }
}

/* LiveComponent: 'Error'
   ------------------------------------------------------------------------- */
#live-component-error {
    padding: 20px!important;
}

#live-component-error iframe {
    border-color: transparent;
}

/* Page: 'Comment form error'
   ------------------------------------------------------------------------- */

/* Backdrop for modal and popup
   ------------------------------------------------------------------------- */
.backdrop {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.70);
    align-items: center;
    justify-content: center;
    display: none;
}

/* Permit notification banner
   ------------------------------------------------------------------------- */

.permit-notification-popup {
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.permit-notification-popup__bell-image {
    width: 130px;
    height: 130px;
    border-radius: 100px;
    background-color: #bc7eff4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.permit-notification-popup__content {
    text-align: center;
}

.permit-notification-popup h3 {
    font-size: 24px;
}

.permit-notification-popup__content p {
    font-size: 17px;
    color: #e2d9fd;
}

.permit-notification-popup__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.permit-notification-popup__buttons button {
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 600;
}

.permit-notification-popup__buttons button.allow {
    background-color: #fff;
}

.permit-notification-popup__buttons button.allow:hover {
    color: var(--color-baby-blue);
}

.permit-notification-popup__buttons button.denied {
    color: #bcb1c6;
}

.permit-notification-popup__buttons button.denied:hover {
    color: #fff;
}

@media screen and (max-width: 600px) {
    .permit-notification-popup {
        height: 100vh;
        justify-content: center;
        padding: 20px;
        border-radius: 0;
    }

    .permit-notification-popup__buttons {
        justify-content: center;
    }

    .permit-notification-popup__buttons button {
        width: 100%;
    }
}

/* Slide switch'
   ------------------------------------------------------------------------- */
label.switch {
    position: relative;
    width: 65px;
    height: 34px;
    display: inline-block;
}

label.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

label.switch .slider {
    background-color: #afafaf;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 35px;
    transition: all 0.3s;
}

label.switch .slider:before {
    content: '';
    position: absolute;
    height: 26px;
    width: 26px;
    background-color: #fff;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    transition: all 0.3s;
}

label.switch input:checked + .slider:before {
    transform: translateX(30px);
}

label.switch input:checked + .slider {
    background-color: #38af48;
}

/* Page: 'Symposium'
   ------------------------------------------------------------------------- */
.symposium .column-right {
    /*background: linear-gradient(135deg, #030434, #0f3894);*/
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3CradialGradient id='a' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%236D27C9'/%3E%3Cstop offset='1' stop-color='%2305114F'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='750' x2='1550' y2='750'%3E%3Cstop offset='0' stop-color='%23391c8c'/%3E%3Cstop offset='1' stop-color='%2305114F'/%3E%3C/linearGradient%3E%3Cpath id='s' fill='url(%23b)' d='M1549.2 51.6c-5.4 99.1-20.2 197.6-44.2 293.6c-24.1 96-57.4 189.4-99.3 278.6c-41.9 89.2-92.4 174.1-150.3 253.3c-58 79.2-123.4 152.6-195.1 219c-71.7 66.4-149.6 125.8-232.2 177.2c-82.7 51.4-170.1 94.7-260.7 129.1c-90.6 34.4-184.4 60-279.5 76.3C192.6 1495 96.1 1502 0 1500c96.1-2.1 191.8-13.3 285.4-33.6c93.6-20.2 185-49.5 272.5-87.2c87.6-37.7 171.3-83.8 249.6-137.3c78.4-53.5 151.5-114.5 217.9-181.7c66.5-67.2 126.4-140.7 178.6-218.9c52.3-78.3 96.9-161.4 133-247.9c36.1-86.5 63.8-176.2 82.6-267.6c18.8-91.4 28.6-184.4 29.6-277.4c0.3-27.6 23.2-48.7 50.8-48.4s49.5 21.8 49.2 49.5c0 0.7 0 1.3-0.1 2L1549.2 51.6z'/%3E%3Cg id='g'%3E%3Cuse href='%23s' transform='scale(0.12) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.2) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.25) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(0.3) rotate(-20)'/%3E%3Cuse href='%23s' transform='scale(0.4) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(0.5) rotate(20)'/%3E%3Cuse href='%23s' transform='scale(0.6) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.7) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.835) rotate(-40)'/%3E%3Cuse href='%23s' transform='scale(0.9) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(1.05) rotate(25)'/%3E%3Cuse href='%23s' transform='scale(1.2) rotate(8)'/%3E%3Cuse href='%23s' transform='scale(1.333) rotate(-60)'/%3E%3Cuse href='%23s' transform='scale(1.45) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(1.6) rotate(10)'/%3E%3C/g%3E%3C/defs%3E%3Cg %3E%3Cg transform=''%3E%3Ccircle fill='url(%23a)' r='3000'/%3E%3Cg opacity='0.5'%3E%3Ccircle fill='url(%23a)' r='2000'/%3E%3Ccircle fill='url(%23a)' r='1800'/%3E%3Ccircle fill='url(%23a)' r='1700'/%3E%3Ccircle fill='url(%23a)' r='1651'/%3E%3Ccircle fill='url(%23a)' r='1450'/%3E%3Ccircle fill='url(%23a)' r='1250'/%3E%3Ccircle fill='url(%23a)' r='1175'/%3E%3Ccircle fill='url(%23a)' r='900'/%3E%3Ccircle fill='url(%23a)' r='750'/%3E%3Ccircle fill='url(%23a)' r='500'/%3E%3Ccircle fill='url(%23a)' r='380'/%3E%3Ccircle fill='url(%23a)' r='250'/%3E%3C/g%3E%3Cg transform='rotate(-140.4 0 0)'%3E%3Cuse href='%23g' transform='rotate(10)'/%3E%3Cuse href='%23g' transform='rotate(120)'/%3E%3Cuse href='%23g' transform='rotate(240)'/%3E%3C/g%3E%3Ccircle fill-opacity='0.13' fill='url(%23a)' r='3000'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center,
        #05114F;
    background-size: cover;
}

.symposium .column-right .view__header__title {
    color: #fff;
    font-weight: 700;
    font-size: 45px;
    line-height: 40px;
    margin: 20px 0;
}

.tickets__list {
    display: flex;
    gap: 20px;
    /*grid-auto-flow: column;*/
    padding-bottom: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.ticket {
    min-height: 400px;
    border-radius: 20px;
    background-color: #fff;
    padding: 25px;
    box-sizing: border-box;
    flex: 0 0 390px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 15%);
}

@media screen and (max-width: 600px) {
    .ticket {
        flex: 0 0 93%;
    }
}

.ticket__header {
    font-weight: 700;
    font-size: 20px;
}

.ticket__header img {
    border-radius: 20px;
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.ticket__content {
    /*margin: 30px 0;*/
    margin: 20px 0;
    border-top: 2px dashed #DF5966;
    border-bottom: 2px dashed #DF5966;
    /*padding: 30px 0;*/
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1.33fr 1fr;
    /*gap: 20px;*/
    gap: 10px;
    grid-auto-rows: auto;
}

.ticket__content .ticket__element:first-child {
    grid-column: span 2;
}

.ticket__element .line-header {
    color: #817f7f;
    font-size: 14px;
}

.ticket__element .line-text {
    font-weight: 600;
}

.ticket__footer {
    text-align: center;
}

.ticket__number {
    font-weight: 700;
    font-size: 65px;
    color: #e5e7ec;
    line-height: 65px;
    background: linear-gradient(90deg, #DF5966, #D35AE0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.agenda {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.agenda__row {
    display: flex;
    gap: 10px;
}

.agenda__time,
.agenda__description {
    padding: 10px;
    border-radius: 10px;
    color: #f1d38b;
    background: rgba(0, 0, 0, 0.2);
}

.agenda__time {
    border: 2px solid #394fbc;
    flex: 0 0 100px;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    box-shadow: inset 0 0 10px -3px #0059ff;
}

.agenda__description {
    flex: 1;
    border: 2px solid #753eaa;
    box-shadow: inset 0 0 10px -4px #ff02cc;
}

.agenda__description > .highlight {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}

.agenda__description > .session:not(:last-child) {
    border-bottom: 1px solid #753eaa;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
    .agenda__time {
        flex: 0 0 90px;
    }
}

/* Birthday banner'
   ------------------------------------------------------------------------- */
.banner-birthday {
    min-height: 200px;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #f1f1f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-birthday__col img {
    max-width: 300px;
    width: 100%;
}

.banner-birthday h2 {
    margin: 0;
}

.banner-birthday__col p {
    color: #757373;
}

.banner-birthday__button {
    padding: 13px 30px;
    text-decoration: none;
    background: linear-gradient(90deg, #fbab26, #fc800b);
    border-radius: 10px;
    transition: all 0.3s;
    color: #fff;
    /*text-transform: uppercase;*/
    font-weight: 500;
    box-shadow: 0px 5px 20px 0px rgba(251, 171, 38, 0.8);
}

.banner-birthday__button:hover {
    box-shadow: 0px 5px 20px 8px rgba(251, 171, 38, 0.7);
    transition: all 0.3s;
}

@media screen and (max-width: 600px) {
    .banner-birthday {
        flex-direction: column;
    }

    .banner-birthday__col {
        text-align: center;
    }
    .banner-birthday__col p {
        text-align: left;
    }

    .banner-birthday__col:first-child {
        order: 2;
    }

    .banner-birthday__col:last-child {
        order: 1;
    }

    .banner-birthday__col img {
        width: 500px;
    }
}

/* Birthday page
   ------------------------------------------------------------------------- */
.birthday-page .column-right {
    background-image: linear-gradient(225deg, #E3FDF5 0%, #FFE6FA 100%);
    /*background-image: linear-gradient(to bottom, #fffefa 0%, #fffdfc 100%);*/
}

.birthday-page .column-right .view__header__title {
    /*color: #fff;*/
    font-weight: 700;
    font-size: 45px;
    line-height: 40px;
    margin: 20px 0;
}

#birthday-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.birthday__landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
}

.birthday__landing h1 {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 3.2rem;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.birthday__landing h2 {
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.birthday__gift-box {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #eaecec;
    padding: 20px;
    display: flex;
    column-gap: 30px;
    row-gap: 10px;
    margin: 30px 0 15px 0;
    max-width: 450px;
    flex-wrap: wrap;
    justify-content: center;
}


.birthday__gift-box .gift-box__content {
    flex: 1 1 200px;
}

.birthday__gift-box .gift-box__content h3 {
    font-weight: 600;
    margin: 0;
}

@media screen and (max-width: 600px) {
    .birthday__gift-box .gift-box__content {
        text-align: center;
    }
}

.birthday__gift-box .gift-box__image {
    border-radius: 16px;
    width: 100%;
    max-width: 170px;
    height: 100%;
    flex: 1 1 120px;
    background: #f4f3f1;
    padding: 10px;
}

.birthday__gift-box p {
    margin: 0 0 10px 0;
}

p.birthday-text {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.birthday__landing__crew img {
    width: 100%;
    border-radius: 16px;
}

.birthday__info {
    display: flex;
    gap: 30px;
    justify-content: space-around;
    width: 100%;
    font-size: 18px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.birthday__info__date {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #eaecec;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

#birthday-page {
    position: relative;
    z-index: 3;
}

#birthday-page .ballons {
    position: absolute;
    z-index: -1;
    animation: show 2.5s ease-out forwards, wiggle 3s ease-in-out infinite;
    animation-delay: 0s, 2.5s;
}

@keyframes show {
   0% {
       transform: translatey(200px);
       opacity: 0;
   }
    100% {
        transform: translatey(0);
        opacity: 1;
    }
}

@keyframes wiggle {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(4deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

#birthday-page .ballons.left {
    left: 20px;
}

#birthday-page .ballons.right {
    right: 20px;
}

@media screen and (max-width: 600px) {
    #birthday-page .ballons {
        max-width: 200px;
    }
}

/* Buy starter package banner
   ------------------------------------------------------------------------- */
.starter-package-banner {
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
    border-radius: 15px;
    padding: 30px;
    color: #fff;
    max-width: 400px;
    transition: all 0.3s;
}

.starter-package-banner h2 {
    margin: 0;
}

.starter-package-banner p {
    margin: 0 0 30px 0;
}

.starter-package-banner a {
    color: #213045;
    background: #fff;
    border-radius: 15px;
}

/* Page: 'Starter package'
   ------------------------------------------------------------------------- */
.starter-package {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.starter-package h1, h2, h3 {
    margin: 0;
    padding: 0;
}

.starter-package p {
    max-width: 750px;
}

.button--buy-package {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    height: 40px;
    padding: 10px 20px;
    background: var(--color-baby-blue);
    color: #fff;
    border-radius: 50px;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .button--buy-package {
        width: 90%;
    }
}

/* Colored badges
   ------------------------------------------------------------------------- */
.badge {
    border-radius: 30px;
    width: fit-content;
    padding: 5px 20px;
    font-weight: 500;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.badge-success {
    --bg-color: hsl(140, 60%, 90%);
    --text-color: hsl(140, 60%, 30%);
}

.badge-info {
    --bg-color:  hsl(210, 70%, 90%);
    --text-color:  hsl(210, 70%, 30%);
}

.badge-warning {
    --bg-color: hsl(30, 100%, 90%);
    --text-color: hsl(30, 100%, 30%);
}

.badge-danger {
    --bg-color: hsl(0, 100%, 85%);
    --text-color: hsl(0, 100%, 25%);
}

/* OrderFinalization module
   ------------------------------------------------------------------------- */
.order-finalization .form-control {
    gap: 0;
}
.order-finalization .window {
    width: 100%;
}

.order-finalization .form-control__row {
   padding: 10px 0;
}

.payments {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payments__method {
    width: 100%;
    display: flex;
    position: relative;
}

.payments__method label {
    width: 100%;
    border: 1px solid #eeedf0;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    cursor: pointer;
}

.payments__method label img {
    max-width: 60px;
    max-height: 60px;
    margin-right: 20px;
}

.payments__method input[type="radio"] {
    position: absolute;
    right: 10px;
    top: 49%;
    width: 1rem;
    height: 1rem;
    transform: translateY(-50%);
    accent-color: #007bff;
}

.payments__method input[type="radio"]:checked ~ label {
    border-color: #406ab9;
    background-color: #ecf3fd;
    border-width: 2px;
}


.przelewy-24 + label {
    /*position: relative;*/
}

.przelewy-24 + label:before {
    position: absolute;
    content: "Nowość";
    top: -1px;
    right: -1px;
    padding: 0px 20px;
    font-weight: 500;
    background: #f44543;
    color: #fff;
    border-radius: 0 10px 0 10px;
    font-size: 14px;
}

/* Unpaid orders widget
   ------------------------------------------------------------------------- */
.widget-unpaid__orders {
    border-color: #e81f1f;
}

.unpaid__order:not(:last-child) {
    border-bottom: 1px solid #ecf3ff;
    margin-bottom: 10px;
    padding: 0 0 20px 0;
}

.unpaid__order__title {
    color: rgb(200, 79, 19);
}

.button--order-pay {
    background: rgb(252, 112, 44);
    box-sizing: border-box;
    padding: 10px 20px;
    display: block;
    width: fit-content;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .button--order-pay {
        width: 100%;
    }
}

/* Payment checker
   ------------------------------------------------------------------------- */
.payment-checker__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-checker__icon {
    font-size: 20px;
    display: block;

}

.payment-checker__header h1 {
    margin: 0;
    font-size: 25px;
}

.payment-checker__text {
    max-width: 600px;
}

/* Order list
   ------------------------------------------------------------------------- */
.order-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 5px;
    border-bottom: 1px solid #f1f1f5;
}

.order-item__header {
    display: flex;
    justify-content: space-between;
}

.order-item__number {
    font-weight: 500;
}

.order-item__date {
    font-size: var(--font-size-small);
    color: #a6adb8;
}

.order-item__body {
    display: flex;
    gap: 15px;
    align-items: center;
}

.order-item__body__action {
    display: flex;
    margin-left: auto;
}

.order-item__body__status {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.order-item__body__amount {
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .order-item__body {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-item__body__action {
        width: 100%;
        margin-left: inherit;
    }
}

/* Product template classes
   ------------------------------------------------------------------------- */
.prd-u-d-f { display: flex; }
.prd-u-g-20 { gap: 20px; }
.prd-u-jc-sb { justify-content: space-between; }
.prd-u-p-10 { padding: 10px; }
.prd-u-ai-c { align-items: center; }
.prd-u-ta-c { text-align: center; }
.prd-u-fs-lg { font-size: 26px; line-height: 23pt }
.prd-u-fs-md { font-size: 21px; line-height: 23pt }
.prd-u-fs-sm { font-size: 14px; line-height: 14pt }
.prd-u-fw-600 { font-weight: 600; }
.prd-u-brd-1 { border: 1px solid #d2d2d5; }
.prd-u-mtb-20 { margin-top: 20px; margin-bottom: 20px; }
.prd-u-mt-20 { margin-top: 20px; }

.prd-l-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.prd-l-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.prd-l-grid-auto {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.prd-l-grid-auto > * {
    flex: 1 1 auto;
}

.prd-c-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

/* Symposium 2026 page
   ------------------------------------------------------------------------- */
section.symp {
    position: relative;
}

section.symp .sticky-title {
    position: sticky;
    top: 70px;
    background: #fff;
    z-index: 1;
}

section.symp img {
    max-width: 100%;
    border-radius: 10px;
}

.symp-icon svg {
    display: block;
    height: 2em;
    position: relative;
    width: 2em;
    margin-bottom: 20px;
}

.symp-event-theme img {
    max-width: 100%;
}

.symp-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.symp-grid-img-text {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid #d2d2d5;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .symp-grid-img-text {
        grid-template-columns: 1fr;
    }

    section.symp .sticky-title {
        top: 43px;
    }
}

.symp-ticket {
    border: 1px solid #d2d2d5;
    border-radius: 10px;
}

.symp-ticket__header,
.symp-ticket__body {
    padding: 20px;
}

.symp-ticket__header {
    border-bottom: 1px solid #d2d2d5;
}

.symp-ticket__price {
    font-size: 45px;
    font-weight: 600;
}

.symp-ticket__text-small {
    font-size: 14px;
    font-weight: 500;
}

.symp-ticket__type--expert {
    background: #4eb4f6;
    color: #fff;
}

.symp-ticket__type--default {
    background: #ead4d6;
    color: #222222;
}

.symp-ticket__type--vip {
    background: #282828;
    color: #fff;
}

.symp-ticket ul {
    list-style-type: none;
    padding: 0;
}

.symp-ticket ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    gap: 7px;
}

.symp-ticket ul li span {
    flex: 0 0 auto;
}

.symp-ticket__body .button--fill {
    padding: 15px;
    display: block;
    text-align: center;
    font-weight: 600;
    align-self: flex-end;
}

a.btn--show-tickets {
    background: #ff4fd6;
    border-radius: 30px;
    padding: 15px 50px;
    width: fit-content;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Symposium home screen banner'
   ------------------------------------------------------------------------- */
.baner-symposium {
    background: linear-gradient(135deg, #fffbfd, #fff4f8);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
}

.baner-symposium:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, #ff4fd6, #f5d7fd);
}


.baner-symposium__content {
    margin-top: 20px;
}

.baner-symposium h2 {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 27px;
    text-transform: uppercase;
}

.baner-symposium__subtitle {
    font-size: 24px;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .baner-symposium__max-width-on-mobile a {
        width: 100%;
    }
}
