.service {
    padding: 88px 0 0 0
}

.service form a{
    color: #f50000;
}

.service form a:hover{
    text-decoration: underline;
}

.service .d-n {
    display: none
}

.service__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.service__row--3 {
    grid-template-columns: repeat(3, 1fr)
}

@media(max-width: 768px) {
    .service__row {
        grid-template-columns: repeat(1, 1fr)
    }

    .service__row--3 {
        grid-template-columns: repeat(1, 1fr)
    }
}

.service__label {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin: 0 0 16px !important
}

.service__product-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 48px
}

.service__product-image {
    padding: 16px;
    background-color: #fff
}

.service__product-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase
}

.service__product hr {
    margin: 48px 0;
    background-color: white;
}

.service__report {
    margin-top: 32px
}

.service__response {
    padding: 16px 8px;
    background-color: #e7f6ec;
    color: #096534;
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.service__result {
    padding: 32px;
    background-color: #151515;
    margin-top: 32px;
    border: 1px solid #323232;
}

.service__result-info {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px
}

.service__result--empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px
}

.service__form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.service__form-row+.service__form-row {
    margin-top: 24px
}

.service__form-row input,
.service__form-row textarea {
    border: 1px solid #6f727a;
    padding: 12px 16px;
    background-color: unset;
    height: unset;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 100%;
}

.service__form-row input:-webkit-autofill,
.service__form-row input:-webkit-autofill:hover,
.service__form-row input:-webkit-autofill:focus,
.service__form-row input:-webkit-autofill:active,
.service__form-row textarea:-webkit-autofill,
.service__form-row textarea:-webkit-autofill:hover,
.service__form-row textarea:-webkit-autofill:focus,
.service__form-row textarea:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: inset 0 0 30px 30px hsla(0, 0%, 100%, 0) !important;
    box-shadow: inset 0 0 30px 30px hsla(0, 0%, 100%, 0) !important
}

.service__form-row input[type=file],
.service__form-row textarea[type=file] {
    opacity: 0;
    visibility: hidden;
    display: none
}

.service__form-row input::-webkit-input-placeholder,
.service__form-row textarea::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px
}

.service__form-row input::-moz-placeholder,
.service__form-row textarea::-moz-placeholder {
    color: #fff;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px
}

.service__form-row input:-ms-input-placeholder,
.service__form-row textarea:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px
}

.service__form-row input::-ms-input-placeholder,
.service__form-row textarea::-ms-input-placeholder {
    color: #fff;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px
}

.service__form-row input::placeholder,
.service__form-row textarea::placeholder {
    color: #fff;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px
}

.service__form-row input:hover,
.service__form-row input:focus,
.service__form-row textarea:hover,
.service__form-row textarea:focus {
    border-color: #fff
}

.service__form-row .form-attachment {
    background-color: #151515;
    color: #fff;
    border: unset
}


.service__form-row textarea {
    min-height: 140px;
    max-height: 240px;
    vertical-align: top
}

.service__form-row--full {
    grid-template-columns: repeat(1, 1fr)
}

.service__form-row--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media(max-width: 576px) {
    .service__form-row {
        grid-template-columns: repeat(1, 1fr)
    }
}

.service__form-group.invalid input,
.service__form-group.invalid textarea {
    border-color: #ff1d34
}

.service__form-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    cursor: pointer
}

.service__form-label svg {
    padding-bottom: 3px
}

.service__form-rodo {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    margin: 0 !important
}

.service__form-required {
    color: #f50000;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    margin: 0 !important
}

.service__form-info {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    margin: 24px 0
}

.service__form-info span {
    font-style: italic;
    font-weight: 300
}

.service__select {
    padding: 14px 20px;
    background-color: transparent;
    color: #ACACAC;
    border-color: #f50000;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px
}

.service__shops.invalid .error {
    display: block;
    color: #ff1d34
}

.service__shops-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-align: center
}

.service__shops-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

@media(max-width: 768px) {
    .service__shops-list {
        grid-template-columns: repeat(1, 1fr)
    }
}

