@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

span {
	image-size: 35px;
	font-weight: bold;
}

:root {
	--md-default-fg-color--light: #000000;			/*to change h1 level heading color*/
	
	--color-greyscale-1000: #000000;
	--color-greyscale-900: #1a1a1a;
	--color-greyscale-800: #3d3d3d;
	--color-greyscale-700: #666666;
	--color-greyscale-600: #8c8c8c;
	--color-greyscale-500: #a6a6a6;
	--color-greyscale-400: #bfbfbf;
	--color-greyscale-300: #d9d9d9;
	--color-greyscale-200: #ebebeb;
	--color-greyscale-100: #f7f7f8;
	--color-greyscale-000: #ffffff;
	
	--color-primary-700: #1a3ea8;	/* Primary (blue) */
	--color-primary-600: #4169e1;
	
	--color-secondary-700: #e36d00;		/* Secondary (Modelon brand orange) */
	--color-secondary-600: #f59842;
	
	--marketing-black: #343E47;	/* As used on modelon.com */
	--text-default: var(--marketing-black);
	--text-light: #717C85;
	--header-default: var(--marketing-black);
	--link-color: #0A68BC;
	
	--shadow-default: 0px 4px 8px 0px rgba(0,0,0,0.5);
	--new-shadow: 8px 8px 4px 0px rgba(0,0,0,0.5);

	--Code-block: #FFFCEE;

	--color-info-box: #E56400;
}

.md-typeset div.arithmatex {
    overflow-y: hidden;
}

