﻿/*<meta />*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700|Open+Sans:400,600,700|Roboto');

@font-face 
{
	font-family: 'Open Sans';
	src: url(/Resources/Fonts/OpenSans-Regular.ttf);
}

/* New CSS */
	* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
			}

			body {
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
			background: #f8fafc;
			color: #1f2937;
			line-height: 1.6;
			}

			/* Header */
			.header {
			background: white;
			border-bottom: 1px solid #e5e7eb;
			padding: 0 20px;
			position: sticky;
			top: 0;
			z-index: 100;
			}

			.nav {
			max-width: 1200px;
			margin: 0 auto;
			display: flex;
			align-items: center;
			justify-content: space-between;
			height: 70px;
			}

			.logo {
				margin-top: 8px;
				margin-left: 8px;
			}

			.nav-buttons {
			display: flex;
			gap: 12px;
			}

			.nbtn {
			padding: 10px 20px;
			border-radius: 6px;
			text-decoration: none;
			font-weight: 600;
			transition: all 0.3s ease;
			border: none;
			cursor: pointer;
			font-size: 14px;
			}

			.nbtn-outline {
			border: 2px solid #3D0456;
			color: #3D0456 !important;
			background: white !important;
			}

			.nbtn-outline:hover {
			background: #3D0456 !important;
			color: white !important;
			}
			
			.nbtn-release {
			margin-top:25px;
			font-size: 24px !important;
			}

			.nbtn-primary {
			border: 2px solid white;
			background: #3D0456 !important;
			color: white !important;
			}

			.nbtn-primary:hover {
			background: #3D0456 !important;
			transform: translateY(-1px);
			}
			
			/* Hero Section - Tier 1 */
			.hero {
			background: linear-gradient(135deg, #8439A6 0%, #3D0456 100%);
			color: white !important;
			padding: 10px 10px;
			text-align: center;
			position: relative;
			overflow: hidden;
			}

			.hero::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" x="0" y="0" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2" points="24,2 49,16 49,44 24,58 0,44 0,16"/></pattern></defs><rect fill="url(%23hexagons)" width="300" height="300"/></svg>') repeat;
			opacity: 0.3;
			}

			.hero-content {
			max-width: 800px;
			margin: 0 auto;
			position: relative;
			z-index: 2;
			}

			.hero h1 {
			font-size: 48px;
			font-weight: 700;
			margin-bottom: 16px;
			animation: fadeInUp 0.8s ease;
			}

			.hero p {
			font-size: 20px;
			margin-bottom: 10px;
			opacity: 0.9;
			animation: fadeInUp 0.8s ease 0.2s both;
			}

			@keyframes fadeInUp {
			from {
			opacity: 0;
			transform: translateY(30px);
			}
			to {
			opacity: 1;
			transform: translateY(0);
			}
			}
			
			 /* Main Content */
        .prodmain-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Product Section - Tier 2 */       

        .prodsection-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .prodsection-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 16px;
        }
       
       
        /* Popular Products Grid */
        .nproducts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .nproduct-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            text-decoration: none;
            color: inherit;		
        }

        .nproduct-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(107, 70, 193, 0.15);
			border-color: #3D0456;
        }

        .nproduct-icon {
            width: 60px;
            height: 60px;
			background: linear-gradient(135deg, #8439A6 0%, #3D0456 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: white;
        }
		
		.nproduct-icon img {
			height: 30px;
		}

        .nproduct-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1f2937;
        }

        .nproduct-card p {
            font-weight: bold !important;
			font-size: 14px !important;
			margin-bottom: 0px !important;
        }
		
		/* begin new styles for Products */

		.prodmain {
			font-weight: bold !important;
			font-size: 14px !important;
			margin-bottom: 0px !important;
		}			
		
		a.prodmain:link {
			color: #000 !important;
			font-weight: bold !important;
			font-size: 14px !important;
			text-decoration: none;
		}

		a.prodmain:visited {
			color: #000 !important;
		}

		a.prodmain:hover {
			color:  #850052 !important;
			text-decoration: underline;	
		}
		
		.more-details {
			color: #BE0075 !important;		
    		font-weight: bold !important;
    		font-size: 16px !important;
			margin-top: 25px;
		}
		
		.more-details:hover {
			color:  #850052 !important;
			text-decoration: underline;	
			cursor: pointer;
		}
		
		.description p {
			font-weight: normal !important;
			font-size: 12px !important;
			margin-bottom: 0px !important;
		}  
		
		.prodindent {
			margin-left: 15px;
			font-weight: normal !important;
		}
		
		.text-indent {
			font-weight: normal !important;
		}
		
		.prodindent2 {
			margin-left: 30px;
		}
		
			/* More details Show and Hide */
			#top-panel{
			    display:flex;
    			gap:20px;
				flex-wrap:wrap;
			}
			
			.product-main{
    			flex:1 1 300px;
			}
			
						
			.detail-panel{
    			display:none;
				max-width: 550px;
				margin-bottom: 40px;
			}
			
			.additional-panel{
    			display:none;
				max-width: 500px;
				text-align: left;
			}
			
			.main-products{
				display: flex;
				justify-content: center;
				align-items: center;
			}  
			
			/*  Updated Main product detail section */ 
			.mdetails-wrapper {
				flex-wrap:wrap;
				display: none;
				
				border-radius: 12px;
            	padding: 30px;
            	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            	transition: all 0.3s ease;
            	border: 1px solid #e5e7eb;	
				margin-bottom: 40px;					
			}
			
			.mdetails-title {
				text-align: center;
				margin-top: -10px;
				margin-bottom: 20px;
			}
			
			/* More detail containter */ 
			.mdetail-section {
				display: flex;
				flex-wrap: wrap;
				gap: 20px;			
			}
			
			.mdetail-section-salesforce {
				justify-content: center;
			}
	
			/* More detail panel */ 
			.mdetail-panel {
				display: flex;				
				flex: 1 1 calc(33% - 20px);
				flex-wrap:wrap;					
            	background: white;
            	border-radius: 12px;
            	padding: 30px;
            	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            	transition: all 0.3s ease;
            	border: 1px solid #e5e7eb;
            	text-decoration: none;
            	color: inherit;			
			}
			
			.mdetail-panel-salesforce {
				flex: 0 0 30%;				
			}						
					
			/* More detail panel's content area */ 
			.mdetail-content {
				display: flex;
				flex-direction: column;
				flex-grow: 1;
			}
			
			.mdetail-content p {
				font-weight: bold;
				font-size: 14px !important;
				margin-bottom: -3px !important;
			}
			
			a.mdetail:link {
				color: #000 !important;
				font-weight: normal !important;
				font-size: 14px !important;
				text-decoration: none;
			}
	
			a.mdetail:visited {
				color: #000 !important;
			}
	
			a.mdetail:hover {
				color:  #850052 !important;
				text-decoration: underline;	
			}
			
			.btnreturn {
				display: flex;				
				justify-content: center;
				align-items: center;
			}

		
		/* Resource Tiles Section - Tier 3 */
        .resource-types {
			max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
            margin-bottom: 20px;
			text-align: center;
        }		
		
		 .rsection-header {           
            margin-bottom: 50px;
        }

        .rsection-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .rsection-header p {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }    
		
        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .resource-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .resource-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .resource-image {
            height: 150px;
			background: linear-gradient(135deg, #8439A6 0%, #3D0456 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
        }
		
		.resource-image img {
			height: 60px;
		}
		
		.resource-svg {
			filter: invert(92%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(100%);
		}

        .resource-content {
            padding: 24px;
			text-align: left;
        }

        .resource-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1f2937;
        }

        .resource-card p {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .resource-link {
			color: #3D0456 !important;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px !important;
        }

		  /* More help  */
        .more-help {
			max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
            background: #f8fafc;
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            border: 1px solid #e5e7eb;
        }

        .more-help h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1f2937;
        }

        .more-help p {
            color: #6b7280;
            margin-bottom: 24px;
        }

        .help-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }	
		
		/* Footer */	
		
		.copyright {		
			margin-top: 40px;			            
            padding: 10px 10px;
			background-color: black;			
		}
		
		.copyright p {
			margin: 0 auto;
			max-width: 1200px;
			color: white;
		}
							
			/* Animations */
			.fade-in {
			animation: fadeIn 0.6s ease;
			}

			@keyframes fadeIn {
			from { opacity: 0; transform: translateY(20px); }
			to { opacity: 1; transform: translateY(0); }
			}			
			
