<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.shipmondo-modal-open {
    overflow: hidden;
}

.shipmondo-modal {
    visibility: hidden;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #666;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: visibility 0s ease-in-out 0.3s,opacity 0.3s ease-in-out;
    -moz-transition: visibility 0s ease-in-out 0.3s,opacity 0.3s ease-in-out;
    -ms-transition: visibility 0s ease-in-out 0.3s,opacity 0.3s ease-in-out;
    -o-transition: visibility 0s ease-in-out 0.3s,opacity 0.3s ease-in-out;
    transition: visibility 0s ease-in-out 0.3s,opacity 0.3s ease-in-out;
}

.shipmondo-hidden {
    display: none;
}

.shipmondo-modal-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 560px;
    max-width: 90%;
    max-height: 95%;
}

.shipmondo-modal.visible {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.shipmondo-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 24px;
    line-height: 32px;
    color: #999;
}

.shipmondo-modal-close:hover {
    color: inherit;
    background: none;
}

.shipmondo-modal-close:focus {
    outline: 0;
}

.shipmondo-loader-wrapper {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.shipmondo-loader {
    border: 8px solid #DDD;
    border-top: 8px solid #777;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: shipmondo-loader-spin 1s linear infinite;
    -moz-animation: shipmondo-loader-spin 1s linear infinite;
    -o-animation: shipmondo-loader-spin 1s linear infinite;
    animation: shipmondo-loader-spin 1s linear infinite;
}

.shipmondo-error {
    display: none;
    background-color: #FFF;
    padding: 24px;
    text-align: center;
    margin: auto;
}

.shipmondo-error.visible {
    display: block;
}

.shipmondo-modal-checkmark.visible .shipmondo-checkmark_circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.shipmondo-modal-checkmark.visible .shipmondo-checkmark {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.shipmondo-modal-checkmark.visible .shipmondo-checkmark_check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.shipmondo-modal-checkmark {
    display: none;
}

.shipmondo-modal-checkmark.visible {
    display: block;

}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #7ac142;
    }
}

@-webkit-keyframes shipmondo-loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-moz-keyframes shipmondo-loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-o-keyframes shipmondo-loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shipmondo-loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.shipmondo-modal-content {
    width: 100%;
    background-color: #FFF;
    position: relative;
    max-height: 900px;
    box-sizing: border-box;
    display: none;
}

.shipmondo-modal-content.visible {
    display: block;
}

.shipmondo-modal-content.error {
    text-align: center;
    padding: 24px;
}

.shipmondo-list-wrapper {
    max-height: 312px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 32px 40px;
    overflow-y: overlay;
    scrollbar-gutter: stable both-edges;
}

.shipmondo-dropdown-content .shipmondo-list-wrapper {
    padding: 0;
    overflow-y: auto;
    scrollbar-gutter: auto;
}

.shipmondo-modal-header {
    padding: 40px 40px 24px;
    height: 136px;
    box-sizing: border-box;
}

.shipmondo-modal-header h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 12px;
}

.shipmondo-pickoup-point-counter {
    margin: 0;
}

#shipmondo-map-wrapper {
    position: relative;
}

#shipmondo-map {
    width: 100%;
    height: 360px;
    background: #999;
}

.shipmondo-modal-footer,
.shipmondo-dropdown-footer {
    text-align: center;
    color: #999;
    padding: 10px 20px;
    background: #FFF;
    position: relative;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    line-height: 20px;
    z-index: 10;
}

