root{
    --yellow:#EAAB00;
    --green:#007A43;
}
.input-default{
    padding:0.5rem 1rem;
    border: solid 1px #ddd;
    color: #555;
}
select.input-default{
    font-size: 16px;
    color: #555;
}
.edit-lang{
    color: #fff;
    float: right;
    font-size: 10px;
    background: var(--yellow);
    margin: 0; 
    padding:0.2rem .3rem;
}
.edit-lang:hover{
    color: #fff;
}
/* width */
::-webkit-scrollbar {
    width: 2px;
    height: 1px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    /*border-radius: 10px;*/
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--green); 
    border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--yellow); 
}

h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    /*color: #273a50;*/
    font-size: 38px;
    line-height: 44px;
    font-weight: 700;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    /*color: #273a50;*/
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
}

h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    /*color: #273a50;*/
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}
hr{
    width: 100%; height: 1px;
    background-color: var(--green); 
    margin-top: 2rem;
}

a:hover {
    color: #5a96ef;
}

.text-green{
    color: var(--green);!important;
}

.nav-link:hover {
    background-color: #f5f7fb;
    color: #72869c;
}
.career{
    border-bottom: solid 1px #ddd; 
}
.career div{
    border-right: solid 1px #ddd; 
}
.career div ul{
    list-style: square;
    margin-left: 1.8rem;
}
.career div:last-child{
    border-right: none; 
}

.date-range span{
    background-color: #ccc;
    font-family: lato, sans-serif;
    font-size: 14px;
    padding: 0.1rem .6rem;
}
.date-range span.status{
    background-color: var(--green);
    margin-right: 0.3rem;
}

.button-default{
    border: 2px solid #273a50;
    width: 100%;
}
.button-default-2{
    border: 2px solid var(--green);
    color: #fff;
    background: var(--green);
    width: 100%;
}
.button-default-2:hover{
    opacity: .8;
    color: #fff;
}
.button-default:hover{
    background: #273a50; 
    color: #fff;
}

.profile .personal-info{
    position: relative;
    border-right: dotted 3px #111;
}

.edit-icon{
    position: absolute;
    top: 0;
    left: 1rem;
    margin-bottom: 2rem;
    padding: 0rem 0.3rem;
    background-color: var(--yellow);
    color: #fff;
    cursor: pointer;
    transition: all 1s;
}
.edit-icon i{
    font-size: 10px;
    text-align: center;
}
.edit-icon:hover{
    opacity: 0.8;
}
.profile .profile-picture{
    position: relative;
    width: 128px;
    height: 128px;
    border-radius: 128px;
    background-color: var(--yellow);
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: changeColor 3s ease-out infinite;
}

.change-picture{
    position: absolute;
    z-index: 50;
    bottom: 0;
    right: 1rem;
    cursor: pointer;
    background: var(--yellow);
    margin: 0;
    padding: 0.1rem 0.4rem;
    border-radius: 50%;
    color: #fff;
    animation: changeColor 3s ease-out infinite;
}

.profile .personal-info .profile-picture img{
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover; border-radius:50%;
}
.profile .other-info {
    padding: 0 1rem;
}

.hidden-lg{
    display: none;
}

.other-info .header{
    border-bottom: solid 2px var(--yellow);
    margin-bottom: 25px;
}
.other-info .header h4{
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 19px;
}
.other-info .header h4 span{
    cursor: pointer;
    font-size: 0.5rem;
    font-weight: 600;
    float: right;
    padding: .0rem 0.5rem;
    color: #fff;
    background-color: var(--yellow);
}

.button-update__info{   
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    float: right;
    padding: .2rem 0.5rem;
    color: #fff;
    background-color: var(--green);
}

.button-update__info:hover{
    animation: infiniteZoom 1.5s ease-out infinite;
}

.other-info .content{
    margin-top: .6rem;
}
.other-info .content ul{
    list-style: none;
}
.other-info .content h5.title{
    margin: 0;
    /*margin-top: 0.6rem; */
}
.other-info .content h5.title{
    border-bottom: dashed 1px var(--yellow);
}
.other-info .content h5.title span{
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    float: right;
    padding: .1rem 0.5rem;
    color: #fff;
    background-color: var(--yellow);
}
.other-info .content h6.sub-title{
    margin: 0.6rem 0; 
    color: var(--green);
}

@keyframes changeColor{
    from{
        background-color: var(--yellow);
    }
    to{
        background-color: var(--green);
    }
}
@keyframes infiniteZoom{
    from{
        transform: scale(1.0);
    }
    to{
        transform: scale(1.1);
    }
}

@media(max-width: 766px){
    .profile .personal-info{
        border: none;
    }
    .profile .other-info {
        padding: 0 ;
    }
    .hidden-sm{
        display: none;
    }
    .hidden-lg{
        display: block;
    }
}
@media(min-width: 300px) and (max-width: 766px) {
    .profile .profile-picture{
        width: 256px;
        height: 256px;
        border-radius: 256px;

    } 
    .change-picture{
        position: absolute;
        z-index: 50;
        bottom: 1rem;
        right: 2rem;
        padding: 0.3rem 0.5rem;
    }
}