.service__shops-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 28px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: 1px solid #f50000;
    background-color: transparent;
}

.service__shops-box:hover {
    border-color: #fff
}

.service__shops-box--checked {
    background-color: #151515;
    border-color: #fff
}

.service__box {
    background-color: transparent;
    color: #ACACAC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}

.service__box svg {
    display: none
}

.service__box:hover {
    border-color: #fff
}

.service__box--border {
    border: 1px solid #f50000
}

.service__box--checked {
    background-color: #151515;
    border-color: #fff;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.service__box--checked svg {
    display: block
}

.service .jsFileMessage {
    color: #ff1d34
}

.service .mb--16 {
    margin-bottom: 16px !important
}

.service .mb--32 {
    margin-bottom: 32px !important
}

.service .mb--72 {
    margin-bottom: 72px
}

@media(max-width: 768px) {
    .service .mb--72 {
        margin-bottom: 32px
    }
}

@media(max-width: 992px) {
    .service {
        padding: 48px 0 0 0
    }
}

.ss-content {
    background-color: #fff;
    padding: 0
}

.ss-content input {
    height: auto
}

.ss-content input:focus {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important
}

.ss-list {
    scrollbar-width: thin;
    scrollbar-color: #f3a647 #fff;
    padding-block: 4px
}

.ss-list::-webkit-scrollbar {
    width: 16px
}

.ss-list::-webkit-scrollbar-track {
    background: #fff
}

.ss-list::-webkit-scrollbar-thumb {
    background-color: #f3a647;
    border-radius: 0;
    border: 2px solid #fff
}

.ss-list .ss-option {
    padding: 12px 20px !important;
    color: #424242;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin: 0 4px
}

.ss-list .ss-option.ss-highlighted {
    outline-offset: 2px;
    outline: 2px solid #b7caf7;
    -webkit-box-shadow: 0 0 0 2px #0d4de4;
    box-shadow: 0 0 0 2px #0d4de4;
    z-index: 10;
    background: none !important;
    color: #000 !important;
    position: relative
}

.ss-list .ss-option.ss-selected {
    background-color: #e3f1ff !important;
    color: #0a0a0a !important
}

.ss-list .ss-option:hover {
    background-color: #e3f1ff !important;
    color: #0a0a0a !important
}

.ss-main {
    border-radius: unset;
    -webkit-transition: all .3s;
    transition: all .3s
}

.ss-main.ss-open-below {
    background-color: #fff;
    color: #0a0a0a
}

.ss-main:hover {
    border-color: #fff
}

.ss-main:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset
}

.ss-main:focus-visible {
    outline-offset: 2px;
    outline: 2px solid #b7caf7;
    -webkit-box-shadow: 0 0 0 2px #0d4de4;
    box-shadow: 0 0 0 2px #0d4de4
}

.form-group {
    margin: 0 !important
}

.service-help-block {
    color: #ff1d34 !important;
    display: none;
}

.btn svg {
    padding: 2px;
    margin-bottom: 2px
}

.shops {
    margin-top: 96px
}

.shops__link {
    height: 176px;
    padding: 48px
}

.map {
    height: 600px;
    width: 100%;
    margin: 32px 0 0
}

.map-section {
    padding: 88px 0 0 0
}

.map-section .title {
    color: #fff;
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
    max-width: 670px;
    margin: 0 auto
}

.map__marker--group {
    color: #000;
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    top: 15%;
    width: 28px;
    font-weight: 500
}

.map__marker-wrapper {
    -webkit-filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.25))
}

.map__my-geo {
    margin: 8px 0 0;
    -webkit-transition: color .2s;
    transition: color .2s;
    background: rgba(0, 0, 0, 0);
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    color: white;
}

.map__my-geo:hover {
    color: #3d4046
}

.map__my-geo:hover path {
    stroke: #3d4046
}

.rel {
    position: relative
}

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

.ai-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.map__label {
    left: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    position: absolute
}

.map_info_icons {
    display: none
}

.map__label--hide {
    opacity: 0
}

