body {
    overflow-x: hidden;
}

.page-item.active .page-link {
    background-color: #F6A237;
    border: 1px solid #F6A237;
}

.page-item .page-link {
    color: #000000;
}

/* nav */

.nav-link {
    border: 1px solid #F6A237;
    background-color: white;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #000000 !important;
    border-radius: 15px;
    margin-left: 19px;
}


.nav-link.work {
    color: #FFFFFF !important;
    background-color: #F6A237;
}


/* login/reg */

.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login h5 {
    margin-bottom: 24px;
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;

}

.login form {
    max-width: 320px;
}

.login form select {
    border-radius: 15px;
    height: 39px;
    width: 100%;
}

.login input {
    border-radius: 15px;
    height: 39px;
    width: 320px;
    border: 1px solid #CCCCCC;
    outline: none;
    margin-bottom: 10px;
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    padding: 9px 14px;
}

.login input::placeholder {
    color: #000000;

}

.login button {
    width: 320px;
    height: 53px;
    background-color: #F6A237;
    outline: none;
    border: none;
    border-radius: 15px;
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 7px;
}

.login p {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    margin-top: 10px;
}

.login a {
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
}



/* tables */

.myprojects {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000000;
    margin-left: 10px;
}


.table thead th {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000000;
    border: none;
}

.table tbody td {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    border: none;
}

.table tbody td a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    border: none;
}

.table tbody tr:nth-of-type(2n) {
    background-color: #F5F5F5;
    border-radius: 15px;
}

.table tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}

.table tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}




/* users */


.accounts {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100cqw;
    padding: 15px 0 25px;
    background: #F5F5F5;
}


.accounts p {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000000;

}

.accounts .btn-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.accounts .btn-group a {
    width: fit-content;
    border: 1px solid #F6A237;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    border-radius: 15px;
    text-decoration: none;
    padding: 7px;
}


.accounts .btn-group a.active {
    color: #FFFFFF !important;
    background-color: #F6A237;
}

.contestants_table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    --cols: 20% 25% 25% 30%;
}

.contestants_table .header,
.contestants_table .body-row {
    display: grid;
    grid-template-columns: var(--cols);
    column-gap: 1%;
}

.contestants_table .header {
    padding: 0 15px;
}

.contestants_table .body-row {
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    padding: 14px;
}

.contestants_table .header div,
.contestants_table .body-row div {
    font-family: Montserrat;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    word-break: break-all;
    padding: 0;
    color: #000000;
}

.contestants_table .header div {
    font-weight: 600;
    text-transform: uppercase;
}

.contestants_table .body-row div {
    font-weight: 400;
}

.contestants_table.judges {
    --cols: 25% 25% 10% 18% 18%;
}

.contestants_table.projects {
    --cols: 24% 24% 24% 25%;
}

.contestants_table.projects.admin {
    --cols: 16% 20% 10% 16% 12% 10% 10%;
}

.contestants_table.projects.user {
    --cols: 32% 33% 33%;
}

.contestants_table.panels {
    --cols: 21% 30% 30% 16%;
}


/* select */
.nom-group__title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000000;
}

.nom-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.nom-item__input {
    position: absolute;
    opacity: 0;
}

.nom-item__label {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
}

.nom-item__label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid #000000;
    border-radius: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
}

.nom-item__input:checked+.nom-item__label::before {
    display: none;
}

.nom-item__icon {
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    display: none;
}

.nom-item__input:checked+.nom-item__label .nom-item__icon {
    display: block;
}

.select {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
}

.btn.btn-danger {
    width: 320px;
    height: 53px;
    background-color: red;
    outline: none;
    border: none;
    border-radius: 15px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 7px;
}

.btn.submit {
    width: 320px;
    height: 53px;
    background-color: #F6A237;
    outline: none;
    border: none;
    border-radius: 15px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 7px;
    display: flex;
    justify-content: center;
    align-items: center;

}


.detail-table table tbody tr>td:first-child {
    font-weight: 600;
    font-size: 16px;
}

.detail-table table tbody tr>td:last-child {
    font-weight: 500;
    font-size: 14px !important;
    line-height: 150% !important;
}


.detail-table table tbody tr>td:last-child span {
    font-weight: 500;
    font-size: 14px !important;
    line-height: 150% !important;
}



/* modal */

.modal-footer.delete {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
}

.modal-footer.delete a {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-footer.delete button {
    width: 320px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 7px;
    height: 53px;
    border-radius: 15px;
}