/*********************** Opening ************************/
.sticky_social_icons {
    position: absolute;
    top: 125px;
    left: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    height: calc(100vh - 125px);
    margin-bottom: calc(-100vh + 125px);
    transition: 0.5s opacity ease-in-out;
}

.vl {
    border-left: 2px solid var(--light-blue);
    flex-grow: 1;
    margin-bottom: 25px;
}

.sticky_social_icons a {
    color: var(--light-blue);
    margin-bottom: 10px;
    font-size: 22px;
}

.sticky_social_icons a:last-of-type {
    margin-bottom: 25px;
}

@media (max-width: 1200px) {
    .sticky_social_icons {
        display: none;
    }
}