/* The style of app by body shared public */
.AppBodyShareView {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;

    border-top-left-radius: 1.7vw;
    border-bottom-left-radius: 1.7vw;
    border-top-right-radius: 1.7vw;
    border-bottom-right-radius: 1.7vw;

    width: 100%;
    height: 100%;
    max-width: 45%;

    box-shadow: 0px 7px 77px rgba(57, 57, 57, 0.1);
}

@media screen and (max-width: 1024px){
    .AppBodyShareView {
        max-width: 100%;
    }
}