#projects_carrousel {
    position: fixed; /*With another position type; screen expands generating errors on mobile devices.*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
}
#projects_carrousel__elements {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
}
.carrousel_item {
    background: none;
    display: flex;
    justify-content: center;
}


#projects_carrousel__techs_coontainer {
    position: absolute;
    width: 25vw;
    right: 10vw;
    top: 60px;
    transition: top 1s;
}
#projects_carrousel__languages {
    position: absolute;
    width: fit-content;
    color: white;
    font-size: 26px;
    letter-spacing: 3px;
    background-color: rgb(117, 117, 117);
    border-radius: 15px;
    padding: 10px;
    opacity: 0.4;
}

.projects_carrousel_language_first,
.projects_carrousel_language {
    display: flex;
    background-color: rgb(82, 82, 82);
    border-radius: 15px;
    padding: 5px 100px 5px 5px;
}
.projects_carrousel_language {
    margin: 5px 0 0 0;
}
.projects_carrousel_language_txt {
    background: none;
}
.projects_carrousel_language_img {
    background: none;
    width: 30px;
    height: 30px;
    margin: 0 22px 0 10px;
}

#project_carrousel_selector__left,
#project_carrousel_selector__right {
    position: fixed;
    top: 0;
    width: 10vw;
    height: 100vh;
    color: white;
    font-family: Helvetica, sans-serif;
    font-size: 80px;
    background: none;
    z-index: 2;
    opacity: 0.65;
    transition: opacity 500ms;
}
#project_carrousel_selector__left {
    left: 0;
    background-image: linear-gradient(to left, #0000, #5559);
}
#project_carrousel_selector__right {
    right: 0;
    background-image: linear-gradient(to right, #0000, #5559);
}

#project_carrousel_selector__left:hover,
#project_carrousel_selector__right:hover {
    cursor: pointer;
    opacity: 1;
}

#project_carrousel_selector__left:hover {
    left: 0;
}
#project_carrousel_selector__right:hover {
    right: 0;
}

#project_carrousel_selector__global {
    width: 540px;
    position: absolute;
    top: 80%;
    display: flex;
    justify-content: space-around;
    z-index: 1;
    background: none;
}
.project_carrousel_selector__global_proj_selected,
.project_carrousel_selector__global_proj_unselected {
    outline: 4px solid #0000;
    box-shadow: 0 70px 28px -10px #0000;
    transition-property: outline, box-shadow;
    transition-duration: 1s;
    height: 60px;
    width: 60px;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center; /*Important for Tooltips*/
    background-color: rgb(203, 203, 203);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}
.project_carrousel_selector__global_proj_selected {
    outline: 4px solid white;
    box-shadow: 0 70px 20px -10px white;
}
.project_carrousel_selector__global_proj_media {
    background: none;
    height: fit-content;
    border-radius: 10px;
}

.project_carrousel_selector__global_proj_tooltip {
    width: fit-content;
    position: absolute;
    top: 80px;
    white-space: nowrap;
    color: white;
    font-size: 20px;
    background-color: rgb(185, 185, 185);
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 3;
}