﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.pdf_downloadbox-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 8rem;
    width: 3.5rem;
    height: 3.5rem;
    z-index: 10;
}

@media (max-width: 480px) {
    .pdf_downloadbox-wrapper {
        bottom: 2rem !important;
        right: 8rem !important;
    }
}

.pdf_downloadbox-toggle {
    width: 100%;
    height: 100%;
    background: #FF9E1B !important;
    color: white !important;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.pdf_downloadbox-toggle:hover {
    background: var(--white) !important;
    color: #1ab62a !important;
}

.pdf_downloadbox-toggle:active {
    transform: scale(.9);
}

.pdf_download_spinner {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 100px auto;
    position: fixed;
    bottom: 2rem;
    right: 8rem;
    width: 3.5rem;
    height: 3.5rem;
    margin: 100px auto;
    margin-bottom: 0px;
    z-index: 9;
}

@media (max-width: 480px) {
    .pdf_download_spinner {
        bottom: 2rem !important;
        right: 8rem !important;
    }
}

.pdf_download_double-bounce {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out !important;
    animation: sk-bounce 2.0s infinite ease-in-out !important;
    border-color: #5aa1e2;
    background: linear-gradient(119.16deg, #FFFFFF 0%, #FFCF54 98.94%) !important;
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.4);
        background-color:  #25db73;
        border-color: #5aa1e2;
    }
}