.cbh-icon-box .icon{
    padding: 8px;
    gap: 8px;
    isolation: isolate;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px rgba(17, 24, 39, 0.08);
    border-radius: 25px;
    text-align: center;
    line-height: 100px;
    position: relative;
    margin-bottom: 24px;
    transition: all .3s;
}
.cbh-icon-box .icon svg{
    margin: 50% auto 0 auto;
    transform: translateY(-50%);
}
.cbh-icon-box.shadow .icon::before{
    content: "";
    width: 40px;
    position: absolute;
    height: 4px;
    left: calc(50% - 40px/2);
    top: 84px;
    background: #F2F6F4;
    border-radius: 100px;
}
.cbh-icon-box:hover .icon{
    transform: translateY(-5px);
}
.center.cbh-icon-box > div{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.right.cbh-icon-box > div{
    margin-left: auto;
    text-align: right;
}