﻿#loading-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    text-align: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20% auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.fwlButton {
    align-items: center;
    background-color: #fff;
    border: 2px solid #000;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    fill: #000;
    font-family: Inter,sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    letter-spacing: -.8px;
    line-height: 24px;
    min-width: 140px;
    outline: 0;
    padding: 0 17px;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

    .fwlButton:focus {
        color: #171e29;
    }

.fwlButton.gray:hover {
    color: black;
    background-color: lightgray;
    fill: black;
}

.fwlButton.yellow:hover {
    color: black;
    background-color: #F9FE4C;
    fill: black;
}

.fwlButton.white:hover {
    color: black;
    background-color: white;
    fill: black;
}

.fwlButton.dark:hover {
    color: white;
    background-color: black;
    fill: white;
}

.fwlButton.small {
    height: 28px;
    min-width: 110px;
}

.fwlButton:active {
    border-color: black;
    color: black;
    fill: #F9FE4C;
}


.fwlpopup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: 1px solid #ddd;
    background-color: white;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.fwlpopup.success {
    border-color: green;
}

.fwlpopup.error {
    border-color: red;
}