: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;
    gap: 10px;
}

.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;
}

.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;
    position: relative;
}

.support-case-container:hover {
    background: var(--white-blue-color-1);
    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 8px;
    border-radius: 20px;
}

.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: 5px 15px;
    border-radius: 8px;
    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: 3px;
}

.new-support-case-input-section input, textarea {
    border: 1px solid var(--dark-grey-color-1);
    padding: 10px 14px;
    border-radius: 8px;
    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-name {
    line-height: 18px;
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.view-support-case-details-topic-name span {
    font-size: 14px;
    color: var(--light-blue-color-5);
}

.view-support-case-details-topic button {
    border: 1px solid;
    background: none;
    color: #38ab00cf;
    cursor: pointer;
    border-radius: 20px;
    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: 20px;
    width: fit-content;
}

.view-support-case-content-ticket-container {
    padding: 5px 10px;
    border-radius: 20px;
    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: 20px;
    padding: 10px 20px;
    cursor: pointer;
    color: #38ab00cf;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.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: 500px;
    min-height: 250px;
    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: 20px;
    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;
}

.user-input-checkout:first-of-type {
    border-radius: 5px 5px 0px 0px;
}

.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: white;
    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: 8px 10px;
    border-radius: 8px;
    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: 5px;
    max-height: 262px;
    overflow: auto;
    height: 262px;
    position: relative;
    background: var(--white-blue-color-2);
}

.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: var(--white-blue-color-2);
}

.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-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-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: 100%;
    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%;
    margin-top: 0;
}

.not-found-error-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.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;
    }
}
























.gradient-bg {
    background: linear-gradient(180deg, rgba(17, 33, 70, 1) 0%, rgba(20, 35, 73, 1) 25%, rgba(32, 54, 82, 1) 50%, rgba(50, 68, 91, 1) 75%);
}

.pattern-bg {
    background-size: 1080px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.13'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.layout-footer {
    display: flex;
    margin: 27px auto;
    justify-content: center;
}

.home-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.home-login-button {
    background: var(--light-blue-color-9);
    border: none;
    border-radius: 8px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 15px 0px;
    color: white;
    font-weight: 500;
    width: fit-content;
    text-wrap: nowrap;
    padding: 10px 20px;
    box-shadow: 2px 2px 6px #000000c4;
}

.home-login-button:hover {
    background: var(--light-blue-color-4);
}

.restricted-height-wrapper-me-list {
    max-height: calc(100dvh - 219px);
    overflow-y: auto;
    height: 100%;
    padding: 0px 10px;
}

.restricted-height-wrapper-detail-view {
    max-height: calc(100dvh - 207px);
    overflow-y: auto;
    height: 100%;
    padding: 0px 10px;
}

.restricted-height-wrapper-ga-list {
    max-height: calc(100dvh - 151px);
    overflow-y: auto;
    height: 100%;
}

.home-bg-image {
    width: 100%;
    height: 100%;
}

.home-forms-container-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
}

.container-grid-item {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 5px 20px 5px 20px;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 6px #000000c4;
    text-decoration: none;
}

.container-grid-item:hover {
    transform: translateY(-5px);
    color: var(--light-blue-color-4);
}

.container-grid-item i {
    font-size: 12px;
}

@media only screen and (max-width: 576px) {
    .container-grid-item {
        width: 100%;
        flex-direction: column-reverse !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }

    .restricted-height-wrapper-me-list {
        max-height: calc(100dvh - 169px) !important;
    }

    .restricted-height-wrapper-detail-view {
        max-height: calc(100dvh - 151px) !important;
    }

    .restricted-height-wrapper-ga-list {
        max-height: calc(100dvh - 111px) !important;
        padding: 0 !important;
    }

    .layout-footer {
        margin: 17px auto !important;
    }

    .me-toast-error, .me-toast-info {
        width: 100% !important;
    }

    .applicant-type-buttons {
        flex-direction: column !important;
    }
}

