/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

main > .container {
  padding: 60px 15px 0;
}
#members > tbody > tr > td:not( :last-child ):hover,
#items > tbody > tr > td:hover ,
#send_subscriptions > tbody > tr > td:hover,
#editTranslations > tbody > tr > td:hover,
#invoiceRecipientManagement > tbody > tr >td:hover,
#users > tbody > tr > td:hover,
#email_groups > tbody > tr > td:hover,
#sms > tbody > tr > td:hover,
#applicants > tbody > tr > td:hover,
#cost_compensations > tbody > tr > td:hover {
    cursor: pointer;
}
.pointer:hover {
    cursor: pointer;
}

#cover-spin {
    position:fixed;
    width:100%;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display:none;
}

@-webkit-keyframes spin {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

#members .fas {
    margin: 0 5px 0 5px;
}

table.cost_compensation td {
    padding: 5px !important;
}

.fa-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/**
* Google profile picture
**/
.avatar {
    border-radius: 50%;
    width: 35px;
    height: auto;
    margin: 0 5px;
    float: right;
}