@import url("/css/public/theme_style.css");
@import url("/css/public/mobile_style.css");

@font-face {
  font-family: 'Roboto';
  font-weight: 300;
  font-style: normal;
  src: url('/fonts/Roboto/Roboto-100.eot');
  src: url('/fonts/Roboto/Roboto-100.eot?#iefix') format('embedded-opentype'),
       local('Roboto'),
       url('/fonts/Roboto/Roboto-100.woff') format('woff'),
       url('/fonts/Roboto/Roboto-100.ttf') format('truetype'),
       url('/fonts/Roboto/Roboto-100.svg#Roboto') format('svg');
}

@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  font-style: normal;
  src: url('/fonts/Roboto/Roboto-300.eot');
  src: url('/fonts/Roboto/Roboto-300.eot?#iefix') format('embedded-opentype'),
       local('Roboto'),
       url('/fonts/Roboto/Roboto-300.woff') format('woff'),
       url('/fonts/Roboto/Roboto-300.ttf') format('truetype'),
       url('/fonts/Roboto/Roboto-300.svg#Roboto') format('svg');
}

@font-face {
  font-family: 'Roboto';
  font-weight: 500;
  font-style: normal;
  src: url('/fonts/Roboto/Roboto-500.eot');
  src: url('/fonts/Roboto/Roboto-500.eot?#iefix') format('embedded-opentype'),
       local('Roboto Medium'),
       url('/fonts/Roboto/Roboto-500.woff') format('woff'),
       url('/fonts/Roboto/Roboto-500.ttf') format('truetype'),
       url('/fonts/Roboto/Roboto-500.svg#Roboto') format('svg');
}

@font-face {
  font-family: 'Roboto';
  font-weight: 700;
  font-style: normal;
  src: url('/fonts/Roboto/Roboto-700.eot');
  src: url('/fonts/Roboto/Roboto-700.eot?#iefix') format('embedded-opentype'),
       local('Roboto Bold'),
       url('/fonts/Roboto/Roboto-700.woff2') format('woff2'),
       url('/fonts/Roboto/Roboto-700.woff') format('woff'),
       url('/fonts/Roboto/Roboto-700.ttf') format('truetype'),
       url('/fonts/Roboto/Roboto-700.svg#Roboto') format('svg');
}

h1 {
	font-size: 36px;
	font-weight: 400;
	color: var(--mw-orange);
	letter-spacing: -1px;
}

h2 {
	font-size: 24px;
	font-weight: bold;
	color: var(--mw-grey);
	letter-spacing: -1px;
}

h3 {
	font-size: 20px;
	font-weight: bold;
	color: var(--mw-grey);
	letter-spacing: -1px;
}

body {
	font-family:var(--mw-font-family);
	background: var(--mw-white);
	color: var(--mw-dark-grey);
	line-height: 1.4em;
	font-size: 14px;
	margin:0;
	height:100vh;
	display:flex;
	flex-direction:column;
}

.content-div > .dynamicContent a {
	color: var(--primary-cta);
    cursor: pointer;
    text-decoration: none;
	font-weight:bold;
}

html, body {
	-webkit-font-smoothing: antialiased;
}

.main-content, .sidebar-left, .sidebar-right {
    scrollbar-color: var(--mw-grey) var(--mw-lightest-grey) var(--mw-lightest-grey);
    scrollbar-width: thin;
}

[id] {
  scroll-margin-top: 45px;
}

/* 
   =========================================
   404 page
   ========================================= 
*/
.container_404 {
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
    min-width: 300px;
    max-width: 600px;
    height: 200px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.85));
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    margin: 0px auto;
    padding: 30px 0px;
    border: 2px solid rgba(250, 250, 250, 0.40);
    border-radius: 10px;
}
      
.text_404 {
	font-size: 50px;
    font-weight: bold;
    background: var(--mw-white);
    color: var(--mw-dark-grey);
}

.buttton_home {
	margin: 2% 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
}

.buttton_home_link {
	background-color: var(--primary-cta);
    border: 1px solid var(--primary-cta);
    border-radius: 10px;
    width: 100%;
    max-width: 536px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s;
    text-decoration:none;
    color:var(--mw-white);
}

.buttton_home_text {
	color: var(--mw-white);
    font-weight: bold;
    transition: color 0.3s;
}

