
#slideOut {
    position: fixed;
    width: 300px;
    height: 150px;
    top: 130px;
    right: -300px;
    /* Animation  */
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    z-index: 99999;
  }
  
#slideOut img{
	width: 40px;
}
  /* Display slideOut */
  
  .showSlideOut {
    right: 0px !important;
  }
  



.slideOutTab {
    /* margin-top: 50px; */
    position: absolute;
    left: -50px;
    height: 75px;
    width: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    background: #000000;
    border-radius: 15px 0px 0px 15px;
	
	
  }
  
  .slideOutTab div {
    text-align: center;
    position: relative;
    right: 65px;
    top: 15px;
   /* background: #373737;*/
    width: 180px;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-writing-mode: lr-tb;
        writing-mode: lr-tb;
  }

  .slideOutTab div p
  {
    color: #fafafa !important;
  }


  .modal-content2
  {
    padding: 20px !important;
	  padding: 10px 20px !important;
  }
  
  
  .slide-out-div {
       padding: 20px;
        width: 250px;
        background: #f2f2f2;
        border: #29216d 2px solid;
    }

.color-heading ul {
  list-style: none;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}

.color-heading ul li {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}

.color-heading ul li:hover {
  transform: scale(1.5);
}

#red {
  background-color: #cf0606;
}

#green {
  background-color: #4d8b0f;
}

#yellow {
  background-color: #fed772;
}

#orange {
  background-color: #de771b;
}

#blue {
  background-color: #20bfd0;
}
#purple {
  background-color: #3b289f;
}
.color-heading h3{

    padding: 2px 10px;
   /* background-color: #fafafa;*/
    border-radius: 8px;
	color: #ffffff;
	border-bottom: 1px dashed #cccccc;
}
/* ======Animation======= */

.spin {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
