@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);

body {
    margin: 0
}

body,
code {
    font-family: Arial, sans-serif
}

.chatbot-container {
    bottom: 20px;
    position: fixed;
    right: 20px;
    z-index: 1000
}

.chat-icon {
    cursor: pointer;
    width: 60px
}

.chatbot-open-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 100%;
    height: 100%;
    max-width: 420px;
    max-height: 630px;
    background: white;
    border-radius: 14px;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    flex-direction: column;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;

}

@media (max-width: 450px) {
    .chatbot-open-container {
        max-width: 95%;
        max-height: 95%;
        border-radius: 14px;
        bottom: 5px;
        right: 5px;
    }
}

.chatbot-open-container,
.chatbot-open-container button,
.chatbot-open-container input,
.chatbot-open-container select,
.chatbot-open-container textarea {
    font-family: Poppins, sans-serif
}

@keyframes chatbotFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.chatbot-input-wrapper,
.chatbot-navbar {
    box-sizing: border-box;
    width: 100%
}

.chatbot-input-wrapper {
    align-items: center;
    background: #f3f3f3;
    border-radius: 50px;
    display: flex;
    height: 42px;
    padding: 0 12px
}

.chatbot-input {
    background: transparent;
    border: none;
    flex: 1 1;
    font-size: 12px;
    outline: none
}

.chatbot-send-btn {
    align-items: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 34px;
    justify-content: center;
    padding: 0;
    width: 34px
}

.chatbot-send-btn img {
    height: 16px;
    width: 16px
}

.chatbot-startbar {
    align-items: center;
    background: #fff;
    background-size: 150% 150%;
    border: none;
    border-radius: 50px;
    box-shadow: 0 1px 3px rgba(0, 40, 120, .08), inset 0 0 0 1px #e3e9f5;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    height: 42px;
    justify-content: center;
    transition: background .4s ease, box-shadow .25s ease;
    width: 100%
}

.chatbot-startbar:hover {
    animation: hoverWave 1s ease infinite;
    background: linear-gradient(145deg, #edf3ff, #dfeaff, #edf3ff);
    box-shadow: 0 2px 8px rgba(50, 110, 255, .25), inset 0 0 0 1px #c7d8ff
}

.chatbot-startbar:active {
    background: linear-gradient(145deg, #e6eeff, #d3e1ff);
    box-shadow: 0 1px 4px rgba(30, 90, 220, .3)
}

@keyframes hoverWave {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

.reset_convo_btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 100%
}

.chatbot_home {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto
}

.chatbot_home_title {
    font-size: 19px;
    font-weight: 600;
    margin: 0
}

.chatbot_articles_wrapper {
    grid-gap: 12px;
    background: #f3f5f8;
    border-radius: 14px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    max-height: 350px;
    overflow-y: auto;
    padding: 4px 4px 10px
}

.chatbot_article_card {
    background: #fff;
    border: 1px solid #d9e0e8;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(16, 24, 40, .09);
    color: #111827;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease
}

.chatbot_article_card:hover {
    border-color: #b7c7da;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .14);
    transform: translateY(-2px)
}

.chatbot_article_icon {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px
}

.chatbot_article_content h3 {
    font-size: 13px;
    margin: 0 0 2px
}

.chatbot_article_content p {
    font-size: 11px;
    margin: 0;
    opacity: .7
}

.chatbot_starters_wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto
}

.chatbot_starters_wrapper label {
    font-size: 10px;
    margin: 0
}

.chatbot_starter_btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    font-size: 11px;
    padding: 8px;
    text-align: left;
    transition: .2s ease
}

.chatbot_starter_btn:hover {
    background: #f5f5f5
}

.chatbot_starters_wrapper_buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 5px;
    max-width: 100%;
    overflow-x: auto
}

.chatbot_topbar {
    display: flex;
    gap: 6px;
    position: absolute;
    right: 3px;
    top: 3px;
    z-index: 999
}

.chatbot_close_btn,
.chatbot_feedback_btn,
.chatbot_flag_btn {
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    transition: .2s ease
}

.chatbot_close_btn:hover,
.chatbot_flag_btn:hover {
    background: #f0f0f0
}

.chatbot_title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 30px;
    margin-top: 10px;
    width: 88%
}

.chatbot_title h3,
.chatbot_title p {
    margin: 0
}

.chatbot_title p {
    color: #202020;
    font-size: 12px
}

.chatbot_articles_wrapper::-webkit-scrollbar,
.chatbot_home::-webkit-scrollbar,
.chatbot_starters_wrapper_buttons::-webkit-scrollbar {
    height: 4px;
    width: 4px
}

.chatbot_articles_wrapper::-webkit-scrollbar-track,
.chatbot_home::-webkit-scrollbar-track,
.chatbot_starters_wrapper_buttons::-webkit-scrollbar-track {
    background: transparent
}

