/* /Pages/Components/Payment/Forms/AddressForm.razor.rz.scp.css */
.address-form[b-p2he7tj9oh] {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border-radius: 0.5rem;
    background-color: #f9f9f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-section-title[b-p2he7tj9oh] {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.form-group[b-p2he7tj9oh] {
    margin-bottom: 1rem;
}

.form-group label[b-p2he7tj9oh] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.form-control[b-p2he7tj9oh] {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-p2he7tj9oh] {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control:disabled[b-p2he7tj9oh] {
    background-color: #e9ecef;
    opacity: 1;
}

.form-row[b-p2he7tj9oh] {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > .form-group[b-p2he7tj9oh] {
    padding-right: 5px;
    padding-left: 5px;
}

.col-md-6[b-p2he7tj9oh] {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-3[b-p2he7tj9oh] {
    flex: 0 0 25%;
    max-width: 25%;
}

.invalid-feedback[b-p2he7tj9oh] {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.is-invalid[b-p2he7tj9oh] {
    border-color: #dc3545;
}

.is-invalid:focus[b-p2he7tj9oh] {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.optional[b-p2he7tj9oh] {
    font-size: 0.85em;
    font-weight: normal;
    color: #6c757d;
}

/* Read-only styles */
.read-only[b-p2he7tj9oh] {
    background-color: #f8f9fa;
    border: 1px solid #eaeaea;
}

.read-only .form-control[b-p2he7tj9oh] {
    background-color: #f8f9fa;
    border-color: #eaeaea;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row[b-p2he7tj9oh] {
        flex-direction: column;
    }
    
    .col-md-6[b-p2he7tj9oh], .col-md-3[b-p2he7tj9oh] {
        flex: 0 0 100%;
        max-width: 100%;
    }
} 
/* /Pages/Components/Payment/Stripe/StripeCheckoutComponent.razor.rz.scp.css */
/* Component styles */
.payment-container[b-exa19ks87w] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-container[b-exa19ks87w] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 2rem;
    text-align: center;
}

.loader[b-exa19ks87w] {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin-b-exa19ks87w 1s linear infinite;
    margin: 0 auto 20px auto;
}

.loader-text[b-exa19ks87w] {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    width: 100%;
}

.payment-header[b-exa19ks87w] {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-header h1[b-exa19ks87w] {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #32325d;
}

.payment-header p[b-exa19ks87w] {
    color: #666;
    margin: 0;
}

.payment-details[b-exa19ks87w] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-details-list[b-exa19ks87w] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-details-item[b-exa19ks87w] {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e6e6e6;
}

.payment-details-item:last-child[b-exa19ks87w] {
    border-bottom: none;
}

.payment-details-label[b-exa19ks87w] {
    color: #666;
}

.payment-details-value[b-exa19ks87w] {
    font-weight: 500;
    color: #32325d;
}

.payment-details-value.highlight[b-exa19ks87w] {
    color: #5469d4;
    font-weight: 600;
}

.payment-form[b-exa19ks87w] {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-button[b-exa19ks87w] {
    background: #5469d4;
    color: #ffffff;
    border-radius: 4px;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.07);
    width: 100%;
}

.payment-button:hover[b-exa19ks87w] {
    filter: brightness(1.1);
}

.payment-button-loading[b-exa19ks87w] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.visible[b-exa19ks87w] {
    display: block;
}

.hidden[b-exa19ks87w] {
    display: none;
}

.hidden-no-space[b-exa19ks87w] {
    display: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
}

.invisible[b-exa19ks87w] {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.mb-3[b-exa19ks87w] {
    margin-bottom: 1.5rem;
}

.error-message[b-exa19ks87w] {
    width: 100%;
    text-align: center;
    color: #dc3545;
    margin-top: 1rem;
}

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

@keyframes fadeIn-b-exa19ks87w {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-exa19ks87w {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in[b-exa19ks87w] {
    animation: fadeIn-b-exa19ks87w 0.6s ease-out;
}

.animate-slide-up[b-exa19ks87w] {
    animation: slideUp-b-exa19ks87w 0.6s ease-out;
}

.payment-content[b-exa19ks87w] {
    width: 100%;
}

/* Stripe Elements Styles */
*[b-exa19ks87w] {
    box-sizing: border-box;
}

body[b-exa19ks87w] {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-content: center;
    height: 100vh;
    width: 100vw;
}

form[b-exa19ks87w] {
    align-self: center;
    box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1), 0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 40px;
}

#payment-message[b-exa19ks87w] {
    color: rgb(105, 115, 134);
    font-size: 16px;
    line-height: 20px;
    padding-top: 12px;
    text-align: center;
}

#payment-element[b-exa19ks87w] {
    margin-bottom: 24px;
}

/* Buttons and links */
button[b-exa19ks87w] {
    background: #5469d4;
    font-family: Arial, sans-serif;
    color: #ffffff;
    border-radius: 4px;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
}

button:hover[b-exa19ks87w] {
    filter: contrast(115%);
}

button:disabled[b-exa19ks87w] {
    opacity: 0.5;
    cursor: default;
}

/* spinner/processing state, errors */
.spinner[b-exa19ks87w],
.spinner[b-exa19ks87w]:before,
.spinner[b-exa19ks87w]:after {
    border-radius: 50%;
}

.spinner[b-exa19ks87w] {
    color: #ffffff;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.spinner[b-exa19ks87w]:before,
.spinner[b-exa19ks87w]:after {
    position: absolute;
    content: "";
}

.spinner[b-exa19ks87w]:before {
    width: 10.4px;
    height: 20.4px;
    background: #5469d4;
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
}

.spinner[b-exa19ks87w]:after {
    width: 10.4px;
    height: 10.2px;
    background: #5469d4;
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 600px) {
    form[b-exa19ks87w] {
        width: 80vw;
        min-width: initial;
    }
}
/* /Pages/Components/Payment/Stripe/StripeCheckoutWithAddress.razor.rz.scp.css */
.payment-container[b-pz9p2svam0] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-header[b-pz9p2svam0] {
    margin-bottom: 2rem;
    text-align: center;
}

.payment-header h1[b-pz9p2svam0] {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.payment-header p[b-pz9p2svam0] {
    color: #666;
    font-size: 1rem;
}

.payment-details[b-pz9p2svam0] {
    margin-bottom: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
}

.payment-details-list[b-pz9p2svam0] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-details-item[b-pz9p2svam0] {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.payment-details-item:last-child[b-pz9p2svam0] {
    border-bottom: none;
    font-weight: 600;
    padding-top: 1rem;
}

.payment-details-label[b-pz9p2svam0] {
    color: #666;
}

.payment-details-value[b-pz9p2svam0] {
    color: #333;
    font-weight: 500;
}

.payment-details-value.highlight[b-pz9p2svam0] {
    color: #0066cc;
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-form[b-pz9p2svam0] {
    margin-top: 2rem;
}

.payment-button[b-pz9p2svam0] {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 1.5rem;
}

.payment-button:hover[b-pz9p2svam0] {
    background-color: #0052a3;
}

.payment-button:disabled[b-pz9p2svam0] {
    background-color: #cccccc;
    cursor: not-allowed;
}

.payment-button-loading[b-pz9p2svam0] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner[b-pz9p2svam0] {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid white;
    width: 20px;
    height: 20px;
    animation: spin-b-pz9p2svam0 1s linear infinite;
    margin-right: 10px;
}

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

.hidden[b-pz9p2svam0] {
    display: none;
}

.hidden-no-space[b-pz9p2svam0] {
    display: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
}

.invisible[b-pz9p2svam0] {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.visible[b-pz9p2svam0] {
    visibility: visible;
}

/* Loader styles */
.loader-container[b-pz9p2svam0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.loader[b-pz9p2svam0] {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #0066cc;
    width: 40px;
    height: 40px;
    animation: spin-b-pz9p2svam0 1s linear infinite;
    margin-bottom: 1rem;
}

.loader-text[b-pz9p2svam0] {
    color: #666;
    font-size: 1rem;
    text-align: center;
}

.error-message[b-pz9p2svam0] {
    color: #dc3545;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Animations */
.animate-fade-in[b-pz9p2svam0] {
    animation: fadeIn-b-pz9p2svam0 0.5s ease-in-out;
}

.animate-slide-up[b-pz9p2svam0] {
    animation: slideUp-b-pz9p2svam0 0.5s ease-in-out;
}

@keyframes fadeIn-b-pz9p2svam0 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-pz9p2svam0 {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-container[b-pz9p2svam0] {
        padding: 1.5rem;
    }
    
    .payment-header h1[b-pz9p2svam0] {
        font-size: 1.5rem;
    }
} 
/* /Pages/ControlPanel/Designer/DesignerComponent.razor.rz.scp.css */
.icons-flex[b-syx33rv779] {
    background-size: 70% 65% !important;
    height: 15px;
    width: 17px;
    opacity: 0.9;
}

.icon-dir-row[b-syx33rv779] {
    background: url("./img/flex-dir-row.png") no-repeat center;
}

.icon-dir-row-rev[b-syx33rv779] {
    background: url("./img/flex-dir-row-rev.png") no-repeat center;
}

.icon-dir-col[b-syx33rv779] {
    background: url("./img/flex-dir-col.png") no-repeat center;
}

.icon-dir-col-rev[b-syx33rv779] {
    background: url("./img/flex-dir-col-rev.png") no-repeat center;
}

.icon-just-start[b-syx33rv779] {
    background: url("./img/flex-just-start.png") no-repeat center;
}

.icon-just-end[b-syx33rv779] {
    background: url("./img/flex-just-end.png") no-repeat center;
}

.icon-just-sp-bet[b-syx33rv779] {
    background: url("./img/flex-just-sp-bet.png") no-repeat center;
}

.icon-just-sp-ar[b-syx33rv779] {
    background: url("./img/flex-just-sp-ar.png") no-repeat center;
}

.icon-just-sp-cent[b-syx33rv779] {
    background: url("./img/flex-just-sp-cent.png") no-repeat center;
}

.icon-al-start[b-syx33rv779] {
    background: url("./img/flex-al-start.png") no-repeat center;
}

.icon-al-end[b-syx33rv779] {
    background: url("./img/flex-al-end.png") no-repeat center;
}

.icon-al-str[b-syx33rv779] {
    background: url("./img/flex-al-str.png") no-repeat center;
}

.icon-al-center[b-syx33rv779] {
    background: url("./img/flex-al-center.png") no-repeat center;
}

[data-tooltip][b-syx33rv779]::after {
    background: rgba(51, 51, 51, 0.9);
}

.gjs-pn-commands[b-syx33rv779] {
    min-height: 40px;
}

#gjs-sm-float[b-syx33rv779] {
    display: none;
}

.gjs-logo-version[b-syx33rv779] {
    background-color: #756467;
}

.gjs-pn-btn.gjs-pn-active[b-syx33rv779] {
    box-shadow: none;
}

.CodeMirror[b-syx33rv779] {
    min-height: 450px;
    margin-bottom: 8px;
}

.grp-handler-close[b-syx33rv779] {
    background-color: transparent;
    color: #ddd;
}

.grp-handler-cp-wrap[b-syx33rv779] {
    border-color: transparent;
}
/* /Pages/ControlPanel/Templates/TemplateListComponent.razor.rz.scp.css */
.hover-shadow:hover[b-h59zotsubo] {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease-in-out;
}
/* /Pages/Main/Footer.razor.rz.scp.css */
.navbar-toggler[b-hndr5mltyj] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-hndr5mltyj] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-hndr5mltyj] {
    font-size: 1.1rem;
}

.oi[b-hndr5mltyj] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-hndr5mltyj] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-hndr5mltyj] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-hndr5mltyj] {
    padding-bottom: 1rem;
}

.nav-item[b-hndr5mltyj]  a {
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

.nav-item[b-hndr5mltyj]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-hndr5mltyj]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}
/* /Pages/Main/NavMenu.razor.rz.scp.css */
.navbar[b-h7hvlftnjo] {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.navbar-brand[b-h7hvlftnjo] {
    font-weight: 600;
}

.nav-item[b-h7hvlftnjo] {
    margin-right: 1rem;
}

.nav-link[b-h7hvlftnjo] {
    color: #333333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover[b-h7hvlftnjo] {
        color: #4d4dab !important;
    }

    .nav-link.active[b-h7hvlftnjo] {
        color: #4d4dab !important;
    }

.navbar-toggler[b-h7hvlftnjo] {
    border: none;
    padding: 0.5rem;
}

    .navbar-toggler:focus[b-h7hvlftnjo] {
        box-shadow: none;
        outline: none;
    }

@media (max-width: 991.98px) {
    .navbar-collapse[b-h7hvlftnjo] {
        padding: 1rem 0;
    }

    .nav-item[b-h7hvlftnjo] {
        margin-right: 0;
        padding: 0.5rem 0;
    }
}
/* /Pages/Market.razor.rz.scp.css */
.image[b-crs2t9xpnc] {
    display: block;
    width: 100%;
    height: auto;
}

.overlay[b-crs2t9xpnc] {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
}

.container:hover .overlay[b-crs2t9xpnc] {
    opacity: 0.3;
}

.text[b-crs2t9xpnc] {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
/* /Shared/ClientLayout.razor.rz.scp.css */
.page[b-lzxdoewuec] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-lzxdoewuec] {
    flex: 1;
}

.sidebar[b-lzxdoewuec] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-lzxdoewuec] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-lzxdoewuec]  a, .top-row .btn-link[b-lzxdoewuec] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-lzxdoewuec] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-lzxdoewuec] {
        display: none;
    }

    .top-row.auth[b-lzxdoewuec] {
        justify-content: space-between;
    }

    .top-row a[b-lzxdoewuec], .top-row .btn-link[b-lzxdoewuec] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-lzxdoewuec] {
        flex-direction: row;
    }

    .sidebar[b-lzxdoewuec] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-lzxdoewuec] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-lzxdoewuec] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/EmptyLayout.razor.rz.scp.css */
