.header__banner-mobileApp {
    display: flex;
    width: 100%;
    padding: 0px 15px;
    justify-content: space-between;
    align-items: left;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;

    background-image: url(/templates/images/downloadBg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    @media (max-width: 1025px) {
        padding: 20px 30px;
    }
}

.header__banner-mobileApp h1
{
    font-size: 38px;
    white-space: nowrap;
    @media (max-width: 1025px) {
            font-size: 24px;
        }

    @media (max-width: 500px) {
        font-size: 16px;
    }
}

.header__banner-mobileApp h2
{
    font-size: 16px;
    white-space: nowrap;
    font-weight: normal;
    
    @media (max-width: 1025px) {
            font-size: 12px;
        }

    @media (max-width: 500px) {
        font-size: 10px;
    }
}

.header__banner-mobileApp__cancel
{
    background-color: transparent;
    height: auto;
    border-radius: 100%;
    border: black solid 1px;
    margin-right: 15px;
}

.header__banner-mobileApp__cancel span
{
    background-image: url(/templates/images/dist/icons/cancel.svg);
    background-position-x: 50%;
    background-position-y: 50%;
    background-size: 10px;
    background-repeat: no-repeat;
    padding: 8px;
    display: block;
}

.header__banner-mobileApp__cancel:hover
{
    background-color: #ff4040;
}

.header__banner-mobileApp__cancel:hover span
{
    filter: invert(100%) sepia(0%) saturate(7487%) hue-rotate(8deg) brightness(102%) contrast(98%);
}

.header__banner-mobileApp img
{
    max-height: 130px;
    max-width: 130px;

    @media (max-width: 1025px) {
        display: none;
    }
}

