/* _content/Acuteprint.Web/Components/Custom/Loading.razor.rz.scp.css */
/* CSS isolation only applies to the component you associate with the format {COMPONENT NAME}.razor.css, 
where the {COMPONENT NAME} placeholder is usually the component name. 
    
To apply changes to a child component, use the ::deep pseudo-element to any descendant elements in the 
parent component's .razor.css file. The ::deep pseudo-element selects elements that are descendants of 
an element's generated scope identifier.

ref: 
01. https://stackoverflow.com/a/65890952/5319202
02. https://learn.microsoft.com/en-us/aspnet/core/blazor/components/css-isolation#child-component-support */

[b-csryry1uru] .overlap-container {
    position: relative;
    height: 87.5vh;
    background-color: #EEF4F7;
}

[b-csryry1uru] .overlap-center {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    margin-top: calc((87.5vh / 2) - 60px);
    z-index: 99;
}

[b-csryry1uru] .lottie {
    height: 87.5vh;
    z-index: -1;
}
/* _content/Acuteprint.Web/Components/Pages/AboutUs.razor.rz.scp.css */
/*  Make the width and height of youtube iframe to fill the page.
    ref: https://www.h3xed.com/web-development/how-to-make-a-responsive-100-width-youtube-iframe-embed */

.iframe-container[b-amtdv10jwt] {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video[b-amtdv10jwt] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* _content/Acuteprint.Web/Components/Pages/Policy/PrivacyPolicy.razor.rz.scp.css */
ul[b-lhp5h4njqb] {
    margin-left: 24px;
}

/* ref: https://stackoverflow.com/a/5491324 */
li[b-lhp5h4njqb] {
    list-style-type: disc;
    margin: 10px;
    text-align:justify;
}
/* _content/Acuteprint.Web/Components/Pages/Policy/RefundPolicy.razor.rz.scp.css */
ul[b-tgqenioto9] {
    margin-left: 24px;
}

/* ref: https://stackoverflow.com/a/5491324 */
li[b-tgqenioto9] {
    list-style-type: disc;
    margin: 10px;
    text-align:justify;
}
/* _content/Acuteprint.Web/Components/Pages/Policy/TermOfServices.razor.rz.scp.css */
ul[b-o6rlh279o6] {
    margin-left: 24px;
}

/* ref: https://stackoverflow.com/a/5491324 */
li[b-o6rlh279o6] {
    list-style-type: disc;
    margin: 10px;
    text-align: justify;
}
