/*! mixins */
/*----------------------------------------------
 *key options                                  
 *- top-left,top-right,bottom-left,bottom-right
-----------------------------------------------*/
/*---------------------------------------
 *media queries                         
 *- break points options from variables:
 *  $bp-xs: 576px;                        
 *  $bp-sm: 768px;                        
 *  $bp-md: 992px;                        
 *  $bp-lg: 1200px;                       
----------------------------------------*/
.o-loading {
  position: absolute;
  pointer-events: none;
  z-index: 1000;
  font-weight: bold;
}
.o-loading--center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.o-loading--left {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.o-loading--right {
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.o-loading__parent {
  position: relative;
  overflow: hidden !important;
}
.o-loading__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 999;
}
.o-loading__spinner {
  display: flex;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(234, 242, 242, 0.8);
  padding: 0.5rem;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.2);
  height: 3rem;
}
.o-loading__spinner .spinner-border {
  flex-shrink: 0;
}
.o-loading__text {
  flex-shrink: 0;
}

.o-btn-group {
  display: inline-block;
  margin: 8px;
  font-size: 0;
}
.o-btn-group .o-btn {
  margin: 0;
  border-radius: 0;
}
.o-btn-group .o-btn:first-child {
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.o-btn-group .o-btn:last-child {
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.o-btn {
  display: inline-block;
  font-size: 1rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 2rem;
  border: none;
  cursor: pointer;
}
.o-btn .dropdown-menu {
  font-size: 13.4px;
}
.o-btn:focus, .o-btn:active {
  position: relative;
  box-shadow: 0 0 1px 2px rgba(1, 112, 210, 0.7);
  z-index: 1;
  outline: none;
}
.o-btn:first-child {
  margin-left: 0;
}
.o-btn:last-child {
  margin-right: 0;
}
.o-btn--circle {
  border-radius: 100%;
}
.o-btn--text {
  width: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.o-btn--ellipse-icon {
  width: 2.4rem;
  border-radius: 2rem;
}
.o-btn--ellipse-text {
  width: auto;
  border-radius: 2rem;
}
.o-btn--tag-style {
  display: inline-flex;
  border: 1px solid #007bff;
  color: #007bff;
  background-color: rgba(0, 123, 255, 0.15);
  box-shadow: none;
  height: auto;
}
.o-btn--tag-style .o-btn__icon {
  color: #007bff;
}
.o-btn--tag-style .o-btn__icon.icon-multiply {
  color: red !important;
  opacity: 0.5 !important;
  transition: 0.3s;
}
.o-btn--tag-style .o-btn__icon.icon-multiply:hover {
  opacity: 1 !important;
}
.o-btn--tag-style .o-btn__text {
  color: #007bff;
}
.o-btn__icon {
  color: #1f1f1f;
  font-size: 1rem;
  opacity: 0.8;
}
.o-btn__icon:before {
  margin: 0 !important;
}
.o-btn__text {
  display: inline-block;
  font-size: 13.4px;
  color: #1f1f1f;
  margin: 0 5px;
}
.o-btn__text:first-child {
  margin-left: 0;
}
.o-btn:hover .o-btn__icon {
  opacity: 1;
  color: #007bff;
}
.o-btn.is-selected {
  color: #B8431B;
}

.o-box {
  background-color: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.95);
  border-radius: 5px;
  transition: 0.2s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  font-size: 1rem;
}
.o-box--group {
  background-color: rgba(255, 255, 255, 0.5);
}
.o-box--swipable {
  padding-top: 24px;
}
.o-box--swipable:before {
  content: "";
  position: absolute;
  top: 7.5px;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background-color: white;
  left: 50%;
  transform: translate(-50%, 0);
}
.o-box--swipable-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
}
.o-box--draggable .o-box__content {
  max-height: calc(100% - 30.4px) !important;
}
.o-box--draggable:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  background-color: white;
  width: 5px;
  height: 5px;
  border-radius: 100%;
}
.o-box--min {
  width: 2rem !important;
  height: 2rem !important;
  padding: 8px !important;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}
.o-box--min .o-box__content {
  max-height: 0 !important;
  padding: 0;
}
.o-box--min .o-box__title-text {
  display: none;
}
.o-box--min .o-box__btn {
  display: none;
}
.o-box--min .o-box__title {
  text-align: center;
  margin-bottom: 0;
}
.o-box--min .o-box__title-icon {
  line-height: 1rem;
  margin-right: 0;
}
.o-box--min .o-box__min-btn {
  display: block;
}
.o-box--no-radius {
  border-radius: 0;
}
.o-box__title {
  margin-bottom: 8px;
  line-height: 2rem;
  font-weight: bold;
  font-size: 1.1rem;
}
.o-box__sub-title {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  color: rgba(29, 64, 103, 0.7);
}
.o-box__title-icon {
  display: inline-block;
  line-height: 2rem;
  vertical-align: top;
  margin-right: 8px;
  color: white;
}
.o-box__title-icon:before {
  margin: 0 !important;
}
.o-box__title-text {
  display: inline-block;
  line-height: 2rem;
  vertical-align: top;
  font-weight: 400;
}
.o-box__btn {
  margin: 0;
  font-size: 0;
}
.o-box__btn .o-btn-group {
  margin: 0;
}
.o-box__btn .o-btn {
  margin-top: 0;
  margin-bottom: 0;
}
.o-box__content {
  font-size: 1rem;
  word-break: break-all;
  max-height: calc(100% - 24px);
  margin: 0 -8px;
  padding: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.5s;
}
.o-box__min-btn {
  position: absolute;
  display: none;
  right: 0;
  background-color: white;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  text-align: center;
  line-height: 16px;
  top: 0;
  transform: translate(50%, -50%);
  color: rgba(0, 0, 0, 0.95);
  font-size: 12px;
  cursor: pointer;
}
.o-box__min-btn .o-btn__icon {
  color: rgba(255, 255, 255, 0.95);
}

