.sky-alt-bar-desktop {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.sky-alt-bar-desktop a {
    padding: 10px;
    margin-bottom: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: white;
    text-align: center;
	font-size: 20px;
}

.sky-alt-bar-mobile {
    display: none;
}

.sky-alt-bar-phone { background-color: #1F425D; }
.sky-alt-bar-mail { background-color: #1F425D; }
.sky-alt-bar-whatsapp { background-color: #1F425D; }
.sky-alt-bar-instagram { background-color: #1F425D; }

@media (max-width: 768px) {
    .sky-alt-bar-desktop { display: none; }
    .sky-alt-bar-mobile {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        z-index: 9999;
        background-color: #f1f1f1;
        border-top: 1px solid #9a9a9a24;
    }
    .sky-alt-bar-mobile a {
        flex-grow: 1;
        text-align: center;
        padding: 10px 0;
        color: white;
        border-right: 1px solid #9a9a9a24;
		    font-size: 20px;
    }
    .sky-alt-bar-mobile a:last-child {
        border-right: none;
    }
}