.themes-box {
  position: fixed;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  width: 250px;
  height: 250px;
  transform: translatex(100%);
  transition: 0.5s;
  z-index: 10000;
  border-radius: 20px;
}
.theme-logo {
  width: 50px;
}
.theme-buttons-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.theme-buttons-box > button {
  outline: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 40px; /* Adjust the width and height as needed */
  height: 40px;
  clip-path: polygon(50% 0, 85% 25%, 85% 75%, 50% 100%, 15% 75%, 15% 25%);
}

.theme-buttons-box > button:nth-child(1) {
  background-color: #fd2155;
}
.theme-buttons-box > button:nth-child(2) {
  background-color: #43eeff;
}
.theme-buttons-box > button:nth-child(3) {
  background-color: #ff69b4;
}
.theme-buttons-box > button:nth-child(4) {
  background-color: #ff9800;
}
.theme-buttons-box > button:nth-child(5) {
  background-color: #00c853;
}
.theme-buttons-box > button:nth-child(6) {
  background-color: #ba68c8;
}
.theme-icon {
  width: 30px;

  object-fit: contain;
  animation: theme-icon 5s linear infinite;
}
@keyframes theme-icon {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.icon-box {
  /* padding: 0.5rem 1rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0%;
  top: 50%;
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
  transform: translate(-90%, -50%);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;

  background-color: var(--primary-color);
  cursor: pointer;
}

.show-theme {
  transform: translateX(0%);
}
.theme-welcome {
  color: var(--white);
  font-size: 15px;
}
.theme-name {
  color: var(--white);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1.5px;
}
