/* =========================================================
   HNNP - Back To Top
   ========================================================= */

html body a.hnnp-back-to-top {
    all: unset !important;
    box-sizing: border-box !important;

    position: fixed !important;
    right: 28px !important;
    bottom: 80px !important;

    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;

    border: 0 !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    color: #2B5ACD !important;
    cursor: pointer !important;
    z-index: 10160 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(10px) !important;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease !important;

    overflow: visible !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

html body a.hnnp-back-to-top.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

html body a.hnnp-back-to-top:hover,
html body a.hnnp-back-to-top:focus,
html body a.hnnp-back-to-top:active,
html body a.hnnp-back-to-top:visited {
    background: transparent !important;
    color: #2B5ACD !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}

html body .hnnp-back-to-top-ring {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: rotate(-90deg) !important;
    pointer-events: none !important;
}

html body .hnnp-back-to-top-bg {
    fill: none !important;
    stroke: #d9dde3 !important;
    stroke-width: 2 !important;
}

html body .hnnp-back-to-top-line {
    fill: none !important;
    stroke: #2B5ACD !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-dasharray: 132 !important;
    stroke-dashoffset: 132 !important;
    transition: stroke-dashoffset .65s ease !important;
}

html body a.hnnp-back-to-top:hover .hnnp-back-to-top-line {
    stroke-dashoffset: 0 !important;
}

html body .hnnp-back-to-top-arrow {
    position: relative !important;
    z-index: 1 !important;
    width: 21px !important;
    height: 21px !important;
    display: block !important;
    color: #2B5ACD !important;
    pointer-events: none !important;
}

@media (max-width: 767px) {
    html body a.hnnp-back-to-top {
        right: 28px !important;
        bottom: 80px !important;
        width: 45px !important;
        height: 45px !important;
    }
}