.widget.btn {
    margin-top: 2.5em;
}
#main a.hyperlink_txt, #main .content-hyperlink a {
    color: #ffffff;
    font-weight: bold;
}
.btn {
    margin-right:auto;
    margin-left:auto;
    position: relative;
    width: 375px;
    min-width: max-content;
    padding: 0 1em;
    max-height: max-content;
    max-width: 100%;
    font-size: 1.05em;
    text-align: center;
    line-height: 2.75em;
    color: #ffffff;
    border-radius: 50px;
    border: none;
    background: #337abe;
    background-size: 600%;
    animation: anime 12s linear infinite;
    transition: .3s;
}
.bg_color_green .btn {
    color: #ffffff;
        border-color: white;
        border: 3px solid;
}
.btn:hover {
    background: #30816D;
}
.btn > a {
    position: relative;
}
.btn > a:before {
    display: none;
    content: url("/files/content/icons/noun_click button_1614631.svg");
    position: absolute;
    top: -10px;
    left: -40px;
    opacity: 1;
    transition: .3s;
}
.btn:hover > a:before {
    display: block;
    opacity: 1;
    transition: .3s;
}