header.top-nav { flex:0 0 auto; display:flex; height:80px; flex-wrap:wrap; align-items:center; justify-content:space-between; background-color:var(--mw-white); border-bottom:1px solid var(--mw-light-grey); box-shadow:0px 5px 10px rgba(0,0,0,0.3); gap:10px; z-index:10000000; }
.logo-container { flex:0 0 auto; display:flex; justify-content:center; align-items:center; height:inherit; border-right:1px solid var(--mw-light-grey); width:20%; max-width:400px; min-width:200px; gap:15px;}
.logo-container img { height:80%; object-fit:contain; }
nav.main-nav { flex:1 1 300px; display:flex; justify-content:space-between; align-items:center; height:100%; flex-wrap:wrap; margin:0 20px; }
.main-nav ul { list-style:none; margin:0; padding:0; display:flex; align-items:center; flex-wrap:wrap; gap:30px; }
.main-nav a { text-decoration:none; white-space:nowrap; font-size:18px; }
a.default-link { color:var(--mw-grey); font-weight:400; text-decoration:none;}
a.default-link:hover { color:var(--mw-dark-grey);}
a.active-link { color:var(--secondary-cta); /* font-weight:650; */ text-decoration:none;}
a.default-toc-link { color:var(--mw-dark-grey); text-decoration:none;}
a.active-toc-link { color:var(--primary-cta) !important; font-weight:650; text-decoration:none;}

.active-toc-div {
	background-color: var(--mw-light-grey);
	border-radius: 5px;
}

span.active-toc-link { color:var(--primary-cta) !important; font-weight:650; text-decoration:none;}
.search-container { display: none; position:relative; width:40%; max-width:800px; height:50%; }
.search-container .search-icon { position:absolute; left:10px; top:50%; transform:translateY(-50%); display:flex; align-items:center; }
.search-container .search-icon img { height:30px; }
.search-input { width:100%; height:100%; padding:5px 10px 5px 50px; border:1px solid var(--mw-light-grey); border-radius:10px; box-sizing:border-box; background-color:var(--mw-lighter-grey); font-family:var(--mw-font-family); }
.page-container { flex:1; display:flex; justify-content:space-between; overflow:auto; }
.sidebar { position: sticky !important; top: 0;}
.sidebar-left, .sidebar-right { padding:15px; padding-top: 0px; box-sizing:border-box; overflow-y:auto; transition: width 0.3s; }
.sidebar-left { width:20%; max-width:401px; min-width:200px; border-right:1px solid var(--mw-light-grey); background-color:var(--mw-lightest-grey); }
.sidebar-left.collapsed { width:0px; min-width:0px; padding:0px; }
.sidebar-left.collapsed nav { display:none; }
.sidebar-right.collapsed { width:0px; min-width:0px; padding:0px; }
.toggle-btn { width:30px; height:30px; background-color:transparent; color:var(--mw-white); border:none; cursor:pointer; border-radius:15px; display:flex; justify-content:center; align-items:center; z-index: 9999999;}
.toggle-btn:hover { background: var(--mw-lighter-grey); border: 1px solid var(--mw-grey);}
.expandBarButton { height:25px; width:auto;}
.sidebar-right { width:20%; max-width:401px; min-width:200px; background-color:var(--mw-lightest-grey); }
.sidebar nav > ul { padding-left: 0; }
.sidebar nav ul ul { margin-left: 15px; padding-left: 0px; border-left: 1px dashed var(--mw-light-grey); }
.sidebar h4 { display:flex;justify-content:space-between;align-items:center; margin: 0px; margin-top:10px; padding: 5px 0px; font-size:14px; color:var(--mw-dark-grey); border-top:1px solid var(--mw-light-grey); cursor:pointer; }
.sidebar h4:hover { background-color:var(--mw-light-grey); border-radius: 5px; cursor: pointer; }
.sidebar h4 img { transition: all 0.5s; }
.sidebar h4:hover img { /* transform: rotate(90deg); */ }
.sidebar ul { list-style:none; margin:0; font-size:13px; line-height:1.6; color:var(--mw-dark-grey); cursor:pointer; }
.sidebar ul li:hover { background-color:var(--mw-light-grey); border-radius: 5px; }
.sidebar ul .entityItem:hover { background-color:var(--mw-light-grey); border-radius: 5px; }
.sidebar ul .entityItem .icon { border: 1px solid transparent;width:30px;height:20px;overflow: hidden;display:flex;justify-content:center; }
.sidebar ul .entityItem:hover .icon { border: 1px solid var(--mw-grey); background-color: var(--mw-lighter-grey); border-radius: 5px; }
.sidebar strong { color:var(--mw-dark-grey); }
.toc > li > ul > li > ul > li { color: var(--mw-grey); }
.active-item { color:var(--secondary-cta); font-weight:600; }