/* END New section - There is a new section at the end of the file for Tablet and Mobile */

p
{
	margin-bottom: 8px;
	margin-top: 8px;
}

.h1, h1, h6 {
    font-family: Montserrat,sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
	text-rendering: optimizeLegibility;
}

.h2, h2 {
	font-family: Montserrat,sans-serif;
    font-size: 2.0rem;
	margin-top: 0;
	margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
	text-rendering: optimizeLegibility;
}

.h3, h3 {
	font-family: Montserrat,sans-serif;
    font-size: 1.8rem;
	margin-top: 0;
	margin-bottom: .4rem;
    font-weight: 500;
    line-height: 1.2;
	text-rendering: optimizeLegibility;
}

.helpVersion
{
	margin-bottom: 20px;
	margin-top: -10px;
	font-size: .8em;
}

.spacer
{
	margin-bottom: 25px;
}

.center
{
	position: relative;
	margin-right: auto;
	margin-left: auto;
	float: none !important;
	text-align: center;
}

.container
{
	width: 100%;
	padding-left: 1em;
	padding-right: 1em;
}

.sidenav-wrapper
{
	display: none;
}

.topic-hero
{
	min-height: 300px;
	width: 100%;
	background-color: #052332;
	display: flex;
	flex-flow: column;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	/* Create the parallax scrolling effect
	background-attachment: fixed;  */
	background-position: center 0;
	background-image: url('../Images/png/BlueBanner.png');
}

