.contactflags{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    top: 300px;
    right: 0;
    z-index: 801;
}
.contactflags .flag{
    width: 60px;
    height: 60px;
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: 60px 1fr;
    background-color:var(--primaryColor);
    margin: 5px 0;
    transition:all .4s;
    /*border:1px solid white;*/
    /*border-right:0px;*/
}
.contactflags a.flag,
.contactflags div.flag{
    font-size:var(--main_text_font_size);
    text-decoration: none;
    color:white;
}
.contactflags .flag .icon{
    font-size:var(--social_icons_font_size);
}
.contactflags .flag .label{
    padding-right:15px;
    padding-left:5px;
}
.contactflags .flag:hover{
    width: auto;
}
@media screen and (max-width:1100px){
    .contactflags{
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: white;
        top: auto;
        left: 0;
        bottom: 0;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    }
    .contactflags .flag{
        margin: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-right:1px solid white;
    }
    .contactflags .flag:last-of-type{
        border-right:0px;
    }
    .contactflags .flag:hover{
        width: 60px;
    }
    .contactflags .flag:hover .label,
    .contactflags .flag .label{
        display: none;
    }
}
