
.main {
    animation-name: moveInRight;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    
}

.map {
    animation-name: moveInRight;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

.map path {
    stroke: aliceblue;
    stroke-width: 4px;
    transition: fill 0.3s;
}

.map a :hover {
    fill: rgb(49, 181, 84, 0.85);
}




.colors {
    display: flex;
    flex-direction: column;
    margin-right: 5px;
}

.foo {
    float: left;
    width: 20px;
    height: 20px;
    margin: 5px;
    border: 1px solid rgba(0, 0, 0, .2);
}

.rstyle {
    float: left;
    width: 100px;
    height: 20px;
    margin: 5px;
    /* border: 1px solid rgba(0, 0, 0, .2); */
}

.c_one {
    background: #FFCCCC;
}

.c_two {
    background: #FF9999;
}

.c_three {
    background: #FF6666;
}

.c_four {
    background: #FF3333;
}

.c_five {
    background: #FF0000;
}

.c_six {
    background: #CC0000;
}

.c_seven {
    background: #990000;
}

.c_eight {
    background: #660000;
}

.slidecontainer {
    width: 100%;
    position: relative;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
  }
  
  #demoo{
    position:absolute;
    top:30px;
    left: 50%;
    font-size: 1.3rem;
     
  }
  #play-button {
    background: #f08080;
    padding-right: 26px;
    border-radius: 3px;
    border: none;
    color: white;
    margin: 10px;
    padding: 0 12px;
    width: 60px;
    cursor: pointer;
    height: 30px;
  }

  #play-button:hover {
    background-color: #696969;
  } 



@keyframes moveInRight {
    0% {
        transform: translate(-50px);
        opacity: 0;
    }
    80% {
        transform: translate(20px);
    }
    100% {
        opacity: 1;
        transform: translate(0px);
    }
}