:root {
  --main-blue-color: #002473;
  --dark-blue-color-1: #001d64;
  --dark-blue-color-2: #0f2048;
  --light-blue-color-1: #7084b0;
  --light-blue-color-2: #bcc6dc;
  --light-blue-color-3: #006abc;
  --light-blue-color-4: #0098f1;
  --light-blue-color-5: #5d709b;
  --light-blue-color-6: #94cbeb;
  --light-blue-color-7: #8fb9d1;
  --white-blue-color-1: #dbe2f0;
  --red-color-1: #d83a3a;
}

.navbar {
    background-color: var(--dark-blue-color-2);
}

.navbar__logo {
    max-height: 100%;
    width: auto;
    height: 55px;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .navbar__logo {
        height: 40px;
        margin: 10px 10px 10px 0;
    }
}

.navbar__logo--small {
    max-height: 20px;
    width: auto;
    height: auto;
    margin: 0;
}

.navbar__logo-text--small {
    max-height: 15px;
}

.navbar__body {
    display: flex;
    align-items: center;
}

.navbar__actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

    .navbar__actions > a:first-child {
        color: inherit;
        font-size: 1.8rem;
        font-weight: 600;
        margin-right: 15px;
        margin-left: auto;
    }

    .navbar__actions > a:last-child {
        font-size: 1.4rem;
        line-height: 40px;
        color: white;
        background-color: #1E5078;
        padding: 0 10px 0 10px;
        border-radius: 2px;
        margin-right: 15px;
    }

@media only screen and (max-width: 768px) {
    .navbar__actions {
        display: none;
    }
}

.navbar__nav {
    width: 100%;
}

.navbar__nav--hidden-lg {
    display: none;
}

@media only screen and (max-width: 768px) {
    .navbar__nav--hidden-lg {
        display: block;
    }
}

.navbar__collapse {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .navbar__collapse {
        top: 60px;
        height: calc( 100vh - 60px );
    }
}

@media only screen and (max-width: 768px) {
    .navbar__collapse--show {
        top: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .navbar__bars {
        margin-right: 0;
        position: static;
    }
}

.navbar li a {
    /*font-size: 1.6rem;*/
    transition: 0.2s;
    color: white;
    font-weight: 500;
}

    .navbar li a:hover {
        transition: 0.2s;
        color: white;
    }

p {
    font-size: 1.6rem;
}

.support-case-modal-background {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    z-index: 15;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.support-case-modal {
    background: white;
    padding: 20px;
    width: 500px;
    border-radius: 6px;
    position: relative;
    padding-top: 0;
}

@media only screen and (max-width: 576px) {
    .support-case-modal {
        width: 100%;
    }
}

.support-case-modal-heading {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}

.support-form-x-button {
    border: none;
    background: none;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    font-size: 20px;
    color: lightslategrey;
    cursor: pointer;
    transition: all 0.2s ease;
}

.support-form-x-button:hover {
    color: black;
}

.support-case-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support-case-modal-input-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    background: var(--Base-Gray-100, #F2F4F7);
    border-radius: 8px;
}

.support-case-modal-input-section label {
    color: var(--Base-Gray-600, #475467);
    font-weight: 600;
}

.support-form-button {
    background: #667085;
    border: none;
    border-radius: 6px;
    padding: 10px;
    color: white;
    width: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.support-form-button:hover {
    background: #38548f;
}

.create-new-support-case-button {
    background: white;
    width: fit-content;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.create-new-support-case-button:hover {
    background: #f3f3f3;
}

.support-case-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 0px 20px;
    max-width: 440px;
}

.support-case-container {
    width: 100%;
    background: white;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 10px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
    border: 1px solid #00000038;
}

.support-case-container:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 5px rgba(0,0,0,0.3); 
}

.support-case-status-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 150px;
    gap: 5px;
}

.support-case-status {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.support-case-status-dot {
    font-size: 10px;
}

.support-case-status-text {

}

.support-case-date {
    background: var(--white-blue-color-2);
    padding: 2px 6px;
    border-radius: 6px;
}

.support-case-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.support-case-number {
    font-weight: 600;
    font-size: 16px;
}

.support-case-name {
    font-size: 16px;
    background: var(--light-blue-color-1);
    padding: 2px 10px;
    border-radius: 5px;
    color: white;
}

.new-support-case-modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 11;
    display: none;
}

.new-support-case-container {
    padding: 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
    border: 1px solid #00000038;
    min-width: 350px;
    max-width: 700px;
    width: 100%;
    display: none;
}

.new-support-case-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-support-case-button-section {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.new-support-case-button-section-cancel-button {
    background: white !important;
    color: #474747 !important;
}

.new-support-case-button-section-cancel-button:hover {
    color: red !important;
}

.new-support-case-form-button {
    width: fit-content;
    border: none;
    background: var(--light-blue-color-1);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    gap: 10px;
    align-items: center;
}

.new-support-case-form-button:hover {
    background: var(--light-blue-color-3);
}

.new-support-case-input-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.new-support-case-input-section input, textarea {
    border: 1px solid var(--dark-grey-color-1);
    padding: 10px 14px;
    border-radius: 6px;
    resize: none;
}

.new-support-case-input-section label {
    font-weight: 500;
}

.view-support-case-details-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
    border: 1px solid #00000038;
}

.view-support-case-details-topic {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.view-support-case-details-topic button {
    border: 1px solid;
    background: none;
    color: #38ab00cf;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 10px;
    transition: all 0.2s ease;
    max-height: 30px;
}

.view-support-case-details-topic button:hover {
    background: #38ab00cf;
    border-color: #38ab00cf;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

.view-support-case-details-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.view-support-case-details-content-line {
    display: grid;
    grid-template-columns: 120px auto;
}

.view-support-case-details-content-line-comment {
    background: var(--light-grey-color-4);
    padding: 7px 14px;
    border-radius: 6px;
    width: fit-content;
}

.view-support-case-content-ticket-container {
    padding: 5px 10px;
    border-radius: 8px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #cdcdcd;
    display: flex;
    gap: 10px;
    align-items: baseline;
    transition: all 0.2s ease;
}

.view-support-case-content-ticket-container:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

.view-support-case-close-case-modal-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 11;
    display: none;
    align-items: center;
    justify-content: center;
}

.view-support-case-close-case-modal {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px 40px;
    border-radius: 8px;
    gap: 20px;
    max-width: 450px;
    width: 100%;
    margin: 0px 20px;
}

.close-case-modal-icon-section {
    align-self: center;
    font-size: 30px;
    color: var(--main-blue-color);
}

.close-case-modal-content-section {
    font-size: 16px;
    text-align: center;
}

.close-case-modal-button-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-case-modal-button-section-cancel-btn {
    background: none;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    color: black;
}

.close-case-modal-button-section-cancel-btn:hover {
    color: var(--red-color-2);
    text-decoration: underline;
}

.close-case-modal-button-section-submit-btn {
    background: none;
    border: 2px solid;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    color: #38ab00cf;
    transition: all 0.2s ease;
}

.close-case-modal-button-section-submit-btn:hover {
    background: #38ab00cf;
    color: white;
}

.view-support-case-content-ticket-container-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-support-case-content-ticket-divider {
    border: 1px dashed white;
}

.view-support-case-content-ticket-container-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.view-support-case-content-ticket-container-event-name {

}

.view-support-case-content-ticket-container-person-name {
    display: flex;
    align-items: baseline;
    gap: 10px;
    opacity: 0.8;
}

.view-support-case-messenger-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
    border: 1px solid #00000038;
}

.view-support-case-messenger-container-heading {
    padding: 20px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.view-support-case-messenger-container-heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-blue-color);
    font-size: 18px;
}

.view-support-case-messenger-container-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-height: 200px;
    min-height: 200px;
    overflow-y: auto;
    padding: 30px 10px 20px 20px;
}