.hero-content h1
{
	font-size: 2.35rem;
	font-weight: 600;
	line-height: 2.5rem;
}

.hero-content .search-field
{
	margin: auto;
	width: 100%;
	max-width: 800px;
	display: flex;
	flex-flow: row;
	border-radius: 10px;
	padding: 5px 10px;
	background: rgba(255,255,255,0.2);
}

.hero-content .search-field input
{
	flex: 1;
	background: none;
	color: #fff;
	border: none;
	outline: none;
	font-family: 'Open Sans', Roboto, arial, san-serif;
	font-weight: 600;
}

.hero-content .search-field button
{
	background: none;
	color: #fff;
	border: none;
	outline: none;
	width: 30px;
	cursor: pointer;
	font-size: 1.5rem;
}

a:link
{
	color: #000;
}

a:visited
{
	color: #000;
}

a:hover
{
	color: #3D0456;
	text-decoration: none;
}

@media only screen and (min-width: 1400px)
{
	.container
	{
		margin: 0 auto;
		width: 1200px;
	}
}

/*Remove the form-search the skin automatically adds to the top of the page*/

.nav-search
{
	display: none;
}
/* new help 2021 */

.body-container {
	padding: 0;
}

.title-bar {
	background-color: #002750;
}

.hero-content
{
	text-align: center;
	color: rgba(255,255,255,0.9);
	padding: 10px 0 10px 0;
}

.main-section {
	background-color: #FFF;
}

 /* AddSearch */
.addsearch-searchfield-container {
	justify-content: center;
}

.addsearch-search-main-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 1em 0;
    min-width: 500px;
    max-width: 500px;
    z-index: 1;
}

.addsearch-searchresults {
	text-align: left;
}

