/* Dinamic CSS for Language Menu*/


#ss_menu {
  top: 15px;
  left: 15px;
  position: fixed;
  color: #fff;
  width: 60px;
  height: 60px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  right: 30px;

}

#ss_menu > .menu {
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.23), 0 3px 10px rgba(0, 0, 0, 0.16);
  color: #fff;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}


/* Pictures inside the circle*/

/* Bar one*/
#ss_menu > .menu .share .bar {
  transition: all 1s ease;
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  left: 18px;
}

/* Bar two*/
#ss_menu > .menu .share .bar:before {
  transition: all 1s ease;
  content: '';
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  left: 0px;
}

/* Action bar after click to close the menu*/

#ss_menu > .menu .share.close .bar {
  top: 50%;
  margin-top: -1.5px;
  left: 50%;
  margin-left: -12px;
  background: rgb(0, 0, 0);
}

#ss_menu > .menu .share.close .bar:before {
  background: rgb(0, 0, 0);
  transform: rotate(-450deg);
}

#ss_menu > .menu.ss_active {
  background: #00796B;
  transform: scale(0.6);
}

#ss_menu > div {
  box-sizing: border-box;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  background: #ca1212;
  border-radius: 50%;
  display: table;
}

#ss_menu > .icon_flag {

  box-sizing: border-box;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: table;
  background: #ffffff45;
}

#ss_menu > .icon_flag:hover {
 background: #ffffff45;
  cursor: pointer;
}

#ss_menu > div i {
  display: table-cell;
  vertical-align: middle;
}

#ss_menu > div:hover {
  background: #06047e;
  cursor: pointer;
}
/* Position of the childs of the menu*/

#ss_menu div:nth-child(1) {
    top: 0px;
    left: -100px;
  
}

#ss_menu div:nth-child(2) {
    top: -80.0px;
    left: -40.56406px;
}

/* Icon actions*/

.img_lg {
  max-width: 100%;
  transform: rotate(180deg);
  background-color: rgba(0, 0, 0, 0.623);
  opacity:0.7;
  border-radius:50%;
}

.img_lg:hover {
  background-color: rgba(255, 255, 255, 0);
  opacity:100;
}

 #ss_menu > .menu .share .img_lag {
  transition: opacity 1s linear;
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
  width: 40px;
  height: 40px;
  border-radius:50%;
}

 #ss_menu > .menu .share.close .img_lag {
  transition: visibility 0s 2s, opacity 1s linear;
  opacity: 0;
  visibility: hidden;
  max-width: 100%;
  border-radius:50%;
  margin-right: 10px;
}

.ss_menu_hide_down {
  transition: visibility 0s 1s, opacity 1s linear;
  opacity: 0;
  visibility: hidden;
}

.ss_menu_hide_up {
  transition: opacity 1s linear;
  opacity: 1;
  visibility: visible;
}