.view-support-case-messenger-message-container {
    display: flex;
    gap: 10px;
}

.view-support-case-messenger-message-user-image-block {
    height: 35px;
}

.view-support-case-messenger-message-user-image-dummy {
    border-radius: 50%;
    width: 35px;
    background: var(--dark-blue-color-1);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.view-support-case-messenger-message-user-image {
    border-radius: 50%;
    width: 35px;
    aspect-ratio: 1;
}

.view-support-case-messenger-message-block {
    position: relative;
    width: 80%;
}

.view-support-case-messenger-message-username-date {
    position: absolute;
    top: -17px;
    width: 100%;
    font-size: 12px;
    color: var(--light-blue-color-5);
}

.view-support-case-messenger-message {
    padding: 7px 14px;
    border-radius: 6px;
    width: fit-content;
    text-align: justify;
    min-height: 35px;
    align-content: center;
}

.container-side-user {
    display: flex;
    flex-direction: row-reverse;
    text-align: end;
}

.block-side-user {
    display: flex;
    justify-content: flex-end;
}

.view-support-case-messenger-container-input {
    padding: 10px;
}

.view-support-case-messenger-container-input-form {
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 40px;
}

.view-support-case-messenger-container-input-form textarea {
    border: 1px solid var(--dark-grey-color-1);
    padding: 11px 14px;
}

.view-support-case-messenger-container-input-form button {
    border-radius: 50%;
    width: 40px;
    aspect-ratio: 1;
    border: none;
    background: var(--light-blue-color-4);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-support-case-messenger-container-input-form button:hover {
    background: var(--light-blue-color-3);
}

.ticket-cases-section-case-container {
    display: flex;
    background: var(--Base-Gray-100, #F2F4F7);
    padding: 8px 12px;
    align-items: flex-start;
    border-radius: 6px;
    gap: 0px;
    flex-direction: column;
    transition: all 0.2s ease;
}

.ticket-cases-section-case-container:hover {
    transform: translateY(-5px);
    background: #d9e8ff;
}

.ticket-cases-section-case-container span {
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 5px;
}

.ticket-cases-section-case-container small {
    line-height: 120%;
}

.ticket-cases-section-case-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-page-contact-block {
    background: white;
    padding: 10px 20px 20px 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #00000038;
}

.contact-page-contact-block p {
    margin: 0;
}
/*# sourceMappingURL=styles.css.map */

.checkout-section {
    max-width: 1280px;
    margin: 20px auto;
    width: 100%;
}

.checkout-link-back {
    padding: 0px 20px;
    color: var(--main-blue-color);
}

.checkout-link-back:hover {
    color: var(--light-blue-color-3);
    text-decoration: underline;
}

.checkout-main {
    padding: 20px;
    gap: 20px;
    display: flex;
    overflow: auto;
    max-height: 70vh;
    box-shadow: 0px 0px 4px #b4b4b4;
    border-radius: 8px;
    margin: 20px 0px;
}

@media only screen and ( min-width: 769px ) and ( max-width: 1310px ) {
    .checkout-main {
        margin: 15px !important;
    }
}

.checkout-main-left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.checkout-main-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: sticky;
    top: 0;
    height: 100%;
}

@media only screen and ( max-width: 768px ) {
    .checkout-section {
        margin: 20px auto 0px;
    }

    .checkout-main {
        display: flex;
        flex-direction: column-reverse;
        max-height: unset !important;
        overflow: unset !important;
        box-shadow: unset !important;
        margin: 0;
    }

    .checkout-main-right-col {
        position: relative;
    }

    .billing-info-field input {
        max-width: unset !important;
    }

    .checkout-items-large {
        display: none !important;
    }

    .checkout-items-small {
        display: block !important;
    }
}

@media only screen and ( max-width: 440px ) {
    .checkout-section {
        margin: 10px auto 0px;
    }

    .checkout-link-back {
        padding: 10px;
    }

    .checkout-main {
        padding: 10px !important;
    }

    .checkout-main-left-col {
        min-width: unset !important;
    }

    .checkout-main-right-col {
        position: relative;
    }

    .checkout-content-island {
        padding: 10px 15px 15px !important;
    }

    .checkout-island-heading {
        padding-bottom: 10px !important;
    }

    .billing-info-field-section {
        display: flex !important;
        flex-direction: column !important;
    }

    .billing-info-section-email-phone {
        grid-template-columns: unset !important;
    }

    .billing-info-section-2-col {
        grid-template-columns: unset !important;
    }

    .checkout-item-container {
        gap: 10px !important;
        grid-template-columns: 80px 1fr auto !important;
        min-height: 80px !important;
    }

    .item-image-section {
        max-height: 80px !important;
        align-self: center;
    }

    .item-image-section img {
        max-height: 80px !important;
    }

    .item-info-name {
        font-size: 16px !important;
    }

    .item-price-total-number {
        font-size: 16px !important;
    }

    .checkout-items-discount {
        width: 100% !important;
    }

    .person-info-fields-2-col {
        grid-template-columns: auto !important;
        gap: 10px !important;
    }

    .checkout-items-total, .checkout-total-line-normal {
        font-size: 16px !important;
    }
}

.checkout-content-island {
    background: white;
    border-radius: 10px;
    padding: 10px 20px 20px;
    box-shadow: 2px 2px 5px 0px #dfdfdf;
    position: relative;
}

.content-island-loading-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #6b6b6b;
    border-radius: inherit;
    z-index: 1;
}

.checkout-island-heading {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.checkout-items-toggle-caret {
    margin-left: 10px;
    transition: all 0.2s ease;
}

.column-left {
    grid-row: 1 / 5;
    height: max-content;
    margin-right: 20px;
}

.billing-info-switcher-section {
    display: flex;
    gap: 20px;
}

.billing-info-switcher-button {
    border: none;
    background: none;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid white;
}

.billing-info-switcher-button:hover,  .billing-info-switcher-button.active {
    border-bottom-color: #0C2575;
}

.billing-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.billing-info-purchaser-section {

}

.billing-info-shipping-section {

}

.billing-info-section-heading {
    font-size: 16px;
    font-weight: 500;
    padding: 0px 0px 5px;
}

.billing-info-person-info-section {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(135deg, rgb(186 207 231 / 30%) 0%, rgb(195 214 237) 25%, rgb(179 204 235) 50%, rgb(161 198 245) 75%);
    padding: 10px;
    border-radius: 6px;
}

.person-info-fields-2-col {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    justify-content: start;
}

.person-info-fields {
    display: flex;
    flex-direction: column;
}

.billing-info-org-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 5px;
    color: #4b4b4b;
    font-weight: 500;
    cursor: pointer;
    width: max-content;
}

.billing-info-field-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-left: 10px;
}