.addsearch-searchfield button {
	border: 1px solid white !important;
	border-color: white !important;
	border-style: solid;
	border-width: 4px !important;
	border-radius: 0 10px 10px 0 !important;
	height: 48px !important;
	width: 48px !important;	
	/* background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%); */
	background: linear-gradient(135deg, #8439A6 0%, #3D0456 100%)  !important;	
	background-image: url('../Images/svg/icon--mag--glass--icon.svg') !important;
	background-position: 50% !important;
	background-size: 24px !important;
	background-repeat: no-repeat !important; 
}

.addsearch-searchfield button:hover {
	background: #553C9A;
	}

.addsearch-searchfield input[type="search"] {
	min-width: 500px !important;
	max-width: 100% !important;
	color: #67768b;
	border: 1px solid white !important;
	border-radius: 10px 0 0 10px !important;
	height: 48px !important;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	padding: 0 1em !important;
}

/* FROM ADDSEARCH  */

.addsearch-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1em;
}

/* Overlay */


.addsearch-search-overlay.open {
    z-index: 100;
    opacity: 1;
    transition:  opacity .1s ease;

  }

.addsearch-search-overlay.search-wrapper {
    margin-top: 20vh;
    width: 100%;
}

.addsearch-search-overlay.search-wrapper h2 {
      color: white;
      font-size: 3em;
}


.addsearch-search-overlay {
  display: flex;
  flex-direction: column;
  flex: auto;
  background-color: rgba(0,0,0,0.85);
  overflow: hidden;
  position: absolute;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -100;
  padding: 4em;
  opacity: 0;
  transition: opacity .1s ease, z-index .2s ease .2s;

}

@media screen and (max-width: 480px) {

	.addsearch-search-overlay {
	    padding: 2em;
	}
    .addsearch-search-overlay .search-wrapper {
      margin-top: 10vh;
      width: 100%;
      }
      
      .addsearch-search-overlay .search-wrapper h2 {
        color: white;
        font-size: 2em;
      }
}

/* main containers */

.addsearch-main-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex: auto;
}

@media screen and (max-width: 976px) {

	.addsearch-main-container {

	    flex-direction: column;
	}
}


/* Container structure */
#sort {
  float: right;
  margin: 40px 10px 0 0;
}
#sort > div {
  display: inline-block;
  margin-left: 1em;
}
#tabs {
  margin-top: 30px;
}
#tabs-container {
  margin-top: 1em;
}
#autocomplete-container {
  text-align: left;
}
.addsearch-searchfield {
  margin: 0 auto;
}
.site-search-overlay form.addsearch-searchfield {
  margin: 0 auto;
  width: 100%;
}


@media all and (max-width: 960px) {
  #sort {
    display: none;
    background-color: red;
  }
}

/* search styles */

  @media all and (max-width: 960px) {  
    .addsearch-searchfield input[type=search] {
      height: 38px !important;
    }
    .addsearch-searchfield button {
      height: 38px !important;
      width: 38px !important;
      background-size: 18px !important;
    }
  }

#autocomplete-container,
#autocomplete-global-container {
  width: 100%;
}

#autocomplete-container .addsearch-autocomplete,
#autocomplete-global-container .addsearch-autocomplete {
    width: 100%;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.25);
  }

#autocomplete-container .suggestions li,
#autocomplete-global-container .suggestions  li {
        padding: 8px 10px;
      }


#sortby {
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
  position: absolute;
  right:0;
}


