@import url("./jl-popup.css");
@import url("../libs/bootstrap-icons.min.css");

.blue {
  color: #007bff;
}

.green {
  /*color:#2e8b57;*/
  color: #4caf50;
}

.gray {
  color: #999;
}

.red {
  color: red;
}

.small {
  font-size: var(--font-size-small);
}
.italic {
  font-style: italic;
}

.bold {
  font-weight: bolder;
}
.center {
  text-align: center;
}

.hide {
  display: none;
}

.bg-green {
  background-color: #f5f9f5;
}

.bg-blue {
  background-color: #f5f9fc;
}

.bg-gray {
  background-color: #eee;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

select {
  background-color: transparent;
}

.btn-light {
  --bs-btn-bg: #d4d9dd;
}

body {
  padding-bottom: 80px;
  font-size: 1rem;
}

label,
input {
  font-size: 1em;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .container {
    padding: 0 16px;
  }
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.loading .cover {
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.3;
  z-index: 99998;
  position: fixed;
  left: 0;
  top: 0;
}
.loading .gif {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  z-index: 999999;
}

.button {
  display: block;
  text-align: center;
}

.button-black {
  color: #555;
  border: #555 solid 1px;
  border-radius: 3px;
  padding: 3px 8px 4px 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-black:hover {
  color: #666;
  border: #666 solid 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.button-white {
  color: #444;
  border: #444 solid 1px;
  background-color: #fff;
  border-radius: 3px;
  padding: 3px 8px 4px 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-white:hover {
  color: #777;
  border: #777 solid 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.button-blue {
  background-color: var(--theme-blue);
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-blue:hover {
  background-color: #357abd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.button-green {
  /*background-color: #28a745;*/
  /*background-color:#2e8b57;*/
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-green:hover {
  background-color: #218838;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.button-gray {
  /*background-color: #28a745;*/
  background-color: #666;
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-gray:hover {
  background-color: #444;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.button-large {
  border-radius: 10px;
  padding: 15px 40px;
  font-size: var(--font-size-large);
}

.button-big {
  border-radius: 4px;
  padding: 7px 12px;
  font-size: var(--font-size);
  line-height: 1.2;
}

.button-middle {
  border-radius: 4px;
  padding: 4px 12px;
  font-size: var(--font-size);
  line-height: 32px;
}

.button-small {
  border-radius: 4px;
  padding: 2px 10px;
  font-size: var(--font-size-small);
  line-height: 28px;
}

.button-full {
  width: 100%;
}

.link-black-selected {
  color: rgba(0, 0, 0, 0.8);
}

.link-black-selected:hover {
  color: #000;
}

.link-black {
  color: rgba(0, 0, 0, 0.8);
}

.link-black:hover {
  color: #3577b0;
}

.link-gray {
  color: #999;
}

.link-gray:hover {
  color: #bbb;
}

.link-white {
  color: #efefef;
}

.link-white:hover {
  color: #ccc;
}

.link-blue {
  color: #007bff;
}

.link-blue:hover {
  color: #0056b3;
}

.link-green {
  color: #4caf50;
}

.link-green:hover {
  color: #0f6412;
}

.input-middle {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  line-height: 1.2;
}

.input-middle:disabled,
.input-middle:read-only
 {
  background-color: #eee;
}

.input-full {
  width: 100%;
}

.input-short {
  width: 9%;
}
.input-long {
  width: 29%;
}
.input-longest {
  width: 69%;
}

.checkbox input[type="checkbox"],
.radio input[type="radio"] {
  display: none;
}
input[type="checkbox"],
input[type="radio"] {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox span,
.radio span {
  position: relative;
  cursor: pointer;
  display: inline-block;
  font-size: 24px;
  width: 1em;
  flex: 0 0 1em;
  aspect-ratio: 1;
  background-color: #e0e0e0;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.2s;
}

.checkbox-blue span,
.radio-blue span {
  background-color: #e0e0e0;
}
.checkbox-green span,
.radio-green span {
  background-color: #e0e0e0;
}

.checkbox span {
  border-radius: 4px;
}
.checkbox-blue input:checked + span {
  background-color: #4a90e2;
}
.checkbox-green input:checked + span {
  /*background-color:#2e8b57;*/
  background-color: #4caf50;
}
.checkbox input:checked + span::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.radio span {
  border-radius: 999px;
}
/* .radio-blue input:checked + span {
  background-color: #fff;
} */
.radio-green input:checked + span {
  /*background-color:#2e8b57;*/
  background-color: #4caf50;
}
.radio input:checked + span::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: #222;
  border-radius: 999px;
  transition: transform 0.2s;
}
.checkbox input:checked + span::after {
  transform: rotate(45deg) scale(1);
}

.help {
  position: relative;
  display: inline-block;
}

.help div {
  border: 1px solid rgba(0, 0, 0, 0.75);
  color: #000;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;

  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.help-middle {
  margin-left: 3px;
  width: 20px;
  height: 20px;
}

.help-middle div {
  font-size: var(--font-size);
  padding: 1px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.help-middle span {
  font-size: var(--font-size-small);
  line-height: 26px;
}

.help span {
  position: absolute;
  top: -10px;
  left: 26px;
  background-color: white;
  color: #000;
  padding: 14px 12px 18px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.3s ease;
  z-index: 10000;
  min-width: 300px;
  max-width: 380px;
  z-index: 2;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .help span {
    font-size: 12px;
    position: fixed;
    inset: 12px 12px auto auto;
  }
}

.help span.right {
  position: absolute;
  top: -10px;
  left: -380px;
}

.help:hover span {
  /*opacity: 1;
    visibility: visible;*/
  display: block;
  z-index: 100;
}

.help:hover div {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: #000;
}

.alert {
  z-index: 20001;
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  min-width: 250px;
  max-width: 500px;
  transition: opacity 0.6s ease 0s;
  padding: 24px 32px;
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 12px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 4px 4px 12px rgba(102, 102, 102, 0.6), -2px -2px 12px rgba(102, 102, 102, 0.6);
  border: 3px solid #ffa35f;
}
.alert:not(.active) {
  pointer-events: none;
  opacity: 0;
}
.alert .icon {
  width: 22px;
  height: 22px;
  order: 1;
}
.alert .close {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  pointer-events: all;
}
.alert .text {
  display: block;
  margin: 0 auto;
  order: 2;
}

.header {
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 24px 0 10px;
  gap: 1em;
}
@media (max-width: 760px) {
  .header {
    display: block;
    padding: 8px 0;
    gap: 0.5em;
  }
}
.header__row {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 1em;
}
.header__logo {
  height: 60px;
  margin-right: auto;
}
@media (max-width: 760px) {
  .header__logo {
    height: 42px;
  }
}
.header__logo img {
  display: block;
  height: 100%;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
}
@media (max-width: 760px) {
  .header__menu {
    gap: 0.5em;
  }
}
.header__item {
  flex: 0 0 30px;
}
/* @media (max-width: 760px) {
  .header__item {
    flex: 0 0 20px;
  }
} */
.header__item--menu {
  color: #666;
  cursor: pointer;
  border: none;
  background-color: transparent;
  display: block;
}
.header__item--menu span {
  font-size: 30px;
  line-height: 1;
}
/* @media (max-width: 760px) {
  .header__item--menu span {
    font-size: 24px;
  }
} */
.header__item img {
  display: block;
  width: 100%;
}

.header .links {
  margin-left: auto;
}

.header .links ul {
  display: flex;
  gap: 0.825em;
}
@media (max-width: 480px) {
  .header .links ul {
    justify-content: flex-end;
  }
}

.header .links .link .selected {
  font-weight: 700;
}

.header .links .link.right {
  padding-right: 0px;
}

.header .links .line {
  height: 1em;
}

.header .top > a:first-child {
  margin-right: auto;
}

.header .logo {
  height: 80px;
  margin-right: auto;
  display: block;
}

@media (max-width: 860px) {
  .header .logo {
    height: 50px;
  }
}
@media (max-width: 480px) {
  .header .logo {
    height: 42px;
  }
}

.title {
  color: var(--theme-green);
  font-size: 24px;
  margin-bottom: 0.825em;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .title {
    font-size: 20px;
  }
}

.title.line {
  text-align: center;
  padding-bottom: 0.25em;
  border-bottom: 1px solid currentColor;
}

.bigtitle {
  font-size: 48px;
  font-weight: 400;
  color: #000;
  width: 100%;
  text-align: center;
  margin: 36px auto;
  line-height: 1.1;
}

@media (max-width: 860px) {
  .bigtitle {
    font-size: 32px;
    margin: 22px auto;
  }
}

.subtitle {
  font-size: var(--font-size);
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.topic {
  font-size: var(--font-size);
  margin-bottom: 15px;
}

.subject {
  font-size: var(--font-size);
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
}

.top {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 1em;
}

.top .logo {
  height: 60px;
}

.top .btns {
  display: flex;
  align-items: center;
  margin: auto 0 auto auto;
  gap: 1em;
}
@media (max-width: 480px) {
  .top .btns {
    gap: 0.5em;
  }
}

.top .btns .icon {
  position: relative;
  text-align: center;
  font-size: var(--font-size-small);
  width: 39px;
  line-height: 20px;
}

.top .btns .icon a:hover {
  color: #007bff;
}

.top .btns .img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.footer {
  position: fixed;
  bottom: 12px;
  right: 12px;
  padding: 2px 12px;
  background-color: #666;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  max-width: calc(100% - 24px);
}
.footer p {
  color: currentColor;
}

.auto-logout-count {
  position: fixed;
  bottom: 12px;
  left: 12px;
  padding: 2px 12px;
  background-color: #666;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  max-width: calc(100% - 24px);
}

/*.nav-btn {
  margin-left: auto;
}*/

.nav-btn .icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  margin-bottom: 4px;
}

.nav-btn .menu {
  font-size: 30px;
}

.nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #3577b0;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.nav.active {
  right: 0;
}

.nav .nav-header {
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav .nav-close {
  color: white;
  font-size: var(--font-size-large);
  cursor: pointer;
  float: right;
}

.nav .nav-item,
.nav .nav-lang {
  padding: 15px 20px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav .nav-item.selected {
  color: #ddd;
}

.nav .nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav .nav-item span {
  color: #ddd;
}

.nav-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.nav-cover.active {
  display: block;
}

.list-control,
.list-control__pagin {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 1em 0;
}

.list-control__action {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0.5em 1em;
  line-height: 1;
  border-radius: 10px;
  height: 2em;
  text-transform: uppercase;
}

.list-control__action * {
  pointer-events: none;
}
.list-control__action--page {
  aspect-ratio: 1;
  padding: 0;
}

.list-control__action--page.current {
  pointer-events: none;
  background-color: #a8c7e7;
}

.list-control:has(.list-control__pagin:empty) {
  display: none;
}

.table-sort-btn:hover {
  cursor: pointer;
  background-color: #eee;
  border-radius: 5px 5px 0 0;
}
.table-sort-btn.asc,
.table-sort-btn.desc {
  position: relative;
  padding-right: 1.5em;
}
.table-sort-btn.asc:after,
.table-sort-btn.desc:after {
  display: inline-block;
  position: absolute;
  right: 8px;
  bottom: 0;
  font-size: 1.5em;
}
.table-sort-btn.asc:after {
  content: "\021BF";
}
.table-sort-btn.desc:after {
  content: "\021C3";
}
#verifyCode > div {
  display: flex;
  justify-content: center;
}
#verifyCode iframe,
#verifyCode input {
  display: block;
  margin: auto;
}
.table {
  --bs-table-hover-bg: rgba(0,0,0, 0.075);
}
td {
  color: black !important;
}
td .form-check-input:only-child {
  display: block;
  margin: auto;
  /* pointer-events: none; */
}
td:has(> .form-check-input:only-child) {
  vertical-align: middle;
}
.wel_text {
  display: flex;
  align-items: flex-end;
}
.upload-area {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  /* max-width: 500px; */
  min-width: 300px;
  /* width: 50%; */
  /* margin-right: 30px; */
  text-align: center;
  /* display: inline; */
  /* float: left; */
  overflow: hidden;
}

.upload-area.dragover {
  border-color: #007bff;
}

.upload-label {
  display: block;
  cursor: pointer;
}
.common-popup .upload-label {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 24px 12px 12px;
}

.upload-icon {
  font-size: 40px;
  color: #007bff;
}

.upload-text {
  display: block;
  margin-top: 8px;
  color: #555;
}

.upload-tips {
  display: block;
  line-height: 22px;
  color: #555;
  font-size: 14px;
}

.loading2 {
  display: none;
}

.upload-field-select {
  font-size: 1.2em;
  padding: 0.2em 0.5em;
  border-radius: 5px;
}
/*@media (min-width: 860.2px) {
  .nav-btn {
    display: none;
  }
}*/

.lable-text {
}

@media (max-width: 860px) {
  .top {
    padding: 12px 0 8px;
  }
  .top .btns {
    display: none;
  }
}
@media (max-width: 540px) {
  .top .logo {
    height: 40px;
  }
}

.pw-holder {
  position: relative;
}
.pw-holder__btn {
  position: absolute;
  inset: 0.5em 0.5em 0.5em auto;
  aspect-ratio: 1;
  background-color: transparent;
  z-index: 1;
  border-radius: 4px;
  display: block;
}
.pw-holder__btn .bi {
  font-size: 1.4em;
}
.pw-holder__btn:hover {
  background-color: #ececec;
}

.pw-holder:has(input[type="password"]) .pw-holder__btn .bi-eye-slash,
.pw-holder:has(input[type="text"]) .pw-holder__btn .bi-eye {
  display: none;
}

.iamsmart {
  width: 100%;
  margin-top: 5px;
  overflow: hidden;
}

.iamsmart-box {
  text-align: center;
}

.iamsmart .iamsmart-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--theme-dark-green);
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  position: relative;
  padding: 16px;
  gap: 8px;
}
@media (max-width: 760px) {
  .iamsmart .iamsmart-logo {
    padding: 8px;
  }
}

.iamsmart .iamsmart-logo:hover {
  background-color: #1a8c7b;
}

.iamsmart .iamsmart-logo img {
  font-size: 36px;
  width: 1em;
  flex: 0 0 1em;
}
@media (max-width: 760px) {
  .iamsmart .iamsmart-logo img {
    font-size: 24px;
  }
}

.iamsmart .iamsmart-logo .text {
  color: #fff;
}
@media (max-width: 760px) {
  .iamsmart .iamsmart-logo .text {
    font-size: 14px;
  }
}

.iamsmart .iamsmart-link {
  display: inline-flex;
  margin-top: 6px;
  align-items: center;
  gap: 0.5em;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .iamsmart .iamsmart-link {
    font-size: 14px;
  }
}
.iamsmart .iamsmart-link:after {
  content: "";
  display: block;
  aspect-ratio: 1;
  flex: 0 0 0.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}

.iamsmart .more {
  color: #007bff;
  text-decoration: none;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.profile__row {
  display: flex;
  gap: 0.25em;
  flex-wrap: wrap;
}
.profile__row label,
.profile__row span {
  flex: 0 0 240px;
}

.profile__row span {
  margin-left: 1em;
}

.border-blk {
  padding: 16px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #fff;
}

.border-blk + .border-blk {
  margin-top: 32px;
}

.btns-box--vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.iamsmart-banner {
  position: relative;
  text-align: right;
}
.iamsmart-banner__img {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.iamsmart-banner img {
  width: 100%;
  display: block;
}

.iamsmart-banner__link {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--theme-dark-green);
  text-transform: uppercase;
  font-weight: 900;
  background-color: #fffc;
  border-top-left-radius: 12px;
  padding: 5px 16px;
}

.header-lang-list {
  position: absolute;
  inset: 100% 0 auto auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  border-radius: 4px;
  box-shadow: 2px 2px 4px #4444;
  padding: 0.5em;
  background-color: #fff;
  gap: 6px;
  z-index: 2;
}

.header-lang-list__btn {
  flex: 0 0 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  line-height: 1;
  font-size: 20px;
  background-color: #ccc;
  border-radius: 99px;
  color: #222;
}

.header-lang-list__btn.current {
  color: #fff;
  background-color: #007bff;
  pointer-events: none;
}

#langListToggle:not(:checked) ~ .header-lang-list {
  display: none;
}

#langListToggle {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  right: 100vh;
}

.pagin-conf {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pagin-conf button {
  background-color: transparent;
  border: none;
  color: #0056b3;
}

.pagin-conf button:hover {
  text-decoration: underline;
}

.instructor-consent-td {
  text-align: center;
}
.instructor-consent-td input:not(:only-child) {
  display: none !important;
}

.sidebar__back-btn:hover {
  background-color: #eee;
}

@media (max-width: 768px) {
  .sidebar__back-btn {
    display: none;
  }
}

.static p,
.static li {
  margin-bottom: 0.875em;
  line-height: 1.4;
}

.static ol,
.static ul {
  padding-left: 2em;
}

.static ul li {
  list-style: disc;
}

.session-alert {
  position: fixed;
  inset: 0;
  background-color: #0008;
  z-index: 999999;
  display: none;
}

.session-alert__wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.session-alert__body {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

button[type="submit"]:disabled {
  pointer-events: none !important;
  opacity: 0.6 !important;
}

.content-box p {
  margin-bottom: 0.825em;
}
/***************sharon updated **********************/
/* button COMMON START by sharon*/
.theme-btn {
  display: flex;
  position: relative;
  padding: 0.725em 2em;
  font-weight: 500;
  background-color: currentColor;
  border: 1px solid currentColor;
  transition: 0.2s linear;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-size: 1em;
  line-height: 1;
  gap: 0.5em;
  white-space: nowrap;
}

.theme-btn:hover {
  box-shadow: 0 0 8px #444;
}
.theme-btn:has(> i:only-child) {
  padding: 0.5em 0.8em;
  align-items: center;
}
.theme-btn span,
.theme-btn i {
  color: #fff;
}

.exam-proc--meb {
  display: flex;
  gap: 0.5em;
  align-items: baseline;
  justify-content: flex-start;
}
/* button COMMON END */

/* button COLOR START */
.theme-btn--red {
  color: #d43242;
}
.theme-btn--blue {
  color: #304269;
}
.theme-btn--light-blue {
  color: rgb(14, 94, 179);
}
.theme-btn--brown {
  color: rgb(134, 119, 106);
}
.theme-btn--gray {
  color: #666;
}
.theme-btn--green {
  color: rgb(29, 152, 136);
}
.theme-btn--yellow {
  color: rgb(242, 170, 0);
}
/* button COLOR END */

/* button boder START */
.theme-btn--hollow {
  background-color: transparent;
}
.theme-btn--hollow i,
.theme-btn--hollow span {
  color: currentColor;
}
.theme-btn:only-child {
  width: 100%;
}
.btn-flex:has(> .theme-btn:nth-child(2)) .theme-btn {
  width: 48%;
}
.btn-flex:has(> .theme-btn:nth-child(3)) .theme-btn {
  width: 32%;
}
/* button boder END */
/* ***************sharon updated end**********************/
/* :is(label:has(> input[type="checkbox"])) {
  text-align: center;
  white-space: nowrap;
  min-width: 7.75em;
  color: #304269;
  cursor: pointer;
  border-radius: 10px;
  flex: none;
  justify-content: center;
  gap: .5em;
  padding: .625em 1em .5em 2.25em;
  line-height: 1.2;
  display: inline-flex;
  position: relative;
  margin: 0.5em;
}
:is(label:has(> input[type="checkbox"]):has(> input:checked), label:has(> input[type="radio"]):has(> input:checked)) {
  background-color: #304269;
  color: #fff;
}
label:has(> input[type="checkbox"])::before {
  content: "\F584";
  z-index: 2;
  aspect-ratio: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 1.25em;
  display: block;
  position: absolute;
  top: 50%;
  left: .625em;
  translate: 0 calc(.125em - 50%);
  font-family: bootstrap-icons !important;
  font-weight: 400 !important;
}
label:has(> input[type="checkbox"]):has(> input:checked)::before {
  content: "\F26D";
  color: #fff;
}
label:has(> input[type="checkbox"])::after {
  content: "";
  border: 1px solid;
  border-radius: 8px;
  position: absolute;
  inset: 0;
} */