.chatbot_articles_wrapper::-webkit-scrollbar-thumb,
.chatbot_home::-webkit-scrollbar-thumb,
.chatbot_starters_wrapper_buttons::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 4px
}

.chatbot_articles_wrapper::-webkit-scrollbar-thumb:hover,
.chatbot_home::-webkit-scrollbar-thumb:hover,
.chatbot_starters_wrapper_buttons::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5
}

.chatbot_chat_container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    overflow: hidden
}

.chat_header {
    align-items: center;
    display: flex;
    height: 53px
}

.chat_avatar_wrapper {
    align-items: center;
    display: flex;
    height: 28px;
    justify-content: center;
    position: relative;
    width: 28px
}

.wrapper_header_chat {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 5px
}

.text_chatbot_topbar_chat {
    display: flex;
    flex-direction: column;
    margin: 0
}

.text_chatbot_topbar_chat p {
    margin: 0
}

.text_chatbot_topbar_chat p:first-child {
    color: #000;
    font-size: 12px;
    font-weight: 600
}

.text_chatbot_topbar_chat p:last-child {
    color: #6a6a6a;
    font-size: 10px;
    font-weight: lighter
}

.chatbot_topbar_chat {
    align-items: center;
    box-shadow: 0 6px 6px hsla(0, 0%, 100%, .511);
    display: flex;
    flex-direction: row;
    gap: 6px;
    justify-content: space-between;
    right: 3px;
    top: 3px;
    z-index: 999
}

.chat_avatar {
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 40, 120, .08);
    height: 98%;
    width: 98%
}

.chat_avatar_online {
    background: #32d74b;
    border: 2px solid #fff;
    border-radius: 50%;
    bottom: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, .15);
    height: 6px;
    position: absolute;
    right: 0;
    width: 6px
}

.chat_avatar_online.inactive {
    background: #ff6464
}

.chat_avatar_wrapper.inactive,
.text_chatbot_topbar_chat.inactive {
    opacity: .35
}

.chatbot_feedback_btn.meta {
    margin-top: 3px
}

.chatbot_feedback_btn.good:hover {
    background-color: #c4f3cb
}

.chatbot_feedback_btn.bad:hover {
    background-color: #f3c4c4
}

.chat_message_container {
    margin-bottom: 16px
}

.user_msg_container {
    align-items: flex-end
}

.user_msg {
    align-self: flex-end;
    background: #202020;
    color: #fff;
    padding: 0 12px
}

.chat_message {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    max-width: 70%
}

.message_content strong {
    font-weight: 600
}

.message_header {
    align-items: center;
    color: #5b5b5b;
    display: flex;
    flex-direction: row;
    font-size: 12px;
    gap: 5px
}

.chat_messages {
    flex: 1 1 auto;
    max-height: none;
    min-height: 0;
    overflow-y: auto;
    padding: 15px
}

.chat_container,
.chat_messages {
    display: flex;
    flex-direction: column
}

.thinking_dots {
    align-items: center;
    background: #e1e1e1;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    max-width: 50px;
    padding: 10px
}

.thinking_dots .dot {
    animation: bounce 1.5s ease-in-out infinite;
    background-color: gray;
    border-radius: 50%;
    height: 8px;
    width: 8px
}

.thinking_dots .dot:nth-child(2) {
    animation-delay: .2s
}

.thinking_dots .dot:nth-child(3) {
    animation-delay: .4s
}

@keyframes bounce {

    0%,
    80%,
    to {
        opacity: .5;
        transform: translateY(0)
    }

    40% {
        opacity: 1;
        transform: translateY(-5px)
    }
}

.outside_header {
    margin-bottom: 2px;
    margin-left: 4px
}

.chat_message_container {
    margin-bottom: 12px
}

.outside_header {
    align-items: center;
    color: #6a6a6a;
    display: flex;
    font-size: 12px;
    gap: 4px;
    margin-bottom: 3px;
    margin-left: 2px
}

.chat_message_container {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px
}

.assistant_msg {
    background: #efefef;
    border-radius: 10px;
    color: #000;
    max-width: 70%;
    padding: 0 12px
}

.chat_avatar_msg {
    height: 15px;
    width: 15px
}

.system_message_container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%
}

.system_message {
    border-radius: 8px;
    color: #9f9f9f;
    font-size: 13px;
    max-width: 80%;
    padding: 6px 12px;
    text-align: center
}

.message_links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px
}

.message_link_preview {
    align-items: center;
    background: #f4f4f4;
    border-radius: 8px;
    display: flex;
    font-size: 11px;
    gap: 8px;
    max-width: 70%;
    padding: 6px 8px;
    text-decoration: none
}

