* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

.menu {
  display: block;
  position: fixed;
  right: 5px;
  bottom: 5px;
  z-index: 10;
}

.menuButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #0e67cc;
  cursor: pointer;
  position: absolute;
  right: 5px;
  bottom: 5px;
}

.menuButtonIcon {
  display: inline-block;
  color: #fff;
  font-size: 35px;
}

.menuItems {
  display: none;
  position: absolute;
  right: 5px;
  bottom: 70px;
  border-radius: 15px;
  background-color: #0e67cc;
  max-width: 300px;
  width: 90vw;
}

.menuItemsItem {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 5px;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  transition: all ease 0.2s;
  border-radius: 15px;
  text-decoration: none;
}

.menuItemsItem:hover {
  background-color: #1173e4;
}

.menuItemsItemIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.menuItemsItemTitle {
  display: flex;
  align-items: center;
}

.menuItemsItemTitleText {
  font-size: 20px;
  font-family: "Major Mono Display", sans-serif;
}

body {
  background-color: #fafafa;
}

.body_dark {
  background-color: #0c0c0c;
}

.feed {
  display: none;
  width: 98%;
  max-width: 500px;
  margin: auto;
  padding: 10px;
}

.feedActived {
  display: block;
}

.onePost {
  display: none;
  width: 98%;
  max-width: 700px;
  margin: auto;
  padding: 10px 5px;
}

.onePostActived {
  display: block;
}

.profile {
  display: none;
  width: 98%;
  max-width: 700px;
  margin: auto;
  padding: 10px 5px;
}

.profileActived {
  display: block;
}

.profileIn {
  display: grid;
  grid-template-columns: minmax(70px, 1fr) 3fr;
  gap: 10px;
  padding: 15px;
  border-radius: 20px;
  background-color: #ececec;
  margin: 10px 5px;
}

.body_dark .profileIn {
  background-color: #1f1f1f;
  color: #fff;
}

.profileInImage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profileInImageImg {
  display: block;
  width: 100%;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
}

.profileInName {
  display: flex;
  align-items: center;
}

.profileInNameText {
  font-size: 29px;
  font-family: "Lato", sans-serif;
}

.profileButtons {
  display: flex;
  flex-wrap: nowrap;
  padding: 5px;
}

.profileButtonsBtn {
  display: inline-block;
  border: none;
  font-size: 20px;
  padding: 5px;
  cursor: pointer;
  color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: 5px;
  font-family: "Ubuntu", sans-serif;
}

