﻿.pl-14-em {
    padding-left: 14em;
}
.admin-pages-container {
    min-height: calc(100vh - 190px);
}

.admin-pages-main-panel {
    flex-grow: 1;
}

.admin-pages-menu-dummy {
    width: 230px;
    flex-shrink: 0;
}

.manage-company-menu {
    background: #F5F5F5;
    overflow-x: scroll;
}

    .manage-company-menu h3 {
        cursor: pointer;
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 10px;
    }


.manage-menu {
    list-style: none;
    font-size: 14px;
    padding: 0 10px 0 5px;
    display: flex;
    flex-direction: column;
}

    .manage-menu .selected {
        background-color: #E4E4E4;
        border-radius: 2em;
    }

.menu-item {
    cursor: pointer;
    padding: 8px 20px;
}

    .menu-item span {
        cursor: pointer;
    }

.personal-profile-container .profile-tabs-select {
    display: flex;
    width: 834px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEE;
    width: 100%;
}

    .personal-profile-container .profile-tabs-select .tab-item {
        padding: 10px;
        border-radius: 0;
        margin-right: 10px;
        color: #9E9E9E;
        cursor: pointer;
    }

        .personal-profile-container .profile-tabs-select .tab-item:hover {
            color: #333333 !important;
        }

        .personal-profile-container .profile-tabs-select .tab-item.selected {
            border-bottom: 2px solid black;
            color: black;
        }

.export-button-candidates {
    margin-left: 1em;
    border-radius: 2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 122px;
    height: 45px;
    background: #F5F5F5;
}

.checkbox-button {
    width: 20px;
    height: 20px;
    border: 1px solid var(--main-color);
    border-radius: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5em;
}

.checkbox-inner {
    border-radius: 2em;
    background-color: var(--main-color);
    width: 75%;
    height: 75%;
}
.skill-dropdown {
    height: 50px;
    border-radius: 2em;
    padding-left: 1.25em;
    border: 1px solid var(--main-color-alpha-10);
    background-color: var(--main-color-alpha-10);
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    width: 100%;
    z-index: 99;
}

.skill-dropdown-wrapper {
    display: flex;
    align-items: center;
}

.skill-dropdown-arrow {
    margin-left: -2em;
    width: 1em;
}

.quest-arrow {
    width: 30px;
    height: 30px;
    background-color: #F5F5F5;
    border-radius: 2em;
    padding: 8px;
    cursor: pointer;
    transition: all 0.25s ease-out 0s;
}

.candidates-amount-text {
    color: #9E9E9E;
}

.candidates-amount-number {
    color: black;
}

.table-profile-img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 2em;
    margin-right: 0.75em;
}

.candidates-table {
    width: 100%;
    margin-top: 10px;
}

.table-pic-name {
    width: 33%;
}

.table-attached {
    width: 18%;
}

.table-status {
    width: 27%;
}

.table-date-time {
    width: 22%;
}

.table-status-icon {
    height: 30px;
    width: 30px;
    object-fit: cover;
    border-radius: 2em;
    margin-right: 0.75em;
}

.candidates-table td {
    padding: 2em 0;
    border-bottom: 1px solid #DDD;
}

.candidates-table th {
    padding-bottom: 2em;
    border-bottom: 2px solid black;
}

.table-candidate-row:hover {
    cursor: pointer;
}

.hover-grey:hover {
    background-color: #EEE;
}

td a.no-hover-color:hover, td a.no-hover-color:focus {
    color: #1B88D2 !important;
}

.candidate-menu {
    box-shadow: 0px 3px 6px #00000029;
    border: 0.5px solid #CCCCCC;
    border-radius: 5px;
    position: absolute;
    top: 2.5em;
    left: -5em;
    display: none;
    background-color: white;
    z-index: 999;
}

    .candidate-menu span {
        display: block;
        padding: 0.5em;
        padding-right: 1em;
        padding-left: 1em;
    }

        .candidate-menu span:hover {
            background-color: #F5F5F5;
            cursor: pointer;
        }
.quest-table {
    display: flex;
    justify-content: center;
    width: max-content;
    padding: 1em 2em;
    box-shadow: 0px 3px 10px #80808033;
    border-radius: 10px;
    margin-bottom: 2em;
}

.container-radio-skills input:checked ~ .checkmark {
    background-color: var(--main-color) !important;
}

.checkmark {
    border-color: var(--main-color) !important;
}
.container-radio-skills {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: normal;
}

    /* Hide the browser's default checkbox */
    .container-radio-skills input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 30px;
    border: 0.5px solid var(--main-color);
}

/* On mouse-over, add a grey background color */
.container-radio-skills:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-radio-skills input:checked ~ .checkmark {
    background-color: var(--main-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-radio-skills input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-radio-skills .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.quest-profile-edit {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #E5FBFA;
    padding: 0.65em 1em;
    border-radius: 2em;
    justify-content: space-between;
    cursor: pointer;
}

    .quest-profile-edit * {
        cursor: pointer;
    }

    .quest-profile-edit h4 {
        font-weight: normal;
        font-size: 16px;
    }

.company-menu-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.5em;
    padding: 1em 4.5em;
    height: 72px;
    margin-bottom: 1.5em;
}

@media only screen and (max-width: 1200px) {
    .quest-table {
        max-width: 900px;
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1300px) {
    .quest-table {
        max-width: 980px;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {
    .quest-table {
        max-width: 1080px;
    }
}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {
    .quest-table {
        max-width: 1180px;
    }
}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {
    .quest-table {
        max-width: 1280px;
    }
}

.quest-table table, .quest-table .table {
    width: 1100px;
}

    .quest-table table thead tr td, .quest-table .table .thead .tr .td {
        font-size: 25px;
        font-weight: bold;
        color: #9E9E9E;
        font-size: 16px;
    }

    .quest-table table thead tr, .quest-table .table .thead .tr {
        border-bottom: 1px solid #ccc;
        height: 3em;
    }

    .quest-table table tbody tr:not(:last-child), .quest-table .table .tbody .tr:not(:last-child) {
        border-bottom: 1px solid #ccc;
    }

    .quest-table table tbody tr td, .quest-table .table .tbody .tr .td {
        font-size: 16px;
        padding: 1em 0;
    }

.table-quest-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 2em !important;
    padding-top: 1.5em !important;
}

    .table-quest-title span {
        cursor: pointer;
    }

.table-quest-status section * {
    height: 20px;
}

.table-quest-status section img {
    margin-right: 5px;
}

.table-quest-person img {
    width: 35px;
    height: 35px;
    border-radius: 2em;
    object-fit: cover;
    margin-right: 5px;
}

@media only screen and (min-width: 768px) {
    .company-articles {
        /*    margin-left: 50px;
        margin-right: 50px;*/
        margin: auto;
    }
}