.assistant_msg .message_link_preview {
    background: #f0f7ff
}

.link_favicon {
    height: 16px;
    width: 16px
}

.link_text {
    display: flex;
    flex-direction: column
}

.link_domain {
    color: #333;
    font-weight: 600
}

.link_url {
    color: #666;
    font-size: 10px;
    word-break: break-all
}

.chatbot_flag_overlay {
    align-items: center;
    background: rgba(0, 0, 0, .16);
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute;
    z-index: 2000
}

.chatbot_flag_modal {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    padding: 18px;
    width: 90%
}

.chatbot_flag_modal h3,
.chatbot_flag_modal p {
    margin: 0
}

.chatbot_flag_modal textarea {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 12px;
    min-height: 70px;
    outline: none;
    padding: 8px;
    resize: none
}

.chatbot_flag_modal textarea:focus {
    border-color: #007aff
}

.flag_modal_actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 8px
}

.flag_cancel_btn {
    background: transparent;
    color: #666;
    font-size: 12px
}

.flag_cancel_btn,
.flag_submit_btn {
    border: none;
    cursor: pointer
}

.flag_submit_btn:disabled {
    cursor: not-allowed;
    opacity: .5
}

.chatbot_flag_modal h3 {
    font-size: 14px;
    font-weight: 600
}

.chatbot_flag_modal p {
    color: #555;
    font-size: 12px
}

.flag_submit_btn {
    background: #007aff;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px
}

.flag_submit_btn:disabled {
    opacity: .6
}

.chatbot_sidepanel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    margin-left: auto;
    width: 260px;
    z-index: 1500
}

.sidepanel_inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px
}

.sidepanel_inner h3 {
    font-size: 13px;
    font-weight: 600;
    margin: 0
}

.floating_input {
    display: flex;
    flex-direction: column;
    position: relative
}

.floating_input label {
    background: #fff;
    color: #666;
    font-size: 10px;
    left: 10px;
    padding: 0 1px;
    position: absolute;
    top: -7px;
    z-index: 1
}

.floating_input input {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 12px;
    height: 23px;
    outline: none;
    padding: 8px 10px
}

.floating_input input:focus {
    border-color: #007aff
}

.floating_input button {
    background: #2a5d71;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    height: 36px;
    transition: background .15s ease, box-shadow .15s ease
}

.floating_input button:hover {
    background: #26627a
}

.floating_input button:disabled {
    background: #c7c7c7;
    cursor: not-allowed
}

.searching_text {
    color: #000;
    font-size: 14px;
    font-weight: 600
}

.dots:after {
    animation: dots 1.4s infinite;
    content: ""
}

@keyframes dots {
    0% {
        content: ""
    }

    25% {
        content: "."
    }

    50% {
        content: ".."
    }

    75% {
        content: "..."
    }

    to {
        content: ""
    }
}

.rating_fade_in {
    animation: fade_in_rating .3s ease-in
}

@keyframes fade_in_rating {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#root {
    padding: 10px
}

