@charset "UTF-8";

.kor-donate-frame {
    border-style: none;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    border-left: 1px solid #f2f2f2;
    width: 33%;
    background-color: white;
    z-index: 99999;
}

@media (max-width: 1000px) {
    .kor-donate-frame {
        width: 45%;
    }
}

@media (max-width: 780px) {
    .kor-donate-frame {
        width: 60%;
    }
}

@media (max-width: 660px) {
    .kor-donate-frame {
        width: 90%;
    }
}

.kor-hidden {
    display: none;
}

.kor-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.kor-btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.kor-btn-donate {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #BF3B3D;
    border-color: #BF3B3D;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    z-index: 10000;
}

.kor-btn-donate:before {
    content: '¡Haz clic aquí para donar!';
    position: absolute;
    right: 89px;
    width: 220px;
    padding: 8px;
    top: 21px;
    background-color: #f2f2f2;
    color: black;
    font-weight: bold;
    border-radius: 16px 0px 16px 16px !important;
    box-shadow: 2px 1px 9px 4px rgb(0 0 0 / 25%);
}

.kor-btn-donate {
    animation: kor-pulse 3s infinite;
}


@keyframes kor-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}