
/* Create jobs view */

.div_view_job {
    margin: 1rem auto;
    width: 90%;
    max-width: 800px;
    padding: 15px;
    background-color: #008cd206;
    border-radius: 25px;
}

/* Show job psge */

.div_view_show {
    margin: 1rem auto;
    width: 95%;
    max-width: 1200px;
    padding: 15px;
    background-color: #008cd206;
    border-radius: 25px;
}


.letter {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 26px auto 0;
    max-width: 800px;
    min-height: 300px;
    padding: 24px;
    position: relative;
    width: 100%;
}

.letter:before,
.letter:after {
    content: "";
    height: 98%;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.letter:before {
    background: #fafafa;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    left: -5px;
    top: 4px;
    transform: rotate(-2.5deg);
}

.letter:after {
    background: #f6f6f6;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    right: -3px;
    top: 1px;
    transform: rotate(1.4deg);
}

.job_title {
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}

p{
    font-size: small;
    font-family: 'Open Sans', sans-serif;
}

p + p {
    margin-bottom: 10px;
}

h1 + p {
    margin-bottom: 10px;
}


.div-view-profile {
    margin: 1rem auto;
    width: 100%;
    max-width: 900px;
    padding: 15px;
    background-color: #028bcf29;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;

}


.acc_profile {
    background-color: transparent !important;
    border: none;
}
/* Img col */

.img_profile {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.if_docv {
    width: 100%;
    object-fit: contain;
}

.col_img {
    display: flex;
    justify-content: center;
}