.Returportal_login {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.returportal_login_container {
    background-color: #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    min-height: 98%;
    min-width: 98%;
    padding: 10px
}

.returportal_login_container_left,
.returportal_login_container_right {
    align-items: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    min-width: 49%
}

.btn_mobile_next:disabled,
.btn_oversigt_retur_widget_shipping_ui_succes_right:disabled {
    cursor: not-allowed;
    opacity: .7
}

.retur_widget_shipping_ui_succes {
    background: #fff;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: row;
    height: 700px;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%
}

.retur_widget_shipping_ui_succes_left {
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 70%
}

.progress_retur_widget_shipping_ui_succes_left {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    width: 10%
}

.circle_left {
    background-color: #1e4b5d;
    border-radius: 50%;
    color: #fff;
    font-size: 1.9em;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    margin-top: 50px;
    text-align: center;
    width: 60px
}

.line_left {
    background: linear-gradient(180deg, #1e4b5d, rgba(30, 75, 93, 0));
    height: 100%;
    margin-top: 5px;
    width: 2px
}

.content_retur_widget_shipping_ui_succes_left {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 90%
}

.top_content_content_retur_widget_shipping_ui_succes_left {
    align-items: flex-start;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 18%;
    justify-content: center;
    padding: 10px 15px;
    width: 100%
}

.back-link,
.back-link2 {
    color: #ccc;
    cursor: pointer;
    font-size: .9em;
    margin-bottom: 9px;
    text-decoration: none
}

.back-link2:hover,
.back-link:hover {
    text-decoration: underline
}

.main_heading_top_content_content_retur_widget_shipping_ui_succes_left {
    color: #000;
    font-size: 1.9em;
    font-weight: 700;
    margin: 0
}

.main_content_retur_widget_shipping_ui_succes_left {
    max-height: 75%;
    overflow-y: auto;
    width: 98%
}

.retur_widget_shipping_ui_succes_right {
    align-items: center;
    background-color: #f5f5f5;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    width: 30%
}

.retur_widget_shipping_ui_succes_right_img {
    padding-top: 10px;
    width: 70%
}

.orderinfo_retur_widget_shipping_ui_succes_right {
    color: #000;
    height: 12%;
    width: 80%
}

.orderinfo_retur_widget_shipping_ui_succes_right p:first-child {
    align-items: center;
    color: #000;
    font-size: 2.2em;
    margin: 0;
    text-align: center
}

.orderinfo_retur_widget_shipping_ui_succes_right p:last-child {
    align-items: center;
    font-size: 1.9em;
    margin: 0;
    text-align: center
}

.progress_retur_widget_shipping_ui_succes_right {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 28%;
    justify-content: space-around;
    width: 80%
}

.step {
    gap: 16px
}

.circle,
.step {
    align-items: center;
    display: flex
}

.circle {
    background-color: #6a8c98;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    height: 32px;
    justify-content: center;
    min-height: 32px;
    min-width: 32px;
    width: 32px
}

.step.active .circle {
    background-color: #1e4b5d
}

.text {
    color: #a0a0a0;
    font-size: 16px
}

.step.active .text {
    color: #000
}

.oversigt_retur_widget_shipping_ui_succes_right {
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    height: 15%;
    padding: 5px;
    text-align: center;
    width: 80%
}

.valgte_produkter_oversigt {
    font-size: 12px;
    margin-top: 10px
}

.valgt_produkt {
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    text-align: left
}

.btn_oversigt_retur_widget_shipping_ui_succes_right {
    background-color: #2c6174;
    border: none;
    border-radius: 11px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 100;
    height: 49px;
    outline: none;
    text-transform: none;
    width: 80%
}

.retur_widget_shipping_ui_succes_left_mobile {
    align-items: center;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    display: flex;
    display: none;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    width: 100%
}

.top_retur_widget_shipping_ui_succes_left_mobile {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 20%;
    justify-content: center;
    width: 100%
}

.retur_widget_shipping_ui_succes_right_img_mobile {
    height: 30% !important
}

.main_heading_top_content_content_retur_widget_shipping_ui_succes_left_mobile {
    font-size: 20px;
    padding-top: 10px;
    text-align: center;
    width: 90%
}

.main_retur_widget_shipping_ui_succes_left_mobile {
    align-items: center;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: space-between;
    padding-bottom: 10px;
    width: 100%
}

.bottom_main_retur_widget_shipping_ui_succes_left_mobile {
    display: flex;
    justify-content: center;
    width: 30%
}

.top_retur_widget_shipping_ui_succes_left_mobile_circles {
    align-items: center;
    display: flex;
    height: 10%;
    justify-content: space-between;
    width: 40%
}

.produktboks {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin: 10px 0;
    padding: 15px
}

.produktboks_header {
    color: #888;
    font-size: .8em
}

.produktboks_navn {
    font-size: 1.4em;
    margin: 5px 0 15px
}

.produktkort {
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
    margin-bottom: 20px;
    padding: 20px
}

.produkt_row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 15px
}

.inputgruppe {
    display: flex;
    flex: 1 1;
    flex-direction: column
}

.label {
    align-items: center;
    color: #333;
    display: flex;
    flex-direction: row;
    font-size: .9em;
    font-weight: 600;
    margin-bottom: 5px
}

.requried-label {
    color: #c65b5b;
    margin-bottom: 0;
    margin-left: 2px;
    margin-top: 0
}

.readonlyfelt {
    background-color: #eee;
    color: #444
}

.inputfelt,
.readonlyfelt {
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    padding: 10px
}

.inputfelt {
    background-color: #fff
}

.retur_valg_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.retur_valg_kort {
    background: #f3f3f3;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex: 1 1 300px;
    flex-direction: column;
    overflow: hidden;
    transition: transform .2s ease
}

.retur_valg_kort:hover {
    transform: translateY(-3px)
}

.retur_valg_illustration {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: center;
    padding: 20px
}

.retur_valg_illustration img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain
}

.retur_valg_tekst {
    color: #333;
    font-size: 16px;
    padding: 16px;
    text-align: center
}

.retur_valg_footer {
    background: #fff;
    border-top: 1px solid #ddd;
    color: #333;
    font-weight: 700;
    padding: 12px;
    text-align: center
}

.retur_valg_footer.active {
    background-color: #2c6174;
    color: #fff
}

.qr_label_wrapper {
    align-items: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px
}

.qr_label_image {
    background: #fff;
    border: 1px solid #999;
    border-radius: 8px;
    height: 300px;
    object-fit: contain;
    padding: 10px;
    width: 300px
}

