/*========================================*/
/* VKTR by ShareInvestor Indonesia */
/*========================================*/

:root {
  --tiffany-blue: #5CC7C1;
  --white: #fff;
  --charcoal: #222222;
  --lime: #DEFFC5;
  --lime-hover: #b2e59b;
  --dark-lime: #C7F895;
  --dark-gray: #7F7F7F;
  --light-gray: #F8F8F8;
  --font-family-main: 'Inter', sans-serif;
  --font-family-title: 'Prompt', sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-family-main);
}
main.ir-home {
  background: url(/images/pattern-1.svg), url(/images/pattern-2.svg);
  background-position: top 700px right, bottom 400px left;
  background-repeat: no-repeat, no-repeat;
  background-size: 187px, 187px;
  padding-bottom: 150px;
}
.submenu-item.active .third-level-menu{
  overflow-y: auto;
  overflow-x: hidden;
}
#mbl-display {
  display: none;
}
#pc-display{
  display: block;
}
.main-menu, .close-menu, .menuwrap, .language-selector{
  font-family: var(--font-family-title);
}
.font-prompt{
  font-family: var(--font-family-title);
}
h1.subpage-ir{
  font-size: 55px;
  margin-top: 50px;
  font-weight: 600;
}
.title-sub{
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}
.title-sub-lead{
  font-size: 30px;
  font-weight: 700;
  margin: 50px 0 30px;
}
/*button*/
.link-primary {
  display: flex !important;
  align-items: center;
  background-color: var(--lime);
  color: var(--charcoal)!important;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  z-index: 1;
  font-family: var(--font-family-title);
  width: fit-content;
}
.link-primary:hover {
  background-color: var(--lime-hover) !important;
  color: var(--charcoal) !important;
}
.link-primary:active {
  background-color: var(--lime-hover);
  color: var(--charcoal);
  transform: scale(0.98);
}
.btn-circle-icon {
  display: inline-flex;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--dark-lime);
  color: var(--charcoal);
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}
.btn-tiffany-blue{
  background: var(--tiffany-blue);
  padding: 15px 30px;
  text-decoration: none;
}
/*end of button*/
.text-left{
  text-align: left;
}
.text-justify{
  text-align: justify;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-white{
  color: var(--white);
}
.foot-note{
  font-size: 14px;
  color: var(--dark-gray);
}
/*table*/
table.ir-table{
  width: 100%;
  margin-bottom: 50px;
}
table.ir-table thead tr{
  background: -webkit-linear-gradient(90deg, #E2FCFB 5%, #5CC7C1 70%);
}
table.ir-table thead tr td{
  border: 1px solid var(--tiffany-blue);
  font-weight: bold;
}
table.ir-table tr td{
  padding: 15px;
  border: 1px solid var(--tiffany-blue);
}
/*table.ir-table tbody tr td{
  background: var(--white);
}*/
.table>:not(caption)>*>*{
  border-bottom-width: 0px;
  padding: 0;
}
/*end of table*/
/*divider line*/
.divider-line {
  background-color: #9A1D1B;
  height: 10px;
  width: 300px;
  position: relative;
}

.divider-line::after {
  content: '';
  position: absolute;
  top: 0;
  right: -5px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #9A1D1B;
}
/*banner*/
.ir-slider .slide-item{
  position: relative;
  width: 100%;
  height: 90vh;
}
.ir-slider .slide-item.slide-1{
  background: url(/images/banner/banner-1.jpg) center no-repeat;
  background-size: cover;
}
.ir-slider .slide-item.slide-2{
  background: url(/images/banner/banner-2.jpg) center no-repeat;
  background-size: cover;
}
.ir-slider .slide-item.slide-3{
  background: url(/images/banner/banner-3.jpg) center no-repeat;
  background-size: cover;
}
.ir-slider .slide-item.slide-4{
  background: url(/images/banner/banner-4.jpg) center no-repeat;
  background-size: cover;
}
.ir-slider .slide-item.slide-5{
  background: url(/images/banner/banner-5.jpg) center no-repeat;
  background-size: cover;
}
.ir-slider .slick-dotted.slick-slider{
  margin-bottom: 0;
}
.ir-slider .slick-dots{
  bottom: 30px;
}
.ir-slider .slick-dots li{
  width: 15px;
  height: 15px;
}
.slick-dots li button{
  background: var(--white);
  width: 15px;
  height: 15px;
  color: transparent; 
  background-position: right;
  border-radius: 50%;
  border: 1px solid #4a4a4a40;
  transform: scale(0.5);
}
.slick-dots li button:before{
  width: 15px;
  height: 15px;
  opacity: 0;
}
.slick-dots li.slick-active button{
  background: var(--tiffany-blue);
  box-shadow: 0 0 0 6px white, 0 0 0 10px var(--tiffany-blue), 0 0 10px 2px var(--tiffany-blue);
  color: transparent; 
  background-position: left;
}
.slick-dots li.slick-active button:before{
  color: transparent;
}
.slick-dots li.slick-active button:hover:before{
  color: transparent;
}
.slick-dots li button:hover:before{
  color: transparent;
}
.slick-prev{
  left: 20px;
  background: url(/images/prev.svg) center no-repeat !important;
  background-size: contain;
  width: 70px;
  height: 70px;
  z-index: 1;
}
.slick-next{
  right: 20px;
  background: url(/images/next.svg) center no-repeat !important;
  background-size: contain;
  width: 70px;
  height: 70px;
  z-index: 1;
}
.slick-next:before,
.slick-prev:before{
  content: '';
}
.slick-next:hover,
.slick-prev:hover{
  opacity: .6;
}
.ir-slider .slide-item .text-box{
  max-width: 750px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ir-slider .slide-item .hero{
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-family-title);
}
.ir-slider .slide-item .lead{
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-family-title);
}
/*end of banner*/

.why-invest-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 250px 0 0px;
  background-position: top right;
  background-repeat: no-repeat;
}
.highlights-section {
  position: relative;
  overflow: visible;
  margin-top: -50px;
  padding: 200px 100px 30px;
  background-image: url("/images/bg-home-highlights.png");
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
}
.ir-home-title h1 {
  font-size: 44px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-family: var(--font-family-title);
}
.ir-home-highlights-description {
  font-size: 20px;
  color: var(--charcoal);
  font-family: var(--font-family-title);
}
.highlights-section .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.highlights-section .card .card-body h3 {
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-gray);
  font-family: var(--font-family-title);
  margin-top: 8px;
  margin-bottom: 0;
}
.highlights-section .card .card-body p {
  font-family: var(--font-family-title);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
}
.gradient-circle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(circle at center, rgba(222, 255, 197, 0.7) 20%, transparent 55%);
  z-index: -1;
}
.why-invest-title {
  width: 70%;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.why-invest-title h1 {
  font-family: var(--font-family-title);
  font-size: 53px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  width: 90%;
}
.why-invest-title h1 span {
  color: var(--tiffany-blue);
}
.why-invest-title p {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 24px;
  width: 80%;
}
.why-invest-section .img-fluid {
  position: absolute;
}
.why-invest-section .img-fluid:nth-child(1) {
  bottom: 0%;
  left: 12%;
}
.why-invest-section .img-fluid:nth-child(2) {
  top: 8%;
  left: 25%;
}
.why-invest-section .img-fluid:nth-child(3) {
  top: 23%;
  right: 25%;
}
.why-invest-section .img-fluid:nth-child(4) {
  bottom: -20%;
  right: 5%;
}
/*stock home*/
.ir_home_chart_wrap .hide-chart-setting{
  visibility: hidden;
}
/*gms home*/
.section-home-gms{
  margin-top: 80px;
}
.section-home-gms .t-file-download a{
  text-decoration: none;
  color: var(--charcoal);
  font-size: 15px;
}
.section-home-gms .t-file-download a:hover{
  color: var(--tiffany-blue);
}
.section-home-gms .t-file-download a:hover .download-icon {
  content: url("/images/icon-download-hover.svg");
}
.section-home-gms .t-file-download.home-news{
  float: none;
}
.section-home-gms .ir-home-gms-desc{  
  font-size: 20px;
  color: var(--charcoal);
  font-family: var(--font-family-title);
  margin-bottom: 0;
}
.section-home-gms .t-date-news i{
  color: var(--tiffany-blue);
}
.section-home-gms .list-file{
  border-bottom: 1px solid var(--lime-hover);
}
.list-file {
  padding: 20px 0;
  border-bottom: 1px solid #4a4a4a40;
}
p.t-file-title{
  margin-bottom: 0;
}
p.t-file-download{
  margin-bottom: 0;
  float: right;
}

/*stock home*/
.ir_home_stock_index{
  color: var(--tiffany-blue);
  font-weight: 800;
  font-size: 22px;
}
.ir_home_stock_date{
  font-size: 17px;
  font-weight: 800;
  color: var(--dark-gray);
}
.ir_home_last_done{
  color: var(--tiffany-blue);
  font-weight: 800;
  font-size: 38px;
}
.section-stock-quotes .link-primary{
  margin-top: 20px;
  max-width: 155px;
}
.section-stock-quotes .link-primary.id{
  max-width: 170px;
}
.section-stock-quotes table{
  width: 100%;
}
.section-stock-quotes table tr td{
  padding: 8px 0;
}

/*more form us*/
.section-home-links{
  margin-top: 80px;
}
.box-home-links{
  border: 1px solid #4a4a4a40;
  border-radius: 12px;
  padding: 10px;
  background: var(--white);
}
.box-home-links h5{
  font-family: var(--font-family-title);
  font-weight: 300;
  font-size: 20px;
}
a.quick-link-home{
  text-decoration: none;
  color: var(--charcoal);
}
a.quick-link-home:hover .box-home-links{
  box-shadow: rgb(222 255 197) 0px 3px 6px 0px;
}

/*financial highlights*/
.section-financial-highlights h5{
  font-size: 25px;
  font-family: var(--font-family-title);
  font-weight: 400;
}
.chart-highlights canvas {
  width: 100% !important;
  margin: 20px auto;
}
.box-fn-highlights {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  padding: 20px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: none;
}
.box-fn-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, var(--tiffany-blue), var(--lime-hover));
  transition: background 0.3s ease;
}
.box-fn-highlights:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.box-fn-highlights h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 18px;
}
.box-fn-highlights p {
  font-size: 15px;
  margin: 6px 0;
}
.growth {
  font-weight: 700;
  font-size: 14px;
}
.positive {
  color: #27ae60 !important;
}
.negative {
  color: #c0392b !important;
}
.growth i.fa-arrow-up {
  color: #27ae60;
  display: inline-block;
  animation: bounce-up 1.5s infinite;
}
.growth i.fa-arrow-down {
  color: #c0392b;
  display: inline-block;
  animation: bounce-down 1.5s infinite;
}
@keyframes bounce-up {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes bounce-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.section-financial-highlights .accordion-item{
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--lime-hover);
}
.section-financial-highlights .accordion-button:not(.collapsed){
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.section-financial-highlights .accordion-button:focus{
  box-shadow: none;
}
.section-financial-highlights .accordion-button{    
  font-size: 20px;
}
.section-financial-highlights .accordion-button:not(.collapsed){
  color: var(--charcoal);
}

/*financial results*/
.filter-year{
  padding: 10px 30px;
  border: 1px solid #BFBFBF;
  border-radius: 5px;
  width: 200px;
  margin-bottom: 50px;
  font-weight: 700;
  background-image: url(/images/icon-filter-year.svg);
  background-position: calc(100% - 30px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 12px;
  background-repeat: no-repeat;
  color: var(--tiffany-blue);
}
.list-file-report .list-file{
  display: flex;
  padding: 20px;
  background: var(--white);
}
.list-file-report .list-file.row2{
  background: var(--light-gray);
}
.list-file-report .list-file .t-file-time{
  width: 15%;
  align-content: center;
}
.list-file-report .list-file .t-file-title{
  width: 60%;
  font-weight: 700;
  align-content: center;
}
.list-file-report .list-file .t-file-size{
  width: 10%;
  color: #7E7E7E;
  align-content: center;
}
.list-file-report .list-file .t-file-download{
  width: 15%;
  align-content: center;
}
.list-file-report p.t-file-time{
  margin-bottom: 0;
}
.list-file-report p.t-file-size{
  margin-bottom: 0;
}
.list-file-report .t-file-download a{
  text-decoration: none;
  color: var(--charcoal);
}
.list-file-report .t-file-download a:hover{
  color: var(--tiffany-blue);
}
.t-file-download a span{
  margin-left: 15px;
}
.list-file-report .t-file-download a:hover .download-icon {
  content: url("/images/icon-download-hover.svg");
}
/*corporate presentation*/
.box-slide-highlights{
  padding: 40px 80px;
  margin-bottom: 30px;
  box-shadow: 1px 1px 10px 1px var(--tiffany-blue);
  background: var(--white);
  border-radius: 10px;
}
.box-slide-highlights img{
  width: 100%;
  margin: 0 auto;
  display: block;
}
.box-slide-highlights .slide-highlights-details{
  padding: 0 50px;
}
.t-file-download-slides{
  display: flex;
  align-items: center;
}
a.t-file-download-slides {
  text-decoration: none;
  color: var(--charcoal);
}
a.t-file-download-slides:hover{
  color: var(--tiffany-blue);
}
a.t-file-download-slides span{
  margin-left: 15px;
}
a.t-file-download-slides:hover .download-icon {
  content: url("/images/icon-download-hover.svg");
}

/*historical price*/
.section-historical-price .rows {
  display: inline-block;
}
.section-historical-price select {
  width: auto;
  padding: 10px 15px;
  border-color: #e3e3e3;
  display: inline-block;
  border-radius: 5px;
}
.section-historical-price p {
  display: inline-block;
  padding: 0 5px 0 0;
}
.section-historical-price p.link-download {
  display: block;
  line-height: 1.3em;
}
.section-historical-price form {
  margin-bottom: 20px;
}
.section-historical-price p.garing {
  padding: 0 5px;
}
.section-historical-price .historical-summary {
  font-weight: bold;
}
.section-historical-price button.btn-cta{
  align-items: center;
  background-color: var(--lime);
  color: var(--charcoal) !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  font-family: var(--font-family-title);
  border: none;
}
.section-historical-price button.btn-cta p{
  margin-bottom: 0;
}
.section-historical-price button.btn-cta .btn-cta-inner{
  display: flex;
}
.section-historical-price table.ir-table td.highlighted-line{
  background: var(--lime);
  font-weight: bold;
}
.section-historical-price a{
  text-decoration: none;
  color: var(--tiffany-blue);
  font-weight: 600;
}
.section-historical-price a:hover{
  text-decoration: underline;
}
.section-historical-price tr.row1:hover, .section-historical-price tr.row2:hover{
  background: var(--lime);
}
/* Additional Css for stock fundamentals */
.section-stock-fundamentals .chart-wrap{
  margin-top: 30px;
}
.section-stock-fundamentals .row.ir_chart-select-wrap>*{
  width: auto;
}
.ir_chart-select-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ir_chart_period-select {
  float: right;  
}
.ir_chart_type-select {  
  height: 33px;
  list-style: none;
  float: left;
  display: flex;
}
.ir_chart_type-select li {
  float: left;
  margin: 0;
}
.ir_chart_type-select li a {
  color: #fff;
  background-color: #004a88;
  text-decoration: none;
  padding: 10px 10px 10px 44px;
  display: inline-block;
}
.ir_chart_type-select li a {
  line-height: 1.5;
}
#irSwitch2col {
  background: url("/images/icon-column-view.png") no-repeat scroll 9px center var(--tiffany-blue);
}
#irSwitch2line {
  background: url("/images/icon-line-view.png") no-repeat scroll 9px center var(--tiffany-blue);
}
#irSwitch2table {
  background: url("/images/icon-table-view.png") no-repeat scroll 9px center var(--tiffany-blue);
}
.selected_type #irSwitch2col,
.selected_type #irSwitch2col:hover {
  background: url("/images/icon-column-view.png") no-repeat scroll 9px center #317d79;
}
.selected_type #irSwitch2line,
.selected_type #irSwitch2line:hover {
  background: url("/images/icon-line-view.png") no-repeat scroll 9px center #317d79;
}
.selected_type #irSwitch2table,
.selected_type #irSwitch2table:hover {
  background: url("/images/icon-table-view.png") no-repeat scroll 9px center #317d79;
}
.ir_chart_type-select li.selected_type a,
.ir_chart_type-select li.selected_type a:hover {
  color: #fff;
  text-decoration: none;
}
.chart_table thead tr {
  background: #006dc9;
  color: #fff;
  font-weight: bold;
}
#table_container h2 {
  text-align: center;
  color: #333;
  font-size: 18px;
  font-weight: normal;
  margin: 15px 0;
}
.chart_selection-title {
  padding: 20px 0px 0px 25px;
  font-size: 1em;
  margin: 0;
}
.chart_year-selection {
  display: block;
  height: auto;
  width: 100%;
  float: left;
  padding: 0px 0px 10px 25px;
}
.chart_year-selection li {
  float: left;
  cursor: pointer;
  padding: 10px 10px 0px 0px;
  list-style: none;
}
.ir_chart_type-select li:nth-of-type(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.ir_chart-container,
.ir_chart-container-table {
  width: 100%;
  margin: 0 auto;
  float: left;
}
.ir_chart-container-table .tick-box {
  display: none;
}
.chart_SelectYears-wrapper {
  float: left;
  width: 100%;
  margin: 20px 0px;
  background: #f4f4f4;
}
.d-hidden{
  display: none;
}
ul.checkbox-list {
  list-style: none;
  padding-left: 0px;
}
ul.checkbox-list li {
  margin: 10px 0px;
  color: #9e9e9e;
  cursor: pointer;
}
ul.checkbox-list li.selected_ratio {
  color: #333333;
  list-style: none;
}
.chart_year-selection li.selected_period {
  color: #333;
}
.Chart_selection-accordion {
  padding-left: 0px;
  margin: 0px 0px 30px;
  float: left;
  width: 100%;
  background: #f4f4f4;
}
.Chart_selection-accordion>li {
  list-style: none;
  padding: 5px 0px 5px 20px;
}
.Chart_selection-accordion>li a {
  display: block;
  padding: 5px 0px;
  font-weight: bold;
  text-decoration: none;
  color: #317d79;
}
.Chart_selection-accordion>li.active {
  background: rgba(199, 248, 149, 0.6);
}
.Chart_selection-accordion>li.active a {
  color: #000;
}
.Chart_selection-accordion>li .checkbox-list li {
  color: #000;
}
.tick-box {
  float: left;
  margin-right: 10px;
  background: url("/images/tickbox-unchecked.png") no-repeat;
  width: 17px;
  height: 17px;
}
.selected_ratio .tick-box,
.selected_period .tick-box {
  background: url("/images/tickbox-checked.png") no-repeat;
}
.ratio_group .ratio_group_title .arrow-updown {
  background: url("/images/icon-down.png") no-repeat center center;
  float: right;
  font-size: 1.375em;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.ratio_group.active .ratio_group_title .arrow-updown {
  background: url("/images/icon-up.png") no-repeat center center;
}
#category_type {
  background: url("/images/icon-ratio.png"), url("/images/icon-arrows.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 9px center, right 5px center;
  background-color: #317d79;
  padding: 10px 20px 10px 30px;
  border: none;
  color: #fff;
}
#category_type:after,
#figure_type:after {
  background: url("/images/icon-arrows.png") no-repeat right center;
  width: 14px;
}
#category_type.period {
  background: url("/images/icon-period.png"), url("/images/icon-arrows.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 9px center, right 5px center;
  background-color: var(--tiffany-blue);
}
#figure_type {
  background: url("/images/icon-indexed.png"), url("/images/icon-arrows.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 9px center, right 5px center;
  background-color: #317d79;
  padding: 10px 20px 10px 40px;
  border: none;
  color: #fff;
}
#figure_type.absolute {
  background: url("/images/icon-absolute.png"), url("/images/icon-arrows.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 9px center, right 5px center;
  background-color: var(--tiffany-blue);
}
.section-stock-fundamentals .ir_chart-container-table{
  overflow-x: auto;
}
/* Additional Css for stock fundamentals - End */

/*general meeting*/
.section-gms .agm-egm-title {
  margin-top: 50px;
}
.section-gms .agm-egm-title p {
  background: var(--tiffany-blue);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0;
}
/*stock*/
.section-stock .ir-table{
  margin: 30px 0;
}
.section-stock #ir_chart_setting{
  display: block !important;
}
.section-stock #ir_chart_setting fieldset{
  display: flex;
  margin-bottom: 15px;
}
.section-stock #ir_chart_setting fieldset .ir_textMainHighlight{
  margin-right: 15px;
}
.section-stock #ir_chart_setting fieldset.si_fixed label{
  margin-right: 10px;
}