@media only screen and (min-width: 577px) and (max-width: 1280px) {
    .view-item-content-section {
        gap: 15px !important;
    }
}

@media only screen and (max-width: 768px) {
    .view-item-content-section {
        display: flex !important;
        gap: 30px !important;
        flex-direction: column !important;
    }

    #sidebar_toggle_button {
        display: flex !important;
    }

    .restricted-height-wrapper-me-list {
        padding: 0 !important;
    }

    .restricted-height-wrapper-detail-view {
        padding: 0 !important;
    }

    .me-view-heading {
        padding: 0 !important;
    }
}

.container-grid-item-status-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    border: 1px solid #757575;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
    color: black !important;
    flex-shrink: 0;
}

.view-item-content-section {
    display: grid;
    grid-template-columns: auto auto;
    gap: 60px;
    position: relative;
}

.view-item-return-button {
    position: absolute;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    top: 0;
    left: 0;
}

.item-content-section-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 300px;
}

.item-content-island {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-content-island-heading {
    font-size: 22px;
    color: white;
}

.item-content-island-body {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 6px #000000c4;
    overflow: auto;
}

.item-content-island-body-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    align-items: flex-start;
}

.item-content-island-body-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item-content-island-body-field {

}

.item-content-island-body-field-caption {
    font-size: 14px;
    color: var(--light-blue-color-3);
    font-weight: 600;
}

.item-content-island-body-field-value {
    font-size: 18px;
    margin-left: 5px;
}

.item-content-island-form-name {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
    justify-content: space-between;
}

.item-content-island-form-name h1 {
    margin: 0;
}

.me-toast-error {
    font-size: 20px;
    background: #ffdfdf;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    width: fit-content;
    align-items: center;
    color: #c51515;
    box-shadow: 2px 2px 6px #2f2f2f;
}

.me-toast-error i {
    margin-top: 1px;
}

.me-toast-info {
    font-size: 20px;
    background: var(--white-blue-color-1);
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    width: fit-content;
    align-items: center;
    color: #1c1c1c;
    box-shadow: 2px 2px 6px #2f2f2f;
}

.me-toast-info i {
    margin-top: 1px;
}

.me-view-heading {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    padding-left: 10px;
}

.org-search-container-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 20px;
}

.org-search-container-input label {
    font-weight: 500;
}

.org-search-container-input input {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #D0D5DD;
}

.item-divider {
    font-size: 18px;
    font-weight: 500;
    color: var(--light-grey-color-2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.org-input-form {
    position: relative;
    width: 100%;
    transition: 0.2s;
    border: 1px solid #D0D5DD;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
}

.applicant-type-buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.applicant-type-buttons button {
    background: var(--light-blue-color-9);
    border: none;
    border-radius: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    font-weight: 500;
    width: fit-content;
    text-wrap: nowrap;
    padding: 10px 20px;
}

.applicant-type-buttons button:hover {
    background: var(--light-blue-color-4);
}

.main-screen-loader-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    /*background: linear-gradient(180deg, rgba(17, 33, 70, 1) 0%, rgba(20, 35, 73, 1) 25%, rgba(32, 54, 82, 1) 50%, rgba(50, 68, 91, 1) 75%);*/
    background: var(--dark-blue-color-2);
    backdrop-filter: blur(3px);
}

.main-screen-loader {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    background: rgb(32 66 111 / 70%);
    color: white;
}

.org-result-not-found {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6b6b6b;
    padding: 20px;
}

.create-org-error-bg {
    position: fixed;
    z-index: 10;
    display: flex;
    width: 100%;
    max-width: 600px;
    padding: 0px 20px;
    top: -300px;
    transition: all 0.5s cubic-bezier(0.42, 0, 0.32, 1.01);
}

.create-org-error {
    color: #bf0000;
    background: #fff2f2;
    font-size: 18px;
    display: flex;
    width: 100%;
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.success-toast-bg {
    position: fixed;
    z-index: 10;
    display: flex;
    width: 100%;
    top: -300px;
    transition: all 0.5s cubic-bezier(0.42, 0, 0.32, 1.01);
    justify-content: center;
    align-items: center;
    left: 0;
}

.success-toast {
    color: #00711f;
    background: #b4ffb4;
    font-size: 18px;
    display: flex;
    width: 100%;
    padding: 20px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    align-items: center;
    gap: 20px;
    margin: 0px 20px;
    max-width: 748px;
}

.user-input-checkout.input-error label {
    color: red;
}

.user-input-island {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-input-island-heading {
    font-weight: 500;
    font-size: 16px;
    color: #00549d;
}

.user-input-islands-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 20px;
    
}

/* Track */
::-webkit-scrollbar-track {
    background: none;
    border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--light-blue-color-1);
    border-radius: 20px;
    transition: all 0.2s ease;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--light-blue-color-4);
}

