.spinner {
    display: block;
    margin: auto;
    height: 1em;
    width: 1em;
    border: 6px solid rgba(253, 230, 138, 1);
    border-top-color: rgba(217, 119, 6, 0.8);
    border-radius: 50%;
    animation: rotation 0.6s infinite linear;
}

.paymentSpinner {
    display: block;
    margin: auto;
    height: 2em;
    width: 2em;
    border: 20px solid rgb(52, 211, 153);
    border-top-color: rgb(5, 150, 105);
    border-radius: 50%;
    animation: rotation 0.6s infinite linear;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

.tooltip {
    /*position: relative;*/
    /*display: inline-block;*/
    /*border-bottom: 1px dotted black;*/
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    white-space: normal;
    background-color: #00000091;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    /*padding: 5px 0;*/
    font-size: 12px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 50px;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
}

.line-input {
    /* -webkit-appearance: none; */
    -moz-appearance: none;
    appearance: none;
    /*background-color: #fff;*/
    border-color: #6b7280;
    border-width: 0px !important;
    border-radius: 0px;
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}


.scrollbar::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar
{
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}