.billing-info-field {
    display: flex;
    flex-direction: column;
}

.billing-info-field-error {

}

.billing-info-field input {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #c1c1c1;
    width: 100%;
}

.billing-info-field label {
    font-weight: 500;
}

.billing-info-field.error input, .new-support-case-input-section.error input, .new-support-case-input-section.error textarea {
    border-color: red;
    outline: none;
    transition: all 0.2s ease;
}

.billing-info-field.error input:focus, .new-support-case-input-section.error input:focus, .new-support-case-input-section.error textarea:focus {
    box-shadow: 0px 0px 4px red;
}

.billing-info-field.error label, .new-support-case-input-section.error label {
    color: red;
}

.billing-info-section-email-phone {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 10px;
}

.billing-info-section-150-auto {
    grid-column: 1 / 3;
    gap: 10px;
    display: flex;
}

.billing-info-section-150-auto .billing-info-field:first-child {
    min-width: 100px;
    max-width: 150px;
}

.billing-info-section-150-auto .billing-info-field:last-child {
    width: 100%;
}

.billing-info-section-2-col {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.both-cols {
    grid-column: 1 / 3;
}

.inline {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: flex-end;
}

.inline input {
    width: 80%;
}

.checkout-items-large {
    display: block;
}

.checkout-items-small {
    display: none;
}

.checkout-items-dynamic-wrapper {
    height: 0px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checkout-item-container {
    gap: 20px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    min-height: 120px;
    align-items: start;
}

.checkout-items-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    border-top: 1px solid #bdbdbd;
    margin-top: 20px;
    font-size: 18px;
}

.checkout-items-discount-button {
    float: inline-end;
}

.checkout-items-discount-button button {
    text-decoration: underline;
    font-weight: 500;
    text-underline-offset: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.discount-code-pill {
    color: var(--main-blue-color);
    display: flex;
    background: var(--white-blue-color-2);
    text-transform: uppercase;
    font-size: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    width: 100%;
}

.discount-code-pill button {
    border: none;
    background: none;
    cursor: pointer;
    color: var(--main-blue-color);
    padding: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
    padding-left: 10px;
}

.discount-code-pill button:hover {
    color: red;
}

.checkout-items-discount {
    display: none;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 6px;
    color: white;
    position: relative;
    height: 30px;
    width: 100%;
    justify-content: flex-end;
}

.checkout-items-discount input {
    border-radius: 6px;
    border: 1px solid #c1c1c1;
    font-size: 16px;
    padding: 6px 12px;
    height: 100%;
    width: 150px;
}

.checkout-items-discount-submit-button {
    width: 100px;
    height: 30px;
    border-radius: 6px;
    border: none;
    background: black;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkout-items-discount-submit-button:hover {
    background: #535353;
}

.item-image-section {
    max-height: 120px;
    position: relative;
}

.item-image-section img {
    width: 100%;
    height: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 2px 2px 5px #b5b5b5;
    aspect-ratio: 1;
}

.item-info-section {
    display: flex;
    flex-direction: column;
}

.item-info-name {
    font-size: 18px;
    font-weight: 500;
}

.item-price-section {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    gap: 10px;
    height: 100%;
}

.item-price-total {
    display: flex;
    gap: 10px;
    align-items: center;
}

.item-price-total-number {
    font-size: 18px;
}

.selectable-options-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selectable-options-list div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.selectable-option-button input {
    cursor: pointer;
}

.selectable-option-button:hover .selectable-option-name {
    background: #efefef;
}

.selectable-option-content {
    align-items: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
    justify-items: start;
    background: none;
}

.selectable-option-name {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 10px;
    border-radius: 6px;
    height: 40px;
    transition: all 0.2s ease;
}

.selectable-option-content img {
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    aspect-ratio: 1;
    border-radius: 8px 0px 0px 8px;
}

.payment-option {
    display: grid !important;
    grid-template-columns: 40px 1fr !important;
    justify-items: center !important;
}

.dark {
    background: black;
    color: white;
}

.checkout-summary-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-total-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.checkout-total {
    border-top: 1px solid;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.checkout-payment {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-payment-option {
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background: #000000ad;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: scaleX(1);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-payment-option:hover {
    transform: scaleX(0.95);
}

.checkout-payment-option-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 0px 20px 0px;
}

.checkout-payment-option-divider div {
    height: 1px;
    border-bottom: 1px solid #c7c7c7;
}

.checkout-payment-option-divider span {
    font-size: 16px;
}

.vipps {
    background-color: var(--shop-cart-payment-button-vipps-background-color, #ff5b24) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.vipps img {
    max-height: 30px;
}

.checkout-start-payment-loader-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    align-items: center;
    justify-content: center;
    background: #ffffffb8;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 10;
}

.checkout-start-payment-modal {
    background: black;
    color: white;
    width: 300px;
    height: 150px;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-weight: 500;
    box-shadow: 2px 2px 5px 0px #777777;
    align-items: center;
    justify-content: center;
}

.error-modal-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #575757b8;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 100;
}

.error-modal {
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 5px 0px #777777;
    border-radius: 6px;
    width: 100%;
    max-width: 450px;
    gap: 20px;
    align-items: center;
    margin: 20px;
}

.error-modal-heading {
    display: flex;
    width: 100%;
    color: var(--red-color-3);
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    font-size: 18px;
}

.error-modal-content {
    margin: 0px 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffeaea;
    color: #bb0000;
    padding: 2px 10px;
    border-radius: 6px;
    width: auto;
    max-height: 500px;
    overflow: auto;
}

.error-modal-buttons {
    padding: 15px;
    border-radius: 0px 0px 8px 8px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.error-modal-buttons button {
    background: none;
    border: 2px solid #000000ad;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: black;
}

.error-modal-buttons button:hover {
    background: #000000ad; 
    color: white;
}

.checkout-payment-method-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-payment-method {
    display: flex;
    gap: 5px;
    height: 40px;
    justify-items: center;
    align-items: center;
}

.checkout-payment-method span {
    font-size: 16px;
    justify-self: baseline;
    display: grid;
    grid-template-columns: 60px auto;
    gap: 5px;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 8px;
    padding: 5px 10px 5px 0px;
    width: 100%;
    justify-items: center;
}

.checkout-payment-method span:hover {
    background: #efefef;
}

.checkout-payment-method img {
    height: 30px;
}

.checkout-payment-method i {
    font-size: 30px;
}

.checkout-comment-textarea {
    display: flex;
    width: 100%;
    border-color: #b9b9b9;
}

.checkout-billing-info-content {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.billing-checkbox-input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-input-checkout {
    position: relative;
    width: 100%;
    transition: 0.2s;
    border: 1px solid;
    border-bottom: none;
    overflow: hidden;
}

.user-input-checkout input {
    border: none;
}

.user-input-checkout:last-of-type {
    border-bottom: 1px solid;
    border-radius: 0px 0px 5px 5px;
}

.checkout-confirmation-section {
    max-width: 800px;
    margin: 0px auto;
    width: 100%;
}

.checkout-confirmation-main {
    padding: 20px;
    gap: 40px;
    display: flex;
    border-radius: 8px;
    margin: 20px;
    flex-direction: column;
    align-items: center;
}

.checkout-confirmation-heading {
    font-size: 30px;
    letter-spacing: 1px;
    text-align: center;
}

.checkout-confirmation-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(135deg, rgb(186 207 231 / 30%) 0%, rgb(195 214 237) 25%, rgb(179 204 235) 50%, rgb(161 198 245) 75%);
    padding: 20px;
    border-radius: 6px;
    width: 100%;
    box-shadow: 2px 2px 5px 0px #dfdfdf;
    align-items: center;
}

.content-order-number {
    font-size: 26px;
    font-weight: 500;
    color: var(--main-blue-color);
}

.content-info {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.content-info p {
    margin: 0;
}

.content-info-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.content-info-col:first-of-type {
    border-right: 1px solid #c3d8e9;
    padding-right: 20px;
}

.content-info-pill {
    height: 50px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 6px;
    box-shadow: 2px 2px 5px 0px #8d8d8d;
    transition: all 0.2s ease;
}

.content-info-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 5px rgba(0,0,0,0.3);
}

.content-info-pill-img {
    height: 50px;
    border-radius: 6px;
    max-width: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-info-pill-img img {
    max-height: 50px;
    aspect-ratio: 1;
    border-radius: 6px;
}

.checkout-confirmation-items {
    width: 100%;
}

.confirmation-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 300px;
}

.checkout-total-line-normal {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    font-size: 18px;
    border: none;
    margin: 0;
}

.brand-name-order-confirmation-name {
    white-space: nowrap;
    font-family: 'Days One', sans-serif;
    color: var(--main-blue-color);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
}

.checkout-confirmation-button {
    width: 200px;
    height: 50px;
    background: white;
    box-shadow: 2px 2px 5px 0px #dfdfdf;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-confirmation-button:hover {
    transform: translateY(-5px);
    font-weight: 500;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.3);
}

@media only screen and ( max-width: 768px ) {
    .content-info {
        flex-direction: column !important;
    }

    .content-info-col {
        width: 70% !important;
    }

    .content-info-col:first-of-type {
        border-right: none !important;
        border-bottom: 1px solid #c3d8e9 !important;
        padding-right: 0px !important;
        padding-bottom: 20px !important;
    }

    .content-info-col:last-of-type {
        padding: 0 !important;
    }

    .my-orders-list {
        gap: 10px !important;
    }
}

@media only screen and ( max-width: 440px ) {
    .checkout-confirmation-section {
        margin: 0 !important;
    }

    .checkout-confirmation-heading {
        font-size: 28px !important;
    }

    .checkout-confirmation-main {
        padding: 0 !important;
        gap: 20px !important;
        margin: 20px 10px !important;
    }

    .content-info-col {
        width: 100% !important;
    }

    .checkout-confirmation-button {
        width: 100% !important;
    }

    .myinfo-block-row {
        justify-content: center !important;
    }
}

.my-orders-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 440px;
    width: 100%;
}

.my-orders-list-order {
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 5px 0px #dfdfdf;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 6px;
}

.my-orders-list-order:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 5px rgba(0,0,0,0.3);
}

.order-heading {
    display: flex;
    justify-content: space-between;
    background: var(--dark-blue-color-2);
    color: white;
    padding: 2px 10px;
    border-radius: 6px 6px 0px 0px;
    gap: 20px;
}

.order-content {
    background: white;
    padding: 10px;
    border-radius: 0px 0px 6px 6px;
    display: flex;
    justify-content: space-between;
}

.order-info-col {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-width: 90px;
}

.order-price-col b {
    font-size: 20px;
}

.order-pill-sections {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.order-shipment-status {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    background: aliceblue;
    padding: 5px 10px;
    border-radius: 6px;
}

.order-item-count {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    background: #ddfff3;
    padding: 5px 10px;
    border-radius: 6px;
}

.me-page-heading {
    color: #000000;
    letter-spacing: 1px;
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.sidebar-absolute {
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    position: absolute;
    width: 100%;
    right: -8%;

    
}

.sidebar-absolute > div:last-child {
    margin-top: 20px;
}

.sidebar-menu-language-selection {
    display: flex;
    width: 100%;
    padding: 20px;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.menu-language-button {
    background: none;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-language-button:hover {
    background: whitesmoke;
}

.menu-language-button img {
    border-radius: 50%;
    aspect-ratio: 1;
    width: 30px;
}

.menu-language-button span {
    font-size: 18px;
    color: black;
    font-weight: 100;
}

.menu-language-button.selected {
    background: var(--white-blue-color-1);
}

.myinfo-block {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    box-shadow: 2px 2px 5px 0px #dfdfdf;
    border-radius: 6px;
    gap: 20px;
    margin-bottom: 20px;
}

.myinfo-block-heading {
    font-size: 20px;
    font-weight: 500;
}

.myinfo-block-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.myinfo-block-row a:hover {
    text-decoration: underline;
    color: var(--light-blue-color-4);
}

.myinfo-person-image {
    aspect-ratio: 1;
    box-shadow: 0px 0px 5px #7b7b7b;
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.myinfo-person-info-details {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 5px;
}

.person-info-details-row {
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2b2927;
}

.person-info-details-row span {
    background: whitesmoke;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 500;
}

.myinfo-button {
    margin-top: 20px;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.myinfo-button:hover {
    background: #e1e1e1;
}

.myinfo-button:hover i {
    color: green;
}

.me-return-link:hover {
    color: var(--light-blue-color-4);
    text-decoration: underline;
}

.checkout-address-person-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.person-details-line {
    display: flex;
    flex-direction: column;
}

.checkout-island-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-address-person-address-container {
    display: flex;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
}

.address-container-details {
    display: flex;
    flex-direction: column;
}

.address-container-actions {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.checkout-address-org-button {
    border-radius: 6px;
    background: rgba(239, 239, 239, 0.80);
    display: flex;
    padding: 10px 16px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.checkout-address-org-button input {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkout-address-org-button:hover {
    background: #D0D5DD;
}

.custom-checkmark {
    height: 24px;
    min-width: 24px;
    background-color: white;
    border-radius: 5px;
    position: relative;
}

.custom-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkout-address-org-button .custom-checkmark:after {
    left: 9px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkout-address-org-button input:checked ~ .custom-checkmark:after {
    display: block;
}

.checkout-modal-background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    display: none;
}

.checkout-modal-container {
    background: white;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 2px 2px 5px 0px #6d6d6d;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 400px;
    max-width: 600px;
    margin: 0px 20px;
}

.checkout-modal-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.checkout-modal-heading span {
    font-size: 18px;
}

.checkout-modal-heading button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: black;
}

.modal-company-box {
    display: flex;
    padding: 10px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.modal-company-box:hover {
    background: #D0D5DD;
}

.modal-company-search-input {
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: all 0.2s ease;
}

.modal-company-search-input input {
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid #D0D5DD;
}

@media only screen and ( max-width: 440px ) {
    .checkout-modal-container {
        width: 100% !important;
        min-width: unset !important;
        margin: 0px 10px;
    }

    .my-orders-list {
        margin: auto !important;
    }

    .confirmation-order-details {
        padding: 10px 15px 15px !important;
    }
}

.checkout-edit-button {
    border-radius: 5px;
    border: 1px solid var(--lightgrey, #E7E7E7);
    background: #FFF;
    display: flex;
    width: 50px;
    height: 35px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.checkout-edit-button:hover {
    background: var(--lightgrey, #E7E7E7);
}

.billing-info-company-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.address-container-selected-address {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 16px 16px;
    gap: 20px;
}

.address-container-dynamic-wrapper {
    visibility: hidden;
    max-height: 400px;
    overflow: auto;
}

.address-container-row {
    padding: 8px 16px;
    gap: 16px;
    justify-content: flex-start;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.address-container-row.selected {
    background: var(--BG, #F5F5F5);
}

.address-container-row:hover {
    background: var(--BG, #F5F5F5);
}

.address-container-row-status {
    align-self: flex-start;
}

.address-container-row-status .checkout-address-org-button {
    padding: 0 !important;
}

.address-container-row-details {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.address-container-row-details-link {
    margin-top: 10px;
    align-self: end;
    font-size: 12px;
}

.address-container-row-details-link a {
    text-decoration: underline;
    color: #0C2575;
    cursor: pointer;
    transition: color 0.2s ease;
}

.address-container-row-details-link a:hover {
    color: var(--light-blue-color-4);
}

.address-container-row-actions {
}

.address-container-add-button {
    padding: 12px 8px;
    margin-left: 10px;
    cursor: pointer;
    background: none;
    border: none;
    border-top: 2px solid #B3B3B3;
    width: 100%;
}

.address-container-add-button div {
    display: flex;
    gap: 10px;
    transition: all 0.2s ease;
}

.address-container-add-button:hover div {
    transform: translateX(10px);
}

.address-container-buttons {
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    gap: 10px;
}

.address-container-buttons button {
    background: none;
    border: 1px solid var(--lightgrey, #E7E7E7);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.address-container-buttons button:hover {
    background: var(--lightgrey, #E7E7E7);
}

.checkout-modal-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-modal-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.checkout-modal-submit-button {
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: white;
    background: #8adb8a;
    transition: all 0.2s ease;
    position: relative;
}

.checkout-modal-submit-button i {
    transform: translateX(30px);
    transition: inherit;
}

.checkout-modal-submit-button:hover i {
    transform: translateX(0px);
}

.checkout-modal-submit-button span {
    color: #8adb8a;
    transition: inherit;
}

.checkout-modal-submit-button:hover span {
    color: white;
}

.checkout-modal-cancel-button {
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 6px;
    transition:all 0.2s ease;
    color: black;
}

.checkout-modal-cancel-button:hover {
    text-decoration: underline;
    color: var(--red-color-3);
    background: #fff5f5;
}

.heading-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-company-result-box {
    display: flex;
    flex-direction: column;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    max-height: 262px;
    overflow: auto;
    height: 262px;
    position: relative;
    background: whitesmoke;
}

.modal-company-result-box-row {
    display: flex;
    flex-direction: column;
    padding: 5px 10px;
    cursor: pointer;
    background: white;
    border: none;
    transition: all 0.2s ease;
    position: relative;
}

.modal-company-result-box-row:nth-of-type(odd) {
    background: whitesmoke;
}

.modal-company-result-box-row:hover {
    background: #D0D5DD;
}

.modal-company-result-box-row-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
}

.checkout-reference-number-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reference-number-row {
    display: flex;
    flex-direction: column;
}

.reference-number-row b {
    background: #000000ad;
    width: fit-content;
    padding: 1px 8px;
    border-radius: 6px;
    color: white;
}

.confirmation-heading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.confirmation-heading-text1 {
    font-size: 20px;
    font-weight: 500;
    color: #474747;
}

.confirmation-heading-text2 {
    font-size: 24px;
}

.confirmation-heading-text2 span {
    color: #153287;
    font-weight: 500;
}

.confirmation-order-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 5px 0px #dfdfdf;
}

.confirmation-order-details-heading {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 36px;
}

.confirmation-order-details-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 200px;
    min-height: 60px;
}

.confirmation-link {
    text-decoration: underline;
    color: #0C2575;
    cursor: pointer;
    transition: color 0.2s ease;
}

.confirmation-link:hover {
    color: var(--light-blue-color-4);
}

.details-row-delivery {
    display: flex;
    align-items: center;
    gap: 10px;
    /* box-shadow: 2px 2px 5px rgb(203 203 203); */
    border-radius: 6px;
    width: 200px;
    padding: 5px 20px 5px 0px;
    font-size: 16px;
    justify-content: flex-start;
    height: 40px;
}

.details-row-payment {
    display: flex;
    align-items: center;
    gap: 10px;
    /* box-shadow: 2px 2px 5px rgb(203 203 203); */
    border-radius: 6px;
    width: 200px;
    padding: 5px 20px 5px 10px;
    font-size: 16px;
    justify-content: flex-start;
    height: 40px;
}

.details-row-delivery img, .details-row-payment img {
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    aspect-ratio: 1;
}

.confirmation-items-summary {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    width: 100%;
    border-radius: 6px;
    box-shadow: 2px 2px 5px 0px #dfdfdf;
}

.confirmation-order-details-content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 10px;
}

.confirmation-order-details-content-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seller-info-contact-section {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.seller-info-contact-section button, .invoice-download-button {
    background: none;
    border: 1px solid #00000038;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: black;
    position: relative;
}

.seller-info-contact-section button:hover, .invoice-download-button:hover {
    background: whitesmoke;
}

.checkout-content-island-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 10px;
    background: #f5f5f57a;
    cursor: not-allowed;
}

.item-info-quantity {
    display: flex;
    align-items: center;
    border-radius: 6px;
    font-weight: 500;
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    background: rgb(0 0 0 / 75%);
    color: white;
}

.confirmation-order-invoice-details {
    display: flex;
    column-gap: 30px;
    row-gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.invoice-details-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 200px;
    min-height: 60px;
}

.invoice-status-pill-paid {
    background: #e2ffe9;
    width: auto;
    padding: 5px 15px;
    color: green;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-weight: 500;
}

.invoice-status-pill-unpaid {
    background: #ffe2e2;
    width: auto;
    padding: 5px 15px;
    color: var(--red-color-2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-weight: 500;
}

.home-background {
    background: var(--dark-blue-color-2);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.home-background a {
    transition: all 0.2s ease;
}

.home-background a:hover {
    text-decoration: underline;
    color: var(--light-blue-color-4);
}

.home-blur {
    width: 100%;
    height: 100%;
    z-index: 10;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.home-panel {
    width: auto;
    max-width: 400px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border-radius: 30px;
    align-items: center;
    box-shadow: 2px 2px 8px #2b2b2b;
}

.home-panel-about {
    display: flex;
    gap: 20px;
}

.home-panel-about-lang {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-panel-about-lang button {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.home-panel-about-lang button img {
    border-radius: 50%;
    aspect-ratio: 1;
    width: 30px;
    transition: all 0.2s ease;
}

.home-panel-about-lang button img:hover {
    box-shadow: 0px 0px 6px var(--light-blue-color-4);
}

.home-illustration {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 200px;
    height: 50%;
}

.home-panel-login-button {
    width: 100%;
    background: var(--light-blue-color-4);
    border: none;
    border-radius: 20px;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 30px 0px;
    color: white;
    font-weight: 500;
}

.home-panel-login-button:hover {
    background: var(--light-blue-color-9);
}

.home-panel-icons {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 2px 2px 6px var(--light-blue-color-2);
    padding: 10px;
    border-radius: 20px;
    border: 1px solid var(--light-blue-color-2);
}

.home-panel-icons span {
    background: black;
    border-radius: 6px;
    height: 38px;
    transition: all 0.2s ease;
}

.home-panel-icons i {
    transition: all 0.2s ease;
}

.home-panel-icons i:hover {
    color: var(--light-blue-color-6);
}

.home-panel-icons span:hover {
    background: var(--light-blue-color-6);
}

@media only screen and ( max-width: 420px ) {
    .home-panel {
        padding: 20px !important;
    }
}

.invoice-status-payment-details {
    background: var(--white-blue-color-1);
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 7px;
}

.invoice-status-payment-details-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.item-info-block {
    max-width: fit-content;
    background: var(--white-blue-color-2);
    border-radius: 6px;
    margin: 5px 0;
}

.item-info-variant {
    margin: 5px 0px;
    display: flex;
    column-gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 5px;
    border-radius: 5px;
    /*background: var(--white-blue-color-2);*/
}

.not-found-error-box {
    background: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid red;
    box-shadow: 0px 0px 6px red;
    position: relative;
}

.not-found-error-box .home-panel-about-lang {
    position: absolute;
    top: 20px;
    right: 20px;
}

.not-found-error-box h1 {
    max-width: 85%;
}

.file-download-button-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.myfiles-shop-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: fit-content;
}

.myfiles-file-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.myfiles-file-group-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.myfiles-file-row {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

@media only screen and (min-width: 769px) {
    .menu-button-bars-dynamic {
        display: none !important;
    }
}

.vipps-section {
    max-width: 800px;
    margin: 20px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.vipps-amount-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--vipps-orange);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 2px 2px 15px 0px #0000002d;
    position: relative;
}

.vipps-amount-container-amount {
    color: white;
    font-size: 50px;
    font-weight: 500;
    z-index: 10;
}

.vipps-information-container {
    box-shadow: 2px 2px 30px 5px #0000000a;
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.vipps-information-container-row {
    display: flex;
    flex-direction: column;
}

.vipps-information-container-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.vipps-information-container-row-label {
    color: var(--vipps-orange);
    font-weight: 500;
}

.vipps-information-container-row-value {
    font-size: 18px;
}

.bling-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    border-radius: 15px;
    box-shadow: 2px 2px 30px 5px #00000030;
    position: relative;
    background: #ff5b24;
    overflow: hidden;
}

.bling-container img {
    position: absolute;
    bottom: 10px;
    width: 100px;
}

.bling-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 90deg, #ff5b24 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 75%, #ff5b24 100% );
    transform: skewX(-30deg);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
    border-radius: 15px;
}

@keyframes shimmer {
    0% {
        left: -50%;
    }

    10% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@media only screen and (max-width: 576px) {
    .vipps-section {
        margin-top: 0px;
        gap: 20px;
    }

    .vipps-information-container {
        flex-direction: column !important;
        gap: 0px !important;
    }

    .vipps-information-container-row {
        border-bottom: 1px solid #d5d5d569;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 427px) {
    .vipps-amount-container-amount {
        font-size: 40px;
    }
}

.vipps-actions-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

.vipps-actions-container button {
    border: none;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vipps-orange);
    cursor: pointer;
    transition: 0.2s;
    font-size: 25px;
    box-shadow: 2px 2px 30px 5px #0000000a;
}

.vipps-actions-container button:hover {
    background: var(--vipps-orange);
    color: white;
}

.vipps-delete-agreement-modal-bg {
    position: fixed;
    background: #00000057;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    opacity: 0;
}

.vipps-delete-agreement-modal {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 2px 2px 30px 5px #00000030;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 20px;
    transform: translateY(-1000px);
    transition: 0.5s;
}

.vipps-delete-agreement-modal-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    gap: 20px;
}

.vipps-delete-agreement-modal-text i {
    color: var(--vipps-orange);
    font-size: 50px;
}

.vipps-delete-agreement-modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.vipps-delete-agreement-modal-button-main {
    border: 2px solid var(--vipps-orange);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vipps-orange);
    background: white;
}

.vipps-delete-agreement-modal-button-main:hover {
    color: white;
    background: var(--vipps-orange);
}

.vipps-delete-agreement-modal-button-secondary {
    background: none;
    border: none;
    color: var(--vipps-orange);
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    text-underline-offset: 5px;
}

.vipps-delete-agreement-modal-button-secondary:hover {
    text-decoration: underline;
}