nav a.entityItem-link-base {
  transition: color 0.3s ease, padding 0.3s ease;
}

nav a.entityItem-link-base.active-toc-link {
  font-weight: bold;
}

.main-content { display: flex; flex-direction: column; justify-content: space-between; align-items: center; flex:1; box-sizing:border-box; width: inherit; overflow-y:auto;}
.content-div { display: flex; flex-direction: column; flex:1; width:100%; max-width:1280px; padding:20px; padding-top:0px; max-width: -webkit-fill-available; /* WebKit/Blink */ max-width: -moz-available;/* Firefox */}
div.sticky { position: sticky; top: 0; background-color: var(--mw-white); height:30px; z-index: 100; box-shadow: -8px 0 8px rgba(255, 255, 255, 1), /* Left */ 8px 0 8px rgba(255, 255, 255, 1) /* Right */ ;}
.sticky .toc1-header-container { display:flex;justify-content:space-between;align-items:center; background-color: var(--mw-white);padding-top:15px; }
.header-text { flex:0 0 auto; display:flex; justify-content:space-between; align-items:center; height:inherit; color:var(--mw-grey); font-size:26px; font-weight:400; padding:0px;padding-top:5px;padding-bottom:15px; border-top: none; }
.section-header-text { flex:0 0 auto; display:flex; justify-content:space-between; align-items:center; height:inherit; color:var(--mw-grey); font-size:20px; font-weight:400; padding:0px;padding-top:5px;padding-bottom:15px; border-top: none; }

.breadcrumbs { 
	font-size:12px;
	margin-top: 15px;
	color:var(--mw-grey);
	background-color: var(--mw-white);
	height:15px;
	display:flex;
	align-items: center;
	justify-content:space-between;
}
.breadcrumbs a {
	color:var(--primary-cta);
	text-decoration:none;
}
.breadcrumbs .breadcrumbContent {
	/* display:flex;
	flex-wrap:wrap; */
	width: 100%;
}
nav > a {text-decoration: none;}
nav.breadcrumbs a.currentAnchor { opacity: 1; transition: opacity 180ms ease; }
nav.breadcrumbs a.currentAnchor.is-fading { opacity: 0; }
.transitionSpan { position: absolute; left: 0; bottom: -20px; width: 100%; height: 20px;background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0)); pointer-events: none; }
.article-title { margin-top:0; font-size:24px; color:var(--mw-dark-grey); margin-top:10px;}
.article-text { color:var(--mw-dark-grey); }
.separator { border:none; border-top:1px solid var(--mw-light-grey); margin:20px 0; }
.section-title { font-size:18px; color:var(--mw-blue); }
.subsection-title { font-size:16px; color:var(--mw-grey); }
.image-container img { max-width:99%; border:1px solid var(--mw-light-grey); border-radius: 10px; padding: 10px 0px; }
.toc ul { list-style:none; margin:0; padding:0; font-size:13px; line-height:1.6; color:var(--mw-dark-grey); }
.current { font-weight:bold; color:var(--secondary-cta); }
footer.page-footer { width:calc(100% - 40px); min-height: 50px; background-color:var(--mw-dark-grey); color:var(--mw-white); font-size:12px; padding:10px 20px; display:flex; justify-content:space-between; align-items:center; border-radius: 10px; }
footer.page-footer a { color:var(--mw-white); text-decoration:none; margin-left:15px; }

.pageTitle { display:flex;justify-content:center;width:100%;text-align:center;font-size:36px; font-weight:600; line-height: normal; padding:30px 0px;margin-top: 10px;border-top:1px solid var(--mw-light-grey); }
.pageTop { padding-top: 20px;margin-top: 10px;border-top:1px solid var(--mw-light-grey); }

/* --- Common Utility --- */
.is-hidden { display: none; }
.noTopBorder {
	border-top:0px !important;
}

/* --- TOC Main Header Styles --- */
.toc-header-title { padding-left: 10px; color: var(--secondary-cta); }
.toc-header-title-simple { border-bottom: 1px solid;margin-left: 10px; }
.toc-header-icon-container { width: 30px; height: 30px; overflow: hidden; }
.toc-header-icon-down { height: 30px; width: auto; }
.toc-header-icon-expand { display: none; height: 30px; width: auto; }

/* --- Entity Item General Layout --- */
.entityItem { display: flex; justify-content: space-between; align-items: center; }

/* --- Entity Item Shared Base Styles --- */
.entityItem-text-container-base { padding-left: 15px; width: 100%; }
.entityItem-li-base { display: flex; width: 100%; }
.entityItem-link-base { display: flex; width: 100%; }

