#icon-placeholder svg {
  width: 80px;
  height: 80px;
}

.custom-btn-width {
  width: 100%;
}

#colorPicker {
  height: 38px;
}

#copied {
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  z-index: 10;
  background-color: #2269c3;
  color: white;
  border: 1px solid white;
  padding: 20px;
  border-radius: 2px;
  height: 24px;
  align-items: center;
}

.elementToFadeInAndOut {
  animation: fadeInOut 2s linear forwards;
}

@keyframes fadeInOut {
  0% { opacity:0; }
  10% { opacity:1; } 
  90% { opacity:1; } 
  100% { opacity:0; } 
 }

