﻿#myMenuXXX {
    position: absolute;
    position: fixed;
    box-sizing: content-box;
    top: 30px;
    left: 30px;
    z-index: 500;
    z-index: 999999999;
    height: 50px;
    height: auto;
    width: 100px;
    width: auto;
    border-radius: 25px;
    overflow: hidden;
    background: #444;
    background-color: darkgray;
    background-color: #FF9800;
    background-color: transparent;
    padding-right: 5px;
    padding-right: 0px;
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);*/
    transition: all 0.5s ease;
    border: 3px solid white;
    border: 0px solid #FF9800;
}
#myMenu{
  display:inline-block;
  width:20%;
  /* margin:5% auto; */
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  /* padding:1em; */
  /* line-height:1.5em; */
  /* background:hsla(67, 95%, 95%, 1); */
  border:solid 5px #000;

    position: fixed;
    box-sizing: content-box!important;;
    top: 30px;
    left: 30px;
    z-index: 500;
    z-index: 999999999;
    height: 50px;
    height: auto;
    width: 100px;
    width: auto;  
    overflow: hidden;
    padding-right: 0px;
    transition: all 0.5s ease;background-color: rgba(80, 79, 79, 0.5); 
}

    #myMenu > * {
        float: left;
    }
    #myMenuPhoto { box-sizing: content-box!important; }
#myMenu > *,
#myMenu *:before,
#myMenu *:after {
  box-sizing: content-box!important; 
}    
#myMenu-toggle {
    display: block;
    cursor: pointer;
    opacity: 0;
    z-index: 999;
    margin: 0;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

    #myMenu-toggle:checked ~ ul {
        width: 200px;
        height: auto;
        background-position: 0px -50px;background-color: #FF9800; background-color: rgba(80, 79, 79, 0.8); borderXXX:solid 5px hsla(0, 95%, 35%, 1);         
    }

#myMenu > ul {
    list-style-type: none;
    margin: 0;
    padding: 0 10px 0 50px;
    height: 50px;
    width: 52px;
    transition: 0.5s all ease;
    /*background-image: url("https://i.imgur.com/3d0vJzn.png");*/
    background-image: url("../images/my_menu_icons_purple.png");
    background-repeat: no-repeat;
    background-position: 0px 0px;
}

    #myMenu > ul > li {
        display: block;
        line-height: 50px;
        width: 50px;
        line-height: 30px;
        width: 160px;
        text-align: left;
        margin: 0;
    }

        #myMenu > ul > li a {
            font-size: 1.25em;
            font-size: 1.05em;
            font-weight: bold;
            font-weight: normal;
            color: white;
            text-decoration: none;
            border-bottom: none;
            padding-bottom: 5px;
        }

    #myMenu > ul > li:last-child {
        padding-bottom:10px;
    }

.slideInDown {
    opacity: 1;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


.slideInUp {
    opacity: 1;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


.slideInRight {
    opacity: 1;
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}



.come-in {
    opacity: 1;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes come-in {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes come-in {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
#myMenuPhoto:hover { animation: pulse-animation 2s infinite; }

@keyframes pulsate {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0.0;
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}
/*@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}*/


myCircle {
  width: 300px;
  height: 300px;
  font-size:30px;
  color: #fff;
  background: none;
  border: none;
  border-radius: 50%; 
  position: relative;
  z-index: 0;
  transition: .3s;
  cursorXXX: pointer; display: grid; margin: 0 auto;
}
myCircle:before {
  content: "";
  position: absolute;
  inset: -8px;
  padding: 10px;
  border-radius: 50%; 
  background: conic-gradient(
        #ff53bb ,
        #0000 30deg 120deg,
        #00f8d3 150deg 180deg,
        #0000 210deg 300deg,
        #ff53bb 330deg
    );
  background: conic-gradient(
        #fff ,
        #0000 30deg 120deg,
        #e7d360 150deg 180deg,
        #0000 210deg 300deg,
        #fff 330deg
    );    
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: intersect
}
myCircle:after {
  content: "";
  position: absolute;
  inset: -100px;
  background:
    radial-gradient(100px at left  200px top 75px,#ff53bb 100%,#0000),
    radial-gradient(100px at right 200px bottom 75px,#00f8d3 100%,#0000);
  background:
    radial-gradient(100px at left  200px top 75px,#fff 100%,#0000),
    radial-gradient(100px at right 200px bottom 75px,#e7d360 100%,#0000);
  filter: blur(120px);
  opacity: .5;
}

myCircle:before,
myCircle:after {
  transition:.5s, 99999s 99999s transform;
    animation: myRotate 10s infinite linear;

}
myCircle:hover {
  box-shadow: 0 0 0 1px #666;
}

myCircleXXX:hover:before,
myCircleXXX:hover:after {
  transform: rotate(36000deg);
  transition: .5s,600s linear transform;
}
myCircle:before {
  background-color: #222;
    border: 2px solid #333;
}


myCircle>img{
    border-radius: 50%;
    left: -2px; left:4px;
    position: relative;
    top: 2px; top:3px;
    width: 294px;
    opacity:0.9;
}

@keyframes myRotate {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}