.fd-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fd-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.fd-container-heading {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;
}

.fd-container-form-list-wrapper {
    overflow: hidden;
    transition: 0.2s;
    height: 0;
}

.fd-container-form-list {
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    gap: 10px;
    padding-top: 10px;
}

.fd-container-form-list-row {
    padding: 5px 10px;
    font-size: 16px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-wrap: wrap;
}

.fd-container-form-list-row:hover {
    background: var(--white-blue-color-1);
}

.fd-container-form-list-row-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fd-container-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-top: 10px;
}

.fr-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fr-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 6px #454545;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.fr-container:hover {
    background: var(--white-blue-color-1);
}

.fr-container-header {

}

.fr-container-header-heading {
    font-size: 20px;
    font-weight: 500;
}

.fr-container-header-heading2 {

}

.fr-container-pills {
    display: flex;
    gap: 10px;
}

.fr-container-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--white-blue-color-1);
    padding: 2px 10px;
    border-radius: 20px;
    color: var(--light-blue-color-5);
    font-size: 14px;
}

.fr-container-pill i {
    color: var(--light-blue-color-3);
}

.pill-danger {
    color: var(--red-color-1) !important;
    background: #f9cccc !important;
}

.pill-danger i {
    color: var(--red-color-1) !important;
}

.pill-success {
    color: forestgreen !important;
    background: #d7ffd7 !important;
}

.pill-success i {
    color: forestgreen !important;
}

.pill-warning {
    background: #ffddc9 !important;
    color: #ef5a00 !important;
}

.pill-warning i {
    color: #ef5a00 !important;
}

.me-container-loader-overlay {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    border-radius: 20px;
    z-index: 2;
    color: #303030;
}

.res-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 2px 2px 6px rgb(47 47 47);
    width: 100%;
    height: fit-content;
}

.res-container-header {
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    flex-direction: row;
}

.res-container-header-heading {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 24px;
}

.res-header-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.res-header-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white-blue-color-1);
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--light-blue-color-5);
    font-size: 16px;
    font-weight: 500;
    height: 34px;
}

.res-header-pill-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--white-blue-color-1);
    background: none;
    border: 2px solid var(--white-blue-color-1);
    height: 34px;
    padding: 6px 15px 5px 15px;
}

.res-header-pill-button:hover {
    background: var(--white-blue-color-1);
    color: var(--light-blue-color-4);
}

.res-header-pill-button-delete {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--red-color-2);
    background: none;
    border: 2px solid var(--red-color-2);
    height: 34px;
    padding: 6px 15px 5px 15px;
}

.res-header-pill-button-delete:hover {
    background: #ffb2b2;
    color: #c60000;
    border-color: #ffb2b2;
}

.res-header-pill-button-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #00ba00;
    background: none;
    border: 2px solid #00ba00;
    height: 34px;
    padding: 6px 15px 5px 15px;
}

.res-header-pill-button-success:hover {
    background: #dfffdf;
    color: #117011;
    border-color: #dfffdf;
}

.res-header-pill-button-close {
    background: none;
    border: none;
    font-size: 16px;
    padding: 0 20px;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--light-blue-color-8);
    font-weight: 500;
    border-radius: 8px;
}

