/* Start custom CSS for html, class: .elementor-element-1767a10 */#app-resume {
    background-color: #FFFFFF;
    margin: 12px;
    box-shadow: 10px 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 48px 34px;
    max-width: 1920px;
    text-align: center;
    z-index: 3;
    position: fixed;
    left: 0%;
    bottom: 3%;
    right: 0%;
    margin: 20px;
    display: none;
}

#app-resume-header {
    grid-area: heading;
    color: #4d4d4d;
    font-size: 18px;
    line-height: 24px;
    font-style: normal;
    text-align: center;
}

#app-resume-header h2 {
    font-weight: 700;
}

#app-resume-header span b {
    font-weight: 700;
}


#app-resume-content {
    display: grid;
    grid-template-areas:
        'heading'
        'steps'
        'cta';
    justify-items: center;
    gap: 34px;
}

#app-resume-banner-close {
    cursor: pointer;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 21px;
    right: 21px;
    padding: 0;
    border: none;
    background: none;
}

#app-resume-desktop-image {
    display: none;
}

#app-resume-mobile-image {
    grid-area: steps;
    display: block;
    max-width: 100%;
}

#app-resume-banner-continue {
    grid-area: cta;
    border-radius: 100px;
    background: #007F86;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #FFFFFF;
    cursor: pointer;
    outline: 0;
    width: 270px;
    text-decoration: none;
    height: 56px;
    margin-top: 24px;
}


@media (min-width: 426px) {
    #app-resume-content {
        height: auto;
        min-height: 0;
    }
}

@media screen and (max-width: 767px) {
    #app-resume-overlay {
        position: fixed;
        display: none;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #141414;
        opacity: 0.314;
        z-index: 2;
        cursor: pointer;
    }
}

@media (min-width: 768px) {
    #app-resume {
        margin: 0px;
        box-shadow: 0px -4px 24px rgba(0, 0, 0, 0.12);
        border-radius: 0px;
        padding: 0px;
        bottom: 0;
        z-index: 199;
        width: 100%;
        text-align: left;
    }

    #app-resume-header {
        min-width: 158px;
        text-align: left;
        font-size: 16px;
    }

    #app-resume-content {
        grid-template-areas: 'heading cta';
        justify-content: space-between;
        height: 120px;
        width: 100%;
        padding: 32px 48px;
        padding-left: 16px;
    }

    #app-resume-banner-close {
        top: 54px;
        right: 16px;
    }

    #app-resume-mobile-image {
        display: none;
    }

    #app-resume-banner-continue {
        margin: 0px;
        width: 208px;
    }

    #app-resume-overlay {
        display: none;
    }
}

@media (min-width: 1025px) {
    #app-resume-content {
        grid-template-areas: 'heading steps cta';
        gap: 16px;
        padding: 32px 70px;
        padding-left: 32px;
    }

    #app-resume-banner-close {
        top: 54px;
        right: 38px;
    }
}

@media (min-width: 1281px) {
    #app-resume-header {
        max-width: 33vw;
    }

    #app-resume-content {
        padding: 32px 112px;
    }

    #app-resume-desktop-image {
        grid-area: steps;
        display: block;
        margin-left: -60px;
    }
}

@media (min-width: 1921px) {
    #app-resume {
        left: calc((100% - 1920px) / 2);
    }
}/* End custom CSS */