*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: 0px;
}

html
{
    font-size: 16px;
    height: 100%;
}

/* 150% Zoom */
@media screen and (max-height: 800px)
{
    html
    {
        font-size: 12px;
    }
}

body
{
    height: 100%;
    overflow-x: hidden;
}

.main-content-scroller
{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 5rem;
    overflow-y: scroll;
}

.sign-in-background
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navbar-button
{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 4rem;
}

.navbar-button.active
{
    box-shadow: inset 0 0 1rem rgba(0, 0, 0, 0.5);
}

.navbar-button-icon
{
    transition: transform 0.3s;
}

.navbar-button:hover .navbar-button-icon
{
    transform: scale(1.2);
}

.navbar-button:active .navbar-button-icon
{
    transform: scale(0.8);
}

.navbar-button-logo
{
    height: 3rem;
    animation: swing 6s infinite;
}

@keyframes swing
{
    0%
    {
        transform: rotate(-30deg);
        animation-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
    }
    50%
    {
        transform: rotate(30deg);
        animation-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
    }
    100%
    {
        transform: rotate(-30deg);
    }
}

.klofi-form-input-icon
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    padding-left: 0.7rem;
}

.klofi-form-input-ending
{
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 2.375rem; */
    padding-right: 0.9rem;
}

.klofi-text-danger-blink
{
    animation: textDangerBlink 1s infinite;
}

@keyframes textDangerBlink
{
    0%, 49%
    {
        color: #212529;
    }
    50%, 99%
    {
        color: #dc3545;
    }
}

.klofi-hover-opacity
{
    transition: opacity 0.2s ease;
}

.klofi-hover-opacity:hover
{
    opacity: 0.75;
}

.dropper-arrow
{
    transition: transform 0.3s ease-in-out;
}

.dropper-arrow.rotated
{
    transform: rotate(180deg);
}

.dropper-body
{
    height: 0;
    transition: height 0.4s ease-in-out;
}

.slideIn
{
    display: block;
    animation-name: slideIn;
}

.slideOut
{
    animation-name: slideOut;
    animation-fill-mode: forwards;
}

@keyframes slideIn
{
    from
    {
        width: 0;
        height: 0;
        opacity: 0;
    }
    to
    {
        width: 300px;
        height: 400px;
        opacity: 1;
    }
}

@keyframes slideOut
{
    from
    {
        width: 300px;
        height: 400px;
        opacity: 1;
    }
    to
    {
        width: 0;
        height: 0;
        opacity: 0;
    }
}

#card-chatbox
{
    display: none;
    right: 2.5rem;
    bottom: calc(1.5rem + 3.125rem + 1.5rem);
    width: 300px;
    height: 400px;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.not-dragable-link
{
    /* Disable <a> link underline */
    text-decoration: none;

    /* Disable <a> link drag'n'drop */
    user-select: none;
    -webkit-user-drag: none;

    /* Disable text selecting */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.cursor-pointer
{
    cursor: pointer;
}

input[type="number"]
{
    -moz-appearance: textfield; /* Pro Firefox */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

input[type="text"]::placeholder
{
    opacity: 0.5;
}

input[type="tel"]::placeholder
{
    opacity: 0.5;
}

input[type="email"]::placeholder
{
    opacity: 0.5;
}

input[type="number"]::placeholder
{
    opacity: 0.5;
}

input[type="password"]::placeholder
{
    opacity: 0.5;
}

textarea::placeholder
{
    opacity: 0.5 !important;
}

option:disabled
{
    background-color: #dee2e6;
}

table td
{
    background-color: transparent !important;
}