.page[b-5d771fkezx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-5d771fkezx] {
    flex: 1;
}

.sidebar[b-5d771fkezx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-5d771fkezx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-5d771fkezx]  a, .top-row .btn-link[b-5d771fkezx] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-5d771fkezx] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-5d771fkezx] {
        display: none;
    }

    .top-row.auth[b-5d771fkezx] {
        justify-content: space-between;
    }

    .top-row a[b-5d771fkezx], .top-row .btn-link[b-5d771fkezx] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-5d771fkezx] {
        flex-direction: row;
    }

    .sidebar[b-5d771fkezx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-5d771fkezx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-5d771fkezx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-al7rb95o5a] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-al7rb95o5a] {
    flex: 1;
}

.sidebar[b-al7rb95o5a] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-al7rb95o5a] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-al7rb95o5a]  a, .top-row .btn-link[b-al7rb95o5a] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-al7rb95o5a] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-al7rb95o5a] {
        display: none;
    }

    .top-row.auth[b-al7rb95o5a] {
        justify-content: space-between;
    }

    .top-row a[b-al7rb95o5a], .top-row .btn-link[b-al7rb95o5a] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-al7rb95o5a] {
        flex-direction: row;
    }

    .sidebar[b-al7rb95o5a] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-al7rb95o5a] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-al7rb95o5a] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
