:root {
    --green-main: #56A050;
    --white: #fff;
    --blue-main: #386DD3;
    --green-middlegray: #ECECEC;
}

@media (min-width: 768px) {
    .subscription-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 90px;
    }

    .subscription-block {
        border-radius: 15px;
        padding: 40px 16px;
        width: 98%;
        height: 685px;
        background: #fff;
        position: relative;
        border: 1px solid #56a050;
    }

    .subscription-block-header {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 24px;
        text-transform: uppercase;
        text-align: center;
        color: var(--green-main);
        margin-bottom: 30px;
    }

    .subscription-block-list {
        font-weight: 400;
        font-size: 16px;
        line-height: 200%;
        color: #444;
        display: flex;
        flex-direction: column;
    }

    .subscription-block-list-row {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 12px;
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        color: #444;
    }

        .subscription-block-list-row img {
            width: 28px;
            margin-right: 16px;
        }

    .subscription-block-freeprice {
        font-weight: 600;
        font-size: 20px;
        text-align: center;
        color: var(--green-main);
        position: absolute;
        bottom: 117px;
        left: 25%;
    }

    .subscription-block .selectSubscription {
        border-radius: 15px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 20px;
        color: var(--white);
        position: absolute;
        bottom: 40px;
        width: 92% !important;
        border: none;
    }

    .subscription-block-price {
        display: flex;
    }

    .subscription-block .priceWithCheckBox {
        position: absolute;
        bottom: 117px;
        display: flex;
        flex-direction: row;
        width: 90%;
        justify-content: space-between;
    }

    .priceInfo {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        line-height: 19px;
    }

    .priceInfo-big {
        font-weight: 600;
        font-size: 24px;
        text-align: right;
        color: var(--green-main);
    }

    .priceInfo-small {
        font-weight: 400;
        font-size: 12px;
        color: var(--green-main);
    }

    .label-for-checkbox {
        position: absolute;
        z-index: 1;
        right: 0px;
        top: 5px;
        color: #56A050;
    }

        .label-for-checkbox:hover {
            cursor: pointer;
        }
}

@media (max-width: 768px) {
    .subscription-container {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .subscription-block {
        border-radius: 15px;
        padding: 25px 20px;
        width: 98%;
        /* height: 308px; */
        min-height: 308px;
        background: #fff;
        position: relative;
        border: 1px solid #56a050;
        margin-bottom: 12px;
    }

    .subscription-block-header {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 24px;
        text-transform: uppercase;
        text-align: center;
        color: var(--green-main);
        margin-bottom: 30px;
    }

    .subscription-block-list {
        font-weight: 400;
        font-size: 16px;
        line-height: 200%;
        color: #444;
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .subscription-block-list-row {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 0;
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        color: #444;
        align-items: center;
    }

        .subscription-block-list-row img {
            width: 24px;
            margin-right: 16px;
        }

    .subscription-block-freeprice {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 14px;
        text-align: center;
        color: var(--green-main);
        margin-bottom: 12px;
    }

    .subscription-block .selectSubscription {
        border-radius: 10px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 20px;
        color: var(--white);
        position: relative;
        border: none;
    }

    .subscription-block-price {
        display: flex;
        justify-content: space-evenly;
        margin-bottom: 12px;
    }

    .subscription-block .priceWithCheckBox {
        position: relative;
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .priceInfo {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        line-height: 19px;
    }

    .priceInfo-big {
        font-weight: 600;
        font-size: 16px;
        text-align: right;
        color: var(--green-main);
    }

    .priceInfo-small {
        font-weight: 400;
        font-size: 10px;
        color: var(--green-main);
    }

    .label-for-checkbox {
        position: absolute;
        z-index: 1;
        right: 0px;
        top: 5px;
        color: #56A050;
    }

        .label-for-checkbox:hover {
            cursor: pointer;
        }
}