.qr_label_actions {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.qr_action_button,
.qr_download_button {
    background-color: #2c6174;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease
}

.qr_action_button:hover,
.qr_download_button:hover {
    background-color: #1e4b5d
}

.qr_illustration {
    margin-top: 30px;
    text-align: center
}

.qr_illustration img {
    height: auto;
    max-width: 250px
}

.qr_illustration p {
    color: #333;
    font-size: 1em;
    margin-top: 10px
}

.retur_success_message {
    padding: 10px;
    text-align: center
}

.retur_success_message h2 {
    color: #2c6174;
    font-size: 2em;
    margin-bottom: 10px
}

.retur_success_message p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 10px
}

.mobile_next_wrapper {
    display: none;
    margin-top: 20px;
    text-align: center
}

.btn_mobile_next {
    background-color: #2c6174;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    height: 40px;
    width: 90%
}

@media (max-width:768px) {

    .progress_retur_widget_shipping_ui_succes_left,
    .retur_widget_shipping_ui_succes_right {
        display: none
    }

    .retur_widget_shipping_ui_succes_left {
        width: 95%
    }

    .mobile_next_wrapper {
        display: block;
        margin-bottom: 10px
    }

    .btn_oversigt_retur_widget_shipping_ui_succes_right {
        display: none
    }

    .content_retur_widget_shipping_ui_succes_left {
        width: 100%
    }

    .retur_widget_shipping_ui_succes {
        max-width: none
    }

    .main_content_retur_widget_shipping_ui_succes_left,
    .retur_widget_shipping_ui_succes_left {
        width: 97%
    }

    .top_content_content_retur_widget_shipping_ui_succes_left {
        margin-left: 5px;
        width: 80%
    }

    .main_content_retur_widget_shipping_ui_succes_left {
        padding: 10px
    }

    .retur_widget_shipping_ui_succes {
        height: auto
    }

    .produkt_row {
        align-items: normal;
        flex-direction: column
    }

    .main_heading_top_content_content_retur_widget_shipping_ui_succes_left {
        font-size: 23px
    }

    .produktkort {
        font-size: 12px
    }

    .retur_valg_illustration img {
        max-height: 100px;
        max-width: 100%;
        object-fit: contain
    }
}

.leaflet-image-layer,
.leaflet-layer,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-pane,
.leaflet-pane>canvas,
.leaflet-pane>svg,
.leaflet-tile,
.leaflet-tile-container,
.leaflet-zoom-box {
    left: 0;
    position: absolute;
    top: 0
}

.leaflet-container {
    overflow: hidden
}

.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.leaflet-tile::selection {
    background: transparent
}

.leaflet-safari .leaflet-tile {
    image-rendering: -webkit-optimize-contrast
}

.leaflet-safari .leaflet-tile-container {
    height: 1600px;
    -webkit-transform-origin: 0 0;
    width: 1600px
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
    display: block
}

.leaflet-container .leaflet-overlay-pane svg {
    max-height: none !important;
    max-width: none !important
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
    max-height: none !important;
    max-width: none !important;
    padding: 0;
    width: auto
}

.leaflet-container img.leaflet-tile {
    mix-blend-mode: plus-lighter
}

.leaflet-container.leaflet-touch-zoom {
    touch-action: pan-x pan-y
}

.leaflet-container.leaflet-touch-drag {
    touch-action: none;
    touch-action: pinch-zoom
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    touch-action: none
}

.leaflet-container {
    -webkit-tap-highlight-color: transparent
}

.leaflet-container a {
    -webkit-tap-highlight-color: rgba(51, 181, 229, .4)
}

.leaflet-tile {
    filter: inherit;
    visibility: hidden
}

.leaflet-tile-loaded {
    visibility: inherit
}

.leaflet-zoom-box {
    box-sizing: border-box;
    height: 0;
    width: 0;
    z-index: 800
}

.leaflet-overlay-pane svg {
    -moz-user-select: none
}

.leaflet-pane {
    z-index: 400
}

.leaflet-tile-pane {
    z-index: 200
}

.leaflet-overlay-pane {
    z-index: 400
}

.leaflet-shadow-pane {
    z-index: 500
}

.leaflet-marker-pane {
    z-index: 600
}

.leaflet-tooltip-pane {
    z-index: 650
}

.leaflet-popup-pane {
    z-index: 700
}

.leaflet-map-pane canvas {
    z-index: 100
}

.leaflet-map-pane svg {
    z-index: 200
}

.leaflet-vml-shape {
    height: 1px;
    width: 1px
}