.addsearch-active-filters-wrapper {
	 display: flex;
	 flex-direction: row;
	 align-items: flex-start;
	 padding-bottom: 0.15em;
}
 .addsearch-active-filters-wrapper #activefilters {
	 display: flex;
	 flex-direction: row;
	 align-items: flex-start;
	 padding-top: 5px;
}
 @media screen and (max-width: 976px) {
	 .addsearch-active-filters-wrapper #activefilters {
		 padding: 0 5px;
	}
}
 .addsearch-active-filters-wrapper h2 {
	 margin: 0.5em 0;
	 padding-right: 2em;
	 font-size: 1.2em;
}
 @media screen and (max-width: 976px) {
	 .addsearch-active-filters-wrapper h2 {
		 display: none;
	}
}
 .addsearch-active-filters-wrapper .addsearch-active-filters .item {
	 background-color: #f5f8fc;
     color: #6b6b6b;
     font-size: 14px;
	 border: none;
	 display: flex;
	 flex-direction: row;
	 align-items: center;
	 height: 28px;
	 margin-right: 5px;
	 cursor: pointer;
}
 .addsearch-active-filters-wrapper .addsearch-active-filters .item button {
	 color: #6b6b6b;
	 font-size: 15px;
}
 .addsearch-active-filters-wrapper .addsearch-active-filters .item button[data-clearall=true] {
	 font-family: inherit!important;
     color: #3D0456;
     font-size: 14px!important;
}
 .addsearch-active-filters-wrapper .addsearch-active-filters .item:hover {
	 background-color: #fff;
}
 @media screen and (max-width: 976px) {
	 .addsearch-active-filters-wrapper .addsearch-active-filters .item {
		 font-size: 12px;
		 height: 24px;
	}
	 .addsearch-active-filters-wrapper .addsearch-active-filters .item button {
		 font-size: 13px;
	}
}
 .addsearch-active-filters-wrapper .mobile-filter-button {
	 display: none;
}
 @media screen and (max-width: 976px) {
	 .addsearch-active-filters-wrapper .mobile-filter-button {
		 display: inline-block;
		 padding: 5px 10px;
		 background-color: #3D0456;
		 border: 1px solid #8439A6;
		 border-radius: 2px;
		 color: white;
	}
}
 .addsearch-filters-container {
	 padding: 0 1em 1em 0;
	 background-color: white;
}
 @media screen and (max-width: 976px) {
	 .addsearch-filters-container {
		 padding: 0;
		 position: absolute;
		 left: 0;
		 transform: translateX(-100%);
		 transition: transform 0.2s ease-in-out;
		 z-index: 100;
		 height: 80vh;
		 overflow: auto;
	}
	 .addsearch-filters-container.opened {
		 transform: translateX(0%);
		 transition: transform 0.2s ease-in-out;
		 box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.25);
	}
}
 .addsearch-main-results-container {
	 width: 100%;
	 padding: 0;
	 position: relative;
}
 .addsearch-search-main-wrapper {
	 position: relative;
	 margin: 0 auto;
	 padding: 1em 0;
	 width: calc(100% - 640px);
	 min-width: calc(640px);
	 max-width: calc(640px);
	 z-index: 1;
}
 @media screen and (max-width: 976px) {
	 .addsearch-search-main-wrapper {
		 width: 100%;
		 min-width: 100%;
		 padding: 1em 0 0.5em 0;
	}
}
 .addsearch-results-count {
	 display: flex;
	 flex-direction: row;
	 font-size: 14px !important;
	 font-weight: bold;
	 color: #677693 !important;
	 padding: 0 0 1em;
}
 .addsearch-results-count .number-of-results, .addsearch-results-count .keyword {
	 font-size: 14px !important;
	 font-weight: bold;
	 color: #8439A6 !important;
	 margin-right: 5px;
}
 @media screen and (max-width: 976px) {
	 .addsearch-results-count {
		 padding: 5px;
	}
}
 .addsearch-searchresults .hit {
	 padding: 1.5em !important;
	 margin-bottom: 20px;
	 background-color: #f5f5f5 !important;
}
 .addsearch-searchresults .hit .category {
	 background-color: lightgrey !important;
     color: black !important;
     font-size: 14px;
	 border: 1px solid #fff !important;
	 display: flex;
	 flex-direction: row;
	 align-items: center;
	 height: 28px;
	 margin-right: 5px;
	 cursor: pointer;
	 text-transform: none !important;
}
 .addsearch-searchresults .hit h2 {
	 color: #030A47;
	 font-size: 1.3em;
	 font-weight: 700;
	 margin: 0 0 0.15em;
	 word-break: break-word;
}
 .addsearch-searchresults .hit h2 a {
	 text-decoration: none;
}
 .addsearch-searchresults .hit h2 a:hover {
	 text-decoration: underline;
}
 .addsearch-searchresults .hit .result-url {
	 color: #030A47;
	 text-decoration: none !important;
	 font-size: 14px;
	 word-break: break-all;
}
 .addsearch-searchresults .hit .result-url:visited {
	 color: #030A47;
}
 .addsearch-searchresults .hit .highlight {
	 font-size: 15px;
	 padding-top: 5px;
}
 @media screen and (max-width: 976px) {
	 .addsearch-searchresults .hit h2 {
		 font-size: 1em;
	}
	 .addsearch-searchresults .hit .result-url {
		 font-size: 11px;
	}
	 .addsearch-searchresults .hit .highlight {
		 font-size: 12px;
	}
}
 .addsearch-searchresults.addsearch-searchresults-no-results {
	 padding: 2em 0;
}
 .addsearch-pagination button {
 	 color: #3D0456 !important;
	 background-color: #fff;
     border: 1px solid #dedede;
     cursor: pointer;
     border-radius: 2px;
     -webkit-box-align: center;
     -webkit-align-items: center;
     align-items: center;
     -webkit-box-pack: center;
     -webkit-justify-content: center;
     justify-content: center;
     -webkit-flex-shrink: 0;
     flex-shrink: 0;
     margin-right: 2px;
     padding: 0;
     min-width: 34px;
     height: 34px;
     line-height: 34px;
}
 .addsearch-pagination button[data-active=true] {
	 background-color: #3D0456 !important;
	 color: #fff !important;
}
 .addsearch-pagination button[data-page=next], .addsearch-pagination button[data-page=previous] {
	 border: none;
	 color: #0e5376;
}
 .addsearch-pagination button:hover {
	 background-color: #3D0456 !important;
	 color: #fff !important;
}
 .filter-wrapper {
	 width: 320px;
	 overflow: hidden;
	 padding: 0 0.5em;
	 border: 1px solid #bcc3ca;
	 border-bottom: none;
}
 .filter-wrapper:last-child {
	 border-bottom: 1px solid #bcc3ca;
}
 .filter-wrapper h3 {
	 width: 100%;
	 margin: 0;
	 font-size: 16px;
	 padding: 14px 10px;
	 display: inline-block;
}
 .filter-wrapper label {
	 font-size: 14px;
}
 .filter-wrapper .collapse-arrow {
	 position: relative;
	 cursor: pointer;
}
 .filter-wrapper .collapse-arrow::before {
	 content: '';
	 position: absolute;
	 top: -3px;
	 right: 10px;
	 width: 14px;
	 height: 14px;
	 border-width: 2px;
	 border-style: solid;
	 border-color: #3D0456 #3D0456 transparent transparent;
	 transform: rotate(135deg);
	 transform-origin: center center;
	 transform-style: preserve-3D;
	 transition: all 0.2s ease;
}
 .filter-wrapper .addsearch-filters-inner-wrapper {
	 padding: 0 0 1em 0.75em;
}
 .filter-wrapper.shrink {
	 height: auto;
}
 .filter-wrapper.shrink .addsearch-filters-inner-wrapper {
	 display: none;
}
 .filter-wrapper.shrink .collapse-arrow::before {
	 top: 2px;
	 right: 16px;
	 transform: rotate(45deg);
}
 @media screen and (max-width: 976px) {
	 .filter-wrapper {
		 padding: 1em;
	}
} 

