/*!
Theme Name: esg test
Author: i3
Description: test for esg
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: esg-test

*/


/* Sections and columns
--------------------------------------------- */

.container-standard {
	width: 100%;
	max-width: 1440px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}
.max-w--1000 {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto
}
.max-w--800 {
	width: 100%;
	max-width: 800px;
	margin: 0 auto
}
.col--33 {
	width: 33%
}

/* Header
--------------------------------------------- */
.overlay-bg {
    width: 100%;
    height: 0%;
	top: -8px;
    position: fixed;
    opacity: 0;
    transition: opacity .3s;
    background: #0000002e;
}
.overlay-bg.active {
	height: calc(100% + 8px);
	opacity: 1;
	z-index: 22
}
#header-main {
	width: 100%;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	position: fixed;
	top: 12px;
	left: 0;
    right: 0;
	z-index: 999;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 8px;
	background-color: rgba(255,255,255,0.75);
  	backdrop-filter: blur(5px);
	-webkit-transition: -webkit-all 250ms cubic-bezier(0.55, 0, 0.1, 1) 0s;
  	transition: -webkit-all 250ms cubic-bezier(0.55, 0, 0.1, 1) 0s;
  	-o-transition: transform .3s;
  	transition: all 250ms cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
#header-main .menu-main-menu-container .menu, #header-main .header__bar-top .menu  {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	height: 100%;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}
#header-main .menu li a {
	text-decoration: none;
	color: #000;
	transition: .3s
}
#header-main .menu li a:hover {
	color: var(--color--1)
}
#header-main .menu li.menu-item-has-children:hover>a {
	color: var(--color--1)
}
#header-main .header__bar {
	gap: 28px;
}
#header-main .header__bar__container {
	display: flex;
    align-items: center;
	gap: 28px;
}
#header-main .header__bar-top {
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 28px;
	height: 56px;
	border-radius: 8px 8px 0 0;
	transition: all 250ms cubic-bezier(0.55, 0, 0.1, 1) 0s;
  	will-change: transform;
}
.header__bar-bottom {
	display: flex;
	flex-direction: row;
    justify-content: flex-start;
    padding: 6px 15px 6px 0;
	height: 70px;
	border-top: 1px solid #CACACA;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
	z-index: 1000;
}
#header-main .header__logo {
	display: flex;
    align-items: center;
	justify-content: center;
	background-color: var(--color--1);
	width: 218px;
	height: 70px
}
#header-main .custom-logo-link {
	display: inherit
}
#header-main .custom-logo-link img {
	height: 40px
}
#header-main #main-menu li.menu-item {
	height: 70px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
#header-main #main-menu li a {
	font-weight: 600;
	position: relative;
}
#header-main .sub-menu__container {
	position: absolute;
    width: 100%;
    padding-top: 4px;
    left: 50%;
    transform: translateX(-50%);
    top: 126px;
    display: block;
    opacity: 0;
    z-index: 0;    
    z-index: -1;
	visibility: hidden;
	transition: .1s;
    -webkit-transition: .1s;
}	
#header-main .menu-item:hover .sub-menu__container, #header-main .menu-item:hover .sub-menu{
    opacity: 1;
	visibility: visible
} 
#header-main .sub-menu {
	opacity: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4,auto);
    grid-gap: 1rem;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 8px;
	padding: 28px;
}
#header-main.anim {
  	-webkit-transform: translateY(-69px);
  	-ms-transform: translateY(-69px);
  	transform: translateY(-69px);
}
.mobile-menu__toggle-container {
	display: none;
}
.mobile-menu__toggle {
	display: flex;
	position: relative;
	width: 34px;
	height: 34px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	z-index: 33;
  	border-radius: 4px;
  	background: var(--color--1)
}

.mobile-menu__toggle span {
	position: absolute;
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 4px;
	transition: 0.5s;
}
.mobile-menu__toggle:hover span:nth-child(2) {
	width: 15px;
}
.mobile-menu__toggle span:nth-child(1) {
	transform: translateY(-8px);
	width: 15px;
	left: 5px;
	height: 2px;
}
.mobile-menu__toggle.active span:nth-child(1) {
	width: 20px;
	transform: translateY(0px) rotate(45deg);
	transition-delay: 0.125s;
}
.mobile-menu__toggle span:nth-child(2) {
	transform: translateY(8px);
	width: 15px;
	left: 10px;	
	height: 2px;
}
.mobile-menu__toggle.active span:nth-child(2) {
	width: 20px;
	transform: translateY(0px) rotate(315deg);
	transition-delay: 0.25s;
  	left: 5px
}
.mobile-menu__toggle.active span:nth-child(3) {
	transform: translatex(60px);
}

