
/*************************************************************************/
/*

*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 
 
*/
/*
body 
{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #1e1e28;
} 
*/
/***********************************************************************/
.smwmenu {
  position: absolute;
  width: 60px; 
  height: 60px; 
  border-radius: 50%;
  overflow: hidden; 
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  right: 35px;
  bottom: 80px;
  z-index: 99999;  }

.smwmenu.active {
  position: absolute;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  right: 25px;
  bottom: 60px;
  z-index: 99999;  }

.smwmenu li {
  position: absolute;
  left: 5px;
  list-style: none;
  transform-origin: 130px;
  transition: 0.5s;
  transition-delay: calc(0.05s * var(--i));
  transform: rotate(calc(360deg / 8 * var(--i)));
  scale: 0;
  border-radius: 50%; }

.smwmenu.active li {
  scale: 1;}

.smwmenu li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #1e1e28;
  font-size: 2.0em;
  border-radius: 50%;
  transform: rotate(calc(360deg / -8 * var(--i)));
  color: var(--clr);
  box-shadow: 0 3px 4px rgba(0,0,0,0.15);
  transition: 0.5s;}

.smwmenu li:hover a {
  font-size: 2.5em;
  box-shadow: 0 0 0 2px var(--clr),0 0 0 6px #fff; }

.smwtoggle {
  position: relative;
  width: 50px;
  height: 50px;
  background: #FFC107;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2em;
  box-shadow: 0 3px 4px rgba(0,0,0,0.15);
  transition:  1.25s; }

.smwtoggle :hover  {
    -webkit-box-shadow: 0px 0px 25px -6px #ffc107;
    -moz-box-shadow: 0px 0px 25px -6px #ffc107;
    box-shadow: 0px 0px 25px -6px #ffc107;
    animation: effect 5s infinite ease-in;  }

.smwmenu.active .smwtoggle {
  transform: rotate(360deg);
  box-shadow: 0 6px 8px rgba(0,0,0,0.15), 0 0 0 2px #333,0 0 0 8px #fff; }


@keyframes effect {
    20%, 100% {width: 40px;height: 40px;font-size: 25px;}
    0%, 10% {width: 45px;height: 45px;font-size: 30px;}
    5%{width: 40px;height: 40px;font-size: 25px;}  }


/***********************************************************************/
@media screen and (max-width: 1041px) {
  .smwmenu {
    right: 15px;
    bottom: 15px; }
  .smwmenu.active {
    right: 25px;
    bottom: 25px; } 
  
}

/***********************************************************************/