/*Loading Ajax*/
.waiting_for_ajax {
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9999999999999999999;
    max-height: 100%;
}
.waiting_for_ajax > div {
    opacity: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: #6161618c;
    width: 100%;
    padding: 10px 25px;
    border-radius: 10px;
    margin: auto;
    /*max-width: 300px;*/
}
.waiting_for_ajax img {
    width: 50px;
}
.waiting_for_ajax p {
    font-size: 16px;
    color: #FFF!Important;
    margin-top: 10px;
    height: auto;
    margin-bottom: 0px;
}
#rotate-image {
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

#user-table {
    margin-top: 30px;
}
#user-table .cs-thead, #user-table  .cs-tbody {
    border-radius: 10px;
    background: #fbfbfb;
    box-shadow: 0px 3px 15px rgb(0 0 0 / 15%);
    overflow: hidden;
    margin-bottom: 15px;
}
#user-table .cs-thead > div, #user-table  .cs-tbody > div{
    display: flex;
}
#user-table > div .cs-col-1 {
    width: 30%;
}
#user-table > div .cs-col-2 {
    width: 35%;
}
#user-table > div .cs-col-3 {
    width: 35%;
}
#user-table .row-th > div, #user-table .row-td > div {
    padding: 10px;
    position:relative;
}
#user-table  .row-th > div:not(:last-child):before, #user-table  .row-td > div:not(:last-child):before {
    content: "";
    position: absolute;
    height: 1000px;
    width: 1px;
    background: #e6e6e6;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
#user-table .row-td p {
    display: inline-block;
    margin: 0px!important;
    padding: 5px 15px!important;
}
#user-table .cs-col-2, #user-table .cs-col-3 {
    text-align: center;
}
#user-table .cs-col-3 a {
    display: inline-block;
    padding: 5px 15px;
}
.cs-tbody .row-td:not(:last-child) {
    border-bottom: 1px #e6e6e6 solid;
}
#user-table .cs-btn.uncompleted, #user-table .cs-col-3 a.cs-btn.uncompleted {
    background: #d7d7db;
    border: 1px #d7d7db solid;
    color: #000;
    font-weight: 300;
}
#user-table .row-th .cs-col-1 p {
    padding-left: 15px;
}
#user-table .row-th p {
    font-weight: 500!important;
}
.Open-idea-challenges-list {
    width: 100%;
    max-width: 701px;
    background: #fff;
    padding: 25px 30px;
    height: 300px !important;
    /* max-height: 520px; */
    overflow: auto;
    border-radius: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translate(0,-50%);
}
*, div, h1, h2, form_css {
    font-family: 'Poppins', sans-serif;
    /* font-size: 19px; */
}