.res-header-pill-button-close:hover {
    color: var(--light-blue-color-3);
    background: var(--white-blue-color-1);
}

.res-container-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 10px;
}

.res-container-content-col {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

@media only screen and (max-width: 576px) {
    .res-container {
        margin-top: 10px;
        padding: 15px !important;
    }

    .fd-container {
        padding: 15px !important; 
    }

    .fd-container-form-list-row {
        padding: 10px !important;
    }

    .me-view-heading-link {
        font-size: 16px !important;
        gap: 5px !important;
    }

    .me-view-heading {
        margin-bottom: 10px !important;
    }

    .fr-list {
        margin-top: 10px;
    }

    .view-response-flex {
        gap: 10px !important;
    }

    .sidebar__grid {
        gap: 30px !important;
    }
}

.res-survey-response-block {
    /*background: linear-gradient(110deg, rgba(234, 239, 249, 1) 0%, rgba(213, 223, 241, 1) 33%, rgba(173, 193, 227, 1) 66%);*/
    background: #E8EEF8;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.res-container-special {
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.res-survey-response-block-special {
    font-weight: 500;
    font-size: 16px;
}

.res-survey-response-content-special {
    font-size: 16px;
    width: fit-content;
    color: var(--main-blue-color);
    font-weight: 100;
}

.res-survey-response-heading {
    font-weight: 500;
}

.res-survey-response-content {
    font-size: 16px;
    width: fit-content;
    color: #000000;
}

.res-survey-response-content div {
    white-space: pre-wrap;
}

.res-container-2-col {
    gap: 20px;
    display: grid;
    grid-template-columns: 3fr 2fr;
}

.res-support-island {
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
}

.res-support-island-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white-blue-color-2);
    padding: 5px 10px;
    border-radius: 8px;
    color: var(--light-blue-color-8);
}

.res-support-island-heading i {
    color: var(--light-blue-color-1);
    font-size: 28px;
}

.res-support-island-button {
    background: none;
    border: 2px solid var(--light-blue-color-1);
    border-radius: 8px;
    padding: 10px;
    color: var(--light-blue-color-1);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.res-support-island-button:hover {
    background: var(--light-blue-color-1);
    color: white;
}

.res-container-status-list {
    display: flex;
    flex-direction: column;
}

.res-container-status-head {
    display: grid;
    grid-template-columns: 80px 2fr 1fr;
    gap: 10px;
    align-items: center;
    justify-items: start;
    font-weight: 500;
    background: var(--light-blue-color-1);
    padding-left: 16px;
    border-radius: 35px;
    color: white;
    margin-bottom: 5px;
}

.res-container-status-row {
    display: grid;
    grid-template-columns: 80px 2fr 1fr;
    gap: 10px;
    align-items: center;
    justify-items: start;
    transition: all 0.2s;
    padding: 5px 0;
}

.res-container-status-row:hover {
    background: var(--white-blue-color-2);
}

.res-container-status-row-date {
    color: var(--main-blue-color);
    display: flex;
    flex-direction: column;
    line-height: 14px;
}

.res-container-status-row-date-time {
    font-size: 12px;
    color: var(--light-blue-color-1);
    display: flex;
    align-items: center;
    gap: 3px;
}

.res-container-status-row-date-invitee {
    color: var(--main-blue-color);
    display: flex;
    flex-direction: row;
    line-height: 14px;
    align-items: center;
    gap: 5px;
}

.res-container-status-row-date-time-invitee {
    font-size: 12px;
    color: var(--light-blue-color-1);
    display: flex;
    align-items: center;
}

.res-container-status-row-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white-blue-color-1);
    padding: 2px 10px;
    border-radius: 20px;
    color: var(--light-blue-color-5);
}

.res-container-status-row-name {
    font-size: 12px;
    color: var(--light-blue-color-1);
}