.lvml {
    behavior: url(#default#VML);
    display: inline-block;
    position: absolute
}

.leaflet-control {
    pointer-events: visiblePainted;
    pointer-events: auto;
    position: relative;
    z-index: 800
}

.leaflet-bottom,
.leaflet-top {
    pointer-events: none;
    position: absolute;
    z-index: 1000
}

.leaflet-top {
    top: 0
}

.leaflet-right {
    right: 0
}

.leaflet-bottom {
    bottom: 0
}

.leaflet-left {
    left: 0
}

.leaflet-control {
    clear: both;
    float: left
}

.leaflet-right .leaflet-control {
    float: right
}

.leaflet-top .leaflet-control {
    margin-top: 10px
}

.leaflet-bottom .leaflet-control {
    margin-bottom: 10px
}

.leaflet-left .leaflet-control {
    margin-left: 10px
}

.leaflet-right .leaflet-control {
    margin-right: 10px
}

.leaflet-fade-anim .leaflet-popup {
    opacity: 0;
    transition: opacity .2s linear
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
    opacity: 1
}

.leaflet-zoom-animated {
    transform-origin: 0 0
}

svg.leaflet-zoom-animated {
    will-change: transform
}

.leaflet-zoom-anim .leaflet-zoom-animated {
    transition: transform .25s cubic-bezier(0, 0, .25, 1)
}

.leaflet-pan-anim .leaflet-tile,
.leaflet-zoom-anim .leaflet-tile {
    transition: none
}

.leaflet-zoom-anim .leaflet-zoom-hide {
    visibility: hidden
}

.leaflet-interactive {
    cursor: pointer
}

.leaflet-grab {
    cursor: grab
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
    cursor: crosshair
}

.leaflet-control,
.leaflet-popup-pane {
    cursor: auto
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
    cursor: move;
    cursor: grabbing
}

.leaflet-image-layer,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-pane>svg path,
.leaflet-tile-container {
    pointer-events: none
}

.leaflet-image-layer.leaflet-interactive,
.leaflet-marker-icon.leaflet-interactive,
.leaflet-pane>svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
    pointer-events: visiblePainted;
    pointer-events: auto
}

.leaflet-container {
    background: #ddd;
    outline-offset: 1px
}

.leaflet-container a {
    color: #0078a8
}

.leaflet-zoom-box {
    background: hsla(0, 0%, 100%, .5);
    border: 2px dotted #38f
}

.leaflet-container {
    font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.5
}

.leaflet-bar {
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .65)
}

.leaflet-bar a {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    color: #000;
    display: block;
    height: 26px;
    line-height: 26px;
    text-align: center;
    text-decoration: none;
    width: 26px
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block
}

.leaflet-bar a:focus,
.leaflet-bar a:hover {
    background-color: #f4f4f4
}

.leaflet-bar a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.leaflet-bar a:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.leaflet-bar a.leaflet-disabled {
    background-color: #f4f4f4;
    color: #bbb;
    cursor: default
}

.leaflet-touch .leaflet-bar a {
    height: 30px;
    line-height: 30px;
    width: 30px
}

.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px
}

.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font: 700 18px Lucida Console, Monaco, monospace;
    text-indent: 1px
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
    font-size: 22px
}

.leaflet-control-layers {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .4)
}

.leaflet-control-layers-toggle {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
    height: 36px;
    width: 36px
}

.leaflet-retina .leaflet-control-layers-toggle {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
    background-size: 26px 26px
}

.leaflet-touch .leaflet-control-layers-toggle {
    height: 44px;
    width: 44px
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
    display: none
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
    display: block;
    position: relative
}

.leaflet-control-layers-expanded {
    background: #fff;
    color: #333;
    padding: 6px 10px 6px 6px
}

.leaflet-control-layers-scrollbar {
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 5px
}

.leaflet-control-layers-selector {
    margin-top: 2px;
    position: relative;
    top: 1px
}

.leaflet-control-layers label {
    display: block;
    font-size: 13px;
    font-size: 1.08333em
}

.leaflet-control-layers-separator {
    border-top: 1px solid #ddd;
    height: 0;
    margin: 5px -10px 5px -6px
}

.leaflet-default-icon-path {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)
}

.leaflet-container .leaflet-control-attribution {
    background: #fff;
    background: hsla(0, 0%, 100%, .8);
    margin: 0
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
    color: #333;
    line-height: 1.4;
    padding: 0 5px
}

.leaflet-control-attribution a {
    text-decoration: none
}

.leaflet-control-attribution a:focus,
.leaflet-control-attribution a:hover {
    text-decoration: underline
}

.leaflet-attribution-flag {
    display: inline !important;
    height: .6669em;
    vertical-align: baseline !important;
    width: 1em
}

.leaflet-left .leaflet-control-scale {
    margin-left: 5px
}

.leaflet-bottom .leaflet-control-scale {
    margin-bottom: 5px
}