body {
	background-image: linear-gradient(#EBF4FA, #FFFFFF 19.5rem);
	background-repeat: no-repeat;
	background-color: #FFF; /* fallback */
	color: var(--text-default);
}

nav.md-tabs {
	box-shadow: 5px 0 8px rgba(0,0,0,.15);
}

form.md-search__form {
	border-radius: 30px;
}

input.md-search__input::placeholder {
	color: var(--color-greyscale-500);
}

.md-consent__controls button.md-button {
	background-color: #F0F8FF;
	color: #000000;
}

.md-consent__controls label.md-button {
	background-color: #F0F8FF;
	color: #000000;
}

.md-grid a {
	/*To change the color of the text in header*/
	color: #000000;
	font-weight: bold;
}

.md-content.a {
	/*To change the font style of the links in the article*/
	font-family: 'Open Sans';
	font-weight: bold;
}

article.md-content__inner.md-typeset {
	line-height: 2;
	font-size: medium;
}

.md-typeset a {
	/*To change the link color inside the articles*/
	color: var(--link-color); /*New addition*/
	text-decoration: none;
	font-weight: normal;
}

.md-nav__link {
	/*To make font bold for drop down in navigation*/
	font-weight: bold;
}

.md-typeset span.md-tag {
	/*To change Tags color*/
	background-color: rgb(52,62,71);
	color: #F0F8FF;
	opacity: 80%;
}

header.md-header {
	/*to change the opacity of the header*/
	opacity: 100%;
}

footer.md-footer {
	/*To customize footer*/
	background-color: #ffffff;
}

span.md-footer__direction {
	color: #000000;
}

div.md-copyright__highlight {
	color: #000000;
}

.md-typeset h1, .md-typeset h2, .md-typeset h3, .md-typeset h3, .md-typeset h4 {
	/* To change style of the headings */
	font-family: 'Open Sans'; /*New addition*/
	font-weight: 400; /*New addition*/
	letter-spacing: 0.5; /*New addition*/
}

.md-nav label {
	/* Headers in sidebars */
	color: var(--text-default);
}

.md-nav .md-nav label {
	/* Expandable sidebar items. Slightly hacky, but didn't find a better way to only apply the styling above to the header only, since sidebars are nested in sidebars. */
	font-weight: normal;
	color: var(--text-light);
}

.md-sidebar .md-nav__item a {
	color: var(--text-light);
	font-weight: normal;
}

.md-sidebar .md-nav__item a:hover {
	color: var(--link-color);
}

.md-sidebar a.md-nav__link--active {
	color: var(--color-secondary-700);
	font-weight: bold;
}

/*.md-nav__item a:hover {
	color:#002db4;
}

.md-nav__item a:visited {
	color:#002db4;	
}

.md-nav__item a:active {
	color:#002db4;
}*/

/* div.md-grid{ 				to change background for a class
	background-color: #eed6c1;
}
 */
/*a:link{							To change all link color
	text-decoration:underline;
	color:#E36D00;
}*/
.md-typeset h1 {
	/*To change style of the headings h1, h2, h3*/
	font-style: normal; /*New addition*/
	font-size: 40px; /*New addition*/
	margin-bottom: 40px; /*New addition*/
	line-height: normal; /*New addition*/
	color: var(--marketing-black);
	
}

.md-typeset h2 {
	/*font-weight: bold;*/
	font-style: normal; /*New addition*/
	font-size: 30px; /*New addition*/
	line-height: 1.5; /*New addition*/
	color: var(--marketing-black);
}

.md-typeset h3 {
	/*font-weight: bold;*/
	font-style: normal; /*New addition*/
	font-size: 25px; /*New addition*/
	color: var(--marketing-black);
}

.sticky {
	/*Used to align Helpcenter logo in home page */
	float: left;
	margin: 5px;
}

.button, .button1 {
	/* to create a button for heading*/
	background-color: var(--color-greyscale-000);
	border: 2px solid var(--color-secondary-700);
	color: var(--color-secondary-700);
	text-align: center;
	display: inline-block;
	font-size: 18px;
	margin-bottom: 4px;
	transition-duration: 0.1s;
	border-radius: 20px;
	padding: 6px 25px;
}

button {
	cursor: pointer;
}
.button:hover {
	cursor: pointer;
}

.button:hover, .button1:hover {
	background-color: var(--color-secondary-700);
	color: var(--color-greyscale-000);
}

.button:hover, .button1:hover {
	background-color: var(--color-secondary-700);
	color: var(--color-greyscale-000);
}

.button:hover, .button1:hover {
	background-color: var(--color-secondary-700);
	color: var(--color-greyscale-000);
}

div.block {
	/*2nd block in index file*/
	display: block;
	width: 100%;
	padding: 1px;
	border: 1px solid rgb(52, 62, 71);
	background-color: rgb(52,62,71);
	border-radius: 12px;
	color: #F0F8FF;
	text-align: center;
}

div.heading {
	/*Used to increase in the block 2*/
	color: #FFFFFF;
	font-size: xx-large;
}

div.block a {
	color: #FFFFFF;
}

div.block1 {
	/*1st block in index file*/
	display: block;
	width: 100%;
	padding: 10px;
	border: 2px solid #fff4c7;
	background-color: #fff4c7;
	border-radius: 12px;
	color: #000000;
	text-align: center;
}

.grid-container {
	/*Used to align cards in home page*/
	display: grid;
	gap: 2%;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}

.grid-container3 {
	/*Used to align cards in home page*/
	display: grid;
	gap: 2%;
	grid-template-columns: repeat(3, 1fr);
	align-items: stretch;
}

.grid-containers {
	/*Used to align cards in home page*/
	display: grid;
	gap: 2%;
	grid-template-columns: repeat(2, 1fr);
	background-color: #ffffff;
	align-items: stretch;
}

.grid-container1 {
	/*Used to align cards in home page*/
	display: grid;
	column-gap: 2%;
	row-gap: 45px;
	grid-template-columns: repeat(4, 2fr);
	background-color: none;
	align-items: stretch;
	width: 100%;
}

.card {
	/*Used to create cards avail in home page*/
	background-color: var(--color-greyscale-000);
	border-radius: 0.2cm;
	box-shadow: var(--shadow-default);
	transition: 0.3s;
	width: 280px;
	height: 400px;
	padding: 10px;
	line-height: 1.4;
}

.card1 {
	/*Used to create cards avail in home page*/
	background-color: #FFFFFF;
	border-radius: 0.2cm;
	box-shadow: var(--shadow-default);
	transition: 0.3s;
	width: 280px;
	height: 330px;
}

.container {
	/*Alignment of text inside cards*/
	padding: 20px 16px;
	text-align: center;
}

/*Code to be included for icons*/

/* Create three equal columns that floats next to each other */

.column {
	float: left;
	padding-top: 0px;
	padding-bottom: 10 px;/*New addition*/
	line-height: normal;
}

/* Clear floats after the columns */

.row {
	content: "";
	display: flex;
	/*background-color: rgb(247,247,247);*/
	grid-template-columns: repeat(3, 10fr);
	padding: 20px;
	gap: 80px;
	clear: both;
	text-align: left;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: relative;
	background-color: #f9f9f9;
	min-width: auto;
	box-shadow: 0px 8px 16px 0px rgb(52, 62, 71);
	padding: 12px 16px;
}

.dropdown:hover .dropdown-content {
	display: block;
	border-radius: 0.3cm;
}

.grids{
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 10px;
}
.card-grid{
	display: flex;
	flex-direction: column;
}
.heat{
	align-self: center;
}
.hea{
	padding: 10px 10px 10px 10px ;
	border-radius: 10px 10px 10px 10px ;
}

.inner-card{
	display:block;
	width: 380px;
	height: 450px;
	background-color: rgb(247, 247, 247);
	border-radius: 0.2cm;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.313);
}