.view-response-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.res-container-files-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.res-container-file-row {
    background: linear-gradient(110deg, rgba(234,239,249,1) 0%, rgba(213,223,241,1) 33%, rgba(173,193,227,1) 66%);
    padding: 10px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.res-container-file-row:hover {
    box-shadow: 0px 0px 8px #0098f1c2;
}

.res-container-file-row i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    aspect-ratio: 1;
    border-radius: 20px;
    color: var(--light-blue-color-3);
}

.res-container-file-row:hover i {
    color: var(--light-blue-color-4);
}

.response-modal-background {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 11;
    backdrop-filter: blur(3px);
    background: #00000052;
}

.response-modal-container {
    background: white;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    box-shadow: 2px 2px 6px #00000070;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0px 15px;
}

.response-modal-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    color: var(--light-blue-color-8);
}

.response-modal-heading button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--light-blue-color-8);
}

.response-heading-with-icon {
    display: flex;
    align-items: center;
    font-size: 20px;
    gap: 10px;
}

.response-modal-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.response-modal-submit-button {
    border: none;
    padding: 8px 16px;
    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;
    border-radius: 20px;
}

.response-modal-submit-button i {
    transform: translateX(30px);
    transition: inherit;
}

.response-modal-submit-button:hover i {
    transform: translateX(0px);
}

.response-modal-submit-button span {
    color: #8adb8a;
    transition: inherit;
}

.response-modal-submit-button:hover span {
    color: white;
}

.response-modal-cancel-button {
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s ease;
    color: black;
}

.response-modal-cancel-button:hover {
    text-decoration: underline;
    color: var(--red-color-3);
    background: #fff5f5;
}

.main-bg {
    background: #0F2048;
    background-image: url(/img/main-wave.png);
    background-size: cover;
}

.main-footer {
    background: #0F2048;
    color: var(--white-blue-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 5px;
    font-size: 12px;
}

.language-switcher {
    justify-self: center;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 4px;
    border: none;
    height: 42px;
}

.lang-switcher-button {
    display: flex;
    gap: 10px;
    padding: 8px 12px;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.lang-switcher-button:hover {
    border-radius: 4px;
}

#lang-switcher-caret {
    transition: all 0.3s ease;
}

.lang-switcher-container {
    background: rgb(255 255 255);
    display: grid;
    position: absolute;
    top: 52px;
    border-radius: 0px 0px 8px 8px;
    background-color: var(--main-blue-color);
    height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
    align-items: center;
}

.lang-switcher-container-row {
    padding: 10px !important;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    display: grid !important;
    grid-template-columns: 30px auto;
    color: white !important;
    align-content: center;
    align-items: center;
    justify-items: center;
    font-size: 16px;
    gap: 10px;
    height: 50px;
}

.lang-switcher-container-row:hover {
    background: #7084b0;
}

.lang-switcher-container-row:last-child {
    border-radius: 0px 0px 8px 8px;
}

@media only screen and (max-width: 768px) {
    .home-content-box {
        flex-direction: column-reverse !important;
        margin: 0 !important;
    }

    .home-content-box-image {
        max-width: unset !important;
        margin-left: 0px !important;
        margin-top: -150px !important;
    }

    .home-content-box-content {
        width: 100% !important;
        min-width: unset !important;
    }
}

.home-content-box {
    padding: 30px;
    width: fit-content;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    border-radius: 8px;
    background: #F5F5F5;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    margin: 20px;
}

.home-content-box-image {
    position: relative;
    padding: 3px;
    max-width: 600px;
    width: 100%;
    margin-left: -150px;
}

.home-content-box-image img {
    max-width: 100%;
}

.home-content-box-image-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
}

.home-content-box-content {
    display: flex;
    flex-direction: column;
    width: 300px;
    gap: 10px;
    min-width: 300px;
    z-index: 1;
}

.home-content-box-heading {
    font-size: 28px;
    font-weight: 500;
}

.home-content-box-text {

}

