body {
  font-size: 16px;
  font-family: Helvetica, Arial, "Heiti TC", "Heiti SC", "Microsoft JhengHei", "Microsoft YaHei", "ST Heiti", "LiHei Pro", SimHei, sans-serif;
  background-color: #f5f5f5;
  position: relative;
  min-height: 100vh;
}

.main-hr{
  border: 2px solid #E4831A;
 }

.cursor-pointer {
  cursor: pointer
}

.forSmallGrid {
  display: none;
}

.bg-index {
  background-color: #fff;
  /* background-image: url(/static/assets/images/bg-index.png); */

}

.bg-list {
  background-color: #fff;
  /* background-image: url(/static/assets/images/bg-list.svg); */
}

.icon-size-30 {
  width: 30px !important;
  height: 30px !important;
  cursor: pointer;
}

.article-separation-line {
  margin-top: 0px;
  margin-bottom: 20px;
  border: 1px solid #5FB7AC;
}

button.btn.btn-version-reload {
  width: 100px;
  height: 36px;
  border-radius: 6px;
  font-size: 16px;
}

/* overwrite bootstrap */
@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}

.bg-content {
  background-image: url(/static/assets/images/bg-content.png);
  background-position: right top;
  background-size: auto;
}

.bg-sets {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  background-size: 100%;
  background-repeat: no-repeat;
}

/* overwrite bootstrap */
@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }

  .forBigGrid {
    display: none;
  }

  .forSmallGrid {
    display: block;
  }

  .bg-index {
    background-image: url(/static/assets/images/mobile-bg-index@3x.png);
  }

  .bg-list {
    background-image: url(/static/assets/images/mobile-bg-list@3x.png);
  }

  .bg-content {
    background-image: url(/static/assets/images/mobile-bg-content@3x.png);
  }

}





.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.light-blue-grey {
  color: #cdd2d3;
}

.turquoise-blue {
  color: #08b2b4;
}

.charcoal-grey {
  color: #37373c;
}

.pastel-orange {
  color: #ff8f56;
}

.bg-card-wrap {
  background-color: rgba(84, 184, 178, 0.2);
}

/* .d-none {
  display: none !important;
} */

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}
.icon20{
  width: 20px;
  height: 20px;
}
.icon32{
  width: 32px;
  height: 32px;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }
}

@media (min-width: 767px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }
}

/* modal dialog */
.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  align-items: center;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 32px;
  color: #08b2b4;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  font-size: 20px;
  color: #9e9e9e;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  /* border-top: 1px solid #e9ecef; */
  /* border-bottom-right-radius: 0.3rem; */
  /* border-bottom-left-radius: 0.3rem; */
}

.modal-footer> :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer> :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
/* ---------------------------------- page index css ----------------------------------- */

.page-container {
  display: flex;
  background-color: #fff;
  width: calc(100vw - 16px);
}

@media (max-width: 767px) {
  .page-container {
    width: 100%;
  }
}
.unfullSizeMask{
  position : absolute;
  width: 100%;
  height : 100%;
  top: 0px;
  left: 0px;
  opacity: 0.4;
  background-color: #ffffff;
  z-index: 10;
}
.fullSizeMask{
  position : fixed;
  width: 100%;
  height : 100%;
  top: 0px;
  left: 0px;
  opacity: 0.4;
  background-color: #ffffff;
  z-index: 10000;
}
.unfullSizeMask circle, .fullSizeMask circle{
  animation: circle-dash 2s ease-in-out infinite;
}

@keyframes circle-dash{
  0% {
    stroke-dasharray: 1, 125;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 125;
    stroke-dashoffset: -25px;
  }
  100% {
    stroke-dasharray: 100, 125;
    stroke-dashoffset: -125px;
  }
}
.circular{
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



.footer {
  width: 100%;
  text-align: center;
  color: #4D4D4D;
  font-size: 12px;
  margin-bottom: 20px;
  margin-top: 20px;
}

button.btn {
  color: #fbfbfb;
  font-size: 1.25rem;
  border: 0;
  border-radius: 40px;
  cursor: pointer;
  min-width: 120px;
  min-height: 40px;
  background-color: #FFF;
  font-size: 16px;
  line-height: 18px;

}

button.btn-dialog {
  width: 180px;
  font-size: 1rem;
  border-radius: 6px;
}

button.btn[disabled],
button.btn[disabled]:hover,
button.btn[disabled]:focus
button.btn[disabled]:active {
  color: #9e9e9e;
  background: #cdd2d3;
  cursor: not-allowed !important;
}

button.btn:focus, button.btn:active {
  /* border-style: outset; */
  outline: 0;
}

/*primary*/
button.btn-primary {
  background: #08b2b4;
}

button.btn-primary:hover {
  background: rgba(8, 178, 180, 0.4);
}

button.btn-primary:focus, button.btn-primary:active {
  background: rgba(8, 178, 180, 0.7);
}

/*primary-light*/
button.btn-primary-light {
  background: #50c7c8;
}

button.btn-primary-light:hover {
  background: rgba(8, 178, 180, 0.4);
}

button.btn-primary-light:focus, button.btn-primary-light:active {
  background: rgba(8, 178, 180, 0.7);
}

/*secondary*/
button.btn-secondary {
  background-color: #041E42;
}

button.btn-secondary:hover {
  background-color:rgba(45, 66, 139, 0.4)
}

button.btn-secondary:focus, button.btn-secondary:active {
  background-color:rgba(45, 66, 139, 0.7)
}

/*cancel*/
button.btn-cancel {
  background-color: #fff;
  border: solid 1px #9e9e9e;
  color: #9e9e9e;
  font-size: 1.25rem;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  line-height: 18px;
}
button.btn-cancel:hover{
  color: rgba(158, 158, 158, 0.4);
}

/* button.btn-cancel:hover {
  background-color:rgba(255, 143, 86, 0.4)
} */

/* button.btn-cancel:focus, button.btn-cancel:active {
  background-color:rgba(255, 143, 86, 0.7)
} */

/*primary-white*/
button.btn-primary-w {
  border-radius: 6px;
  border: solid 1px #08b2b4;
  color: #08b2b4;
}

button.btn-primary-w:hover {
  color: rgba(8, 178, 180, 0.4);
}

button.btn-primary-w:focus, button.btn-primary-w:active {
  color: rgba(8, 178, 180, 0.7);
}


/*icon*/
button.btn-icon {
  background: none;
  width: 46px;
  height: 35px;
}

button.btn-icon:hover {
 opacity: 0.6; 
}
.header{
    width:100%;
    padding:12px 6%;
   /*  display: flex;
    justify-content: space-between;
    align-items: center; */
}

.header-icon{
    height: 28px;
    width: 28px;
}

.header-name{
  color:#4D4D4D;
  white-space: nowrap;
  min-width: 32px;
}

.user-wrapper {
    position: relative;
  }
  
  .user-wrapper div a {
    display: inline-block;
    color: #ff8f56;
    text-decoration: none;
  }
  
  .user-header {
    cursor: pointer;
  }

  ul.hv-list {
    padding: 0px 0 0 0;
    position: absolute;
    left: 0;
    z-index: 99;
    list-style: none;
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2);
  }
  
  ul.hv-list li {
    border-bottom: 1px solid #cdd2d3;
    background-color: #fbfbfb;
  }
  
  ul.hv-list li a {
    padding: 0 4px;
    color: #37373c;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    min-width: 100px;
    width: 100%;
    background-color: #fbfbfb;
    text-decoration: none;
    text-align: center;
  }
  
  ul.hv-list li:hover,
  ul.hv-list li a:hover {
    background-color: #ff8f56;
  }

  .header-block{
    margin-bottom: 60px;
  }

  @media (max-width: 767px) {
    .header{
      background-color: #F2F2F2;
      /* height: 60px; */
      padding: 12px 18px;
      
    }

    .header-container{
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
      position: fixed;
      top: 0px;
      width: 100vw;
      z-index: 1;
    }

    .mobile-searchBar-btn{
      border-radius: 50%;
      background-color: #F2F2F2;
      padding: 2px;
    }

    .mobile-searchBar-btn-active{
      border-radius: 50%;
      background-color: #C0C6DC;
      padding: 2px;
    }

    .mobile-searchBar-container{
      background-color: #F2F2F2;
      padding: 8px;
    }
  }
