div.product_container {
    width: 43vw;
}

div.product_container img.product_cover {
    margin-top: 1.6vmin;
    width: 43vw;
    height: 28.67vw;
    object-fit: cover;
}

div.product_container div.product_name {
    font-size: 1.8vmax;
    font-weight: bold;
}

div.product_container div.product_description {
    margin-top: 1.6vmin;
    font-size: 1vmax;
}

div.product_container div.product_goto_app {
    margin-top: 1.6vmin;
    font-size: 1vmax;
    text-align: right;
}

div.product_container div.goto_download_app_button {
    margin-top: 2px;
    font-size: 1vmax;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
    color: #2B2F67;
}

div.product_container div.open_or_download_app {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 13px;
    margin-top: 21px;
}

div.product_container div.open_app,
div.product_container a.open_app {
    border: 1px solid #333;
    border-radius: 30px;
    width: 33%;
    text-align: center;
    padding: 8px 4px;
    margin-right: 6px;
    background: white;
    color: black;
}

div.product_container div.download_app {
    border: 1px solid #333;
    border-radius: 30px;
    width: 33%;
    text-align: center;
    padding: 8px 4px;
    margin-left: 6px;
    color: white;
    background: #333;
}

@media screen and (max-width: 768px) {
    div.product_container {
        width: 100%;
    }

    div.product_container div.product_name {
        font-size: 18px;
    }

    div.product_container div.product_description {
        font-size: 14px;
    }

    div.product_container img.product_cover {
        margin-top: 18px;
        margin-left: 10%;
        width: 80%;
        height: auto;
    }
}

@media screen and (max-width: 425px) {
    div.product_container {
        width: 80%;
        margin-left: 6%;
    }

    div.product_container div.product_name {
        font-size: 16px;
    }

    div.product_container div.product_description {
        font-size: 12px;
    }

    div.product_container img.product_cover {
        margin-left: 0;
        width: 100%;
        height: auto;
    }
}
