.dsvy-ihbox-style-12 .dsvy-element-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    margin: 0;
}

.dsvy-ihbox-style-12 .dsvy-element-title span {
    color: var(--dsvy-karzo-global-color);
    text-decoration: underline;
}

.dsvy-ihbox-style-12 .dsvy-ihbox-icon-type-image {
    position: relative;
    width: 56px;
    height: 56px;
}

.dsvy-ihbox-style-12 .dsvy-ihbox-icon-type-image img {
    border-radius: 50%;
    padding: 3px;
    border: 1px solid var(--dsvy-karzo-global-color);
}

.dsvy-ihbox-style-12 .dsvy-ihbox-contents {
    padding-left: 50px;
}

.dsvy-ihbox-style-12 .dsvy-ihbox-icon-type-image:before {
    position: absolute;
    content: "\e853";
    left: 40px;
    top: 3px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
    background-color: #fff;
    color: var(--dsvy-karzo-global-color);
    border-radius: 50%;
    text-align: center;
    font-family: 'designervily-base-icons';
}

.dsvy-ihbox-style-12:hover .dsvy-ihbox-icon-wrapper {
    animation: ts-bounce 500ms ease-in-out 50ms;
}

@keyframes ts-bounce {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}