.addsearch-filters-checkboxgroup input[type=checkbox] {
  margin-bottom: 0 !important;
}

#autocomplete-container {
  position: absolute;
}

/* End From  AddSearch */


/* Nintex add-ons */
/* Keeping these separate so we can drop any Addsearch additions up above and still keep our changes */


.search-wrapper {
	 margin-top: 20vh;
	 width: 100%;
}
 .search-wrapper h2 {
	 color: white;
	 font-size: 3em;
}
 

.addsearch-sortby select {
	padding-top: 0px;
	padding-bottom: 0px;
	height: 26px;
}


.addsearch-searchresults .hit h2 a {
	color: #3D0456 !important;
}	

.addsearch-searchresults .hit h2 a:hover {
	color: #8439A6 !important;
}	

.addsearch-searchresults .hit h2 a:hover {
	text-decoration: none !important;
}

.addsearch-searchresults .hit h2 a:visited {
	color: #8439A6 !important;
}

/* End AddSearch */

.page-description {
  /* font-style: italic; */
}

/* Added by GG */

/* begin styles for tabs */

ul.tabs
{
	margin: 0px;
	left: -40px;	
	list-style: none;
	position: relative;
}

ul.tabs:after
{
	position: absolute;
	content: "";
	width: 100%;
	bottom: 0;
	left: 0;	
}

