

/* Start:/local/components/dev/page/templates/loyalty_program/style.css?17790961487434*/
/* Программа лояльности — в линии с case / pageMain__title / .btn из _/sys/css/style.css */

.lp {
    padding-bottom: 40px;
}

.lp__title {
    margin-bottom: 50px;
}

.lp__title h1 {
    display: block;
}

.lp__section-title {
    margin: 50px 0 30px;
}

.lp__title + .lp__section-title {
    margin-top: 80px;
}

.lp__section-title h2 {
    display: block;
}

.lp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lp-card {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 5px;
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 170px;
}

.lp-card__ico {
    color: #240E00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
}

.lp-card__ico svg {
    width: 40px;
    height: 40px;
}

.lp-card__text {
    color: #240E00;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.lp__cta-row {
    margin: 32px 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.lp__cta {
    font-weight: 500;
    max-width: 283px;
    width: 100%;
    min-height: 50px;
    text-transform: uppercase;
}

.lp-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lp-tier {
    border-radius: 5px;
    padding: 24px 22px;
    color: #fff;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lp-tier__name {
    font-family: "Cormorant SC", serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 12px;
}

.lp-tier__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.lp-tier__note {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 18px;
}

.lp-tier--base {
    background: linear-gradient(115deg, #240E00 0%, #4a3220 100%);
}

.lp-tier--silver {
    background: linear-gradient(114deg, #575B64 0%, #8C919D 98.91%);
}

.lp-tier--gold {
    background: linear-gradient(115deg, #7F6A50 0%, #CBB793 100%);
}

.lp-note {
    color: #240E00;
    opacity: 0.75;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    margin: 20px 0 0;
}

.lp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lp-stat {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 5px;
    padding: 28px 18px;
    text-align: center;
    height: 170px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-stat__value {
    color: #240E00;
    font-family: "Cormorant SC", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
}

.lp-stat__desc {
    color: #240E00;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.lp-faq details {
    border: none;
    border-bottom: 1px solid rgba(36, 14, 0, 0.2);
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
}

.lp-faq details summary {
    color: #240E00;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 30px 16px 4px;
    list-style: none;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.lp-faq details summary::-webkit-details-marker {
    display: none;
}

.lp-faq details summary::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #240E00;
    border-bottom: 1.5px solid #240E00;
    opacity: 0.55;
    transform: translateY(-65%) rotate(-45deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lp-faq details[open] summary::after {
    transform: translateY(-25%) rotate(45deg);
    opacity: 1;
}

.lp-faq details p {
    color: #240E00;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 0 16px;
    padding: 0 4px 4px;
}

.lp-faq details p strong {
    font-weight: 600;
}

.lp-faq a {
    color: #240E00;
    opacity: 0.85;
    border-bottom: 1px solid rgba(36, 14, 0, 0.55);
    text-decoration: none;
    word-break: break-all;
}

.lp-faq a:hover {
    opacity: 1;
    border-color: transparent;
}

@media screen and (max-width: 992px) {
    .lp__section-title {
        margin: 50px 0 20px;
    }

    .lp__title + .lp__section-title {
        margin-top: 50px;
    }

    .lp-cards,
    .lp-stats,
    .lp-tiers {
        gap: 10px;
    }

    .lp-card {
        padding: 18px 10px;
        min-height: 120px;
    }

    .lp-tier {
        padding: 18px 14px;
        min-height: 170px;
    }

    .lp-tier__name {
        font-size: 26px;
    }

    .lp-tier__desc {
        font-size: 14px;
    }

    .lp-tier__note {
        font-size: 12px;
    }

    .lp-stat {
        padding: 18px 10px;
    }

    .lp-stat__value {
        font-size: 22px;
    }

    .lp-card__text,
    .lp-stat__desc {
        font-size: 14px;
        line-height: 1.4;
    }

    .lp__cta {
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .lp__title {
        margin-left: 40px;
        margin-bottom: 40px;
    }

    .lp__section-title {
        margin-left: 40px;
    }

    .lp__cta-row {
        margin-left: 40px;
    }

    .lp__cta {
        max-width: 256px;
    }
}

@media screen and (max-width: 580px) {
    .lp__title {
        margin-left: 0;
    }

    .lp__section-title {
        margin-left: 0;
    }

    .lp__cta-row {
        margin-left: 0;
    }

    .lp-note br {
        display: none;
    }

    .lp-cards {
        grid-template-columns: 1fr;
    }

    .lp-card {
        flex-direction: row;
        justify-content: flex-start;
        gap: 18px;
        padding: 20px 18px;
        min-height: 0;
        text-align: left;
    }

    .lp-card__ico {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .lp-card__text {
        font-size: 16px;
    }

    .lp-tiers {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-tier {
        display: grid;
        grid-template-rows: auto 1fr auto;
        text-align: left;
        min-height: 208px;
        padding: 22px 20px;
        border-radius: 5px;
    }

    .lp-tier__name {
        font-size: 28px;
        margin-bottom: 0;
    }

    .lp-tier__desc {
        align-self: center;
        justify-self: start;
        font-size: 15px;
        line-height: 1.45;
        margin: 12px 0;
    }

    .lp-tier__note {
        align-self: end;
        margin-top: 0;
        font-size: 13px;
        opacity: 0.9;
    }

    .lp-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-stat {
        padding: 16px 20px;
        height: auto;
        min-height: 120px;
    }

    .lp-stat__value {
        font-size: 26px;
        margin-bottom: 0;
    }

    .lp-stat__desc {
        font-weight: 400;
        margin-top: 10px;
    }
}

/* End */


/* Start:/local/components/dev/loyalty.card.register/templates/.default/style.css?17793952308109*/

#lpCardReg-popup .h4{
    font-size: 25px;
    line-height: 30px;
    display: block;
}
.popup.lpCardReg {
    max-width: 480px;
    overflow: visible;
}

/* Выпадающий список внутри модалки Fancybox — не обрезать контентом слайда */
.fancybox__slide:has(.popup.lpCardReg) .fancybox__content {
    overflow: visible;
}

.lpCardReg__inner {
    padding: 0;
}

.lpCardReg__title {
    margin-bottom: 10px;
}

.lpCardReg__lead {
    margin-bottom: 25px;
}

.lpCardReg__step[hidden] {
    display: none !important;
}

.lpCardReg__row {
    margin-bottom: 10px;
}

.lpCardReg__row--gender {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
}

.lpCardReg__label {
    margin-bottom: 0;
    font-size: 18px;
}

.lpCardReg__req {
    color: #240E00;
}

.lpCardReg__input {
    caret-color: auto !important;
}

.lpCardReg .input.--date .air-datepicker.-inline- {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lpCardReg .input.--date.--open .air-datepicker.-inline- {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Select2 как у .input.--light .input__area — без «чужой» рамки и синей подсветки темы */
.select2-container--default.lpCardRegS2 .select2-selection--single {
    background-color: #E0DFDB;
    border: 1px solid #240E00;
}

.select2-container.lpCardRegS2 .select2-selection--single {
    height: auto;
    min-height: 44px;
    border: 1px solid #240E00;
    border-radius: 5px;
    background: #E0DFDB;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.select2-container.lpCardRegS2 .select2-selection--single:focus {
    outline: none;
}

.select2-container.lpCardRegS2 .select2-selection--single .select2-selection__rendered {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    padding: 14px 36px 14px 20px;
    color: #240E00;
}

.select2-container.lpCardRegS2 .select2-selection--single .select2-selection__placeholder {
    color: #707070;
}

.select2-container.lpCardRegS2 .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 6px;
}

.select2-container.lpCardRegS2 .select2-selection--single .select2-selection__arrow b {
    border-color: #240E00 transparent transparent transparent;
}

.select2-container--open.lpCardRegS2 .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #240E00 transparent;
}

.select2-container--open.lpCardRegS2 .select2-selection--single,
.select2-container--focus.lpCardRegS2 .select2-selection--single {
    border-color: #240E00 !important;
    outline: none !important;
    box-shadow: none !important;
}

.select2-container.select2-container--open.lpCardReg-dropdown-up .select2-selection--single,
.select2-container--open .lpCardRegS2-dropdown {
    z-index: 10010;
}

.lpCardRegS2-dropdown,
.lpCardRegS2-dropdown.select2-dropdown {
    z-index: 10010;
    border: 1px solid #240E00;
    border-radius: 5px;
    color: #240E00;
    background: #E0DFDB;
}

.lpCardRegS2-dropdown .select2-results {
    background: #E0DFDB;
}

.lpCardRegS2-dropdown .select2-results__options {
    max-height: 280px;
    color: #240E00;
    background: #E0DFDB;
}

.lpCardRegS2-dropdown .select2-results__option {
    display: block;
    box-sizing: border-box;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 13px !important;
    font-weight: 500;
    line-height: 1.4 !important;
    color: #240E00 !important;
    padding: 8px 12px;
    background: #E0DFDB !important;
    white-space: normal;
    word-wrap: break-word;
}

.lpCardRegS2-dropdown .select2-results__option--highlighted[aria-selected],
.lpCardRegS2-dropdown .select2-results__option--highlighted {
    background: #d4d0cc !important;
    color: #240E00 !important;
}

.lpCardRegS2-dropdown .select2-results__option[aria-selected=true] {
    background: #cbc7c3 !important;
    color: #240E00 !important;
}

.lpCardRegS2-dropdown .select2-search--dropdown {
    padding: 8px;
}

.lpCardRegS2-dropdown .select2-search--dropdown .select2-search__field {
    border: 1px solid #240E00;
    border-radius: 5px;
    padding: 8px 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #240E00;
    background: #E0DFDB;
    outline: none;
    box-shadow: none;
}

.lpCardRegS2-dropdown .select2-search--dropdown .select2-search__field:focus {
    border-color: #240E00;
}

.lpCardReg__fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 10px;
}

.lpCardReg__legend {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    color: #240E00;
}

.lpCardReg__hint {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #707070;
}

.lpCardReg__check {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    margin-right: 14px;
    cursor: pointer;
    color: #240E00;
}

.lpCardReg__radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #240E00;
    cursor: pointer;
}

.lpCardReg__radio input[type=radio],
.lpCardReg__check input[type=checkbox] {
    appearance: auto !important;
    -webkit-appearance: radio !important;
    -moz-appearance: auto !important;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid #9C9893;
    background: #fff;
    cursor: pointer;
    flex: 0 0 16px;
}

.lpCardReg__check input[type=checkbox] {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
}

.lpCardReg__check--block {
    display: flex;
    margin: 0 0 16px;
}

.lpCardReg__error {
    box-sizing: border-box;
    color: #240E00;
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 14px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #B7B3AE;
    border-radius: 5px;
}

.lpCardReg__error a,
.lpCardReg__error .lpCardReg__link {
    color: #240E00;
    border-bottom: 1px solid #240E00;
    text-decoration: none;
}

.lpCardReg__error a:hover,
.lpCardReg__error .lpCardReg__link:hover {
    border-color: transparent;
}

.lpCardReg__error .lpCardReg__link:focus-visible {
    outline: 1px solid #240E00;
    outline-offset: 2px;
    border-radius: 2px;
}

.lpCardReg__submit {
    width: 100%;
    margin-top: 20px;
}

.lpCardReg__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.lpCardReg__resend {
    margin-top: 16px;
    font-size: 13px;
    color: #707070;
}

.lpCardReg__link {
    background: none;
    border: 0;
    padding: 0;
    color: #240E00;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 16px;
}

.lpCardReg__link:hover {
    color: #240E00;
    text-decoration: none;
}

.lpCardReg__link:focus-visible {
    outline: 1px solid #240E00;
    outline-offset: 2px;
    border-radius: 2px;
}

.lpCardReg__timer {
    margin-left: 8px;
}

.lpCardReg__qr {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}

.lpCardReg__qr-img {
    border: 1px solid #B7B3AE;
    border-radius: 5px;
}

.lpCardReg__serial {
    text-align: center;
    font-size: 14px;
    color: #240E00;
    margin: 0 0 12px;
}

.lpCardReg__cardlink {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.lpCardReg__cardlink:hover {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .popup.lpCardReg {
        max-width: 100%;
    }
    .fancybox__content {
        max-height:none;
    }
}

/* End */


/* Start:/_/sys/css/select2/select2.min.css?177867057414967*/
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

/* End */
/* /local/components/dev/page/templates/loyalty_program/style.css?17790961487434 */
/* /local/components/dev/loyalty.card.register/templates/.default/style.css?17793952308109 */
/* /_/sys/css/select2/select2.min.css?177867057414967 */
