/**
 * @file
 * System wide base styles.
 */
/**
 * @file
 * Base styles for autocomplete functionality.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete {
  position: absolute;
  z-index: 100;
  overflow: hidden;
}
#autocomplete ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: none;
}
#autocomplete li {
  cursor: default;
  white-space: pre;
  zoom: 1;
  /* IE7 */
}

/* Animated throbber */
html.js .form-autocomplete {
  background-image: url('../../../images/misc/throbber.gif?1382488163');
  background-position: 100% 2px;
  /* LTR */
  background-repeat: no-repeat;
}

html.js .throbbing {
  background-position: 100% -18px;
  /* LTR */
}

/**
 * @file
 * Base styles for collapsible fieldset functionality.
 *
 * @see collapse.js
 */
html.js fieldset.collapsed {
  height: 1em;
}

html.js fieldset.collapsed .fieldset-wrapper {
  display: none;
}

fieldset.collapsible {
  position: relative;
}

fieldset.collapsible .fieldset-legend {
  display: block;
}

/**
 * @file
 * Base styles for the resizable textareas functionality.
 *
 * @see textarea.js
 */
.form-textarea-wrapper textarea {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}

.resizable-textarea .grippie {
  height: 9px;
  background: #eee url('../../../images/misc/grippie.png?1382488163') no-repeat center 2px;
  border: 1px solid #ddd;
  border-top-width: 0;
  cursor: s-resize;
  overflow: hidden;
}

/**
 * @file
 * Base styling for the tabledrag behavior.
 *
 * @see tabledrag.js
 */
body.drag {
  cursor: move;
}

/* Tabledrag Handle */
.tabledrag-handle {
  float: left;
  /* LTR */
  overflow: hidden;
  text-decoration: none;
  cursor: move;
}
.tabledrag-handle .handle {
  height: 15px;
  width: 15px;
  margin: -0.4em 0;
  padding: 0.4em;
  background: url('../../../images/misc/draggable.png?1382488163') no-repeat 6px 9px;
}
.tabledrag-handle:hover {
  text-decoration: none;
}

.tabledrag-handle-hover .handle {
  background-position: 6px -11px;
}

/* Indentation */
.indentation {
  float: left;
  /* LTR */
  width: 20px;
}

/* Tree Images */
.tree-child {
  background: url('../../../images/misc/tree.png?1382488163') no-repeat 12px center;
  /* LTR */
}

.tree-child-last {
  background: url('../../../images/misc/tree-bottom.png?1382488163') no-repeat 12px center;
  /* LTR */
}

.tree-child-horizontal {
  background: url('../../../images/misc/tree.png?1382488163') no-repeat -12px center;
}

/* Toggle Weight Link */
.tabledrag-toggle-weight-wrapper {
  text-align: right;
  /* LTR */
}

/**
 * @file
 * Base styling for the tableheader behavior.
 *
 * @see tableheader.js
 */
.sticky-header {
  margin-top: 0;
  background-color: #fff;
}

/**
 * @file
 * Base styles for the progress behavior.
 *
 * @see progress.js
 */
/* Bar */
.progress .bar {
  background-color: #fff;
  border: 1px solid;
}
.progress .filled {
  height: 1.5em;
  width: 5px;
  background-color: #000;
}
.progress .percentage {
  float: right;
  /* LTR */
}

/* Throbber */
.ajax-progress {
  display: inline-block;
}
.ajax-progress .throbber {
  float: left;
  /* LTR */
  height: 15px;
  width: 15px;
  margin: 2px;
  background: transparent url('../../../images/misc/throbber.gif?1382488163') no-repeat 0px -18px;
}
.ajax-progress .message {
  padding-left: 20px;
}

tr .ajax-progress .throbber {
  margin: 0 2px;
}

.ajax-progress-bar {
  width: 16em;
}

/**
 * @file
 * System utility classes.
 */
/**
 * Inline items.
 */
.container-inline div,
.container-inline label {
  display: inline;
}

/* Fieldset contents always need to be rendered as block. */
.container-inline .fieldset-wrapper {
  display: block;
}

/**
 * Prevent text wrapping.
 */
.nowrap {
  white-space: nowrap;
}

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
html.js .js-hide {
  display: none;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
}

/**
 * Use the clearfix from Compass.
 */
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* Added by yesha 16-02-2018 */
.media  {
	margin-top: 8px;
}
/* till here */

.product-info-sections {display: block;vertical-align: middle;padding: 25px 0px 12px 0px;text-align: center;color: #004c94;text-decoration: none;font-size: 13px;letter-spacing: 2px;text-transform: uppercase;color: #4a4a4a;font-size: 13px;float: left;width: 100%;}

.section-media .body-copy.terms-wrapper,.section-product-information .body-copy.terms-wrapper{padding: 0;}
.section-media .generic-banner h1,.section-product-information .generic-banner h1 {position: absolute;top: 50%;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);text-align: center;width: 100%;}
.section-media #product-portal li.col-1{float: left;}
.section-media #product-portal ul,.section-product-information #product-portal ul{margin-left: -10px;margin-right: -10px;}
.section-product-information #product-portal ul{float: left;width: 100%;}

/*.section-media .body-copy.product-info h2{height: auto !important;}
.section-media .body-copy.product-info h2 a{margin:0 !important;}*/

