@media only screen and (min-width: 768px)
{
    .cart
    {
        width: 380px;
        height: 260px;
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid #eee;
        border-radius: 15px;
    }

    .tel
    {
        width: 120px;
        height: 40px;
        position: absolute;
        top: 40px;
        left: 40px;
        border: 2px solid #4a5764;
        background-color: transparent;
        outline: none;
        font-family: BYekan;
        font-weight: bold;
        font-size: 18px;
        border-radius: 40px;
        box-sizing: border-box;
        padding: 0 20px;
    }

    .submit
    {
        width: 300px;
        height: 40px;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        border: none;
        /*background-color: #ff0062;*/
        outline: none;
        font-family: XEROSANS-BOLD;
        font-size: 16px;
        border-radius: 15px;
        box-sizing: border-box;
        color: #fff;
    }

    .sum
    {
        width: auto;
        height: auto;
        position: absolute;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        font-family: BYekan;
        font-weight: bold;
        font-size: 18px;
        color: #111b21;
    }
}