.body_dark .profileButtonsBtn {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.pbbDeactived {
  display: inline-block;
}

.pbbActived {
  display: none;
}

.profileButtonsBtnActived .pbbDeactived {
  display: none;
}

.profileButtonsBtnActived .pbbActived {
  display: inline-block;
}

.profileButtonsLoader {
  display: none;
  text-align: center;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.profileButtonsLoaderActived {
  display: flex;
}

.principalFeedType {
  display: none;
}

.principalFeedTypeActived {
  display: block;
}

.principalFeedTypeIn {
  padding: 5px;
}

.principalFeedTypeSelector {
  display: block;
  width: 95%;
  margin: auto;
  border-radius: 15px;
  background-color: #ececec;
  color: #000;
  font-family: "Ubuntu", sans-serif;
  font-size: 23px;
}

.body_dark .principalFeedTypeSelector {
  background-color: #1f1f1f;
  color: #fff;
}

.principalFeedTypeSelectorBar {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  border-radius: 15px;
  transition: all ease 0.2s;
}

.principalFeedTypeSelectorBar:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.body_dark .principalFeedTypeSelectorBar:hover {
  background-color: rgba(255, 255, 255, 0.09);
}

.principalFeedTypeSelectorBarOption {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
}

.principalFeedTypeSelectorBarIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.principalFeedTypeSelectorOptions {
  display: none;
}

.principalFeedTypeSelectorOptionsItem {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  padding: 10px;
  cursor: pointer;
  border-radius: 15px;
  transition: all ease 0.2s;
}

.principalFeedTypeSelectorOptionsItem:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.body_dark .principalFeedTypeSelectorOptionsItem:hover {
  background-color: rgba(255, 255, 255, 0.09);
}

.principalFeedTypeSelectorOptionsItemIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
}

.principalFeedTypeSelectorOptionsItemText {
  display: flex;
  align-items: center;
}

.post {
  display: block;
  padding: 15px;
  border-radius: 20px;
  background-color: #ececec;
  margin: 10px 5px;
}

.body_dark .post {
  background-color: #1f1f1f;
  color: #fff;
}

.postUser {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 5px;
  width: 100%;
}

.postUserImage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.postUserImageImg {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 100%;
}

.postUserName {
  display: flex;
  align-items: center;
}

.postUserNameText {
  font-size: 18px;
  font-family: "Lato", sans-serif;
}

.postContent {
  display: block;
  margin-top: 10px;
}

.postContentTextText {
  display: block;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
}

.postContentTextText_compact {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  /* Número máximo de líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.postData {
  display: block;
  margin-top: 5px;
}

.postDataDate {
  text-align: right;
}

.postDataDateText {
  font-size: 15px;
  font-family: "Ubuntu", sans-serif;
  color: #4d4d4d;
}

.body_dark .postDataDateText {
  color: #acacac;
}

.postAnsweredContainer {
  display: block;
  padding: 5px;
  padding-bottom: 0px;
}

.postAnsweredContainer .post {
  background-color: rgba(0, 0, 0, 0.1);
}

.body_dark .postAnsweredContainer .post {
  background-color: rgba(255, 255, 255, 0.09);
}

.postAnsweredError {
  display: block;
  padding: 10px;
  margin: 5px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
}

.body_dark .postAnsweredError {
  background-color: rgba(255, 255, 255, 0.09);
}

.postButtonsContainer {
  display: flex;
  align-items: center;
  justify-content: left;
  padding-top: 10px;
}

.postButtonsContainerIn {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.postButtonsContainerBtn {
  display: block;
  border: none;
  font-size: 20px;
  padding: 5px;
  cursor: pointer;
  color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.body_dark .postButtonsContainerBtn {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.09);
}

.editor {
  display: block;
  padding: 15px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 10px;
  position: relative;
}

.body_dark .editor {
  background-color: rgba(255, 255, 255, 0.09);
}

.editorUser {
  display: block;
}

.editorUserData {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 5px;
}

.editorUserDataImage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorUserDataImageImg {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 100%;
}

.editorUserDataName {
  display: flex;
  align-items: center;
}

.editorUserDataNameText {
  font-size: 18px;
  font-family: "Lato", sans-serif;
}

.editorWrite {
  display: block;
  margin-top: 10px;
}

.editorWriteTextarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 250px;
  max-height: 60vh;
  min-height: 250px;
  padding: 5px;
  border: none;
  background-color: transparent;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  color: #000;
}

.editorWriteTextarea:focus {
  outline: none;
  border: none;
}

.body_dark .editorWriteTextarea {
  color: #fff;
}

.editorButtons {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 10px;
}

.editorButtonsPublishBtn {
  display: inline-block;
  padding: 10px;
  border-radius: 100px;
  cursor: pointer;
  color: #fff;
  background-color: #0e67cc;
  font-size: 18px;
  font-family: "Ubuntu", sans-serif;
  border: none;
}

.editorClose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: none;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
}

.body_dark .editorClose {
  background-color: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.fullscreenEditor {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #ececec;
}

.body_dark .fullscreenEditor {
  background-color: #1f1f1f;
  color: #fff;
}

.fullscreenEditorActived {
  display: block;
}

.loaderSection {
  display: none;
  align-items: center;
  justify-content: center;
}

.body_dark .loaderSection {
  color: #fff;
}

.loaderActived {
  display: flex;
}

.classic_h1 {
  font-size: 30px;
  font-family: "Raleway";
  font-weight: bold;
  display: block;
  padding: 10px;
  color: #000;
}

.body_dark .classic_h1 {
  color: #fff;
}

.classic_description {
  font-size: 18px;
  font-family: "Roboto";
  display: block;
  color: #000;
  padding: 10px;
  padding-top: 0px;
}

.body_dark .classic_description {
  color: #fff;
}

.news_feed {
  display: block;
  margin: auto;
  width: 99%;
  max-width: 600px;
}

.new {
  display: block;
  margin: 15px 10px;
  padding: 15px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;

  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
}

.body_dark .new {
  background-color: rgba(255, 255, 255, 0.11);

  box-shadow: 0px 0px 7px 0px rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: 0px 0px 7px 0px rgba(255, 255, 255, 0.75);
  -moz-box-shadow: 0px 0px 7px 0px rgba(255, 255, 255, 0.75);
}

.new_title {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  color: #000;
  font-weight: bold;
}

.body_dark .new_title {
  color: #fff;
}

.new_description {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  color: #000;
  margin-top: 10px;
}

.body_dark .new_description {
  color: #fff;
}

.new_date {
  font-family: "Ubuntu", sans-serif;
  font-size: 17px;
  color: #272727;
  text-align: right;
  margin-top: 10px;
}

.body_dark .new_date {
  color: #e4e4e4;
}

.new_image_father {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-top: 10px;
}

.new_image {
  display: block;
  max-width: 100%;
  height: auto;
}

.advForm {
  display: grid;
  grid-template-rows: 1fr 2fr;
  width: 100%;
  height: 100dvh;
  color: #000;
}

.body_dark .advForm {
  color: #fff;
}

.advForm_perm {
  display: block;
  max-height: 100%;
  overflow: auto;
  border-bottom: 2px solid #000;
}

.body_dark .advForm_perm {
  border-color: #fff;
}

.advForm_perm_in {
  display: block;
  padding: 15px;
  text-align: center;
}

.advForm_perm_title {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

.advForm_perm_description {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  margin-top: 8px;
}

.advForm_perm_prog_title {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  margin-top: 13px;
  font-weight: bold;
}

.advForm_perm_prog_text {
  font-size: 19px;
  font-family: "Ubuntu", sans-serif;
  margin-top: 7px;
}

.advForm_perm_prog_text_place {
  display: inline;
  padding: 2px;
  font-family: "Ubuntu", sans-serif;
  background-color: rgba(0, 0, 0, 0.1);
}

.body_dark .advForm_perm_prog_text_place {
  background-color: rgba(255, 255, 255, 0.15);
}

.advForm_chan {
  display: block;
  max-height: 100%;
  overflow: auto;
}

.advForm_chan_screen {
  display: none;
  font-family: "Roboto", sans-serif;
  padding: 15px;
}

.advForm_chan_screen_active {
  display: block;
}

.advForm_chan_screen_title {
  font-size: 27px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-bottom: 7px;
}

.advForm_chan_screen_description {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 11px;
}

.advForm_chan_screen_btns {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.advForm_chan_screen_backBtn, .advForm_chan_screen_nextBtn {
  border: 3px solid #1d4ed8;
  background-color: #1173e4;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  padding: 9px;
  border-radius: 15px;
}

.advForm_chan_screen_backBtn {
  background-color: #727272;
  border-color: #4b4b4b;
}

.advForm_chan_screen_select {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  padding: 8px;
  display: block;
  width: 100%;
}

.advForm_chan_screen_inputText {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  padding: 8px;
  display: block;
  width: 100%;
}

.advForm_chan_screen_textarea {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  padding: 8px;
  display: block;
  width: 100%;
  resize: none;
  height: 180px;
}

.advForm_chan_screen_topicForm {
  display: grid;
  grid-template-columns: 1fr 50px;
  margin-top: 10px;
}

.advForm_chan_screen_topicForm_input {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  padding: 8px;
  display: block;
  width: 100%;
  border: 3px solid #1d4ed8;
}

.advForm_chan_screen_topicForm_btn {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  padding: 8px;
  display: block;
  width: 100%;
  border: 3px solid #1d4ed8;
  background-color: #1173e4;
  cursor: pointer;
  color: #fff;
}

.advForm_chan_screen_topics {
  display: block;
  padding: 5px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.15);
}

.body_dark .advForm_chan_screen_topics {
  background-color: rgba(255, 255, 255, 0.15);
}

.advForm_chan_screen_topics_item {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  padding: 8px;
  margin: 5px;
  border-radius: 20px;
}

.body_dark .advForm_chan_screen_topics_item {
  background-color: #000;
  color: #fff;
}

.advForm_chan_screen_topics_item_text {
  display: inline-block;
  padding: 3px 0px;
}

.advForm_chan_screen_topics_item_btn {
  display: inline-block;
  font-size: 16px;
  padding: 3px;
  border-radius: 50px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  color: #000;
  border: none;
}

.body_dark .advForm_chan_screen_topics_item_btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.clickableElement {
  cursor: pointer;
}

.no_more_results_indicator {
  display: none;
  padding: 10px;
  margin: 10px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
  background-color: #EA1515;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}

.no_more_results_indicator_active {
  display: block;
}

.createNewFeedSection {
  display: block;
  margin: 15px 10px;
  padding: 15px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  border: 5px solid #0e67cc;
}

.body_dark .createNewFeedSection {
  background-color: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.createNewFeedSection_inside {
  display: flex;
  align-items: center;
  justify-content: center;
}

.createNewFeedSection_in {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 7px;
}

.createNewFeedSection_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
}

.createNewFeedSection_text {
  display: flex;
  align-items: center;
}

.createNewFeedSection_text_p {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  font-weight: bold;
}

.createNewFeedSection_description {
  display: block;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-align: center;
}

.advForm_perm_buttons {
  display: block;
  margin-top: 5px;
}

.advForm_perm_buttons_btn {
  display: inline-block;
  margin: 5px;
  padding: 6px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  background-color: #0e67cc;
  color: #fff;
  border: none;
}

/* Loader */

.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #000 90%, #0000);
  background:
    var(--_g) 0% 50%,
    var(--_g) 50% 50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}

.body_dark .loader {
  --_g: no-repeat radial-gradient(circle closest-side, #fff 90%, #0000);
}

@keyframes l7 {
  33% {
    background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%
  }

  50% {
    background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%
  }

  66% {
    background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%
  }
}

/* Loader (end) */

/* https://bun.js.org/ */

.bun-contain *,
.bun-contain *::before,
.bun-contain *::after {
  box-sizing: content-box !important;
}

.bun-contain input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.bun-contain span {
  line-height: 1.5;
  font-size: 1.69rem;
  font-family: inherit;
}

.bun-contain {
  display: table;
  position: relative;
  padding-left: 3.2rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.bun-contain input[type="checkbox"]~.bun-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background: #f1f5f9;
  transition: background 250ms;
  border: 1px solid #94a3b8;
  border-radius: 0.71rem;
}

.bun-contain input[type="radio"]~.bun-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background: #f1f5f9;
  transition: background 250ms;
  border: 1px solid #94a3b8;
  border-radius: 3rem;
}

.bun-contain input[type="checkbox"]~.bun-input::after {
  content: "";
  position: absolute;
  display: none;
  left: 14px;
  top: 6px;
  width: 0.6rem;
  height: 1.2rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transition: background 250ms;
  transform: rotate(45deg);
}

.bun-contain input[type="radio"]~.bun-input::after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 10px;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 3rem;
  background: #ffffff;
  transition: background 250ms;
}

