body {
    text-align: center;
}

.earnings {
    width: 500px;
    display: inline-block;
    background-color: #7272721a;
    margin: 30px auto;
    position: relative;
    text-align: left;
    padding: 25px;
}

.earnings span {
    display: block;
}

#ear_title_1,
#ear_title_2,
#tips,
#payments_table_name {
    font-size: 20px;
    font-weight: bold;
}

#tips,
#payments_table_name {
    margin-bottom: 30px;
}

#ear_money,
#ear_money_total {
    font-size: 60px;
}

#ear_date,
#ear_title_3,
#ear_title_4,
#ear_paypal_logout {
    font-size: 13px;
}

#ear_title_2,
#ear_title_4,
#paypal_button {
    margin-top: 40px;
}

#ear_paypal_email {
    font-size: 20px;
}

#ear_paypal_logout {
    color: #0070ba;
    cursor: pointer;
}

#ear_title_4,
#ear_paypal_email,
#ear_paypal_logout {
    display: none;
}

.withdraw_container {
    display: table;
}

.withdraw_container>div {
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px;
}

.withdraw_button {
    font-size: 18px;
    display: table-cell;
    padding: 15px 22px;
    background-color: #23c515;
    color: #fff;
    font-weight: bold;
    border-radius: 44px;
    cursor: pointer;
}

#earnings_table,
#payments_table {
    width: 100%;
    position: relative;
    table-layout: fixed;
    text-align: center;
    border-spacing: 0;
    border-collapse: separate;
}

#earnings_table th,
#payments_table th {
    text-align: center;
}

#earnings_table tr:hover,
#payments_table tr:hover {
    background-color: #0000000f;
}

#earnings_table td,
#payments_table td {
    border-bottom: 1px solid #0000000f;
    width: 25%;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px 0;
}

.send_text {
    font-size: 18px;
    display: block;
}

.send_text_email {
    font-size: 22px;
    font-weight: bold;
    display: block;
    padding: 10px 10px 0 0;
    color: #1c00b7;
}

.send_button {
    text-decoration: none;
    height: auto;
    font-weight: bold;
    color: #fff;
    text-align: center;
    box-shadow: 0px 3px 5px #9e9e9e69;
    border-radius: 70px;
    width: auto;
    line-height: 13px;
    margin: 20px 20px 0 0;
    cursor: pointer;
    background-image: none;
    transition: all ease 0.3s;
    display: inline-block;
    background-color: #ea00ff;
    font-size: 18px;
    padding: 20px 25px;
    min-width: 140px;
}

.send_cancel {
    background-color: #939393;
}

#loading {
    background-color: #ffffffd1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
}

.lds-ring {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #f04cff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #f04cff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}