/* --- Entity Item Modifier Styles --- */
.entityItem-text-container--flex { display: flex; }

/* Modifier for .default-link from the first file, if used */
.entityItem-link--colored.default-link { color: var(--mw-dark-grey); }

/* --- Entity Item Icons (within span.icon) --- */
.entityItem-icon-base { height: 20px; width: auto; }

.online-help-section-header {
	font-size: 28px;
    font-weight: 400;
    text-align: left;
    color: var(--mw-dark-grey);
    letter-spacing: -1px;
}

.online-help-content {
	padding: 10px 0px;
	margin: 0 auto;
	height: auto;
	overflow: hidden;
}

p:has(> img.image-screencap) {
  display: flex;
  justify-content:center;
  align-items:center;
}

.image-screencap {
	width: auto;
	max-width: 1000px;
	min-width: 200px;
	max-height: 500px;
	object-fit: cover;
	border: 1px solid var(--mw-light-grey);

    -webkit-box-shadow: 0px 10px 18px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 10px 18px 4px rgba(0,0,0,0.2);
    box-shadow: 0px 10px 18px 4px rgba(0,0,0,0.2);

	-webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	border-radius: 10px;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 10px 0px;
}

.online-help-parameters-table {
	border:solid 1px var(--mw-light-grey);
	width:98%;
	text-align:left;
	padding: 15px;
	border-radius: 5px;
}
.online-help-parameters-table td {
	padding:5px 10px 0px 0px;	
	margin:0px;
}

.pill-items-image {
	backdrop-filter: blur(70px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    

	padding: 20px;
    border: 1px solid var(--mw-light-grey);
    border-radius: 10px;
    margin: 0;
    gap: 20px;
}

.pill-items-image > li > a {
	background-color: rgba(252, 252, 252, 0.7);
	backdrop-filter: blur(70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap:10px;
    
    flex: 0 1 calc(25% - 20px);	/* 4 per row (subtract gap for neat fit) */
    width: auto;
    height: 100%;
    color: var(--mw-dark-grey) !important;
    padding: 20px 10px;
    text-align: center;
    border: 1px solid var(--mw-light-grey);
    border-radius: 15px;
    font-family: sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.pill-items-image > li > a:hover {
	border: 1px solid var(--mw-grey);
	box-shadow: 2px 2px 20px 2px rgba(0, 106, 129, .4);
	cursor: pointer;
	font-weight: normal !important;
}

.pill-top {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pill-items-image .pill-img {
    height: 50px;
}

.pill-items-image .pill-title {
	display: flex;
    font-size:16px;
    font-weight:bold;
}	
.pill-items-image .pill-desc {
    font-size:12px;
    font-weight: normal;
}

.pill-section {
	margin-bottom: 30px;
	background: url("/img/public/ribbon-background.svg") repeat left center;
    background-position-x: 10px;
    background-size: 75% 95%;
}
.list-check.columns-3 > li > a {
    text-decoration: none;
}
.features_list_container {
    max-width: 1280px;
    margin: 20px 0px 10px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.features_list_container > ul {
    list-style: none;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}
.list-check.columns-3 {
	/* z-index: -1; */
   	display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    column-gap: 20px;
}
.list-check > li {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid grey;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #4C4C4C;
    font-size: 14px;
    background: url(/img/template/menu/icons/checkmark_no_box_blue.svg) no-repeat left center;
    background-position-x: 10px;
    background-size: 15px 10px;
    backdrop-filter: blur(12px);
}
.list-check > li > a {
    width: 100%;
    color: #4c4c4c !important;
    font-weight: normal !important;
    padding: 10px;
    padding-left: 35px;
}
.list-check li:hover a {
    color: #006A81 !important;
}
.cellEffect {
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid #AAA !important;
    transition: all 0.3s ease-in-out;
}
.cellEffect:hover {
    box-shadow: 2px 2px 20px 2px rgba(0, 106, 129, .4);
    cursor: pointer;
}
.ms_row3 {
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: none;
}
.ms_row3 img {
	width: 100%; object-fit: cover;
}
.ms_row4 {
    grid-row: 4;
    background-color: #006A81;
    color: white;
    border: none;
    padding: 0px;
    margin: 0px;
}
.home_row4_container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    border: 0px;
    line-height: 1.4em;
    font-weight: 400;
}
.footerCopyright {
	font-size: 0.8rem;padding: 0px 15px;
}
.footerTermsPolicy {
	color: #fff !important;
	text-decoration: none;
	font-size: 0.8rem;
	padding: 0px 15px;
}
