/*  STYLESHEET FOR: media-bar

Index:
+ VARIABLES
+ CONTAINER BAR
  - Button Facebook hover
  - Button LinkedIn hover
  - Button Whatsapp hover
  - Button Telephone hover
*/

/* ######################## VARIABLES ######################## */
:root{
    --base-color1: #cdd751; /*#e17743*/ /*#cdd751*/
    --base-color2: #929497;
    --base-color3: #1e56a2;
    --dark-text: #222222;
    --light-text: #f5f5f5;
    --light-bg: #eeeeee;
    --dark-bg: #0a1b2c;

    --font-base: 'Libre Franklin', sans-serif;
}

/* ######################## CONTAINER BAR ######################## */
.ct-socials {
    position: fixed;
    top: 35%;
    right: 0;
    list-style: none;
    padding-left: 0;
    z-index: 10;
    margin: 0;
    -webkit-transition: right 0.25s ease-in-out;
    transition: right 0.25s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    right: -44px;
}

.ct-socials li {
    padding: 0px 0;
}

.ct-socials li a {
    background: #3f4653;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    width: 44px;
    height: 54px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    float: right;
    padding-left: 5px;
}

.ct-socials li a:hover {
    width: 54px;
	text-decoration: none;
}

/* Button Facebook hover */
.ct-socials li a.social-facebook:hover {
    background: #3B5998;
}

/* Button LinkedIn hover */
.ct-socials li a.social-linkedin:hover {
    background: #0A66C2;
}

/* Button Whatsapp hover */
.ct-socials li a.social-whatsapp:hover {
    background: #25D366;
}

/* Button Telephone hover */
.ct-socials li a.social-phone:hover {
    background: #3f4653;
}

#openMediaBar {
    background: #3f4653;
    position: absolute;
    right: 44px;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 3px;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}