.leaflet-control-scale-line {
    background: hsla(0, 0%, 100%, .8);
    border: 2px solid #777;
    border-top: none;
    box-sizing: border-box;
    line-height: 1.1;
    padding: 2px 5px 1px;
    text-shadow: 1px 1px #fff;
    white-space: nowrap
}

.leaflet-control-scale-line:not(:first-child) {
    border-bottom: none;
    border-top: 2px solid #777;
    margin-top: -2px
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
    border-bottom: 2px solid #777
}

.leaflet-touch .leaflet-bar,
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers {
    box-shadow: none
}

.leaflet-touch .leaflet-bar,
.leaflet-touch .leaflet-control-layers {
    background-clip: padding-box;
    border: 2px solid rgba(0, 0, 0, .2)
}

.leaflet-popup {
    margin-bottom: 20px;
    position: absolute;
    text-align: center
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 1px;
    text-align: left
}

.leaflet-popup-content {
    font-size: 13px;
    font-size: 1.08333em;
    line-height: 1.3;
    margin: 13px 24px 13px 20px;
    min-height: 1px
}

.leaflet-popup-content p {
    margin: 1.3em 0
}

.leaflet-popup-tip-container {
    height: 20px;
    left: 50%;
    margin-left: -20px;
    margin-top: -1px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    width: 40px
}

.leaflet-popup-tip {
    height: 17px;
    margin: -10px auto 0;
    padding: 1px;
    pointer-events: auto;
    transform: rotate(45deg);
    width: 17px
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .4);
    color: #333
}

.leaflet-container a.leaflet-popup-close-button {
    background: transparent;
    border: none;
    color: #757575;
    font: 16px/24px Tahoma, Verdana, sans-serif;
    height: 24px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    width: 24px
}

.leaflet-container a.leaflet-popup-close-button:focus,
.leaflet-container a.leaflet-popup-close-button:hover {
    color: #585858
}

.leaflet-popup-scrolled {
    overflow: auto
}

.leaflet-oldie .leaflet-popup-content-wrapper {
    -ms-zoom: 1
}

.leaflet-oldie .leaflet-popup-tip {
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
    margin: 0 auto;
    width: 24px
}

.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
    border: 1px solid #999
}

.leaflet-div-icon {
    background: #fff;
    border: 1px solid #666
}

.leaflet-tooltip {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
    color: #222;
    padding: 6px;
    pointer-events: none;
    position: absolute;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.leaflet-tooltip.leaflet-interactive {
    cursor: pointer;
    pointer-events: auto
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before,
.leaflet-tooltip-top:before {
    background: transparent;
    border: 6px solid transparent;
    content: "";
    pointer-events: none;
    position: absolute
}

.leaflet-tooltip-bottom {
    margin-top: 6px
}

.leaflet-tooltip-top {
    margin-top: -6px
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
    left: 50%;
    margin-left: -6px
}

.leaflet-tooltip-top:before {
    border-top-color: #fff;
    bottom: 0;
    margin-bottom: -12px
}

.leaflet-tooltip-bottom:before {
    border-bottom-color: #fff;
    margin-left: -6px;
    margin-top: -12px;
    top: 0
}

.leaflet-tooltip-left {
    margin-left: -6px
}

.leaflet-tooltip-right {
    margin-left: 6px
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    margin-top: -6px;
    top: 50%
}

.leaflet-tooltip-left:before {
    border-left-color: #fff;
    margin-right: -12px;
    right: 0
}

.leaflet-tooltip-right:before {
    border-right-color: #fff;
    left: 0;
    margin-left: -12px
}

@media print {
    .leaflet-control {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact
    }
}

.widget_container {
    height: 100%
}

.returportal_login_widget,
.widget_container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%
}

.returportal_login_widget {
    background: #f6f5f5;
    background-image: url(/static/media/icon_order.952c55e22872d024c81c.svg);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 600px 600px;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    height: 706px;
    max-width: 660px;
    padding: 20px
}

.returportal_login_ui {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 85%
}

.GEJSER_Logo {
    width: 80%
}

.returportal_login_title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    font-size: 36px;
    font-weight: 300
}

.returportal_login_form {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%
}

.returportal_login_form input {
    background-color: #fff;
    border: none;
    border-radius: 11px;
    box-sizing: border-box;
    color: #2c6174;
    font-size: 16px;
    height: 61px;
    outline: none;
    padding: 10px;
    transition: border-bottom .1s ease, background-color .1s ease;
    width: 100%
}

.returportal_login_form input:-ms-input-placeholder {
    color: #d0d0d0;
    font-weight: 400
}

.returportal_login_form input::placeholder {
    color: #d0d0d0;
    font-weight: 400
}

.returportal_login_form input:focus {
    border-bottom: 3px solid #2c6174;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.returportal_login_form button {
    background-color: #2c6174;
    border: none;
    border-radius: 11px;
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    font-weight: 100;
    height: 57px;
    transition: background-color .1s ease;
    width: 100%
}

