@import "../../styles/colors.scss";
@import "../../styles/fonts.scss";

.light_swicher_button {
  display: flex;
  flex-direction: row;
  background-color: $white;
  padding: 0px 4.5px 0px 4.5px;
  border-radius: 12.5px;
  align-items: center;
  justify-content: space-between;
  width: 50px;
  height: 25px;
  font-family: Poppins;
  cursor: pointer;
  > p {
    color: $orangePrimary;
    font-size: 9px;
    margin: 0 2px 0 0;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.75px;
    line-height: 3.125px; /* 100% */
    text-transform: uppercase;
  }
  > img {
    height: 18px;
    width: 18px;
  }
}

.dark_swicher_button {
  display: flex;
  flex-direction: row;
  background-color: $blackTertinary;
  padding: 0px 4.5px 0px 4.5px;
  border-radius: 12.5px;
  align-items: center;
  justify-content: space-between;
  width: 50px;
  height: 25px;
  font-family: Poppins;
  cursor: pointer;
  > p {
    color: $orangePrimary;
    font-size: 9px;
    margin: 0 2px 0 0;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.75px;
    line-height: 3.125px; /* 100% */
    text-transform: uppercase;
  }
  > img {
    height: 18px;
    width: 18px;
  }
}
