@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Inter:400,500,700,900&subset=latin-ext');

:root {
	--clrDefault: #FFFFFF;
	--clrBlue: rgba(0,55,104,100); /* #003768; */
	--clrOrange: rgba(232,158,2,100); /* #E89E02; */
	--clrOrangeOp: rgba(242,176,38,25) /* #F3B125 Opacity (60%) */;
	--clrGray: rgba(178,178,178,100); /* #B2B2B2 */
	--clrLightGray: rgba(238,238,238,100); /* #EEEEEE */
	--clrGrayOp: rgba(2,56,104,10); /* #023868 Opacity (10%) */
}

html, body {
	font-family: 'Inter';
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background-color: #EAEAEA
}


/* SCROLLBAR */

body::-webkit-scrollbar {
	width: 12px;
	border-radius: 10px;
}

body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
		background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.33, rgb(122,153,217)),
									   color-stop(0.50, rgb(73,125,189)),
									   color-stop(0.70, #1E2A50));
	border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: linear-gradient(98.83deg, #FFC22C -0.45%, #FFAB2C 101.4%) !important;	
}

h1, h2, h3, h4 {
	/*text-shadow: 2px 2px rgba(0,55,104,0.15);*/
	margin:10px;
}

h1 {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 800;
	font-size: 44px;
	line-height: 50px;
}

h2 {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 800;
	font-size: 30px;
	line-height: 70px;
}

/* HEADER */

.header {
	background: linear-gradient(107.15deg, #1E2A50 0%, #001B6F 33.33%, #001B6F 66.67%, #00124B 100%) !important;
	min-height: 6vh;
	width:100%;
	display: grid;
    grid-template-columns: 1fr 3fr 1fr 1fr 1fr;
    align-items: stretch;
}

.header .column {
    width: auto;
    display: flex;
    flex-direction: column;
    padding: 1.5em;
    align-items: center;
    position: relative;
}


.logo {
	margin-left: 5%;
}

.logo img {
	height: 65px;
}

.auth a {

	width: 100%;
	height: 22px;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #F2F2F2;
	text-decoration:none;
	padding: 0.1em;
	border-radius: 5px;
	text-align:center;
}

.auth a:hover {
	background-color: rgba(242,176,38,0.25)
}

.lang select{
    width: 50px !important;
    height: 25px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #F2F2F2 !important;
    background-color: transparent !important;
    border: none;
}

.lang option{
    width: 50px !important;
    height: 25px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #003768 !important;
    background-color: transparent !important;
    border: none !important;
}


/*** MENU ***/

.nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(107.15deg, #1E2A50 0%, #001B6F 33.33%, #001B6F 66.67%, #00124B 100%) !important;
	height: 65px;
	padding: 1em;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #F2F2F2;
}

.menu li:hover{
	color:white;
	cursor:pointer;
}

.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu > li {
	margin: 0 1rem;
	overflow: hidden;
}
/*Container for menu button  */
.menu-button-container {
	display: none;
	height: 100%;
	width: 30px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#menu-toggle {
  display: none;
}

/*  Creating the menu button */
.menu-button,
.menu-button::before,
.menu-button::after {
	display: block;
	background-color: #fff;
	position: absolute;
	height: 5px;
	width: 32px;
	border-radius: 3px;
}

.menu-button::before {
	content: '';
	margin-top: -8px;
}

.menu-button::after {
	content: '';
	margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
/*  transforms the hamburger icon into a cross  */
  transform: rotate(-45deg);
}

/*** BODY-CONTENT ***/

.title {
	font-family: 'Inter' !important;
	font-style: normal !important;
	font-weight: 600 !important;
	font-size: 40px !important;
	line-height: 46px !important;
	font-family: 'Inter' !important;
	float:none !important;
}

.title H1 {
	border-image: linear-gradient(92.55deg, #FFC72C 2.88%, #FFAB2C 97%);
}

.title b {
	font-weight: 800;
}

.top-left p{
    text-align:center;
	margin: 10px;
}

.padding-top {
	padding-top: 2em !important;
}

.bottom-right {
    display: grid;
    border-top: 5px solid rgba(232,158,2,100);
    width: 5%;
    margin: 0 auto;
	border-radius: 5px;
}

.underline {
    display: grid;
    border-top: 6px solid rgba(232,158,2,100);
    width: 20%;
    margin-left: 1.5%;
    border-radius: 5px;
}

.body-row {
	display: grid;
	grid-template-columns: 2fr 2fr;
	align-items: stretch;
	padding: 1em 0em;
	margin-bottom: 0em !important;
}

.body-column {
    width: 75%;
    display: flex;
    flex-direction: column;
    padding: 1em;
    min-height: 15vh;
    margin: 0 auto;
    align-self: center;
}

.body-column h2 {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 800;
	font-size: 40px;
	line-height: 70px;
}

.body-column p {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 22px;
	line-height: 29px;
}

.body-cards {
	display: grid;
	grid-template-columns: 2fr 2fr;
	align-items: stretch;
	padding: 1em 0em;
	margin-bottom: 1em !important;
	background: rgba(255, 255, 255, 0.2) !important;
	border-radius: 25px;
}

.body-card {
    display: flex;
    flex-direction: column;
	column-count: 2;
    padding: 1em;
    margin: 0 25%;
    align-self: center;

}

.body-column img{
    align-self: center;
    /* width: 75%; */
}

.primary-hero {
	background: linear-gradient(107.15deg, #1E2A50 0%, #001B6F 33.33%, #001B6F 60%, #00124B 92%) !important;
	padding-bottom: 6em;
}

.primary-hero H1 {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 800;
	font-size: 44px;
	line-height: 50px;
	color: #FFC72C;
}

.primary-hero a {
    padding: 1em;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 40px;
    /* background: linear-gradient(92.55deg, #FFC72C 2.88%, #FFAB2C 97%);*/
	border: 2px solid #FFC72C;
    border-radius: 50px;
    color: #FFC72C;
    margin-top: 1em;
    max-width: 300px;
    text-decoration: none;
    text-align: center;
}

	.primary-hero button {
		padding: 1em;
		font-family: 'Inter';
		font-style: normal;
		font-weight: 800;
		font-size: 18px;
		line-height: 40px;
		/* background: linear-gradient(92.55deg, #FFC72C 2.88%, #FFAB2C 97%);*/
		background:transparent;
		border: 2px solid #FFC72C;
		border-radius: 50px;
		color: #FFC72C;
		margin-top: 1em;
		max-width: 300px;
		text-decoration: none;
		text-align: center;
	}

.primary-hero img{
	padding-bottom: 6em;
	position:relative;
	left: 10vh;
}

.block {
    display: grid;
    grid-template-columns: 2fr 2fr;
    align-items: stretch;
    background-color: #17233E !important;
    margin: 0 12.5%;
    border-radius: 50px;
    position: relative;
    max-width: 75%;
    padding: 2em;
    top: -14vh;
}

.block p {
    margin: 0px;
    left: -10vh;
    position: relative;
    width: 150%;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 46px;
	color: #FFC72C;
}

.block img {
    align-self: center;
	width: 75%;
}

.top {
	position: relative;
	top:2em;
}

.blue {
	background-color: #00124B !important;
}

.blue-linear {
	background: linear-gradient(107.15deg, #001B6F 0%, #00124B 100%) !important;
}

.orange {
	background: linear-gradient(98.83deg, #FFC22C -0.45%, #FFAB2C 101.4%) !important;
}

.text-blue{
	font-family: 'Inter';
	font-style: normal;
	color: #001B6F;
}

.text-orange{
	font-family: 'Inter';
	font-style: normal;
	color: #FFC72C;	
}

.text-white{
	font-family: 'Inter';
	font-style: normal;
	color: #FFFFFF;	
}

.text-grey{
	font-family: 'Inter';
	font-style: normal;
	color: #F2F2F2 !important;	
}

.percent {
	max-width: 75%;
	margin: 0 12.5%;
	border-radius: 50px;
	/* max-height: 20vh; */
	margin-top: 1em;
	grid-template-columns: 1fr 3fr;
}

.icon img {
	max-width: 60%;
    align-self: center;
}

.border-blue {
	border: 2px solid #001B6F;
}


/* CARD */

.container-row {
  width: 100% !important;
  padding: 0 !important;
  margin-right: auto;
  margin-left: auto;
  margin-top: 16px;
}

@media screen and (min-width: 992px) and (max-width: 1439px) {   
	.container-row {
		padding: 0 !important;
		/* margin: 0 80px !important; */
		width: auto !important;
	}
}

@media screen and (max-width: 991px) {
	.container-row {
		/* margin: 0 16px !important; */
		padding: 0 !important;
		width: auto !important;
	}
}

.gradient-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 200px;
}

@media screen and (max-width: 991px) {
	.gradient-cards {
		grid-template-columns: 1fr;
	}
}

.container-title {
	text-align: center;
	padding: 0 !important;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-size: 38px;
	line-height: 46px;
	color: #FFC72C;
	position:relative;
	top: 2em;
}

.card-land {
  max-width: 550px;
  border: 0;
  width: 100% !important;
  margin-inline: auto;
}

.container-card {
    position: relative;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 1em;
    min-height: 300px;
    align-items: center;
    display: grid;
}

.container-card img {
    margin-bottom: 32px;
    align-self: center;
    justify-self: center;
}

.card-header {
	display: grid;
	grid-template-columns: 3fr 1fr;
}	

.card-title {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-size: 28px;
	line-height: 32px;
	color: #FFFFFF;
	max-width:75%;
	float: left;
}

.card-description {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	
	color: #FFFFFF;
}

/* FORM */
form {
	min-height: 15px !important;
	min-width: 300px;
}

/* Form input */

label {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 800;
	font-size: 24px;
	line-height: 70px;
	color: #001B6F;
}
.dms {
	font-size: 16px;
	line-height: 18px;
	align-self: center;
}
input {
	/*display: block;*/
	border: none;
	width: 100%;
	padding: 12px;
	background: #FFFFFF;
	border-radius: 50px !important;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 800;
	font-size: 18px;
	line-height: 50px;
	letter-spacing: 0.1em;
	color: #001B6F;
	box-shadow: none !important;
}

    input:hover {
        box-shadow: 0 0 2px 2px #fff, 0 0 3px 3px var(--clrBlue);
    }

	input[type="checkbox"] {
		appearance: none;
		background-color: transparent;
		margin: 0;
		font: inherit;
		color: #EAEAEA;
		width: 1.15em;
		height: 1.15em;
		border: 0.15em solid #EAEAEA;
		border-radius: 0.15em;
		transform: translateY(-0.075em);
		display: grid;
		place-content: center;
	}

		input[type="checkbox"]::before {
			content: "";
			width: 0.65em;
			height: 0.65em;
			transform: scale(0);
			transition: 120ms transform ease-in-out;
			box-shadow: inset 1em 1em #EAEAEA;
			border-radius: 50%;
		}

		input[type="checkbox"]:checked::before {
			transform: scale(1);
		}

/* FOOTER */

.footer {
    font-size: 10.5px;
    color: #999999;
    min-height: 100px;
	/*max-height: 464px;*/
    width: 100%;
    background: #001B6F;
	padding-top: 3em;
}

.footer-row {
    padding: 1em 1em;
}

	.footer-row.primary {
		display: grid;
		grid-template-columns: 2fr 1fr 1fr 2fr;
		align-items: stretch;
	}

.footer-column {
    width: 75%;
    display: flex;
    flex-direction: column;
    padding: 2em;
    min-height: 15em;
	margin: 0 12.5%;
}

    .footer-column h3 {
        width: 100%;
        text-align: left;
        color: white;
        font-size: 1.4em;
        white-space: nowrap;
    }

    .footer-column ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .footer-column li:not(:first-child) {
        margin-top: 0.8em;
    }

    .footer-column ul li a {
        color: #a7a7a7;
        text-decoration: none;
    }

        .footer-column ul li a:hover {
            color: #2a8ded;
        }

    .footer-column img {
        max-width: 200px;
        width: 100%;
    }

.about p {
    /*text-align: justify;*/
    line-height: 2;
    margin: 0;
}

div.social {
	display: flex;
	justify-content: space-around;
	font-size: 2.4em;
	flex-direction: row;
	margin-top: 0.5em;
	height: 200px;
	top: 5vh;
	position: relative;
	left: -0.5em;
}

.social i {
    color: var(--clrOrange);
}

.social img {
	padding: 0 0.5em;
}

.subscribe{
    background-image: url("../Content/Images/mesh_logo_footer.svg");
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    align-items: center;
    width: fit-content;
    justify-self: center;
}

.subscribe h3 {
	top: 5vh;
	position: relative;
	
}

.copyright {
    padding: 0.3em 1em;
    background-color: #25262e;
}

@media (max-width: 991px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 80px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }
  #menu-toggle:checked ~ .menu li {
    /*border: 1px solid #ffffff;*/
    height: 2.5em;
    padding: 0.5em;
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: #f2f2f2;
    background: linear-gradient(107.15deg, #1E2A50 0%, #001B6F 33.33%, #001B6F 60%, #00124B 92%) !important;
    
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
 
  }
}

/* RESPONSIVE */


@media only screen and (max-width: 1660px) {
	.block p {
		font-size: 30px !important;
		line-height: 36px !important;
	}
	.primary-hero {
		padding-bottom: 6.5em
	}
		.primary-hero img {
			left: calc(100% - 520px);
			width: 650px;
		}
	.body-column h2 {
		font-size: 35px;
		line-height: 70px;
	}

	.body-column p {
		font-size: 20px;
		line-height: 19px;
	}	
	
	.title {
		font-family: 'Inter';
		font-style: normal;
		font-weight: 600;
		font-size: 36px;
		line-height: 42px;
		font-family: 'Inter';
	}
}

@media only screen and (max-width: 1440px) {
	.header {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	.body-row {
		/* grid-template-columns: 2fr 2fr; */
		padding: 1em 0;
	}
	.primary-hero {
		padding-bottom: 4.5em
	}
		.primary-hero img {
			left: calc(100% - 480px);
			width: 600px;
		}
    .footer-row.primary {
        grid-template-columns: 2fr 2fr;
    }
	.block {
		display: grid;
		grid-template-columns: 2fr 2fr;
		align-items: stretch;
		background-color: #00124B !important;
		margin: 0 12.5%;
		border-radius: 50px;
		position: relative;
		min-height:125px;
		max-height: 20vh;
		padding: 2em;
		top: -10vh;
	}

		.block p {
			font-size: 30px !important;
			line-height: 36px !important;
			left: -5vh;
		}	

	.body-column h2 {
		font-size: 30px;
		line-height: 70px;
	}

	.body-column p {
		font-size: 16px;
		line-height: 19px;
	}
	.title {
		font-family: 'Inter';
		font-style: normal;
		font-weight: 600;
		font-size: 30px;
		line-height: 36px;
		font-family: 'Inter';
	}
	input {
		max-width:570px;
	}
}

@media only screen and (max-width: 1200px) {
	.header {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.body-row {
		/* grid-template-columns: 1fr 1fr; */
	}
    .footer-row.primary {
        grid-template-columns: 1fr 1fr;
    }
	.body-column img{
		width: 75%; 
	}
	.primary-hero img {
		width: 500px;
		left: calc(100% - 395px);
	}
	.block {
		grid-template-columns: 2fr ;
		max-height: 45vh;
	}
		.block p {
			font-size: 24px !important;
			line-height: 30px !important;
			padding: 1em;
			max-width: 125%;
			text-align: center;
			left: -10vh;
		}
	.block img {
		align-self: center;
		width: 300px;
	}
}

@media only screen and (max-width: 991px) {
	.header {
		grid-template-columns: 1fr 1fr;
	}
	.body-row {
		grid-template-columns: 1fr;
	}
	.primary-hero H1 {
		font-weight: 700;
		font-size: 36px;
		line-height: 38px;
	}	
	.block {
		max-height: 80vh;
		top: -20vh
	}
		.block p {
			font-size: 18px;
			line-height: 24px;
			left: -15vh;
		}
	.gradient-cards {
		padding:16px !important;
	}
	.container-title {
		top:0em !important;
	}
	.top {
		top:0em;
	} 
    .footer-row.primary {
        grid-template-columns: 1fr;
    }
	.footer-column {
		align-items:center;
	}
		.footer-column h3 {
			text-align:center !important;
		}
		.footer-column ul {
			text-align:center !important;
		}
	.primary-hero img {
		width: 500px;
		left: calc(100% - 495px);
	}
	.icon img {
		width: 50%;
	}
	input {
		width: 90%
	}
	.card-title {
		font-size: 18px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 667px) {
	.header {
		grid-template-columns: 1fr;
	}
	.primary-hero H1 {
		font-size: 22px;
		line-height: 25px;
	}
	.primary-hero img {
		width: 365px;
		left: calc(100% - 300px);
	}
	.block {
		top: -25vh
	}
	.block img {
		width: 200px;
	}
	.block p{
		left: -8vh;
	}
    .footer-row.primary {
        grid-template-columns: 1fr;
    }
	.body-column h2 {
		font-size: 30px;
		line-height: 40px;
	}
	.dms{
		font-size:9px;
		line-height:9px;
	}
	.footer-column {
		align-items: center;
	}

		.footer-column h3 {
			text-align: center !important;
		}

		.footer-column ul {
			text-align: center !important;
		}
}
.btnSubmit:disabled {
	background: none !important;
	background-color: #8f8f8f !important;
}

/* Header */
.app-header {
	/*padding: 0 !important;*/
	/*box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.2);*/
	/*border-bottom-width: 0 !important;
    background: linear-gradient(107.15deg, #1E2A50 0%, #001B6F 33.33%, #001B6F 66.67%, #00124B 100%) !important;*/

	padding: 1em !important;
	/* box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.2); */
	border-bottom-width: 0 !important;
	background: linear-gradient(107.15deg, #1E2A50 0%, #001B6F 33.33%, #001B6F 66.67%, #00124B 100%) !important;
	height: 65px;
	/*    align-items: center;
    justify-content: space-between;
    display: flex;
    flex-direction: row;*/
}

	.app-header .left-block {
		float: left;
	}

	.app-header .right-block {
		float: right;
	}

	.app-header .menu-container {
		overflow: hidden;
		/*background: -webkit-linear-gradient(Left, white, var(--clrBlue)) !important*/
	}

		.app-header .menu-container > div {
			float: right;
		}

.header-logo {
	background: url('/Content/Images/mesh_logo.svg') no-repeat center;
	background-size: cover;
	height: 50px;
	width: 220px;
}

@media (max-width: 375px) {
	.header-logo {
		background: url('/Content/Images/mesh_logo.svg') no-repeat center;
		background-size: contain;
		height: 50px;
		width: 220px;
	}
}

.app-header .left-block .header-menu .image-item > .dxm-content {
	padding: 0 8px 0 8px;
}

.app-header .right-block .header-menu .image-item > .dxm-content {
	padding: 0 7px 0 7px;
}

.app-header .left-block .header-menu .item.toggle-item > .dxm-content {
	padding: 0 14px 0 14px;
}

.app-header .right-block .header-menu .item.toggle-item > .dxm-content {
	padding: 0 14px 0 14px;
}

.app-header .header-menu .item.selected {
	color: inherit;
	box-sizing: border-box;
	/* DXCOMMENT: Duplicates color from the web.config (devexpress->themes->baseColor) */
	/*border-bottom: solid 2px #00124B;*/
	border-bottom: solid 2px #FFAB2C;
	background-color: var(--clrOrange);
}
.app-header .header-menu .item .dxm-content {
	color: #FFF !important;
	border-bottom-width: 0 !important;
	font-family: 'Inter';
	font-size:20px;
	font-weight:700;
	padding:20px;
}

.app-header .header-menu .item.selected,
.app-header .header-menu .item:hover {
	/*background-color: rgba(0,55,104, 0.25);*/
	background-color: transparent !important;
	color: var(--clrOrange);
}

	.app-header .header-menu .item.selected .dxm-content {
		margin-bottom: -2px;
	}

	.app-header .header-menu .item.selected .dxm-content,
	.app-header .header-menu .item.hovered .dxm-content {
		color: var(--clrBlue) !important;
	}

.dxm-side-menu-button{
	background-color: transparent !important;
}

/* Main Menu */
.header-menu {
	/*background-color: #fff !important;*/ /*var(--clrBlue) !important;*/
	background: transparent !important;
	border-style: none !important;
	height: 3.13rem;
}

@media (max-width: 599px) {
	.menu-container .dxm-ltr > div:not(.header-menu) {
		width: 100% !important;
	}

	.header-sub-menu {
		width: 100% !important;
	}
}

.header-sub-menu .item {
	padding: 12px 7px !important;
}

/* Ellipsis -> Apps Icon */
.header-menu .adaptive-image {
	background: url('Images/adaptive-menu.svg') no-repeat center;
	width: 16px;
	height: 16px;
	padding: 0 8px;
}
/* Hide item images */
.header-menu.application-menu .item .dxm-content > img {
	/*display: none !important;*/
}

@media (max-width: 720px) /* Change Ellipsis image Apps Icon */
{
	.app-header .menu-container > div {
		width: 47px;
	}

	.header-menu .adaptive-image {
		background: url('Images/application.svg') no-repeat center;
	}

	/* Show item images */
	.header-menu.application-menu .item .dxm-content > img {
		display: inline-block;
	}
}

/* Right area menu */
.header-menu .toggle-item .image {
	background: url('Images/double.svg') no-repeat center;
}

.header-menu .toggle-item.checked .image {
	background: url('Images/double-close.svg') no-repeat center;
}

.header-menu .image-item {
	vertical-align: middle !important;
}

.header-menu .vertically-aligned,
.header-menu .vertically-aligned.hovered {
	font-size: 0;
	/*background-color: #fff !important;*/
}

/* Account */
.header-menu .account-background {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: transparent !important;
}

	.header-menu .account-background div {
		border-radius: 50%;
	}

	.header-menu .account-background .empty-image {
		width: 16px;
		height: 16px;
		margin: 8px;
		display: inline-block;
		background: url('Images/user-white.svg');
	}

	.header-menu .account-background .account-image {
		width: 32px;
		height: 32px;
		font-size: 0.8em;
		font-weight: 600;
		line-height: 32px;
		text-align: center;
		margin: 0 auto;
		display: table;
		background-size: 100%;
	}

.user-info .avatar img {
	float: left;
	height: 43px;
	border-radius: 50%;
}

.user-info .text-container {
	height: 3.13rem;
	margin-left: 60px;
}

	.user-info .text-container .user-name {
		color: #444444;
		font-size: 1.14em;
	}

	.user-info .text-container .email {
		display: block;
		color: #666666;
		font-size: 0.86em;
	}

.myaccount-item {
	background-color: #e4e4e4;
}
/* Right Panel */
.right-panel {
	/*border-left: 1px solid #f0f0f0;*/
	/*background-color: transparent !important;*/
	background: rgba(0, 18, 75, 0.15) !important;
	font-family: 'Inter';
	backdrop-filter: blur(15px);
}

#rightPanel {
	border: none !important;
}

.settings-content {
	padding: 24px 20px;
}

	.settings-content h2 {
		color: #494949;
		font-size: 1.3em;
		font-weight: 600;
	}

	.settings-content p {
		color: #999999;
	}


.popupCss-Header {
	border-radius: 8px;
	width: 95%;
	border-bottom: none !important;
}

	.popupCss-Header::before {
		content: ' ';
		text-decoration: none;
		position: absolute;
		width: 10%;
		height: 35px;
		left: 0;
		margin-left: 12px;
		border-bottom: solid 3px #FDB933;
	}

	.popupCss-Header span {
		color: var(--blue, #10296B);
		font-feature-settings: 'clig' off, 'liga' off;
		/* Headings/L/H4 */
		font-family: Inter;
		font-size: 24px;
		font-style: normal;
		font-weight: 700;
		line-height: 32px; /* 133.333% */
	}

/*** LOGIN ***/

.btnLogin {
	display: flex;
	height: 48px;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	width: 160px;
	padding: 8px 16px;
	gap: 8px;
	border-radius: 50px;
	background: linear-gradient(133deg, #FCC251 0%, #FDB933 100%);
	color: #001B6F;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 3 Highlited */
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
}


/*** FORM ***/


/*** Edit form popup window ***/
.dxpc-mainDiv {
	border-radius: 8px;
}


.dxpc-mainDiv label {
	font-family: 'Inter' !important;
	font-weight: 600 !important;
	display: block;
	margin-bottom: 8px;
	color: var(--blue, #10296B) !important;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 3 Highlited */
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
}

.dxpc-mainDiv input {
	display: block;
	width: 100%;
	padding: 6px !important;
	/*box-shadow: 2px 5px 0 rgb(0 0 0 / 10%), 0 2px 10px 0 rgb(0 0 0 / 10%);*/
	border-radius: 8px;
	border: 1px solid var(--gray-2, #E9EBEF);
	background: var(--white, #FFF);
}

	.dxpc-mainDiv input:hover {
		box-shadow: 0 0 2px 2px #fff, 0 0 3px 3px var(--clrOrange);
	}

.eye-button {
	background: none;
}

	.eye-button > div {
		background: url('Images/eye-button.svg') no-repeat center;
		width: 18px;
		height: 12px;
		vertical-align: baseline;
		pointer-events: none;
		user-select: none;
	}

	.eye-button.show-password > div {
		background: url('Images/eye-button-hide.svg') no-repeat center;
	}

.dxpc-mainDiv input[type=password]::-ms-reveal,
.dxpc-mainDiv input[type=password]::-ms-clear {
	display: none;
}

.dxeButtonEdit_Office365 {
	width: 100%;
	border-radius: 8px !important;
	border: 1px solid var(--gray-2, #E9EBEF) !important;
	background: var(--white, #FFF) !important;
	/*padding: 8px 16px;*/
	color: var(--gray-1, #AEB4BA) !important;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 3 */
	font-family: Inter !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400 !important;
	line-height: 24px; /* 150% */
}

	.dxeButtonEdit_Office365:hover {
		box-shadow: 0 0 2px 2px #fff, 0 0 3px 3px var(--clrOrange);
	}

.dxeTextBox_Office365 {
	width: 100%;
	border-radius: 8px !important;
	border: 1px solid var(--gray-2, #E9EBEF) !important;
	background: var(--white, #FFF) !important;
	/*padding: 8px 16px;*/
	color: var(--gray-1, #AEB4BA) !important;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 3 */
	font-family: Inter !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400 !important;
	line-height: 24px; /* 150% */
}

.dxgvSearchPanel_Office365 .dxeButtonEdit_Office365 input {
	background-color: transparent !important;
}
/*input[type="text"] {
	border-radius: 8px !important;
	border: 1px solid var(--gray-2, #E9EBEF) !important;
	background: var(--white, #FFF) !important;
	padding: 8px 16px;
	color: var(--gray-1, #AEB4BA) !important;
	font-feature-settings: 'clig' off, 'liga' off;*/
/* Body/Bodycopy 3 */
/*font-family: Inter !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400 !important;
	line-height: 24px;*/ /* 150% */
/*}*/
.dxpc-mainDiv input[type="text"]:active {
	border-radius: 8px;
	border: 1px solid var(--blue, #10296B);
	background: var(--white, #FFF);
}

.dxpc-mainDiv input[type="text"]:not(:empty) {
	border-radius: 8px;
	border: 1px solid var(--gray-2, #E9EBEF);
	background: var(--white, #FFF);
	color: var(--blue, #10296B);
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 3 */
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}

.dxucBrowseButton_Office365 {
	border-radius: 8px;
	background: linear-gradient(133deg, #FCC251 0%, #FDB933 100%);
	color: #001B6F;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 3 Highlited */
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
}

.dxucTextBox_Office365 {
	border-radius: 8px;
}

/*** Alertify ***/

.alertify .ajs-dialog {
	/*max-width: 50%;*/
	min-height: 137px;
	background-color: white !important;
	border: none !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 8px;
	max-width: 450px;
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center
}

.ajs-header {
	color: var(--blue, #10296B) !important;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Inter !important;
	font-size: 24px !important;
	font-style: normal;
	font-weight: 700 !important;
	line-height: 32px;
	align-self: self-start;
}

	.ajs-header::before {
		content: ' ';
		text-decoration: none;
		position: absolute;
		width: 10%;
		height: 15%;
		left: 0;
		margin-left: 24px;
		border-bottom: solid 3px #FDB933;
	}

.ajs-body {
}

.ajs-content {
}

.ajs-footer {
}

.ajs-button.ajs-ok {
	border-radius: 50px;
	background: linear-gradient(133deg, #FCC251 0%, #FDB933 100%) !important;
	color: #001B6F !important;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 2 Highlited */
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 144.444% */
}

.ajs-button.ajs-cancel {
	border-radius: 50px;
	background: var(--gray-3, #EFF1F4) !important;
	color: #001B6F !important;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 2 Highlited */
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 144.444% */
}

.alertify-notifier {
	border-radius: 8px !important;
}

	.alertify-notifier .ajs-message.ajs-success {
		background: white !important;
		text-shadow: rgba(91,189,114, 1) 2px 2px 20px !important;
		color: #17233E !important;
		font-feature-settings: 'clig' off, 'liga' off;
		/* Body/Bodycopy 2 Highlited */
		font-family: Inter;
		font-size: 18px;
		font-style: normal;
		font-weight: 700;
		line-height: 26px; /* 144.444% */
	}


.alertify-notifier .ajs-message.ajs-error {
	background: white !important;
	text-shadow: rgba(217,92,92,1) 2px 2px 20px !important;
	color: #17233E !important;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 2 Highlited */
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 144.444% */
}

.welcome {
	color: #EFF1F4 !important;
	font-feature-settings: 'clig' off, 'liga' off;
	/* Body/Bodycopy 3 Highlited */
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
}

	.welcome:hover {
		background: #EFF1F4 !important;
		color: var(--dark-blue, #17233E) !important;
		font-feature-settings: 'clig' off, 'liga' off;
		/* Body/Bodycopy 3 Highlited */
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 700;
		line-height: 24px; /* 150% */
		border-radius:50px;
	}

.MeshLoadingPanel {
	background-color: var(--white, #FFF) !important;

}

.dxm-slide-panel.dxm-left.dxm-expanded {
	background: rgba(23, 35, 62, 0.058823529411764705);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	/*border: 1px solid rgba(23, 35, 62, 0.25);*/
}