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

.mainWrapperLightTheme {
  display: flex;
  flex-direction: row;
  width: 250px;
  justify-content: center;
  align-items: center;
  font-family: Poppins;
  .label {
    font-weight: 400;
    font-size: 14px;
    color: $blackPrimary;
  }
  .radioButtonsWrapper {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
  }
  .radioButtonWrapperInner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .radioButtonOuter {
    border: 2px solid $radio_button_active;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
  }
  .radioButtonOuterUnckecked {
    border: 2px solid $radio_button_inactive;
  }
  .radioButtonOuter:hover {
    cursor: pointer;
  }
  .radioButtonInner {
    width: 19px;
    height: 19px;
    background-color: $radio_button_active;
    border-radius: 50%;
  }
  .radioButtonInnerUnckecked {
    background-color: $radio_button_inactive;
  }
  .labelInner {
    font-weight: 400;
    font-size: 14px;
    color: $blackPrimary;
    padding-left: 10px;
  }
}

.mainWrapperDarkTheme {
  display: flex;
  flex-direction: row;
  width: 250px;
  justify-content: center;
  align-items: center;
  font-family: Poppins;
  .label {
    font-weight: 400;
    font-size: 14px;
    color: $greySecondary;
  }
  .radioButtonsWrapper {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
  }
  .radioButtonWrapperInner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .radioButtonOuter {
    border: 2px solid $radio_button_active_dark;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
  }
  .radioButtonOuterUnckecked {
    border: 2px solid $radio_button_inactive_dark;
  }
  .radioButtonOuter:hover {
    cursor: pointer;
  }
  .radioButtonInner {
    width: 19px;
    height: 19px;
    background-color: $radio_button_active_dark;
    border-radius: 50%;
  }
  .radioButtonInnerUnckecked {
    background-color: $radio_button_inactive_dark;
  }
  .labelInner {
    font-weight: 400;
    font-size: 14px;
    color: $greySecondary;
    padding-left: 10px;
  }
}
