/* default theme buttons */
.themes_defaultsDiv {
  display: grid;
  grid-template-columns: repeat(6, max-content);
}
.themes_default_button {
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  position: relative;
  border-color: transparent;
  background: none;
  border-width: 3px;
  border-radius: 3px;
  margin-bottom: var(--mb-0-5);
}
.themes_defaultsDiv > *:first-child {
  color: black;
  border-color: black;
  border-width: 2px !important;
}
.themes_defaultsDiv > *:first-child:hover {
  border-width: 3.5px;
}

.themes_default_button:hover {
  border-color: var(--text-color);
  border-width: 3.5px;
}
.themes_default_button_active {
  border-color: white;
  border-width: 3.5px;
}
.themes_default_button_top,
.themes_default_button_bottom {
  height: 50%;
  width: 100%;
}

.AddNewTheme__buttonComponent {
  margin-left: 2.6rem !important;
  margin-top: 0 !important;
}