.home-content-box-button {
    width: 200px;
    padding: 12px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    border-radius: 8px;
    background: #5F86C0;
    color: white;
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.home-content-box-button:hover {
    background: var(--light-blue-color-3);
}

.me-view-heading-link {
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.me-view-heading-link:hover {
    color: var(--light-blue-color-6);
}

.form-card {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    transition: all 0.2s ease;
    height: fit-content;
    position: relative;
    cursor: pointer;
}

.form-card:hover {
    box-shadow: 0px 0px 5px 5px var(--light-blue-color-4-lighten);
    transform: scale(1.02);
}

.form-card:hover .form-card-content-link-text {
    transform: scale(1.2) translateX(10px);
}

.form-card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0px 0px;
}

.form-card-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    filter: blur(10px);
    transform: scale(1.2);
}

.form-card-image-img {
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
}

.form-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-wrap: nowrap;
    background: white;
    height: fit-content;
    border-radius: 0px 0px 8px 8px;
}

.form-card-content-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.form-card-content-text {
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 20px;
    border-radius: 8px;
    background: #f5f5f59c;
    padding: 10px;
}

.form-card-content-link {
    transition: all 0.2s ease;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.form-card-content-link-pill {
    background: var(--light-blue-color-7);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
}

.form-card-content-link-text {
    transition: all 0.2s ease;
}

.item-content-sidebar {
    border-radius: 8px;
    /*max-width: 400px;*/
    box-shadow: 2px 2px 6px #2d2d2d;
    position: sticky;
    top: 0;
}

.item-content-sidebar-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    border-radius: 0px 0px 8px 8px;
}

.item-content-sidebar-props {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.item-content-sidebar-submit-button {
    background: var(--light-blue-color-4);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.item-content-sidebar-submit-button:hover {
    background-color: var(--light-blue-color-4-lighten);
}

.applicant-type-selection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.applicant-button {
    width: 200px;
    height: 300px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.applicant-button-top-part {
    flex: 0 0 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-blue-color-1);
    color: #677ba5;
    height: 100%;
}

.applicant-button-bottom-part {
    flex: 1;
    background: #ffffff;
    color: #333;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    padding-bottom: 30px;
    font-weight: bold;
    height: 100%;
}

.applicant-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: -1px;
    overflow: hidden;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(200%);
    height: 100px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
}

@media only screen and (max-width: 576px) {
    .applicant-type-selection {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .applicant-button {
        width: 100% !important;
        height: 100px !important;
        flex-direction: row-reverse !important;
    }

    .applicant-button-bottom-part {
        padding-bottom: 10px !important;
    }

    .applicant-button-top-part {
        flex: 0 0 45% !important;
        padding-left: 40px !important;
    }

    .applicant-type-form {
        width: 100% !important;
    }

    .item-content-island-body {
        padding: 15px !important;
    }

    .custom-shape-divider-bottom {
        bottom: -20px !important;
        left: 0px !important;
    }

    .form-card {
        max-width: unset !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 768px) {
    .form-card {
        max-width: 600px !important;
    }

    .home-forms-container-grid {
        justify-content: center;
    }
}

.res-container-header-button {
    background-color: var(--white-blue-color-1);
    color: var(--light-blue-color-5);
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.res-container-header-button:hover {
    background-color: var(--light-blue-color-2);
    transform: translateY(-2px);
}

.res-container-header-button:active {
    background-color: #e0e0e0;
    transform: translateY(0);
}

.share-modal-send-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--light-blue-color-8);
    background: none;
    border: 2px solid var(--light-blue-color-8);
    height: 34px;
    padding: 6px 15px 5px 15px;
}

.share-modal-send-button:hover {
    background: var(--light-blue-color-8);
    color: white;
}

.share-modal-input {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    gap: 5px;
}

.share-modal-input label {
    color: var(--light-blue-color-8);
    font-weight: 500;
    font-size: 16px;
}

.share-modal-input input, .share-modal-input textarea {
    border: none;
    border-bottom: 1px solid var(--light-blue-color-8);
    background: var(--white-blue-color-1);
    padding: 8px 16px;
    font-size: 16px;
    transition: all 0.2s;
    border-radius: 4px 4px 0px 0px;
}

.share-modal-input input:focus, .share-modal-input textarea:focus {
    outline: none;
    background: var(--white-blue-color-2);
    border-color: var(--light-blue-color-4);
}

.share-modal-input-desc-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white-blue-color-2);
    padding: 10px;
    color: var(--light-blue-color-8);
    font-weight: 400;
    border-radius: 8px;
    margin-bottom: 10px;
}

