* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #082942 !important;
    width: 100%;
}

.header {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #05121b;
    z-index: 100;
    border-radius: 50px;
    border: 2px solid #00acf080;
}

.logo {
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}

.navbar {
    height: 100%;
}

.navbar a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90px;
    height: 30px;
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border-radius: 20px;
    z-index: 1;
    overflow: hidden;
}

.navbar a:hover {
    background: #00abf0;
    color: #05121b;
}

.navbar a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00abf0;
    z-index: -1;
    transition: 0.5s;
}

.navbar a:hover::before {
    width: 100%;
}

.collapsing {
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background: #081a29;
    border-bottom: 2px solid #00abf0;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
    transition: max-height 0.5s;
}

.show {
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background: #081a29;
    border-bottom: 2px solid #00abf0;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
    transition: max-height 0.5s;
}

.contenedor {
    margin-top: 100px;
}

.profile {
    margin-bottom: 25px;
}

.profile .jobster-user-info {
    display: inline-block;
    width: 100%;
}

.profile .jobster-user-info .profile-avatar {
    position: relative;
    height: 115px;
    width: 115px;
    border-radius: 100%;
    display: inline-block;
}

.profile .jobster-user-info .profile-avatar img {
    border-radius: 100%;
}

.profile .jobster-user-info .profile-avatar i {
    font-size: 16px;
    color: #21c87a;
    position: absolute;
    background: #ffffff;
    border-radius: 100%;
    cursor: pointer;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    bottom: 20px;
    right: -5px;
}

.about-candidate {
    padding: 25px 0px;
}

.about-candidate .candidate-info {
    margin-bottom: 20px;
}

.resume-base {
    border-radius: 20px;
}

.resume-experience {
    padding-left: 10px;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    padding-right: 50px;
    background: #f6f6f6;
    border-radius: 20px;
}

.resume-experience:before {
    position: absolute;
    left: -40%;
    right: 0;
    width: 100%;
    height: 100%;
    background: #f6f6f6;
    content: "";
    z-index: -1;
    top: 0;
}

.resume-experience .jobster-candidate-timeline .jobster-timeline-item .jobster-timeline-cricle {
    border-color: #f6f6f6;
}

.user-dashboard-info-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: bold;
    color: #626262;
}

@media (max-width: 1199px) {
    .secondary-menu ul li a {
        padding: 10px 15px;
    }
}

@media (max-width: 991px) {
    .resume-experience {
        padding-left: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 15px;
    }

    .resume-experience:before {
        content: none;
    }

    .secondary-menu ul li {
        display: inline-block;
    }
}

@media (max-width: 575px) {
    .secondary-menu ul li a {
        padding: 4px 8px;
    }
}

.progress {
    position: relative;
    overflow: inherit;
    height: 3px;
    margin: 40px 0px 15px;
    width: 100%;
    display: inline-block;
}

.progress .progress-bar {
    height: 3px;
    background: #21c87a;
}

.progress .progress-bar-title {
    position: absolute;
    left: 0;
    top: -20px;
    color: #212529;
    font-size: 14px;
    font-weight: 600;
}

.progress .progress-bar-number {
    position: absolute;
    right: 0;
    color: #646f79;
    top: -20px;
}


.jobster-candidate-timeline {
    position: relative;
}

.jobster-candidate-timeline:before {
    content: "";
    position: absolute;
    left: 20px;
    width: 2px;
    top: 5px;
    bottom: 5px;
    height: calc(100% - 5px);
    background-color: #eeeeee;
}

.jobster-candidate-timeline .jobster-timeline-item {
    display: table;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.jobster-candidate-timeline .jobster-timeline-item .jobster-timeline-cricle {
    border-radius: 50%;
    border: 12px solid white;
    z-index: 1;
    top: 5px;
    left: 9px;
    position: absolute;
}

.jobster-candidate-timeline .jobster-timeline-item .jobster-timeline-cricle:before {
    content: "";
    position: absolute;
    left: 12px;
    width: 20px;
    top: -1px;
    bottom: 5px;
    height: 2px;
    background-color: #eeeeee;
}

.jobster-candidate-timeline .jobster-timeline-item .jobster-timeline-cricle>i {
    font-size: 15px;
    top: -8px;
    left: -7px;
    position: absolute;
    color: #21c87a;
}

.jobster-candidate-timeline .jobster-timeline-item .jobster-timeline-info {
    display: table-cell;
    vertical-align: top;
    padding: 5px 0 0 70px;
}

.jobster-candidate-timeline .jobster-timeline-item .jobster-timeline-info h6 {
    color: #21c87a;
    margin: 5px 0 0px;
}

.jobster-candidate-timeline .jobster-timeline-item .jobster-timeline-info span {
    color: #212529;
    font-size: 13px;
    font-weight: 500;
}

.jobster-candidate-timeline span.jobster-timeline-time {
    color: #646f79 !important;
}

.jobster-candidate-timeline .jobster-timeline-icon {
    border: 2px solid #eeeeee;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    line-height: 42px;
    text-align: center;
    background: #ffffff;
    position: relative;
    margin-bottom: 20px;
}

.jobster-candidate-timeline .jobster-timeline-icon i {
    font-size: 16px;
    color: #212529;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 16px;
}

img {
    width: 150px;
    border: 2px solid;
}

.footer {
    background: #05121b;
    width: 100%;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #00acf080;
}

.footer h5 {
    font-size: 20px;
    color: #ededed;
}

.iconos {
    width: 150px;
}

.iconos i {
    font-size: 25px;
}
.iconos :hover {
    transform: scale(1.2);
    transition: 0.5s;
}