.btn-style {  height: 35px;  width: 70px !important;  margin: 4px;  font-size: 24px;  color: #ff6000;  text-align: center;  line-height: 1.4;  border-radius: 25px;   border: none;  outline: none;  background-color: white;  box-shadow:0px 1px 16px #B4B4B4; padding: 5px !important;}

.btn-style:hover {cursor: pointer; box-shadow:0px 1px 16px #B4B4B4;}
.btn-style.on {color: #0032a6;
  -webkit-transform: translate(-10px, 0px);
  -moz-transform: translate(-10px, 0px);
  -ms-transform: translate(-10px, 0px);
  -o-transform: translate(-10px, 0px);
  transform: translate(-10px, 0px);

}
.hide-view{ display: none;}
.unhide-view{ display: block;}
.panel-list{margin: 10px 0 10px 0; padding: 5px 0 5px 0;font-size: 12px;}

.icon-bar {
  position: fixed;
  top: 28%;
  right:-40px;
  z-index: 1000;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}
.icon-bar a {
  text-align:left;
  color: #a1a1a1;
  padding: 3.5px 9px !important; 
  margin: 20px 0;

}
.icon-bar a:hover {
  color: #443b36;
  -webkit-transform: translate(-10px, 0px);
  -moz-transform: translate(-10px, 0px);
  -ms-transform: translate(-10px, 0px);
  -o-transform: translate(-10px, 0px);
  transform: translate(-10px, 0px);
}






.icon-button {
    background-color: white;
    border-radius: 1.6rem;
    font-size: 1.8rem;
    height: 1.6rem;
    line-height: 1.6rem;
    width: 1.6rem;
    margin: 0 10px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-align: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

/* Circle */
.icon-button span {
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
    width: 0;
}
.icon-button:hover span {
    width: 1.6em;
    height: 1.6em;
    border-radius: 1.6rem;
    margin: -0.8em;
}

/* Icons */
.icon-button i {
    background: none;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
   
    z-index: 10;
    height: 1.6rem;
    line-height: 1.6rem;
    width: 1.6rem;
}

 

.twitter span {
    background-color: #4099ff;
}
.facebook span {
    background-color: #3B5998;
}
.google-plus span {
    background-color: #db5a3c;
}
.tumblr span {
    background-color: #34526f;
}
.instagram span {
    background-color: #517fa4;
}
.youtube span {
    background-color: #bb0000;
}
.pinterest span {
    background-color: #cb2027;
}
.whatsapp span {
    background-color: #23a200;
}


.icon-button .fa-twitter {
    color: #4099ff !important;
}
.icon-button .fa-facebook {
    color: #3B5998 !important;
}
.icon-button .fa-tumblr {
    color: #34526f !important;
}
.icon-button .fa-google-plus {
    color: #db5a3c !important;
}
.icon-button .fa-instagram {
    color: #517fa4 !important;
}
.icon-button .fa-youtube {
    color: #bb0000 !important;
}
.icon-button .fa-pinterest {
    color: #cb2027 !important;
}
.icon-button .fa-whatsapp {
    color: #23a200 !important;
}

.icon-button:hover > .fa-twitter,
.icon-button:hover > .fa-facebook,
.icon-button:hover > .fa-google-plus,
.icon-button:hover > .fa-tumblr,
.icon-button:hover > .fa-instagram,
.icon-button:hover > .fa-youtube,
.icon-button:hover > .fa-pinterest,
.icon-button:hover > .fa-whatsapp
{
    color: white !important;
}





/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}