/*invest calc*/
.section-invest-calc .ir_chart_legend {
  width: 100%;
  font-size: 10px;
  margin: 5px;
}
.section-invest-calc .ir_chart_legend span {
  border: 1px solid;
  padding: 2px 5px;
}
.section-invest-calc .table-calculator tr td.tsr_amount {
  background: var(--lime);
  color: initial;
}
.section-invest-calc .tsr_amount .title {
  display: block;
  margin-bottom: 10px;
}
.section-invest-calc .tsr_amount .value,
.section-invest-calc .tsr_amount .percentage {
  font-size: 18px;
}
.section-invest-calc .tsr_amount .value {
  margin-right: 10px;
}
.section-invest-calc .txt-green {
  color: green;
}
.section-invest-calc .txt-red {
  color: red;
}
.section-invest-calc sup {
  font-size: 8px;
}
.section-invest-calc .toggle_div {
  float: left;
}
.section-invest-calc tr[class^="div_"] td {
  background-color: #efefef;
}
.section-invest-calc td.year {
  font-weight: 700;
}
.section-invest-calc td.year span {
  font-weight: 400;
}
.section-invest-calc .table-calculator-form { 
  border-collapse: collapse; 
  margin: 5px;
  width: 100%;
}
.section-invest-calc .table-calculator-form tr td input { 
  padding: 3px; 
  line-height: 20px; 
  width: 120px; 
}
.section-invest-calc .table-calculator-form tr.first td { 
  padding-bottom: 10px; 
  font-weight: 600;
  margin-bottom: 15px;
}
.section-invest-calc button.ui-datepicker-trigger { 
  background: none; 
  border: none;
}
.section-invest-calc button.ui-datepicker-trigger img { 
  vertical-align: middle;
  display: inline-block;
  margin: 0 10px;
}
.section-invest-calc .calculator-left { 
  float: left; 
  width: 50%; 
  background: #e7e7e7; 
  min-height: 100px; 
  padding: 2% 2% 1% 2%; 
}
.section-invest-calc .calculator-right { 
  float: left; 
  width: 50%; 
  background: #f4f4f4; 
  min-height: 100px; 
  padding: 2% 2% 1% 2%; 
}
.section-invest-calc .table-calculator-form2 { 
  border-collapse: 
  collapse; margin: 5px;
  width: 100%;
}
.section-invest-calc .table-calculator-form2 tr td.first input { 
  margin: 0; 
}
.section-invest-calc .table-calculator-form2 tr td.first { 
  width: 50%; 
}
.section-invest-calc .table-calculator-form2 tr td input { 
  padding: 3px; 
  line-height: 20px; 
  width: auto; 
  vertical-align: middle;
  border: 1px solid var(--dark-gray);
}
.section-invest-calc .table-calculator-form2 tr td { 
  padding-bottom: 5px; 
}
.section-invest-calc .clear-height { 
  clear: both; 
  padding: 25px 0 0 0; 
}
.section-invest-calc .table-calculator { 
  width: 100%; 
  border-collapse: collapse;
}
.section-invest-calc .table-calculator tr td { 
  padding: 10px; 
  border: 1px solid #ccc; 
  text-align: center;
}
.section-invest-calc .table-calculator tr.first td { 
  background: -webkit-linear-gradient(90deg, #E2FCFB 5%, #5CC7C1 70%);; 
  color: #000; 
  font-weight: bold; 
}
.section-invest-calc .title-invest-calc,
.section-invest-calc .title-invest-calc span{
  font-family: var(--font-family-title);
  color: var(--charcoal);
  font-size: 28px;
  font-weight: 500;
  margin: 30px 0 15px;
}
.section-invest-calc .down_arrow { 
  background: url(/images/arrow_down.gif) no-repeat 0 bottom; 
  color: transparent; 
  background-size: 10px; 
  content: ''; 
  text-indent: -9999px; 
  width: 10px; 
  margin-left: 5px; 
  top: -3px; 
  position: relative; 
  display: inline-block; 
  zoom: 1; 
}
.section-invest-calc .up_arrow {
  background: url(/images/arrow_up.gif) no-repeat 0 bottom; 
  color: #317500; 
  background-size: 10px; 
  content: ''; 
  text-indent: -9999px; 
  width: 10px;
  margin-left: 5px; 
  top: -3px; 
  position: relative; 
  display: inline-block; 
  zoom: 1;
}
.section-invest-calc .clearfix:after, .section-invest-calc .clearfix:before {
  content: " ";
  display: table;
}
/*ar*/
.ar-wrapper{
  background: linear-gradient(to bottom, var(--white) 20%, #C1FFFC 80%);
  padding: 40px 20px;
  border-radius: 25px;
}
.t-file-download-ar{
  text-decoration: none;
  color: var(--charcoal);
}
.t-file-download-ar span{
  margin-right: 15px;
}
.img-ar{
  margin: 0 auto;
  display: block;
  border-radius: 5px;
}
.t-file-download-ar:hover{
  color: var(--tiffany-blue);
}
a.t-file-download-ar:hover .download-icon {
  content: url("/images/icon-download-hover.svg");
}
a.t-file-download-ar:hover .download-icon-fb {
  content: url("/images/icon-flipbook-hover.svg");
}
.img-ar-prev{
  border-radius: 5px;
  margin-bottom: 20px;
}
.title-ar-prev{
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
.t-file-time-ar-prev{
  margin-bottom: 5px;
}
.t-file-size-ar-prev{
  margin-bottom: 5px;
}
.t-download-ar-prev span{
  margin-left: 15px;
}
.t-download-ar-prev a{
  text-decoration: none;
  color: var(--charcoal);
}
.t-download-ar-prev a:hover{
  color: var(--tiffany-blue);
}
.t-download-ar-prev a:hover .download-icon {
  content: url("/images/icon-download-hover.svg");
}
/*newsroom*/
p.btn-next-prev{
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
p.btn-next-prev .link-primary.prev-btn span.btn-circle-icon{
  margin-right: 10px;
  transform: rotate(180deg);
}
.section-newsroom.list-file-report .t-file-title a{
  text-decoration: none;
  color: var(--charcoal);
}
.section-newsroom.list-file-report .t-file-title a:hover{
  color: var(--tiffany-blue) !important;
}
.section-newsroom .title-news{
  text-align: center;
  font-weight: 700;
  margin: 20px 0 15px;
  font-size: 40px;
}
.section-newsroom .t-news-date{
  margin: 0 0 30px;
  text-align: center;
}
.section-newsroom .t-news-date span{
  margin-right: 5px;
}
.section-newsroom ol li {
  margin: 10px 0;
  word-break: break-word;
}
.section-newsroom ol li a{
  color: var(--charcoal);
  text-decoration: none;
}
.section-newsroom ol li a:hover{
  color: var(--tiffany-blue);
}
.section-newsroom .link-primary{
  width: max-content;
  padding: 12px 20px 12px 10px;
  margin: 40px auto;
}
.section-newsroom .link-primary span.btn-circle-icon{
  margin-right: 10px;
  transform: rotate(180deg);
}
/*ir contact*/
.section-ir-contact .thead-ir-contact{
  text-align: center;
  margin: 0 0 30px;
}
.section-ir-contact .form-group{
  margin: 20px 0 30px;
}
.section-ir-contact .form-group label{
  margin-bottom: 10px;
}
.section-ir-contact .btn-cta{
  display: flex;
  background-color: var(--lime);
  color: var(--charcoal) !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  font-family: var(--font-family-title);
  border: none;
  width: fit-content;
}
.section-ir-contact .btn-cta input{
  border: 1px solid transparent;
  background: transparent;
  align-content: center;
  color: var(--charcoal);
}
.section-ir-contact .link-primary{
  width: fit-content;
}
.section-ir-contact .t-title-address{
  margin: 20px 0;
  font-family: var(--font-family-title);
}
.section-ir-contact .t-email span{
  margin-right: 5px;
}
.section-ir-contact a{
  text-decoration: none;
  color: var(--charcoal);
}
.section-ir-contact a:hover{
  color: var(--tiffany-blue);
}
/*shareholdings*/
.section-shareholdings.list-file-report .list-file .t-file-title {
  width: 85%;
}

/*why invest*/
.section-why-invest h4{
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 25px;
  margin: 0 0 20px;
}
.section-why-invest .img-why-invest{
  width: 100%;
  border-radius: 25px;
}
.section-why-invest .img-why-invest.img-4{
  border: 3px solid var(--charcoal);
}
.section-why-invest .gradient-circle-bg{
  width: 70%;
  top: 150%;
}
.section-why-invest .blockA,
.section-why-invest .blockB{
  padding: 0 60px;
}
.section-why-invest .why-invest-wrap{
  margin: 50px 0 80px;
}
.section-why-invest .content-more {
  display: none;
}
.section-why-invest .readmore-btn-more{
  cursor: pointer;
  text-decoration: underline;
  color: var(--tiffany-blue);
}
.section-why-invest .readmore-btn-less {
  display: none;
  cursor: pointer;
  text-decoration: underline;
  color: var(--tiffany-blue);
}
/*footer*/
footer{
  font-family: var(--font-family-title);
}
.footer-info a.link-email-footer{
  text-decoration: none;
  color: var(--charcoal);
}
.footer-info a.link-email-footer:hover{
  color: var(--tiffany-blue);
}
.indoPoweredWrap img{
  display: block;
  margin: 20px auto;
}