.block-switchtheme {
  position: fixed;
  top: 32%;
  left: -250px;
  z-index: 10;

  width: 250px;
  padding: 15px 20px 0;

  color: #ffffff;

  background-color: #292929;

  transition: left 0.5s ease-in-out;
  
}

.block-switchtheme-show {
  left: 0;

  transition: left 0.5s ease-in-out;
}

.block-switchtheme .block-title {
  margin-bottom: 10px;

  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;

  text-align: center;
  letter-spacing: 1px;
}

.theme-item {
  position: relative;
  
  padding-top: 5px;
  margin-bottom: 15px;
}

.theme-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 1px;
  margin: 0 -20px;

  background: #828282;
}

.theme-label {
  margin-bottom: 5px;

  font-size: 16px;
}

.items-buttons > * {
  display: inline-block;
  margin-right: 10px;
}

@supports (display: grid) {
  .items-buttons {
    display: grid;
    grid-template-columns: repeat(4, 30px);
    grid-gap: 0 10px;
    justify-content: start;
  }

  .items-buttons > * {
    margin-right: 0;
  }
}

.theme-toggler {
  width: 30px;
  height: 30px;

  border-radius: 4px;
}

.theme-element_green {
  background: #82c434;
}

.theme-element_purple {
  background: #3f4ba3;
}

.theme-element_red,
.theme-rise_red {
  background: #d80019;
}

.theme-element_orange,
.theme-rise_orange {
  background: #ff7627;
}

.theme-rise_brown {
  background: #a83c23;
}

.theme-rise_blue,
.theme-razor_blue,
.theme-razor_lite_blue {
  background: #3f47b4;
}

.theme-razor_yellow,
.theme-razor_lite_yellow {
  background: #ffa801;
}

.theme-razor_brown,
.theme-razor_lite_brown {
  background: #bc2d3e;
}

.theme-razor_green,
.theme-razor_lite_green {
  background: #14ad55;
}

.block-switchtheme-toggler {
  position: absolute;

  top: 0;
  left: 100%;

  width: 60px;
  height: 60px;


  border: none;
  visibility: visible;
  cursor: pointer;

  transition: background 0.2s ease-in-out;
}

.block-switchtheme-toggler-wrapper {
  height: 100%;
  background: url("images/brush-and-canvas-painting-artistic-tools-white.svg") no-repeat 80% 70%;

  animation: attention 0.7s infinite 2s ease-in-out alternate;
}

.block-switchtheme-toggler:hover,
.block-switchtheme-toggler:focus {
  background-color: #828282;
}

@media (max-width: 991px) {
  .block-switchtheme {
    display: none;
  }
}

@keyframes attention {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
  /* form {
    transform: rotate(0);
  }

  10% {
    transform: rotate(-10deg);
  }

  20% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0deg);
  } */
}