.shipmondo-modal-footer:before,
.shipmondo-dropdown-footer:before {
    content: '';
    display: block;
    height: 24px;
    width: 100%;
    background: linear-gradient(rgba(255,255,255,0), #FFF);
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
}

.shipmondo-modal-content ul.shipmondo-shoplist-ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shipmondo-modal-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list {
    list-style: none;
    padding: 0;
    cursor:pointer;
    width: 50%;
    float: left;
    margin-bottom: 24px;
}

.shipmondo-modal-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list:nth-of-type(2n+1) {
    clear:left;
}

.shipmondo-service-point-info {
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
    padding: 5px 5px 5px 50px;
}

.shipmondo-service-point-name, .shipmondo-service-point-address, .shipmondo-service-point-zipcode-city, .shipmondo-service-point-id {
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    height: 1.2em;


}

.shipmondo-service-point-name {

}

.shipmondo-service-point-info .shipmondo-radio-button {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    border: 2px solid #9e9e9e;
    border-radius: 100%;
    height: 24px;
    width: 24px;
    top: 50%;
    left: 5px;
    z-index: 5;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

.shipmondo-service-point-info:hover .shipmondo-radio-button {
    border-color:#1a1a1a;
}

.shipmondo-service-point-info .shipmondo-radio-button:before {
    display: block;
    content: '';
    border-radius: 100%;
    height: 16px;
    width: 16px;
    top: 3px;
    left: 3px;
    margin: auto;
    transition: background 0.1s linear;
    -webkit-transition: background 0.1s linear;
}

.shipmondo-shop-list.selected .shipmondo-radio-button{
    border-color: #1a1a1a;
}

.shipmondo-shop-list.selected .shipmondo-radio-button:before {
    background: #1a1a1a;
}

.selected_shop_context,
.shipmondo_zipcode_error_text,
.shipping_company_required {
    display: none;
    margin-bottom: 7px;
    margin-top: 5px;
    border: 1px solid rgb(238, 238, 238);
    font-size: 13px;
    line-height: 17px;
    padding: 5px 10px;
    font-style: italic;
}

.selected_shop_context.active,
.shipmondo_zipcode_error_text.active,
.shipping_company_required {
    display: block;
}

#shipmondo-select-shop {
    margin: 10px auto 0;
}

.shipmondo_select_button {
    margin: 5px 0 !important;
    width: 100%;
    white-space: normal;
}

.shipmondo_zipcode {
    margin: 5px 0 !important;
    width: 100%;
}

.shipmondo-shop-header {
    font-style: normal;
}

.shipmondo-service-point-name,
.shipmondo-shop-name {
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .shipmondo-modal-header h4 {
        font-size: 1.4em;
    }

    .shipmondo-pickoup-point-counter {
        font-size: 0.9em;
    }

    #shipmondo-map {
        height: 280px;
    }

    .shipmondo-modal-header {
        height: auto;
    }

    .shipmondo-modal-content ul.shipmondo-shoplist-ul li.shipmondo-shop-list {
        width: 100%;
        float: none;
        margin: 0 auto 24px;
    }
}

@media screen and (max-height: 960px) {
    .shipmondo-removable-content {
        margin-bottom: 5%;
    }
}

#shipmondo-map .gm-style-iw div {
    overflow: visible !important;
}

#shipmondo-map .gm-style .gm-style-iw-c {
    padding: 14px 12px 10px !important;
}

.shipmondo_service_point_selector_dropdown_container {
    position: relative;
    top: -5px;
    margin-bottom: 10px;
}

.shipmondo_service_point_selector_dropdown {
    position:absolute;
    right: 0;
    top: 0;
    background-color: #FFF;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    z-index: 100;
    width: 100%;
    min-width: 250px;
    border: 1px solid #EFEFEF;
}

.shipmondo-dropdown-content .shipmondo-shoplist-ul {
    margin: 0;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shipmondo_service_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list {
    width: 100%;
    position: relative;
    padding: 8px 10px;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.shipmondo_service_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list.selected,
.shipmondo_service_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list:hover {
    background: #f7f7f7;
}

.shipmondo_service_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list:last-child {
    margin-bottom: 10px;
}

.shipmondo_service_point_selector_dropdown .shipmondo-dropdown-content li.shipmondo-shop-list .shipmondo-service-point-info {
    padding: 0;
    text-indent: 0;
}

.shipmondo-modal.loading .shipmondo-loader-wrapper,
.shipmondo_service_point_selector_dropdown.loading .shipmondo-loader-wrapper {
    display: block;
}

.shipmondo-dropdown-footer {
    position: absolute;
    bottom: 0;
}

.shipmondo-dropdown-content.error {
    text-align: center;
    padding: 24px;
}

.shipmondo-dropdown-content .shipmondo-service-point-id {
    display: none;
}

.shipmondo-dropdown-content-section {
    position: relative;
    margin-bottom: 40px;
    min-height: 120px;
    box-sizing: border-box;
}

.shipmondo_select_button {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.shipmondo_dropdown_button {
    position: relative;
}

.shipmondo_dropdown_button:after {
    content: '';
    position: absolute;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    top: 50%;
    right: 15px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FFF;
}

.shipmondo_dropdown_button.open:after {
    border-bottom: 5px solid #FFF;
    border-top: 0;
}

.shipmondo-shipping-field-wrap {
    margin: 8px 0 12px;
    text-indent: 0;
}

.shipmondo-shipping-field-wrap input {
    margin: 0;
}

.shipmondo_dropdown_button .shipmondo_select_button {
    padding-right: 40px;
}

#order_review #shipping_method.shipping__list {
    text-align: left;
}

#order_review #shipping_method.shipping__list .shipping__list_item {
    height: auto;
    display: block;
}

#order_review #shipping_method.shipping__list .shipping__list_item .shipping_method {
    margin-bottom: 8px;
}

#order_review #shipping_method.shipping__list .shipping__list_label {
    flex: auto;
}
</pre></body></html>