/* /Components/CheckoutStepComponent.razor.rz.scp.css */


.payout-method[b-gdkil9lyx7] {
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

    .payout-method:hover[b-gdkil9lyx7] {
        font-weight: 700;
    }

    .payout-method.selected[b-gdkil9lyx7] {
        background-color: #f9f9ff;
    }

    .payout-method > span[b-gdkil9lyx7] {
        height: 3.5rem;
        padding: 0.5rem;
        display: flex;
        justify-content: start;
        align-items: center;
    }
        .payout-method > span > img[b-gdkil9lyx7] {
            height: 100%;
        }
        .payout-method > span > span[b-gdkil9lyx7] {
            margin: 0 0.5rem;
        }
/* /Components/DraftStepComponent.razor.rz.scp.css */

.ohnosomanybees[b-m4vte4vqmv] {
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
    pointer-events: none;
}



.add-watch-button[b-m4vte4vqmv] {
    height: 3rem;
    width: 100%;
    border: none;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

    .add-watch-button:hover[b-m4vte4vqmv] {
        background-color: var(--primary-color);
        color: var(--light-text-color);
    }

    .add-watch-button i[b-m4vte4vqmv] {
        font-size: 1.5rem;
    }

    .add-watch-button span[b-m4vte4vqmv] {
        margin: 1rem;
    }
/* /Components/ImageSelectionComponent.razor.rz.scp.css */


.add-file-region[b-6s1pr7cqj2] {
    position: relative;
    background-color: white;
    box-shadow: 0 0 3px var(--dark-bg-color);
    aspect-ratio: 1 / 1;
    padding: 5px;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem;
    width: 100%;
    background-image: url(/img/watch-image.png);
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .add-file-region.processing[b-6s1pr7cqj2] {
        background-image: none;
    }

    .add-file-region:hover[b-6s1pr7cqj2] {
        background-color: var(--gray-bg-color);
    }

    .add-file-region label[b-6s1pr7cqj2] {
        position: absolute;
        margin: 0;
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    [b-6s1pr7cqj2].add-file-region input {
        opacity: 0;
        pointer-events: none;
        width: 1rem;
    }

.preview-images-box[b-6s1pr7cqj2] {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 1rem;
    margin: 0;
}

.preview-image-container[b-6s1pr7cqj2] {
    flex: 0 0 33.333333%;
    padding: 5px;
    max-width: 12rem;
}

.preview-image[b-6s1pr7cqj2] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5px;
    margin: 0;
    background-color: white;
    box-shadow: 0 0 3px var(--dark-bg-color);
    aspect-ratio: 1 / 1;
    width: 100%;
}

    .preview-image .placeholder-icon[b-6s1pr7cqj2] {
        font-size: 3rem;
        color: var(--gray-text-color);
    }

    .preview-image img[b-6s1pr7cqj2] {
        object-fit: cover;
        aspect-ratio: 1 / 1;
        width: 100%;
    }


.remove-image[b-6s1pr7cqj2] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25%;
    min-width: 2rem;
    height: 25%;
    min-height: 2rem;
    background-color: rgba(255,255,255,0.8);
    color: #000000;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.remove-image:hover[b-6s1pr7cqj2] {
    color: #dd1111;
}


.image-info-text[b-6s1pr7cqj2] {
    font-weight: 400;
    margin: 1rem;
    padding-top: 0;
    color: var(--primary-color);
}



.take-pictures-with-phone-button[b-6s1pr7cqj2] {
    height: 3rem;
    width: 100%;
    border: none;
    background-color: var(--gray-bg-color);
    color: var(--dark-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    margin: 0;
    border-radius: 1rem;
}
    .take-pictures-with-phone-button:hover[b-6s1pr7cqj2] {
        background-color: var(--dark-bg-color);
        color: var(--light-text-color);
    }
/* /Components/PayoutStepComponent.razor.rz.scp.css */
/* /Components/RenegotiationComponent.razor.rz.scp.css */
.review-watch[b-ntk888zjrg] {
    /*
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr;
    grid-auto-columns: 1fr;
    gap: 1em 1em;
    grid-template-areas:
        "title title title"
        "picture details offer";
    */
    width: 100%;
    height: 100%;
    margin: 2rem 0;
}

.title[b-ntk888zjrg] {
    /*grid-area: title;*/
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 0.5rem;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*
.picture {
    grid-area: picture;
}

.details {
    grid-area: details;
}

.offer {
    grid-area: offer;
}
*/


.review-result[b-ntk888zjrg] {
    width: 100%;
    padding: 1rem;
}

.pending[b-ntk888zjrg] {
    background-color: var(--gray-bg-color);
    color: var(--dark-text-color);
}

.rejected[b-ntk888zjrg] {
    background-color: var(--gray-bg-color);
    color: var(--red-color);
}

.accepted[b-ntk888zjrg] {
    background-color: palegreen;
    color: var(--dark-text-color);
}
/* /Components/ReviewStepComponent.razor.rz.scp.css */
.review-watch[b-k5hy1h3l62] {
    /*
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr;
    grid-auto-columns: 1fr;
    gap: 1em 1em;
    grid-template-areas:
        "title title title"
        "picture details offer";
    */
    width: 100%;
    height: 100%;
    margin: 2rem 0;
}

.title[b-k5hy1h3l62] {
    /*grid-area: title;*/
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 0.5rem;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*
.picture {
    grid-area: picture;
}

.details {
    grid-area: details;
}

.offer {
    grid-area: offer;
}
*/


.review-result[b-k5hy1h3l62] {
    width: 100%;
    padding: 1rem;
}

.pending[b-k5hy1h3l62] {
    background-color: var(--gray-bg-color);
    color: var(--dark-text-color);
}

.rejected[b-k5hy1h3l62] {
    background-color: var(--gray-bg-color);
    color: var(--red-color);
}

.accepted[b-k5hy1h3l62] {
    background-color: palegreen;
    color: var(--dark-text-color);
}
/* /Components/SearchBarWidget.razor.rz.scp.css */


.search-bar[b-jir3ghnswc] {
    display: inline-block;
    width: 100%;
    max-width: 40rem;
}

.slide-in-container[b-jir3ghnswc] {
    animation-duration: 1s;
    animation-name: slide-in-b-jir3ghnswc;
    animation-direction: normal;
    animation-iteration-count: 1;
}

@keyframes slide-in-b-jir3ghnswc {
    from {
        transform: translateY(-25vh);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.search[b-jir3ghnswc] {
    width: 100%;
    position: relative;
    display: flex;
}

    .search input[b-jir3ghnswc] {
        z-index: 1;
        width: 100%;
        border: 1px solid #555;
        border-right: none;
        padding: 5px;
        height: 3rem;
        font-size: 1.25rem;
        border-radius: 5px;
        outline: none;
    }

        .search input:focus[b-jir3ghnswc] {
            color: var(--primary-color);
        }

    .search button[b-jir3ghnswc] {
        z-index: 1;
        height: 3rem;
        padding: 0 0.75rem;
        border: 1px solid #555;
        background: var(--dark-bg-color);
        text-align: center;
        color: var(--light-text-color);
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        font-size: 1rem;
    }

.search-suggestions-box[b-jir3ghnswc] {
    z-index: 0;
    position: absolute;
    width: 100%;
    border: 1px solid #555;
    background-color: var(--light-bg-color);
    border-radius: 5px;
    padding-top: 3rem;
    display: none;
}

.active.search.has-input .search-suggestions-box[b-jir3ghnswc] {
    display: initial;
}

.search-suggestions-list[b-jir3ghnswc] {
    max-height: 15rem;
    overflow-y: auto;
}

.suggestion-item[b-jir3ghnswc] {
    width: 100%;
    font-size: 1.25rem;
    padding: 0.5rem;
    background-color: var(--light-bg-color);
    color: var(--primary-color);
    cursor: pointer;
}

    .suggestion-item.active[b-jir3ghnswc] {
        background-color: var(--gray-bg-color);
    }

.no-match-message[b-jir3ghnswc] {
    width: 100%;
    font-size: 1rem;
    padding: 0.5rem;
    background-color: var(--light-bg-color);
    color: var(--gray-text-color);
}

.scroll-spacing[b-jir3ghnswc] {
    height: 0;
}


/* full screen search styles */

.close-search-button[b-jir3ghnswc] {
    display: none;
}

@media (max-width: 991px) {

    .active.search .close-search-button[b-jir3ghnswc] {
        display: initial;
    }

    .active.search[b-jir3ghnswc] {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        background-color: var(--dark-bg-color);
        /* quick move-up animation */
        animation-duration: 0.1s;
        animation-name: move-up-b-jir3ghnswc;
        animation-direction: normal;
        animation-iteration-count: 1;
    }

    @keyframes move-up-b-jir3ghnswc {
        from {
            transform: translateY(+25vh);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .active .search-suggestions-box[b-jir3ghnswc] {
        display: initial;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.8)), url(https://pics.zeitauktion.com/2023/2300571_sw6_theme3_full.jpg) no-repeat center center;
    }

    .active .search-suggestions-list[b-jir3ghnswc] {
        min-height: none;
        max-height: 100%;
    }

    .active.search button[b-jir3ghnswc] {
        border-radius: 0;
        background-color: var(--primary-color);
    }

    .active.search input[b-jir3ghnswc] {
        border-radius: 0;
    }

    .scroll-spacing[b-jir3ghnswc] {
        height: 60vh;
    }
}
/* /Components/SellerApp.razor.rz.scp.css */

/* fade in animation */

.fade-in-container[b-5uhyvbfddc] {
    animation-duration: 0.3s;
    animation-name: fade-in-b-5uhyvbfddc;
    animation-direction: normal;
    animation-iteration-count: 1;
}

@keyframes fade-in-b-5uhyvbfddc {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1.0);
        opacity: 1;
    }
}

/* upper nav bar */

.menu-steps[b-5uhyvbfddc] {
    position: sticky;
    top:0;
    z-index: 5;
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0em 0em;
    grid-template-areas:
        "step-1 step-2 step-3 step-4";
    width: 100%;

    background-color: var(--gray-bg-color);
    border: none;
    border-bottom: 0.25rem solid var(--secondary-color);
    box-shadow: 0 0 3px var(--dark-bg-color);
}

.step-1[b-5uhyvbfddc] {
    grid-area: step-1;
}
.step-2[b-5uhyvbfddc] {
    grid-area: step-2;
}
.step-3[b-5uhyvbfddc] {
    grid-area: step-3;
}
.step-4[b-5uhyvbfddc] {
    grid-area: step-4;
}

.step-button[b-5uhyvbfddc] {
    background-color: var(--primary-color);
}
    .step-button .icon[b-5uhyvbfddc] {
        margin: auto;
        padding: 1rem 0;
        color: var(--light-text-color);
        text-align: center;
        font-size: 2rem;
        line-height: 1;
    }

.step-button.active[b-5uhyvbfddc] {
    background-color: var(--secondary-color);
}
    .step-button.active .icon[b-5uhyvbfddc] {
        color: var(--light-text-color);
    }

.step-button.disabled[b-5uhyvbfddc] {
    background-color: var(--gray-bg-color);
}

    .step-button.disabled .icon[b-5uhyvbfddc] {
        color: var(--gray-text-color);
    }



/* Form Styling */

.form-section[b-5uhyvbfddc] {
    margin: 1.5rem 0;
    margin-bottom: 4rem;
}



[b-5uhyvbfddc] .form-region-heading {
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    overflow: hidden;
}

    [b-5uhyvbfddc] .form-region-heading:after {
        position: absolute;
        top: 51%;
        overflow: hidden;
        width: 100%;
        height: 2px;
        content: '\a0';
        background-color: var(--primary-color);
        opacity: 0.5;
        margin-left: 0.5rem;
    }



/* fix form-floating behavior for select box */
[b-5uhyvbfddc] .form-floating select.form-select:required:invalid ~ label {
    /* when the selection is empty (invalid), show the full size label */
    /* as soon as any valid value is selected, this selector will not apply
        and the label floats up (default bootstrap behavior for floating select labels) */
    opacity: 1.0;
    transform: scale(1) translateY(0) translateX(0);
}



/* information circles and text bubbles */

/* basic style of the info circle. initially hidden */

[b-5uhyvbfddc] .form-field-info {
    display: none;
    font-size: 1.25rem;
    padding: 0.9rem 1.2rem;
    color: var(--primary-color);
    position: absolute;
    top: 0;
    right: 0;
    transition: color 0.25s, opacity 0.5s;
    opacity: 0;
    cursor: help;
}

    [b-5uhyvbfddc] .form-field-info:hover {
        color: var(--secondary-color);
    }


/* display info circle on input fields always */
[b-5uhyvbfddc] input ~ .form-field-info {
    display: block;
    opacity: 1.0;
}
/* the info circle is gray when the input is focused
    or the field is not empty, i.e. when the placeholder is not shown */
[b-5uhyvbfddc] input:not(:placeholder-shown) ~ .form-field-info,
[b-5uhyvbfddc] input:focus ~ .form-field-info {
    color: var(--gray-text-color);
}

    input:not(:placeholder-shown) ~ .form-field-info:hover[b-5uhyvbfddc],
    input:focus ~ .form-field-info:hover[b-5uhyvbfddc] {
        color: var(--secondary-color);
    }

/* on a select element, the info circle is displayed
    when the select box is not focussed.
    info cirle is moved away from right border, leaving
    space for the selects 'down arrow' */
[b-5uhyvbfddc] select:not(:focus) ~ .form-field-info {
    display: block;
    opacity: 1.0;
    right: 2rem;
}
/* when the select element already has a valid selection,
    the info circle becomes gray */
[b-5uhyvbfddc] select:not(:invalid) ~ .form-field-info {
    color: var(--gray-text-color);
}

    [b-5uhyvbfddc] select:not(:invalid) ~ .form-field-info:hover {
        color: var(--secondary-color);
    }


/* basic info text bubble styles */
[b-5uhyvbfddc] .info-text-bubble {
    position: absolute;
    border: 1px solid var(--gray-text-color);
    background-color: var(--primary-color);
    width: 20rem;
    max-width: 80vw;
    top: 100%;
    left: 100%;
    transform: translateX(-100%);
    padding: 0.5rem;
    color: var(--light-text-color);
    border-radius: 5px;
    z-index: 3;
    box-shadow: 0 0 3px var(--dark-bg-color);
    text-align: justify;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s;
}
    /* speech bubble corner */
    [b-5uhyvbfddc] .info-text-bubble:before {
        content: "";
        position: absolute;
        bottom: 100%;
        right: 1.15rem;
        width: 0;
        border-bottom: 10px solid var(--primary-color);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }

/* the text bubble becomes visble when the info circle is hovered */
[b-5uhyvbfddc] .form-field-info:hover > .info-text-bubble {
    opacity: 1.0;
    visibility: visible;
}

/* remove arrow controls on number fields */

[b-5uhyvbfddc] input::-webkit-outer-spin-button,
[b-5uhyvbfddc] input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

[b-5uhyvbfddc] input[type=number] {
    -moz-appearance: textfield;
}


/* submit button */

[b-5uhyvbfddc] .submit-button {
    border: none;
    background-color: var(--secondary-color);
    height: 4rem;
    color: var(--light-text-color);
    padding: 1rem 3rem;
    font-weight: 700;
    font-family: 'Montserrat';
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

    [b-5uhyvbfddc] .submit-button:hover {
        background-color: var(--primary-color);
    }

    [b-5uhyvbfddc] .submit-button.disabled {
        background-color: var(--gray-bg-color);
        color: var(--gray-text-color);
        cursor: default;
    }

        [b-5uhyvbfddc] .submit-button.disabled:hover {
            background-color: var(--gray-bg-color);
        }

    [b-5uhyvbfddc] .submit-button.transmitting {
        background-color: var(--primary-color);
    }

        [b-5uhyvbfddc] .submit-button.transmitting .spinner-border {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

/* progress bar */

.indeterminate-progress-bar[b-5uhyvbfddc] {
    /* Color */
    background-color: var(--dark-bg-color);
    /* Size */
    height: 0.5rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}

.indeterminate-progress-bar__progress[b-5uhyvbfddc] {
    /* Color */
    background-color: var(--secondary-color);
    /* Absolute position */
    position: absolute;
    bottom: 0;
    top: 0;
    width: 150%;
    /* Move the bar infinitely */
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: indeterminate-progress-bar-b-5uhyvbfddc;
}

@keyframes indeterminate-progress-bar-b-5uhyvbfddc {
    from {
        left: -150%;
    }

    to {
        left: 150%;
    }
}

/* info box */

[b-5uhyvbfddc] .info-box {
    width: 100%;
    background-color: var(--gray-bg-color);
    display: flex;
    align-items: center;
}

    [b-5uhyvbfddc] .info-box div {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    [b-5uhyvbfddc] .info-box i {
        font-size: 1.5rem;
        color: var(--gray-text-color);
    }

    [b-5uhyvbfddc] .info-box.error {
        background-color: #b41414;
        color: white;
    }
        [b-5uhyvbfddc] .info-box.error i {
            color: white;
        }
/* /Components/ShipmentStepComponent.razor.rz.scp.css */

.steps-container[b-aph520037g] {
    position: relative;
    margin-top: 1.5rem;
}

    .steps-container .line[b-aph520037g] {
        border: none;
        margin: 0;
        padding: 0;
        background-color: var(--gray-text-color);
        position: absolute;
        top: 0;
        left: 1.25rem;
        width: 2px;
        height: 100%;
    }

    .steps-container .step[b-aph520037g] {
        position: relative;
        min-height: 1rem;
        margin-bottom: 0.5rem;
        color: var(--gray-text-color);
    }

        .steps-container .step.step-disabled[b-aph520037g] {
            margin-bottom: 2.5rem;
        }

        .steps-container .step > div:first-child[b-aph520037g] {
            position: static;
            height: 0
        }

        .steps-container .step > div:not(:first-child)[b-aph520037g] {
            margin-left: 2.5rem;
            padding-left: 1em
        }

        .steps-container .step.step-done[b-aph520037g] {
            color: var(--primary-color);
        }

            .steps-container .step.step-done .circle[b-aph520037g] {
                background-color: var(--primary-color);
            }


        .steps-container .step.step-active[b-aph520037g] {
            color: var(--primary-color);
        }

            .steps-container .step.step-active .circle[b-aph520037g] {
                background-color: var(--secondary-color);
            }


    .steps-container .circle[b-aph520037g] {
        background: var(--gray-text-color);
        position: relative;
        width: 2.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
        font-size: 1.25rem;
        border-radius: 100%;
        color: #fff;
        text-align: center;
        box-shadow: 0 0 0 0.5rem #fff
    }

    .steps-container .title[b-aph520037g] {
        margin-top: 0.25rem;
        font-size: 1.25em;
        font-weight: 700;
    }

    .steps-container .caption[b-aph520037g] {
        font-size: .8em
    }




.collapsible > input[type="checkbox"][b-aph520037g] {
    position: absolute;
    left: -100vw;
}

.collapsible .content[b-aph520037g] {
    overflow-y: hidden;
    height: 0;
    transition: height 0.3s ease;
}

.collapsible > input[type="checkbox"]:checked ~ .content[b-aph520037g] {
    height: auto;
    overflow: visible;
}

.collapsible label[b-aph520037g] {
    display: block;
}
/* /Components/SignNowOverlayComponent.razor.rz.scp.css */
.sign-now-overlay[b-h00rxmc9gf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background-color: rgba(0,0,0,0.5);
}
.sign-now-overlay.hidden[b-h00rxmc9gf] {
    visibility: hidden;
}

.sign-now-grid[b-h00rxmc9gf] {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr;
    gap: 0em 0em;
    grid-template-areas:
        'top'
        'bottom';
    width: 100%;
    height: 100%;
}

.top-bar[b-h00rxmc9gf] {
    grid-area: top;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--dark-bg-color);
}

    .top-bar button.back[b-h00rxmc9gf] {
        display: inline-block;
        font-size: 0.9rem;
        border: 0;
        padding: 0.5rem 1rem;
        background-color: var(--secondary-color);
        color: var(--light-text-color);
        margin: 0.5rem;
        cursor: pointer;
        text-decoration: none;
    }

    .top-bar .info-text[b-h00rxmc9gf] {
        display: inline-block;
        margin: 0.7rem;
        margin-top: 0;
        font-size: 0.8rem;
        color: var(--light-text-color);
    }

.sign-now-container[b-h00rxmc9gf] {
    grid-area: bottom;
    background: url(/img/signnow-loader.gif) center center no-repeat;
    background-size: 130px;
    background-color: rgba(239,239,239,1.0);
}


@media (min-width: 960px) {
    .top-bar button.back[b-h00rxmc9gf] {
        font-size: 1rem;
    }

    .top-bar .info-text[b-h00rxmc9gf] {
        font-size: 1rem;
    }
}
/* /Components/WatchFormComponent.razor.rz.scp.css */



.watch-form-header[b-lw6zhf2pvb] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    gap: 0em 0em;
    grid-auto-flow: row;
    grid-template-areas:
        "title remove-button";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    margin-bottom: 1rem;
    margin-top: 0.75rem;
}

    .watch-form-header .title[b-lw6zhf2pvb] {
        grid-area: title;
        padding: 0.5rem;
        font-weight: 700;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .watch-form-header .remove-button[b-lw6zhf2pvb] {
        grid-area: remove-button;
        cursor: pointer;
        padding: 0.5rem;
    }

    .watch-form-header .remove-button:hover[b-lw6zhf2pvb] {
        color: white;
        background-color: #D94F4F;
    }

table.condition-info[b-lw6zhf2pvb] {
    border: none;
}
    table.condition-info tr td[b-lw6zhf2pvb] {
        padding: 0.2rem;
        text-align: left;
        vertical-align: top;
    }
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-s0v66i4sjm] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-s0v66i4sjm] {
    flex: 1;
}

.sidebar[b-s0v66i4sjm] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-s0v66i4sjm] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-s0v66i4sjm]  a, .top-row[b-s0v66i4sjm]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-s0v66i4sjm]  a:hover, .top-row[b-s0v66i4sjm]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-s0v66i4sjm]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-s0v66i4sjm] {
        display: none;
    }

    .top-row.auth[b-s0v66i4sjm] {
        justify-content: space-between;
    }

    .top-row[b-s0v66i4sjm]  a, .top-row[b-s0v66i4sjm]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-s0v66i4sjm] {
        flex-direction: row;
    }

    .sidebar[b-s0v66i4sjm] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-s0v66i4sjm] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-s0v66i4sjm]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-s0v66i4sjm], article[b-s0v66i4sjm] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-cc72xcjk57] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-cc72xcjk57] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-cc72xcjk57] {
    font-size: 1.1rem;
}

.oi[b-cc72xcjk57] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-cc72xcjk57] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-cc72xcjk57] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-cc72xcjk57] {
        padding-bottom: 1rem;
    }

    .nav-item[b-cc72xcjk57]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-cc72xcjk57]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-cc72xcjk57]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-cc72xcjk57] {
        display: none;
    }

    .collapse[b-cc72xcjk57] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-cc72xcjk57] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