.searchBar-container .searchBar {
  border-radius: 4px;
  border: solid 1px #C7C7C7;
  background-color: #ffffff;
  padding-left: 8px;
  margin: 0px auto;
  height: 40px;
  width: 480px;
}

.searchBar-container .searchBar input {
  width: calc(100% + -49px);
  height: 22px;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  background: #ffffff;
  vertical-align: middle;
  border: none;
}

.searchBar-container .searchBar button .icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  vertical-align: middle;
  margin: 0px auto;     /*       ???        */
}
.searchBar-container .searchBar button .icon,
.searchBar-container .searchBar button:hover {
  color: #37373c;
  cursor: pointer;
}
.searchResult {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color:#041E42;
  padding-top: 12px;
}

.mobile-searchBar{
  width: 100%;
  margin:0px;
  padding:0px;
  height: 60px;
  border:1px solid #041E42;
  padding: 2px 52px 2px 8px;
}

.mobile-search-btn{
  position: absolute;
  right: 12px;
  top:16px;
  width: 28px;
  height: 28px;
}

.mobile-search-icon{
  width: 28px;
  height: 28px;
}


button.search-btn {
  width: 49px;
  height: 38px;
  min-width: auto;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: #fff;
  border-color: #fff;
  outline: none;
} 

.tab-item{
  display:flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0px;
  border-radius: 20px;
  width:120px;
  background-color: #E5E5E5;
  line-height: 18px;
  cursor: pointer;
}

.tab-item-actived{
  display:flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0px;
  border-radius: 20px;
  width:120px;
  background-color: #2D428B;
  line-height: 18px;
  cursor: pointer;
  color:#fff
}

.tab-item .active{
  background-color: #37373c;
}

.tab-list{
  display: inline-flex;
  border-radius: 20px;
  background-color: #E5E5E5;
}

@media (max-width: 767px) {
  .tab-list{
    display: flex;
  }
  .tab-item, .tab-item-actived{
    width: 100%;
  }

}
/* .main-header-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
}

.main-header-md {
  display: none;
  position: relative;
}

.main-nav-md {
  z-index: 9999;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  overflow: hidden;
  background-color: #fbfbfb;
  transition: width .3s ease;
}

header .mobile-menu-bg-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  transition: 0.3s ease;
  visibility: hidden;;
}

header .mobile-menu-bg-mask.active {
  background-color: rgba(0, 0, 0, 0.3);
  visibility: visible;
}

.main-nav-md.active {
  width: 62.5%;
  overflow-y: auto;
}
header ul.user li ul li a{
  color: #37373c;
  text-decoration:none;
}

.user-wrapper {
  position: relative;
}

.user-wrapper div a {
  display: inline-block;
  color: #ff8f56;
  text-decoration: none;
}

.user-header {
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-header-lg {
    display: none;
  }

  .main-header-md {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -15px;
    padding: 15px;
    height: 107px;
    background-color: #f2fbfb;
  }
}

.search-bar-region {
  position: relative;
  margin: 0 -15px;
}

@media (max-width: 768px) {
  .search-bar-region {
    display: none;
  }

  .search-bar-region.open {
    display: block;
  }
}
 */
 .navbar {
  position: fixed;
  top: 0px;
  width:240px;
  height: 100vh;
  background-color: #F8F8F8;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow-x: auto;
 }

 .logo-container {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  cursor: pointer;
 }

 .logo-container img{
  width: 155px;
 }

 .nav-item{
  width:100%;
  height:60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color:#4D4D4D;
  font-weight: 700;
  font-size: 22px;
 }

 .nav-item:hover{
  width:100%;
  height:60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color:#fff;
  font-weight: 700;
  font-size: 22px;
  background-color: #E4831A;
 }

 .nav-item-actived{
  width:100%;
  height:60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color:#fff;
  font-weight: 700;
  font-size: 22px;
  background-color: #E4831A;
 }

 .navbar-hr{
  border: 2px solid #E4831A;
  margin: 0 20px;
 }

 @media (max-width: 767px) {
  .logo-container {
    height: 131px;
   }

  .logo-container img{
    width: 144px;
   }
 }
.sidebar-container{
    width:240px;
    background-color: #F4F4F4;
    height: 100vh;
}

.sidebar-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px;
}

@media (max-width: 767px) {
    .sidebar-header{
        padding: 14px 10px 0px;
    }
   }
.userinfo-list-item {
  width: 240px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4D4D4D;
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
}

.dialog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

/* .dialog-form {
    justify-content: center;
    align-items: center;
    height: 100%;
} */


.label-dialog {
  font-size: 14px;
  display: block;
}

