/**
.---------------------------------------------------------------------.
|  @version: v0.2 (28 Mar 2024)                                       |
|  @author: Matteo Montanari <matteo@italinux.com>                    |
|  @link:   https://italinux.com                                      |
'---------------------------------------------------------------------'
.---------------------------------------------------------------------------.
| @license: FREE BSD License                                                |
|           https://www.freebsd.org/copyright/freebsd-license               |
|                                                                           |
| This program is distributed in the hope that it will be useful - WITHOUT  |
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or     |
| FITNESS FOR A PARTICULAR PURPOSE.                                         |
'---------------------------------------------------------------------------'
 */
/* * * * * * * * * * * * * * * * * * * * *
* Edit VIEW Mode
*/
div.simple_floating.editMode {
  position: static;
}
div.simple_floating.editMode ul {
  margin-left: 2em;
  margin-right: 2em;
  display: inline-block;
}
div.simple_floating.editMode ul > li {
  -webkit-animation: 0s ease 0s normal none 1 running none;
     -moz-animation: 0s ease 0s normal none 1 running none;
       -o-animation: 0s ease 0s normal none 1 running none;
          animation: 0s ease 0s normal none 1 running none;
  -webkit-transition-property: none;
     -moz-transition-property: none;
       -o-transition-property: none;
          transition-property: none;

  opacity: 1 !important;
  float: left;
}

/* * * * * * * * * * * * * * * * * * * * *
* Regular VIEW Mode
*/
div.simple_floating {
  position: fixed;
  right: 10px;
  bottom: 20%;
  z-index: 10;
}
div.simple_floating ul {
  list-style-type: none !important;
  display: block;
}
div.simple_floating ul > li {
  width: 70px;
  height: 70px;
  padding: 5px;
  margin: 15px 5px;
  background-color: #dadedf;
  border-radius: 50%;
  text-align: center;
  list-style-type: none !important;
  float: none;
}
div.simple_floating ul > li > a {
  padding: 10px;
  display: block;
}
div.simple_floating ul > li > a > i.fab,
div.simple_floating ul > li > a > i.fas,
div.simple_floating ul > li > a > i.fa {
  font-size: 1.8em;
  line-height: 1.4em;
  color: #fff;
  text-align: center;
}


/* * * * * * * * * * * * * * * * * * * * *
* CONFIGURE: Social links all colours 
*/
div.simple_floating ul > li.facebook {
  background-color: #3f51B5;
}
div.simple_floating ul > li.instagram {
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
  background:    -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background:      -o-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background:         linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
  background-color: #f09433;
 
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
div.simple_floating ul > li.youtube {
  background-color: #fc0000;
}
div.simple_floating ul > li.pinterest {
  background-color: #e60023;
}
div.simple_floating ul > li.linkedin {
  background-color: #0077b5;
}
div.simple_floating ul > li.whatsapp {
  background-color: #00e676;
}
div.simple_floating ul > li.twitter {
  background-color: #03a9f4;
}

/* add more social links here */
div.simple_floating ul > li.phone {
  background-color: #000;
}
div.simple_floating ul > li.email {
  background-color: #941100;
}
div.simple_floating ul > li.share {
  background-color: #2ab1ce;
}
div.simple_floating ul > li.share > a {
  cursor: pointer;
}


/* * * * * * * * * * * * * * * * * * * * *
* CONFIGURE: Animation
*/
div.simple_floating ul > li:not(:last-child) {
  opacity: 0;
}
div.simple_floating ul > li:not(:last-child) > a {
  -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
       -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
}
div.simple_floating ul:hover > li:not(:last-child) {
  opacity: 1;
}
div.simple_floating ul:hover > li:not(:last-child):hover {
  opacity: 0.9;
}

/* default animation delay */
div.simple_floating ul > li:not(:last-child) {
  -webkit-transition-delay: 120ms;
     -moz-transition-delay: 120ms;
       -o-transition-delay: 120ms;
          transition-delay: 120ms;
}
/* custom animation delay */
div.simple_floating ul > li:not(:last-child):nth-last-child(1) {
  -webkit-transition-delay: 10ms;
     -moz-transition-delay: 10ms;
       -o-transition-delay: 10ms;
          transition-delay: 10ms;
}
div.simple_floating ul > li:not(:last-child):nth-last-child(2) {
  -webkit-transition-delay: 20ms;
     -moz-transition-delay: 20ms;
       -o-transition-delay: 20ms;
          transition-delay: 20ms;
}
div.simple_floating ul > li:not(:last-child):nth-last-child(3) {
  -webkit-transition-delay: 40ms;
     -moz-transition-delay: 40ms;
       -o-transition-delay: 40ms;
          transition-delay: 40ms;
}
div.simple_floating ul > li:not(:last-child):nth-last-child(4) {
  -webkit-transition-delay: 60ms;
     -moz-transition-delay: 60ms;
       -o-transition-delay: 60ms;
          transition-delay: 60ms;
}
div.simple_floating ul > li:not(:last-child):nth-last-child(5) {
  -webkit-transition-delay: 80ms;
     -moz-transition-delay: 80ms;
       -o-transition-delay: 80ms;
          transition-delay: 80ms;
}
div.simple_floating ul > li:not(:last-child):nth-last-child(6) {
  -webkit-transition-delay: 100ms;
     -moz-transition-delay: 100ms;
       -o-transition-delay: 100ms;
          transition-delay: 100ms;
}

/* add more animation delays here */


