/**************************************************/
/*  PRICING TABLE CARD
/**************************************************/

[class*='pms-pt-border-']{
    border-radius: 8px !important;
    border: 1px solid #F1F1F1 !important;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.pms-pt-border-2{
    box-shadow: 0 5px 30px 2px rgba(1, 111, 208, 0.24), 0 2px 8px 0 rgba(1, 111, 208, 0.37);
}

.pms-pt-gap{
    justify-content: center !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
}

[class*='pms-pt-card-']{
    min-width: 348px;
    box-sizing: border-box;
    max-width: 400px !important;
    padding: 24px !important;
    background: white;
    margin-bottom: 15px !important;
}

/**************************************************/
/*  PRICING TABLE TEXT
/**************************************************/

.pms-pt-text-title, .pms-pt-text-price{
    color: #1A1A1A !important;
    font-family: Roboto, sans-serif !important;
    font-size: 27px !important;
    font-weight: 700 !important;
    line-height: 120%; /* 32.4px */
    letter-spacing: -0.54px;
    text-align: left !important;
}

.pms-pt-text-title{
    margin: 0 !important;
}

.pms-pt-text-price{
    margin-top: 16px !important;
    margin-bottom: 16px !important;
}

.pms-pt-text-duration{
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 140% !important; /* 16.8px */
    margin-left: 3px;
}

.pms-pt-separator:before{
    content: "" !important;
    display: block;
    border-top: 1px solid #D9D9D9 !important;
}

.pms-pt-separator{
    margin: 30px auto !important;
}

.pms-pt-text-description{
    color: #667085;
    /*font-family: Roboto, sans-serif;*/
    font-size: 18px;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    text-align: left !important;
}

/**************************************************/
/*  PRICING TABLE LIST
/**************************************************/

.pms-pt-list{
    width: 80%;
    font-size: 18px !important;
}

.pms-pt-list li {
    position: relative;
    padding: 8px !important;
    list-style: none;
    line-height: 28px;
}

.pms-pt-list li::before{
    content: url("../icons/pricing-table-marker-style-1.svg");
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 70%;
    background: #CEE8F4;
    position: absolute;
    left: -37px;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/**************************************************/
/*  PRICING TABLE BUTTONS
/**************************************************/

.pms-pt-button-column-1, .pms-pt-button-column-2{
    margin-top: 30px !important;
}

.pms-pt-button-column-1 .wp-block-button__link{
    border-radius: 4px !important;
    border: 2px solid!important;
    border-color: #1079F3 !important;
    text-decoration: none !important;
    transition: background-color 0.15s;
}

.pms-pt-button-column-1 .wp-block-button__link:hover{
    background: #1079F3 !important;
}

.pms-pt-button-column-1 .wp-block-button__link strong{
    color: #1079F3;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    line-height: 25.2px;
    transition: color 0.15s;
}

.pms-pt-button-column-1 .wp-block-button__link:hover strong{
    color: white;
}

.pms-pt-button-column-2 .wp-block-button__link{
    border-radius: 4px !important;
    background: #1079F3 !important;
    border: 2px solid!important;
    border-color: #1079F3 !important;
    text-decoration: none !important;
    transition: background-color 0.15s;
}

.pms-pt-button-column-2 .wp-block-button__link:hover{
    background: white !important;
}

.pms-pt-button-column-2 .wp-block-button__link strong{
    color: #FFF;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    line-height: 25.2px;
    transition: color 0.15s;
}

.pms-pt-button-column-2 .wp-block-button__link:hover strong{
    color: #1079F3;
}

/**************************************************/
/*  PRICING TABLE RESPONSIVE
/**************************************************/

@media (max-width: 420px) {
    .pms-pt-list{
        width: 90%;
    }

}