ul.tabs .tab-link
{
	font-weight: bold;
	color: #333;
	display: inline-block;
	cursor: pointer;
	margin-right: 20px;
	position: relative;
	z-index: 0;
}

ul.tabs .current
{
	font-weight: bold;
	color: #3D0456 !important;
	margin-right: 20px;
	z-index: 100;	
}

ul.tabs .tab-link:hover
{
	color: #3D0456 !important;
	display: inline-block;
	cursor: pointer;	
}

ul.tabs .current:hover
{
	color: #3D0456 !important;
	z-index: 2;
}

.tab-content
{
	display: none;
	background: #ededed;
	background-color: transparent;
}

.tab-content.current
{
	display: inherit;
}

/* begin styles for Products */

.main {
	font-weight: bold !important;
	font-size: 14px !important;
	margin-bottom: 0px !important;
}

a.main:link {
	color: #000 !important;
	font-weight: bold !important;
	font-size: 14px !important;
}

a.main:visited {
	color: #000 !important;
}

a.main:hover {
	color:  #8439A6 !important;
}


.multiple {
	/* margin-left: 20px; */
	font-size: 13px !important;
	margin-bottom: 0px !important;
	margin-top: 0px !important;
}

.grey {
	background-color: #f0f3f7 !important;
}

.aqua {	
    background: #030A47 !important;
}

 /* begin styles for product capabilities */

ul.products
{
	font-weight: bold;
	margin-bottom: 20px;
	padding: 0px;
	list-style: none;
	position: relative;
}

ul.products:after
{
	position: absolute;
	content: "";
	width: 100%;
	bottom: 0;
	left: 0;
}

ul.products .product-title
{
	color: #333;	
	font-weight: bold !important;
	font-size: 14px !important;
	margin-top: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	position: relative;
	z-index: 0;
}

ul.products .selected
{		
	color: #3D0456 !important;
	z-index: 100;
}

ul.products .product-title:hover
{
	color: #3D0456 !important;
	cursor: pointer;
}

ul.products .selected:hover
{
	color: #3D0456 !important;
	z-index: 2;
}

.product-content
{
	display: none;
	background: #ededed;
	padding: 15px;
	background-color: transparent;
}

.product-content.selected
{
	display: inherit;
}

.productlink {
	margin-left: 0px !important;
	font-size: 14px !important;
	margin-bottom: 0px !important;
	margin-top: 0px !important;
	font-weight: bold; 
}


.hrline {
    margin-top: 0rem;
    margin-bottom: 0rem;
    border: 0;
    border-top: 1px solid lightgrey;
}

.releases {
	color: black;
}

/* Blue links */

a.bluelink:link {
	color: #3D0456 !important;
	font-weight: bold !important;
	font-size: 14px !important;
}

a.bluelink:visited {
	color: #3D0456 !important;
}