.res-container-header-heading-invitation {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue-color-4);
    font-size: 14px;
    gap: 5px;
    padding: 0px 7px;
    border-radius: 20px;
}

.res-pill-new {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue-color-4);
    font-size: 16px;
    gap: 5px;
    padding: 2px 10px;
    border-radius: 20px;
    color: white;
    height: 24px;
    height: fit-content;
}

.res-container-invitees {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.invitee-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    transition: all 0.2s;
}

.invitee-row:hover .invitee-row-date, .invitee-row:hover .invitee-row-name-line {
    background: var(--light-blue-color-4-lighten);
}

.invitee-row-name {
    color: var(--light-blue-color-8);
    font-weight: 500;
    width: 100%;
    position: relative;
    align-self: center;
    display: flex;
    align-items: center;
}

.invitee-row-name-text {
    z-index: 1;
    background: white;
    padding-right: 10px;
    max-width: 80%;
}

.invitee-row-name-line {
    height: 1px;
    background: var(--white-blue-color-1);
    position: absolute;
    width: 100%;
    transition: all 0.2s;
}

.invitee-row-date {
    background: var(--white-blue-color-1);
    padding: 3px 6px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s;
}

.res-container-flex-status {
    display: flex;
    gap: 20px;
}

.res-container-300 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 2px 2px 6px rgb(47 47 47);
    min-width: 300px;
    height: fit-content;
}

@media only screen and (max-width: 768px) {
    .res-container-flex-status {
        flex-wrap: wrap;
    }

    .res-container-300 {
        width: 100%;
    }

    .invitee-row-name-text {
        font-size: 16px;
    }
}

.invitee-row-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 5px 5px;
    border-radius: 8px;
    color: var(--purple-color-1);
    white-space: pre;
}

.single-icon {
    padding: 0;
    height: 25px;
    width: 25px;
    gap: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    font-size: 18px;
}

.res-selector-container {
    display: grid;
    width: 100%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    align-items: center;
    min-height: 40px;
    gap: 5px;
}

.res-selector-container-row {
    display: flex;
    width: 100%;
    gap: 5px;
}

