:root {
    --main-header-height: 7rem;
	--main-header-z-index: 350;
	--panel-width: 3em;
	--panel-width-expanded: 20vw;
    --panel-detail-width: 25vw;
	--panel-z-index: 351;
	--panel-body-z-index: -1;
}

/*================ Main Header ====================*/
body.has-header .ma-main-container {
    /*margin-top: var(--main-header-height);*/
}

.main-header {
	background: #ECECEC;
	min-height: var(--main-header-height);
	position: sticky;
	width: 100%;
	z-index: var(--main-header-z-index);
	/* overflow: hidden; */
	top: var(--nav-height);
	margin-bottom: unset !important;
}

.main-header .ma-region-title {
    color: #3451E8;
    text-transform: uppercase;
	font-family: 'Lato-Heavy' !important;
    margin-left: 2rem;
    margin-top: 1rem;
}

.main-header .ma-region-header,.main-header .ma-region-body {
    width: 60%;
    margin: auto;
	transition: all .5s ease;
}

.main-header .ma-region-body.t-Region-body {
    padding-left: 2rem;
    padding-bottom: 1rem;
    color: #4E4E4E;
	font-family: 'Lato-Bold' !important;
}

body.has-panel .main-header {
    width: calc(100% - var(--panel-width)) !important;
    margin-left: var(--panel-width);
	transition: all .5s ease;	
}

body.has-panel.extend-panel .main-header {
    width: calc(100% - var(--panel-width-expanded)) !important;
    margin-left: var(--panel-width-expanded);
}

body.has-panel.extend-panel .main-header .ma-region-header, body.has-panel.extend-panel .main-header .ma-region-body {
    padding-right: 25%;
    width: 95%;
}

/*================ extend-panel ====================*/

.information-panel-top {
    display: flex;
    flex-direction: column;
    line-height: 2em;
    transition: all .5s ease;
    width: var(--panel-width);
}

.extend-panel .information-panel-top {
    width: var(--panel-width-expanded) !important;
}

.information-panel-top > div {
    text-align: right;
    padding-right: 1em;
}

.extend-panel .information-panel-top-icon i {
    transform: rotate(180deg);
}

.information-panel-top-icon {
    cursor: pointer;
}

.information-panel-top i {
    transition: all .5s ease;
    line-height: inherit;
    font-size: 1.2em;
}

.information-panel-top-title {
    opacity: 1;
    transition: all .5s ease;
}

.extend-panel .information-panel-top-title {
    opacity: 0;
}

.information-panel-top img {
    height: 1.5em;
}

/*================ information-panel-region ===============*/

body.has-panel .ma-main-container {
    width: calc(100% - var(--panel-width)) !important;
    margin-left: var(--panel-width);
	transition: all .5s ease;
}

body.has-panel.extend-panel .ma-main-container {
    width: calc(100% - var(--panel-width-expanded)) !important;
    margin-left: var(--panel-width-expanded);
}

body.has-panel.open-panel .ma-main-container *{
	/*z-index: var(--panel-body-z-index) !important;*/
}

body.has-panel footer{
	/*z-index: 0;*/
    width: calc(100% - var(--panel-width)) !important;
    margin-left: var(--panel-width);
	transition: all .5s ease;	
}

body.has-panel.extend-panel footer{
    width: calc(100% - var(--panel-width-expanded)) !important;
    margin-left: var(--panel-width-expanded);
}

.information-panel-region {
    padding: 0 !important;
    background-color: #C2CBF83D;
    position: fixed;
    width: var(--panel-width);
    height: calc( 100vh - 100px );
    z-index: var(--panel-z-index);
    transition: all .5s ease;
}

.extend-panel .information-panel-region {
    width: var(--panel-width-expanded);
}

.information-panel {
    display: flex;
    position: relative;
    align-content: center;
}

.information-panel:hover .separator {
    width: 6vw;
}

.separator{
    width: 1.5rem;
    height: 2px;
    background: #00FFA7;
    transition: width 0.5s ease-in-out !important;
}

.information-panel-title p {
    margin: 0 !important;
    font-weight: 600;
}

.information-panel-title {
    margin-bottom: 1em !important;
}

.information-panel-title, .information-panel-content {
    opacity: 0;
    transition: all .5s ease;
    margin-left: 2em;
    margin-right: 2em;
    width: 0;
}

.extend-panel .information-panel-title, .extend-panel .information-panel-content {
    opacity: 1;
    width: calc( var(--panel-width-expanded) - 4em );
}

.information-panel-content {
    max-height: calc(100vh - 15em);
    overflow: auto;
}

.help-title {
    height: 2.5em;
    padding: 0.3em 0.5em;
    margin: 1em 0;
}

.help-title.open{
    background-color: #C2CBF8;
    font-weight: 600;
}

.help-title .open-detail {
    color: #4E4E4E !important;
    text-decoration: underline;
}

.details-right {
    left: var(--panel-width-expanded);
    height: calc( 100vh - 100px );
    position: absolute;
    width: 0rem;
    transition: .3s ease;
    visibility: hidden;
    background-color: #C2CBF8;
    align-items: center;
}

.details-right.open {
    width: var(--panel-detail-width);
    visibility: visible;
}

.close-button {
    position: absolute;
    top: 1em !important;
    display: block;
    right: 1rem;
}

.details-content {
    height: calc( 100vh - 100px - 3.5em);
    overflow: auto;
    margin: 3rem 1.5rem 0;
}

.information-panel-region *::-webkit-scrollbar {
    width: 4px !important;
    height: 4px;
    background-color: white;
}

.information-panel-region *::-webkit-scrollbar-thumb {
    background: #7185EF; 
}

.details-content p {
    font-size: 1em;
    color: #4E4E4E;
}

.questions-title {
    font-weight: 600;
}

@media only screen and (max-width: 600px){
	.main-header {
		overflow: auto;
	}
	.main-header .ma-region-header, .main-header .ma-region-body {
		width: 95%;
	}
	.main-header .ma-region-title {
		margin-top: .5rem;
		margin-left: 1rem;
		font-size: 1rem !important;
	}	
	.main-header .ma-region-body.t-Region-body {
		padding-left: 1rem;
		font-size: .9rem;
	}
}