.justify-content-right-dialog {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* .input-container-dialog {
  width: 80%;
  padding: 8px;
  box-sizing: border-box;
}

.input-container-dialog-mobile {
  height: 32px;
  width: 80%;
  padding: 8px;
  border: 1px solid #ccc;
} */

.input-container-dialog {
  width: 356px;
  height: 32px;
  border: 1px solid #ccc;
}

.input-container-dialog-mobile {
  height: 32px;
  width: 323px;
  border: 1px solid #ccc;
}

.button-group {
  display: flex;
  padding-top: 20px;
  gap: 10px;
  margin: 10px;
}

.actions-container {
  display: flex;
  justify-content: flex-end;
}

Button.btn-dialog {
  background-color: #2D428B;
  color: white;
  border: none;
  width: 102px;
  height: 40px;
  font-size: 16px;
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.mb {
  margin-bottom: 8px;
}

.login-container {
  overflow: auto;
  background-image: url(/static/assets/images/bg-login.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

form.login {
  width: 570px;
  height: 480px;
  padding: 60px 107px 87px;
  border: 1px solid #cdd2d3;
  border-radius: 12px;
  background-color: #fbfbfb;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

form.login .icon {
  position: absolute;
  margin: 9px 6px;
  height: 28px;
  width: 28px;
}



form.login .input-container {
  position: relative;
  margin-bottom: 40px;
}

.input-container input {
  width: 100%;
  height: 48px;
  border: 1px solid #C7C7C7;
  color: #9e9e9e;
}

.login .input-container input {
  text-indent: 36px;
}

.input-container input:focus,
.searchBar-container .searchBar input:focus {
  outline: none;
}

.button-group {
  display: flex;
  padding-top: 20px;
  gap: 10px; 
  margin: 10px;
}

.login .btn-secondary {
  width: 166px;
  height: 40px;
  border-radius: 20px;
  font-size: 16px;
  border: none;
  background-color: #2D428B;
  color: white;
}

.login .btn-white {
  width: 166px;
  height: 40px;
  border-radius: 20px;
  font-size: 16px;
  border: 1px solid #2D428B;
  background-color: white;
  color: #2D428B;
}
.dialog-button {
  margin-left: 8px;
  width: 130px;
  display: inline-block;
}


.login .logo {
  width: 175px;
}

@media (max-width: 767px) {
  .login-container {
    background-image: url(/static/assets/images/bg-login-mobile.png);
  }

  form.login {
    height: auto;
    width: calc(100% - 32px);
    padding: 40px 12px;
  }

  .login .logo {
    width: 130px;
  }
  
}

/* @media (max-width: 992px) {
  form.login {
    width: 85%;
    margin: 140px auto;
    padding: 48px 32px;
  }
} */

/* @media (max-width: 576px) {
  form.login {
    margin: 32px auto;
  }
} */

.dialog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 216px;
  background-color: rgba(0, 0, 0, 0.5);
}

.dialog {
  width: 380px;
  height: 216px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.close-icon {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.dialog-title {
  font-size: 24px;
  margin-bottom: 10px;
  padding-right: 50px;
}

.label-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 32px;
  color: #2d4373;
}
.required {
  color: red;
  margin-left: 1px;
}

.input-container-dialog {
  width: 356px;
  height: 32px;
  border: 1px solid #ccc;
}

.input-container-dialog-mobile {
  height: 32px;
  width: 323px;
  border: 1px solid #ccc;
}


.input-container-dialog::placeholder {
  color: #ccc;
}

/* .dialog-container-dialog {
  width:380px;
}

.dialog-container-dialog-mobile {
  width:345px;
} */

Button.btn-secondary-dialog {
  background-color: #2D428B;
  color: white;
  border: none;
  width: 102px;
  height: 40px;
  font-size: 16px;
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

Button.btn-secondary-dialog:hover {
  background-color: #2d4373;
  color: white;
  width: 102px;
  height: 40px;
  font-size: 16px;
}

Button.btn-secondary-dialog:focus,
Button.btn-secondary-dialog:active {
  outline: 0;
  background-color: #2d4373;
  color: white;
  width: 102px;
  height: 40px;
  font-size: 16px;
}

.label-dialog {
  font-size: 14px;
  display: block;
}

.label-error-dialog {
  font-size: 14px;
  color: red;
  display: block;
}

.justify-content-right-dialog {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.actions-container {
  display: flex;
  justify-content: flex-end;
}

.btn-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}



.index-topic {
  font-weight: 600 !important;
  margin-top: 20px;
  margin-bottom: 12px;
}

.col-adj-p {
  padding: 0 16px 16px 0;
}

.recommendation-activity {
  padding-right: 32px;
  cursor: pointer;
  color: #ffffff;
  position: fixed;
  left: 24px;
  bottom: 12px;
  width: 329px;
  height: 62px;
  border-radius: 4px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #85c7c8;
  display: flex;
  align-items: center;
}

.recommendation-activity .close-icon {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 32px;
  height: 32px;
}

.recommendation-activity .image-wrapper {
  margin-left: 8px;
  margin-right: 8px;
}

.recommendation-activity .image-container {
  width: 80px;
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
  overflow: hidden;
}

.recommendation-activity .image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: center;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
}

.article-container {
  padding-left: 6%;
  padding-right: 6%;
  /* min-width: 860px; */
}

.articles-board .first-article {
  cursor: pointer;
}

.articles-board .first-article .image-container {
  width: 100%;
  /* height: 392px; */
}

.articles-board .secondary-article .image-container {
  /* width: 180px;
  min-width: 180px; */
  width: 40%;
  min-width: 40%;
  /* height: 114px; */
  margin-right: 12px;
}
.mobile-article .image-container {
  width: 100%;
  height: calc(100vw * 0.6);
  margin-right: 12px;
}

.articles-board .secondary-article {
  cursor: pointer;
}

.articles-board .image ,
.mobile-article .image{
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 56%;
  position: relative;
}

/* 首頁左側大圖影片符號定位 */
.articles-board .first-article .play-btn {
  width: 45px;
  height: 45px;
  right: 0;
  padding: 8px;
  /* 修正 padding-bottom 佈局導致的定位問題 */
  top: calc(100% - 45px);
  bottom: auto;
  /* 確保顯示在標題列上方 */
  z-index: 1;
}

.articles-board .title {
  width: 100%;
  position: absolute;
  bottom: 0px;
  padding: 8px 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background-color: #2D428B;
}

.mobile-article .mobile-title{
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #2D428B;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-article .date{
  font-size: 14px;
  line-height: 14px;
  color:#808080
}

.secondary-article .subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #2D428B;
  cursor: pointer;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.secondary-article:hover .subtitle {
  color: #E4831A
}

.secondary-article .description {
  color: #4D4D4D;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 28px;
}


@media (max-width: 767px) {
  .recommendation-activity {
    width: 100%;
    left: 0;
    bottom: 0;
    height: 80px;
    font-size: 1rem;
  }

  .recommendation-activity .close-icon {
    position: absolute;
    top: 9px;
    right: 9px;
  }

  .recommendation-activity .image-wrapper {
    margin-left: 16px;
    margin-right: 10px;
  }

  .article-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .list-container{
    padding-left: 16px;
    padding-right: 16px;
  }
}
div.topic {
  font-size: 24px;
  font-weight: 700;
  color: #041E42;
}
ul.pagination {
  display: inline-block;
  margin: 0;
  padding: 0;
}

ul.pagination li {
 display: inline-block;
}

ul.pagination li+li:before {
  padding-left: 8px;
  content: "";
}

ul.pagination a,
ul.pagination a:link,
ul.pagination a:visited {
  outline: none;
  color: #9e9e9e;
  /* padding-top: 5px; */
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 40px;
  text-align: center;
}

ul.pagination a:active,
ul.pagination a:hover {
  cursor: pointer;
  text-decoration: none;
}

ul.pagination li.active a {
  color: #fff;
  background-color: #E4831A;

}

.to-first-button,
.to-last-button {
  cursor: pointer;
}

.to-last-button{
  margin-left: 8px;
}

div.list {
  width: 100%;
  cursor: pointer;
  position: relative;
}

div.list .image-container {
  height: 100%;
  width: 25%;
  min-width: 25%;
  position: relative;
  overflow: hidden;
  float: left;
}

div.list .image {
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 56%;
  position: relative;
}

div.list .image img {
  width: 100%;
  vertical-align: top;
}

.list-hr {
  border: 0;
  border-bottom: 1px solid #5FB7AC;
  margin: 12px 0px;
}

/* div.list .image:after {
  content:'';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 143, 86, 0.4);
  opacity:0;
  transition: all .3s;
  -webkit-transition: all .3s;
} */

div.list .play {
  width: 30px;
  height: 30px;
  bottom: 8px;
  right: 8px;
  position: absolute;
}

div.list .content {
  margin: 12px 0px 0px 12px;
  float: left;
  /*   height: 143px; */
  width: 100%;
}

div.list .title {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

div.list .description {
  font-size: 18px;
  /* height: 64px; */
  color: #4D4D4D;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.icon-label {
  color: #4D4D4D;
  display: flex;
  align-items: center;
  line-height: 16px;
  font-size: 14px;
}

.list-icon {
  width:24px;
  margin-right: 4px;
  
}

div.list .author {
  float: right;
  max-width: calc(100% - 90px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div.list .extData {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  width: 59px;
  height: 30px;
  bottom: 0;
  right: 0;
  position: absolute;
  border-radius: 4px 0 0 0;
  border: solid 1px rgba(245, 245, 245, 0.9);
  background-color: rgba(0, 0, 0, 0.7);
  line-height: 30px;
}

.theme-icon {
  height: 24px;
  width: 24px;
  margin-right: 2px;
}

.theme-title {
  font-size: 14px;
}

div.list:hover .title {
  color: #E4831A;

}

.mobile-list-item {
  /* background-color: #5FB7AC; */
  padding-top: 10px;
  padding-bottom: 10px;
}

.mobile-list-item .image-container {
  position: relative;
  height: 45px;
  width: 80px;
  min-width: 80px;
}

.mobile-list-item .image {
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 56%;
  position: relative;
}

.mobile-list-item .title {
  color: #4D4D4D;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 52px;
}

.mobile-list-item .subtitle {
  margin-left: 84px;
  /* height: 30px; */
  
}

.mobile-list-item .play {
  width: 30px;
  height: 30px;
  top: 7px;
  left: 25px;
  position: absolute;
}

.mobile-list-item .icon-label-list {
  margin-left: 84px;
  margin-top: 8px;
}



@media (max-width: 767px) {

  .list-hr {
    border-bottom: 1px solid #C7C7C7;
  }

  div.list {
    width: 100%;
    height: auto;
    display: inline-block;
    position: relative;
    border: 1px solid #cdd2d3;
    border-radius: 4px;
    max-width: 100%;
    color: #9e9e9e;
    background: #fbfbfb;
  }

  div.list .image-container {
    padding-bottom: 56.25%;
    margin-bottom: 1rem;
    height: 0;
    width: auto;
    position: relative;
    overflow: hidden;
    float: none;
  }

  div.list .image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
  }

  div.list .image img {
    width: 100%;
    vertical-align: top;
  }

  /*  div.list .image:after {
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 143, 86, 0.4);
    opacity:0;
    transition: all .3s;
    -webkit-transition: all .3s;
  } */

  div.list .content {
    margin: 12px 0px 12px 12px;
    width: auto;
    height: 100%;
    float: none;
    position: static;
  }

  div.list .title {
    font-size: 1.5rem;
    color: #37373c;
    height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  /*   div.list .description {
    height: 64px;
    color:#4D4D4D;
    overflow: hidden;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
  }
 */
  /*   div.list:hover .title {
    color: #ff8f56;
  }
 */
  div.list .author {
    float: right;
    max-width: calc(100% - 90px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }


}

@media (min-width: 1440px) {
  div.list .image-container {
    width: 20%;
    min-width: 20%;
  }
}
.softmobile-snackbar{
	position: fixed;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2000;
	overflow: hidden;
	overflow-y: initial;
	text-align: center;
	box-shadow: 0px 4px 12px 0px #00000040;
}

.softmobile-snackbar .snackbar-container{
	white-space: nowrap;
	transition: all 0.5s;
	background-color: #ffffff;
	display: flex;
	align-items: center;
}

.softmobile-snackbar .softmobile-snackbar-movein{
	overflow: hidden;
	animation: movein 0.3s;
}

.softmobile-snackbar .softmobile-snackbar-moveout{
	overflow: hidden;
	animation: moveout 0.3s;
}

.softmobile-snackbar-success{
	background-color: #48B070;
}

.softmobile-snackbar-error{
	background-color: #E35B6C;
}

.softmobile-snackbar .ic-img{
	width: 100%;
}

.softmobile-snackbar .img-container{
	width: 32px;
	height: 32px;
}

.softmobile-snackbar .snackbar-container .message-container{
	height: 32px;
	white-space: nowrap;
	padding: 5px 12px;
	font-size: 14px;
	line-height: 22px;
}



@keyframes movein {
  /* You could think of as "step 1" */
  0% {
		height: 0px;
		opacity: 0.1;
  }
  /* You could think of as "step 2" */
  100% {
		height: 30px;
		opacity: 1;
  }
}


@keyframes moveout {
  /* You could think of as "step 1" */
  0% {
		height: 30px;
		opacity: 0.8;
  }
  /* You could think of as "step 2" */
  100% {
		height: 0px;
		opacity: 0;
  }
}
/* .container {
  font-family: "Montserrat";
} */

.article-layout-left {
  width: 100%;
  padding-top: 12px;
}

.article-content {
  width: 860px;
  margin-left: auto;
  margin-right: auto;
  /* padding-right: 86px; */
}

.article-author,
.article-hits,
.article-date {
  /* font-family: "Montserrat";
  font-size: 16px;
  line-height: 18px; */
  color: #4d4d4d;
  font-weight: 400;
  text-align: center;
  justify-content: center;
  align-items: center;
}

div.article-card-title {
  font-weight: 400;
}

.article-info {
  position: relative;
  display: flex;
  font-size: 16px;
  padding-top: 18px;
  padding-bottom: 8px;
}

.article-all {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.article-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* align-items: center; */
}

.article-hot {
  padding: 16px 0 0 16px;
  margin-bottom: 4px;
}

.article-layout .info-icon {
  margin-right: 8px;
  width: 28px;
}

.info-icon-after {
  margin-left: 18px;
}

.article-font-adjust {
  /* position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%); */
  float: left;
  padding-bottom: 12px;
}

.article-data {
  /* position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%); */
  float: right;
}

.vertical-divider {
  margin-right: 12px;
  border-right: 1px solid #c7c7c7;
}

@media (max-width: 767px) {
  .article-content {
    width: 100%;
    margin: 0;
  }

  .article-info {
    font-size: 14px;
    display: block;
    padding-bottom: 0px;
  }

  .article-author img{
    width: 40%;
  }

  .info-icon {
    margin-right: 4px;
  }

  .article-font-adjust {
    float: none;
  }

  .article-data {
    float: none;
  }
}
ul.brdcrmbs {
  padding-left: 0;
  margin: 0;
}

ul.brdcrmbs a,
ul.brdcrmbs a:link,
ul.brdcrmbs a:visited {
  color: #808080;
}

ul.brdcrmbs a:hover,
ul.brdcrmbs a:active {
  text-decoration: none;
}

ul.brdcrmbs li {
  display: inline;
  font-size: 1rem !important;
  color: #041E42 !important;
}

ul.brdcrmbs li+li:before {
  padding: 8px;
  color: #000000;
  content: "/";
}

@media (max-width: 767px) {
  ul.brdcrmbs {
    margin-top: 24px;
  }
}
card-dispaly {
  display: inline-block;
}

div.card {
  width: 100%;
  position: relative;
  border: 1px solid #cdd2d3;
  border-radius: 4px;
  max-width: 365px;
  color: #9e9e9e;
}

div.article-card {
  width: 100%;
  position: relative;
  border: 0px;
  border-radius: 4px;
  max-width: 365px;
}

div.card .image-container {
  padding-bottom: 56.25%;
  margin-bottom: 1rem;
  height: 0;
  position: relative;
  overflow: hidden;
}

div.card .image {
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 56%;
  position: relative;
}

div.card .image img {
  width: 100%;
  vertical-align: top;
}

div.card .image:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* background-color: rgba(255, 143, 86, 0.4); */
  opacity: 0;
  transition: all .3s;
  -webkit-transition: all .3s;
}

div.card:hover .image:after {
  opacity: 1;
}

div.card .play {
  width: 74px;
  height: 74px;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  position: absolute;
  display: none;
}

div.card.videoCard:hover .play {
  display: block;
  z-index: 1;
}

.play-btn {
  width: 45px;
  height: 45px;
  bottom: 0;
  right: 0;
  padding: 8px;
}

div.card .content {
  margin: 16px;
}

div.card .title {
  font-size: 1.5rem;
  color: #37373c;
  height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-hover:hover .article-title{
  color: #E4831A;
}

div.card .description {
  height: 56px;
  overflow: hidden;
}

/* div.card:hover .title {
  color: #E4831A;
} */

a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

div.card .author {
  float: right;
  max-width: calc(100% - 90px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div.card .extData {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  width: 59px;
  height: 30px;
  bottom: 0;
  right: 0;
  position: absolute;
  border-radius: 4px 0 0 0;
  border: solid 1px rgba(245, 245, 245, 0.9);
  background-color: rgba(0, 0, 0, 0.7);
  line-height: 30px;
}

@media (max-width: 767px) {
  div.card {
    max-width: 100%
  }
}
div.tag {
  display: inline-block;
  width: 88px;
  height: 38px;
  font-size: 16px;
  font-weight: 500;
  /* padding: 3px 12px; */
  line-height: 38px;
  text-align: center;
  border-radius: 4px;
  border-top-left-radius: 3px;
  background: #08b2b4;
  color: white;
  position: relative;
}

div.tag.tag-tertiary {
  background-color: #37373c;
}
div.tag.tag-secondary {
  background-color: #ff8f56;
}

div.isRead {
  width: 6px;
  height: 6px;
  top: 4px;
  right: 4px;
  border-radius: 50%;
  z-index: 99;
  position: absolute;
  background-color: #e35b6c;
}
.downloadable-image div.image-content {
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 56%;
}
.downloadable-image div.image-content-vertical{
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 134%;
}

.downloadable-image a {
  display: inline-block;
}

.downloadable-image img {
  display: none;
  position: absolute;
  right: 1px;
  bottom: 1px;
}

.downloadable-image:hover img {
  display: block;
  width: 68px;
  height: 68px;
}

div.adjuster {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 12px;
  border: 1px solid #041E42;
}

div.become-bigger-focus {
  border: 1px solid #2D428B;
  background-color: #2D428B;
}

div.adjuster-img {
  width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.adjuster-img img {
  width: 100%;
}

div.box {
  display: flex;
}

div.left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

/*
.left-adjuster {
  width: 72px;
  height: 56px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border: solid 2px #08b2b4;
  border-right: solid 1px #08b2b4;
  float: left;
}

.left-become-bigger {
  background-color: #f5f5f5;
}

.left-become-bigger-focus {
  background-color: #08b2b4;
}

.right-adjuster {
  width: 72px;
  height: 56px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border: solid 2px #08b2b4;
  border-left: solid 1px #08b2b4;
  float: left;
}

.right-become-smaller {
  background-color: #f5f5f5;
}

.right-become-smaller-focus {
  background-color: #08b2b4;
}

div.left-become-bigger,
div.right-become-smaller,
div.box {
  cursor: pointer;
}

div.box {
  width: 144px;
  height: 56px;
  border-radius: 100px;
}

div.box:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 1px -1px rgba(0, 0, 0, 0.118), 0 1px 1px 0 rgba(0, 0, 0, 0.137);
}
*/
.feedback-overview .img-like {
  width: 150px;
  height: 56px;
  position: relative;
  float: left;
  cursor: pointer;
}

.notPressed-hover {
  width: 150px;
  height: 56px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  opacity: 0;
}

div.messageboard-title {
  font-weight: 400;
}

.feedback-overview .img-like.notPressed {
  width: 156px;
  height: 56px;
  /* content: url('/static/assets/images/btn-like-n.svg') ; */
}

.feedback-overview .img-like.notPressed:hover .notPressed-hover {
  opacity: 1;
  /* content: url('/static/assets/images/group-4.svg') ; */
}

.feedback-message .img-like {
  width: 44px;
  height: 44px;
}

.feedback-overview .img-message {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

/* .feedback-overview .text-like-count{
  vertical-align: middle;
  margin-left: 15px;
} */

.user-info {
  margin-right: 15px;
}

.feedback-overview .text-content {
  width: 49px;
  /*估算*/
  font-size: 20px;
  color: #08b2b4;
  line-height: 30px;
  vertical-align: middle;
  position: absolute;
  right: 16px;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
}

.feedback-message .text-content {
  min-height: 24px;
}

.feedback-overview .text-like {
  font-size: 13px;
  color: #9e9e9e;
  line-height: 18px;
}

.feedback-overview .div-comment {
  padding: 13px 0;
  cursor: pointer;
  float: right;
}

.feedback-overview .message-content {
  font-size: 20px;
  color: #08b2b4;
  line-height: 30px;
  vertical-align: middle;
  text-align: center;
}

.user-info {
  display: flex;
  /* 垂直置中 */
  align-items: center;
  padding-left: 16px;
  color: #041E42;
  margin-bottom: 12px;
}

.message-user-info {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #041E42;
}

.feedback-messageBoard .body-messageBoard {
  padding: 16px;
  /* background-color: rgba(84, 184, 178, 0.2); */

}

.feedback-messageBoard .div-message {
  margin-top: 20px;
}

.feedback-message {
  background-color: #FFFFFF;
  padding: 16px;
  position: relative;
}

.feedback-message .img-user {
  width: 44px;
  height: 44px;
  position: absolute;
}

.feedback-message .text-like-count {
  vertical-align: middle;
  margin-left: 60px;
  height: 44px;
  position: relative;
}

.feedback-message .text-datetime {
  font-size: 13px;
  color: #9e9e9e;
}

.img-more {
  width: 24px;
  height: 24px;
}

.feedback-message .msg-like-count {
  color: #08b2b4;
  font-size: 16px;
  margin-left: 10px;

}

.text-new-message {
  font-size: 20px;
  color: #9e9e9e;
  cursor: text;
}

.message-editor {
  border: 1px solid #041E42;
  /*   margin-top: 10px;
  margin-bottom: 12px; */
  background-color: #fff;
}

.message-editor textarea {
  border: 0;
  overflow-y: auto;
  /* IE */
  resize: none;
  /* Firefox, Chrome */
  width: 100%;
}

.message-editor textarea:focus {
  outline: 0;
  /* Chrome */
}

.message-editor-button {
  margin-left: 8px;
  width: 120px;
  display: inline-block;
}

.message-count {
  color: #4D4D4D;
  line-height: 30px;
  font-size: 20px;
  font-size: 20px;
  margin: 0 0 0 auto;
  padding-right: 16px;
}

.feedback-messageBoard {
  line-height: 30px;
  /* margin: 25px 0 25px auto; */
  font-size: 20px;
  color: #9e9e9e;
}

.msg-more {
  position: absolute;
  right: 0;
  top: 0
}

.remove-btn {
  margin-right: 0.5rem;
}

.item-enter {
  opacity: 0;
}

.item-enter-active {
  opacity: 1;
  transition: opacity 500ms ease-in;
}

.item-exit {
  opacity: 1;
}

.item-exit-active {
  opacity: 0;
  transition: opacity 500ms ease-in;
}

.error-text {
  font-size: 12px;
  color: #e35b6c;
}

.helper-text{
  color: '#4D4D4D';
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}

/* ----------------- NEW ----------------- */
.board-background {
  /* cursor: pointer; */
  position: relative;
  /* float: left; */
  width: 100%;
}

.text-message {
  background-color: #fff;
  padding: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #808080;
  border: 1px solid #B2B2B2;
  margin-bottom: 4px;
}

.all-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.img-user {
  padding-right: 4px;
}

.user-title {
  color: #041E42;
  font-size: 20px;
  line-height: 18px;
  display: flex;
  align-items: center;
}

.user-title-sm {
  color: #041E42;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
}

.msg-datetime {
  color: #041E42;
  font-size: 16px;
  /* position: absolute;
  right: 0px;
  padding-right: 12px; */
}

.user-msg {
  padding: 8px;
  /* margin-bottom: 20px; */
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  border: 2px solid #5FB7AC;
  background-color: #fff;
}

.msg-context {
  color: #000;
  padding-right: 4px;
  padding-top: 8px;
}

.msg-emoji-bar {
  padding-top: 12px;
  /* padding-left: 3px; */
  width: 100%;
}

.msg-emoji {
  margin-top: 12px;
}

.msg-emoji-img {
  cursor: pointer;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  display: flex;
  /* border: 1px solid #2D428B; */
  border-radius: 50%;
}

.msg-emoji-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 0px; */
}

.msg-emoji-count {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #041E42;
}

.emoji-bar-hr {
  width: 1px;
  border: 1px solid #C7C7C7;
  height: 44px;
  margin-left: 15px;
  margin-right: 15px;
}

.input-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #041E42;
  color: #041E42;
  font-size: 16px;
  line-height: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 120px;
  margin-right: 8px;
}

.input-cancel:hover {
  opacity: 0.4;
  cursor: pointer;
}

.input-post {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: #2D428B;
  color: #fff;
  border-radius: 20px;
  line-height: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 120px;
}

.input-post:hover {
  opacity: 0.7;
  cursor: pointer;
}

/* FeedBack */
.emoji-island {
  width: 52px;
  height: auto;
  background-color: #ffffff;
  /* padding-top: 4px; */
  /* padding-bottom: 4px; */
  position: fixed;
  z-index: 99;
  right: 0;
  top: 35%;
  /* transform: translate(45px, 170px); */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

.article-emoji-img {
  width: 24px;
}

.article-emoji {
  width: 100%;
}

.emoji-btn {
  width: 100%;
}

.emoji-count-actived {
  color: #2D428B;
  font-weight: 600;
  line-height: 16px;
  /*   margin-top: 5px; */
  font-size: 12px;
  text-align: center;
}

.emoji-count {
  color: #000;
  font-weight: 400;
  line-height: 16px;
  /*  margin-top: 5px; */
  font-size: 12px;
  text-align: center;
}

.emoji-img {
  cursor: pointer;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  display: flex;
  /* border: 1px solid #2D428B; */
  border-radius: 50%;
}

.emoji-img img {
  width: 24px;
  height: 24px;
}

.ifOnPress {
  background-color: #2D428B;
  color: '#fff'
    /* border: 0px; */
}

.emoji-btn,
.emoji-count .emoji-count-actived {
  display: flex;
  align-items: center;
  justify-content: center;
}

.emoji-separation-line {
  margin: 0;
  margin-left: 12px;
  margin-right: 12px;
  border: none;
  border-bottom: 1px solid #c7c7c7;
}

.emoji-vertical-separation-line {
  height: '100%';
  margin-left: 12px;
  margin-right: 12px;
  border-right: 1px solid #c7c7c7;
}

.icon-menu-container {
  width: 25px;
}

@media (max-width: 767px) {
  .article-emoji {
    padding-bottom: 28px;
  }

  .emoji-img {
    width: 40px;
    height: 40px;
  }

  .emoji-img img {
    width: 32px;
    height: 32px;
  }

  .msg-emoji-bar {
    padding-top: 10px;
  }

  .emoji-vertical-separation-line {
    height: 100%;
    width: 100%;
    border: none;
  }
}

.icon-menu{
  position: relative;
}
.icon-menu ul{
  position: absolute;
  right: 0;
  top: 30px;
  width: 80px;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.33);
  background-color: #FFF;
  list-style: none;
  padding-inline-start: 0px;
  padding-left: 0px;

}

.icon-menu li{
  padding: 4px 8px;
  font-size: 16px;
  color: #041E42;
  cursor: pointer;
  position: relative;
}
.icon-menu li img{
  width: 20px;
  height: 20px;
  margin-right: 8px;
  /* margin: 4px 16px 4px 0; */
}
.icon-menu > span {
  cursor: pointer;
}

/* .icon-menu li:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 143, 86, 0.4);
  opacity: 0;
  transition: all .3s;
  -webkit-transition: all .3s;
} */

.icon-menu li:hover:after  {
  opacity: 1;
}
/* .icon-menu li:hover {
  color: #ff8f56;
} */

.toggle-btn {
    cursor: pointer;
    width: 160px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid #808080;
    border-radius: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    justify-content: space-between;
    padding-left: 26px;
    padding-right: 26px;
    position: relative;
    margin: 0;
    padding: 0;
}

.btn-select-left {
    float: left;
}

.btn-select-right {
    float: right;
}

.btn-select {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 30px;
    border-radius: 16px;
}
.share-icon-btn-container{
    width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 12px;
  border: 1px solid #041E42;
  cursor: pointer;
}

.share-img-container{
    width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.share-icon-btn-container img{
    width: 100%;
}

.share-btn-content .title{
    color:#041E42;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}

.share-btn-container .link-container{
    background-color: #F2F2F2;
    line-height: 18px;
    color: #4D4D4D;
    font-size: 16px;
    padding: 8px;
    overflow: hidden;
    white-space: nowrap;
}

.share-btn-btn-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
.mailto-icon-btn-container{
    width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 12px;
  border: 1px solid #041E42;
  cursor: pointer;
}

.mailto-img-container{
    width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mailto-img-container img{
    width: 100%;
}
.sdgs-image-container{
    width: 112px;
    height: 112px;
    margin: 0px 12px 12px 0px; 
}
.sdgs-image-container:nth-child(7n){
    margin-right: 0px;
}

.sdgs-list-container {
    display: flex;
    flex-wrap: wrap;
}

.sdgs-image-container:last-child {
    margin-right: 0px;
}

@media (max-width: 767px) {
    .sdgs-image-container{
        width: 80px;
        height: 80px;
        margin: 0px 4px 4px 0px; 
    }
    .sdgs-image-container:nth-child(7n){
        margin-right: 4px;
    }
    .sdgs-list-container {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 8px;
    }
  }
div.prepare-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 89px;
}
div.prepare-container .content {
  color: #2D428B;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
}

div.prepare-container .image {
  width: 196px;
  height: 196px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  div.prepare-container {
    padding-top: 0px;
    margin-right: 16px;
    height: calc(100vh - 118px);
    justify-content: center;
  }
}

.header-articles .image-container{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.header-articles .image {
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 56%;
  position: relative;
  }
  
.header-articles .image img {
    width:100%;
    vertical-align:top;
  }

.header-article-title{
    color:#2D428B;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 12px;
}

.header-articles:hover .header-article-title{
    color:#E4831A
}

.header-articles .date{
  line-height: 16px;
  font-size:14px;
  color: #4d4d4d;;
  display:flex;
  align-items: center;
}

.description{
  font-size: 18px;
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: 0;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-size: 32px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\2022';
    text-align: center;

    /* opacity: .75; */
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    /* opacity: .75; */
    color: #ff8f56;
}

div.slide-image {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  height: 0;
}

div.slide-image .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
}

div.slide-image .play{
  width: 74px;
  height: 74px;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  position: absolute;
  display: none;
}
div.slide-image .play img{
  height: 100%;
  width: 100%;
}
div.slide-image:hover .play{
  display: block;
  z-index: 1;
}

div.slide-image .blur {
  position: absolute;
  padding: 15px;
  bottom: 0px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

div.slide-image .blur .title {
  font-size: 2.5rem;
  color: white;
  overflow: hidden;
  height: 120px;
  text-overflow: ellipsis;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}

div.slide-image .blur-lg .title {
  font-size: 2.0rem;
  height: 90px;
}

div.slide-image .blur-md .title {
  font-size: 1.5rem;
  height: 70px;
}

div.slide-image .extData{
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  width: 75px;
  height: 38px;
  border-radius: 4px;
  border: solid 1px rgba(245, 245, 245, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  line-height: 38px;
  /* margin-left: 8px; */
}

@media (max-width: 992px) {
  div.slide-image .blur .title {
    font-size: 2.0rem;
    height: 90px;
  }
}

@media (max-width: 767px) {
  div.slide-image .blur .title {
    font-size: 1.5rem;
    height: 70px;
  }
  /* 修正ios手機點兩下問題  @Angus */
  div.slide-image .play{
    display: block;
    z-index: 1;
  }
}

div.article-list {
  border-radius: 4px;
  background-color: rgba(84, 184, 178, 0.2);
}

div.article-list a:link,
div.article-list a:visited {
  color: #37373c;
}

div.article-list a:hover,
div.article-list a:active {
  text-decoration: none;
}

div.article-list .header {
  border-radius: 4px 4px 0 0;
  background-color: #08b2b4;
  font-size: 1.75rem;
  color: #f5f5f5;
  text-align: center;
  padding: 8px 0;
}

div.article-list .body {
  padding: 16px;
}

div.article-list .list-wrapper {
  border-radius: 4px;
  background-color: #f5f5f5;
  padding-bottom: 16px;
}

div.article-list .row {
  background-color: #f5f5f5;
  border-bottom: 1px solid #dcdcdc;
  padding: 16px 0;
  margin: 0 16px;
}

div.article-list .index {
  width: 16px;
  height: 24px;
  font-size: 13px;
  color: #37373c;
  background-color: #ff8f56;
  border-radius: 2px;
  text-align: center;
  padding-top: 3px;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
}

.video-container video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.video-content {
  width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.video-info {
  position: relative;
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 7px;
}

.video-all {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.video-font-adjust {
  /* position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%); */
  float: left;
  padding-bottom: 12px;
}

.video-data {
  /* position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%); */
  float: right;
}


@media (max-width: 767px) {
  .video-content {
    width: 100%;
    margin: 0;
  }

  .video-info {
    font-size: 14px;
  }

  .video-font-adjust {
    float: none;
  }

  .video-data {
    float: none;
  }
}
button.float {
  width: 40px;
  height: 40px;
  min-width: auto;
  min-height: auto;
  bottom: 8px;
  right: 8px;
  z-index: 99;
  padding: 0;
  position: fixed;
  background: #FFFFFF;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
  border-radius: 40px;

}

button.backToTOP {
  background-color: #FFFFFF;
}

button.search {
  width: 49px;
  height: 38px;
  padding: 0;
  border-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: #08b2b4;
  border-color: #08b2b4;
  outline: none;
}
button.join {
  width: 176px;
  height: 52px;
  border-radius: 4px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  float: right;
  outline: none;
}

@media (max-width: 767px) {
  button.search {
    width: 60px;
    height: 57px;
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
  }
  button.join {
    width: 100%;
    float: none;
    margin-top: 16px;
  }

  button.backToTOP.more-bottom {
    bottom: 98px;
  }
}
div.myWork {
	border-radius: 4px;
	border: solid 1px #cdd2d3;
  background-color: #fbfbfb;
}
div.myWork > .title {
  border-bottom: solid 1px #cdd2d3;
  font-size: 32px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #37373c;
  padding: 16px 16px 0 16px;
}

#switch-works nav {
  float: left;
}

#switch-works nav ul {
  left: 0;
  padding-top: 16px;
  display: flex;
  margin:0;
  padding-left: 0;
}

#switch-works nav ul li {
  list-style: none;
  cursor: pointer;
  padding: 0 6px 9px 6px;
  position: relative;

}

#switch-works nav ul li.sub-menu:before {
  position: absolute;
  line-height: 84px;
  color: #37373c;
}

#switch-works nav ul li a {
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #37373c;
}


/* div#switch-works nav ul li:hover */
/* 字顏色 底線顏色 */
div#switch-works nav ul li.selected
{  
  color: #37373c;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 2px solid #08b2b4;
}
/* div#switch-works nav ul li a:hover, */
div#switch-works nav ul li.selected a,
div#switch-works nav ul li.active div a {
  color: #08b2b4;

}
.unread {
  width: 6px;
  height: 6px;
  background-color: #ff8f56;
  z-index: 99;
  position: absolute;
  top: 0%;
  right: 0%;
  border-radius: 50%;
}
div#switch-works nav .sub-menu ul li {
  border-bottom: 1px solid #dedede;
}

div#switch-works nav .sub-menu ul li a {
  margin: 0;
  text-align: center;
}
/*--------------------------------------------*/
div.myWork .works-card {
  padding: 16px;
}

@media(max-width: 768px) {
  div.myWork {
    margin-top: 16px;
  }
}
body .genai {
  font-family: Montserrat, Verdana, "Microsoft JhengHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}

.genai .btn.button-icon {
  position: absolute;
  height: 26px;
  width: 26px;
  right: 8px;
  min-width: 26px;
  min-height: 26px;
  padding: 0;
}

.genai .btn.button-icon img {
  height: 26px;
  width: 26px;
}

#flex-container {
  display: flex;
  flex-direction: row;
}

#flex-container>.flex-item {
  flex: auto;
}

#flex-container>.raw-item {
  width: 5rem;
}

.block {
  margin: 5px;
}

.grow-normal {
  flex-grow: 3;
}

.grow {
  flex-grow: 1;
}

.genai .radioGroup {
  font-size: 14px;
  line-height: 20px;
  margin: 6px 0;
}

.genai .radioGroup span {
  padding-left: 3px;
  padding-right: 8px;
}

.flex {
  display: flex;
}

.space-between-x {
  justify-content: space-between;
}

.flex-start {
  justify-content: flex-start;
}

.flex-row {
  flex-direction: row;
}

.flex-end {
  justify-content: flex-end;
}

.genai hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #c7c7c7;
  margin: 2px 0;
  padding: 0;
}

.genai .radioCustom {
  display: none;
}

.genai .radioGroup label {
  background-image: url(/static/assets/images/radio-off.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding-left: 24px;
}

.genai .radioGroup :checked label {
  background-image: url(/static/assets/images/radio-on.svg);
}
.unfullSizeMask{
  position : absolute;
  width: 100%;
  height : 100%;
  top: 0px;
  left: 0px;
  opacity: 0.4;
  background-color: #ffffff;
  z-index: 10;
}
.fullSizeMask{
  position : fixed;
  width: 100%;
  height : 100%;
  top: 0px;
  left: 0px;
  opacity: 0.4;
  background-color: #ffffff;
  z-index: 10000;
}
.unfullSizeMask circle, .fullSizeMask circle{
  animation: circle-dash 2s ease-in-out infinite;
}

@keyframes circle-dash{
  0% {
    stroke-dasharray: 1, 125;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 125;
    stroke-dashoffset: -25px;
  }
  100% {
    stroke-dasharray: 100, 125;
    stroke-dashoffset: -125px;
  }
}
.circular{
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



