@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    outline: none;
}

textarea {
    resize: none;
    margin: 0;
    padding: 0.2rem 0.4rem;
}

input {
    margin: 0;
    padding: 0.2rem 0.4rem;
}

input[type=checkbox] {
    cursor: pointer;
}

hr.rounded {
    border: 1px solid #ebebeb;
    width: 90%;
    margin: 0 auto;
}

.bg-1 {
    background: #e7e7e7;
    margin: 1rem 0 0;
    padding: 1.25rem 0;
}


/*ALIGN*/

.tx-center {
    text-align: center;
}

.tx-right {
    text-align: right;
}

.al-center {
    margin: 0 auto;
}


/*SPACES*/

.pd-0 {
    padding: 0 !important;
}

.mt-1 {
    margin-top: 10px;
}

.mr-1 {
    margin-right: 10px;
}

.clearfix {
    display: block;
    content: "";
    clear: both;
    padding: 0.25rem 0;
}


/*TABLE DEFAULT*/

table {
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

.hidenncontent {
	display: none;
}

table tbody tr td>label.collapsible {
	cursor: pointer;
	width: 100% !important;
	padding: 2px 5px;
	display: flex;
}

table tbody tr td>.hidenncontent {
	background: #fff;
	margin: 0px 0 20px;
	box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
}

.hidenncontent thead tr th:first-child {
	width: 8%;
}

.hidenncontent thead tr th:nth-child(2n) {
	max-width: 30%;
}

.hidenncontent thead tr th:nth-child(3n) {
	width: 2%;
}

.hidenncontent thead tr th:nth-child(4n), .hidenncontent thead tr th:nth-child(5n)
	{
	width: 15%;
}

.hidenncontent thead tr th:nth-child(6n) {
	min-width: 30%;
	width: auto;
}

/*CONTAINER*/
.container-login {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

.img-box {
    width: 50%;
    height: auto;
    background-color: #121521;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-box-1 {
    width: 50%;
    height: auto;
    background-color: #121521;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-box img {
    width: 100%;
    height: auto;
}

.content-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

.content-box-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: 100%;
}

.content-box .form-box {
    width: 50%;
}

.content-box .form-box .ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box .form-box .ul li {
    list-style: none;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 7px;
    cursor: pointer;
    transition: 0.3s;
}

.content-box .form-box .ul li:hover {
    background: #e4e4e4;
}

.form-box .ul li img {
    width: 40px;
}

.content-box .form-box h2 {
    color: #32324f;
    font-weight: 600;
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.content-box .form-box .input-box {
    margin-bottom: 20px;
}

.content-box .form-box .input-box input {
    width: 100%;
    padding: 10px;
    outline: none;
    font-weight: 400;
    border: none;
    font-size: 17px;
    color: #32324f;
    background-color: #ecf2f7;
    border-radius: 5px;
}

.content-box .form-box .input-box span {
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: #32324f;
    font-weight: 400;
}

.content-box .form-box .input-box input::placeholder {
    color: #a9adb6;
}

.content-box .form-box .input-box input[type=submit] {
    background: #2f323d;
    color: #fff;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.content-box .form-box .input-box input[type=submit]:hover {
    background: #121521;
}

.content-box .form-box .remember {
    margin-bottom: 20px;
    color: #32324f;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.content-box .form-box .remember a {
    text-decoration: none;
    color: #4aa4ee;
}

.content-box .form-box .remember a:hover {
    color: #3286ca;
}

.content-box .form-box .input-box p {
    color: #32324f;
}

.content-box .form-box .input-box p a {
    color: #4aa4ee;
}

.content-box .form-box .input-box p a:hover {
    color: #3286ca;
}

.content-box .form-box h3 {
    color: #607d8b;
    text-decoration: none;
    margin: 40px 0 15px;
    font-weight: 500;
    text-align: center;
    font-size: 22px;
}


/*ALERTS*/

.alerts {
    padding: 10px;
    margin: 25px 0;
    box-sizing: border-box;
    text-align: center;
}

.hide {
    display: none;
}

.alert-error {
    color: #ab0010;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-error:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f05e";
    margin-right: 5px;
    font-size: 1.25em;
    color: #ab0010;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f071";
    margin-right: 5px;
    font-size: 1.25em;
    color: #856404;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f05a";
    margin-right: 5px;
    font-size: 1.25em;
    color: #0c5460;
}

.alert-sucess {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-sucess:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f164";
    margin-right: 5px;
    font-size: 1.25em;
    color: #155724;
}


/*HOME*/

.content-box-1 .content-p {
    margin: 1rem 0;
}

.content-box-1 .content-link {
    font-weight: bold;
    color: #121521;
    cursor: pointer;
}

@media (max-width:868px) {
    .container-login .img-box,
    .container-login .img-box-1 {
        display: none;
    }
    .container-login .content-box,
    .content-box-1 {
        width: 100%;
    }
    .container-login .content-box .form-box {
        width: 100%;
        padding: 40px;
        background: white;
        margin: 50px;
    }
    .container-login .content-box .form-box h3 {
        margin: 30px 0 10px;
    }
}

@media (max-width:450px) {
    .container-login .content-box .form-box .remember {
        flex-wrap: wrap;
    }
    .container-login .content-box .form-box .remember a {
        margin-top: 20px;
    }
}


/*COLS*/

.col-g-4,
.col-g-6,
.col-g-8,
.col-g-10,
.col-g-11,
.col-g-12 {
    margin: 0 auto;
    box-sizing: border-box;
    padding: .25em;
    float: left;
}

.col-g-4 {
    width: 33.33333%;
}

.col-g-6 {
    width: 50%;
}

.col-g-8 {
    width: 66.66666%;
}

.col-g-10 {
    width: 83.33333%;
}

.col-g-11 {
    width: 91.66666%;
}

.col-g-12 {
    width: 100%;
}

.wd-1 {
    width: 50%;
}


/*CONTENT*/

.header-title {
    width: 100%;
    height: 38px;
    background-color: #121521;
    color: #f0f0f0;
    display: flex;
    align-items: center;
}

.header-title h1 {
    font-size: 1.25em;
    padding: 5px 10px;
    width: calc(100% - 65%);
}

.header-title .header-nav {
    right: 0;
    float: right;
    display: inline;
    margin-right: 0;
    width: 65%;
}

.btn-nav {
    display: flex;
    flex-direction: column;
    margin: 0 5px;
    padding: 5px;
    float: right;
}

.btn-nav:last-child {
    margin: 0;
}

.btn-primary {
    padding: 5px;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    background: #c1c3c9;
    cursor: pointer;
    transition: .3s;
}

.btn-primary:hover {
    background: #ededed;
}

.btn-secondary {
    padding: 0.3rem 0.4rem;
    border-radius: 2px;
    background-color: rgba(225, 225, 225, 0.5);
    border: 1px solid rgba(225, 225, 225, 0.5);
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.25);
    color: #000;
    font-size: 0.9em;
    cursor: pointer;
    transition: .3s;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.btn-tertiary {
    padding: 2px 5px;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    background-color: rgba(225, 225, 225, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: .3s;
}

.btn-tertiary:hover {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}

.ico-logout:before {
    font-family: "Font Awesome 6 Free";
    content: "\f2f5";
    font-weight: 900;
}

.ico-newuser:before {
    font-family: "Font Awesome 6 Free";
    content: "\f234";
    font-weight: 900;
}

.details-custom {
    padding: 1.25rem;
}

.custom-select-detail select {
    padding: 0.3rem 0.4rem;
    border-radius: 2px;
    background-color: rgba(225, 225, 225, 0.5);
    border: none;
    cursor: pointer;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.25);
    font-size: 0.9em;
}

.custom-resume-detail span {
    font-weight: bold;
}

.btn-upload {
    text-decoration: none;
}

.btn-upload label {
    padding: 0.3rem 0.4rem;
    border-radius: 2px;
    background-color: rgba(225, 225, 225, 0.5);
    border: 1px solid rgba(225, 225, 225, 0.5);
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.25);
    color: #000;
    font-size: 0.9em;
    cursor: pointer;
}

.btn-upload label:hover {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.btn-upload label:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f574";
    padding-right: 5px;
}

.btn-send:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f08e";
    padding-right: 5px;
}

input[type="submit"]:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f08e";
    padding-right: 5px;
}


/*TABLE CUSTOM*/

.table-custom {
    display: flex;
    justify-content: center;
    align-items: center;
}

table tr th {
    text-align: center;
    font-weight: bold;
    border: 1px solid #e7e7e7;
    background: #121521;
    color: #fefefe;
    text-transform: uppercase;
    padding: 3px 8px;
}

table td {
    border: 1px solid #d9d9d9;
    text-align: left;
    padding: 2px 8px;
    font-size: 1em;
}

tr:nth-child(even) {
    background-color: #e7e7e7;
}