.o-backdrop-box {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  backdrop-filter: blur(7px);
}

.o-cta-btn {
  border-radius: 34px;
  padding: 0px 15px;
  margin-right: 10px;
  line-height: 30px;
  background: linear-gradient(45deg, rgb(33, 158, 243), rgb(0, 188, 212));
  color: white;
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 3px;
  cursor: pointer;
}

.o-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.o-list:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.o-list__title {
  font-weight: bold;
  line-height: 55px;
  cursor: pointer;
  padding: 0 16px;
  opacity: 0.9;
}
.o-list__title > div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.15rem;
}
.o-list__title:hover {
  opacity: 1;
}
.o-list__title:hover .o-list__title-icon {
  position: relative;
  top: -3px;
}
.o-list__title-action-icon {
  transition: 0.3s;
}
.collapsed .o-list__title-action-icon {
  transform: rotate(180deg);
}
.o-list__title-icon {
  position: relative;
  top: 0;
  color: #007bff;
  margin-right: 2px;
  font-size: 1.35rem;
  transition: 0.3s;
}
.o-list__content {
  margin-bottom: 8px;
  padding: 0 16px;
}
.o-list__item {
  cursor: pointer;
  padding-left: 32px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  font-weight: bold;
}
.o-list__item:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
  border-radius: 5px;
}

.o-feature-tip {
  padding: 10px 0px;
  margin: 0 3px 10px 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right: none;
  border-left: none;
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  line-height: 1.5em;
}

.o-accordion__group {
  position: relative;
  margin-bottom: 16px;
}
.l-news-accordion .o-accordion__group {
  margin-bottom: 0;
}
.o-accordion__group.is-hide-children {
  border-radius: 2px;
  background-color: white;
  left: 3px;
  width: calc(100% - 6px);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05), 1px 1px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 0px;
  color: rgba(0, 0, 0, 0.7);
}
.o-accordion__group.is-hide-children:after {
  content: none;
}
.o-accordion__group.is-hide-children label {
  margin-bottom: 0;
}
.o-accordion__group:after {
  content: "";
  top: 39px;
  left: 8px;
  position: absolute;
  height: calc(100% - 39px);
  width: 5px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.l-news-accordion .o-accordion__group:after {
  top: 45px;
  left: 24px;
  height: calc(100% - 25px);
}
.o-accordion__group-title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 7px;
  padding-top: 5px;
  cursor: default;
}
.l-news-accordion .o-accordion__group-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 15px 40px 15px 10px;
  text-align: justify;
  line-height: 1.5;
  min-height: 50px;
  font-size: 18px;
  margin-bottom: 0;
}
.is-hide-children .o-accordion__group-title {
  margin-bottom: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}
.o-accordion__group-title.is-invisible .o-accordion__group-visible {
  color: rgba(0, 0, 0, 0.3);
  background: url(../../assets/images/TOCpage/vis-off.png);
}
.o-accordion__group-tag {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  border-radius: 3px;
  margin-right: 10px;
  font-size: 12px;
  letter-spacing: 2px;
}
.o-accordion__group-tag--no-bg {
  background-color: transparent;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
}
.o-accordion__group-list {
  padding-left: 10px;
}
.l-news-accordion .o-accordion__group-list {
  padding: 20px 20px 20px 50px;
  background-color: rgba(255, 255, 255, 0.3);
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}
.o-accordion__group-visible {
  display: inline-block;
  position: relative;
  top: 1px;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url(../../../../images/tocPage/vis-on.png);
}
.o-accordion__group-controller {
  position: absolute;
  right: 0;
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.o-accordion__group-controller:hover {
  color: rgba(0, 0, 0, 0.7);
}
.o-accordion__group-controller.collapsed:before {
  content: "\e824";
}
.l-news-accordion .o-accordion__group-controller {
  right: 10px;
}
.l-news-accordion .collapsed .o-accordion__group-controller {
  transform: rotate(180deg);
}

.o-hori-card-list {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.o-hori-card-list::-webkit-scrollbar {
  height: 7px;
}
.o-hori-card-list .row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.o-hori-card-list [class^=col-] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.o-hori-card-list .card {
  display: inline-block;
  vertical-align: top;
  white-space: initial;
  height: 95%;
  margin-right: 10px;
}
.o-hori-card-list .card-content {
  height: calc(100% - 41px);
  overflow: auto;
}

.o-pill-item {
  background-color: #e4edf3;
  border-radius: 30px;
  padding: 5px;
  border: 2px solid rgba(19, 115, 191, 0.1);
}

.o-link-btn {
  padding: 0 8px;
}
.o-link-btn__icon {
  margin-right: 3px;
}
.o-link-btn__icon.icon-multiply {
  color: red;
}

.o-group-box {
  background-color: white;
}

.o-paragraph-title {
  padding-bottom: 3px;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.8);
}
.o-paragraph-title__icon {
  color: #007bff;
  margin-right: 3px;
  font-size: 17px;
}

.bg-light-blue {
  background-color: #eaf2f9 !important;
}/*# sourceMappingURL=o-all.css.map */