.returportal_login_form button:hover {
    background-color: #1e4b5d
}

.returportal_login_form button:active {
    transform: scale(.98)
}

@media (max-width:768px) {
    .returportal_login_widget {
        background-size: 300px 300px;
        height: 400px;
        max-width: 95%;
        padding: 15px
    }

    .returportal_login_ui {
        gap: 15px;
        width: 95%
    }

    .returportal_login_title {
        font-size: 28px
    }

    .returportal_login_form input {
        font-size: 14px;
        height: 50px
    }

    .returportal_login_form button {
        font-size: 20px;
        height: 50px
    }

    .GEJSER_Logo {
        width: 80%
    }
}

.Min_Ordre {
    display: flex;
    flex-direction: column;
    padding: 20px 300px
}

.Min_Ordre_row {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: center
}

.Min_Ordre>section {
    max-width: 1200px;
    width: 100%
}

.MinOrdre_left,
.MinOrdre_right {
    padding: 20px
}

.MinOrdre_left {
    flex-basis: 400px;
    flex-grow: 0
}

.MO_row {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.MinOrdre_right {
    flex-grow: 1
}

.seperator_minOrdre {
    background-color: #d1d1d1;
    width: 1px
}

.seperator_top_minOrdre {
    background-color: #d1d1d1;
    height: 1px;
    margin-bottom: 12px
}

.MinOrdre_block_title.rightalign {
    text-align: end
}

.MinOrdre_products {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.MinOrdre_product {
    grid-gap: 16px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 16px;
    grid-template-columns: 80px 1fr auto;
    padding: 14px
}

.MinOrdre_product:hover {
    background: #f0f0f0
}

.MinOrdre_product_image img {
    height: 80px;
    object-fit: contain;
    width: 80px
}

.MinOrdre_product_name {
    font-weight: 600;
    margin-bottom: 4px
}

.MinOrdre_product_meta {
    color: #666;
    font-size: 13px
}

.MinOrdre_product_price {
    font-size: 14px;
    text-align: right
}

.MinOrdre_product_price_value {
    font-weight: 600;
    margin-top: 4px
}

.MinOrdre_orderid {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px
}

.MinOrdre_block {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.MinOrdre_block_title {
    font-weight: 600;
    margin-bottom: 6px
}

.MinOrdre_block_title.nomargin {
    margin-bottom: 0 !important
}

.MinOrdre_block_subtitle {
    font-size: 12px
}

.MinOrdre_separator {
    background: #ddd;
    height: 1px;
    margin: 25px 0;
    width: 50%
}

.MinOrdre_tracking_item {
    font-size: 14px;
    margin-bottom: 10px
}

.MinOrdre_tracking_time {
    color: #777;
    font-size: 12px
}

.Min_ordre_sectionfortracking {
    align-items: center;
    border-bottom: 1px solid #d1d1d1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative
}

.GEjSER_logo {
    left: 10px;
    position: absolute;
    top: 20px;
    width: 150px
}

.MinOrdre_timeline {
    align-items: center;
    display: flex;
    gap: 12px;
    padding: 20px 0
}

.MinOrdre_step {
    align-items: center;
    color: #999;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    gap: 6px
}

.MinOrdre_step svg {
    stroke-width: 2;
    height: 28px;
    width: 28px
}

.MinOrdre_step.active {
    color: #184a5b
}

.MinOrdre_line {
    background: #ddd;
    height: 2px;
    width: 60px
}

.MinOrdre_line.active {
    background: #184a5b
}

.MinOrdre_tooltip_wrapper {
    display: inline-flex;
    justify-content: center;
    position: relative
}

.MinOrdre_tooltip {
    background: #184a5b;
    border-radius: 6px;
    bottom: 40px;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    padding: 8px 12px;
    pointer-events: none;
    position: absolute;
    transform: translateY(5px);
    transition: opacity .2s ease, transform .2s ease;
    white-space: nowrap;
    z-index: 10
}

.MinOrdre_tooltip:after {
    border: 6px solid transparent;
    border-top-color: #184a5b;
    content: "";
    left: 50%;
    position: absolute;
    top: 100%;
    transform: translateX(-50%)
}

.MinOrdre_tooltip_wrapper:hover .MinOrdre_tooltip {
    opacity: 1;
    transform: translateY(0)
}

.MinOrdre_block_title.margintop {
    margin-top: 12px
}

.MinOrdre_doclink {
    background: #184a5b;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 18px;
    text-decoration: none;
    transition: background .2s ease
}

.MinOrdre_doclink:hover {
    background: #123845
}

.MinOrdre_doclink.disabled {
    cursor: not-allowed;
    opacity: .6
}