a.bluelink:hover {
	color: #3D0456 !important;
	text-decoration: none !important;
	margin-right: 5px;
}

.card {
    border: none !important;
}

.card-footer {
	border-top: none !important;
	margin-top: -25px;
}

.card-title {
	font-weight: bold !important;
	font-size: 1.0rem !important;
}

.card-text {
	font-size: 0.9rem !important;
}

/* svg {
    position: relative;
	margin-bottom: 4px;
	fill: #3D0456;
    top: 1px;
    width: 17px;
    height: 12px;
}
*/

.releases {
	color: #3D0456 !important;
    font-size: 12px;
    font-weight: 700;
}

/* Search Icon */
#search-mag-glass {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    background: url(../Images/svg/icon--mag--glass--grey.svg) no-repeat;
    width: 25px;
    padding-left: 25px;
    height: 25px;
    margin-top: 0;
}

.black {
 	background-color: black;
	color: hsla(0,0%,100%,.75) !important;
	margin-bottom: 60px;
	font-size: 14px !important;
}

/* Footer */

a.btmlink:link {
	color: hsla(0,0%,100%,.75) !important;	
	font-size: 14px !important;
}

a.btmlink:visited {
	color: hsla(0,0%,100%,.75) !important;
}

a.bltmlink:hover {
	color: hsla(0,0%,100%,.75) !important;
}

.social img {
	margin-top: 25px;
	margin-left: 10px;
    width: 35px;
    height: 35px;
}

/* mopinion styling */

.mopinion-survey-content div, .mopinion-survey-content span, .mopinion-survey-content p, .mopinion-survey-content a, .mopinion-survey-content img, .mopinion-survey-content form, .mopinion-survey-content label, .mopinion-survey-content button, .mopinion-survey-content input, .mopinion-survey-content textarea {
    background: #98c5cd !important;
	font-size: 16px!important;
}

/* Mobile adjustments */

.card {
	min-width: 200px !important;
	max-width: 300px !important;
}

.col-2 {
	min-width: 150px !important;
}

.col-1 {
	min-width: 75px !important;
	display: flex;
    justify-content: flex-end;
}

.col-4 {
	min-width: 300px !important;
}

/* Translation mouse over styling */				
.translationdropdown {
	position: relative;
	display: inline-block;
		}

.translationdropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 12px 16px;
	z-index: 1;
	font-size: 12px !important;
		}

.translationdropdown:hover .translationdropdown-content {
	display: block;
		}
/*table row shading*/

			table {
			font-family: arial, sans-serif !important;
			border-collapse: collapse !important;
			width: 100% !important;
			}

			td  {
			border: 1px solid #dddddd !important;
			text-align: left !important;
			padding: 8px !important;
			}

			th,tr:nth-child(even) {
			background-color: #dddddd !important;
			padding: 8px !important;
			}
	
	
/* New */		
			

			/* tablet */

			@media (max-width:900px){

				#top-panel{
    				flex-wrap: wrap;
				}

				.nproduct-card{
    				flex:1 1 calc(50% - 20px);
				}
				
				.mdetail-panel {
					flex:1 1 calc(50% - 30px);
				}
				
				.addsearch-searchfield input[type=search] {
					min-width: 200px !important;		
				}				
		

			}	
			
				/* Mobile Responsiveness */
			@media (max-width: 600px) {
				.hero h1 {
					font-size: 36px;
				}
	
				.hero p {
					font-size: 18px;
				}
	
				.prodmain-content {
					padding: 60px 20px;
				}

				.prodsection-header h2 {
					font-size: 28px;
				}
				
				.nproduct-card{
	    			flex:1 1 100%;
				}	
				
				.mdetail-panel {
					flex:1 1 100%;
				}	

				.help-buttons {
					flex-direction: column;
					align-items: center;
				}
			
				.addsearch-searchfield input[type=search] {
					min-width: 150px !important;
				}

			}														