/* btn */
.btn-filter {
  border: 2px solid #212121;
  color: #212121;
  border-radius: 0;
}

.btn-filter:hover,
.btn-filter:focus {
  border: 2px solid #666666;
  color: #ffffff;
  background-color: var(--main-colorC);
}

/* collapse */
.collapse-outer {
  position: fixed;
  z-index: 3;
  top: 70px;
  left: 0;
  width: 6%;
  height: 100%;
  max-height: calc(100vh - 71px);
  scroll-padding: 30px 0;
  background: #2a2d33;
  overflow-x: hidden;
  overflow-y: scroll;
}

@media (max-width: 768px) {
  .collapse-outer {
    top: 46px;
    max-height: calc(100vh - 46px);
  }
}

@media (max-width: 576px) {
  .collapse-outer {
    top: 46px;
    max-height: calc(100vh - 46px - 80px);
  }
}

.collapse-outer-btn {
  color: #ffffff;
  border-radius: 0;
}

.collapse-outer-btn:hover,
.collapse-outer-btn-active {
  border-radius: 0;
  background: #2ed1f7;
  color: #212121;
}

.collapse-inner {
  position: fixed;
  z-index: 2;
  top: 70px;
  height: 100%;
  overflow-y: scroll;
  padding-left: 100px;
  background-color: #ffffff;
  transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (max-width: 576px) {
  .collapse-outer {
    width: 10%;
  }

  .collapse-inner {
    top: 46px;
    padding-left: 50px;
  }
}

.collapse-inner li {
  list-style: none;
}

.collapse-inner-content {
  width: 300px;
  height: 100vh;
  top: 0;
  padding: 0;
}

.collapse-background {
  position: fixed;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.2;
}

.tag-btn {
  font-size: 14px;
  color: #ffffff;
  display: block;
  padding: 0.1rem 1.8rem;
  transition: all 0.3s ease;
}

.tag-btn:hover {
  cursor: pointer;
  color: #212121;
  border-radius: 2px;
  background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
}

/* badage */
.badge {
  font-size: 14px;
  line-height: 1.8;
  padding: 0 8px;
  margin-bottom: 8px;
  margin-right: 8px;
  font-weight: normal;
}

.badge:hover {
  border-bottom: 2px solid #4e4e4e;
  border-right: 2px solid #4e4e4e;
  color: inherit;
  cursor: pointer;
}

.badge:hover i {
  color: #ce081f;
  font-weight: 700;
}

.badge-outline-dark-gray {
  border: 1px solid #4e4e4e;
  color: #4e4e4e;
  background: #fff;
}

.badge-ag {
  color: #4e4e4e;
  border: 1px solid #4e4e4e;
  border-radius: 25px;
  background-color: #ffffff;
  margin: 0 10px 10px 0;
}

/* loading spinner */
.spinner-outer {
  text-align: center;
  padding: 64px 0;
  position: relative;
}

.spinner {
  width: 100px;
  height: 100px;
  color: #2a486c;
}

.spinner-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #2a486c;
}

/* ellipsis */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-multi {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  max-width: 86%;
}

.cancel-ellipsis-multi {
  overflow: auto;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}

.ellipsis-more {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 1rem;
  background: #fff;
  opacity: 0.8;
  color: var(--sub-colorC);
  font-size: 14px;
  line-height: 1.85;
}

.ellipsis-more:hover {
  cursor: pointer;
}

.hover-forbidden:hover,
.hover-forbidden *:hover {
  color: inherit;
  cursor: default;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
}

/* card */
.card {
  display: flex;
  padding: 30px 48px;
  font-size: 14px;
  line-height: 1.4;
  border: 2px #000000 solid;
  border-radius: 0;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #00539f;
}

.card-subTitle {
  color: #9e9e9e;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

.card-text {
  font-size: 16px;
  line-height: 1.625;
}

.card-toolbox {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 30px;
  padding: 10px 36px 10px 14px;
  font-size: 16px;
  line-height: 20px;
}

.card-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.card-sesinfo {
  font-size: 15px;
  color: var(--sub-colorC);
  margin-bottom: 0;
}

/* form */
.form-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  /* background: #fff; */
  /* border: 1px solid #ced4da; */
  border-radius: 0.5rem;
  padding: 0.375rem 0.875rem;
}

.form-control {
  padding: 0;
  border: none;
}

.form-control:focus {
  border: none;
  box-shadow: none;
}

/* tab */
.tabAgenda {
  padding: 5px 15px;
  margin-right: 20px;
  border: 2px solid #999999;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}

.tabAgenda a {
  color: #666666;
}

.tabAgenda:hover {
  transform: translateY(3px);
  cursor: pointer;
}

.tabA-active {
  font-weight: 700;
  border: 2px solid #212121;
  background-color: var(--main-colorY);
}

.tabA-active a {
  color: #212121 !important;
}

.tabA-active .tabAgenda-tag {
  font-weight: 400;
}

.tabAgenda-tag {
  background-color: var(--darkgray);
  font-size: 14px;
  border-radius: 20px;
  color: #ffffff;
  padding: 0 10px;
  margin-left: 8px;
}

/* campaign btn collapse */
.collapse-animation {
  max-height: 0;
  opacity: 0;
  transition: 1s ease max-height, 1s ease opacity;
  overflow: hidden;
}

.collapse-animation-active {
  max-height: 250px;
  opacity: 1;
  transition: 1s ease max-height, 1s ease opacity;
  overflow: visible;
}


/* ============================
     20230323 new
   ============================*/
.side-box {
  padding: 3rem 1.5rem;
  background-image: url(../img/sidebox_bg.png);
  background-repeat: no-repeat;
  background-color: #11a785;
}

.side-box h4 {
  color: #ffffff;
  line-height: 2;
  border-bottom: 1px solid #efefef;
}

.side-box h4:hover {
  color: var(--main-colorY);
}

.side-box h4 i {
  font-size: 18px;
}

.right-area {
  padding-top: 4rem;
}