.map__address {
    /* height: 56px; */
    border: unset;
    border-bottom: 1px solid #f50000;
    padding: 0 12px;
    -webkit-transition: border-color .2s;
    transition: border-color .2s;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    color: #ACACAC;
    padding: 10px 0;
}

.map__list {
    margin: 16px 0 0;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s
}

.map__list--show {
    opacity: 1
}

.map__address-wrapper .btn{
    border-width: 1px;
}

.form-attachment {
    cursor: pointer;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-top: 8px
}

.form-attachment.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    padding: 12px 20px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.form-attachment.active:hover {
    border: 1px solid #f50000;
}

@media(max-width: 1248px) {
    .map__option {
        width: 235px
    }

    .map__option--shops {
        margin: 0 16px 0 0
    }
}

@media(max-width: 1199px) {
    .shops {
        margin-top: 64px
    }

    .shops__link {
        height: 126px
    }

    .map {
        margin: 16px 0 0
    }

    .map__list {
        margin: 16px 0 0
    }
}

@media(max-width: 992px) {
    .map {
        height: 350px;
        margin: 0
    }

    .map__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 32px 0 0
    }

    .map__my-geo {
        margin: 16px auto 0
    }

    .map__list {
        margin: 12px 0;
        text-align: center
    }

    .map__search {
        margin: 0 auto;
        display: block
    }

    .shops__link {
        padding: 24px;
        height: 100px
    }

    .map-section {
        padding: 32px 0 0 0
    }

    .map-section .title {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 0px !important
    }
}

@media(max-width: 575px) {
    .shops__link {
        padding: 48px;
        height: 156px;
        margin: 16px 0 0;
        z-index: 1;
        position: relative
    }

    .shops__link--first {
        margin: 0
    }

    .map__label {
        font-size: 11px
    }

    .map__address {
        font-size: 14px
    }

    .map__address-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .map__search {
        margin: 16px 0 0;
        width: 100%
    }
}

.map_info {
    background: #fff;
    border: 0;
    position: relative;
    z-index: 1;
    padding: 0;
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666;
    min-width: 200px;
    pointer-events: none;
    -webkit-transform: translate(-50%, 0) !important;
    transform: translate(-50%, 0) !important
}

.map_header {
    font-weight: 700;
    background: #ffed00;
    padding: 10px
}

.map_info_hours {
    padding: 10px 10px 0
}

.map_info_contact {
    padding: 10px
}

.H_ib_close,
.H_ib_tail {
    display: none
}

.H_ib_content,
.H_ib_body {
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0)
}

.marker_data {
    font-size: 11px;
    margin-top: -45px;
    margin-left: -14px
}

.marker_data .bubble {
    position: absolute;
    display: none;
    bottom: 37px;
    left: 14px;
    z-index: 101;
    color: #000
}

.marker_data .bubble.show {
    display: block
}

.marker_data img.marker_placeholder {
    position: relative;
    height: 45px;
    width: 28px;
    z-index: 110
}

.marker_placeholder {
    cursor: pointer
}

.ui-widget.ui-widget-content.ui-autocomplete {
    background-color: #0a0a0a !important;
    position: absolute !important;
    z-index: 50;
    border-radius: 0;
    border: 0;
    -webkit-box-shadow: 5px 6px 10px rgba(0, 0, 0, .3);
    box-shadow: 5px 6px 10px rgba(0, 0, 0, .3);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: hidden;
    padding: 8px 0
}

.ui-widget.ui-widget-content.ui-autocomplete li.ui-menu-item {
    padding: 0 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    line-height: 2
}

.ui-widget.ui-widget-content.ui-autocomplete li.ui-menu-item:hover {
    background: #3d4046
}

.ui-widget.ui-widget-content.ui-autocomplete li.ui-menu-item .ui-menu-item-wrapper {
    background: rgba(0, 0, 0, 0);
    font-weight: 500 !important;
    padding: 0;
    color: #fff !important
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background: rgba(0, 0, 0, 0);
    color: inherit;
    border-color: rgba(0, 0, 0, 0)
}

.ui-widget-content {
    background: none !important
}

/*# sourceMappingURL=service.css.map */