/* LIST BLUE + GREEN */
ul.is-style-green-list {
    list-style: none;
    padding-left: 0;
}

ul.is-style-green-list li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 5px; 
}

ul.is-style-green-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 11px;
    height: 11px;
    background-color: #00953F;
}

ul.is-style-blue-list {
    list-style: none;
    padding-left: 0;
}

ul.is-style-blue-list li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 5px; 
}

ul.is-style-blue-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 11px;
    height: 11px;
    background-color: #2E2482;
}

.is-style-button-underline-green a,
.is-style-button-underline-green div {
    margin-top: 5px;
    background-color: unset;
    padding: 0;
    line-height: 1.4;
    border-bottom: 2px solid #00953F;
}

.is-style-button-underline-blue a,
.is-style-button-underline-blue div {
    margin-top: 5px;
    background-color: unset;
    padding: 0;
    line-height: 1.4;
    border-bottom: 2px solid #2E2482;
}


.is-style-group-arrow-glue div {
    margin-top: 5px;
    background-color: unset;
    padding: 0;
    line-height: 1.4;
    border-bottom: 2px solid #2E2482;
}

.is-style-group-arrow-green:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #A8E2C0;
    top: -35px;
    left: 20px;
    position: absolute;
}

.is-style-group-arrow-blue:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #C1D2FF;
    top: -35px;
    right: 20px;
    position: absolute;
}