/* ********************************************************************* */
/* ********** START : Social Media Header ****************************** */
/* ********************************************************************* */
.social-media-container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color:var(--color-bg-primary);
}
.social-media-container{
    padding:5px 0;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;    
    width: 100%;
    max-width: var(--component-max-with);
    background-color:var(--color-bg-primary);
}
.social-media-box-media{
    display:flex;
    flex-direction: row;
    margin-left:10px;
    margin-right:10px;
    width: 40%;
}
.social-media-box-location{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-left:10px;
    margin-right:10px;
    width: 50%;
}
.social-media-content{
    display:flex;
    flex-direction: row;
    align-items: center;
    margin:10px 10px;
    text-decoration: none;
}
.social-media-image{
    height: 30px;
    margin-right: 10px;
}
.social-media-text{    
    font-size: 16px;
    text-wrap: nowrap;
    color: var(--color-text-on-white);
}
/* ********************************************************************* */
/* ********** Desktop View ********************************************* */
/* ********************************************************************* */
@media only screen and (max-width: 1200px){
    .social-media-box-location{
        justify-content: space-around;
    }
    .social-media-image{
        height: 20px;
        margin-right: 5px;
    }
    .social-media-text{
        font-size: 12px
    }
}

/* ********************************************************************* */
/* ********** Tablet View ********************************************** */
/* ********************************************************************* */
@media only screen and (max-width: 768px) {
    .social-media-box-media{
        width: 20%;
    }
    .social-media-box-location{
        justify-content: space-around;
        width: 70%;
    }
    .social-media-content{
        text-align: center;
        margin: 5px 5px;
    }
    .social-media-box-location-center-line{
        width:2px;
        height:20px;
        background-color: var(--color-text-on-white);
    }
    .social-media-image{
        height: 20px;
        margin-right: 0;
    }
    .social-media-text-none{
        display: none;
    }
}

/* ********************************************************************* */
/* ********** Mobile View ********************************************** */
/* ********************************************************************* */
@media only screen and (max-width: 480px) {
  
    .social-media-box-media{
        width: 20%;
        margin-left: 5px;
        margin-right: 5px;
    }
    .social-media-box-location{
        justify-content: space-around;
        width: 70%;
        margin-left: 5px;
        margin-right: 5px;
    }
    .social-media-box-location-center-line{
        display: none;
    }
    .social-media-content{
        margin: 1px;
    }
    .social-media-image{
        height: 15px;
        margin-left:2px;
    }
    .social-media-text{
        font-size: 2.5vw;
    }
    .social-media-text-none{
        display: none;
    }
}

/* ********************************************************************* */
/* ********** END : Social Media Header ******************************** */
/* ********************************************************************* */