.mobile-deals-card,
.mobile-deals-card-active,
.mobile-deals-card-mobile,
.mobile-deals-card-mobile-change,
.mobile-deals-card-mobile-main,
.mobile-deals-card-mobile-main-change {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 167px;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: var(--text-light);
    cursor: pointer;
    border: 1px solid transparent;
}

.mobile-deals-card-active,
.mobile-deals-card-mobile-main-change {
    border: 1px solid var(--text-dark);
}

.mobile-deals-card-mobile,
.mobile-deals-card-mobile-change {
    border-radius: 10px 10px 0 0;
    padding: 12px 10px;
    height: 112px;
    background: var(--secondary-grey);
}

.mobile-deals-card-mobile-main,
.mobile-deals-card-mobile-main-change {
    padding: 10px 12px 12px 12px;
    height: 95px;
    background: var(--secondary-grey);
}

.mobile-deals-card-mobile-change,
.mobile-deals-card-mobile-main-change {
    background: var(--text-light);
}

.mobile-deals-card-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-icon-card-wrap {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}

.check-icon,
.check-icon-top,
.check-icon-main {
    display: none;
}

.mobile-deals-card-active .check-icon {
    display: inline;
}

.mobile-deals-card-mobile-change .check-icon-top {
    display: inline;
}

.mobile-deals-card-mobile-main-change .check-icon-main {
    display: inline;
    width: 25px;
    height: 25px;
}

.uncheck-icon-main {
    width: 25px;
    height: 25px;
}

.uncheck-icon-white {
    display: none;
}

.mobile-deals-card-active .uncheck-icon,
.mobile-deals-card-active .uncheck-icon-white {
    display: none;
}

.mobile-deals-card-mobile-change .uncheck-icon-top {
    display: none;
}

.mobile-deals-card-mobile-main-change .uncheck-icon-main {
    display: none;
}

.mobile-mobile-container {
    max-width: 353px;
    height: 600px;
    display: grid;
    grid-template-rows: 2fr 4fr 1fr 2fr 1fr 2fr;
    border-radius: 10px;
    background: var(--text-light);
}

.mobile-mobile-main-card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--text-light);
    width: 100%;
    gap: 7px;
    padding: 0 10px;
}

#mobile-deals-price-box .best-pack-card-all-width-5lines {
    grid-template-rows: 0fr 1fr 2fr 1fr 2fr;
}

#mobile-deals-price-box .best-pack-card-wrap-top-white {
    height: 39px;
}

.best-pack-bottom-wrap-all-width.mobile-desk-wrap {
    padding-top: 0;
}

/* Below is new Ivan's code only */

#mobile-deals-cards-container-international {
    display: none !important;
}

mark_worldwide {
    font-size: 20px !important;
    font-weight: 700;
    line-height: 100%;
    color: var(--primary-color);
    margin: 0 !important;
}

.mobile-deals-cards-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    gap: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width:1330px) {
    .mobile-deals-cards-container {
        gap: 1.50vw;
    }

    .mobile-deals-card {
        width: 17.5vw;
        height: 12.55vw;
        padding: 1.50vw 2.26vw;
    }

    .mobile-deals-card h2.text-25-400 {
        font-size: 1.88vw !important;
    }

    .mobile-deals-card h2.text-50-700 {
        font-size: 3.76vw !important;
    }

    .mobile-deals-card .mobile-icon-card-wrap img {
        width: 3.38vw;
        height: 3.38vw;
    }
}

@media (max-width:590px) {

    .mobile-deals-cards-container {
        /* gap: 0.44vw; ORIGINAL */
        gap: 2vw;
        grid-template-columns: repeat(3, 1fr) !important;
        padding: 0 2vw;
        background-color: var(--text-light);
        margin: 0;
    }

    .mobile-deals-card {
        width: 25.5vw;
        height: 20.8vw;
        padding: 1.50vw 2.26vw;
        background-color: var(--secondary-grey);
    }

    .mobile-deals-card-active {
        background-color: var(--text-light);
    }

    .mobile-deals-card-wrap {
        position: relative;
    }

    .mobile-deals-card h2.text-25-400 {
        font-size: 4vw !important;
        position: absolute;
        top: 5vw;
    }

    .mobile-deals-card h2.text-50-700 {
        font-size: 6vw !important;
        margin-top: 7vw !important;
    }

    .mobile-icon-card-wrap {
        position: absolute;
        right: -1vw;
        top: 0.1vw;
    }

    .uncheck-icon-white {
        display: inline;
    }

    .mobile-deals-card .mobile-deals-card-wrap .uncheck-icon {
        display: none;
    }

    .mobile-deals-card .mobile-icon-card-wrap img {
        width: 5vw;
        height: 5vw;
    }

    #mobile-deals-price-box .best-pack-card-wrap-top-white {
        border-radius: 0 !important;
    }
}