.section-media #product-portal .product-info,.section-product-information #product-portal .product-info{padding: 20px;margin: -11px 0 0 0;}
.section-media #product-portal h2 a,.section-product-information #product-portal h2 a{color: #004c94;margin: 5px 0px;font-size: 18px;line-height: 26px;border:0;padding: 0;}
.section-media #product-portal h2 a:hover,.section-product-information #product-portal h2 a:hover{background: none;color: #004c94;}
.section-media .view-content li,.section-product-information .view-content li {width: 33.333333333%;box-sizing: border-box;float: left;padding: 10px;}
.section-media .view-content li:nth-child(3n+4),.section-product-information .view-content li:nth-child(3n+4){clear: both;}
/*.section-media #product-portal .actions{padding: 0;}*/


/*DD 20-02-2018*/
.page-node-286 .node__submitted p.submitted,
.page-node-287 .node__submitted p.submitted
{
	display: none;
}
.page-node-286 .field-collection-container,
.page-node-287 .field-collection-container
 {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
  border: none;
}
.page-node-287 .node__content > p + img + .field-collection-container
{
  justify-content: normal;
}
.page-node-287 .field-collection-container
{
  margin-top: 40px;
  margin-bottom: 30px;
}
.page-node-287 .node__content > p + img + .field-collection-container .field-collection-view:first-child
{
  margin-right: 15px;
}
.page-node-286 .field-collection-container .field-collection-view,
.page-node-287 .field-collection-container .field-collection-view
 {
   margin: 20px 15px 0 0;
   width: calc(100% / 3 - 15px);
   text-align: center;
   border: none;
   background: #f7f7f4;
   padding-bottom: 100px;
   padding-top: 0;
   box-sizing: border-box;
   position: relative;
}
.page-node-286 .field-collection-container .field-collection-view .content,
.page-node-287 .field-collection-container .field-collection-view .content
 {
	text-align: center;
	color: #004c94;
	margin: 0;
	font-size: 18px;
	line-height: 26px;
	font-family: "Myriad W08 Bold_1166607";
	text-transform: uppercase;
  letter-spacing: 2px;
}
.page-node-286 .field-collection-container .field-collection-view .content a,
.page-node-287 .field-collection-container .field-collection-view .content a
{
  font-family: "Myriad W08 Bold_1166607";
  background: transparent;
  color: #4a4a4a;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  border: 3px solid #4a4a4a;
  width: calc(100% - 45px);
  padding: 15px 0px;
  text-align: center;
  text-decoration: none;
  line-height: 12px;
  margin: 22px 0 0 20px;
  display: block;
  position: absolute;
  bottom: 30px;
}
.page-node-286 .field-collection-container .field-collection-view .content a:hover,
.page-node-287 .field-collection-container .field-collection-view .content a:hover
{
  text-decoration: none;
  background: #004c94;
  color: #ffffff;
  border-color: #004c94;
}
.page-node-286 .field-collection-container .field-collection-view .content img,
.page-node-287 .field-collection-container .field-collection-view .content img
 {
	height: auto;
	width: auto;
	margin-bottom: 20px;
}
.page-node-286 .node__content > p + img,
.page-node-287 .node__content > p + img
{
	display: block;
	height: 250px;
	object-fit: cover;
	object-position: center;
}
.page-node-287 .node__content > p + img
{
  margin-bottom: 40px;
}
.page-node-286 .node__content, .page-node-287 .node__content {
	/* font-size: 0; */
	width: 1190px;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	bottom: 25px;
	color: #004c94;
	margin: 5px 0px;
	font-size: 18px;
	font-family: "Myriad W08 Bold_1166607";
	line-height: 26px;
	text-transform: uppercase;
	text-align: center;
  letter-spacing: 3px;
  padding-left: 10px;
}

.page-node-286 .node__content::before,
.page-node-287 .node__content::before
{
	content: "";
	display: block;
	background: #000;
	height: 250px;
	width: 100%;
	position: absolute;
	top: 26px;
	opacity: 0.2;
}
.page-node-286 .node__content::after, .page-node-287 .node__content::after {
	content: "";
	display: block;
	height: 20px;
	position: absolute;
	top: 5px;
	background: #F0EFEA;
	width: 100%;
}
.page-node-286 .node__content > p,
.page-node-287 .node__content > p
{
  position: absolute;
  left: 0;
  top: 110px;
  width: 100%;
  text-align: center;
  font-family: "Myriad W08 Bold_1166607";
  text-transform: uppercase;
  color: #ffffff;
  font-size: 45px;
  letter-spacing: 3px;
  line-height: 50px;
}

/*DD 20-02-2018 End*/

@media only screen and (max-width: 959px) {
  .page-node-286 .field-collection-container .field-collection-view .content,
  .page-node-287 .field-collection-container .field-collection-view .content
   {
  	font-size: 15px;
  	letter-spacing: 1px;
  }
  .page-node-286 .node__content, .page-node-287 .node__content
  {
    padding-left: 0;
  }
  .page-node-286 .node__content > p,
  .page-node-287 .node__content > p
  {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .section-media .view-content li,.section-product-information .view-content li {width: 100%;}
  .section-media .view-content .img-content img,.section-product-information .view-content .img-content img{width: 100%;}

  .page-node-286 .field-collection-container .field-collection-view,
  .page-node-287 .field-collection-container .field-collection-view
   {
  	width: calc(100% / 2 - 15px);
  }
  .page-node-287 .node__content > p + img + .field-collection-container .field-collection-view:first-child
  {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 530px) {
  .page-node-286 .field-collection-container .field-collection-view,
  .page-node-287 .field-collection-container .field-collection-view
  {
  	width: 100%;
  }
  .page-node-287 .node__content > p + img + .field-collection-container .field-collection-view:first-child
  {
    margin-right: 0;
  }
}