.mobile-menu__off-canvas {
	width: 80%;
	max-width: 420px; 
	height: calc(100vh - 12px); 
	position: fixed;
	background-color: #F5F9FB;
	z-index: 33;
	transition: all 0.5s cubic-bezier(0.73, 0, 0.86, 0.31);
	display: flex;
	justify-content: center;
	top: -6px; 
	left: -100%; 
	border-radius: 8px;
}
.header.anim .mobile-menu__off-canvas {
	top: 42px
}
.mobile-menu__off-canvas--backdrop {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 100%;
	background-color: #ffffffc4;
	z-index: 22;
	transition: 0.3s;
}
.mobile-menu__off-canvas.active {
	left: 6px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.mobile-menu__off-canvas--backdrop.active {
	right: 0;
}
.menu-side-wrap {
	height: 100%;
	width: 100%;
	padding: 80px 32px;
}
.menu-side--middle ul {
  	margin: 0;
  	padding: 0;
  	list-style: none;
 	display: flex;
  	flex-direction: column;
  	gap: 8px;
}
.menu-side--middle ul li a {
  	font-size: 24px;
  	color: #000
}


/* Footer
--------------------------------------------- */

.pre-footer {
	background-color: var(--color--7);
	min-height: 120px;
}
.pre-footer .container-standard {
	padding-top: 18px;
	padding-bottom: 18px;
}
.footer-main {
	background-color: var(--color--1);
}
.footer-main .container-standard {
	padding-top: 36px;
	padding-bottom: 36px;
	display: flex;
	flex-direction: column;
	flex-direction: row;
    align-items: center;
	gap: 28px;
}
.footer__copy {
	text-align: center;
}

.footer-law {
	background-color: #F5F9FB;
}
.footer-law .container-standard {
	padding-top: 32px;
	padding-bottom: 32px;
}



/* Charts
--------------------------------------------- */

.table-container table {
	width: 100%!important
}
.table-container .wpdt-c.wpDataTableContainerSimpleTable.wdtscroll table.wpdtSimpleTable {
	width: 100%!important
}
.table-container table td, .table-container table th {
	position: relative;
} 
.table-container table td::before, .table-container table th::before {
  border-left: 1px solid #9b9b9b;
  bottom: 0;
  content: "";
  display: block;
  height: 5px;
  left: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  white-space: nowrap;
}
.table-container table thead tr th {
	color: var(--color--1);
}
.table-container table thead tr th {
	background-color: #FFF!important
}
.table-container table thead tr th::before {
  	border-left: 2px solid var(--color--1);
}
.table-container table td, .table-container table tr, .table-container table th {
	border: none!important
}
.table-container table tr {
 	border-bottom: 1px solid #9b9b9b!important;	
}
.table-container table thead tr th {
	border-bottom: 2px solid var(--color--1)!important;
}
.table-container table td:first-child::before, .table-container table th:first-child::before {
  display: none;
}
.table-container table tr:last-child td {
	border: none!important;
}
.table-container table tr:last-child {
	border-bottom: none!important
}
.table-container table tr:last-child td::before {
	display: none
}
.table-container {
	position: relative;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.table__shadow {
   	width: 100%;
    position: absolute;
    bottom: 0;
    height: 300px;
    background-image: linear-gradient(180deg, transparent 0%, #fff 100%);
    z-index: 2;
  	transition: .3s
}
.button__table {
  	z-index: 3;
  	margin-top: -36px;
  	cursor: pointer;
    position: relative;
    display: flex;
	gap: 12px;
    background: var(--color--1);
	color: #fff;
    padding: 8px 16px;
    width: fit-content;
    align-items: center;
    justify-content: center;
	font-weight: 600;
	font-size: 18px;
	border-radius: 6px;
	margin-left: 0;
	margin-right: 0
}
.button__icon__img {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s
}
.button__table.active {
  margin-top: -12px
}
.button__table.active .button__icon__img {
	transform: scaleY(-1)
}


/* Charts
--------------------------------------------- */

.highcharts-series-group .highcharts-color-0 {
    fill: var(--color--1);
}
.highcharts-legend-item.highcharts-color-0 rect {
    fill: var(--color--1);
}

.highcharts-series-group .highcharts-color-1 {
    fill: var(--color--2);
}
.highcharts-legend-item.highcharts-color-1 rect {
    fill: var(--color--2);
}

.highcharts-series-group .highcharts-color-2 {
    fill: var(--color--3);
}
.highcharts-legend-item.highcharts-color-2 rect {
    fill: var(--color--3);
}

.highcharts-series-group .highcharts-color-3 {
    fill: var(--color--4);
}
.highcharts-legend-item.highcharts-color-3 rect {
    fill: var(--color--4);
}

.highcharts-series-group .highcharts-color-4 {
    fill: var(--color--5);
}
.highcharts-legend-item.highcharts-color-4 rect {
    fill: var(--color--5);
}

.highcharts-series-group .highcharts-color-5 {
    fill: var(--color--6);
}
.highcharts-legend-item.highcharts-color-5 rect {
    fill: var(--color--6);
}

.highcharts-series-group .highcharts-color-6 {
    fill: var(--color--7);
}
.highcharts-legend-item.highcharts-color-6 rect {
    fill: var(--color--7);
}

.highcharts-series-group .highcharts-color-7 {
    fill: var(--color--8);
}
.highcharts-legend-item.highcharts-color-7 rect {
    fill: var(--color--8);
}



.highcharts-legend-item > text {
	font-weight: 600
}
.highcharts-figure,
.highcharts-data-table table {
    width: 100%;
    max-width: 800px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}


.site-branding {
	margin-bottom: 48px;
}
.main-navigation ul {
	gap: 24px
}
html {
	box-sizing: border-box;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}


body {
	margin: 0;
}


.site-main {
	width: 100%;
	max-width: 1440px;
	padding: 200px 20px 80px 20px;
	margin: 0 auto
}

.site-header {
	width: 100%;
	max-width: 1440px;
	padding: 20px;
	margin: 0 auto 64px auto;
}
main {
	display: block;
}
.entry-title {
	margin-bottom: 64px;
	margin-top: 0
}
.home .entry-title {
	display: none
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}



/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

.head--2xl {
	font-size: clamp(4rem, 4vw + 2rem, 6rem);
}
.head--xl {
	font-size: clamp(3.5rem, 3.5vw + 1.75rem, 5rem);
}
.head--l {
	font-size: clamp(2.5rem, 2vw + 1.5rem, 4rem);
}
.head--m {
	font-size: clamp(2rem, 1.5vw + 1.25rem, 3rem);
}
.head--s {
	font-size: clamp(1.5rem, 0.75vw + 1.1rem, 2rem);
}
.head--xs {
	font-size: clamp(1.2rem, 0.375vw + 0.925rem, 1.3rem);
}

.text--xl {
	font-size: clamp(1.3rem, 4vw, 1.5rem);
}
.text--l {
	font-size: clamp(1.2rem, 4vw, 1.35rem);
}
.text--m {
	font-size: clamp(1.1rem, 4vw, 1.2rem);
}
.text--s {
	font-size: clamp(1.1rem, 4vw, 1.1rem);
}
.text--xs {
	font-size: .9rem;
}

.fw--600 {
	font-weight: 600
}
.fc--white {
	color: #fff
}

dfn,
cite,
em,
i {
	font-style: italic;
}


/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:visited {
	color: #800080;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}



/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}






/* RWD
--------------------------------------------- */
@media only screen and (max-width: 767px) {
	#header-main {
		top: 6px;
	}
	#header-main .header__bar-top {
		height: 36px;
		font-size: 14px
	}
	#header-main .header__bar-bottom {
		height: 56px
	}
	#header-main.anim {
		-webkit-transform: translateY(-43px);
		-ms-transform: translateY(-43px);
		transform: translateY(-43px);
	}
	.header__bar-bottom {
		justify-content: space-between;
	}
	#header__bar-bottom__nav {
		display: none
	}
	.mobile-menu__toggle-container {
		display: flex;
	}		
	#header-main .header__bar-top {
		height: 36px;
		font-size: 14px
	}
	#header-main .header__bar-bottom {
		height: 56px
	}
}
@media (max-width: 480px){
	
	}
}