/**
 * Floating action links: Download (brochure) + WhatsApp
 * Fixed at bottom-left and bottom-right
 */

.info-link {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    margin: 40px;
}

.info-link.info-wp-link {
    left: auto;
    right: 0;
}

.info-link a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 52px;
    border-radius: 50%;
    background: #16733A;
    color: #fff;
    text-align: center;
    font-size: 22px;
    position: relative;
}

.info-link.info-wp-link a {
    font-size: 20px;
    background: #00CC33;
}

.info-link.info-download-link {
    left: 0;
    right: auto;
    bottom: 0;
    margin: 40px;
}

.info-link.info-download-link a {
    background: #0066cc;
    color: #fff;
}

.info-link.info-download-link a svg {
    transition: all 0.3s;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.info-link.info-download-link a:hover svg {
    transform: scale(1.2);
}

.info-link a:hover {
    color: #fff;
}

.info-link a:before {
    content: ' ';
    border-radius: 100%;
    position: absolute;
    height: 50px;
    width: 50px;
    border: solid 2px #16733A;
    opacity: 0.5;
    left: 0;
    top: 0;
    animation: sonarEffectNew 1.5s ease-out infinite;
}

.info-link.info-download-link a:before {
    border-color: #0066cc;
}

.info-link.info-wp-link a:before,
.info-link.info-wp-link a:after {
    border-color: #00CC33;
}

.info-link a:after {
    content: ' ';
    border-radius: 100%;
    position: absolute;
    left: -20px;
    top: -20px;
    height: 90px;
    width: 90px;
    border: solid 2px #16733A;
    opacity: 0;
    animation: sonarEffectNew 1.5s ease-out 2s infinite;
}

.info-link.info-download-link a:after {
    border-color: #0066cc;
}

@keyframes sonarEffectNew {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

.info-link .info_label {
    position: absolute;
    left: 100%;
    top: 10px;
    background: #000;
    border-radius: 5px;
    padding: 8px 10px;
    color: #fff;
    font-size: 13px;
    line-height: 120%;
    white-space: nowrap;
    margin: 0 42px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: 5;
}

.info-link:hover .info_label {
    visibility: visible;
    margin: 0 12px;
    opacity: 1;
}

.info-link .info_label:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto -4px;
    width: 8px;
    height: 8px;
    background: #000;
    transform: rotate(45deg);
}

.info-link.info-wp-link .info_label {
    right: 100%;
    left: auto;
    margin: 0 42px;
}

.info-link.info-wp-link:hover .info_label {
    margin: 0 12px;
}

.info-link.info-wp-link .info_label:before {
    right: 0;
    left: auto;
}

.info-link.info-wp-link a svg {
    transition: all 0.3s;
}

.info-link.info-wp-link a:hover svg {
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
}

@keyframes quick-alo-circle-img-anim {
    0% { transform: rotate(0) scale(1); }
    10% { transform: rotate(-25deg) scale(1); }
    20% { transform: rotate(25deg) scale(1); }
    30% { transform: rotate(-25deg) scale(1); }
    40% { transform: rotate(25deg) scale(1); }
    50%, 100% { transform: rotate(0) scale(1); }
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}

.svg-inline--fa.fa-w-14 {
    width: 0.875em;
}