.inner-card1{
	display:block;
	width: 380px;
	background-color: rgb(247, 247, 247);
	border-radius: 0.2cm;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.313);
}


.im{
	width:100%;
	padding-top: 30px;
}

.sub{
	text-align: center;
}

.switchbuttons{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 10px;

}

li.md-tabs__item:nth-child(6){
	display:none;
 }

@media screen and (min-width: 800px) and (max-width: 1200px) {
	.grid-container {
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 150px;
	}

	.grid-container3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 500px) and (max-width: 800px) {
	.grid-container {
		grid-template-columns: repeat(1, 1fr);
		margin-bottom: 150px;
	}

	.grid-container3 {
		grid-template-columns: repeat(1, 1fr);
	}

	.row {
		grid-template-columns: repeat(2, 1fr);
	}

	article.md-content__inner.md-typeset {
		font-size: small;
		line-height: 1.5;
		word-spacing: 1px;
		letter-spacing: 0.1px;
		
	}

}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
	.column {
		width: 100%;
	}
}

.md-footer__inner md-grid {
	background-color: #FFFFFF;
}

div.md-copyright a {
	color: #000000;
}

/*Additional css for help.modelon.com by Enos */

.md-content {
	/*To change the background color and put border for the center content */
	border-radius: 12px;
	padding: 0px 5px;
	justify-content: center;
	
	background-color: var(--color-greyscale-000);
	box-shadow: 0px 20px 20px 5px rgba(0,0,0,0.05);
}

.md-grid {
	max-width:  1440px;
	gap: 35px;
  }
  
.md-sidebar__scrollwrap {
	/*To change the background color and put border for the center content */
	padding: 0px 10px 60px 10px;
	border-radius: 12px;
	background: var(--color-greyscale-000);
	box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.05);
}

.md-sidebar--primary, .md-sidebar--secondary {
	padding: 0px;
}

.md-typeset code {
	background-color: var(--Code-block);
	border-radius: 4px;
}

.md-typeset :is(.admonition,details):is(.disclaimer) {
	border-color: var(--color-info-box);
	border-radius: 4px;
	border-width: 0px 3px 3px 3px;
	font-size: medium;
}

.md-typeset :is(.admonition,details):is(.note){
	border-color: var(--color-info-box);
	border-radius: 4px;
	border-width: 0px 3px 3px 3px;
	font-size: medium;
}

.md-typeset :is(.admonition,details):is(.tip){
	border-color: var(--color-info-box);
	border-radius: 4px;
	border-width: 0px 3px 3px 3px;
	font-size: medium;
}

.md-typeset :is(.admonition-title,summary):before {
	/*Remove icons in the box */
	position: relative;
	display: none;
}

.md-typeset :is(.disclaimer)>:is(.admonition-title,summary) 
{
	/*Changes to title for DISCLAIMER */
	font-style: normal; /*New addition*/
	font-size: 18px; /*New addition*/
	background-color: var(--color-info-box);
	color: var(--color-greyscale-000);
	font-family: "Open Sans";
	padding: 0px 5px;
	margin-left: -13px;	
}

.md-typeset :is(.note)>:is(.admonition-title,summary)
{
	/*Changes to title for NOTE */
	font-style: normal; /*New addition*/
	font-size: 18px; /*New addition*/
	background-color: var(--color-info-box);
	color: var(--color-greyscale-000);
	font-family: "Open Sans";
	padding: 0px 5px;
	margin-left: -13px;	
}

.md-typeset :is(.tip)>:is(.admonition-title,summary)
{
	/*Changes to title for TIP */
	font-style: normal; /*New addition*/
	font-size: 18px; /*New addition*/
	background-color: var(--color-info-box);
	color: var(--color-greyscale-000);
	font-family: "Open Sans";
	padding: 0px 5px;	
	margin-left: -13px;
}

/*Look and feel of each sub-headings in Modelon Impact,
		Libraries, Introduction,Documentation, Tools*/
 
.outline-box{
	background-color: var(--color-greyscale-000);
	box-shadow: var(--shadow-default);
	border-width: 0.015px;
	border-radius: 4px;
	padding:20px;
  }
  .md-nav--lifted>.md-nav__list>.md-nav__item--active>.md-nav__link {
	padding-top: 60px;
  }
  .md-nav--secondary .md-nav__title {
	padding-top: 60px;
  }
  .md-nav--lifted>.md-nav__list>.md-nav__item>[for] {
	color: #000000;
}
.ipd {
	display: flex;
    align-items: center;
    text-align: justify;
    justify-content: space-between;
}