.bun-contain input[type="checkbox"]:disabled~.bun-input::after {
  border-color: #ffffff;
}

.bun-contain input:checked~.bun-input::after {
  display: block;
}

.bun-contain:hover input[type="checkbox"]:not([disabled])~.bun-input,
.bun-contain input[type="checkbox"]:focus~.bun-input {
  background: #e2e8f0;
  border-color: #64748b;
}

.bun-contain:hover input[type="radio"]:not([disabled])~.bun-input,
.bun-contain input[type="radio"]:focus~.bun-input {
  background: #e2e8f0;
  border-color: #64748b;
}

.bun-contain input:focus~.bun-input {
  box-shadow: 0 0 0 2px #60a5fa;
}

.bun-contain input[type="checkbox"]:checked~.bun-input {
  background: #3b82f6;
  border-color: #1d4ed8;
}

.bun-contain input[type="radio"]:checked~.bun-input {
  background: #3b82f6;
  border-color: #1d4ed8;
}

.bun-contain input[type="checkbox"]:disabled~.bun-input,
.bun-contain input[type="radio"]:disabled~.bun-input {
  opacity: 0.5;
  cursor: not-allowed;
}

.bun-contain input[type="radio"]:disabled~.bun-input::after {
  background: #ffffff;
}

.bun-contain:hover input[type="checkbox"]:not([disabled]):checked~.bun-input,
.bun-contain input[type="checkbox"]:checked:focus~.bun-input {
  background: #2563eb;
  border-color: #1e40af;
}

.bun-contain:hover input[type="radio"]:not([disabled]):checked~.bun-input,
.bun-contain input[type="radio"]:checked:focus~.bun-input {
  background: #2563eb;
  border-color: #1e40af;
}

/* https://bun.js.org/ END */

.displayNone {
  display: none;
}