/*————————————

Info Block v4-3

————————————*/ .info-v4-3 {

position: relative;

&::after {
        content: "";
        position: absolute;
        top: -3px;
        right: -3px;
        bottom: -3px;
        left: -3px;
        border: 5px solid transparent;
        transition: inherit;
}

&:hover::after {
        border-color: $g-color-primary;
}

}