/* link-left */

.link-left[data-elem-type="text"] a {
    border: 0 !important;
    display: inline-block !important;
    width: auto !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    color: #0A84FF !important;
}

.link-left[data-elem-type="text"] a:hover {
    color: #0A84FF !important;
}

.link-left[data-elem-type="text"] a::after {
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    margin: auto;
    margin-bottom: -2px;
    height: 1px;  
    background: #0A84FF; 
     
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
     
}

.link-left[data-elem-type="text"] a:hover::after {
    background: #0A84FF;
     
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 0;
     
}

/* link-out */

.link-out[data-elem-type="text"] a {
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 0 !important;
    color: #FFFFFF !important;
}

.link-out[data-elem-type="text"] a:hover {
    color: #0A84FF !important;
}
