 /*CSS for dynamic classes */

.floating-social-icons-top {
  display: inline-block;
  position: fixed;
  z-index: 9999;
  top: 0px;
  right: 100px;
}

.floating-social-icons-right {
  display: inline-block;
  position: fixed;
  z-index: 9999;
  right: 0px;
  top: 100px;
}

.floating-social-icons-bottom {
  display: inline-block;
  position: fixed;
  z-index: 9999;
  bottom: 0px;
  right: 100px;
}

.floating-social-icons-left {
  display: inline-block;
  position: fixed;
  z-index: 9999;
  left: 0px;
  top: 100px;
}

/* CSS for anchor tag */
#floating-icons a {
  position: relative;
  width: 45px;
  height: 30px;
  padding: 8px 0;
  display: inline-block;
  text-align: center;
  color: #fff;
  line-height: inherit;
  font-size: 24px;
  border-bottom: none;
}

#floating-icons a:active,
#floating-icons a:hover {
  z-index: 10;
  -webkit-box-shadow: 1px 1px 1px 1px #333;
  -moz-box-shadow: 1px 1px 1px 1px #333;
  box-shadow: 1px 1px 1px 1px #333; 
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); 
}

/* Css for dynamic classes */
#floating-icons .floating-horizontal {
  float: left;
}

#floating-icons .floating-vertical {
  display: block;
}

/* Setting Background Color for font awesome icons */
#floating-icons .facebook {
  background-color: #3b5998;
}

#floating-icons .google-plus {
  background-color: #dd4b39;
}

#floating-icons .linkedin {
  background-color: #007bb6;
}

#floating-icons .twitter {
  background-color: #00aced;
}

#floating-icons .pinterest {
  background-color: #cb2027;
}

#floating-icons .instagram {
  background: linear-gradient(#683dc0, #f46833, #fcb050);
}

#floating-icons .youtube {
 background-color: #dd4b39;
}

/* Responsive css */

/*mobile potrait*/
@media screen and (max-width:414px) ,
screen and (min-width:568px) and (max-width: 767px),
screen and (min-width:768px) and (max-width:1024px) {
  
  #floating-icons > div {
    width: 100%;
    display: inline-block;
    position: fixed;
    z-index: 9999;
    bottom: 0px;
    top: initial;
    right: initial;
    left: 0px;
  }
  
  #floating-icons .two {
    width: 50%;
    float: left;
  }

  #floating-icons .three {
    width: 33.33%;
    float: left;
  }

  #floating-icons .four {
    width: 25%;
    float: left;
  }

  #floating-icons .five {
    width: 20%;
    float: left;
  }

  #floating-icons .six {
    width: 16.66%;
    float: left;
  }

  #floating-icons a {
    width: 100%;
    float: left;
  }

  footer {
    margin-bottom: 25px;
  }
}

