.main-container{
    display:flex;
    flex: 1;
    background-color: #f6f6f6;
    flex-direction: column;
    @media screen and (min-width: 770px){
        .upload-docs-container{
            margin-top: 50px;
        }
    }
    .loading-container{
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        background-color: rgba(0,0,0,0.5); 
        .loading-wrapper{
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            .loader{
                width: 80px;
                height: 80px;
                border: 8px solid rgba(0, 0, 0, 0.1);
                border-top: 8px solid #70ad4d;
            }
        }
    }
    .upload-docs-container{
        .top-div{
            margin: 16px 32px;
            img{
                height: 95px;
                margin-left: 18px;
            }
            .title-div{
                margin: 17px 0px 8px;
                font-size: 16px;
                font-weight: 600;
                text-align: center;
                color: #232323;
                letter-spacing: -0.3px;
            }
            .subtitle-div{
                font-size: 14px;
                text-align: center;
                line-height: 1.43;
                letter-spacing: -0.2px;
                color: rgba(0,0,0, 0.54);
            }
        }
        .api-error-div{
            color: #ee5a57;
            font-size: 14px;
            margin: 5px 0;
            text-align: start;
        }
        .bottom-div {
            margin: 7px 24px 7px;
            font-size: 12px;
            color: rgba(0,0,0,0.54);
            line-height: 1.67;
            text-align: justify;
        }
        .button-wrapper{
            padding: 10px 16px 16px;
        }
        .button-div{
            font-weight: 500;
            text-align: center;
            padding: 20px 0 17px;
            color: white;
            background-color: #9b9b9b;
            border-radius: 3px;
        }
        div.enabled{
            background-color: #70ad4d;
        }
        .back-div{
            font-size: 14px;
            font-weight: 600;
            color: #4a90e2;
            text-align: center;
            margin: 16px 0 32px;
        }
    }
    .docPreview{
        display: flex;
        flex-direction: column;
        background-color: rgba(0,0,0,0.35);
        padding: 32px 20px;
            .image-wrapper{
                position: relative;
                img{
                    width: 100%;
                }
                div{
                    position: absolute;
                    background-color: rgba(0, 0,0,0.6);
                    top: -13px;
                    right: -13px;
                    border-radius: 50%;
                    padding: 5px 8px;
                    color: #f6f6f6;
                }
            }
    }
}
@media screen and (min-width: 770px){
    .main-container{
        background-color: unset;
        .upload-docs-container{
            width: 800px;
            align-self: center;
        }
        .docPreview{
            background-color: white;
            .image-wrapper{
                align-self: center;
                max-width: 35%;
                img{
                    width: 100%;
                }
            }
        }
    }
}