@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700&display=swap');


/*=========================
    Annual Subscription
==========================*/

.Subscription_block {

    display: flex;
    justify-content: space-around;
    align-items: stretch;
    margin: 20px;
    flex-direction: row;
}

.Subscription {
    padding: 10px;
    width: 32%;
    border-radius: 10px;

    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
}



@media only screen and (min-width: 320px) and (max-width: 959px) {

    .Subscription_block {
        flex-direction: column;

    }

    .Subscription {
        padding: 10px;
        width: 100%;
        border-radius: 10px;

        transition: all 0.25s linear;
        -webkit-transition: all 0.25s linear;
        -moz-transition: all 0.25s linear;

        margin-bottom: 20px;
    }
}

.Subscription:hover {
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
}


.Subscription.basic {
    background: rgb(150, 204, 249);
    background: linear-gradient(153deg, rgb(220 239 254) 0%, rgba(150, 204, 249, 1) 50%, rgb(245 245 245) 50%, rgb(245 245 245) 100%);
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
}


.Subscription.premium {
    background: rgb(150, 204, 249);
    background: linear-gradient(153deg, rgb(195 242 248) 0%, rgb(195 242 248) 50%, rgb(245 245 245) 50%, rgb(245 245 245) 100%);
}


.Subscription.enterprise {
    background: rgb(150, 204, 249);
    background: linear-gradient(153deg, rgb(243 203 169) 0%, rgb(243 203 169) 50%, rgb(245 245 245) 50%, rgb(245 245 245) 100%);
}

.Subscription ul {
    background-color: #fff;
    border-radius: 10px;
    ;
}


.Subscription li {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border-radius: 2px;

    margin-bottom: 3px;
    color: #000;
    line-height: 18px !important;
    letter-spacing: 1px;
    padding: 8px 10px 8px 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    position: relative;
}

.Subscription li:hover {
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
}

.Subscription li:nth-child(even) {
    background-color: #fafafa;

}


.subscriptionType {
    margin-bottom: 15px;
    margin-top: 15px;
}

.subscriptionType h4 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;
}


/*======================
     tick marks
=======================*/

.Subscription li:before {
    content: '\f05d';
    position: absolute;
    width: 20px;
    height: 20px;
    font-family: FontAwesome;
    margin-left: -20px;
    font-size: 17px;
    margin-top: 2px;
    font-weight: 400;
}

.Subscription.basic li:before {
    color: #219bfb
}

.Subscription.premium li:before {
    color: #15acbf
}

.Subscription.enterprise li:before {

    color: #e97e24
}

::-webkit-input-placeholder {
    /* Edge */
    color: #888 !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #888 !important;
}

::placeholder {
    color: #888 !important;
}