.res-selector-container-button {
    width: 100%;
    background: none;
    color: var(--white-blue-color-1);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1;
    height: 40px;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.res-selector-container-button:hover {
    background: var(--light-blue-color-8);
    color: white;
}

.res-selector-container-selector {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--light-blue-color-5);
    height: 40px;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-selected, .report-btn-selected {
    background: none !important;
    font-weight: 500;
    color: white;
}

@media only screen and (max-width: 767px) {
    .res-selector-container {
        flex-direction: column;
        min-height: 85px;
        margin-top: 10px;
        display: flex !important;
    }

    .res-selector-container-button {
        width: 50% !important;
    }

    .res-selector-container-3-row {
        min-height: 130px !important;
    }
}

@media only screen and (max-width: 576px) {
    .res-pane {
        gap: 10px !important;
    }
}

.res-pane {
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    display: none;
    transition: all 0.2s;
}

.pane-active, .report-pane-active {
    display: flex !important;
}

.res-final-report-success-container {
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.res-final-report-success-container i {
    color: green;
}

.accept-allocation-button {
    width: 100%;
    max-width: 500px;
    padding: 10px 10px 12px;
    background: #d4ffd4;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    color: green;
    font-variant-caps: all-small-caps;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin: auto;
}

.accept-allocation-button:hover {
    background: #b0ffb0;
    transform: translateY(-3px);
}

.accept-allocation-button-disabled {
    width: 100%;
    max-width: 500px;
    padding: 6px 10px 9px;
    border-radius: 8px;
    font-size: 24px;
    font-variant-caps: all-small-caps;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--white-blue-color-1);
    color: var(--light-blue-color-5);
    cursor: no-drop;
    margin: auto;
}

.res-container-hyperlink-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.res-container-hyperlink-list-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.res-container-hyperlink-list-row i {
    color: var(--light-blue-color-1);
    cursor: pointer;
    transition: all 0.2s;
}

.res-container-hyperlink-list-row a {
    background: var(--white-blue-color-2);
    padding: 1px 10px;
    border-radius: 8px;
    transition: all 0.2s;
    color: var(--light-blue-color-8);
}

.res-container-hyperlink-list-row:hover a {
    transform: scale(1.03) translateX(5px);
    font-weight: 500;
}

.res-container-hyperlink-list-row:hover i {
    color: var(--light-blue-color-4);
}

.res-container-status-content {
    display: flex;
    gap: 20px;
    border: 2px solid var(--purple-grey-color-1);
    padding: 4px;
    border-radius: 8px;
    align-items: stretch;
}

.res-container-status-content-first {
    padding: 8px 16px;
    width: 100%;
    border-radius: 8px;
    color: var(--purple-color-1);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    word-break: auto-phrase;
}

.res-container-status-content-first-pill {
    background: var(--purple-grey-color-1);
    width: fit-content;
    padding: 0px 8px;
    border-radius: 6px;
}

.res-container-status-content-second {
    background: var(--purple-grey-color-1);
    padding: 8px 16px;
    width: 100%;
    border-radius: 6px;
    text-align: center;
    color: var(--purple-color-1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    justify-content: center;
    word-break: auto-phrase;
}

@media only screen and (max-width: 576px) {
    .res-container-status-content-first {
        padding: 4px !important;
        gap: 5px !important;
    }

    .res-container-status-content {
        gap: 10px !important;
    }

    .res-container-status-content-second {
        padding: 4px 8px !important;
        gap: 6px !important;
    }
}

.process-add-comment-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fbff60;
    background: none;
    border: 2px solid #fbff60;
    justify-content: center;
}

.process-add-comment-btn:hover {
    background: #fdffab;
    color: #7e8100;
    border-color: #fdffab;
}

.process-comment-field {
    height: auto;
    resize: vertical;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid #ccc;
    background: white;
    font-size: 16px;
    line-height: 1.5;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.process-comment-field:focus {
    border-color: #007aff;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
}

.process-comment-btn-edit {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 40px #00000026;
    cursor: pointer;
    background: #c8e1f7;
    font-size: 16px;
    transition: 0.2s;
}

.process-comment-btn-edit:hover {
    background: #8eb2d1;
}

.process-comment-btn-delete {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 40px #00000026;
    cursor: pointer;
    background: #ffa7a7;
    font-size: 16px;
    transition: 0.2s;
}

.process-comment-btn-delete:hover {
    background: #f16464;
}

.process-comment-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    transition: 0.2s;
    padding: 10px;
    border-radius: 10px;
}

.process-comment-row:hover {
    box-shadow: 0px 0px 40px #0000001a;
}

.res-survey-response-content-files {
    display: flex;
    white-space: normal !important;
    flex-direction: column;
    gap: 10px;
}

.res-survey-response-content-files-row {
    box-shadow: 0px 0px 40px #3939392b;
    padding: 10px 20px 10px 10px;
    border-radius: 8px;
    display: flex;
    white-space: normal !important;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transition: 0.2s;
    color: #1d4083;
}

.res-survey-response-content-files-row:hover {
    background: aliceblue;
}

.res-survey-response-content-files-row img {
    width: 100%;
    max-width: fit-content;
    max-height: 100px;
    border-radius: 8px;
    object-fit: contain;
}

.res-survey-response-content-files-row i {
    font-size: 20px;
}