/*
 *  Copyright 2016 Adobe Systems Incorporated
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.link-underline {
  text-transform: uppercase;
}
.link-underline::after {
  transition: all 0.3s cubic-bezier(0.68, -0.2, 0.3, 1.55);
  content: '';
  display: block;
  width: 0;
  border-top: 2px solid #000;
  margin: -5px auto 3px;
}
.link-underline:hover,
.link-underline.hover,
.link-underline:focus,
.link-underline.focus {
  text-decoration: none;
}
.link-underline:hover::after,
.link-underline.hover::after,
.link-underline:focus::after,
.link-underline.focus::after {
  width: 95%;
  width: calc(100% - 4px);
  border-top-color: #272727;
}
.link-underline.btn-primary::after {
  border-top-color: #ed1c24;
}
@media (min-width: 768px) {
  .link-underline.btn-inverse::after,
  [class*=inverse] .link-underline::after {
    border-top-color: #fff;
  }
}
.black {
  font-weight: 900 !important;
}
.bold {
  font-weight: 700 !important;
}
.normal {
  font-weight: 400 !important;
}
.light {
  font-weight: 300 !important;
}
.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.width-full {
  margin: 0 -10%;
  margin: 0 -24px;
}
@media (min-width: 768px) {
  .width-full {
    margin: 0 calc((100vw - 744px + 2 * 24px) / -2);
  }
}
@media (min-width: 992px) {
  .width-full {
    margin: 0 calc((100vw - 964px + 2 * 24px) / -2);
  }
}
@media (min-width: 1248px) {
  .width-full {
    margin: 0 calc((100vw - 1224px + 2 * 24px) / -2);
  }
}
.ratio-16by9 {
  height: auto !important;
  min-height: 0 !important;
  padding: 0 20px 56.25%;
}
.ratio-16by9.width-full {
  padding: 0 20px calc(100vw * 9 / 16);
}
.img-center {
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
}
.img-center img {
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0 auto;
}
.modal .modal-dialog.modal-center {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
[v-cloak] {
  display: none;
}
.crop {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.crop:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.crop.crop-16_9:before {
  padding-top: 56.25%;
}
.crop__content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  vertical-align: middle;
}

/*
 * ADOBE CONFIDENTIAL
 *
 * Copyright 2015 Adobe Systems Incorporated
 * All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and may be covered by U.S. and Foreign Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 */
/* grid component */
.aem-Grid {
  display: block;
  width: 100%;
}
.aem-Grid::before,
.aem-Grid::after {
  display: table;
  content: " ";
}
.aem-Grid::after {
  clear: both;
}
/* placeholder for new components */
.aem-Grid-newComponent {
  clear: both;
  margin: 0;
}
/* column of a grid */
.aem-GridColumn {
  box-sizing: border-box;
  clear: both;
}
/* force showing hidden */
.aem-GridShowHidden > .aem-Grid > .aem-GridColumn {
  display: block !important;
}
/* Generates all the rules for the grid columns up to the given amount of column */
/* Generates all the rules for the grid column offset up to the given amount of column */
/* Generates all the rules for the grid and columns for the given break point and total of columns */
/* Generates all the rules for the grids and columns */
/* API function to be called to generate a grid config */
/* maximum amount of grid cells to be provided */
/* default breakpoint */
.aem-Grid {
  width: auto;
}
.aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 20%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 40%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 60%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 80%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 20%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 40%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 60%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 80%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 16.66666667%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 83.33333333%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 16.66666667%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 83.33333333%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 14.28571429%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 28.57142857%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 42.85714286%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 57.14285714%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 71.42857143%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 85.71428571%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 14.28571429%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 28.57142857%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 42.85714286%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 57.14285714%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 71.42857143%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 85.71428571%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 12.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 37.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 62.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 87.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 12.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 37.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 62.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 87.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 11.11111111%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 22.22222222%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 44.44444444%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 55.55555556%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 77.77777778%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 88.88888889%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 11.11111111%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 22.22222222%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 44.44444444%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 55.55555556%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 77.77777778%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 88.88888889%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 10%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 20%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 30%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 40%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 60%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 70%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 80%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 90%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 10%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 20%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 30%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 40%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 60%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 70%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 80%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 90%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 9.09090909%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 18.18181818%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 27.27272727%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 36.36363636%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 45.45454545%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 54.54545455%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 63.63636364%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 72.72727273%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 81.81818182%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 90.90909091%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--11 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 9.09090909%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 18.18181818%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 27.27272727%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 36.36363636%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 45.45454545%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 54.54545455%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 63.63636364%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 72.72727273%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 81.81818182%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 90.90909091%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 8.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 16.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 41.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 58.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 83.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--11 {
  float: left;
  clear: none;
  width: 91.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--12 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 8.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 16.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 41.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 58.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 83.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
  margin-left: 91.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--12 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 20%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 40%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 60%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 80%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 20%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 40%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 60%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 80%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 16.66666667%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 83.33333333%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 16.66666667%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 83.33333333%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 14.28571429%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 28.57142857%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 42.85714286%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 57.14285714%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 71.42857143%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 85.71428571%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 14.28571429%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 28.57142857%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 42.85714286%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 57.14285714%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 71.42857143%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 85.71428571%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 12.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 37.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 62.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 87.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 12.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 37.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 62.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 87.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 11.11111111%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 22.22222222%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 44.44444444%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 55.55555556%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 77.77777778%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 88.88888889%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 11.11111111%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 22.22222222%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 44.44444444%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 55.55555556%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 77.77777778%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 88.88888889%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 10%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 20%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 30%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 40%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 60%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 70%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 80%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 90%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 10%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 20%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 30%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 40%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 60%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 70%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 80%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 90%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 9.09090909%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 18.18181818%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 27.27272727%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 36.36363636%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 45.45454545%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 54.54545455%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 63.63636364%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 72.72727273%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 81.81818182%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 90.90909091%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--11 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 9.09090909%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 18.18181818%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 27.27272727%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 36.36363636%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 45.45454545%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 54.54545455%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 63.63636364%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 72.72727273%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 81.81818182%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 90.90909091%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 8.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 16.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 41.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 58.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 83.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--11 {
  float: left;
  clear: none;
  width: 91.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 8.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 16.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 41.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 58.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 83.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
  margin-left: 91.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--12 {
  margin-left: 100%;
}
.aem-Grid > .aem-GridColumn.aem-GridColumn--default--newline {
  /* newline behavior */
  display: block;
  clear: both !important;
}
.aem-Grid > .aem-GridColumn.aem-GridColumn--default--none {
  /* none behavior */
  display: block;
  clear: none !important;
  float: left;
}
.aem-Grid > .aem-GridColumn.aem-GridColumn--default--hide {
  /* hide behavior */
  display: none;
}
/* mobile/tablet breakpoint */
@media (max-width: 768px) {
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--mobile--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--mobile--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--mobile--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--mobile--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--12 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--1 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--1 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--1 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--2 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--mobile--2 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--2 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--2 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--mobile--2 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--3 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--3 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--3 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--3 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--3 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--3 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--3 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--mobile--4 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--mobile--5 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--6 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--mobile--7 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--mobile--8 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--mobile--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--mobile--9 > .aem-GridColumn.aem-GridColumn--offset--mobile--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--mobile--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--mobile--10 > .aem-GridColumn.aem-GridColumn--offset--mobile--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--mobile--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--mobile--11 > .aem-GridColumn.aem-GridColumn--offset--mobile--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--mobile--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--mobile--12 > .aem-GridColumn.aem-GridColumn--offset--mobile--12 {
    margin-left: 100%;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--mobile--newline {
    /* newline behavior */
    display: block;
    clear: both !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--mobile--none {
    /* none behavior */
    display: block;
    clear: none !important;
    float: left;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--mobile--hide {
    /* hide behavior */
    display: none;
  }
}
.aem-GridColumn {
  padding: 0 12px;
}
/* TODO: find a better place for this */
/* additional styling for components in grid */
.aem-GridColumn.text.parbase p {
  *padding: 0 20px;
  text-align: justify;
}

@font-face{
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTStd-Lt.otf") format("truetype");
	font-family: "HelveticaNeueLTStd-Lt";
	font-style:normal;
	font-weight:normal;
	font-display: swap;
}

@font-face{
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTStd-LtIt.otf") format("truetype");
	font-family: "HelveticaNeueLTStd-LtIt";
	font-style:normal;
	font-weight:normal;
	font-display: swap;
}

@font-face{
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTStd-Bd.otf") format("truetype");
	font-family: "HelveticaNeueLTStd-Bd";
	font-style:normal;
	font-weight:normal;
	font-display: swap;
}

@font-face{
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTStd-BdIt.otf") format("truetype");
	font-family: "HelveticaNeueLTStd-BdIt";
	font-style:normal;
	font-weight:normal;
	font-display: swap;
}

@font-face{
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTStd-Md.otf") format("truetype");
	font-family: "HelveticaNeueLTStd-Md";
	font-style:normal;
	font-weight:normal;
	font-display: swap;
}

@font-face{
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTStd-MdIt.otf") format("truetype");
	font-family: "HelveticaNeueLTStd-MdIt";
	font-style:normal;
	font-weight:normal;
	font-display: swap;
}

@font-face{
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTStd-Roman.otf") format("truetype");
	font-family: "HelveticaNeueLTStd-Roman";
	font-style:normal;
	font-weight:normal;
	font-display: swap;
}

/* Commercial Site */

@font-face {
	font-family: "ProximaNova";
	src: url("../../../etc/designs/diagnostics/vendor/fonts/Proxima Nova-Bold.otf") format("truetype");
	font-weight:bold;
}

@font-face {
	font-family: "ProximaNova";
	src: url("../../../etc/designs/diagnostics/vendor/fonts/Proxima Nova-Medium.otf") format("truetype");
	font-weight:500;
}

@font-face {
	font-family: "ProximaNova";
	src: url("../../../etc/designs/diagnostics/vendor/fonts/Proxima Nova-Regular.otf") format("truetype");
	font-weight:400;
}

@font-face {
	font-family: "ProximaNova";
	src: url("../../../etc/designs/diagnostics/vendor/fonts/Proxima Nova-SemiBold.otf") format("truetype");
	font-weight:600;
}


@font-face {
	font-family: "HelveticaNeueThin";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.svg") format("svg");
	font-weight: lighter;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueThin";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-35Thin.svg") format("svg");
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueLight";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.svg") format("svg");
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueLight";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.svg") format("svg");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: "HelveticaNeue";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.svg") format("svg");
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeue";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-55Roman.svg") format("svg");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueItalic";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-56Italic.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-56Italic.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-56Italic.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-56Italic.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-56Italic.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-56Italic.svg") format("svg");
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueMedium";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.svg") format("svg");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "HelveticaNeueMedium";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.svg") format("svg");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueBold";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.svg") format("svg");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueBold";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.svg") format("svg");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueBold";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.svg") format("svg");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeueBold";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.svg") format("svg");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeue-Light";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-45Light.svg") format("svg");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeue-Medium";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-65Medium.svg") format("svg");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "HelveticaNeue-Bold";
	src:     url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix");
	src: url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.eot?#iefix") format("eot"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff2") format("woff2"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.woff") format("woff"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.ttf") format("truetype"),
	url("../../../etc/designs/diagnostics/vendor/fonts/HelveticaNeueLTW01-75Bold.svg") format("svg");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

.aem-flex-grid{
	display:flex;
	flex-wrap:wrap;
}

.aem-flex-grid::before, .aem-flex-grid::after{
	display:none;
}

.path-phadia .text-large{
	font-size:1.25em;
}

.path-phadia .text-small{
	font-size:0.8em;
}

.path-phadia h1,
.path-phadia h2,
.path-phadia h3,
.path-phadia h4,
.path-phadia h5,
.paht-phadia h6 {
	color: #222222;
	font-family: "HelveticaNeue", sans-serif;
}

.path-phadia h1{
	font-size:40px;
	line-height:45px;
}

.path-phadia h2{
	font-size:26px;
	line-height:36px;
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
}

.path-phadia h3{
	font-size:22px;
	line-height:32px;
	font-family: HelveticaNeueLTStd-Md, Helvetica, Arial, sans-serif;
}

.path-phadia h4{
	font-size:20px;
	line-height:25px;
}

.path-phadia h5{
	font-size:18px;
	line-height:23px;
}

.path-phadia h6{
	font-size:16px;
	line-height:20px;
}

.path-phadia h4 a, .path-phadia h5 a, .path-phadia h6 a,
.path-phadia a h4, .path-phadia a h5, .path-phadia a h6 {
	color:#1E8AE7;
}

.path-phadia h4 a, .path-phadia a h4, .path-phadia b, .path-phadia strong{
	font-family: "HelveticaNeueBold", sans-serif;
}

.path-phadia h5 a, .path-phadia a h5{
	font-family: "HelveticaNeueMedium", sans-serif;
}

.path-phadia h6 a, .path-phadia a h6{
	font-family: "HelveticaNeue", sans-serif;
}

.path-phadia, .path-phadia .content{
	font-family: "HelveticaNeue", sans-serif !important;
	color:#222222;
}

.path-phadia p, .path-phadia ul, .path-phadia ol{
	font-family: "HelveticaNeue", sans-serif;
	font-size:16px;
	line-height:24px;
	color:#222222;
	margin-bottom:11px;
}

.path-phadia ul ul {
	margin-bottom: 0;
}

.path-procalcitonin .xf-content-height {
	min-height:0;
	margin:0;
}

.path-procalcitonin h1, .path-procalcitonin h2, .path-procalcitonin h3, .path-procalcitonin h4, .path-procalcitonin h5,
.path-procalcitonin h6{
	color:#121619;
	font-family: "ProximaNova", sans-serif !important;
}

.path-procalcitonin h1{
	font-size:56px;
	line-height:1.2;
	font-weight:bold;
}

.path-procalcitonin h2{
	font-size:40px;
	line-height:1.2;
	font-weight:500;
	color:#00677F;
}

.path-procalcitonin h3{
	font-size:32px;
	line-height:1.2;
	font-weight:500;
	color:#00677F;
}

.path-procalcitonin h4{
	font-size:28px;
	font-weight:500;
	line-height:1.3;
	color:#282828;
}

.path-procalcitonin h5{
	font-size:24px;
	line-height:1.5;
	font-weight:bold;
}

.path-procalcitonin h6{
	font-size:16px;
	line-height:20px;
}

.path-procalcitonin p, .path-procalcitonin li{
	font-family: "ProximaNova", sans-serif !important;
	font-size:24px;
	font-weight:normal;
	line-height:1.5;
	color:#151515;
}

:root {
	--onelambda-color: #E71316;
	--onelambda-color-hover: #D01013;
	--onelambda-color-active-box-shadow: #B10609;
}

.path-onelambda .modal-content{
	border-radius:8px;
}

.path-onelambda h1{
	font-size:36px;
	line-height:42px;
	font-family:"HelveticaNeueBold", sans-serif;
}

.path-onelambda h2{
	font-size:26px;
	line-height:33px;
	font-family:"HelveticaNeueMedium", sans-serif;
}

.path-onelambda h3{
	font-size:22px;
	line-height:30px;
	font-family:"HelveticaNeueBold", sans-serif;
}

.path-onelambda h4{
	font-size:18px;
	line-height:26px;
	font-family:"HelveticaNeueBold", sans-serif;
}

.path-onelambda h5{
	font-size:18px;
	line-height:26px;
	font-family:"HelveticaNeueMedium", sans-serif;

}
.path-onelambda h6{
	font-size:18px;
	line-height:26px;
	font-family:"HelveticaNeue", sans-serif;
}

.path-onelambda h1.border-bottom,
.path-onelambda h2.border-bottom,
.path-onelambda h3.border-bottom,
.path-onelambda h4.border-bottom,
.path-onelambda h5.border-bottom,
.path-onelambda h6.border-bottom {
	padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
}


.path-procalcitonin h4 a, .path-procalcitonin h5 a, .path-procalcitonin h6 a,
.path-procalcitonin a h4, .path-procalcitonin a h5, .path-procalcitonin a h6 {
	color:#00677F;
}
.path-onelambda h4 a, .path-onelambda h5 a, .path-onelambda h6 a,
.path-onelambda a h4, .path-onelambda a h5, .path-onelambda a h6 {
	color:var(--onelambda-color);
}

.path-onelambda a:hover{
	color:var(--onelambda-color-hover) !important;
}

.path-phadia .text-cmp ul{
	font-family: "HelveticaNeue", sans-serif;
	padding-left:8px;
	line-height:1.428;
}

.path-phadia .text-cmp ul li::before{
	top:4px !important;
}

.path-phadia .text-wrapper[class*="list-style-"] ul li::before {
	top:1px !important;
}

.path-phadia p.grey-paragraph{
	color:#54545C;
}

.path-phadia.alt{
	color:#54545C;
	font-size:16px;
	line-height:26px;
}

.path-phadia .well-cmp a{
	color:#1E8AE7;
}
.path-phadia .well-cmp a:hover{
	color:#005DAA;
}
.path-phadia .well-cmp a:visited{
	color:#262262;
}

.path-phadia.path-procalcitonin .well-cmp a{
	color:#00677F;
}
.path-phadia.path-procalcitonin .well-cmp a:hover{
	color:#00677F;
}
.path-phadia.path-procalcitonin .well-cmp a:visited{
	color:#00677F;
}

.path-phadia.path-onelambda .well-cmp a{
	color:var(--onelambda-color);
}
.path-phadia.path-onelambda .well-cmp a:hover{
	color:var(--onelambda-color);
}
.path-phadia.path-onelambda .well-cmp a:visited{
	color:var(--onelambda-color);
}



.path-phadia label b, .path-phadia label strong{
	font-family: "HelveticaNeueBold", sans-serif;
}

.path-phadia blockquote{
	color:#222222;
	font-family: "HelveticaNeue", sans-serif;
	font-size:18px;
	line-height:28px;
}

.path-phadia .text_v2 blockquote {
	border-left: unset;
	padding-left: 47px;
	position: relative;
	display: inline-block;
}

.path-phadia .text_v2 blockquote:before {
	content: '\201C';
	font-size: 80px;
	color: #9BD3DD;
	position: absolute;
	top: 26px;
	left: 0;
	opacity: 0.5;
}

.path-phadia b a, .path-phadia a b{
	font-family: "HelveticaNeueBold", sans-serif;
}

.path-phadia b a:disabled, .path-phadia a:disabled b{
	color:#C9C8C8;
}

.path-onelambda p, .path-onelambda li{
	font-family:"HelveticaNeue", sans-serif;
	font-size:16px;
	line-height:24px;
}

@media screen and (max-width: 768px){
	.path-phadia h1{
		font-size:34px;
		line-height:42px;
	}
	.path-phadia h2{
		font-size:21px;
		line-height:26px;
	}
	.path-phadia h3{
		font-size:18px;
		line-height:23px;
	}
	.path-phadia h4, .path-phadia h5{
		font-size:16px;
		line-height:20px;
	}

	.path-onelambda h1{
		font-size:22px;
		line-height:26px;
	}

	.path-onelambda h2{
		font-size:21px;
		line-height:26px;
	}

	.path-onelambda h3{
		font-size:18px;
		line-height:26px;
	}

	.path-onelambda h4, .path-onelambda h5, .path-onelambda h6{
		font-size:16px;
		line-height:24px;
	}

	.path-onelambda p, .path-onelambda li{
		font-family:"HelveticaNeue", sans-serif;
		font-size:14px;
		line-height:22px;
	}

	.path-procalcitonin h1{
		font-size:36px;
		line-height:44px;
	}

	.path-procalcitonin h2{
		font-size:32px;
		color:#00677F;
		line-height:40px;
	}

	.path-procalcitonin h3{
		font-size:28px;
		color:#00677F;
		line-height:36px;
	}

	.path-procalcitonin h4{
		font-size:24px;
		line-height:32px;
	}

	.path-procalcitonin h5{
		font-size:18px;
		font-weight:bold;
		line-height:26px;
	}

	.path-procalcitonin p, .path-procalcitonin li{
		font-size:16px;
	}
}

/*
	OVERALL
*/

img{
    max-width:100%;
}

.image.parbase{
	text-align:center;
}

.aem-GridColumn{
	padding:0;
}

.well-cmp .aem-GridColumn{
	padding:0 12px;
}

body.path-patient div.root > .aem-Grid > .responsivegrid,
body.path-hcp div.root > .aem-Grid > .responsivegrid{
	margin-top:112px;
}

.container{
	width:95%;
	max-width:1200px;
}

.path-patient a{
	color:#7474B6;
}

.path-hcp a{
	color:#6FABDC;
}

.path-lab a{
	color:#EF2E34;
}

p{
    margin-top:10px;
}

.path-patient .btn{
    background-color:#7474B6 !important;
}

.path-hcp .btn{
	background-color:#6FABDC !important;
}

.path-lab .btn{
	background-color:#EF2E34 !important;
}

.btn{
	min-width:180px;
	color:#ffffff !important;
	text-align:center;
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
	font-size:16px;
	display:inline-block;
	padding:15px;
	cursor:pointer;
	border-radius:0;
	border:0;
	text-shadow:none !important;
	white-space: normal;
	margin-bottom:30px;
}

.purple-btn{
	background-color:#7474B6;
	color:#ffffff !important;
}

.btn-primary {
	color:#ffffff !important;
	background-color:#7474B6;
}

.btn-featured {
	color:#ffffff !important;
	background-color:#7474B6;
}

body .btn:hover, body .btn:focus {
	text-decoration: none;
}

.path-patient .btn:hover, .path-patient .btn:focus{
	background-color:#262262 !important;
}

.path-hcp .btn:hover, .path-hcp .btn:focus{
	background-color:#00548B !important;
}

.path-lab .btn:hover, .path-lab .btn:focus{
	background-color:#AD1E2D !important;
}

.new-orange-color.btn, .new-orange-color.btn:hover, .new-orange-color.btn:focus{
	background-color:#FF9E3D !important;
}
.new-light-blue-color.btn, .new-light-blue-color.btn:hover, .new-light-blue-color.btn:focus{
	background-color:#61A8FF !important;
}
.new-dark-blue-color.btn, .new-dark-blue-color.btn:hover, .new-dark-blue-color.btn:focus{
	background-color:#005DAA !important;
}

/*Modal Fixes*/
.modal .modal-footer .btn{
	background-color: #766FC6 !important; 
	color: #fff !important; 
	box-shadow: 0px 0px #fff !important; 
	margin: 0px 10px 20px;
}

.modal .modal-footer .btn a{
	color: #fff !important; 
}

.modal .modal-footer {
	padding: 15px;
	text-align: center; 
	border-top: 1px solid #e5e5e5;
}
.well-bg-purple .text-cmp .modal .modal-body p{
	color: #575757 !important;
}

@media screen and (max-width: 1200px){
	.heroimage .container, .heroimage .container-fluid{
		margin:0;
		padding:0;
		width:100%;
	}
	
	.container{
		width:100%;
	}

}

@media screen and (max-width: 992px){
	.container{
		width:100% !important;
	}
}

@media screen and (max-width: 768px){
	body.path-patient div.root > .aem-Grid > .responsivegrid, body.path-hcp div.root > .aem-Grid > .responsivegrid{
		margin-top:57px;
	}
}

@media screen and (max-width: 480px){
	body:not(.new-breakpoints) .aem-GridColumn{
		width:100% !important;
	}
	
	.path-patient.path-allergy-resources.path-food-allergy-videos .well-cmp .well-padding, .path-patient.path-allergy-resources.path-food-allergy-videos .well-cmp .aem-GridColumn{
		padding:0;
	}

}


@media screen and (max-width: 425px){

}

@media screen and (max-width: 325px){
	.btn{
		min-width:0;
	}
}

@media print {
	#site-selector-container, .search-form{
		display:none;
	}
	.toptoolbar .header{
		position:relative;
		margin-bottom:20px;
		width:auto;
	}
	.topnav{
		display:none;
	}
	.breadcrumbs-wrapper{
		display:none;
	}
	.heroimage{
		display:none;
	}
	.container{
		margin:0;
		padding:0;
		width:100%;
		max-width:none;
	}
	#footer-social-wrapper{
		display:none;
	}
	#footer-site-selector-wrapper{
		display:none;
	}
	.large_cta_wrapper{
		page-break-inside:avoid;
	}

	.well-cmp-inner{
		padding:10px 0 !important;
	}

	ul li{
		padding:0 !important;
	}

	.accordion-title .fa, .accordion-title::after{
		display:none !important;
	}

	.accordion-content{
		display:block !important;
		padding:10px !important;
	}

	.back-to-top-btn{
		display:none;
	}

	.bottom-footer{
		padding-top:40px !important;
	}
	#footer-logo{
		max-width:165px !important;
	}

	.footer .terms a{
		display:none;
	}
}
.xf-content-height {
	max-width: 100%;
}

.cmp-container-inner.d-none{
	display:none;
}
.form-group{
	position:relative;
}
@font-face {
    font-family: 'icomoon';
    src:  url('../../../etc/designs/diagnostics/vendor/fonts/icomoon.eot?axzxrh');
    src:  url('../../../etc/designs/diagnostics/vendor/fonts/icomoon.eot?axzxrh#iefix') format('embedded-opentype'),
    url('../../../etc/designs/diagnostics/vendor/fonts/icomoon.ttf?axzxrh') format('truetype'),
    url('../../../etc/designs/diagnostics/vendor/fonts/icomoon.woff?axzxrh') format('woff'),
    url('../../../etc/designs/diagnostics/vendor/fonts/icomoon.svg?axzxrh#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-32-addressBook-bold:before {
    font-size: 32px;
    content: "\e900";
}
.icon-32-addressBook-mono:before {
    font-size: 32px;
    content: "\e901";
}
.icon-32-alert-bold:before {
    font-size: 32px;
    content: "\e902";
}
.icon-32-alert-mono:before {
    font-size: 32px;
    content: "\e903";
}
.icon-32-align-center-bold:before {
    font-size: 32px;
    content: "\e904";
}
.icon-32-align-center-mono:before {
    font-size: 32px;
    content: "\e905";
}
.icon-32-align-left-bold:before {
    font-size: 32px;
    content: "\e906";
}
.icon-32-align-left-mono:before {
    font-size: 32px;
    content: "\e907";
}
.icon-32-align-right-bold:before {
    font-size: 32px;
    content: "\e908";
}
.icon-32-align-right-mono:before {
    font-size: 32px;
    content: "\e909";
}
.icon-32-analyze-bold:before {
    font-size: 32px;
    content: "\e90a";
}
.icon-32-analyze-mono:before {
    font-size: 32px;
    content: "\e90b";
}
.icon-32-arrow-down-bold:before {
    font-size: 32px;
    content: "\e90c";
}
.icon-32-arrow-down-mono:before {
    font-size: 32px;
    content: "\e90d";
}
.icon-32-arrow-left-bold:before {
    font-size: 32px;
    content: "\e90e";
}
.icon-32-arrow-left-mono:before {
    font-size: 32px;
    content: "\e90f";
}
.icon-32-arrow-right-bold:before {
    font-size: 32px;
    content: "\e910";
}
.icon-32-arrow-right-mono:before {
    font-size: 32px;
    content: "\e911";
}
.icon-32-arrow-up-bold:before {
    font-size: 32px;
    content: "\e912";
}
.icon-32-arrow-up-mono:before {
    font-size: 32px;
    content: "\e913";
}
.icon-32-asterisk-bold:before {
    font-size: 32px;
    content: "\e914";
}
.icon-32-asterisk-mono:before {
    font-size: 32px;
    content: "\e915";
}
.icon-32-attachment-mono:before {
    font-size: 32px;
    content: "\e916";
}
.icon-32-awake-bold:before {
    font-size: 32px;
    content: "\e917";
}
.icon-32-awake-mono:before {
    font-size: 32px;
    content: "\e918";
}
.icon-32-award-bold:before {
    font-size: 32px;
    content: "\e919";
}
.icon-32-award-mono:before {
    font-size: 32px;
    content: "\e91a";
}
.icon-32-barcode-bold:before {
    font-size: 32px;
    content: "\e91b";
}
.icon-32-barcode-mono:before {
    font-size: 32px;
    content: "\e91c";
}
.icon-32-bell-bold:before {
    font-size: 32px;
    content: "\e91d";
}
.icon-32-bell-mono:before {
    font-size: 32px;
    content: "\e91e";
}
.icon-32-bin-bold:before {
    font-size: 32px;
    content: "\e91f";
}
.icon-32-bin-mono:before {
    font-size: 32px;
    content: "\e920";
}
.icon-32-bluetooth-mono:before {
    font-size: 32px;
    content: "\e921";
}
.icon-32-bookmark-bold:before {
    font-size: 32px;
    content: "\e922";
}
.icon-32-bookmark-mono:before {
    font-size: 32px;
    content: "\e923";
}
.icon-32-bulletedList-bold:before {
    font-size: 32px;
    content: "\e924";
}
.icon-32-bulletedList-mono:before {
    font-size: 32px;
    content: "\e925";
}
.icon-32-caculator-bold:before {
    font-size: 32px;
    content: "\e926";
}
.icon-32-caculator-mono:before {
    font-size: 32px;
    content: "\e927";
}
.icon-32-calendar-bold:before {
    font-size: 32px;
    content: "\e928";
}
.icon-32-calendar-mono:before {
    font-size: 32px;
    content: "\e929";
}
.icon-32-camera-bold:before {
    font-size: 32px;
    content: "\e92a";
}
.icon-32-camera-mono:before {
    font-size: 32px;
    content: "\e92b";
}
.icon-32-cart-add-bold:before {
    font-size: 32px;
    content: "\e92c";
}
.icon-32-cart-add-mono:before {
    font-size: 32px;
    content: "\e92d";
}
.icon-32-cart-default-bold:before {
    font-size: 32px;
    content: "\e92e";
}
.icon-32-cart-default-mono:before {
    font-size: 32px;
    content: "\e92f";
}
.icon-32-cart-remove-bold:before {
    font-size: 32px;
    content: "\e930";
}
.icon-32-cart-remove-mono:before {
    font-size: 32px;
    content: "\e931";
}
.icon-32-catalog-bold:before {
    font-size: 32px;
    content: "\e932";
}
.icon-32-catalog-mono:before {
    font-size: 32px;
    content: "\e933";
}
.icon-32-chat-bold:before {
    font-size: 32px;
    content: "\e934";
}
.icon-chat-mono:before {
    font-size: 32px;
    content: "\e935";
}
.icon-32-checkedBox-bold:before {
    font-size: 32px;
    content: "\e936";
}
.icon-32-checkedBox-mono:before {
    font-size: 32px;
    content: "\e937";
}
.icon-32-checkmark-bold:before {
    font-size: 32px;
    content: "\e938";
}
.icon-32-checkmark-mono:before {
    font-size: 32px;
    content: "\e939";
}
.icon-32-chevron-down-bold:before {
    font-size: 32px;
    content: "\e93a";
}
.icon-32-chevron-down-mono:before {
    font-size: 32px;
    content: "\e93b";
}
.icon-32-chevron-left-bold:before {
    font-size: 32px;
    content: "\e93c";
}
.icon-32-chevron-left-mono:before {
    font-size: 32px;
    content: "\e93d";
}
.icon-32-chevron-right-bold:before {
    font-size: 32px;
    content: "\e93e";
}
.icon-32-chevron-right-mono:before {
    font-size: 32px;
    content: "\e93f";
}
.icon-32-chevron-up-bold:before {
    font-size: 32px;
    content: "\e940";
}
.icon-32-chevron-up-mono:before {
    font-size: 32px;
    content: "\e941";
}
.icon-32-clipboard-bold:before {
    font-size: 32px;
    content: "\e942";
}
.icon-32-clipboard-mono:before {
    font-size: 32px;
    content: "\e943";
}
.icon-32-clock-bold:before {
    font-size: 32px;
    content: "\e944";
}
.icon-32-clock-mono:before {
    font-size: 32px;
    content: "\e945";
}
.icon-32-close-bold:before {
    font-size: 32px;
    content: "\e946";
}
.icon-32-close-mono:before {
    font-size: 32px;
    content: "\e947";
}
.icon-32-cloud-bold:before {
    font-size: 32px;
    content: "\e948";
}
.icon-32-cloud-mono:before {
    font-size: 32px;
    content: "\e949";
}
.icon-32-cloudDownload-bold:before {
    font-size: 32px;
    content: "\e94a";
}
.icon-32-cloudDownload-mono:before {
    font-size: 32px;
    content: "\e94b";
}
.icon-32-cloudUpload-bold:before {
    font-size: 32px;
    content: "\e94c";
}
.icon-32-cloudUpload-mono:before {
    font-size: 32px;
    content: "\e94d";
}
.icon-32-cold-bold:before {
    font-size: 32px;
    content: "\e94e";
}
.icon-32-cold-mono:before {
    font-size: 32px;
    content: "\e94f";
}
.icon-32-comment-bold:before {
    font-size: 32px;
    content: "\e950";
}
.icon-32-comment-mono:before {
    font-size: 32px;
    content: "\e951";
}
.icon-32-community-bold:before {
    font-size: 32px;
    content: "\e952";
}
.icon-32-community-mono:before {
    font-size: 32px;
    content: "\e953";
}
.icon-32-compass-bold:before {
    font-size: 32px;
    content: "\e954";
}
.icon-32-compass-mono:before {
    font-size: 32px;
    content: "\e955";
}
.icon-32-contrast-bold:before {
    font-size: 32px;
    content: "\e956";
}
.icon-32-contrast-mono:before {
    font-size: 32px;
    content: "\e957";
}
.icon-32-creditCard-bold:before {
    font-size: 32px;
    content: "\e958";
}
.icon-32-creditCard-mono:before {
    font-size: 32px;
    content: "\e959";
}
.icon-32-crop-bold:before {
    font-size: 32px;
    content: "\e95a";
}
.icon-32-crop-mono:before {
    font-size: 32px;
    content: "\e95b";
}
.icon-32-customerApproved-bold:before {
    font-size: 32px;
    content: "\e95c";
}
.icon-32-customerApproved-mono:before {
    font-size: 32px;
    content: "\e95d";
}
.icon-32-cut-bold:before {
    font-size: 32px;
    content: "\e95e";
}
.icon-32-cut-mono:before {
    font-size: 32px;
    content: "\e95f";
}
.icon-32-dashboard-bold:before {
    font-size: 32px;
    content: "\e960";
}
.icon-32-dashboard-mono:before {
    font-size: 32px;
    content: "\e961";
}
.icon-32-data-bold:before {
    font-size: 32px;
    content: "\e962";
}
.icon-32-data-mono:before {
    font-size: 32px;
    content: "\e963";
}
.icon-32-database-ban-bold:before {
    font-size: 32px;
    content: "\e964";
}
.icon-32-database-ban-mono:before {
    font-size: 32px;
    content: "\e965";
}
.icon-32-database-default-bold:before {
    font-size: 32px;
    content: "\e966";
}
.icon-32-database-default-mono:before {
    font-size: 32px;
    content: "\e967";
}
.icon-32-database-lock-bold:before {
    font-size: 32px;
    content: "\e968";
}
.icon-32-database-lock-mono:before {
    font-size: 32px;
    content: "\e969";
}
.icon-32-database-minus-bold:before {
    font-size: 32px;
    content: "\e96a";
}
.icon-32-database-minus-mono:before {
    font-size: 32px;
    content: "\e96b";
}
.icon-32-database-plus-mono:before {
    font-size: 32px;
    content: "\e96c";
}
.icon-32-database-plus-bold:before {
    font-size: 32px;
    content: "\e96d";
}
.icon-32-delete-bold:before {
    font-size: 32px;
    content: "\e96e";
}
.icon-32-delete-mono:before {
    font-size: 32px;
    content: "\e96f";
}
.icon-32-direction-bold:before {
    font-size: 32px;
    content: "\e970";
}
.icon-32-direction-mono:before {
    font-size: 32px;
    content: "\e971";
}
.icon-32-divide-bold:before {
    font-size: 32px;
    content: "\e972";
}
.icon-32-divide-mono:before {
    font-size: 32px;
    content: "\e973";
}
.icon-32-docs-7z-bold:before {
    font-size: 32px;
    content: "\e974";
}
.icon-32-docs-7z-mono:before {
    font-size: 32px;
    content: "\e975";
}
.icon-32-docs-cat-bold:before {
    font-size: 32px;
    content: "\e976";
}
.icon-32-docs-cat-mono:before {
    font-size: 32px;
    content: "\e977";
}
.icon-32-docs-css-bold:before {
    font-size: 32px;
    content: "\e978";
}
.icon-32-docs-css-mono:before {
    font-size: 32px;
    content: "\e979";
}
.icon-32-docs-csv-bold:before {
    font-size: 32px;
    content: "\e97a";
}
.icon-32-docs-csv-mono:before {
    font-size: 32px;
    content: "\e97b";
}
.icon-32-docs-doc-bold:before {
    font-size: 32px;
    content: "\e97c";
}
.icon-32-docs-doc-mono:before {
    font-size: 32px;
    content: "\e97d";
}
.icon-32-docs-eps-bold:before {
    font-size: 32px;
    content: "\e97e";
}
.icon-32-docs-eps-mono:before {
    font-size: 32px;
    content: "\e97f";
}
.icon-32-docs-exe-bold:before {
    font-size: 32px;
    content: "\e980";
}
.icon-32-docs-exe-mono:before {
    font-size: 32px;
    content: "\e981";
}
.icon-32-docs-gif-bold:before {
    font-size: 32px;
    content: "\e982";
}
.icon-32-docs-gif-mono:before {
    font-size: 32px;
    content: "\e983";
}
.icon-32-docs-gz-bold:before {
    font-size: 32px;
    content: "\e984";
}
.icon-32-docs-gz-mono:before {
    font-size: 32px;
    content: "\e985";
}
.icon-32-docs-ics-bold:before {
    font-size: 32px;
    content: "\e986";
}
.icon-32-docs-ics-mono:before {
    font-size: 32px;
    content: "\e987";
}
.icon-32-docs-img-bold:before {
    font-size: 32px;
    content: "\e988";
}
.icon-32-docs-img-mono:before {
    font-size: 32px;
    content: "\e989";
}
.icon-32-docs-jpg-bold:before {
    font-size: 32px;
    content: "\e98a";
}
.icon-32-docs-jpg-mono:before {
    font-size: 32px;
    content: "\e98b";
}
.icon-32-docs-m4v-bold:before {
    font-size: 32px;
    content: "\e98c";
}
.icon-32-docs-m4v-mono:before {
    font-size: 32px;
    content: "\e98d";
}
.icon-32-docs-mp3-bold:before {
    font-size: 32px;
    content: "\e98e";
}
.icon-32-docs-mp3-mono:before {
    font-size: 32px;
    content: "\e98f";
}
.icon-32-docs-mp4-bold:before {
    font-size: 32px;
    content: "\e990";
}
.icon-32-docs-mp4-mono:before {
    font-size: 32px;
    content: "\e991";
}
.icon-32-docs-pdf-bold:before {
    font-size: 32px;
    content: "\e992";
}
.icon-32-docs-pdf-mono:before {
    font-size: 32px;
    content: "\e993";
}
.icon-32-docs-png-bold:before {
    font-size: 32px;
    content: "\e994";
}
.icon-32-docs-png-mono:before {
    font-size: 32px;
    content: "\e995";
}
.icon-32-docs-pps-bold:before {
    font-size: 32px;
    content: "\e996";
}
.icon-32-docs-pps-mono:before {
    font-size: 32px;
    content: "\e997";
}
.icon-32-docs-ppt-bold:before {
    font-size: 32px;
    content: "\e998";
}
.icon-32-docs-ppt-mono:before {
    font-size: 32px;
    content: "\e999";
}
.icon-32-docs-psd-bold:before {
    font-size: 32px;
    content: "\e99a";
}
.icon-32-docs-psd-mono:before {
    font-size: 32px;
    content: "\e99b";
}
.icon-32-docs-rar-bold:before {
    font-size: 32px;
    content: "\e99c";
}
.icon-32-docs-rar-mono:before {
    font-size: 32px;
    content: "\e99d";
}
.icon-32-docs-swf-bold:before {
    font-size: 32px;
    content: "\e99e";
}
.icon-32-docs-swf-mono:before {
    font-size: 32px;
    content: "\e99f";
}
.icon-32-docs-tar-bold:before {
    font-size: 32px;
    content: "\e9a0";
}
.icon-32-docs-tar-mono:before {
    font-size: 32px;
    content: "\e9a1";
}
.icon-32-docs-tgz-bold:before {
    font-size: 32px;
    content: "\e9a2";
}
.icon-32-docs-tgz-mono:before {
    font-size: 32px;
    content: "\e9a3";
}
.icon-32-docs-tif-bold:before {
    font-size: 32px;
    content: "\e9a4";
}
.icon-32-docs-tif-mono:before {
    font-size: 32px;
    content: "\e9a5";
}
.icon-32-docs-txt-bold:before {
    font-size: 32px;
    content: "\e9a6";
}
.icon-32-docs-txt-mono:before {
    font-size: 32px;
    content: "\e9a7";
}
.icon-32-docs-vcf-bold:before {
    font-size: 32px;
    content: "\e9a8";
}
.icon-32-docs-vcf-mono:before {
    font-size: 32px;
    content: "\e9a9";
}
.icon-32-docs-wmf-bold:before {
    font-size: 32px;
    content: "\e9aa";
}
.icon-32-docs-wmf-mono:before {
    font-size: 32px;
    content: "\e9ab";
}
.icon-32-docs-wmv-bold:before {
    font-size: 32px;
    content: "\e9ac";
}
.icon-32-docs-wmv-mono:before {
    font-size: 32px;
    content: "\e9ad";
}
.icon-32-docs-xls-bold:before {
    font-size: 32px;
    content: "\e9ae";
}
.icon-32-docs-xls-mono:before {
    font-size: 32px;
    content: "\e9af";
}
.icon-32-docs-xml-bold:before {
    font-size: 32px;
    content: "\e9b0";
}
.icon-32-docs-xml-mono:before {
    font-size: 32px;
    content: "\e9b1";
}
.icon-32-docs-zip-bold:before {
    font-size: 32px;
    content: "\e9b2";
}
.icon-32-docs-zip-mono:before {
    font-size: 32px;
    content: "\e9b3";
}
.icon-32-document-bold:before {
    font-size: 32px;
    content: "\e9b4";
}
.icon-32-document-mono:before {
    font-size: 32px;
    content: "\e9b5";
}
.icon-32-download-bold:before {
    font-size: 32px;
    content: "\e9b6";
}
.icon-32-download-mono:before {
    font-size: 32px;
    content: "\e9b7";
}
.icon-32-edit-alternate-bold:before {
    font-size: 32px;
    content: "\e9b8";
}
.icon-32-edit-alternate-mono:before {
    font-size: 32px;
    content: "\e9b9";
}
.icon-32-edit-default-bold:before {
    font-size: 32px;
    content: "\e9ba";
}
.icon-32-edit-default-mono:before {
    font-size: 32px;
    content: "\e9bb";
}
.icon-32-eject-bold:before {
    font-size: 32px;
    content: "\e9bc";
}
.icon-32-eject-mono:before {
    font-size: 32px;
    content: "\e9bd";
}
.icon-32-electricity-bold:before {
    font-size: 32px;
    content: "\e9be";
}
.icon-32-electricity-mono:before {
    font-size: 32px;
    content: "\e9bf";
}
.icon-32-email-add-bold:before {
    font-size: 32px;
    content: "\e9c0";
}
.icon-32-email-add-mono:before {
    font-size: 32px;
    content: "\e9c1";
}
.icon-32-email-asterisk-bold:before {
    font-size: 32px;
    content: "\e9c2";
}
.icon-32-email-asterisk-mono:before {
    font-size: 32px;
    content: "\e9c3";
}
.icon-32-email-default-bold:before {
    font-size: 32px;
    content: "\e9c4";
}
.icon-32-email-default-mono:before {
    font-size: 32px;
    content: "\e9c5";
}
.icon-32-email-enter-bold:before {
    font-size: 32px;
    content: "\e9c6";
}
.icon-32-email-enter-mono:before {
    font-size: 32px;
    content: "\e9c7";
}
.icon-32-email-exit-bold:before {
    font-size: 32px;
    content: "\e9c8";
}
.icon-32-email-exit-mono:before {
    font-size: 32px;
    content: "\e9c9";
}
.icon-32-email-flag-bold:before {
    font-size: 32px;
    content: "\e9ca";
}
.icon-32-email-flag-mono:before {
    font-size: 32px;
    content: "\e9cb";
}
.icon-32-email-lock-bold:before {
    font-size: 32px;
    content: "\e9cc";
}
.icon-32-email-lock-mono:before {
    font-size: 32px;
    content: "\e9cd";
}
.icon-32-email-open-bold:before {
    font-size: 32px;
    content: "\e9ce";
}
.icon-32-email-open-mono:before {
    font-size: 32px;
    content: "\e9cf";
}
.icon-32-email-prohibited-bold:before {
    font-size: 32px;
    content: "\e9d0";
}
.icon-32-email-prohibited-mono:before {
    font-size: 32px;
    content: "\e9d1";
}
.icon-32-email-remove-bold:before {
    font-size: 32px;
    content: "\e9d2";
}
.icon-32-email-remove-mono:before {
    font-size: 32px;
    content: "\e9d3";
}
.icon-32-enlarge-bold:before {
    font-size: 32px;
    content: "\e9d4";
}
.icon-32-enlarge-mono:before {
    font-size: 32px;
    content: "\e9d5";
}
.icon-32-externalLink-bold:before {
    font-size: 32px;
    content: "\e9d6";
}
.icon-32-externalLink-mono:before {
    font-size: 32px;
    content: "\e9d7";
}
.icon-32-fastBackward-bold:before {
    font-size: 32px;
    content: "\e9d8";
}
.icon-32-fastBackward-mono:before {
    font-size: 32px;
    content: "\e9d9";
}
.icon-32-fastFoward-bold:before {
    font-size: 32px;
    content: "\e9da";
}
.icon-32-fastFoward-mono:before {
    font-size: 32px;
    content: "\e9db";
}
.icon-32-favorites-bold:before {
    font-size: 32px;
    content: "\e9dc";
}
.icon-32-favorites-mono:before {
    font-size: 32px;
    content: "\e9dd";
}
.icon-32-film-bold:before {
    font-size: 32px;
    content: "\e9de";
}
.icon-32-film-mono:before {
    font-size: 32px;
    content: "\e9df";
}
.icon-32-filter-bold:before {
    font-size: 32px;
    content: "\e9e0";
}
.icon-32-filter-mono:before {
    font-size: 32px;
    content: "\e9e1";
}
.icon-32-firstPage-bold:before {
    font-size: 32px;
    content: "\e9e2";
}
.icon-32-firstPage-mono:before {
    font-size: 32px;
    content: "\e9e3";
}
.icon-32-flag-bold:before {
    font-size: 32px;
    content: "\e9e4";
}
.icon-32-flag-mono:before {
    font-size: 32px;
    content: "\e9e5";
}
.icon-32-focus-bold:before {
    font-size: 32px;
    content: "\e9e6";
}
.icon-32-focus-mono:before {
    font-size: 32px;
    content: "\e9e7";
}
.icon-32-folder-add-bold:before {
    font-size: 32px;
    content: "\e9e8";
}
.icon-32-folder-add-mono:before {
    font-size: 32px;
    content: "\e9e9";
}
.icon-32-folder-closed-bold:before {
    font-size: 32px;
    content: "\e9ea";
}
.icon-32-folder-closed-mono:before {
    font-size: 32px;
    content: "\e9eb";
}
.icon-32-folder-flag-bold:before {
    font-size: 32px;
    content: "\e9ec";
}
.icon-32-folder-flag-mono:before {
    font-size: 32px;
    content: "\e9ed";
}
.icon-32-folder-lock-bold:before {
    font-size: 32px;
    content: "\e9ee";
}
.icon-32-folder-lock-mono:before {
    font-size: 32px;
    content: "\e9ef";
}
.icon-32-folder-open-bold:before {
    font-size: 32px;
    content: "\e9f0";
}
.icon-32-folder-open-mono:before {
    font-size: 32px;
    content: "\e9f1";
}
.icon-32-folder-remove-bold:before {
    font-size: 32px;
    content: "\e9f2";
}
.icon-32-folder-remove-mono:before {
    font-size: 32px;
    content: "\e9f3";
}
.icon-32-foward-bold:before {
    font-size: 32px;
    content: "\e9f4";
}
.icon-32-foward-mono:before {
    font-size: 32px;
    content: "\e9f5";
}
.icon-32-funnel-bold:before {
    font-size: 32px;
    content: "\e9f6";
}
.icon-32-funnel-mono:before {
    font-size: 32px;
    content: "\e9f7";
}
.icon-32-gender-female-bold:before {
    font-size: 32px;
    content: "\e9f8";
}
.icon-32-gender-female-mono:before {
    font-size: 32px;
    content: "\e9f9";
}
.icon-32-gender-male-bold:before {
    font-size: 32px;
    content: "\e9fa";
}
.icon-32-gender-male-mono:before {
    font-size: 32px;
    content: "\e9fb";
}
.icon-32-gift-bold:before {
    font-size: 32px;
    content: "\e9fc";
}
.icon-32-gift-mono:before {
    font-size: 32px;
    content: "\e9fd";
}
.icon-32-global-mono:before {
    font-size: 32px;
    content: "\e9fe";
}
.icon-32-green-bold:before {
    font-size: 32px;
    content: "\e9ff";
}
.icon-32-green-mono:before {
    font-size: 32px;
    content: "\ea00";
}
.icon-32-gridView-bold:before {
    font-size: 32px;
    content: "\ea01";
}
.icon-32-gridView-mono:before {
    font-size: 32px;
    content: "\ea02";
}
.icon-32-hamburgerMenu-bold:before {
    font-size: 32px;
    content: "\ea03";
}
.icon-32-hamburgerMenu-mono:before {
    font-size: 32px;
    content: "\ea04";
}
.icon-32-hand-down-mono:before {
    font-size: 32px;
    content: "\ea05";
}
.icon-32-hand-left-mono:before {
    font-size: 32px;
    content: "\ea06";
}
.icon-32-hand-right-mono:before {
    font-size: 32px;
    content: "\ea07";
}
.icon-32-hand-up-mono:before {
    font-size: 32px;
    content: "\ea08";
}
.icon-32-home-bold:before {
    font-size: 32px;
    content: "\ea09";
}
.icon-32-home-mono:before {
    font-size: 32px;
    content: "\ea0a";
}
.icon-32-hot-bold:before {
    font-size: 32px;
    content: "\ea0b";
}
.icon-32-hot-mono:before {
    font-size: 32px;
    content: "\ea0c";
}
.icon-32-image-bold:before {
    font-size: 32px;
    content: "\ea0d";
}
.icon-32-image-mono:before {
    font-size: 32px;
    content: "\ea0e";
}
.icon-32-info-bold:before {
    font-size: 32px;
    content: "\ea0f";
}
.icon-32-info-mono:before {
    font-size: 32px;
    content: "\ea10";
}
.icon-32-iPhone-bold:before {
    font-size: 32px;
    content: "\ea11";
}
.icon-32-iPhone-mono:before {
    font-size: 32px;
    content: "\ea12";
}
.icon-32-justify-bold:before {
    font-size: 32px;
    content: "\ea13";
}
.icon-32-justify-mono:before {
    font-size: 32px;
    content: "\ea14";
}
.icon-32-key-bold:before {
    font-size: 32px;
    content: "\ea15";
}
.icon-32-key-mono:before {
    font-size: 32px;
    content: "\ea16";
}
.icon-32-lastPage-bold:before {
    font-size: 32px;
    content: "\ea17";
}
.icon-32-lastPage-mono:before {
    font-size: 32px;
    content: "\ea18";
}
.icon-32-lightbulb-bold:before {
    font-size: 32px;
    content: "\ea19";
}
.icon-32-lightbulb-mono:before {
    font-size: 32px;
    content: "\ea1a";
}
.icon-32-link-bold:before {
    font-size: 32px;
    content: "\ea1b";
}
.icon-32-link-mono:before {
    font-size: 32px;
    content: "\ea1c";
}
.icon-32-location-bold:before {
    font-size: 32px;
    content: "\ea1d";
}
.icon-32-location-mono:before {
    font-size: 32px;
    content: "\ea1e";
}
.icon-32-lock-closed-bold:before {
    font-size: 32px;
    content: "\ea1f";
}
.icon-32-lock-closed-mono:before {
    font-size: 32px;
    content: "\ea20";
}
.icon-32-lock-open-bold:before {
    font-size: 32px;
    content: "\ea21";
}
.icon-32-lock-open-mono:before {
    font-size: 32px;
    content: "\ea22";
}
.icon-32-logBook-bold:before {
    font-size: 32px;
    content: "\ea23";
}
.icon-32-logBook-mono:before {
    font-size: 32px;
    content: "\ea24";
}
.icon-32-magnetize-bold:before {
    font-size: 32px;
    content: "\ea25";
}
.icon-32-magnetize-mono:before {
    font-size: 32px;
    content: "\ea26";
}
.icon-32-measure-bold:before {
    font-size: 32px;
    content: "\ea27";
}
.icon-32-measure-mono:before {
    font-size: 32px;
    content: "\ea28";
}
.icon-32-minus-bold:before {
    font-size: 32px;
    content: "\ea29";
}
.icon-32-minus-mono:before {
    font-size: 32px;
    content: "\ea2a";
}
.icon-32-money-canadianDollar-bold:before {
    font-size: 32px;
    content: "\ea2b";
}
.icon-32-money-canadianDollar-mono:before {
    font-size: 32px;
    content: "\ea2c";
}
.icon-32-money-dollar-bold:before {
    font-size: 32px;
    content: "\ea2d";
}
.icon-32-money-dollar-mono:before {
    font-size: 32px;
    content: "\ea2e";
}
.icon-32-money-euro-bold:before {
    font-size: 32px;
    content: "\ea2f";
}
.icon-32-money-euro-mono:before {
    font-size: 32px;
    content: "\ea30";
}
.icon-32-money-pound-bold:before {
    font-size: 32px;
    content: "\ea31";
}
.icon-32-money-pound-mono:before {
    font-size: 32px;
    content: "\ea32";
}
.icon-32-monitor-bold:before {
    font-size: 32px;
    content: "\ea33";
}
.icon-32-monitor-mono:before {
    font-size: 32px;
    content: "\ea34";
}
.icon-32-moreHori-bold:before {
    font-size: 32px;
    content: "\ea35";
}
.icon-32-moreHori-mono:before {
    font-size: 32px;
    content: "\ea36";
}
.icon-32-moreVert-bold:before {
    font-size: 32px;
    content: "\ea37";
}
.icon-32-moreVert-mono:before {
    font-size: 32px;
    content: "\ea38";
}
.icon-32-moreWindows-bold:before {
    font-size: 32px;
    content: "\ea39";
}
.icon-32-moreWindows-mono:before {
    font-size: 32px;
    content: "\ea3a";
}
.icon-32-move-bold:before {
    font-size: 32px;
    content: "\ea3b";
}
.icon-32-move-mono:before {
    font-size: 32px;
    content: "\ea3c";
}
.icon-32-multiInstrument-bold:before {
    font-size: 32px;
    content: "\ea3d";
}
.icon-32-multiInstrument-mono:before {
    font-size: 32px;
    content: "\ea3e";
}
.icon-32-newWindow-bold:before {
    font-size: 32px;
    content: "\ea3f";
}
.icon-32-newWindow-mono:before {
    font-size: 32px;
    content: "\ea40";
}
.icon-32-note-bold:before {
    font-size: 32px;
    content: "\ea41";
}
.icon-32-note-mono:before {
    font-size: 32px;
    content: "\ea42";
}
.icon-32-pause-bold:before {
    font-size: 32px;
    content: "\ea43";
}
.icon-32-pause-mono:before {
    font-size: 32px;
    content: "\ea44";
}
.icon-32-phone-bold:before {
    font-size: 32px;
    content: "\ea45";
}
.icon-32-phone-mono:before {
    font-size: 32px;
    content: "\ea46";
}
.icon-32-phoneVolume-bold:before {
    font-size: 32px;
    content: "\ea47";
}
.icon-32-phoneVolume-mono:before {
    font-size: 32px;
    content: "\ea48";
}
.icon-32-pieChart-bold:before {
    font-size: 32px;
    content: "\ea49";
}
.icon-32-pieChart-mono:before {
    font-size: 32px;
    content: "\ea4a";
}
.icon-32-pin-bold:before {
    font-size: 32px;
    content: "\ea4b";
}
.icon-32-pin-mono:before {
    font-size: 32px;
    content: "\ea4c";
}
.icon-32-play-bold:before {
    font-size: 32px;
    content: "\ea4d";
}
.icon-32-play-mono:before {
    font-size: 32px;
    content: "\ea4e";
}
.icon-32-playButton-bold:before {
    font-size: 32px;
    content: "\ea4f";
}
.icon-32-playButton-mono:before {
    font-size: 32px;
    content: "\ea50";
}
.icon-32-plus-bold:before {
    font-size: 32px;
    content: "\ea51";
}
.icon-32-plus-mono:before {
    font-size: 32px;
    content: "\ea52";
}
.icon-32-power-bold:before {
    font-size: 32px;
    content: "\ea53";
}
.icon-32-power-mono:before {
    font-size: 32px;
    content: "\ea54";
}
.icon-32-print-bold:before {
    font-size: 32px;
    content: "\ea55";
}
.icon-32-print-mono:before {
    font-size: 32px;
    content: "\ea56";
}
.icon-32-profile-bold:before {
    font-size: 32px;
    content: "\ea57";
}
.icon-32-profile-mono:before {
    font-size: 32px;
    content: "\ea58";
}
.icon-32-profileAdd-bold:before {
    font-size: 32px;
    content: "\ea59";
}
.icon-32-profileAdd-mono:before {
    font-size: 32px;
    content: "\ea5a";
}
.icon-32-profileDelete-bold:before {
    font-size: 32px;
    content: "\ea5b";
}
.icon-32-profileDelete-mono:before {
    font-size: 32px;
    content: "\ea5c";
}
.icon-32-prohibited-bold:before {
    font-size: 32px;
    content: "\ea5d";
}
.icon-32-prohibited-mono:before {
    font-size: 32px;
    content: "\ea5e";
}
.icon-32-promotions-bold:before {
    font-size: 32px;
    content: "\ea5f";
}
.icon-32-promotions-mono:before {
    font-size: 32px;
    content: "\ea60";
}
.icon-32-pushPin-bold:before {
    font-size: 32px;
    content: "\ea61";
}
.icon-32-pushPin-mono:before {
    font-size: 32px;
    content: "\ea62";
}
.icon-32-qr-bold:before {
    font-size: 32px;
    content: "\ea63";
}
.icon-32-qr-mono:before {
    font-size: 32px;
    content: "\ea64";
}
.icon-32-quatationClose-bold:before {
    font-size: 32px;
    content: "\ea65";
}
.icon-32-quatationOpen-bold:before {
    font-size: 32px;
    content: "\ea66";
}
.icon-32-question-bold:before {
    font-size: 32px;
    content: "\ea67";
}
.icon-32-question-mono:before {
    font-size: 32px;
    content: "\ea68";
}
.icon-32-random-bold:before {
    font-size: 32px;
    content: "\ea69";
}
.icon-32-random-mono:before {
    font-size: 32px;
    content: "\ea6a";
}
.icon-32-rating-bold:before {
    font-size: 32px;
    content: "\ea6b";
}
.icon-32-rating-mono:before {
    font-size: 32px;
    content: "\ea6c";
}
.icon-32-recycle-bold:before {
    font-size: 32px;
    content: "\ea6d";
}
.icon-32-recycle-mono:before {
    font-size: 32px;
    content: "\ea6e";
}
.icon-32-refresh-bold:before {
    font-size: 32px;
    content: "\ea6f";
}
.icon-32-refresh-mono:before {
    font-size: 32px;
    content: "\ea70";
}
.icon-32-repeat-bold:before {
    font-size: 32px;
    content: "\ea71";
}
.icon-32-repeat-mono:before {
    font-size: 32px;
    content: "\ea72";
}
.icon-32-resizeLarge-bold:before {
    font-size: 32px;
    content: "\ea73";
}
.icon-32-resizeLarge-mono:before {
    font-size: 32px;
    content: "\ea74";
}
.icon-32-resizeSmall-bold:before {
    font-size: 32px;
    content: "\ea75";
}
.icon-32-resource-bold:before {
    font-size: 32px;
    content: "\ea76";
}
.icon-32-resizeSmall-mono:before {
    font-size: 32px;
    content: "\ea77";
}
.icon-32-resource-mono:before {
    font-size: 32px;
    content: "\ea78";
}
.icon-32-restart-bold:before {
    font-size: 32px;
    content: "\ea79";
}
.icon-32-restart-mono:before {
    font-size: 32px;
    content: "\ea7a";
}
.icon-32-return-bold:before {
    font-size: 32px;
    content: "\ea7b";
}
.icon-32-return-mono:before {
    font-size: 32px;
    content: "\ea7c";
}
.icon-32-reverseLeft-bold:before {
    font-size: 32px;
    content: "\ea7d";
}
.icon-32-reverseLeft-mono:before {
    font-size: 32px;
    content: "\ea7e";
}
.icon-32-reverseRight-bold:before {
    font-size: 32px;
    content: "\ea7f";
}
.icon-32-reverseRight-mono:before {
    font-size: 32px;
    content: "\ea80";
}
.icon-32-rewind-bold:before {
    font-size: 32px;
    content: "\ea81";
}
.icon-32-rewind-mono:before {
    font-size: 32px;
    content: "\ea82";
}
.icon-32-search-bold:before {
    font-size: 32px;
    content: "\ea83";
}
.icon-32-search-mono:before {
    font-size: 32px;
    content: "\ea84";
}
.icon-32-settings-alt-bold:before {
    font-size: 32px;
    content: "\ea85";
}
.icon-32-settings-alt-mono:before {
    font-size: 32px;
    content: "\ea86";
}
.icon-32-settings-bold:before {
    font-size: 32px;
    content: "\ea87";
}
.icon-32-settings-mono:before {
    font-size: 32px;
    content: "\ea88";
}
.icon-32-share-alt-bold:before {
    font-size: 32px;
    content: "\ea89";
}
.icon-32-share-alt-mono:before {
    font-size: 32px;
    content: "\ea8a";
}
.icon-32-share-bold:before {
    font-size: 32px;
    content: "\ea8b";
}
.icon-32-share-mono:before {
    font-size: 32px;
    content: "\ea8c";
}
.icon-32-shipping-bold:before {
    font-size: 32px;
    content: "\ea8d";
}
.icon-32-shipping-mono:before {
    font-size: 32px;
    content: "\ea8e";
}
.icon-32-signal-bold:before {
    font-size: 32px;
    content: "\ea8f";
}
.icon-32-signal-mono:before {
    font-size: 32px;
    content: "\ea90";
}
.icon-32-sleep-bold:before {
    font-size: 32px;
    content: "\ea91";
}
.icon-32-sleep-mono:before {
    font-size: 32px;
    content: "\ea92";
}
.icon-32-sortArrows-bold:before {
    font-size: 32px;
    content: "\ea93";
}
.icon-32-sortArrows-mono:before {
    font-size: 32px;
    content: "\ea94";
}
.icon-32-speaker-1-bold:before {
    font-size: 32px;
    content: "\ea95";
}
.icon-32-speaker-1-mono:before {
    font-size: 32px;
    content: "\ea96";
}
.icon-32-speaker-2-bold:before {
    font-size: 32px;
    content: "\ea97";
}
.icon-32-speaker-2-mono:before {
    font-size: 32px;
    content: "\ea98";
}
.icon-32-speaker-full-bold:before {
    font-size: 32px;
    content: "\ea99";
}
.icon-32-speaker-full-mono:before {
    font-size: 32px;
    content: "\ea9a";
}
.icon-32-speaker-off-bold:before {
    font-size: 32px;
    content: "\ea9b";
}
.icon-32-speaker-off-mono:before {
    font-size: 32px;
    content: "\ea9c";
}
.icon-32-stop-bold:before {
    font-size: 32px;
    content: "\ea9d";
}
.icon-32-stop-mono:before {
    font-size: 32px;
    content: "\ea9e";
}
.icon-32-stopwatch-bold:before {
    font-size: 32px;
    content: "\ea9f";
}
.icon-32-stopwatch-mono:before {
    font-size: 32px;
    content: "\eaa0";
}
.icon-32-success-bold:before {
    font-size: 32px;
    content: "\eaa1";
}
.icon-32-success-mono:before {
    font-size: 32px;
    content: "\eaa2";
}
.icon-32-support-bold:before {
    font-size: 32px;
    content: "\eaa3";
}
.icon-32-support-mono:before {
    font-size: 32px;
    content: "\eaa4";
}
.icon-32-table-bold:before {
    font-size: 32px;
    content: "\eaa5";
}
.icon-32-table-mono:before {
    font-size: 32px;
    content: "\eaa6";
}
.icon-32-tag-bold:before {
    font-size: 32px;
    content: "\eaa7";
}
.icon-32-tag-mono:before {
    font-size: 32px;
    content: "\eaa8";
}
.icon-32-techDocumentation-bold:before {
    font-size: 32px;
    content: "\eaa9";
}
.icon-32-techDocumentation-mono:before {
    font-size: 32px;
    content: "\eaaa";
}
.icon-32-thumbsDowon-bold:before {
    font-size: 32px;
    content: "\eaab";
}
.icon-32-thumbsDowon-mono:before {
    font-size: 32px;
    content: "\eaac";
}
.icon-32-thumbsUp-bold:before {
    font-size: 32px;
    content: "\eaad";
}
.icon-32-thumbsUp-mono:before {
    font-size: 32px;
    content: "\eaae";
}
.icon-32-tint-bold:before {
    font-size: 32px;
    content: "\eaaf";
}
.icon-32-tint-mono:before {
    font-size: 32px;
    content: "\eab0";
}
.icon-32-unreturn-bold:before {
    font-size: 32px;
    content: "\eab1";
}
.icon-32-unreturn-mono:before {
    font-size: 32px;
    content: "\eab2";
}
.icon-32-unshare-bold:before {
    font-size: 32px;
    content: "\eab3";
}
.icon-32-unshare-mono:before {
    font-size: 32px;
    content: "\eab4";
}
.icon-32-up-arrow-bold-copy .path1:before {
    font-size: 32px;
    content: "\eab5";
    color: rgb(34, 34, 34);
}
.icon-32-up-arrow-bold-copy .path2:before {
    font-size: 32px;
    content: "\eab6";
    margin-left: -1em;
    color: rgb(89, 141, 181);
}
.icon-32-up-arrow-bold-copy .path3:before {
    font-size: 32px;
    content: "\eab7";
    margin-left: -1em;
    color: rgb(255, 244, 109);
}
.icon-32-up-arrow-bold-copy .path4:before {
    font-size: 32px;
    content: "\eab8";
    margin-left: -1em;
    color: rgb(237, 28, 36);
}
.icon-32-up-arrow-bold-copy .path5:before {
    font-size: 32px;
    content: "\eab9";
    margin-left: -1em;
    color: rgb(255, 255, 255);
}
.icon-32-upload-bold:before {
    font-size: 32px;
    content: "\eaba";
}
.icon-32-upload-mono:before {
    font-size: 32px;
    content: "\eabb";
}
.icon-32-vcard-bold:before {
    font-size: 32px;
    content: "\eabc";
}
.icon-32-vcard-mono:before {
    font-size: 32px;
    content: "\eabd";
}
.icon-32-video-bold:before {
    font-size: 32px;
    content: "\eabe";
}
.icon-32-video-mono:before {
    font-size: 32px;
    content: "\eabf";
}
.icon-32-view-off-bold:before {
    font-size: 32px;
    content: "\eac0";
}
.icon-32-view-off-mono:before {
    font-size: 32px;
    content: "\eac1";
}
.icon-32-view-on-bold:before {
    font-size: 32px;
    content: "\eac2";
}
.icon-32-view-on-mono:before {
    font-size: 32px;
    content: "\eac3";
}
.icon-32-warning-bold:before {
    font-size: 32px;
    content: "\eac4";
}
.icon-32-warning-mono:before {
    font-size: 32px;
    content: "\eac5";
}
.icon-32-webinar-bold:before {
    font-size: 32px;
    content: "\eac6";
}
.icon-32-webinar-mono:before {
    font-size: 32px;
    content: "\eac7";
}
.icon-32-wireless-alt-bold:before {
    font-size: 32px;
    content: "\eac8";
}
.icon-32-wireless-bold:before {
    font-size: 32px;
    content: "\eac9";
}
.icon-32-wireless-mono:before {
    font-size: 32px;
    content: "\eaca";
}
.icon-32-zoomIn-bold:before {
    font-size: 32px;
    content: "\eacb";
}
.icon-32-zoomIn-mono:before {
    font-size: 32px;
    content: "\eacc";
}
.icon-32-zoomOut-bold:before {
    font-size: 32px;
    content: "\eacd";
}
.icon-32-zoomOut-mono:before {
    font-size: 32px;
    content: "\eace";
}





.icon-24-addressBook-bold:before {
    font-size: 24px;
    content: "\eacf";
}
.icon-24-addressBook-mono:before {
    font-size: 24px;
    content: "\ead0";
}
.icon-24-alert-bold:before {
    font-size: 24px;
    content: "\ead1";
}
.icon-24-alert-mono:before {
    font-size: 24px;
    content: "\ead2";
}
.icon-24-align-center-bold:before {
    font-size: 24px;
    content: "\ead3";
}
.icon-24-align-center-mono:before {
    font-size: 24px;
    content: "\ead4";
}
.icon-24-align-left-bold:before {
    font-size: 24px;
    content: "\ead5";
}
.icon-24-align-left-mono:before {
    font-size: 24px;
    content: "\ead6";
}
.icon-24-align-right-bold:before {
    font-size: 24px;
    content: "\ead7";
}
.icon-24-align-right-mono:before {
    font-size: 24px;
    content: "\ead8";
}
.icon-24-analyze-bold:before {
    font-size: 24px;
    content: "\ead9";
}
.icon-24-analyze-mono:before {
    font-size: 24px;
    content: "\eada";
}
.icon-24-arrow-down-bold:before {
    font-size: 24px;
    content: "\eadb";
}
.icon-24-arrow-down-mono:before {
    font-size: 24px;
    content: "\eadc";
}
.icon-24-arrow-left-bold:before {
    font-size: 24px;
    content: "\eadd";
}
.icon-24-arrow-left-mono:before {
    font-size: 24px;
    content: "\eade";
}
.icon-24-arrow-right-bold:before {
    font-size: 24px;
    content: "\eadf";
}
.icon-24-arrow-right-mono:before {
    font-size: 24px;
    content: "\eae0";
}
.icon-24-arrow-up-bold:before {
    font-size: 24px;
    content: "\eae1";
}
.icon-24-arrow-up-mono:before {
    font-size: 24px;
    content: "\eae2";
}
.icon-24-asterisk-bold:before {
    font-size: 24px;
    content: "\eae3";
}
.icon-24-asterisk-mono:before {
    font-size: 24px;
    content: "\eae4";
}
.icon-24-attachment-mono:before {
    font-size: 24px;
    content: "\eae5";
}
.icon-24-awake-bold:before {
    font-size: 24px;
    content: "\eae6";
}
.icon-24-awake-mono:before {
    font-size: 24px;
    content: "\eae7";
}
.icon-24-award-bold:before {
    font-size: 24px;
    content: "\eae8";
}
.icon-24-award-mono:before {
    font-size: 24px;
    content: "\eae9";
}
.icon-24-barcode-bold:before {
    font-size: 24px;
    content: "\eaea";
}
.icon-24-barcode-mono:before {
    font-size: 24px;
    content: "\eaeb";
}
.icon-24-bell-bold:before {
    font-size: 24px;
    content: "\eaec";
}
.icon-24-bell-mono:before {
    font-size: 24px;
    content: "\eaed";
}
.icon-24-bin-bold:before {
    font-size: 24px;
    content: "\eaee";
}
.icon-24-bin-mono:before {
    font-size: 24px;
    content: "\eaef";
}
.icon-24-bluetooth-mono:before {
    font-size: 24px;
    content: "\eaf0";
}
.icon-24-bookmark-bold:before {
    font-size: 24px;
    content: "\eaf1";
}
.icon-24-bookmark-mono:before {
    font-size: 24px;
    content: "\eaf2";
}
.icon-24-bulletedList-bold:before {
    font-size: 24px;
    content: "\eaf3";
}
.icon-24-bulletedList-mono:before {
    font-size: 24px;
    content: "\eaf4";
}
.icon-24-caculator-bold:before {
    font-size: 24px;
    content: "\eaf5";
}
.icon-24-caculator-mono:before {
    font-size: 24px;
    content: "\eaf6";
}
.icon-24-calendar-bold:before {
    font-size: 24px;
    content: "\eaf7";
}
.icon-24-calendar-mono:before {
    font-size: 24px;
    content: "\eaf8";
}
.icon-24-camera-bold:before {
    font-size: 24px;
    content: "\eaf9";
}
.icon-24-camera-mono:before {
    font-size: 24px;
    content: "\eafa";
}
.icon-24-cart-add-bold:before {
    font-size: 24px;
    content: "\eafb";
}
.icon-24-cart-add-mono:before {
    font-size: 24px;
    content: "\eafc";
}
.icon-24-cart-default-bold:before {
    font-size: 24px;
    content: "\eafd";
}
.icon-24-cart-default-mono:before {
    font-size: 24px;
    content: "\eafe";
}
.icon-24-cart-remove-bold:before {
    font-size: 24px;
    content: "\eaff";
}
.icon-24-cart-remove-mono:before {
    font-size: 24px;
    content: "\eb00";
}
.icon-24-catalog-bold:before {
    font-size: 24px;
    content: "\eb01";
}
.icon-24-catalog-mono:before {
    font-size: 24px;
    content: "\eb02";
}
.icon-24-chat-bold:before {
    font-size: 24px;
    content: "\eb03";
}
.icon-24-chat-mono:before {
    font-size: 24px;
    content: "\eb04";
}
.icon-24-checkedBox-bold:before {
    font-size: 24px;
    content: "\eb05";
}
.icon-24-checkedBox-mono:before {
    font-size: 24px;
    content: "\eb06";
}
.icon-24-checkmark-bold:before {
    font-size: 24px;
    content: "\eb07";
}
.icon-24-checkmark-mono:before {
    font-size: 24px;
    content: "\eb08";
}
.icon-24-chevron-down-bold:before {
    font-size: 24px;
    content: "\eb09";
}
.icon-24-chevron-down-mono:before {
    font-size: 24px;
    content: "\eb0a";
}
.icon-24-chevron-left-bold:before {
    font-size: 24px;
    content: "\eb0b";
}
.icon-24-chevron-left-mono:before {
    font-size: 24px;
    content: "\eb0c";
}
.icon-24-chevron-right-bold:before {
    font-size: 24px;
    content: "\eb0d";
}
.icon-24-chevron-right-mono:before {
    font-size: 24px;
    content: "\eb0e";
}
.icon-24-chevron-up-bold:before {
    font-size: 24px;
    content: "\eb0f";
}
.icon-24-chevron-up-mono:before {
    font-size: 24px;
    content: "\eb10";
}
.icon-24-clipboard-bold:before {
    font-size: 24px;
    content: "\eb11";
}
.icon-24-clipboard-mono:before {
    font-size: 24px;
    content: "\eb12";
}
.icon-24-clock-bold:before {
    font-size: 24px;
    content: "\eb13";
}
.icon-24-clock-mono:before {
    font-size: 24px;
    content: "\eb14";
}
.icon-24-close-bold:before {
    font-size: 24px;
    content: "\eb15";
}
.icon-24-close-mono:before {
    font-size: 24px;
    content: "\eb16";
}
.icon-24-cloud-bold:before { 	font-size: 24px;
    content: "\eb17";
}
.icon-24-cloud-mono:before { 	font-size: 24px;
    content: "\eb18";
}
.icon-24-cloudDownload-bold:before { 	font-size: 24px;
    content: "\eb19";
}
.icon-24-cloudDownload-mono:before { 	font-size: 24px;
    content: "\eb1a";
}
.icon-24-cloudUpload-bold:before { 	font-size: 24px;
    content: "\eb1b";
}
.icon-24-cloudUpload-mono:before { 	font-size: 24px;
    content: "\eb1c";
}
.icon-24-cold-bold:before { 	font-size: 24px;
    content: "\eb1d";
}
.icon-24-cold-mono:before { 	font-size: 24px;
    content: "\eb1e";
}
.icon-24-comment-bold:before { 	font-size: 24px;
    content: "\eb1f";
}
.icon-24-comment-mono:before { 	font-size: 24px;
    content: "\eb20";
}
.icon-24-community-bold:before { 	font-size: 24px;
    content: "\eb21";
}
.icon-24-community-mono:before { 	font-size: 24px;
    content: "\eb22";
}
.icon-24-compass-bold:before { 	font-size: 24px;
    content: "\eb23";
}
.icon-24-compass-mono:before { 	font-size: 24px;
    content: "\eb24";
}
.icon-24-contrast-bold:before { 	font-size: 24px;
    content: "\eb25";
}
.icon-24-contrast-mono:before { 	font-size: 24px;
    content: "\eb26";
}
.icon-24-creditCard-bold:before { 	font-size: 24px;
    content: "\eb27";
}
.icon-24-creditCard-mono:before { 	font-size: 24px;
    content: "\eb28";
}
.icon-24-crop-bold:before { 	font-size: 24px;
    content: "\eb29";
}
.icon-24-crop-mono:before { 	font-size: 24px;
    content: "\eb2a";
}
.icon-24-customerApproved-bold:before { 	font-size: 24px;
    content: "\eb2b";
}
.icon-24-customerApproved-mono:before { 	font-size: 24px;
    content: "\eb2c";
}
.icon-24-cut-bold:before { 	font-size: 24px;
    content: "\eb2d";
}
.icon-24-cut-mono:before { 	font-size: 24px;
    content: "\eb2e";
}
.icon-24-dashboard-bold:before { 	font-size: 24px;
    content: "\eb2f";
}
.icon-24-dashboard-mono:before { 	font-size: 24px;
    content: "\eb30";
}
.icon-24-data-bold:before { 	font-size: 24px;
    content: "\eb31";
}
.icon-24-data-mono:before { 	font-size: 24px;
    content: "\eb32";
}
.icon-24-database-ban-bold:before { 	font-size: 24px;
    content: "\eb33";
}
.icon-24-database-ban-mono:before { 	font-size: 24px;
    content: "\eb34";
}
.icon-24-database-default-bold:before { 	font-size: 24px;
    content: "\eb35";
}
.icon-24-database-default-mono:before { 	font-size: 24px;
    content: "\eb36";
}
.icon-24-database-lock-bold:before { 	font-size: 24px;
    content: "\eb37";
}
.icon-24-database-lock-mono:before { 	font-size: 24px;
    content: "\eb38";
}
.icon-24-database-minus-bold:before { 	font-size: 24px;
    content: "\eb39";
}
.icon-24-database-minus-mono:before { 	font-size: 24px;
    content: "\eb3a";
}
.icon-24-database-plus-bold:before { 	font-size: 24px;
    content: "\eb3b";
}
.icon-24-database-plus-mono:before { 	font-size: 24px;
    content: "\eb3c";
}
.icon-24-delete-bold:before { 	font-size: 24px;
    content: "\eb3d";
}
.icon-24-delete-mono:before { 	font-size: 24px;
    content: "\eb3e";
}
.icon-24-direction-bold:before { 	font-size: 24px;
    content: "\eb3f";
}
.icon-24-direction-mono:before { 	font-size: 24px;
    content: "\eb40";
}
.icon-24-divide-bold:before { 	font-size: 24px;
    content: "\eb41";
}
.icon-24-divide-mono:before { 	font-size: 24px;
    content: "\eb42";
}
.icon-24-docs-7z-bold:before { 	font-size: 24px;
    content: "\eb43";
}
.icon-24-docs-7z-mono:before { 	font-size: 24px;
    content: "\eb44";
}
.icon-24-docs-cat-bold:before { 	font-size: 24px;
    content: "\eb45";
}
.icon-24-docs-cat-mono:before { 	font-size: 24px;
    content: "\eb46";
}
.icon-24-docs-css-bold:before { 	font-size: 24px;
    content: "\eb47";
}
.icon-24-docs-css-mono:before { 	font-size: 24px;
    content: "\eb48";
}
.icon-24-docs-csv-bold:before { 	font-size: 24px;
    content: "\eb49";
}
.icon-24-docs-csv-mono:before { 	font-size: 24px;
    content: "\eb4a";
}
.icon-24-docs-doc-bold:before { 	font-size: 24px;
    content: "\eb4b";
}
.icon-24-docs-doc-mono:before { 	font-size: 24px;
    content: "\eb4c";
}
.icon-24-docs-eps-bold:before { 	font-size: 24px;
    content: "\eb4d";
}
.icon-24-docs-eps-mono:before { 	font-size: 24px;
    content: "\eb4e";
}
.icon-24-docs-exe-bold:before { 	font-size: 24px;
    content: "\eb4f";
}
.icon-24-docs-exe-mono:before { 	font-size: 24px;
    content: "\eb50";
}
.icon-24-docs-gif-bold:before { 	font-size: 24px;
    content: "\eb51";
}
.icon-24-docs-gif-mono:before { 	font-size: 24px;
    content: "\eb52";
}
.icon-24-docs-gz-bold:before { 	font-size: 24px;
    content: "\eb53";
}
.icon-24-docs-gz-mono:before { 	font-size: 24px;
    content: "\eb54";
}
.icon-24-docs-ics-bold:before { 	font-size: 24px;
    content: "\eb55";
}
.icon-24-docs-ics-mono:before { 	font-size: 24px;
    content: "\eb56";
}
.icon-24-docs-img-bold:before { 	font-size: 24px;
    content: "\eb57";
}
.icon-24-docs-img-mono:before { 	font-size: 24px;
    content: "\eb58";
}
.icon-24-docs-jpg-bold:before { 	font-size: 24px;
    content: "\eb59";
}
.icon-24-docs-jpg-mono:before { 	font-size: 24px;
    content: "\eb5a";
}
.icon-24-docs-m4v-bold:before { 	font-size: 24px;
    content: "\eb5b";
}
.icon-24-docs-m4v-mono:before { 	font-size: 24px;
    content: "\eb5c";
}
.icon-24-docs-mp3-bold:before { 	font-size: 24px;
    content: "\eb5d";
}
.icon-24-docs-mp3-mono:before { 	font-size: 24px;
    content: "\eb5e";
}
.icon-24-docs-mp4-bold:before { 	font-size: 24px;
    content: "\eb5f";
}
.icon-24-docs-mp4-mono:before { 	font-size: 24px;
    content: "\eb60";
}
.icon-24-docs-pdf-bold:before { 	font-size: 24px;
    content: "\eb61";
}
.icon-24-docs-pdf-mono:before { 	font-size: 24px;
    content: "\eb62";
}
.icon-24-docs-png-bold:before { 	font-size: 24px;
    content: "\eb63";
}
.icon-24-docs-png-mono:before { 	font-size: 24px;
    content: "\eb64";
}
.icon-24-docs-pps-bold:before { 	font-size: 24px;
    content: "\eb65";
}
.icon-24-docs-pps-mono:before { 	font-size: 24px;
    content: "\eb66";
}
.icon-24-docs-ppt-bold:before { 	font-size: 24px;
    content: "\eb67";
}
.icon-24-docs-ppt-mono:before { 	font-size: 24px;
    content: "\eb68";
}
.icon-24-docs-psd-bold:before { 	font-size: 24px;
    content: "\eb69";
}
.icon-24-docs-psd-mono:before { 	font-size: 24px;
    content: "\eb6a";
}
.icon-24-docs-rar-bold:before { 	font-size: 24px;
    content: "\eb6b";
}
.icon-24-docs-rar-mono:before { 	font-size: 24px;
    content: "\eb6c";
}
.icon-24-docs-swf-bold:before { 	font-size: 24px;
    content: "\eb6d";
}
.icon-24-docs-swf-mono:before { 	font-size: 24px;
    content: "\eb6e";
}
.icon-24-docs-tar-bold:before { 	font-size: 24px;
    content: "\eb6f";
}
.icon-24-docs-tar-mono:before { 	font-size: 24px;
    content: "\eb70";
}
.icon-24-docs-tgz-bold:before { 	font-size: 24px;
    content: "\eb71";
}
.icon-24-docs-tgz-mono:before { 	font-size: 24px;
    content: "\eb72";
}
.icon-24-docs-tif-bold:before { 	font-size: 24px;
    content: "\eb73";
}
.icon-24-docs-tif-mono:before { 	font-size: 24px;
    content: "\eb74";
}
.icon-24-docs-txt-bold:before { 	font-size: 24px;
    content: "\eb75";
}
.icon-24-docs-txt-mono:before { 	font-size: 24px;
    content: "\eb76";
}
.icon-24-docs-vcf-bold:before { 	font-size: 24px;
    content: "\eb77";
}
.icon-24-docs-vcf-mono:before { 	font-size: 24px;
    content: "\eb78";
}
.icon-24-docs-wmf-bold:before { 	font-size: 24px;
    content: "\eb79";
}
.icon-24-docs-wmf-mono:before { 	font-size: 24px;
    content: "\eb7a";
}
.icon-24-docs-wmv-bold:before { 	font-size: 24px;
    content: "\eb7b";
}
.icon-24-docs-wmv-mono:before { 	font-size: 24px;
    content: "\eb7c";
}
.icon-24-docs-xls-bold:before { 	font-size: 24px;
    content: "\eb7d";
}
.icon-24-docs-xls-mono:before { 	font-size: 24px;
    content: "\eb7e";
}
.icon-24-docs-xml-bold:before { 	font-size: 24px;
    content: "\eb7f";
}
.icon-24-docs-xml-mono:before { 	font-size: 24px;
    content: "\eb80";
}
.icon-24-docs-zip-bold:before { 	font-size: 24px;
    content: "\eb81";
}
.icon-24-docs-zip-mono:before { 	font-size: 24px;
    content: "\eb82";
}
.icon-24-document-bold:before { 	font-size: 24px;
    content: "\eb83";
}
.icon-24-document-mono:before { 	font-size: 24px;
    content: "\eb84";
}
.icon-24-download-bold:before { 	font-size: 24px;
    content: "\eb85";
}
.icon-24-download-mono:before { 	font-size: 24px;
    content: "\eb86";
}
.icon-24-edit-alternate-bold:before { 	font-size: 24px;
    content: "\eb87";
}
.icon-24-edit-alternate-mono:before { 	font-size: 24px;
    content: "\eb88";
}
.icon-24-edit-default-bold:before { 	font-size: 24px;
    content: "\eb89";
}
.icon-24-edit-default-mono:before { 	font-size: 24px;
    content: "\eb8a";
}
.icon-24-eject-bold:before { 	font-size: 24px;
    content: "\eb8b";
}
.icon-24-eject-mono:before { 	font-size: 24px;
    content: "\eb8c";
}
.icon-24-electricity-bold:before { 	font-size: 24px;
    content: "\eb8d";
}
.icon-24-electricity-mono:before { 	font-size: 24px;
    content: "\eb8e";
}
.icon-24-email-add-bold:before { 	font-size: 24px;
    content: "\eb8f";
}
.icon-24-email-add-mono:before { 	font-size: 24px;
    content: "\eb90";
}
.icon-24-email-asterisk-bold:before { 	font-size: 24px;
    content: "\eb91";
}
.icon-24-email-asterisk-mono:before { 	font-size: 24px;
    content: "\eb92";
}
.icon-24-email-default-bold:before { 	font-size: 24px;
    content: "\eb93";
}
.icon-24-email-default-mono:before { 	font-size: 24px;
    content: "\eb94";
}
.icon-24-email-enter-bold:before { 	font-size: 24px;
    content: "\eb95";
}
.icon-24-email-enter-mono:before { 	font-size: 24px;
    content: "\eb96";
}
.icon-24-email-exit-bold:before { 	font-size: 24px;
    content: "\eb97";
}
.icon-24-email-exit-mono:before { 	font-size: 24px;
    content: "\eb98";
}
.icon-24-email-flag-bold:before { 	font-size: 24px;
    content: "\eb99";
}
.icon-24-email-flag-mono:before { 	font-size: 24px;
    content: "\eb9a";
}
.icon-24-email-lock-bold:before { 	font-size: 24px;
    content: "\eb9b";
}
.icon-24-email-lock-mono:before { 	font-size: 24px;
    content: "\eb9c";
}
.icon-24-email-open-bold:before { 	font-size: 24px;
    content: "\eb9d";
}
.icon-24-email-open-mono:before { 	font-size: 24px;
    content: "\eb9e";
}
.icon-24-email-prohibited-bold:before { 	font-size: 24px;
    content: "\eb9f";
}
.icon-24-email-prohibited-mono:before { 	font-size: 24px;
    content: "\eba0";
}
.icon-24-email-remove-bold:before { 	font-size: 24px;
    content: "\eba1";
}
.icon-24-email-remove-mono:before { 	font-size: 24px;
    content: "\eba2";
}
.icon-24-enlarge-bold:before { 	font-size: 24px;
    content: "\eba3";
}
.icon-24-enlarge-mono:before { 	font-size: 24px;
    content: "\eba4";
}
.icon-24-externalLink-bold:before { 	font-size: 24px;
    content: "\eba5";
}
.icon-24-externalLink-mono:before { 	font-size: 24px;
    content: "\eba6";
}
.icon-24-fastBackward-bold:before {
    font-size: 24px;
    content: "\eba7";
}
.icon-24-fastBackward-mono:before {
    font-size: 24px;
    content: "\eba8";
}
.icon-24-fastFoward-bold:before {
    font-size: 24px;
    content: "\eba9";
}
.icon-24-fastFoward-mono:before {
    font-size: 24px;
    content: "\ebaa";
}
.icon-24-favorites-bold:before {
    font-size: 24px;
    content: "\ebab";
}
.icon-24-favorites-mono:before {
    font-size: 24px;
    content: "\ebac";
}
.icon-24-film-bold:before {
    font-size: 24px;
    content: "\ebad";
}
.icon-24-film-mono:before {
    font-size: 24px;
    content: "\ebae";
}
.icon-24-filter-bold:before {
    font-size: 24px;
    content: "\ebaf";
}
.icon-24-filter-mono:before {
    font-size: 24px;
    content: "\ebb0";
}
.icon-24-firstPage-bold:before {
    font-size: 24px;
    content: "\ebb1";
}
.icon-24-firstPage-mono:before {
    font-size: 24px;
    content: "\ebb2";
}
.icon-24-flag-bold:before {
    font-size: 24px;
    content: "\ebb3";
}
.icon-24-flag-mono:before {
    font-size: 24px;
    content: "\ebb4";
}
.icon-24-focus-bold:before {
    font-size: 24px;
    content: "\ebb5";
}
.icon-24-focus-mono:before {
    font-size: 24px;
    content: "\ebb6";
}
.icon-24-folder-add-bold:before {
    font-size: 24px;
    content: "\ebb7";
}
.icon-24-folder-add-mono:before {
    font-size: 24px;
    content: "\ebb8";
}
.icon-24-folder-closed-bold:before {
    font-size: 24px;
    content: "\ebb9";
}
.icon-24-folder-closed-mono:before {
    font-size: 24px;
    content: "\ebba";
}
.icon-24-folder-flag-bold:before {
    font-size: 24px;
    content: "\ebbb";
}
.icon-24-folder-flag-mono:before {
    font-size: 24px;
    content: "\ebbc";
}
.icon-24-folder-lock-bold:before {
    font-size: 24px;
    content: "\ebbd";
}
.icon-24-folder-lock-mono:before {
    font-size: 24px;
    content: "\ebbe";
}
.icon-24-folder-open-bold:before {
    font-size: 24px;
    content: "\ebbf";
}
.icon-24-folder-open-mono:before {
    font-size: 24px;
    content: "\ebc0";
}
.icon-24-folder-remove-bold:before {
    font-size: 24px;
    content: "\ebc1";
}
.icon-24-folder-remove-mono:before {
    font-size: 24px;
    content: "\ebc2";
}
.icon-24-foward-bold:before {
    font-size: 24px;
    content: "\ebc3";
}
.icon-24-foward-mono:before {
    font-size: 24px;
    content: "\ebc4";
}
.icon-24-funnel-bold:before {
    font-size: 24px;
    content: "\ebc5";
}
.icon-24-funnel-mono:before {
    font-size: 24px;
    content: "\ebc6";
}
.icon-24-gender-female-bold:before {
    font-size: 24px;
    content: "\ebc7";
}
.icon-24-gender-female-mono:before {
    font-size: 24px;
    content: "\ebc8";
}
.icon-24-gender-male-bold:before {
    font-size: 24px;
    content: "\ebc9";
}
.icon-24-gender-male-mono:before {
    font-size: 24px;
    content: "\ebca";
}
.icon-24-gift-bold:before {
    font-size: 24px;
    content: "\ebcb";
}
.icon-24-gift-mono:before {
    font-size: 24px;
    content: "\ebcc";
}
.icon-24-global-mono:before {
    font-size: 24px;
    content: "\ebcd";
}
.icon-24-green-bold:before {
    font-size: 24px;
    content: "\ebce";
}
.icon-24-green-mono:before {
    font-size: 24px;
    content: "\ebcf";
}
.icon-24-gridView-bold:before {
    font-size: 24px;
    content: "\ebd0";
}
.icon-24-gridView-mono:before {
    font-size: 24px;
    content: "\ebd1";
}
.icon-24-hamburgerMenu-bold:before {
    font-size: 24px;
    content: "\ebd2";
}
.icon-24-hamburgerMenu-mono:before {
    font-size: 24px;
    content: "\ebd3";
}
.icon-24-hand-down-mono:before {
    font-size: 24px;
    content: "\ebd4";
}
.icon-24-hand-left-mono:before {
    font-size: 24px;
    content: "\ebd5";
}
.icon-24-hand-right-mono:before {
    font-size: 24px;
    content: "\ebd6";
}
.icon-24-hand-up-mono:before {
    font-size: 24px;
    content: "\ebd7";
}
.icon-24-home-bold:before {
    font-size: 24px;
    content: "\ebd8";
}
.icon-24-home-mono:before {
    font-size: 24px;
    content: "\ebd9";
}
.icon-24-hot-bold:before {
    font-size: 24px;
    content: "\ebda";
}
.icon-24-hot-mono:before {
    font-size: 24px;
    content: "\ebdb";
}
.icon-24-image-bold:before {
    font-size: 24px;
    content: "\ebdc";
}
.icon-24-image-mono:before {
    font-size: 24px;
    content: "\ebdd";
}
.icon-24-info-bold:before {
    font-size: 24px;
    content: "\ebde";
}
.icon-24-info-mono:before {
    font-size: 24px;
    content: "\ebdf";
}
.icon-24-iPhone-bold:before {
    font-size: 24px;
    content: "\ebe0";
}
.icon-24-iPhone-mono:before {
    font-size: 24px;
    content: "\ebe1";
}
.icon-24-justify-bold:before {
    font-size: 24px;
    content: "\ebe2";
}
.icon-24-justify-mono:before {
    font-size: 24px;
    content: "\ebe3";
}
.icon-24-key-bold:before {
    font-size: 24px;
    content: "\ebe4";
}
.icon-24-key-mono:before {
    font-size: 24px;
    content: "\ebe5";
}
.icon-24-lastPage-bold:before {
    font-size: 24px;
    content: "\ebe6";
}
.icon-24-lastPage-mono:before {
    font-size: 24px;
    content: "\ebe7";
}
.icon-24-lightbulb-bold:before {
    font-size: 24px;
    content: "\ebe8";
}
.icon-24-lightbulb-mono:before {
    font-size: 24px;
    content: "\ebe9";
}
.icon-24-link-bold:before {
    font-size: 24px;
    content: "\ebea";
}
.icon-24-link-mono:before {
    font-size: 24px;
    content: "\ebeb";
}
.icon-24-location-bold:before {
    font-size: 24px;
    content: "\ebec";
}
.icon-24-location-mono:before {
    font-size: 24px;
    content: "\ebed";
}
.icon-24-lock-closed-bold:before {
    font-size: 24px;
    content: "\ebee";
}
.icon-24-lock-closed-mono:before {
    font-size: 24px;
    content: "\ebef";
}
.icon-24-lock-open-bold:before {
    font-size: 24px;
    content: "\ebf0";
}
.icon-24-lock-open-mono:before {
    font-size: 24px;
    content: "\ebf1";
}
.icon-24-logBook-bold:before {
    font-size: 24px;
    content: "\ebf2";
}
.icon-24-logBook-mono:before {
    font-size: 24px;
    content: "\ebf3";
}
.icon-24-magnetize-bold:before {
    font-size: 24px;
    content: "\ebf4";
}
.icon-24-magnetize-mono:before {
    font-size: 24px;
    content: "\ebf5";
}
.icon-24-measure-bold:before {
    font-size: 24px;
    content: "\ebf6";
}
.icon-24-measure-mono:before {
    font-size: 24px;
    content: "\ebf7";
}
.icon-24-minus-bold:before {
    font-size: 24px;
    content: "\ebf8";
}
.icon-24-minus-mono:before {
    font-size: 24px;
    content: "\ebf9";
}
.icon-24-money-canadianDollar-bold:before {
    font-size: 24px;
    content: "\ebfa";
}
.icon-24-money-canadianDollar-mono:before {
    font-size: 24px;
    content: "\ebfb";
}
.icon-24-money-dollar-bold:before {
    font-size: 24px;
    content: "\ebfc";
}
.icon-24-money-dollar-mono:before {
    font-size: 24px;
    content: "\ebfd";
}
.icon-24-money-euro-bold:before {
    font-size: 24px;
    content: "\ebfe";
}
.icon-24-money-euro-mono:before {
    font-size: 24px;
    content: "\ebff";
}
.icon-24-money-pound-bold:before {
    font-size: 24px;
    content: "\ec00";
}
.icon-24-money-pound-mono:before {
    font-size: 24px;
    content: "\ec01";
}
.icon-24-monitor-bold:before {
    font-size: 24px;
    content: "\ec02";
}
.icon-24-monitor-mono:before {
    font-size: 24px;
    content: "\ec03";
}
.icon-24-moreHori-bold:before {
    font-size: 24px;
    content: "\ec04";
}
.icon-24-moreHori-mono:before {
    font-size: 24px;
    content: "\ec05";
}
.icon-24-moreVert-bold:before {
    font-size: 24px;
    content: "\ec06";
}
.icon-24-moreVert-mono:before {
    font-size: 24px;
    content: "\ec07";
}
.icon-24-moreWindows-bold:before {
    font-size: 24px;
    content: "\ec08";
}
.icon-24-moreWindows-mono:before {
    font-size: 24px;
    content: "\ec09";
}
.icon-24-move-bold:before {
    font-size: 24px;
    content: "\ec0a";
}
.icon-24-move-mono:before {
    font-size: 24px;
    content: "\ec0b";
}
.icon-24-multiInstrument-bold:before {
    font-size: 24px;
    content: "\ec0c";
}
.icon-24-multiInstrument-mono:before {
    font-size: 24px;
    content: "\ec0d";
}
.icon-24-newWindow-bold_1:before {
    font-size: 24px;
    content: "\ec0e";
}
.icon-24-newWindow-bold:before {
    font-size: 24px;
    content: "\ec0f";
}
.icon-24-newWindow-mono_1:before {
    font-size: 24px;
    content: "\ec10";
}
.icon-24-newWindow-mono:before {
    font-size: 24px;
    content: "\ec11";
}
.icon-24-note-bold:before {
    font-size: 24px;
    content: "\ec12";
}
.icon-24-note-mono:before {
    font-size: 24px;
    content: "\ec13";
}
.icon-24-pause-bold:before {
    font-size: 24px;
    content: "\ec14";
}
.icon-24-pause-mono:before {
    font-size: 24px;
    content: "\ec15";
}
.icon-24-phone-bold:before {
    font-size: 24px;
    content: "\ec16";
}
.icon-24-phone-mono:before {
    font-size: 24px;
    content: "\ec17";
}
.icon-24-phoneVolume-bold:before {
    font-size: 24px;
    content: "\ec18";
}
.icon-24-phoneVolume-mono:before {
    font-size: 24px;
    content: "\ec19";
}
.icon-24-pieChart-bold:before {
    font-size: 24px;
    content: "\ec1a";
}
.icon-24-pieChart-mono:before {
    font-size: 24px;
    content: "\ec1b";
}
.icon-24-pin-bold:before {
    font-size: 24px;
    content: "\ec1c";
}
.icon-24-pin-mono:before {
    font-size: 24px;
    content: "\ec1d";
}
.icon-24-play-bold:before {
    font-size: 24px;
    content: "\ec1e";
}
.icon-24-play-mono:before {
    font-size: 24px;
    content: "\ec1f";
}
.icon-24-playButton-bold:before {
    font-size: 24px;
    content: "\ec20";
}
.icon-24-playButton-mono:before {
    font-size: 24px;
    content: "\ec21";
}
.icon-24-plus-bold:before {
    font-size: 24px;
    content: "\ec22";
}
.icon-24-plus-mono:before {
    font-size: 24px;
    content: "\ec23";
}
.icon-24-power-bold:before {
    font-size: 24px;
    content: "\ec24";
}
.icon-24-power-mono:before {
    font-size: 24px;
    content: "\ec25";
}
.icon-24-print-bold:before {
    font-size: 24px;
    content: "\ec26";
}
.icon-24-print-mono:before {
    font-size: 24px;
    content: "\ec27";
}
.icon-24-profile-bold:before {
    font-size: 24px;
    content: "\ec28";
}
.icon-24-profile-mono:before {
    font-size: 24px;
    content: "\ec29";
}
.icon-24-profileAdd-bold:before {
    font-size: 24px;
    content: "\ec2a";
}
.icon-24-profileAdd-mono:before {
    font-size: 24px;
    content: "\ec2b";
}
.icon-24-profileDelete-bold:before {
    font-size: 24px;
    content: "\ec2c";
}
.icon-24-profileDelete-mono:before {
    font-size: 24px;
    content: "\ec2d";
}
.icon-24-prohibited-bold:before {
    font-size: 24px;
    content: "\ec2e";
}
.icon-24-prohibited-mono:before {
    font-size: 24px;
    content: "\ec2f";
}
.icon-24-promotions-bold:before {
    font-size: 24px;
    content: "\ec30";
}
.icon-24-promotions-mono:before {
    font-size: 24px;
    content: "\ec31";
}
.icon-24-pushPin-bold:before {
    font-size: 24px;
    content: "\ec32";
}
.icon-24-pushPin-mono:before {
    font-size: 24px;
    content: "\ec33";
}
.icon-24-qr-bold:before {
    font-size: 24px;
    content: "\ec34";
}
.icon-24-qr-mono:before {
    font-size: 24px;
    content: "\ec35";
}
.icon-24-question-bold:before {
    font-size: 24px;
    content: "\ec36";
}
.icon-24-question-mono:before {
    font-size: 24px;
    content: "\ec37";
}
.icon-24-random-bold:before {
    font-size: 24px;
    content: "\ec38";
}
.icon-24-random-mono:before {
    font-size: 24px;
    content: "\ec39";
}
.icon-24-rating-bold:before {
    font-size: 24px;
    content: "\ec3a";
}
.icon-24-rating-mono:before {
    font-size: 24px;
    content: "\ec3b";
}
.icon-24-recycle-bold:before {
    font-size: 24px;
    content: "\ec3c";
}
.icon-24-recycle-mono:before {
    font-size: 24px;
    content: "\ec3d";
}
.icon-24-refresh-bold:before {
    font-size: 24px;
    content: "\ec3e";
}
.icon-24-refresh-mono:before {
    font-size: 24px;
    content: "\ec3f";
}
.icon-24-repeat-bold:before {
    font-size: 24px;
    content: "\ec40";
}
.icon-24-repeat-mono:before {
    font-size: 24px;
    content: "\ec41";
}
.icon-24-resizeLarge-bold:before {
    font-size: 24px;
    content: "\ec42";
}
.icon-24-resizeLarge-mono:before {
    font-size: 24px;
    content: "\ec43";
}
.icon-24-resizeSmall-bold:before {
    font-size: 24px;
    content: "\ec44";
}
.icon-24-resizeSmall-mono:before {
    font-size: 24px;
    content: "\ec45";
}
.icon-24-resource-bold:before {
    font-size: 24px;
    content: "\ec46";
}
.icon-24-resource-mono:before {
    font-size: 24px;
    content: "\ec47";
}
.icon-24-restart-bold:before {
    font-size: 24px;
    content: "\ec48";
}
.icon-24-restart-mono:before {
    font-size: 24px;
    content: "\ec49";
}
.icon-24-return-bold:before {
    font-size: 24px;
    content: "\ec4a";
}
.icon-24-return-mono:before {
    font-size: 24px;
    content: "\ec4b";
}
.icon-24-reverseLeft-bold:before {
    font-size: 24px;
    content: "\ec4c";
}
.icon-24-reverseLeft-mono:before {
    font-size: 24px;
    content: "\ec4d";
}
.icon-24-reverseRight-bold:before {
    font-size: 24px;
    content: "\ec4e";
}
.icon-24-reverseRight-mono:before {
    font-size: 24px;
    content: "\ec4f";
}
.icon-24-rewind-bold:before {
    font-size: 24px;
    content: "\ec50";
}
.icon-24-rewind-mono:before {
    font-size: 24px;
    content: "\ec51";
}
.icon-24-search-bold:before {
    font-size: 24px;
    content: "\ec52";
}
.icon-24-search-mono:before {
    font-size: 24px;
    content: "\ec53";
}
.icon-24-settings-alt-bold:before {
    font-size: 24px;
    content: "\ec54";
}
.icon-24-settings-alt-mono:before {
    font-size: 24px;
    content: "\ec55";
}
.icon-24-settings-bold:before {
    font-size: 24px;
    content: "\ec56";
}
.icon-24-settings-mono:before {
    font-size: 24px;
    content: "\ec57";
}
.icon-24-share-alt-bold:before {
    font-size: 24px;
    content: "\ec58";
}
.icon-24-share-alt-mono:before {
    font-size: 24px;
    content: "\ec59";
}
.icon-24-share-bold:before {
    font-size: 24px;
    content: "\ec5a";
}
.icon-24-share-mono:before {
    font-size: 24px;
    content: "\ec5b";
}
.icon-24-shipping-bold:before {
    font-size: 24px;
    content: "\ec5c";
}
.icon-24-shipping-mono:before {
    font-size: 24px;
    content: "\ec5d";
}
.icon-24-signal-bold:before {
    font-size: 24px;
    content: "\ec5e";
}
.icon-24-signal-mono:before {
    font-size: 24px;
    content: "\ec5f";
}
.icon-24-sleep-bold:before {
    font-size: 24px;
    content: "\ec60";
}
.icon-24-sleep-mono:before {
    font-size: 24px;
    content: "\ec61";
}
.icon-24-sortArrows-bold:before {
    font-size: 24px;
    content: "\ec62";
}
.icon-24-sortArrows-mono:before {
    font-size: 24px;
    content: "\ec63";
}
.icon-24-speaker-1-bold:before {
    font-size: 24px;
    content: "\ec64";
}
.icon-24-speaker-1-mono:before {
    font-size: 24px;
    content: "\ec65";
}
.icon-24-speaker-2-bold:before {
    font-size: 24px;
    content: "\ec66";
}
.icon-24-speaker-2-mono:before {
    font-size: 24px;
    content: "\ec67";
}
.icon-24-speaker-full-bold:before {
    font-size: 24px;
    content: "\ec68";
}
.icon-24-speaker-full-mono:before {
    font-size: 24px;
    content: "\ec69";
}
.icon-24-speaker-off-bold:before {
    font-size: 24px;
    content: "\ec6a";
}
.icon-24-speaker-off-mono:before {
    font-size: 24px;
    content: "\ec6b";
}
.icon-24-stop-bold:before {
    font-size: 24px;
    content: "\ec6c";
}
.icon-24-stop-mono:before {
    font-size: 24px;
    content: "\ec6d";
}
.icon-24-stopwatch-bold:before {
    font-size: 24px;
    content: "\ec6e";
}
.icon-24-stopwatch-mono:before {
    font-size: 24px;
    content: "\ec6f";
}
.icon-24-success-bold:before {
    font-size: 24px;
    content: "\ec70";
}
.icon-24-success-mono:before {
    font-size: 24px;
    content: "\ec71";
}
.icon-24-support-bold:before {
    font-size: 24px;
    content: "\ec72";
}
.icon-24-support-mono:before {
    font-size: 24px;
    content: "\ec73";
}
.icon-24-table-bold:before {
    font-size: 24px;
    content: "\ec74";
}
.icon-24-table-mono:before {
    font-size: 24px;
    content: "\ec75";
}
.icon-24-tag-bold:before {
    font-size: 24px;
    content: "\ec76";
}
.icon-24-tag-mono:before {
    font-size: 24px;
    content: "\ec77";
}
.icon-24-techDocumentation-bold:before {
    font-size: 24px;
    content: "\ec78";
}
.icon-24-techDocumentation-mono:before {
    font-size: 24px;
    content: "\ec79";
}
.icon-24-thumbsDowon-bold:before {
    font-size: 24px;
    content: "\ec7a";
}
.icon-24-thumbsDowon-mono:before {
    font-size: 24px;
    content: "\ec7b";
}
.icon-24-thumbsUp-bold:before {
    font-size: 24px;
    content: "\ec7c";
}
.icon-24-thumbsUp-mono:before {
    font-size: 24px;
    content: "\ec7d";
}
.icon-24-tint-bold:before {
    font-size: 24px;
    content: "\ec7e";
}
.icon-24-tint-mono:before {
    font-size: 24px;
    content: "\ec7f";
}
.icon-24-unreturn-bold:before {
    font-size: 24px;
    content: "\ec80";
}
.icon-24-unreturn-mono:before {
    font-size: 24px;
    content: "\ec81";
}
.icon-24-unshare-bold:before {
    font-size: 24px;
    content: "\ec82";
}
.icon-24-unshare-mono:before {
    font-size: 24px;
    content: "\ec83";
}
.icon-24-up-arrow-bold-copy1 .path1:before {
    font-size: 24px;
    content: "\ec84";
    color: rgb(89, 141, 181);
}
.icon-24-up-arrow-bold-copy1 .path2:before {
    font-size: 24px;
    content: "\ec85";
    margin-left: -1em;
    color: rgb(255, 255, 255);
}
.icon-24-up-arrow-bold-copy1 .path3:before {
    font-size: 24px;
    content: "\ec86";
    margin-left: -1em;
    color: rgb(255, 244, 109);
}
.icon-24-up-arrow-bold-copy1 .path4:before {
    font-size: 24px;
    content: "\ec87";
    margin-left: -1em;
    color: rgb(237, 28, 36);
}
.icon-24-up-arrow-bold-copy1 .path5:before {
    font-size: 24px;
    content: "\ec88";
    margin-left: -1em;
    color: rgb(34, 34, 34);
}
.icon-24-upload-bold:before {
    font-size: 24px;
    content: "\ec89";
}
.icon-24-upload-mono:before {
    font-size: 24px;
    content: "\ec8a";
}
.icon-24-vcard-bold:before {
    font-size: 24px;
    content: "\ec8b";
}
.icon-24-vcard-mono:before {
    font-size: 24px;
    content: "\ec8c";
}
.icon-24-video-bold:before {
    font-size: 24px;
    content: "\ec8d";
}
.icon-24-video-mono:before {
    font-size: 24px;
    content: "\ec8e";
}
.icon-24-view-off-bold:before {
    font-size: 24px;
    content: "\ec8f";
}
.icon-24-view-off-mono:before {
    font-size: 24px;
    content: "\ec90";
}
.icon-24-view-on-bold:before {
    font-size: 24px;
    content: "\ec91";
}
.icon-24-view-on-mono:before {
    font-size: 24px;
    content: "\ec92";
}
.icon-24-warning-bold:before {
    font-size: 24px;
    content: "\ec93";
}
.icon-24-warning-mono:before {
    font-size: 24px;
    content: "\ec94";
}
.icon-24-webinar-bold:before {
    font-size: 24px;
    content: "\ec95";
}
.icon-24-webinar-mono:before {
    font-size: 24px;
    content: "\ec96";
}
.icon-24-wireless-alt-bold:before {
    font-size: 24px;
    content: "\ec97";
}
.icon-24-wireless-alt-mono:before {
    font-size: 24px;
    content: "\ec98";
}
.icon-24-wireless-bold:before {
    font-size: 24px;
    content: "\ec99";
}
.icon-24-wireless-mono:before {
    font-size: 24px;
    content: "\ec9a";
}
.icon-24-zoomIn-bold:before {
    font-size: 24px;
    content: "\ec9b";
}
.icon-24-zoomIn-mono:before {
    font-size: 24px;
    content: "\ec9c";
}
.icon-24-zoomOut-bold:before {
    font-size: 24px;
    content: "\ec9d";
}
.icon-24-zoomOut-mono_1:before {
    font-size: 24px;
    content: "\ec9e";
}
.icon-24-zoomOut-mono:before {
    font-size: 24px;
    content: "\ec9f";
}



.icon-16-addressBook-bold:before { 	font-size: 16px;
    content: "\eca0";
}
.icon-16-addressBook-mono:before { 	font-size: 16px;
    content: "\eca1";
}
.icon-16-alert-bold:before { 	font-size: 16px;
    content: "\eca2";
}
.icon-16-alert-mono:before { 	font-size: 16px;
    content: "\eca3";
}
.icon-16-align-center-bold:before { 	font-size: 16px;
    content: "\eca4";
}
.icon-16-align-center-mono:before { 	font-size: 16px;
    content: "\eca5";
}
.icon-16-align-left-bold:before { 	font-size: 16px;
    content: "\eca6";
}
.icon-16-align-left-mono:before { 	font-size: 16px;
    content: "\eca7";
}
.icon-16-align-right-bold:before { 	font-size: 16px;
    content: "\eca8";
}
.icon-16-align-right-mono:before { 	font-size: 16px;
    content: "\eca9";
}
.icon-16-analyze-bold:before { 	font-size: 16px;
    content: "\ecaa";
}
.icon-24-arrow-down-bold:before { 	font-size: 16px;
    content: "\ecab";
}
.icon-16-arrow-down-mono:before { 	font-size: 16px;
    content: "\ecac";
}
.icon-16-arrow-left-bold:before { 	font-size: 16px;
    content: "\ecad";
}
.icon-24-arrow-left-mono:before { 	font-size: 16px;
    content: "\ecae";
}
.icon-16-arrow-right-bold:before { 	font-size: 16px;
    content: "\ecaf";
}
.icon-16-arrow-right-mono:before { 	font-size: 16px;
    content: "\ecb0";
}
.icon-16-arrow-up-bold:before { 	font-size: 16px;
    content: "\ecb1";
}
.icon-16-arrow-up-mono:before { 	font-size: 16px;
    content: "\ecb2";
}
.icon-16-asterisk-bold:before { 	font-size: 16px;
    content: "\ecb3";
}
.icon-16-asterisk-mono:before { 	font-size: 16px;
    content: "\ecb4";
}
.icon-16-awake-bold:before { 	font-size: 16px;
    content: "\ecb5";
}
.icon-16-awake-mono:before { 	font-size: 16px;
    content: "\ecb6";
}
.icon-16-award-bold:before { 	font-size: 16px;
    content: "\ecb7";
}
.icon-16-award-mono:before { 	font-size: 16px;
    content: "\ecb8";
}
.icon-16-barcode-bold:before { 	font-size: 16px;
    content: "\ecb9";
}
.icon-16-barcode-mono:before { 	font-size: 16px;
    content: "\ecba";
}
.icon-16-bell-bold:before { 	font-size: 16px;
    content: "\ecbb";
}
.icon-16-bell-mono:before { 	font-size: 16px;
    content: "\ecbc";
}
.icon-16-bin-bold:before { 	font-size: 16px;
    content: "\ecbd";
}
.icon-16-bin-mono:before { 	font-size: 16px;
    content: "\ecbe";
}
.icon-16-bluetooth-mono:before { 	font-size: 16px;
    content: "\ecbf";
}
.icon-16-bookmark-bold:before { 	font-size: 16px;
    content: "\ecc0";
}
.icon-16-bookmark-mono:before { 	font-size: 16px;
    content: "\ecc1";
}
.icon-16-bulletedList-bold:before { 	font-size: 16px;
    content: "\ecc2";
}
.icon-16-bulletedList-mono:before { 	font-size: 16px;
    content: "\ecc3";
}
.icon-16-caculator-bold:before { 	font-size: 16px;
    content: "\ecc4";
}
.icon-16-calendar-bold:before { 	font-size: 16px;
    content: "\ecc5";
}
.icon-16-calendar-mono:before { 	font-size: 16px;
    content: "\ecc6";
}
.icon-16-camera-bold:before { 	font-size: 16px;
    content: "\ecc7";
}
.icon-16-camera-mono:before { 	font-size: 16px;
    content: "\ecc8";
}
.icon-16-cart-add-bold:before { 	font-size: 16px;
    content: "\ecc9";
}
.icon-16-cart-add-mono:before { 	font-size: 16px;
    content: "\ecca";
}
.icon-16-cart-default-bold:before { 	font-size: 16px;
    content: "\eccb";
}
.icon-16-cart-default-mono:before { 	font-size: 16px;
    content: "\eccc";
}
.icon-16-cart-remove-bold:before { 	font-size: 16px;
    content: "\eccd";
}
.icon-16-cart-remove-mono:before { 	font-size: 16px;
    content: "\ecce";
}
.icon-16-catalog-bold:before { 	font-size: 16px;
    content: "\eccf";
}
.icon-16-catalog-mono:before { 	font-size: 16px;
    content: "\ecd0";
}
.icon-16-chat-bold:before { 	font-size: 16px;
    content: "\ecd1";
}
.icon-16-chat-mono:before { 	font-size: 16px;
    content: "\ecd2";
}
.icon-16-checkedBox-bold:before { 	font-size: 16px;
    content: "\ecd3";
}
.icon-16-checkedBox-mono:before { 	font-size: 16px;
    content: "\ecd4";
}
.icon-16-checkmark-bold:before { 	font-size: 16px;
    content: "\ecd5";
}
.icon-checkmark-mono:before { 	font-size: 16px;
    content: "\ecd6";
}
.icon-16-chevron-down-bold:before { 	font-size: 16px;
    content: "\ecd7";
}
.icon-16-chevron-down-mono:before { 	font-size: 16px;
    content: "\ecd8";
}
.icon-16-chevron-left-bold:before { 	font-size: 16px;
    content: "\ecd9";
}
.icon-16-chevron-left-mono:before { 	font-size: 16px;
    content: "\ecda";
}
.icon-16-chevron-right-bold:before { 	font-size: 16px;
    content: "\ecdb";
}
.icon-16-chevron-right-mono:before { 	font-size: 16px;
    content: "\ecdc";
}
.icon-16-chevron-up-bold:before { 	font-size: 16px;
    content: "\ecdd";
}
.icon-16-chevron-up-mono:before { 	font-size: 16px;
    content: "\ecde";
}
.icon-16-clipboard-bold:before { 	font-size: 16px;
    content: "\ecdf";
}
.icon-16-clipboard-mono:before { 	font-size: 16px;
    content: "\ece0";
}
.icon-16-clock-bold:before { 	font-size: 16px;
    content: "\ece1";
}
.icon-16-clock-mono:before { 	font-size: 16px;
    content: "\ece2";
}
.icon-16-close-bold:before { 	font-size: 16px;
    content: "\ece3";
}
.icon-16-close-mono:before { 	font-size: 16px;
    content: "\ece4";
}
.icon-16-cloud-bold:before { 	font-size: 16px;
    content: "\ece5";
}
.icon-16-cloud-mono:before { 	font-size: 16px;
    content: "\ece6";
}
.icon-16-cloudDownload-bold:before { 	font-size: 16px;
    content: "\ece7";
}
.icon-16-cloudDownload-mono:before { 	font-size: 16px;
    content: "\ece8";
}
.icon-16-cloudUpload-bold:before { 	font-size: 16px;
    content: "\ece9";
}
.icon-16-cloudUpload-mono:before { 	font-size: 16px;
    content: "\ecea";
}
.icon-16-cold-bold:before { 	font-size: 16px;
    content: "\eceb";
}
.icon-16-comment-bold:before { 	font-size: 16px;
    content: "\ecec";
}
.icon-16-comment-mono:before { 	font-size: 16px;
    content: "\eced";
}
.icon-16-community-bold:before { 	font-size: 16px;
    content: "\ecee";
}
.icon-16-community-mono:before { 	font-size: 16px;
    content: "\ecef";
}
.icon-16-compass-bold:before { 	font-size: 16px;
    content: "\ecf0";
}
.icon-16-compass-mono:before { 	font-size: 16px;
    content: "\ecf1";
}
.icon-16-contrast-bold:before { 	font-size: 16px;
    content: "\ecf2";
}
.icon-16-contrast-mono:before { 	font-size: 16px;
    content: "\ecf3";
}
.icon-16-creditCard-bold:before { 	font-size: 16px;
    content: "\ecf4";
}
.icon-16-creditCard-mono:before { 	font-size: 16px;
    content: "\ecf5";
}
.icon-16-crop-bold:before { 	font-size: 16px;
    content: "\ecf6";
}
.icon-16-crop-mono:before { 	font-size: 16px;
    content: "\ecf7";
}
.icon-16-customerApproved-bold:before { 	font-size: 16px;
    content: "\ecf8";
}
.icon-16-customerApproved-mono:before { 	font-size: 16px;
    content: "\ecf9";
}
.icon-16-cut-mono:before { 	font-size: 16px;
    content: "\ecfa";
}
.icon-16-dashboard-bold:before { 	font-size: 16px;
    content: "\ecfb";
}
.icon-16-dashboard-mono:before { 	font-size: 16px;
    content: "\ecfc";
}
.icon-16-data-bold:before { 	font-size: 16px;
    content: "\ecfd";
}
.icon-16-data-mono:before { 	font-size: 16px;
    content: "\ecfe";
}
.icon-16-database-ban-bold:before { 	font-size: 16px;
    content: "\ecff";
}
.icon-16-database-default-bold:before { 	font-size: 16px;
    content: "\ed00";
}
.icon-16-database-lock-bold:before { 	font-size: 16px;
    content: "\ed01";
}
.icon-16-database-minus-bold:before { 	font-size: 16px;
    content: "\ed02";
}
.icon-16-database-plus-bold:before { 	font-size: 16px;
    content: "\ed03";
}
.icon-16-database-plus-mono:before { 	font-size: 16px;
    content: "\ed04";
}
.icon-16-delete-bold:before { 	font-size: 16px;
    content: "\ed05";
}
.icon-16-delete-mono:before { 	font-size: 16px;
    content: "\ed06";
}
.icon-16-direction-bold:before { 	font-size: 16px;
    content: "\ed07";
}
.icon-16-direction-mono:before { 	font-size: 16px;
    content: "\ed08";
}
.icon-16-divide-bold:before { 	font-size: 16px;
    content: "\ed09";
}
.icon-16-divide-mono:before { 	font-size: 16px;
    content: "\ed0a";
}
.icon-16-docs-7z-bold:before { 	font-size: 16px;
    content: "\ed0b";
}
.icon-16-docs-7z-mono:before { 	font-size: 16px;
    content: "\ed0c";
}
.icon-16-docs-cat-bold:before { 	font-size: 16px;
    content: "\ed0d";
}
.icon-16-docs-cat-mono:before { 	font-size: 16px;
    content: "\ed0e";
}
.icon-16-docs-css-bold:before { 	font-size: 16px;
    content: "\ed0f";
}
.icon-16-docs-css-mono:before { 	font-size: 16px;
    content: "\ed10";
}
.icon-16-docs-csv-bold:before { 	font-size: 16px;
    content: "\ed11";
}
.icon-16-docs-csv-mono:before { 	font-size: 16px;
    content: "\ed12";
}
.icon-16-docs-doc-bold:before { 	font-size: 16px;
    content: "\ed13";
}
.icon-16-docs-doc-mono:before { 	font-size: 16px;
    content: "\ed14";
}
.icon-16-docs-eps-bold:before { 	font-size: 16px;
    content: "\ed15";
}
.icon-16-docs-eps-mono:before { 	font-size: 16px;
    content: "\ed16";
}
.icon-16-docs-exe-bold:before { 	font-size: 16px;
    content: "\ed17";
}
.icon-16-docs-exe-mono:before { 	font-size: 16px;
    content: "\ed18";
}
.icon-16-docs-gif-bold:before { 	font-size: 16px;
    content: "\ed19";
}
.icon-16-docs-gif-mono:before { 	font-size: 16px;
    content: "\ed1a";
}
.icon-16-docs-gz-bold:before { 	font-size: 16px;
    content: "\ed1b";
}
.icon-16-docs-gz-mono:before { 	font-size: 16px;
    content: "\ed1c";
}
.icon-16-docs-ics-bold:before { 	font-size: 16px;
    content: "\ed1d";
}
.icon-16-docs-ics-mono:before { 	font-size: 16px;
    content: "\ed1e";
}
.icon-16-docs-img-bold:before { 	font-size: 16px;
    content: "\ed1f";
}
.icon-16-docs-img-mono:before { 	font-size: 16px;
    content: "\ed20";
}
.icon-16-docs-jpg-bold:before { 	font-size: 16px;
    content: "\ed21";
}
.icon-16-docs-jpg-mono:before { 	font-size: 16px;
    content: "\ed22";
}
.icon-16-docs-m4v-bold:before { 	font-size: 16px;
    content: "\ed23";
}
.icon-16-docs-m4v-mono:before { 	font-size: 16px;
    content: "\ed24";
}
.icon-16-docs-mp3-bold:before { 	font-size: 16px;
    content: "\ed25";
}
.icon-16-docs-mp3-mono:before { 	font-size: 16px;
    content: "\ed26";
}
.icon-16-docs-mp4-bold:before { 	font-size: 16px;
    content: "\ed27";
}
.icon-16-docs-mp4-mono:before { 	font-size: 16px;
    content: "\ed28";
}
.icon-16-docs-pdf-bold:before { 	font-size: 16px;
    content: "\ed29";
}
.icon-16-docs-pdf-mono:before { 	font-size: 16px;
    content: "\ed2a";
}
.icon-16-docs-png-bold:before { 	font-size: 16px;
    content: "\ed2b";
}
.icon-16-docs-png-mono:before { 	font-size: 16px;
    content: "\ed2c";
}
.icon-16-docs-pps-bold:before { 	font-size: 16px;
    content: "\ed2d";
}
.icon-16-docs-pps-mono:before { 	font-size: 16px;
    content: "\ed2e";
}
.icon-16-docs-ppt-bold:before { 	font-size: 16px;
    content: "\ed2f";
}
.icon-16-docs-ppt-mono:before { 	font-size: 16px;
    content: "\ed30";
}
.icon-16-docs-psd-bold:before { 	font-size: 16px;
    content: "\ed31";
}
.icon-16-docs-psd-mono:before { 	font-size: 16px;
    content: "\ed32";
}
.icon-16-docs-rar-bold:before { 	font-size: 16px;
    content: "\ed33";
}
.icon-16-docs-rar-mono:before { 	font-size: 16px;
    content: "\ed34";
}
.icon-16-docs-swf-bold:before { 	font-size: 16px;
    content: "\ed35";
}
.icon-16-docs-swf-mono:before { 	font-size: 16px;
    content: "\ed36";
}
.icon-16-docs-tar-bold:before { 	font-size: 16px;
    content: "\ed37";
}
.icon-16-docs-tar-mono:before { 	font-size: 16px;
    content: "\ed38";
}
.icon-16-docs-tgz-bold:before { 	font-size: 16px;
    content: "\ed39";
}
.icon-16-docs-tgz-mono:before { 	font-size: 16px;
    content: "\ed3a";
}
.icon-16-docs-tif-bold:before { 	font-size: 16px;
    content: "\ed3b";
}
.icon-16-docs-tif-mono:before { 	font-size: 16px;
    content: "\ed3c";
}
.icon-16-docs-txt-bold:before { 	font-size: 16px;
    content: "\ed3d";
}
.icon-16-docs-txt-mono:before { 	font-size: 16px;
    content: "\ed3e";
}
.icon-16-docs-vcf-bold:before { 	font-size: 16px;
    content: "\ed3f";
}
.icon-16-docs-vcf-mono:before { 	font-size: 16px;
    content: "\ed40";
}
.icon-16-docs-wmf-bold:before { 	font-size: 16px;
    content: "\ed41";
}
.icon-16-docs-wmf-mono:before { 	font-size: 16px;
    content: "\ed42";
}
.icon-16-docs-wmv-bold:before { 	font-size: 16px;
    content: "\ed43";
}
.icon-16-docs-wmv-mono:before { 	font-size: 16px;
    content: "\ed44";
}
.icon-16-docs-xls-bold:before { 	font-size: 16px;
    content: "\ed45";
}
.icon-16-docs-xls-mono:before { 	font-size: 16px;
    content: "\ed46";
}
.icon-16-docs-xml-bold:before { 	font-size: 16px;
    content: "\ed47";
}
.icon-16-docs-xml-mono:before { 	font-size: 16px;
    content: "\ed48";
}
.icon-16-docs-zip-bold:before { 	font-size: 16px;
    content: "\ed49";
}
.icon-16-docs-zip-mono:before { 	font-size: 16px;
    content: "\ed4a";
}
.icon-16-document-bold:before { 	font-size: 16px;
    content: "\ed4b";
}
.icon-16-document-mono:before { 	font-size: 16px;
    content: "\ed4c";
}
.icon-16-download-bold:before { 	font-size: 16px;
    content: "\ed4d";
}
.icon-16-download-mono:before { 	font-size: 16px;
    content: "\ed4e";
}
.icon-16-edit-default-bold:before { 	font-size: 16px;
    content: "\ed4f";
}
.icon-16-edit-default-mono:before { 	font-size: 16px;
    content: "\ed50";
}
.icon-16-eject-bold:before { 	font-size: 16px;
    content: "\ed51";
}
.icon-16-eject-mono:before { 	font-size: 16px;
    content: "\ed52";
}
.icon-16-electricity-bold:before { 	font-size: 16px;
    content: "\ed53";
}
.icon-16-electricity-mono:before { 	font-size: 16px;
    content: "\ed54";
}
.icon-16-email-default-bold:before { 	font-size: 16px;
    content: "\ed55";
}
.icon-16-email-default-mono:before { 	font-size: 16px;
    content: "\ed56";
}
.icon-16-email-open-bold:before { 	font-size: 16px;
    content: "\ed57";
}
.icon-16-email-open-mono:before { 	font-size: 16px;
    content: "\ed58";
}
.icon-16-enlarge-bold:before { 	font-size: 16px;
    content: "\ed59";
}
.icon-16-enlarge-mono:before { 	font-size: 16px;
    content: "\ed5a";
}
.icon-16-externalLink-mono:before { 	font-size: 16px;
    content: "\ed5b";
}
.icon-16-fastBackward-bold:before { 	font-size: 16px;
    content: "\ed5c";
}
.icon-16-fastBackward-mono:before { 	font-size: 16px;
    content: "\ed5d";
}
.icon-16-fastFoward-bold:before { 	font-size: 16px;
    content: "\ed5e";
}
.icon-16-fastFoward-mono:before { 	font-size: 16px;
    content: "\ed5f";
}
.icon-16-favorites-bold:before { 	font-size: 16px;
    content: "\ed60";
}
.icon-16-favorites-mono:before { 	font-size: 16px;
    content: "\ed61";
}
.icon-16-film-bold:before { 	font-size: 16px;
    content: "\ed62";
}
.icon-16-film-mono:before { 	font-size: 16px;
    content: "\ed63";
}
.icon-16-filter-bold:before { 	font-size: 16px;
    content: "\ed64";
}
.icon-16-filter-mono:before { 	font-size: 16px;
    content: "\ed65";
}
.icon-16-firstPage-bold:before { 	font-size: 16px;
    content: "\ed66";
}
.icon-16-firstPage-mono:before { 	font-size: 16px;
    content: "\ed67";
}
.icon-16-flag-bold:before { 	font-size: 16px;
    content: "\ed68";
}
.icon-16-flag-mono:before { 	font-size: 16px;
    content: "\ed69";
}
.icon-16-focus-mono:before { 	font-size: 16px;
    content: "\ed6a";
}
.icon-16-folder-closed-bold:before { 	font-size: 16px;
    content: "\ed6b";
}
.icon-16-folder-closed-mono:before { 	font-size: 16px;
    content: "\ed6c";
}
.icon-16-folder-open-mono:before { 	font-size: 16px;
    content: "\ed6d";
}
.icon-16-forward-bold:before { 	font-size: 16px;
    content: "\ed6e";
}
.icon-16-forward-mono:before { 	font-size: 16px;
    content: "\ed6f";
}
.icon-16-funnel-bold:before { 	font-size: 16px;
    content: "\ed70";
}
.icon-16-funnel-mono:before { 	font-size: 16px;
    content: "\ed71";
}
.icon-16-gender-female-bold:before { 	font-size: 16px;
    content: "\ed72";
}
.icon-16-gender-female-mono:before { 	font-size: 16px;
    content: "\ed73";
}
.icon-16-gender-male-bold:before { 	font-size: 16px;
    content: "\ed74";
}
.icon-16-gender-male-mono:before { 	font-size: 16px;
    content: "\ed75";
}
.icon-16-gift-mono:before { 	font-size: 16px;
    content: "\ed76";
}
.icon-16-green-mono:before { 	font-size: 16px;
    content: "\ed77";
}
.icon-16-gridView-bold:before { 	font-size: 16px;
    content: "\ed78";
}
.icon-16-gridView-mono:before { 	font-size: 16px;
    content: "\ed79";
}
.icon-16-hamburgerMenu-bold:before { 	font-size: 16px;
    content: "\ed7a";
}
.icon-16-hamburgerMenu-mono:before { 	font-size: 16px;
    content: "\ed7b";
}
.icon-16-hand-down-mono:before { 	font-size: 16px;
    content: "\ed7c";
}
.icon-16-hand-left-mono:before { 	font-size: 16px;
    content: "\ed7d";
}
.icon-16-hand-right-mono:before { 	font-size: 16px;
    content: "\ed7e";
}
.icon-16-hand-up-mono:before { 	font-size: 16px;
    content: "\ed7f";
}
.icon-16-home-bold:before { 	font-size: 16px;
    content: "\ed80";
}
.icon-16-home-mono:before { 	font-size: 16px;
    content: "\ed81";
}
.icon-16-hot-bold:before { 	font-size: 16px;
    content: "\ed82";
}
.icon-16-hot-mono:before { 	font-size: 16px;
    content: "\ed83";
}
.icon-16-image-bold:before { 	font-size: 16px;
    content: "\ed84";
}
.icon-16-image-mono:before { 	font-size: 16px;
    content: "\ed85";
}
.icon-16-info-bold:before { 	font-size: 16px;
    content: "\ed86";
}
.icon-16-info-mono:before { 	font-size: 16px;
    content: "\ed87";
}
.icon-16-iPhone-bold:before { 	font-size: 16px;
    content: "\ed88";
}
.icon-16-key-bold:before { 	font-size: 16px;
    content: "\ed89";
}
.icon-16-key-mono:before { 	font-size: 16px;
    content: "\ed8a";
}
.icon-16-lastPage-bold:before { 	font-size: 16px;
    content: "\ed8b";
}
.icon-16-lastPage-mono:before { 	font-size: 16px;
    content: "\ed8c";
}
.icon-16-lightbulb-mono:before { 	font-size: 16px;
    content: "\ed8d";
}
.icon-16-link-mono:before { 	font-size: 16px;
    content: "\ed8e";
}
.icon-16-location-bold:before { 	font-size: 16px;
    content: "\ed8f";
}
.icon-16-location-mono:before { 	font-size: 16px;
    content: "\ed90";
}
.icon-16-lock-closed-bold:before { 	font-size: 16px;
    content: "\ed91";
}
.icon-16-lock-closed-mono:before { 	font-size: 16px;
    content: "\ed92";
}
.icon-16-lock-open-bold:before { 	font-size: 16px;
    content: "\ed93";
}
.icon-16-lock-open-mono:before { 	font-size: 16px;
    content: "\ed94";
}
.icon-16-logBook-bold:before { 	font-size: 16px;
    content: "\ed95";
}
.icon-16-magnetize-bold:before { 	font-size: 16px;
    content: "\ed96";
}
.icon-16-magnetize-mono:before { 	font-size: 16px;
    content: "\ed97";
}
.icon-16-measure-bold:before { 	font-size: 16px;
    content: "\ed98";
}
.icon-16-measure-mono:before { 	font-size: 16px;
    content: "\ed99";
}
.icon-16-minus-bold:before { 	font-size: 16px;
    content: "\ed9a";
}
.icon-16-minus-mono:before { 	font-size: 16px;
    content: "\ed9b";
}
.icon-16-money-canadianDollar-bold:before { 	font-size: 16px;
    content: "\ed9c";
}
.icon-16-money-dollar-bold:before { 	font-size: 16px;
    content: "\ed9d";
}
.icon-16-money-euro-bold:before { 	font-size: 16px;
    content: "\ed9e";
}
.icon-16-money-pound-bold:before { 	font-size: 16px;
    content: "\ed9f";
}
.icon-16-money-pound-mono:before { 	font-size: 16px;
    content: "\eda0";
}
.icon-16-monitor-bold:before { 	font-size: 16px;
    content: "\eda1";
}
.icon-16-monitor-mono:before { 	font-size: 16px;
    content: "\eda2";
}
.icon-16-moreHori-bold:before { 	font-size: 16px;
    content: "\eda3";
}
.icon-16-moreHori-mono:before { 	font-size: 16px;
    content: "\eda4";
}
.icon-16-moreVert-bold:before { 	font-size: 16px;
    content: "\eda5";
}
.icon-16-moreVert-mono:before { 	font-size: 16px;
    content: "\eda6";
}
.icon-16-moreWindows-bold:before { 	font-size: 16px;
    content: "\eda7";
}
.icon-16-moreWindows-mono:before { 	font-size: 16px;
    content: "\eda8";
}
.icon-16-move-mono:before { 	font-size: 16px;
    content: "\eda9";
}
.icon-16-multiInstrument-bold:before { 	font-size: 16px;
    content: "\edaa";
}
.icon-16-multiInstrument-mono:before { 	font-size: 16px;
    content: "\edab";
}
.icon-16-newWindow-bold:before { 	font-size: 16px;
    content: "\edac";
}
.icon-16-newWindow-mono:before { 	font-size: 16px;
    content: "\edad";
}
.icon-16-note-mono:before { 	font-size: 16px;
    content: "\edae";
}
.icon-16-pause-bold:before { 	font-size: 16px;
    content: "\edaf";
}
.icon-16-pause-mono:before { 	font-size: 16px;
    content: "\edb0";
}
.icon-16-phone-bold:before { 	font-size: 16px;
    content: "\edb1";
}
.icon-16-phoneVolume-bold:before { 	font-size: 16px;
    content: "\edb2";
}
.icon-16-pieChart-bold:before { 	font-size: 16px;
    content: "\edb3";
}
.icon-16-pieChart-mono:before { 	font-size: 16px;
    content: "\edb4";
}
.icon-16-pin-bold:before { 	font-size: 16px;
    content: "\edb5";
}
.icon-16-pin-mono:before { 	font-size: 16px;
    content: "\edb6";
}
.icon-16-play-bold:before { 	font-size: 16px;
    content: "\edb7";
}
.icon-16-play-mono:before { 	font-size: 16px;
    content: "\edb8";
}
.icon-16-playButton-bold:before { 	font-size: 16px;
    content: "\edb9";
}
.icon-16-playButton-mono:before { 	font-size: 16px;
    content: "\edba";
}
.icon-16-plus-bold:before { 	font-size: 16px;
    content: "\edbb";
}
.icon-16-plus-mono:before { 	font-size: 16px;
    content: "\edbc";
}
.icon-16-power-bold:before { 	font-size: 16px;
    content: "\edbd";
}
.icon-16-power-mono:before { 	font-size: 16px;
    content: "\edbe";
}
.icon-16-print-bold:before { 	font-size: 16px;
    content: "\edbf";
}
.icon-16-print-mono:before { 	font-size: 16px;
    content: "\edc0";
}
.icon-16-profile-bold:before { 	font-size: 16px;
    content: "\edc1";
}
.icon-16-profile-mono:before { 	font-size: 16px;
    content: "\edc2";
}
.icon-16-profileAdd-bold:before { 	font-size: 16px;
    content: "\edc3";
}
.icon-16-profileAdd-mono:before { 	font-size: 16px;
    content: "\edc4";
}
.icon-16-profileDelete-bold:before { 	font-size: 16px;
    content: "\edc5";
}
.icon-16-profileDelete-mono:before { 	font-size: 16px;
    content: "\edc6";
}
.icon-16-prohibited-bold:before { 	font-size: 16px;
    content: "\edc7";
}
.icon-16-prohibited-mono:before { 	font-size: 16px;
    content: "\edc8";
}
.icon-16-promotions-bold:before { 	font-size: 16px;
    content: "\edc9";
}
.icon-16-promotions-mono:before { 	font-size: 16px;
    content: "\edca";
}
.icon-16-pushPin-bold:before { 	font-size: 16px;
    content: "\edcb";
}
.icon-16-qr-bold:before { 	font-size: 16px;
    content: "\edcc";
}
.icon-16-qr-mono:before { 	font-size: 16px;
    content: "\edcd";
}
.icon-16-question-bold:before { 	font-size: 16px;
    content: "\edce";
}
.icon-16-question-mono:before { 	font-size: 16px;
    content: "\edcf";
}
.icon-16-random-bold:before { 	font-size: 16px;
    content: "\edd0";
}
.icon-16-random-mono:before { 	font-size: 16px;
    content: "\edd1";
}
.icon-16-rating-bold:before { 	font-size: 16px;
    content: "\edd2";
}
.icon-16-recycle-bold:before { 	font-size: 16px;
    content: "\edd3";
}
.icon-16-recycle-mono:before { 	font-size: 16px;
    content: "\edd4";
}
.icon-16-refresh-bold:before { 	font-size: 16px;
    content: "\edd5";
}
.icon-16-refresh-mono:before { 	font-size: 16px;
    content: "\edd6";
}
.icon-16-repeat-bold:before { 	font-size: 16px;
    content: "\edd7";
}
.icon-16-repeat-mono:before { 	font-size: 16px;
    content: "\edd8";
}
.icon-16-resizeLarge-bold:before { 	font-size: 16px;
    content: "\edd9";
}
.icon-16-resizeLarge-mono:before { 	font-size: 16px;
    content: "\edda";
}
.icon-16-resizeSmall-bold:before { 	font-size: 16px;
    content: "\eddb";
}
.icon-16-resizeSmall-mono:before { 	font-size: 16px;
    content: "\eddc";
}
.icon-16-resource-bold:before { 	font-size: 16px;
    content: "\eddd";
}
.icon-16-restart-bold:before { 	font-size: 16px;
    content: "\edde";
}
.icon-16-restart-mono:before { 	font-size: 16px;
    content: "\eddf";
}
.icon-16-return-bold:before { 	font-size: 16px;
    content: "\ede0";
}
.icon-16-return-mono:before { 	font-size: 16px;
    content: "\ede1";
}
.icon-16-reverseLeft-mono:before { 	font-size: 16px;
    content: "\ede2";
}
.icon-16-reverseRight-mono:before { 	font-size: 16px;
    content: "\ede3";
}
.icon-16-rewind-bold:before { 	font-size: 16px;
    content: "\ede4";
}
.icon-16-rewind-mono:before { 	font-size: 16px;
    content: "\ede5";
}
.icon-16-search-bold:before { 	font-size: 16px;
    content: "\ede6";
}
.icon-16-search-mono:before { 	font-size: 16px;
    content: "\ede7";
}
.icon-settings-alt-bold:before { 	font-size: 16px;
    content: "\ede8";
}
.icon-16-settings-alt-mono:before { 	font-size: 16px;
    content: "\ede9";
}
.icon-16-settings-bold:before { 	font-size: 16px;
    content: "\edea";
}
.icon-16-settings-mono:before { 	font-size: 16px;
    content: "\edeb";
}
.icon-16-share-alt-mono:before { 	font-size: 16px;
    content: "\edec";
}
.icon-16-share-bold:before { 	font-size: 16px;
    content: "\eded";
}
.icon-16-share-mono:before { 	font-size: 16px;
    content: "\edee";
}
.icon-16-shipping-bold:before { 	font-size: 16px;
    content: "\edef";
}
.icon-16-signal-bold:before { 	font-size: 16px;
    content: "\edf0";
}
.icon-16-signal-mono:before { 	font-size: 16px;
    content: "\edf1";
}
.icon-16-sleep-bold:before { 	font-size: 16px;
    content: "\edf2";
}
.icon-16-sortArrows-bold:before { 	font-size: 16px;
    content: "\edf3";
}
.icon-16-sortArrows-mono:before { 	font-size: 16px;
    content: "\edf4";
}
.icon-16-speaker-1-bold:before { 	font-size: 16px;
    content: "\edf5";
}
.icon-16-speaker-1-mono:before { 	font-size: 16px;
    content: "\edf6";
}
.icon-16-speaker-2-bold:before { 	font-size: 16px;
    content: "\edf7";
}
.icon-16-speaker-2-mono:before { 	font-size: 16px;
    content: "\edf8";
}
.icon-16-speaker-full-bold:before { 	font-size: 16px;
    content: "\edf9";
}
.icon-16-speaker-full-mono:before { 	font-size: 16px;
    content: "\edfa";
}
.icon-16-speaker-off-bold:before { 	font-size: 16px;
    content: "\edfb";
}
.icon-16-speaker-off-mono:before { 	font-size: 16px;
    content: "\edfc";
}
.icon-16-stop-bold:before { 	font-size: 16px;
    content: "\edfd";
}
.icon-16-stop-mono:before { 	font-size: 16px;
    content: "\edfe";
}
.icon-16-stopwatch-bold:before { 	font-size: 16px;
    content: "\edff";
}
.icon-16-stopwatch-mono:before { 	font-size: 16px;
    content: "\ee00";
}
.icon-16-success-bold:before { 	font-size: 16px;
    content: "\ee01";
}
.icon-16-success-mono:before { 	font-size: 16px;
    content: "\ee02";
}
.icon-16-support-bold:before { 	font-size: 16px;
    content: "\ee03";
}
.icon-16-table-bold:before { 	font-size: 16px;
    content: "\ee04";
}
.icon-16-table-mono:before { 	font-size: 16px;
    content: "\ee05";
}
.icon-16-tag-bold:before { 	font-size: 16px;
    content: "\ee06";
}
.icon-16-tag-mono:before { 	font-size: 16px;
    content: "\ee07";
}
.icon-16-techDocumentation-bold:before { 	font-size: 16px;
    content: "\ee08";
}
.icon-16-thumbsDowon-bold:before { 	font-size: 16px;
    content: "\ee09";
}
.icon-16-thumbsUp-bold:before { 	font-size: 16px;
    content: "\ee0a";
}
.icon-16-tint-bold:before { 	font-size: 16px;
    content: "\ee0b";
}
.icon-16-tint-mono:before { 	font-size: 16px;
    content: "\ee0c";
}
.icon-16-unreturn-bold:before { 	font-size: 16px;
    content: "\ee0d";
}
.icon-16-unreturn-mono:before { 	font-size: 16px;
    content: "\ee0e";
}
.icon-16-unshare-bold:before { 	font-size: 16px;
    content: "\ee0f";
}
.icon-16-unshare-mono:before { 	font-size: 16px;
    content: "\ee10";
}
.icon-16-up-arrow-bold-copy2 .path1:before { 	font-size: 16px;
    content: "\ee11";
    color: rgb(255, 244, 109);
}
.icon-16-up-arrow-bold-copy2 .path2:before { 	font-size: 16px;
    content: "\ee12";
    margin-left: -1em;
    color: rgb(89, 141, 181);
}
.icon-16-up-arrow-bold-copy2 .path3:before { 	font-size: 16px;
    content: "\ee13";
    margin-left: -1em;
    color: rgb(255, 255, 255);
}
.icon-16-up-arrow-bold-copy2 .path4:before { 	font-size: 16px;
    content: "\ee14";
    margin-left: -1em;
    color: rgb(237, 28, 36);
}
.icon-16-up-arrow-bold-copy2 .path5:before { 	font-size: 16px;
    content: "\ee15";
    margin-left: -1em;
    color: rgb(34, 34, 34);
}
.icon-16-upload-bold:before { 	font-size: 16px;
    content: "\ee16";
}
.icon-16-upload-mono:before { 	font-size: 16px;
    content: "\ee17";
}
.icon-16-vcard-bold:before { 	font-size: 16px;
    content: "\ee18";
}
.icon-16-vcard-mono:before { 	font-size: 16px;
    content: "\ee19";
}
.icon-16-video-bold:before { 	font-size: 16px;
    content: "\ee1a";
}
.icon-16-video-mono:before { 	font-size: 16px;
    content: "\ee1b";
}
.icon-16-view-off-mono:before { 	font-size: 16px;
    content: "\ee1c";
}
.icon-16-view-on-mono:before { 	font-size: 16px;
    content: "\ee1d";
}
.icon-16-warning-bold:before { 	font-size: 16px;
    content: "\ee1e";
}
.icon-16-webinar-bold:before { 	font-size: 16px;
    content: "\ee1f";
}
.icon-16-webinar-mono:before { 	font-size: 16px;
    content: "\ee20";
}
.icon-16-wireless-alt-bold:before { 	font-size: 16px;
    content: "\ee21";
}
.icon-16-wireless-bold:before { 	font-size: 16px;
    content: "\ee22";
}
.icon-16-zoomIn-bold:before { 	font-size: 16px;
    content: "\ee23";
}
.icon-16-zoomIn-mono:before { 	font-size: 16px;
    content: "\ee24";
}
.icon-16-zoomOut-mono:before { 	font-size: 16px;
    content: "\ee25";
}
.icon-16-zoomOut-bold:before { 	font-size: 16px;
    content: "\ee26";
}
.icon-8-alert:before {
    font-size: 8px;
    content: "\ee27";
}
.icon-8-arrow-down:before {
    font-size: 8px;
    content: "\ee28";
}
.icon-8-arrow-left:before {
    font-size: 8px;
    content: "\ee29";
}
.icon-8-arrow-right:before {
    font-size: 8px;
    content: "\ee2a";
}
.icon-8-arrow-up:before {
    font-size: 8px;
    content: "\ee2b";
}
.icon-8-caret-down:before {
    font-size: 8px;
    content: "\ee2c";
}
.icon-8-caret-left:before {
    font-size: 8px;
    content: "\ee2d";
}
.icon-8-caret-right:before {
    font-size: 8px;
    content: "\ee2e";
}
.icon-8-caret-up:before {
    font-size: 8px;
    content: "\ee2f";
}
.icon-8-checkmark:before {
    font-size: 8px;
    content: "\ee30";
}
.icon-8-chevron-down:before {
    font-size: 8px;
    content: "\ee31";
}
.icon-8-chevron-left:before {
    font-size: 8px;
    content: "\ee32";
}
.icon-8-chevron-right:before {
    font-size: 8px;
    content: "\ee33";
}
.icon-8-chevron-up:before {
    font-size: 8px;
    content: "\ee34";
}
.icon-8-close:before {
    font-size: 8px;
    content: "\ee35";
}
.icon-8-download:before {
    font-size: 8px;
    content: "\ee36";
}
.icon-8-eject:before {
    font-size: 8px;
    content: "\ee37";
}
.icon-8-fastBackward:before {
    content: "\ee38";
    font-size: 8px;
}
.icon-8-fastFoward:before {
    font-size: 8px;
    content: "\ee39";
}
.icon-8-favorites:before {
    font-size: 8px;
    content: "\ee3a";
}
.icon-8-film:before {
    font-size: 8px;
    content: "\ee3b";
}
.icon-8-foward:before {
    font-size: 8px;
    content: "\ee3c";
}
.icon-8-info:before {
    font-size: 8px;
    content: "\ee3d";
}
.icon-8-lastPage:before {
    font-size: 8px;
    content: "\ee3e";
}
.icon-8-lastPage:before {
    font-size: 8px;
    content: "\ee3f";
}
.icon-8-minus:before {
    font-size: 8px;
    content: "\ee40";
}
.icon-8-moreHori:before {
    font-size: 8px;
    content: "\ee41";
}
.icon-8-moreVert:before {
    font-size: 8px;
    content: "\ee42";
}
.icon-8-pause:before {
    font-size: 8px;
    content: "\ee43";
}
.icon-8-play:before {
    font-size: 8px;
    content: "\ee44";
}
.icon-8-plus:before {
    font-size: 8px;
    content: "\ee45";
}
.icon-8-question:before {
    font-size: 8px;
    content: "\ee46";
}
.icon-8-rating:before {
    font-size: 8px;
    content: "\ee47";
}
.icon-8-sortArrows:before {
    font-size: 8px;
    content: "\ee48";
}
.icon-8-stop-bold:before {
    font-size: 8px;
    content: "\ee49";
}
.icon-8-stop-mono:before {
    font-size: 8px;
    content: "\ee4a";
}
.icon-8-upload:before {
    font-size: 8px;
    content: "\ee4b";
}
@media print {
  body.path-onelambda * {
    -webkit-print-color-adjust: exact !important;
  }
  body.path-onelambda a[href]:after {
    display: none;
  }
  body.path-onelambda a[title]:after {
    display: none;
  }
  body.path-onelambda .heroimage {
    display: block;
  }
  body.path-onelambda #commercial-nav-inner,
  body.path-onelambda #header-login-container,
  body.path-onelambda #technical-support-container,
  body.path-onelambda #ol-footer-nav-row,
  body.path-onelambda #onelambda-newsletter-box {
    display: none !important;
  }
  body.path-onelambda #commercial-nav-wrapper {
    position: relative !important;
  }
  body.path-onelambda .root > .aem-Grid > .onelambda_header + .responsivegrid {
    margin-top: 0 !important;
  }
  body.path-onelambda .accordion-btn-head-wrapper {
    page-break-inside: avoid;
  }
}

.m-0 {
	margin: 0 !important;
}

.m-1 {
	margin: 0.25rem !important;
}

.m-2 {
	margin: 0.5rem !important;
}

.m-3 {
	margin: 1rem !important;
}

.m-4 {
	margin: 1.5rem !important;
}

.m-5 {
	margin: 3rem !important;
}

.m-auto {
	margin: auto !important;
}

.mx-0 {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.mx-1 {
	margin-right: 0.25rem !important;
	margin-left: 0.25rem !important;
}

.mx-2 {
	margin-right: 0.5rem !important;
	margin-left: 0.5rem !important;
}

.mx-3 {
	margin-right: 1rem !important;
	margin-left: 1rem !important;
}

.mx-4 {
	margin-right: 1.5rem !important;
	margin-left: 1.5rem !important;
}

.mx-5 {
	margin-right: 3rem !important;
	margin-left: 3rem !important;
}

.mx-auto {
	margin-right: auto !important;
	margin-left: auto !important;
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.my-1 {
	margin-top: 0.25rem !important;
	margin-bottom: 0.25rem !important;
}

.my-2 {
	margin-top: 0.5rem !important;
	margin-bottom: 0.5rem !important;
}

.my-3 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

.my-4 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

.my-5 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}

.my-auto {
	margin-top: auto !important;
	margin-bottom: auto !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-3 {
	margin-top: 1rem !important;
}

.mt-4 {
	margin-top: 1.5rem !important;
}

.mt-5 {
	margin-top: 3rem !important;
}

.mt-auto {
	margin-top: auto !important;
}

.me-0 {
	margin-right: 0 !important;
}

.me-1 {
	margin-right: 0.25rem !important;
}

.me-2 {
	margin-right: 0.5rem !important;
}

.me-3 {
	margin-right: 1rem !important;
}

.me-4 {
	margin-right: 1.5rem !important;
}

.me-5 {
	margin-right: 3rem !important;
}

.me-auto {
	margin-right: auto !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 0.25rem !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 1rem !important;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

.mb-5 {
	margin-bottom: 3rem !important;
}

.mb-auto {
	margin-bottom: auto !important;
}

.ms-0 {
	margin-left: 0 !important;
}

.ms-1 {
	margin-left: 0.25rem !important;
}

.ms-2 {
	margin-left: 0.5rem !important;
}

.ms-3 {
	margin-left: 1rem !important;
}

.ms-4 {
	margin-left: 1.5rem !important;
}

.ms-5 {
	margin-left: 3rem !important;
}

.ms-auto {
	margin-left: auto !important;
}

.p-0 {
	padding: 0 !important;
}

.p-1 {
	padding: 0.25rem !important;
}

.p-2 {
	padding: 0.5rem !important;
}

.p-3 {
	padding: 1rem !important;
}

.p-4 {
	padding: 1.5rem !important;
}

.p-5 {
	padding: 3rem !important;
}

.px-0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.px-1 {
	padding-right: 0.25rem !important;
	padding-left: 0.25rem !important;
}

.px-2 {
	padding-right: 0.5rem !important;
	padding-left: 0.5rem !important;
}

.px-3 {
	padding-right: 1rem !important;
	padding-left: 1rem !important;
}

.px-4 {
	padding-right: 1.5rem !important;
	padding-left: 1.5rem !important;
}

.px-5 {
	padding-right: 3rem !important;
	padding-left: 3rem !important;
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.py-1 {
	padding-top: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}

.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}

.py-3 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.py-5 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pt-1 {
	padding-top: 0.25rem !important;
}

.pt-2 {
	padding-top: 0.5rem !important;
}

.pt-3 {
	padding-top: 1rem !important;
}

.pt-4 {
	padding-top: 1.5rem !important;
}

.pt-5 {
	padding-top: 3rem !important;
}

.pe-0 {
	padding-right: 0 !important;
}

.pe-1 {
	padding-right: 0.25rem !important;
}

.pe-2 {
	padding-right: 0.5rem !important;
}

.pe-3 {
	padding-right: 1rem !important;
}

.pe-4 {
	padding-right: 1.5rem !important;
}

.pe-5 {
	padding-right: 3rem !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pb-1 {
	padding-bottom: 0.25rem !important;
}

.pb-2 {
	padding-bottom: 0.5rem !important;
}

.pb-3 {
	padding-bottom: 1rem !important;
}

.pb-4 {
	padding-bottom: 1.5rem !important;
}

.pb-5 {
	padding-bottom: 3rem !important;
}

.ps-0 {
	padding-left: 0 !important;
}

.ps-1 {
	padding-left: 0.25rem !important;
}

.ps-2 {
	padding-left: 0.5rem !important;
}

.ps-3 {
	padding-left: 1rem !important;
}

.ps-4 {
	padding-left: 1.5rem !important;
}

.ps-5 {
	padding-left: 3rem !important;
}

@media (min-width: 576px) {
	.m-sm-0 {
		margin: 0 !important;
	}

	.m-sm-1 {
		margin: 0.25rem !important;
	}

	.m-sm-2 {
		margin: 0.5rem !important;
	}

	.m-sm-3 {
		margin: 1rem !important;
	}

	.m-sm-4 {
		margin: 1.5rem !important;
	}

	.m-sm-5 {
		margin: 3rem !important;
	}

	.m-sm-auto {
		margin: auto !important;
	}

	.mx-sm-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.mx-sm-1 {
		margin-right: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-sm-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.5rem !important;
	}

	.mx-sm-3 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}

	.mx-sm-4 {
		margin-right: 1.5rem !important;
		margin-left: 1.5rem !important;
	}

	.mx-sm-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}

	.mx-sm-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.my-sm-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.my-sm-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-sm-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.my-sm-3 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.my-sm-4 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.my-sm-5 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.my-sm-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.mt-sm-0 {
		margin-top: 0 !important;
	}

	.mt-sm-1 {
		margin-top: 0.25rem !important;
	}

	.mt-sm-2 {
		margin-top: 0.5rem !important;
	}

	.mt-sm-3 {
		margin-top: 1rem !important;
	}

	.mt-sm-4 {
		margin-top: 1.5rem !important;
	}

	.mt-sm-5 {
		margin-top: 3rem !important;
	}

	.mt-sm-auto {
		margin-top: auto !important;
	}

	.me-sm-0 {
		margin-right: 0 !important;
	}

	.me-sm-1 {
		margin-right: 0.25rem !important;
	}

	.me-sm-2 {
		margin-right: 0.5rem !important;
	}

	.me-sm-3 {
		margin-right: 1rem !important;
	}

	.me-sm-4 {
		margin-right: 1.5rem !important;
	}

	.me-sm-5 {
		margin-right: 3rem !important;
	}

	.me-sm-auto {
		margin-right: auto !important;
	}

	.mb-sm-0 {
		margin-bottom: 0 !important;
	}

	.mb-sm-1 {
		margin-bottom: 0.25rem !important;
	}

	.mb-sm-2 {
		margin-bottom: 0.5rem !important;
	}

	.mb-sm-3 {
		margin-bottom: 1rem !important;
	}

	.mb-sm-4 {
		margin-bottom: 1.5rem !important;
	}

	.mb-sm-5 {
		margin-bottom: 3rem !important;
	}

	.mb-sm-auto {
		margin-bottom: auto !important;
	}

	.ms-sm-0 {
		margin-left: 0 !important;
	}

	.ms-sm-1 {
		margin-left: 0.25rem !important;
	}

	.ms-sm-2 {
		margin-left: 0.5rem !important;
	}

	.ms-sm-3 {
		margin-left: 1rem !important;
	}

	.ms-sm-4 {
		margin-left: 1.5rem !important;
	}

	.ms-sm-5 {
		margin-left: 3rem !important;
	}

	.ms-sm-auto {
		margin-left: auto !important;
	}

	.p-sm-0 {
		padding: 0 !important;
	}

	.p-sm-1 {
		padding: 0.25rem !important;
	}

	.p-sm-2 {
		padding: 0.5rem !important;
	}

	.p-sm-3 {
		padding: 1rem !important;
	}

	.p-sm-4 {
		padding: 1.5rem !important;
	}

	.p-sm-5 {
		padding: 3rem !important;
	}

	.px-sm-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.px-sm-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-sm-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.px-sm-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.px-sm-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.px-sm-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.py-sm-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.py-sm-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-sm-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.py-sm-3 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.py-sm-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.py-sm-5 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.pt-sm-0 {
		padding-top: 0 !important;
	}

	.pt-sm-1 {
		padding-top: 0.25rem !important;
	}

	.pt-sm-2 {
		padding-top: 0.5rem !important;
	}

	.pt-sm-3 {
		padding-top: 1rem !important;
	}

	.pt-sm-4 {
		padding-top: 1.5rem !important;
	}

	.pt-sm-5 {
		padding-top: 3rem !important;
	}

	.pe-sm-0 {
		padding-right: 0 !important;
	}

	.pe-sm-1 {
		padding-right: 0.25rem !important;
	}

	.pe-sm-2 {
		padding-right: 0.5rem !important;
	}

	.pe-sm-3 {
		padding-right: 1rem !important;
	}

	.pe-sm-4 {
		padding-right: 1.5rem !important;
	}

	.pe-sm-5 {
		padding-right: 3rem !important;
	}

	.pb-sm-0 {
		padding-bottom: 0 !important;
	}

	.pb-sm-1 {
		padding-bottom: 0.25rem !important;
	}

	.pb-sm-2 {
		padding-bottom: 0.5rem !important;
	}

	.pb-sm-3 {
		padding-bottom: 1rem !important;
	}

	.pb-sm-4 {
		padding-bottom: 1.5rem !important;
	}

	.pb-sm-5 {
		padding-bottom: 3rem !important;
	}

	.ps-sm-0 {
		padding-left: 0 !important;
	}

	.ps-sm-1 {
		padding-left: 0.25rem !important;
	}

	.ps-sm-2 {
		padding-left: 0.5rem !important;
	}

	.ps-sm-3 {
		padding-left: 1rem !important;
	}

	.ps-sm-4 {
		padding-left: 1.5rem !important;
	}

	.ps-sm-5 {
		padding-left: 3rem !important;
	}
}
@media (min-width: 768px) {
	.m-md-0 {
		margin: 0 !important;
	}

	.m-md-1 {
		margin: 0.25rem !important;
	}

	.m-md-2 {
		margin: 0.5rem !important;
	}

	.m-md-3 {
		margin: 1rem !important;
	}

	.m-md-4 {
		margin: 1.5rem !important;
	}

	.m-md-5 {
		margin: 3rem !important;
	}

	.m-md-auto {
		margin: auto !important;
	}

	.mx-md-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.mx-md-1 {
		margin-right: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-md-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.5rem !important;
	}

	.mx-md-3 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}

	.mx-md-4 {
		margin-right: 1.5rem !important;
		margin-left: 1.5rem !important;
	}

	.mx-md-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}

	.mx-md-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.my-md-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.my-md-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-md-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.my-md-3 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.my-md-4 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.my-md-5 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.my-md-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.mt-md-0 {
		margin-top: 0 !important;
	}

	.mt-md-1 {
		margin-top: 0.25rem !important;
	}

	.mt-md-2 {
		margin-top: 0.5rem !important;
	}

	.mt-md-3 {
		margin-top: 1rem !important;
	}

	.mt-md-4 {
		margin-top: 1.5rem !important;
	}

	.mt-md-5 {
		margin-top: 3rem !important;
	}

	.mt-md-auto {
		margin-top: auto !important;
	}

	.me-md-0 {
		margin-right: 0 !important;
	}

	.me-md-1 {
		margin-right: 0.25rem !important;
	}

	.me-md-2 {
		margin-right: 0.5rem !important;
	}

	.me-md-3 {
		margin-right: 1rem !important;
	}

	.me-md-4 {
		margin-right: 1.5rem !important;
	}

	.me-md-5 {
		margin-right: 3rem !important;
	}

	.me-md-auto {
		margin-right: auto !important;
	}

	.mb-md-0 {
		margin-bottom: 0 !important;
	}

	.mb-md-1 {
		margin-bottom: 0.25rem !important;
	}

	.mb-md-2 {
		margin-bottom: 0.5rem !important;
	}

	.mb-md-3 {
		margin-bottom: 1rem !important;
	}

	.mb-md-4 {
		margin-bottom: 1.5rem !important;
	}

	.mb-md-5 {
		margin-bottom: 3rem !important;
	}

	.mb-md-auto {
		margin-bottom: auto !important;
	}

	.ms-md-0 {
		margin-left: 0 !important;
	}

	.ms-md-1 {
		margin-left: 0.25rem !important;
	}

	.ms-md-2 {
		margin-left: 0.5rem !important;
	}

	.ms-md-3 {
		margin-left: 1rem !important;
	}

	.ms-md-4 {
		margin-left: 1.5rem !important;
	}

	.ms-md-5 {
		margin-left: 3rem !important;
	}

	.ms-md-auto {
		margin-left: auto !important;
	}

	.p-md-0 {
		padding: 0 !important;
	}

	.p-md-1 {
		padding: 0.25rem !important;
	}

	.p-md-2 {
		padding: 0.5rem !important;
	}

	.p-md-3 {
		padding: 1rem !important;
	}

	.p-md-4 {
		padding: 1.5rem !important;
	}

	.p-md-5 {
		padding: 3rem !important;
	}

	.px-md-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.px-md-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-md-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.px-md-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.px-md-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.px-md-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.py-md-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.py-md-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-md-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.py-md-3 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.py-md-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.py-md-5 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.pt-md-0 {
		padding-top: 0 !important;
	}

	.pt-md-1 {
		padding-top: 0.25rem !important;
	}

	.pt-md-2 {
		padding-top: 0.5rem !important;
	}

	.pt-md-3 {
		padding-top: 1rem !important;
	}

	.pt-md-4 {
		padding-top: 1.5rem !important;
	}

	.pt-md-5 {
		padding-top: 3rem !important;
	}

	.pe-md-0 {
		padding-right: 0 !important;
	}

	.pe-md-1 {
		padding-right: 0.25rem !important;
	}

	.pe-md-2 {
		padding-right: 0.5rem !important;
	}

	.pe-md-3 {
		padding-right: 1rem !important;
	}

	.pe-md-4 {
		padding-right: 1.5rem !important;
	}

	.pe-md-5 {
		padding-right: 3rem !important;
	}

	.pb-md-0 {
		padding-bottom: 0 !important;
	}

	.pb-md-1 {
		padding-bottom: 0.25rem !important;
	}

	.pb-md-2 {
		padding-bottom: 0.5rem !important;
	}

	.pb-md-3 {
		padding-bottom: 1rem !important;
	}

	.pb-md-4 {
		padding-bottom: 1.5rem !important;
	}

	.pb-md-5 {
		padding-bottom: 3rem !important;
	}

	.ps-md-0 {
		padding-left: 0 !important;
	}

	.ps-md-1 {
		padding-left: 0.25rem !important;
	}

	.ps-md-2 {
		padding-left: 0.5rem !important;
	}

	.ps-md-3 {
		padding-left: 1rem !important;
	}

	.ps-md-4 {
		padding-left: 1.5rem !important;
	}

	.ps-md-5 {
		padding-left: 3rem !important;
	}
}
@media (min-width: 992px) {
	.m-lg-0 {
		margin: 0 !important;
	}

	.m-lg-1 {
		margin: 0.25rem !important;
	}

	.m-lg-2 {
		margin: 0.5rem !important;
	}

	.m-lg-3 {
		margin: 1rem !important;
	}

	.m-lg-4 {
		margin: 1.5rem !important;
	}

	.m-lg-5 {
		margin: 3rem !important;
	}

	.m-lg-auto {
		margin: auto !important;
	}

	.mx-lg-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.mx-lg-1 {
		margin-right: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-lg-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.5rem !important;
	}

	.mx-lg-3 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}

	.mx-lg-4 {
		margin-right: 1.5rem !important;
		margin-left: 1.5rem !important;
	}

	.mx-lg-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}

	.mx-lg-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.my-lg-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.my-lg-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-lg-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.my-lg-3 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.my-lg-4 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.my-lg-5 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.my-lg-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.mt-lg-0 {
		margin-top: 0 !important;
	}

	.mt-lg-1 {
		margin-top: 0.25rem !important;
	}

	.mt-lg-2 {
		margin-top: 0.5rem !important;
	}

	.mt-lg-3 {
		margin-top: 1rem !important;
	}

	.mt-lg-4 {
		margin-top: 1.5rem !important;
	}

	.mt-lg-5 {
		margin-top: 3rem !important;
	}

	.mt-lg-auto {
		margin-top: auto !important;
	}

	.me-lg-0 {
		margin-right: 0 !important;
	}

	.me-lg-1 {
		margin-right: 0.25rem !important;
	}

	.me-lg-2 {
		margin-right: 0.5rem !important;
	}

	.me-lg-3 {
		margin-right: 1rem !important;
	}

	.me-lg-4 {
		margin-right: 1.5rem !important;
	}

	.me-lg-5 {
		margin-right: 3rem !important;
	}

	.me-lg-auto {
		margin-right: auto !important;
	}

	.mb-lg-0 {
		margin-bottom: 0 !important;
	}

	.mb-lg-1 {
		margin-bottom: 0.25rem !important;
	}

	.mb-lg-2 {
		margin-bottom: 0.5rem !important;
	}

	.mb-lg-3 {
		margin-bottom: 1rem !important;
	}

	.mb-lg-4 {
		margin-bottom: 1.5rem !important;
	}

	.mb-lg-5 {
		margin-bottom: 3rem !important;
	}

	.mb-lg-auto {
		margin-bottom: auto !important;
	}

	.ms-lg-0 {
		margin-left: 0 !important;
	}

	.ms-lg-1 {
		margin-left: 0.25rem !important;
	}

	.ms-lg-2 {
		margin-left: 0.5rem !important;
	}

	.ms-lg-3 {
		margin-left: 1rem !important;
	}

	.ms-lg-4 {
		margin-left: 1.5rem !important;
	}

	.ms-lg-5 {
		margin-left: 3rem !important;
	}

	.ms-lg-auto {
		margin-left: auto !important;
	}

	.p-lg-0 {
		padding: 0 !important;
	}

	.p-lg-1 {
		padding: 0.25rem !important;
	}

	.p-lg-2 {
		padding: 0.5rem !important;
	}

	.p-lg-3 {
		padding: 1rem !important;
	}

	.p-lg-4 {
		padding: 1.5rem !important;
	}

	.p-lg-5 {
		padding: 3rem !important;
	}

	.px-lg-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.px-lg-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-lg-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.px-lg-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.px-lg-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.px-lg-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.py-lg-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.py-lg-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-lg-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.py-lg-3 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.py-lg-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.py-lg-5 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.pt-lg-0 {
		padding-top: 0 !important;
	}

	.pt-lg-1 {
		padding-top: 0.25rem !important;
	}

	.pt-lg-2 {
		padding-top: 0.5rem !important;
	}

	.pt-lg-3 {
		padding-top: 1rem !important;
	}

	.pt-lg-4 {
		padding-top: 1.5rem !important;
	}

	.pt-lg-5 {
		padding-top: 3rem !important;
	}

	.pe-lg-0 {
		padding-right: 0 !important;
	}

	.pe-lg-1 {
		padding-right: 0.25rem !important;
	}

	.pe-lg-2 {
		padding-right: 0.5rem !important;
	}

	.pe-lg-3 {
		padding-right: 1rem !important;
	}

	.pe-lg-4 {
		padding-right: 1.5rem !important;
	}

	.pe-lg-5 {
		padding-right: 3rem !important;
	}

	.pb-lg-0 {
		padding-bottom: 0 !important;
	}

	.pb-lg-1 {
		padding-bottom: 0.25rem !important;
	}

	.pb-lg-2 {
		padding-bottom: 0.5rem !important;
	}

	.pb-lg-3 {
		padding-bottom: 1rem !important;
	}

	.pb-lg-4 {
		padding-bottom: 1.5rem !important;
	}

	.pb-lg-5 {
		padding-bottom: 3rem !important;
	}

	.ps-lg-0 {
		padding-left: 0 !important;
	}

	.ps-lg-1 {
		padding-left: 0.25rem !important;
	}

	.ps-lg-2 {
		padding-left: 0.5rem !important;
	}

	.ps-lg-3 {
		padding-left: 1rem !important;
	}

	.ps-lg-4 {
		padding-left: 1.5rem !important;
	}

	.ps-lg-5 {
		padding-left: 3rem !important;
	}
}
@media (min-width: 1200px) {

	.m-xl-0 {
		margin: 0 !important;
	}

	.m-xl-1 {
		margin: 0.25rem !important;
	}

	.m-xl-2 {
		margin: 0.5rem !important;
	}

	.m-xl-3 {
		margin: 1rem !important;
	}

	.m-xl-4 {
		margin: 1.5rem !important;
	}

	.m-xl-5 {
		margin: 3rem !important;
	}

	.m-xl-auto {
		margin: auto !important;
	}

	.mx-xl-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.mx-xl-1 {
		margin-right: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-xl-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.5rem !important;
	}

	.mx-xl-3 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}

	.mx-xl-4 {
		margin-right: 1.5rem !important;
		margin-left: 1.5rem !important;
	}

	.mx-xl-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}

	.mx-xl-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.my-xl-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.my-xl-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-xl-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.my-xl-3 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.my-xl-4 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.my-xl-5 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.my-xl-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.mt-xl-0 {
		margin-top: 0 !important;
	}

	.mt-xl-1 {
		margin-top: 0.25rem !important;
	}

	.mt-xl-2 {
		margin-top: 0.5rem !important;
	}

	.mt-xl-3 {
		margin-top: 1rem !important;
	}

	.mt-xl-4 {
		margin-top: 1.5rem !important;
	}

	.mt-xl-5 {
		margin-top: 3rem !important;
	}

	.mt-xl-auto {
		margin-top: auto !important;
	}

	.me-xl-0 {
		margin-right: 0 !important;
	}

	.me-xl-1 {
		margin-right: 0.25rem !important;
	}

	.me-xl-2 {
		margin-right: 0.5rem !important;
	}

	.me-xl-3 {
		margin-right: 1rem !important;
	}

	.me-xl-4 {
		margin-right: 1.5rem !important;
	}

	.me-xl-5 {
		margin-right: 3rem !important;
	}

	.me-xl-auto {
		margin-right: auto !important;
	}

	.mb-xl-0 {
		margin-bottom: 0 !important;
	}

	.mb-xl-1 {
		margin-bottom: 0.25rem !important;
	}

	.mb-xl-2 {
		margin-bottom: 0.5rem !important;
	}

	.mb-xl-3 {
		margin-bottom: 1rem !important;
	}

	.mb-xl-4 {
		margin-bottom: 1.5rem !important;
	}

	.mb-xl-5 {
		margin-bottom: 3rem !important;
	}

	.mb-xl-auto {
		margin-bottom: auto !important;
	}

	.ms-xl-0 {
		margin-left: 0 !important;
	}

	.ms-xl-1 {
		margin-left: 0.25rem !important;
	}

	.ms-xl-2 {
		margin-left: 0.5rem !important;
	}

	.ms-xl-3 {
		margin-left: 1rem !important;
	}

	.ms-xl-4 {
		margin-left: 1.5rem !important;
	}

	.ms-xl-5 {
		margin-left: 3rem !important;
	}

	.ms-xl-auto {
		margin-left: auto !important;
	}

	.p-xl-0 {
		padding: 0 !important;
	}

	.p-xl-1 {
		padding: 0.25rem !important;
	}

	.p-xl-2 {
		padding: 0.5rem !important;
	}

	.p-xl-3 {
		padding: 1rem !important;
	}

	.p-xl-4 {
		padding: 1.5rem !important;
	}

	.p-xl-5 {
		padding: 3rem !important;
	}

	.px-xl-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.px-xl-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-xl-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.px-xl-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.px-xl-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.px-xl-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.py-xl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.py-xl-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-xl-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.py-xl-3 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.py-xl-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.py-xl-5 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.pt-xl-0 {
		padding-top: 0 !important;
	}

	.pt-xl-1 {
		padding-top: 0.25rem !important;
	}

	.pt-xl-2 {
		padding-top: 0.5rem !important;
	}

	.pt-xl-3 {
		padding-top: 1rem !important;
	}

	.pt-xl-4 {
		padding-top: 1.5rem !important;
	}

	.pt-xl-5 {
		padding-top: 3rem !important;
	}

	.pe-xl-0 {
		padding-right: 0 !important;
	}

	.pe-xl-1 {
		padding-right: 0.25rem !important;
	}

	.pe-xl-2 {
		padding-right: 0.5rem !important;
	}

	.pe-xl-3 {
		padding-right: 1rem !important;
	}

	.pe-xl-4 {
		padding-right: 1.5rem !important;
	}

	.pe-xl-5 {
		padding-right: 3rem !important;
	}

	.pb-xl-0 {
		padding-bottom: 0 !important;
	}

	.pb-xl-1 {
		padding-bottom: 0.25rem !important;
	}

	.pb-xl-2 {
		padding-bottom: 0.5rem !important;
	}

	.pb-xl-3 {
		padding-bottom: 1rem !important;
	}

	.pb-xl-4 {
		padding-bottom: 1.5rem !important;
	}

	.pb-xl-5 {
		padding-bottom: 3rem !important;
	}

	.ps-xl-0 {
		padding-left: 0 !important;
	}

	.ps-xl-1 {
		padding-left: 0.25rem !important;
	}

	.ps-xl-2 {
		padding-left: 0.5rem !important;
	}

	.ps-xl-3 {
		padding-left: 1rem !important;
	}

	.ps-xl-4 {
		padding-left: 1.5rem !important;
	}

	.ps-xl-5 {
		padding-left: 3rem !important;
	}
}
@media (min-width: 1400px) {
	.m-xxl-0 {
		margin: 0 !important;
	}

	.m-xxl-1 {
		margin: 0.25rem !important;
	}

	.m-xxl-2 {
		margin: 0.5rem !important;
	}

	.m-xxl-3 {
		margin: 1rem !important;
	}

	.m-xxl-4 {
		margin: 1.5rem !important;
	}

	.m-xxl-5 {
		margin: 3rem !important;
	}

	.m-xxl-auto {
		margin: auto !important;
	}

	.mx-xxl-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.mx-xxl-1 {
		margin-right: 0.25rem !important;
		margin-left: 0.25rem !important;
	}

	.mx-xxl-2 {
		margin-right: 0.5rem !important;
		margin-left: 0.5rem !important;
	}

	.mx-xxl-3 {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}

	.mx-xxl-4 {
		margin-right: 1.5rem !important;
		margin-left: 1.5rem !important;
	}

	.mx-xxl-5 {
		margin-right: 3rem !important;
		margin-left: 3rem !important;
	}

	.mx-xxl-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.my-xxl-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.my-xxl-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.my-xxl-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.my-xxl-3 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.my-xxl-4 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.my-xxl-5 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.my-xxl-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.mt-xxl-0 {
		margin-top: 0 !important;
	}

	.mt-xxl-1 {
		margin-top: 0.25rem !important;
	}

	.mt-xxl-2 {
		margin-top: 0.5rem !important;
	}

	.mt-xxl-3 {
		margin-top: 1rem !important;
	}

	.mt-xxl-4 {
		margin-top: 1.5rem !important;
	}

	.mt-xxl-5 {
		margin-top: 3rem !important;
	}

	.mt-xxl-auto {
		margin-top: auto !important;
	}

	.me-xxl-0 {
		margin-right: 0 !important;
	}

	.me-xxl-1 {
		margin-right: 0.25rem !important;
	}

	.me-xxl-2 {
		margin-right: 0.5rem !important;
	}

	.me-xxl-3 {
		margin-right: 1rem !important;
	}

	.me-xxl-4 {
		margin-right: 1.5rem !important;
	}

	.me-xxl-5 {
		margin-right: 3rem !important;
	}

	.me-xxl-auto {
		margin-right: auto !important;
	}

	.mb-xxl-0 {
		margin-bottom: 0 !important;
	}

	.mb-xxl-1 {
		margin-bottom: 0.25rem !important;
	}

	.mb-xxl-2 {
		margin-bottom: 0.5rem !important;
	}

	.mb-xxl-3 {
		margin-bottom: 1rem !important;
	}

	.mb-xxl-4 {
		margin-bottom: 1.5rem !important;
	}

	.mb-xxl-5 {
		margin-bottom: 3rem !important;
	}

	.mb-xxl-auto {
		margin-bottom: auto !important;
	}

	.ms-xxl-0 {
		margin-left: 0 !important;
	}

	.ms-xxl-1 {
		margin-left: 0.25rem !important;
	}

	.ms-xxl-2 {
		margin-left: 0.5rem !important;
	}

	.ms-xxl-3 {
		margin-left: 1rem !important;
	}

	.ms-xxl-4 {
		margin-left: 1.5rem !important;
	}

	.ms-xxl-5 {
		margin-left: 3rem !important;
	}

	.ms-xxl-auto {
		margin-left: auto !important;
	}

	.p-xxl-0 {
		padding: 0 !important;
	}

	.p-xxl-1 {
		padding: 0.25rem !important;
	}

	.p-xxl-2 {
		padding: 0.5rem !important;
	}

	.p-xxl-3 {
		padding: 1rem !important;
	}

	.p-xxl-4 {
		padding: 1.5rem !important;
	}

	.p-xxl-5 {
		padding: 3rem !important;
	}

	.px-xxl-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.px-xxl-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.px-xxl-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.px-xxl-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.px-xxl-4 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.px-xxl-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.py-xxl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.py-xxl-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.py-xxl-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.py-xxl-3 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.py-xxl-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.py-xxl-5 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.pt-xxl-0 {
		padding-top: 0 !important;
	}

	.pt-xxl-1 {
		padding-top: 0.25rem !important;
	}

	.pt-xxl-2 {
		padding-top: 0.5rem !important;
	}

	.pt-xxl-3 {
		padding-top: 1rem !important;
	}

	.pt-xxl-4 {
		padding-top: 1.5rem !important;
	}

	.pt-xxl-5 {
		padding-top: 3rem !important;
	}

	.pe-xxl-0 {
		padding-right: 0 !important;
	}

	.pe-xxl-1 {
		padding-right: 0.25rem !important;
	}

	.pe-xxl-2 {
		padding-right: 0.5rem !important;
	}

	.pe-xxl-3 {
		padding-right: 1rem !important;
	}

	.pe-xxl-4 {
		padding-right: 1.5rem !important;
	}

	.pe-xxl-5 {
		padding-right: 3rem !important;
	}

	.pb-xxl-0 {
		padding-bottom: 0 !important;
	}

	.pb-xxl-1 {
		padding-bottom: 0.25rem !important;
	}

	.pb-xxl-2 {
		padding-bottom: 0.5rem !important;
	}

	.pb-xxl-3 {
		padding-bottom: 1rem !important;
	}

	.pb-xxl-4 {
		padding-bottom: 1.5rem !important;
	}

	.pb-xxl-5 {
		padding-bottom: 3rem !important;
	}

	.ps-xxl-0 {
		padding-left: 0 !important;
	}

	.ps-xxl-1 {
		padding-left: 0.25rem !important;
	}

	.ps-xxl-2 {
		padding-left: 0.5rem !important;
	}

	.ps-xxl-3 {
		padding-left: 1rem !important;
	}

	.ps-xxl-4 {
		padding-left: 1.5rem !important;
	}

	.ps-xxl-5 {
		padding-left: 3rem !important;
	}
}
.gated-resource-modal .modal-header {
  border-bottom: none;
  padding: 0 15px;
}
.gated-resource-modal .modal-header button.close {
  margin: 0;
}
.gated-resource-modal .modal-header + .modal-body {
  padding-top: 0;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.content {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

.experiencefragment .xf-content-height{
    margin:0;
}


.navigation{
	background-color:#FFFFFF;
	border-bottom:1px solid #d8d8d8;
	position: fixed;
	z-index: 150;
	width: 100%;
	margin-top:57px;
}

.nav-item{
	font-family: HelveticaNeue, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #575757;
	display:inline-block;
	padding:10px 30px 10px 0;
	height:54px;
}

.nav-item-text{
	padding-top:6px;
	padding-bottom:3px;
	cursor:pointer;
	position:relative;
}

.nav-item-text a, .navigation .link a{
	color:#575757;
	text-decoration:none;
}

.nav-item-text::after{
	display:block;
	content: '';
	border-bottom: solid 4px #ffffff;  
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
	position:absolute;
	bottom:-14px;
	left:0;
	right:0;
}


.nav-item.active .nav-item-text{
	border-color:#7474B6;
}

.nav-item.active .nav-item-text::after, .nav-item.hover .nav-item-text::after{
	border-color:#7474B6;
	transform: scaleX(1);
}

.path-hcp .nav-item.active .nav-item-text::after, .path-hcp .nav-item.hover .nav-item-text::after{
	border-color:#6FABDC;
}

.path-lab .nav-item.active .nav-item-text::after, .path-lab .nav-item.hover .nav-item-text::after{
	border-color:#EF2E34;
}

.navigation.mobile-search-margin{
	margin-top:77px;
}

.path-hcp .nav-item.hover .nav-item-text, .path-hcp .nav-item.active .nav-item-text{
	border-color:#1a538c;
}


.path-lab .nav-item.hover .nav-item-text, .path-lab .nav-item.active .nav-item-text{
	border-color:#AD1E2D;
}

.l2-nav{
    display:none;
    max-width: 270px;
    background-color:#ffffff;
    padding:15px 0;
    position:absolute;
    top:54px;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.2);
}

.l2-overview-item{
    padding:25px;
}
.l2-nav a{
    padding: 7px 20px;
    font-family: HelveticaNeueLTStd-Md;
    font-size: 14px;
    color: #555759;
    display: block;
}
.l2-nav .l2-item-wrapper > a {
	padding: 7px 35px 7px 20px;
}
.l2-nav a:hover {
	text-decoration:none;
}

.l2-item-wrapper{
    position:relative;
}

.l2-item-wrapper .glyphicon {
	color: #B4B4B4;
}

.path-patient .l3-parent.hover > a,
.path-patient .l3-parent.hover .glyphicon,
.path-patient .l2-overview-item-wrapper:hover > a,
.path-patient .l2-item-wrapper:hover > a, 
.path-patient .l2-item-wrapper:hover .glyphicon {
	color:#7474B6;
}

.path-lab .l3-parent.hover > a,
.path-lab .l3-parent.hover .glyphicon,
.path-lab .l2-overview-item-wrapper:hover > a,
.path-lab .l2-item-wrapper:hover > a, 
.path-lab .l2-item-wrapper:hover .glyphicon {
	color:#EF2E34;
}

.path-hcp .l3-parent.hover > a,
.path-hcp .l3-parent.hover .glyphicon,
.path-hcp .l2-overview-item-wrapper:hover > a,
.path-hcp .l2-item-wrapper:hover > a, 
.path-hcp .l2-item-wrapper:hover .glyphicon {
	color:#6FABDC;
}

.l3-nav a:hover {
    color:#7474B6;
}
.path-lab .l3-nav a:hover {
    color:#EF2E34;
}

.path-hcp .l3-nav a:hover {
    color:#6FABDC;
}

.l2-item-wrapper:hover .l3-nav{
    display:block;
}

.l2-nav span.glyphicon.glyphicon-play {
    font-size: 8px;
    line-height: 8px;
    position: absolute;
    right: 10px;
    top: 13px;
}

.l3-nav{
    top:0;
    left:100%;
    display:none;
    width:auto;
    background-color:#ffffff;
    padding:5px 0;
    position:absolute;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.2);
    border:1px solid #DFDFDF;
    min-width:200px;
    z-index:-1;
}

.l2-overview-item-wrapper, .l3-overview-item-wrapper {
    display: none;
}
.touch-device .l2-overview-item-wrapper, .touch-device .l3-overview-item-wrapper {
    display:block;
}

@media screen and (max-width: 1200px){
	.nav-item{
		padding:10px 15px 10px 0;
	}
}

@media screen and (max-width: 768px){
	.l2-nav a{
		font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	}
	.navigation{
		display:none;
	}
	.navigation.open{
		display:block;
		position: fixed;
		left: 15px;
		right: 15px;
		z-index: 1000;
		margin-top:57px;
	}
	.navigation.mobile-search-margin{
		margin-top:97px;
	}
	.navigation, .navigation .col-md-12, .l2-nav .col-sm-3{
		padding:0;
	}
	.l2-nav{
		padding:0;
		top:52px;
		width: 100%;
		max-width: none;
		left: 0;
		overflow-y: auto;
		z-index: 100;
	}
	.l2-nav div[class*="col-sm-"] {
		width: 100%;
	}
	.l2-nav .col-sm-9{
		padding-right:15px;
	}
	.l2-overview-item-wrapper {
		font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
		display:block !important;
		min-height:0;
		text-transform:none;
		padding-top:15px;
	}
	.l2-item-wrapper.l2-overview-item{
		font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
		display:block !important;
		min-height:0;
		text-transform:none;
		padding-top:15px;
	}
	.nav-item{
		height:auto;
	}
	.l2-overview-item-wrapper, .l2-item-wrapper {
		padding:0;
	}
	.l2-overview-item-wrapper a, .l2-item-wrapper a, .l2-nav .l2-item-wrapper > a {
		padding: 22px 60px 22px 20px;
	}
	.nav-item, .l3-nav > a {
		padding: 15px 35px 15px 20px;
	}
	.nav-item, .l2-item-wrapper, .l3-nav > a, .l2-overview-item-wrapper{
		font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
		font-size: 16px;
		color: #4A4A4A;
		background-color:#f6f6f6;
		display:block;
		margin:0;
		border-bottom:1px solid #D8D8D8 !important;
		position:relative;
		text-align:left;
		line-height:auto;
		border-right:0;
	}

	.nav-item-text, .nav-item-text::after{
		border:0;
		padding:0;
	}
	.nav-item.l2-parent::after{
		font-family: 'Glyphicons Halflings';
		position:absolute;
		content:"\e072";
		display:block;
		font-size:14px;
		right:20px;
		top:50%;
		margin-top:-10px;
		color:#9B9B9B;
		transition: .5s ease;
	}
	.nav-item.l2-parent.hover::after{
		content:"\e072";
		color:#575757;
		right:20px;
		transform: rotate(90deg);
	}
	
	.nav-item.hover{
		background-color:#e2e3e4;
		text-align:center;
	}
	
	.nav-item.hover::before{
		text-align:center;
	}

	.l2-nav > .col-sm-9{
		min-height:0 !important;
	}
	.l2-nav span.glyphicon.glyphicon-play {
		font-size: 14px;
		right: 22px;
		transition: .5s ease;
	}
	.l2-nav .l2-item-wrapper.open span.glyphicon.glyphicon-play {
		transform: rotate(90deg);
	}
	.l3-nav {
		padding: 0;
	}
	.l2-item-wrapper.l3-parent.open {
		border-bottom: 0 !important;
	}
	.l3-nav .l3-overview-item-wrapper, .l3-nav .l3-list-wrapper a{
		border-bottom: 1px solid #D8D8D8 !important;
	}
	.l2-item-wrapper.open .l3-nav{
	    display: block !important;
	    position: static;
	}
}
/*
	HEADER
*/

.header{
	background-color:#F6F6F6;
	border-top:1px solid #d8d8d8;
	border-bottom:1px solid #d8d8d8;
	position: fixed;
	z-index: 160;
	width: 100%;
	height:57px;
}

.header .container{
	position:relative;
}

.header-inner{
	padding:10px 0;
}

#patient-logo, #hcp-logo, #lab-logo{
	display:none;
}

.path-patient #patient-logo{
	display:block;
}

.path-hcp #hcp-logo{
	display:block;
}

.path-hcp #patient-logo{
	display:none;
}

.path-lab #lab-logo{
	display:block;
}

.path-lab #patient-logo{
	display:none;
}

.buyer-type-logo{
    width:200px;
    float:left;
    display:inline-block;
}

#patient-logo img, #hcp-logo img, #lab-logo img{
	float:left;
	display:inline-block;
	width:200px;
}

body:not(.path-phadia) .header-input{
	border:1px solid #D8D8D8;
	border-radius:4px;
	background-color:#FFFEFF;
	height:30px;
	float:right;
	margin-left:10px;
	display:inline-block;
}

#header-search{
	width:100%;
	background-image:url('../../../etc.clientlibs/diagnostics/components/structure/toptoolbar/clientlib/resources/search.png');
	background-repeat:no-repeat;
	background-position:98% center;
	background-size:14px 14px;
	padding:0 30px 0 10px;
	display:inline-block;
	float:right;
	margin-top:4px;
}

#header-search::placeholder {
  color: #B4B3B4;
  opacity: 1;
}

#header-search:-ms-input-placeholder {
  color: #B4B3B4;
}

#header-search::-ms-input-placeholder {
  color: #B4B3B4;
}

#header-search.show-mobile{
	display:inline-block;
}

#site-selector-container{
	visibility:hidden;
}

.site-block-wrapper{
	float:none;
	height:100%;
	vertical-align:middle;
	display:none;
	background-color:#EAEAEA;
	cursor:pointer;
	text-decoration:none !important;
}

.site-block{
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #9B9B9B;
	text-align:center;
	line-height:14px;
}

.site-block-wrapper:first-child{
	background-color:#7474B6;
	display:table-cell;
}

.path-hcp .site-block-wrapper:first-child{
	background-color:#6FABDC;
}

.path-lab .site-block-wrapper:first-child{
	background-color:#EF2E34;
}

.site-block-wrapper:first-child .site-block{
	color:#ffffff;
}

.site-block-wrapper:last-child{
	border-left:1px solid #BBBABA;
	border-right:1px solid #BBBABA;
}

.site_selector_wrapper{
	height:55px;
	position:relative;
	display:table;
	float:right;
}

.mobile-search-btn{
	display:none;
	padding-top:3px;
	cursor:pointer;
	margin-right:10px;
	max-width:27px;
}

#mobile-nav-btn{
	display:none;
	color:#D8D8D8;
	font-size:25px;
	padding-top:5px;
	cursor:pointer;
}

.header .country-modal-btn{
	border-radius:4px;
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height:1;
	color: #565859;
	text-align:center;
	padding: 10px 0 8px 0;
	cursor: pointer;
	background-size: 22px 22px;
	background-repeat: no-repeat;
	background-position: 10px 5px;
	background-image: url(../components/structure/toptoolbar/clientlib/css/uk_flag_icon.png);
	max-width: 200px;
	display: inline-block;
	padding-left: 40px;
	float: right;
}

.search-form { 
	position: relative; 
}
.search-button {
	position: absolute;
	right: 0;
	width: 26px;
	height: 34px;
	cursor: pointer;
	display: block;
}

#header-inner-wrapper.col-sm-11{
	padding-right:0;
}

#site-selector-container.col-sm-1{
	padding-left:0;
}

#site-indicator-modal{
	position: absolute;
	top: 80px;
	margin: 0;
	left: auto;
	right: 35px;
}

#site-indicator-modal img{
	width:42px;
	height:auto;
}

#site-indicator-modal h3{
	margin:0;
}

#site-indicator-modal::after{
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 15px solid #7474b4;
	content: '';
	position: absolute;
	top: -15px;
	right: 10px;
}


@media screen and (min-width: 768px){
	.navigation.mobile-search-margin{
		margin-top:57px;
	}
}

@media screen and (max-width: 768px){

	#site-indicator-modal{
		display:none !important;
	}

	#header-inner-wrapper{
		padding:0 15px !important;
		width:100%;
	}

	#header-logo{
		 max-width: 175px;
	}
	#header-search{ 
		background-image: none;
		max-width: 100%;
		background-color: #fff;
		margin:10px 0 0 0;
		display: none;
	}
	#header-search.show-mobile{
		display:block;
	}
	.mobile-search-btn {
		display:inline-block;
	}
	.header{
		background-color:#ffffff;
	}
	.header .country-modal-btn{
		display:none;
	}
	
	.no-padding { padding: 0; } 
	ul.ui-menu.ui-widget.ui-widget-content { 
		background: #fff !important; 
		/* display:block !important; */
		left: 12px !important;
		padding-top: 0;
	}
	.custom-title { 
		background: #eee;
		margin-top: 6px !important;
	} 
	#mobile-nav-btn{
		display:inline-block;
	} 
	#header-search.show-mobile{
		display:inline-block;
	}
	.search-button {
		display: none;
	}

	.header .container{
		padding:0;
	}

	.header-inner{
		background-color:#ffffff;
		border-bottom:1px solid #d8d8d8;
		padding:10px 15px;
	}

	#site-selector-container{
		display:none;
	}
}

.ui-autocomplete {
	right: 0!important;
	top: 30px;
   /* left: initial!important;*/
	width: 100%;
	max-width: 60%;
	float:right;
	border-radius: 0;
	padding: 31px 5px 7px;
	z-index: 9998!important;
	position: absolute;
	cursor: default;
	display: none;
}

.ui-widget-content {
	border: 1px solid #ddd;
	background: #eee url(../../../etc.clientlibs/diagnostics/components/structure/toptoolbar/clientlib/resources/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x!important;
	color: #333;
}

.ui-widget {
}

.info-modal{
	width:500px;
	margin:0 auto;
	color:#ffffff;
	background-color:#7474B6;
	line-height: 24px;
	position:absolute;
	top:25%;
	left:0;
	right:0;
	z-index:1000;
	position:absolute;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
	position:fixed;
	display:none;
	max-width:90%;
}

#hcp-site-modal, .path-hcp .info-modal{
	background-color:#6FABDC;
}

#lab-site-modal, .path-lab .info-modal{
	background-color:#EF2E34;
}

.path-hcp #site-indicator-modal::after{
	border-bottom: 15px solid #6FABDC;
}

.path-lab #site-indicator-modal::after{
	border-bottom: 15px solid #EF2E34;
}

.inner-info-modal{
	padding:25px 25px 15px 25px;
}

.info-modal .indicator-modal-text{
	font-family:  HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 20px;
}

.info-modal p{
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 16px;
}

.info-modal-btn{
	width:100%;
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #4A4A4A;
	line-height: 24px;
	padding:15px;
	text-align:center;

	background-color:#FFFFFF;

	cursor:pointer;
	border-bottom:1px solid #9B9B9B;
	display:block;
	width:100%;
}


.info-modal-btn-wrapper a{
	text-decoration:none !important;
}

.info-modal-btn:last-child{
	border:0;
}

.path-hcp .info-modal-btn:hover{
	background-color:#00568b !important;
	color:#ffffff !important;
}

.path-lab .info-modal-btn:hover{
	background-color:#ab2131 !important;
	color:#ffffff !important;
}

#hcp-site-modal .info-modal-btn:hover{
	background-color:#00568b !important;
	color:#ffffff !important;
}

#lab-site-modal .info-modal-btn:hover{
	background-color:#ab2131 !important;
	color:#ffffff !important;
}

.info-modal-btn-wrapper{

}

.info-modal-close-btn{
	cursor:pointer;
	position:absolute;
	top:5px;
	right:15px;
	color:#ffffff;
	font-family:Helvetica,Arial,sans-serif;
}

#choose-language-modal .info-modal-btn{
	text-align:left;
}

.inline-btns .info-modal-btn{
	display:inline-block;
	width:50%;
	border:0;
}

.inline-btns .info-modal-btn:first-child{
	border-right:1px solid #979797;
}

.inline-btns{
	font-size:0;
}

#site-overlay{
	background-color:rgba(0,0,0,.5);
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	z-index:999;
	position:fixed;
	display:none;
}
.svg-wrapper .thumbnail-card-wrapper{
	margin-top:8px;
	margin-bottom:8px;
}

.svg-wrapper.flex{
	display: flex !important;
	flex-direction: column;
}

.svg-wrapper.flex .thumbnail-card-wrapper{
	display: flex;
	flex: auto;
	flex-direction: column;
}

.svg-wrapper.flex .thumbnail-card-text{
	display: flex;
	flex: auto;
	align-items: center;
	justify-content: center;
}

.svg-wrapper img{
	width:100%;
}

.thumbnail-img-container[data-openmodal="true"]{
	cursor:pointer;
}

.thumbnail-img-container{
	position:relative;

}
.thumbnail-img-overlay{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(213,232,253,.8);
	width:100%;
	height:100%;
	display:none;
	cursor:pointer;
	text-align:center;
}
.path-patient .thumbnail-img-overlay{
	background-color:rgba(116,116,182,0.50);
}
.path-clinical-mass-spectrometry .thumbnail-img-container img {
	border-radius: 4px;
}
.thumbnail-img-container img:hover + .thumbnail-img-overlay {
	display:block;
}

.thumbnail-img-container img.hover + .thumbnail-img-overlay{
	display:block;
}

.thumbnail-img-overlay:hover {
	display:block;
}

.thumbnail-img-overlay.img-circle-mask{
	border-radius:100%;
}

body:not(.path-clinical-mass-spectrometry) .thumbnail-img-overlay::after{
    font-family: 'FontAwesome';
    content: '\f002';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -25px;
    font-size: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    box-shadow: 0px 0px 2px #888;
    padding-top:8px;
    border: 2px solid #7CA9D9;
    color: #7CA9D9;
}
.path-patient .thumbnail-img-overlay::after{
    border: 2px solid #7474B6;
    color: #7474B6;
}

.modal-opener{
	cursor:pointer;
}

.thumbnail-img-container.border-radius img{
	border-radius:45px;
	box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
}

.thumbnail-card-wrapper{
	background-color:#ffffff;
	padding:5px;
	top:0;
	cursor:pointer;
	-webkit-transition: top 100ms ease-in-out;
    -moz-transition: top 100ms ease-in-out;
    -o-transition: top 100ms ease-in-out;
}

.thumbnail-card-wrapper:hover{
	background-color:#71A6F8;
	top:-10px;
	-webkit-transition: top 100ms ease-in-out;
    -moz-transition: top 100ms ease-in-out;
    -o-transition: top 100ms ease-in-out;
}
.path-clinical-mass-spectrometry .thumbnail-img-overlay {
	display: block;
	background-color: transparent;
}
.path-clinical-mass-spectrometry .thumbnail-img-overlay:hover {
	background-color: rgba(255,255,255,.8);
	border-radius: 4px;
}
.path-clinical-mass-spectrometry .thumbnail-img-overlay::after {
	content: "";
	display: block;
	background-image: url('../../../etc.clientlibs/diagnostics/components/content/svgimage/clientlib/resources/EnlargeImageIcon.png');
	background-size: 42px;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.path-clinical-mass-spectrometry .thumbnail-img-overlay:hover::after {
	background-image: url('../../../etc.clientlibs/diagnostics/components/content/svgimage/clientlib/resources/EnlargeImageIconHover.png');
}
.path-clinical-mass-spectrometry .thumbnail-img-overlay:hover:active::after,
.path-clinical-mass-spectrometry .thumbnail-img-overlay:active::after{
	background-image: url('../../../etc.clientlibs/diagnostics/components/content/svgimage/clientlib/resources/EnlargeImageIconActive.png');
}
.path-clinical-mass-spectrometry .thumbnail-card-wrapper:hover{
	background-color:#005DAA;
}

.path-procalcitonin .thumbnail-card-wrapper:hover{
	background-color:#00677F;
}

.path-onelambda .thumbnail-card-wrapper:hover{
	background-color: var(--onelambda-color);
}

.path-patient .thumbnail-card-wrapper:hover{
	background-color:#7474B6;
}

.thumbnail-card-text{
	font-size:15px;
	color:#555555;
	text-align:center;
	padding:10px 0;
	word-break: break-all;
}

.thumbnail-card-wrapper:hover .thumbnail-card-text{
	color:#ffffff;
}

.thumbnail-card-wrapper:hover .thumbnail-img-overlay{
	display:block;
}

span[class^="PIN_"]{
    z-index:10 !important;
}
/* Trying to make images centered in Grid */
.well-cmp .aem-Grid--default--4 .well-shadow img.image-circle-large, .well-cmp .aem-Grid--default--6 .well-shadow img.image-circle-large {
	margin: 0 auto;
	display: block;
	width: 203px;
	height: 203px;
}


.well-cmp .well-shadow img.image-circle-large {
	margin: 0 auto;
	display: block;
}

.well-padding-off.well-shadow img{
	width:100% !important;
	height:auto !important;
}

.well-padding-off.well-shadow .cmp-image{
	padding: 0 !important;
}

img.img-circle-mask, .img-circle-mask img{
	border-radius: 100%;
}

img.align-img{
	display:block;
}

.img-align-center{
	text-align:center;
}

.img-align-right{
	text-align:right;
}

img.img-align-left {
	margin-right:auto;
}

img.img-align-center{
	margin:0 auto;
}

img.img-align-right{
	margin-left:auto;
}

@media (max-width : 768px) {

	.img-align-left-mobile{
		text-align:left;
	}
	
	.img-align-center-mobile{
		text-align:center;
	}

	.img-align-right-mobile{
		text-align:right;
	}
	
	img.img-align-left-mobile{
		margin:inherit;
		margin-right:auto;
	}

	img.img-align-center-mobile{
		margin:0 auto;
	}

	img.img-align-right-mobile{
		margin:inherit;
		margin-left:auto;
	}
}

.hero{
	background-color:#333333;
	background-size:cover;
	color:#ffffff;
	display:table;
	position:relative;
	height:421px;
	padding:50px 0;
	width:100%;
	background-position:25% 25%;
    overflow:hidden;
}

.hero .mobile-hero{
	display:none;
}

body:not(.path-phadia) .hero.no-active-nav{
    margin-bottom:39px;
}

.hero.disabled-nav{
	margin-bottom:0 !important;
}

.hero img.full-hero-img{
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	width:100%;
    height:100%;
	object-fit:cover;
}

.full-hero-img.flip_img{
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}

.hero-overlay{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:0;
	background: rgba(0,0,0,0.15);
	background: -moz-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.29) 42%, rgba(0,0,0,0.19) 63%, rgba(0,0,0,0.11) 79%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0.5)), color-stop(20%, rgba(0,0,0,0.4)), color-stop(42%, rgba(0,0,0,0.29)), color-stop(63%, rgba(0,0,0,0.19)), color-stop(79%, rgba(0,0,0,0.11)), color-stop(100%, rgba(0,0,0,0)));
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.29) 42%, rgba(0,0,0,0.19) 63%, rgba(0,0,0,0.11) 79%, rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.29) 42%, rgba(0,0,0,0.19) 63%, rgba(0,0,0,0.11) 79%, rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.29) 42%, rgba(0,0,0,0.19) 63%, rgba(0,0,0,0.11) 79%, rgba(0,0,0,0) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.29) 42%, rgba(0,0,0,0.19) 63%, rgba(0,0,0,0.11) 79%, rgba(0,0,0,0) 100%);
}

.hero-overlay.zero-opacity{
	opacity:0;
}

.hero-overlay.white-hero-gradient{
	background: -moz-linear-gradient(45deg, rgba(255,255,255,1) 17%, rgba(255,255,255,0.65) 40%, rgba(255,255,255,0) 68%); 
	background: -webkit-linear-gradient(45deg, rgba(255,255,255,1) 17%,rgba(255,255,255,0.65) 40%,rgba(255,255,255,0) 68%);
	background: linear-gradient(45deg, rgba(255,255,255,1) 17%,rgba(255,255,255,0.65) 40%,rgba(255,255,255,0) 68%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=‘#ffffff’, endColorstr=‘#00ffffff’,GradientType=1 );
}

.hero-content-wrapper{
	width:1200px;
	max-width:1200px;
	display:table-cell;
	vertical-align:middle;
}

.path-phadia .hero-content-wrapper{
	width:100%;
}

.hero-content{
	width:73%;
	padding:0 25px;
	position:relative;
}

.path-phadia .hero-content{
	width:100% !important;
	padding:0;
}

.path-phadia .hero-content > .container{
	padding:0 15px;
}

body:not(.path-phadia) .hero-content{
	z-index:5;
}

/** Bespoke overlay **/
.heroimage .bespoke-hero-overlay {
	background:#EE3134;
	color:white;
	position: relative;
	min-height: 250px;
	top: -289px;
	opacity: 0.85;
	margin-bottom:-200px;
}

.heroimage .hero-overlay-icon {
	margin-right:7px;
}

body.path-lab .bespoke-hero-overlay {
	background:#EE3134;
}

body.path-hcp .bespoke-hero-overlay {
	background:#6FABDC;
}

body.path-patient .bespoke-hero-overlay {
	background:#7474C1;
}

.heroimage .hero-overlay-content {
	padding:20px;
	margin:0px auto -50px;
	color:white;
	opacity:1;
	position:relative;
	text-align:center
}

.heroimage .overlay-conent-background {
	border:3px solid white;
	border-radius:30px;
	padding:5px 10px;
	width:20%;
	min-width:300px;
	margin:0px auto;
	margin-top:10px;
}

body.path-lab .overlay-conent-background {
	background-color:#a71c1d;
}


body.path-hcp .overlay-conent-background {
	background-color:#00488d;
}

body.path-patient .overlay-conent-background {
	background-color:#522D6D;
}



.heroimage .hero-image-icon-text {
	font-weight:600;font-size:20px;
}


.heroimage > .container-fluid{
	padding:0;
	margin:0;
}

.heroimage > .container-fluid > .container{
	padding:0;
	margin:0;
	width:100%;
	margin:0 auto;
	max-width:1900px;
}

body:not(.path-phadia) .hero-content h1{
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
	font-size: 36px;
	line-height: 1.3;
	text-transform: uppercase;
	margin-top:0;
}

.hero-content.no-uppercase h1{
	text-transform:none !important;
}

body:not(.path-phadia) .hero-content p{
	font-family: HelveticaNeueLTStd-Md, Helvetica, Arial, sans-serif;
	font-size: 20px;
	line-height: 1.4;
	text-shadow: 0 2px 4px rgba(0,0,0,0.50);
}

body:not(.path-phadia) .hero-content h1 span.hero-subheading{
	font-family: HelveticaNeueLTStd-Md, Helvetica, Arial, sans-serif;
	font-size: 20px;
	line-height: 1.4;
	text-shadow: 0 2px 4px rgba(0,0,0,0.50);
	display:block;
	margin:10px 0;
	text-transform:none;
}

.path-phadia.path-onelambda .hero-content h1{
	font-family: "HelveitcaNeueBold", sans-serif;
	font-size: 36px;
	letter-spacing: 0;
	line-height: 42px;
}
.path-phadia.path-onelambda .hero-content h1 span.hero-subheading{
	font-family: "HelveticaNeueMedium", sans-serif;
	font-size: 24px;
	letter-spacing: 0;
	line-height: 30px;
}

.path-phadia .hero-content h1, .path-phadia .hero-content h1 span, .path-phadia .hero-content p{
	color:#ffffff;
}

.path-phadia .hero-content h1 span{
	display:block;
	font-family: "HelveticaNeueLight", sans-serif;
	font-size: 30px;
	letter-spacing: 0;
	text-align: left;
	line-height: 38px;
}

#next-section-btn{
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	text-align: center;
	background-color: rgba(0,0,0,.36) !important;
	cursor: pointer;
	width: 176px;
	padding: 12px 0;
	font-size: 20px;
	line-height: 0;
	z-index:5;
}

#next-section-btn.fixed-pos{
	position:fixed;
}

.hero-nav-wrapper{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
}

.hero-nav{
	text-align:center;
	font-size:0;
	visibility:hidden;
	z-index:5;
	max-width:1200px;
	margin:0 auto;
	width:100%;
	-ms-overflow-style: none;
}

.hero-nav::-webkit-scrollbar{
	display:none;
}

.hero-nav-item{
	display:inline-table;
	background-color:#262262;
	text-align:center;
	margin:0;
	cursor:pointer;
	vertical-align:bottom;
	height:50px;
}

.hero-nav-item.hover{
	background-color:#ffffff !important;
	height:65px;
}

.path-hcp .hero-nav-item.hover, .path-lab .hero-nav-item.hover{
	background-color:#ffffff !important;
}

.hero-nav-item.hover .hero-nav-text{
	color: #7474B6;
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
}

.path-hcp .hero-nav-item.hover .hero-nav-text{
	color: #6FABDC;
}

.path-lab .hero-nav-item.hover .hero-nav-text{
	color: #EF2E34;
}

.hero-nav-item > a{
	display:table-cell;
	vertical-align:middle;
	text-decoration:none !important;
	padding:0 10px;
}

.hero-nav-text{
	display:block;
	font-family: HelveticaNeueLTStd-Roman, Helvetica, Arial, sans-serif;
	font-size: 14.5px;
	line-height: 1.1;  
	color: #FFFFFF;
}

.hero-nav-item.hover .hero-subnav-container{
	display:block;
}

.hero-subnav-container{
	font-size:0;
	background-color:#ffffff;
	border-bottom:1px solid #d8d8d8;
	height:39px;
	overflow:hidden;
	display:none;
	cursor:initial;
}

.hero-subnav{
	background-color:#ffffff;
	width:100%;
	max-width:1200px;
	margin:0 auto;
	white-space:nowrap;
	overflow-x:auto;
	-ms-overflow-style: none;
	height:100%;
	padding:0 25px;
	text-align:center;

	-webkit-overflow-scrolling: touch;

	-webkit-scroll-snap-type: mandatory;
	-ms-scroll-snap-type: mandatory;
	scroll-snap-type: mandatory;
	-webkit-scroll-snap-destination: 0% 100%;
	-ms-scroll-snap-destination: 0% 100%;
	scroll-snap-destination: 0% 100%;
	-webkit-scroll-snap-points-x: repeat(100%);
	-ms-scroll-snap-points-x: repeat(100%);
	scroll-snap-points-x: repeat(100%);
}

.hero-subnav::-webkit-scrollbar{
	display:none;
}

.hero-subnav-item{
	font-family: HelveticaNeueLTStd-Roman, Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #575757;
	line-height: 1;
	display:inline-table;
	padding:0 3px;
	text-align:center;
	cursor:pointer;
	vertical-align:bottom;
	//min-width:150px !important;
	height:100% !important;
	position:relative;
	margin:0 20px;
	scroll-snap-align: center;
}

.hero-subnav a{
	display:table-cell;
	vertical-align:middle;
	color: #575757 !important;
    text-decoration:none !important;
 }

.hero-subnav-inner-container{
	position:relative;
	max-width:1200px;
	margin:0 auto;
	height:100%;
}

.hero-subnav-left-arrow, .hero-subnav-right-arrow{
	display:none;
	position:absolute;
	z-index:8;
	font-size:15px;
	color: #575757;
	height:100%;
	cursor:pointer;
	background-color: #ffffff;
	padding: 9px 5px 15px 5px;
	top:0;
}


.hero-subnav-left-arrow{
	left:-25px;
	border-right: 1px solid #9B9B9B;
}

.hero-subnav-right-arrow{
	right:-25px;
	border-left:1px solid #9B9B9B;
}

.hero-subnav-text span{
	display:inline-block;
	position:relative;
}



.hero-subnav-item::after{
	border-bottom:4px solid #ffffff;
	display: block;
	content: ' ';
	transform: scaleX(0);
	transition: transform 250ms ease-in-out;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.hero-subnav-item:hover::after{
	transform:scaleX(1);
	border-bottom:4px solid #7474B6;
}

.path-hcp .hero-subnav-item:hover::after{
	border-bottom:4px solid #6FABDC;
}

.path-lab .hero-subnav-item:hover::after{
	border-bottom:4px solid #EF2E34;
}

.hero-subnav-item.active a{
	font-family:HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
}

.hero-subnav-item.active a, .hero-subnav-item:hover a{
	color: #7474B6 !important;
}

.path-hcp .hero-subnav-item.active a, .path-hcp .hero-subnav-item:hover a{
	color: #6FABDC !important;

}

.path-lab .hero-subnav-item.active a, .path-lab .hero-subnav-item:hover a{
	color: #EF2E34 !important;

}

.hero-subnav-item.active::after, .hero-subnav-item:hover::after{
	transform:scaleX(1);
	border-bottom: 4px solid #7474B6;
}

.path-hcp .hero-subnav-item.active::after, .path-hcp .hero-subnav-item:hover::after{
	transform:scaleX(1);
	border-bottom: 4px solid #6FABDC;
}

.path-lab .hero-subnav-item.active::after, .path-lab .hero-subnav-item:hover::after{
	transform:scaleX(1);
	border-bottom: 4px solid #EF2E34;
}

#hero-tfs-banner{
	position:absolute;
	width:250px;
	top:25px;
	right:0;
	background-color:rgba(255,255,255,.75);
	padding:20px;
	color:#555759;
}

#hero-tfs-img{
	width:165px;
	height:55px;
}

.hero .btn{
	margin:0 !important;
}

/* START HCP */

.path-hcp #hero-nav-before{
	background-color:#1a538c;
}

.path-hcp .hero-nav-item{
	background-color:#1a538c;
}

.path-hcp .hero-subnav-item:hover .hero-subnav-text span{
	border-bottom:2px solid #1a538c;
}

.path-hcp .hero-subnav-item.active .hero-subnav-text span {
	border-bottom: 2px solid #1a538c;
}

/* END HCP */

/* START LAB */

.path-lab #hero-nav-before{
	background-color:#AD1E2D;
}

.path-lab .hero-nav-item{
	background-color:#AD1E2D;
}

.path-lab .hero-subnav-item:hover .hero-subnav-text span{
	border-bottom:2px solid #AD1E2D;
}

.path-lab .hero-subnav-item.active .hero-subnav-text span {
	border-bottom: 2px solid #AD1E2D;
}

/* END HCP */

.path-phadia .hero{
	height:auto;
}

#hero-breadcrumbs-wrapper{
	z-index: 1;
	position: absolute;
	top: 6px;
	left: 0;
	right: 0;
}

#hero-breadcrumbs-wrapper .breadcrumbs-wrapper{
	padding:0 12px;
}

#hero-breadcrumbs-wrapper .container{
	padding:0 15px !important;
}

#hero-breadcrumbs-wrapper .breadcrumbs-wrapper .breadcrumb-item{
	text-transform:none;
	color:inherit;
	margin:0 10px 0 0;
	font-family:"HelveticaNeue", sans-serif;
	font-size:12px;
}

#hero-breadcrumbs-wrapper .breadcrumbs-wrapper .fa{
	color:inherit;
	margin-right:5px;
	font-size:12px;
}

#hero-breadcrumbs-wrapper .breadcrumbs-wrapper .fa::before{
	content:'\f0da';
}

#hero-breadcrumbs-wrapper .breadcrumb-item::after{
	display:none;
}

#hero-breadcrumbs-wrapper .breadcrumbs-wrapper > .breadcrumb-item{
	font-family:"HelveticaNeueBold", sans-serif;
}

.path-phadia .heroimage{
	position:relative;
}

.hero-product-section-wrapper{
	position: absolute;
	z-index: 1;
	right: 0;
	top: 30px;
	left: 0;
}

.hero-product-section{
	position:absolute;
	right:27px;
	top:0;
	width:35%;
	max-width:350px;
}

.hero-product-section-wrapper.editor-mode, .hero-product-section-wrapper.editor-mode .hero-product-section{
	position:relative;
}

.hero-product-section [class*=commercial-btn]{
	width:100%;
}

.hero-secondary-img-wrapper{
	border-radius:4px;
	background-color:#ffffff;
	border-top:8px solid #ffffff;
	-webkit-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	width:100%;
	overflow:hidden;
	margin-bottom:13px;
}

.hero-secondary-img-wrapper.video-wrapper{
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	margin-bottom:5px;
	background-color:transparent;
}

.hero-secondary-img-wrapper img{
	width:100%;
	height:auto;
}

.hero-secondary-img-wrapper video{
	-webkit-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	width:100%;
}

.hero-secondary-img-wrapper.secondary-image-border-tf-red{
	border-color:#E71316;
}

.hero-secondary-img-wrapper.secondary-image-border-tf-midnight-blue{
	border-color:#262262;
}

.hero-secondary-img-wrapper.secondary-image-border-kiwi-green{
	border-color:#7FBA00;
}

.hero-secondary-img-wrapper.secondary-image-border-kelly-green{
	border-color:#3BAD2F;
}

.hero-secondary-img-wrapper.secondary-image-border-ice-blue{
	border-color:#EBF2FA;
}

.hero-secondary-img-wrapper.secondary-image-border-link-blue{
	border-color:#1E8AE7;
}

.hero-secondary-img-wrapper.secondary-image-border-hover-blue{
	border-color:#005DAA;
}

.hero-secondary-img-wrapper.secondary-image-border-royal-purple{
	border-color:#522D6D;
}

.hero-secondary-img-wrapper.secondary-image-border-lilac-purple{
	border-color:#7474C1;
}

.hero-secondary-img-wrapper.secondary-image-border-alt-text-grey{
	border-color:#54545C;
}

.hero-secondary-img-wrapper.secondary-image-border-tf-grey{
	border-color:#555759;
}

.hero-secondary-img-wrapper.secondary-image-border-white{
	border-color:#FFFFFF;
}

.hero-secondary-img-wrapper.secondary-image-border-snow{
	border-color:#F7F7F7;
}

.hero-secondary-img-wrapper.secondary-image-border-platinum-grey{
	border-color:#F3F3F3;
}

.hero-secondary-img-wrapper.secondary-image-border-silver-grey{
	border-color:#EEEEEE;
}

.hero-secondary-img-wrapper.secondary-image-border-ash-grey{
	border-color:#DCDCDC;
}

.hero-secondary-img-wrapper.secondary-image-border-slate-grey{
	border-color:#C9C8C8;
}

.hero-secondary-img-wrapper.secondary-image-border-pewter-grey{
	border-color:#A2A2A2;
}

.hero-secondary-img-wrapper.secondary-image-border-elephant-grey{
	border-color:#7F7F7F;
}

.hero-secondary-img-wrapper.secondary-image-border-black{
	border-color:#222222;
}



@media screen and (max-width:1250px){
	.hero-subnav-left-arrow{
		left:0;
	}
	
	.hero-subnav-right-arrow{
		right:0;
	}
}

@media screen and (max-width:979px){
	#hero-breadcrumbs-wrapper{
		display:none;
	}
}


@media screen and (max-width: 768px){

	.path-phadia .hero-content h1 span{
		font-size: 18px;
		letter-spacing: 0;
		line-height: 28px;
	}

	.path-phadia.path-onelambda .hero-content h1{
		font-size: 22px;
		line-height: 26px;
	}
	.path-phadia.path-onelambda .hero-content h1 span.hero-subheading{
		font-size: 18px;
		line-height: 26px;
	}

	.hero, .path-allergy .hero{
		height:385px;
	}
	
	.hero-image-hide-mobile{
		display: none !important;
	}
	
	body:not(.path-phadia) .hero-content h1{
		font-size: 24px;
		line-height: 1.3;
	}

	body:not(.path-phadia) .hero-content p{
		font-size: 16px;
		line-height: 1.4;
	}
	.next-section-btn{
		font-size:10px;
		padding:9px;
		height:26px;
		width:103px;
	}
	
	.hero-nav-wrapper{
		height:67px;
	}

	.hero-nav-wrapper.active-bottom-offset{
		bottom:10px;
	 }

	.hero-nav{
		white-space:nowrap;
		overflow-x:scroll;
		-webkit-overflow-scrolling: touch;
		-webkit-scroll-snap-type: mandatory;
		-ms-scroll-snap-type: mandatory;
		scroll-snap-type: mandatory;
		-webkit-scroll-snap-destination: 0% 100%;
		-ms-scroll-snap-destination: 0% 100%;
		scroll-snap-destination: 0% 100%;
		-webkit-scroll-snap-points-x: repeat(100%);
		-ms-scroll-snap-points-x: repeat(100%);
		scroll-snap-points-x: repeat(100%);
	}

	#hero-nav-before, #hero-nav-after{
		display:none;
	}

	.hero-nav-item{
		width:300px !important;
		background-color:rgba(38,34,98,1) !important;
		padding:25px 15px;
		scroll-snap-align: center;
	}

	.path-hcp .hero-nav-item{
		background-color:rgba(26,83,140,1) !important;
	}

	.path-lab .hero-nav-item{
		background-color:rgba(173,30,45,1) !important;
	}

	.hero-nav-item.hover{
		padding:30px 15px;
	}

	.hero-nav-text{
		font-size: 16px;
		line-height: 1.1;
	}

	.hero-nav-item:hover .hero-subnav{
		display:block;
	}
	
	.hero-nav-ctrl{
		position: absolute;
		width: 100%;
		margin-top: -20px;
		left: 0;
		right: 0;
		text-align: center;
		bottom: 5px;
	}

	.hero-nav-ctrl div{
		width:7px;
		height:7px;
		border-radius:7px;
		border:1px solid #9B9B9B;
		display:inline-block;
		margin:0 7px;
	}

	.hero-nav-ctrl div.active{
		background-color:#FFFFFF;
		border-color:#FFFFFF;
	}

	#hero-tfs-banner{
		width: 151px;
		padding:15px;
		top:12px;
	}

	#hero-tfs-img{
		width:110px;
		height:auto;
	}

	.hero{
		padding:79px 0 67px 0 !important;
	}

	.path-allergy .hero{
		padding:79px 0 44px 0;
	}


	.hero-content{
		width:100% !important;;
		margin:0 !important;
	}



	.path-phadia .hero{
		padding:15px 0 90px !important;
	}

	.hero-product-section-wrapper{
		visibility:hidden;
		position:relative;
		right: 0;
		left: 0;
		top:-70px;
	}

	.hero-product-section{
		position:absolute;
		width:90%;
		left:0;
		right:0;
		margin:0 auto;
	}
}



.hero-video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    min-height: 421px;
}

.path-phadia .hero-video{
	min-height:0;
}

@media screen and (min-width: 769px){
	.hero-nav-item{
		margin:0 !important;
	}

}

@media screen and (max-width: 769px){
    .hero-video {
        min-width: 768px;
    }
}

.well-hero-container .heroimage, .well-hero-container .heroimage + .table_of_contents{
	padding:0;
}

.well-hero-container > .container{
	padding:0;
}

.well-hero-container{
	opacity:0;
}

.well-hero-container.not-hidden{
	opacity:1;
     transition: opacity 300ms ease-in-out;
    -webkit-transition: opacity 300ms ease-in-out;
    -moz-transition: opacity 300ms ease-in-out;
    -o-transition: opacity 300ms ease-in-out;
}

.well-hero-container .hero{
	height: auto;
	padding:0;
}

@media screen and (max-width: 768px){
	.well-hero-container .hero{
		height: inherit;
	}
}
.toc-item{
	padding:15px;
	color:#9B9A9B !important;
	display:block;
	text-align:center;
	font-size:18px;
	cursor:pointer;
	text-decoration:none !important;
	background: #f5f4f5; /* Old browsers */
	background: -moz-linear-gradient(top, #f5f4f5 0%, #e8e7e8 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #f5f4f5 0%,#e8e7e8 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #f5f4f5 0%,#e8e7e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f4f5', endColorstr='#e8e7e8',GradientType=0 ); /* IE6-9 */
	position:relative;
}

.toc-item:not(.gradient):last-child{
	background:#F6F5F6;
}

.toc-item:hover{
	color:#ffffff !important;
	background: #7caaf6; /* Old browsers */
	background: -moz-linear-gradient(top, #7caaf6 0%, #485e80 100%) !important;
	background: -webkit-linear-gradient(top, #7caaf6 0%,#485e80 100%) !important;
	background: linear-gradient(to bottom, #7caaf6 0%,#485e80 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7caaf6', endColorstr='#485e80',GradientType=0 ); /* IE6-9 */
	
	-webkit-box-shadow: 0px 5px 9px 0px rgba(185,217,255,1);
	-moz-box-shadow: 0px 5px 9px 0px rgba(185,217,255,1);
	box-shadow: 0px 5px 9px 0px rgba(185,217,255,1);
	z-index:2;
	cursor:pointer;
}

.path-patient .toc-item:hover{
	color:#ffffff !important;
	background: #7673BA; /* Old browsers */
	background: -moz-linear-gradient(top, #7673BA 0%, #454285 100%) !important;
	background: -webkit-linear-gradient(top, #7673BA 0%,#454285 100%) !important;
	background: linear-gradient(to bottom, #7673BA 0%,#454285 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7caaf6', endColorstr='#485e80',GradientType=0 ); /* IE6-9 */

	-webkit-box-shadow: 0px 5px 9px 0px rgba(182,180,223,1);
	-moz-box-shadow: 0px 5px 9px 0px rgba(182,180,223,1);
	box-shadow: 0px 5px 9px 0px rgba(182,180,223,1);
	z-index:2;
	cursor:pointer;
}

.toc-item:last-child .toc-triangle-border{
	display:none;
}

.toc-item:hover .toc-triangle-border{
	
	border-left: 10px solid rgba(185,217,255,.1);
	border-right: 10px solid rgba(185,217,255,.1);
	border-top: 10px solid #485e80;
}

.path-patient .toc-item:hover .toc-triangle-border{

	border-left: 10px solid rgba(182,180,223,.1);
	border-right: 10px solid rgba(182,180,223,.1);
	border-top: 10px solid #454285;
}

.toc-triangle-border{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	bottom: -10px;
	margin: 0 auto;
	text-align: center;
	content: '';
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #e8e7e8;
	z-index: 100;
	color: #ffffff;
}

.hero-toc-shadow{
	height:26px;
	clear:both;
	background: -moz-linear-gradient(to bottom, rgba(148,148,148,.24) 0%,rgba(148,148,148,0) 100%);
	background: -webkit-linear-gradient(to bottom, rgba(148,148,148,.24) 0%,rgba(148,148,148,0) 100%);
	background: linear-gradient(to bottom, rgba(148,148,148,.24) 0%,rgba(148,148,148,0) 100%);
}

/* Text component */

body:not(.path-phadia):not(.path-procalcitonin) .text-cmp {
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #575757;
	line-height: 24px;
	overflow-wrap: break-word;
}

body:not(.path-phadia):not(.path-procalcitonin) .text-cmp h1 {
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
	font-size: 34px;
	color: #575757;
	line-height: 40px;
	margin-bottom:20px;
	padding: 0 5px;
}

body:not(.path-phadia):not(.path-procalcitonin) .text-cmp h2{
	padding: 0 5px;
	margin-bottom: 10px;
}

body:not(.path-phadia):not(.path-procalcitonin) .text-cmp h3 {
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-weight:normal;
	font-size: 20px;
	color: #7474B6;
	text-transform:uppercase;
	margin-bottom: 10px;
	border-bottom: 1px solid #D8D8D8;
	padding: 0 5px 10px 5px;
}

.path-hcp .text-cmp h3{
	color: #6FABDC !important;
}

.path-lab .text-cmp h3{
	color: #EF2E34;
}

body:not(.path-phadia):not(.path-procalcitonin) .text-cmp h4 {
	font-size: 24px;
	color: #575757;
	line-height: 30px;
	margin-bottom: 10px;
	padding:0 5px;
}

body:not(.path-phadia):not(.path-procalcitonin) .text-cmp h5, body:not(.path-phadia):not(.path-procalcitonin) .text-cmp h6{
	padding:0 5px;
}

.text-cmp hr {
	border: 1px solid #D8D8D8;
	border-bottom: 0;
}

body:not(.path-phadia):not(.path-procalcitonin) .text-cmp p {
	padding: 0 5px;
}

.text-cmp ul{
	padding-left:20px;
}

.text-cmp ul li {
	list-style:none;
	position:relative;
	padding-left:6px;
    display:table;
}

.text-cmp ol{
    padding-left:5px;
}

.path-phadia .text-cmp ol, .path-phadia .text-cmp ol li{
	padding-left:13px;
}

.path-phadia .text-cmp .text-wrapper:not([class*="list-style-"]) ul li {
	padding-left:13px;
}

.path-phadia .text-cmp.list-style-two ul li {
	padding-left:13px !important;
}

.path-phadia .text-cmp .text-wrapper:not([class*="list-style-"]) ul li::before{
	font-size:5px;
	top: 7px !important;
}

.path-onelambda .text-cmp .text-wrapper:not([class*="list-style-"]) ul li::before {
	top:1px !important;
}

.path-phadia .text-cmp .text-wrapper[class*="list-style-"] ul li{
	padding-left:22px;
}

.text-cmp .text-wrapper:not([class*="list-style-"]) ul li::before, .text-cmp.cq-Editable-dom.is-edited li::before {
	content: '\f111';
    display: block;
    position: absolute;
    left: -8px;
    top: -3px;
    font-family: FontAwesome;
    font-size: 8px;
}

.text-cmp a.italic-link {
	font-family: HelveticaNeueLTStd-BdIt, Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: #7474B6;
	text-decoration: underline;
	font-style:italic;
}

.path-hcp .text-cmp a.italic-link{
	color: #6FABDC;
}

.path-lab .text-cmp a.italic-link{
	color: #EF2E34;
}

/*New Classes*/


.text-cmp.list-style-one ul li::before {
    content: '\f058';
    display: block;
    position: absolute;
    left: -15px;
    top: -2px;
    font-family: FontAwesome;
}

.path-phadia .text-cmp.list-style-red-check.text-wrapper ul li::before {
	content: '\2713';
	display: block;
	position: absolute;
	left: -8px;
	top: 2px !important;
	transform: rotate(5deg);
	font-size: 18px;
	color: #E71316;
	letter-spacing: 0;
	line-height: 22px;
	font-weight: 500;
}

.text-cmp.list-style-check ul li::before {
    content: '\f00c';
    display: block;
    position: absolute;
    left: -15px;
    top: -2px;
    font-family: FontAwesome;
}

.text-cmp.list-style-check-square ul li::before {
    content: '\f14a';
    display: block;
    position: absolute;
    left: -15px;
    top: -2px;
    font-family: FontAwesome;
}

.text-cmp.list-style-arrow-right ul li::before {
    content: '\f061';
    display: block;
    position: absolute;
    left: -15px;
    top: -2px;
    font-family: FontAwesome;
}

.text-cmp.list-style-arrow-circle-right ul li::before {
    content: '\f0a9';
    display: block;
    position: absolute;
    left: -15px;
    top: -2px;
    font-family: FontAwesome;
}

.text-cmp.list-style-times ul li::before {
    content: '\f00d';
    display: block;
    position: absolute;
    left: -15px;
    top: -2px;
    font-family: FontAwesome;
}                            

.text-cmp.list-style-times-circle ul li::before {
    content: '\f057';
    display: block;
    position: absolute;
    left: -15px;
    top: -2px;
    font-family: FontAwesome;
}    

.text-cmp.list-style-two ul li::before {
    content: '\f111';
    display: block;
    position: absolute;
    left: -8px;
    top: -3px;
    font-family: FontAwesome;
    font-size: 8px !important;
}

.path-phadia .text-cmp.list-style-two ul li::before {
	font-size:5px !important;
	top: 7px !important;
}

.path-phadia.path-onelambda .text-cmp.list-style-two ul li::before{
	top:1px !important;
}

.text-cmp.list-style-three ul li::before{
	content: '';
}

.text-cmp.list-style-bg ul li::before{
    font-size:24px;
}                

.text-cmp.list-style-three ul li{
	list-style-type: none;
}

.text-cmp img.pull-left{
    margin-right:20px;
}

.text-cmp img.pull-right{
    margin-left: 20px;
}

.text-cmp img.img-50{
	width: 50%;
}

.text-cmp img.img-33{
	width: 33%;
}
.center{
        text-align:center;
}

.font-color-white p, 
.font-color-white h1, 
.font-color-white h2, 
.font-color-white h3, 
.font-color-white h4, 
.font-color-white h5,
.font-color-white h6, 
.font-color-white li {
	color:#ffffff !important;
}

.font-color-gray p, 
.font-color-gray h1, 
.font-color-gray h2, 
.font-color-gray h3, 
.font-color-gray h4, 
.font-color-gray h5,
.font-color-gray h6, 
.font-color-gray li {
	color:#909195 !important;
}

.text-cmp.light-font p,
.text-cmp.light-font li,
.text-cmp.light-font h1,
.text-cmp.light-font h2,
.text-cmp.light-font h3,
.text-cmp.light-font h4,
.text-cmp.light-font h5,
.text-cmp.light-font h6{
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
}
.text-cmp.roman-font p,
.text-cmp.roman-font li,
.text-cmp.roman-font h1,
.text-cmp.roman-font h2,
.text-cmp.roman-font h3,
.text-cmp.roman-font h4,
.text-cmp.roman-font h5,
.text-cmp.roman-font h6{
	font-family: HelveticaNeueLTStd-Roman, Helvetica, Arial, sans-serif;
}
.text-cmp.medium-font p,
.text-cmp.medium-font li,
.text-cmp.medium-font h1,
.text-cmp.medium-font h2,
.text-cmp.medium-font h3,
.text-cmp.medium-font h4,
.text-cmp.medium-font h5,
.text-cmp.medium-font h6{
	font-family: HelveticaNeueLTStd-Md, Helvetica, Arial, sans-serif;
}
.text-cmp.bold-font p,
.text-cmp.bold-font li,
.text-cmp.bold-font h1,
.text-cmp.bold-font h2,
.text-cmp.bold-font h3,
.text-cmp.bold-font h4,
.text-cmp.bold-font h5,
.text-cmp.bold-font h6{
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
}
.text-cmp.light-font-it p,
.text-cmp.light-font-it li,
.text-cmp.light-font-it h1,
.text-cmp.light-font-it h2,
.text-cmp.light-font-it h3,
.text-cmp.light-font-it h4,
.text-cmp.light-font-it h5,
.text-cmp.light-font-it h6{
	font-family: HelveticaNeueLTStd-LtIt, Helvetica, Arial, sans-serif;
}
.text-cmp.medium-font-it p,
.text-cmp.medium-font-it li,
.text-cmp.medium-font-it h1,
.text-cmp.medium-font-it h2,
.text-cmp.medium-font-it h3,
.text-cmp.medium-font-it h4,
.text-cmp.medium-font-it h5,
.text-cmp.medium-font-it h6{
	font-family: HelveticaNeueLTStd-MdIt, Helvetica, Arial, sans-serif;
}
.text-cmp.bold-font-it p,
.text-cmp.bold-font-it li,
.text-cmp.bold-font-it h1,
.text-cmp.bold-font-it h2,
.text-cmp.bold-font-it h3,
.text-cmp.bold-font-it h4,
.text-cmp.bold-font-it h5,
.text-cmp.bold-font-it h6{
	font-family: HelveticaNeueLTStd-BdIt, Helvetica, Arial, sans-serif;
}

.text-cmp b, .text-cmp strong {
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
}

.path-phadia .text-cmp b, .path-phadia .text-cmp strong {
	font-family:"HelveticaNeueBold", sans-serif;
}

.list-style-bg ul{
	padding-left:0;  
}

.list-style-bg ul li::before{
   left:10px !important;
   top:50% !important;
   margin-top:-14px !important;
}

.list-style-bg ul li{
 	border-radius:19px;
    padding:15px 15px 13px 38px;
    margin:7px;
}

.list-style-two.list-style-bg ul li{
	padding:15px 15px 13px 23px;
}

.list-style-three.list-style-bg ul li{
	padding:15px;
}

.list-style-bg.small-bg ul li{
	border-radius:10px;
	padding:4px 20px 6px 13px;
	font-family:"HelveticaNeueBold", sans-serif;
	font-size:11px;
	line-height:1;
}
.list-style-bg.small-bg ul li::before{
	display:none;
}
        
.list-style-white-bg ul li{
	background-color:#ffffff;
    color:#575757 !important;
}

.path-patient .list-style-buyer-bg-light ul li{
	background-color:#7474b6;
    color:#ffffff;
}

.path-hcp .list-style-buyer-bg-light ul li{
	background-color:#6FABDC;
    color:#ffffff;
}

.path-lab .list-style-buyer-bg-light ul li{
	background-color:#EF2E34;
    color:#ffffff;
}

.text-cmp.list-align-center li{
	margin-left:auto;
    margin-right:auto;
}

.text-cmp.list-align-right li{
	margin-left:auto;
    margin-right:0;
}

[class^="path-"] .well-bg-gray > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(246, 246, 246, 0), #F6F6F6);
}
[class^="path-"] .well-bg-warm-gray > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(155, 155, 155, 0), #9b9b9b);
}
[class^="path-"] .well-bg-warm-white > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
}
[class^="path-"] .well-bg-dark > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(85, 87, 89, 0), #555759);
}
.path-patient .well-bg-buyer-type-light > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(116, 116, 193, 0), #7474C1);
}
.path-hcp .well-bg-buyer-type-light > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(111, 171, 220, 0), #6FABDC);
}
.path-lab .well-bg-buyer-type-light > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(238, 49, 52, 0), #EE3134);
}
.path-patient .well-bg-buyer-type-dark > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(82, 45, 109, 0), #522D6D);
}
.path-hcp .well-bg-buyer-type-dark > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(0, 84, 139, 0), #00548B);
}
.path-lab .well-bg-buyer-type-dark > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(173, 30, 45, 0), #AD1E2D);
}
.path-patient .well-bg-buyer-type-alt > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(237, 119, 0, 0), #ED7700);
}
.path-hcp .well-bg-buyer-type-alt > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(238, 49, 52, 0), #EE3134);
}
.path-lab .well-bg-buyer-type-alt > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(0, 102, 128, 0), #006680);
}
[class^="path-"] .well-bg-vibrant-blue > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(97, 168, 255, 0), #61A8FF);
}
[class^="path-"] .well-bg-dark-blue > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(58, 80, 107, 0), #3A506B);
}
[class^="path-"] .well-bg-orange > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(255, 158, 61, 0), #FF9E3D);
}
[class^="path-"] .well-bg-yellow > .container > .aem-Grid > .text-cmp >  .hidden-read-more > .text-wrapper::after{
	background-image: linear-gradient(to bottom, rgba(255, 205, 78, 0), #FFCE4E);
}


.hidden-read-more > .text-wrapper{
	max-height:100px;
	overflow:hidden;
	position:relative;
}

.hidden-read-more.open .readmore-btn-wrapper, .hidden-read-more .fa-minus-circle{
	display:none;
}

.hidden-read-more.open.read-more-collapsible .readmore-btn-wrapper{
	display:block;
}

.hidden-read-more.open.read-more-collapsible .fa-minus-circle{
	display:inline-block;
}

.hidden-read-more.open.read-more-collapsible .fa-plus-circle{
	display:none;
}

.hidden-read-more.open > .text-wrapper::after{
	opacity:0;
}

.hidden-read-more > .text-wrapper::after{
	content:'';
	display:block;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:50px;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    opacity:1;
     transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
}

.readmore-btn-wrapper{
    text-align: center;
	margin-top: 10px;
}

.readmore-btn{
    position: relative;
    cursor: pointer;
    display:inline-block;
}

.readmore-btn .fa{
	color:#B5B4B5;
	font-size:28px;
}

.hzbar::before{
	content:"";
	display: inline-block;
	height: 0.5em;
	vertical-align: middle;
	width: 50px;
	border-top: 2px solid #B5B4B5;
	top:0;
	margin-top:-5px;
}

.readmore-btn:hover .fa{
	color:#61A8FF;
}

.readmore-btn:hover .hzbar::before{
	border-color:#61A8FF;
}

.readmore-btn-wrapper.white-read-more-btn .readmore-btn .fa{
	color:#ffffff;
}

.readmore-btn-wrapper.white-read-more-btn .hzbar::before{
	border-color:#ffffff;
}

.readmore-btn-wrapper.white-read-more-btn .readmore-btn:hover{
	opacity:.7;
}

.text-cmp .text-cmp-blue-font{
	color:#71a7f8 !important;
}

.text-cmp .text-cmp-white-font{
	color:#ffffff !important;
}

.text-cmp .text-cmp-yellow-font{
	color:#FEC43D !important;
}

.text-cmp .text-cmp-gray-font{
	color:#909195 !important;
}


.text-cmp-v1 {
  margin: 0 auto;
  /*Instrument Overview Styles*/
}
.text-cmp-v1 table {
  border-top: 0;
  border-collapse: collapse !important;
  clear: both;
  border: 0;
}
.text-cmp-v1 td,
.text-cmp-v1 th {
  padding: 15px !important;
  text-align: center;
}
.text-cmp-v1 th {
  font-weight: normal !important;
  font-family: HelveticaNeueLTStd-Md !important;
  border: 0 !important;
}
.text-cmp-v1 .path-patient th {
  background-color: #7474B6 !important;
}
.text-cmp-v1 .path-hcp th {
  background-color: #6FABDC !important;
}
.text-cmp-v1 .path-lab th {
  background-color: #EF2E34 !important;
}
.text-cmp-v1 .path-patient thead {
  border: 1px solid #7474B6;
}
.text-cmp-v1 .path-hcp thead {
  border: 1px solid #6FABDC;
}
.text-cmp-v1 .path-lab thead {
  border: 1px solid #EF2E34;
}
.text-cmp-v1 .text-wrapper.overview table tr,
.text-cmp-v1 .text-wrapper.overview table th {
  background-color: #ffffff !important;
  border: 0 !important;
}
.text-cmp-v1 .text-wrapper.overview table th {
  font-size: 16px;
  color: #3587B9 !important;
  font-family: HelveticaNeueLTStd-BdIt, Helvetica, Arial, sans-serif !important;
}
.text-cmp-v1 .text-wrapper.overview .sticky-thead table th img {
  display: none;
}
.text-cmp-v1 .path-patient .overview th,
.text-cmp-v1 .path-lab .overview th,
.text-cmp-v1 .path-hcp .overview th {
  background-color: #fff;
}
.text-cmp-v1 td {
  border: 1px solid #D1D1D1 !important;
  color: #575757;
  font-size: 16px;
}
.text-cmp-v1.white-td-color table td {
  color: #ffffff;
}
.text-cmp-v1 table caption {
  display: none;
}
.text-cmp-v1 .show-table-caption caption {
  background-color: #3A506B;
  text-align: center;
  color: #ffffff;
  padding: 15px;
  font-size: 20px;
  margin: 0 5px;
  font-family: HelveticaNeueLTStd-Md;
}
.text-cmp-v1 .show-table-caption > caption {
  display: block;
}
.text-cmp-v1 .text-wrapper.overview td {
  text-align: left;
}
.text-cmp-v1 .text-wrapper.overview tbody tr td:first-child {
  font-family: HelveticaNeueLTStd-Bd;
  font-size: 15px;
  color: #575757;
  line-height: 22px;
}
.text-cmp-v1 .text-wrapper.overview table thead {
  border-bottom: 1px solid #9C9C9C;
}
.text-cmp-v1 .text-wrapper.overview table.sticky-enabled thead {
  border-bottom: 1px solid #9C9C9C;
}
.text-cmp-v1 .highlight {
  background-color: #f5f5f5;
}
.text-cmp-v1 .overview .sticky-wrap td {
  border-left: 0 !important;
  border-right: 0 !important;
  position: relative;
}
.text-cmp-v1 .overview .sticky-wrap td::before {
  content: ' ';
  height: 27px;
  left: 0;
  width: 1px;
  background-color: #D1D1D1;
  position: absolute;
  top: 50%;
  margin-top: -14px;
}
.text-cmp-v1 .overview .sticky-wrap td:first-child::before {
  display: none;
}
.text-cmp-v1 .sticky-wrap {
  margin: 0 !important;
  padding: 0 5px;
}
.text-cmp-v1 .text-wrapper table.sticky-enabled td p {
  margin: 0;
}
.text-cmp-v1 .overview td {
  border-left: 0 !important;
  border-right: 0 !important;
  position: relative;
}
.text-cmp-v1 .overview td::before {
  content: ' ';
  height: 27px;
  left: 0;
  width: 1px;
  background-color: #D1D1D1;
  position: absolute;
  top: 50%;
  margin-top: -14px;
}
.text-cmp-v1 .overview td:first-child::before {
  display: none;
}
.text-cmp-v1 .path-patient .text-wrapper.caption-buyer-type-bg caption {
  background-color: #7474B6;
}
.text-cmp-v1 .path-hcp .text-wrapper.caption-buyer-type-bg caption {
  background-color: #6FABDC;
}
.text-cmp-v1 .path-lab .text-wrapper.caption-buyer-type-bg caption {
  background-color: #EF2E34;
}
.text-cmp-v1 .text-wrapper.caption-vibrant-blue-bg caption {
  background-color: #61A8FF;
}
.text-cmp-v1 .text-wrapper.white-td-bg-color table tr {
  background-color: #ffffff;
}
.text-cmp-v1 .text-wrapper table.sticky-enabled td p {
  margin: 0;
}

.sticky-wrap {
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	margin: 3em 0;
	width: 100%;
}
.sticky-wrap div[class^='sticky'] {
	overflow: hidden;
}
.sticky-wrap tfoot {
	display: none;
}
.sticky-wrap div table {
	margin: 0;
	position: relative;
	width: auto; /* Prevent table from stretching to full size */
}
.sticky-wrap .sticky-thead,
.sticky-wrap .sticky-col,
.sticky-wrap .sticky-intersect {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	transition: opacity .25s ease-in-out;
}
	.sticky-wrap .sticky-thead {
		box-shadow: 0 0.25em 0.1em -0.1em rgba(0,0,0,.125);
		z-index: 100;
		width: 100%; /* Force stretch */
		margin:0 5px;
	}
	.sticky-wrap .sticky-intersect {
		opacity: 1;
		z-index: 150;
	}
		.sticky-wrap .sticky-intersect th {
			background-color: #666;
			color: #eee;
		}
.sticky-wrap td,
.sticky-wrap th {
	box-sizing: border-box;
}
.sticky-wrap thead th {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.sticky-enabled {
	margin: 0;
	width: 100%;
}

/* Sort handlers */
.sticky-wrap.sortable thead {
	cursor: pointer;
}
.sticky-wrap.sortable thead th {
	padding-right: 3em;
	position: relative;
}
.sort-handle {
	display: block;
	position: absolute;
	top: 50%;
	right: -2em;
	width: 1em;
	height: 1em;
	margin-top: -.5em;
}
	.sort-handle:before,
	.sort-handle:after {
		content: '';
		position: absolute;
		left: 0;
		width: 0;
		height: 0;
		transition: .125s ease-in-out;
	}
		.sort-handle:before {
			border-top: .4em solid transparent;
			border-right: .5em solid transparent;
			border-bottom: .4em solid rgba(0,0,0,.25);
			border-left: .5em solid transparent;		
		}
		.sort-handle:after {
			border-top: .4em solid rgba(0,0,0,.25);
			border-right: .5em solid transparent;
			border-bottom: .4em solid transparent;
			border-left: .5em solid transparent;			
		}
			.sticky-intersect .sort-handle:before { border-bottom-color: rgba(255,255,255,.5); }
			.sticky-intersect .sort-handle:after  { border-top-color: rgba(255,255,255,.5); }

		.sort-default .sort-handle:before {
			opacity: 1;
			top: -0.4em;
		}
		.sort-default .sort-handle:after {
			opacity: 1;
			bottom: -0.4em;
		}
		.sort-asc .sort-handle:before {
			top: -0.1em;
		}
		.sort-asc .sort-handle:after {
			opacity: 0;
		}
		.sort-desc .sort-handle:before {
			opacity: 0;
		}
		.sort-desc .sort-handle:after {
			bottom: -0.1em;
		}

/* To hide sticky column and intersect when screen gets too narrow */
@media only screen and (max-width: 768px) {
	html {
		font-size: 14px;
	}
	header,
	#final .sticky-wrap {
		max-height: 25rem;
	}

}
.path-onelambda .text-cmp .reg-table table {
  border-collapse: unset !important;
}
.path-onelambda .text-cmp .reg-table thead tr th,
.path-onelambda .text-cmp .reg-table tbody tr td {
  text-align: left;
  border: none !important;
}
.path-onelambda .text-cmp .reg-table thead tr th {
  font-size: 20px;
  font-weight: bolder !important;
  height: 18px;
  background-color: #535B6B !important;
  color: #FFFFFF !important;
}
.path-onelambda .text-cmp .reg-table thead tr th:first-child {
  border-top-left-radius: 5px;
}
.path-onelambda .text-cmp .reg-table thead tr th:last-child {
  border-top-right-radius: 5px;
}
.path-onelambda .text-cmp .reg-table tbody tr {
  background-color: #FFFFFF;
}
.path-onelambda .text-cmp .reg-table tbody tr:nth-child(odd) {
  background-color: #e8e8e9;
}
.path-onelambda .text-cmp .reg-table tbody tr:nth-child(even) td:first-child {
  border-left: 1px solid #e8e8e9 !important;
}
.path-onelambda .text-cmp .reg-table tbody tr:nth-child(even) td:last-child {
  border-right: 1px solid #e8e8e9 !important;
}
.path-onelambda .text-cmp .reg-table tbody tr:last-child td {
  border-bottom: 1px solid #e8e8e9 !important;
}
.path-onelambda .text-cmp .reg-table tbody tr td {
  vertical-align: top;
  padding: 5px 15px 5px 15px !important;
  color: #222222;
}
.path-onelambda .text-cmp .reg-table tbody tr td:first-child {
  font-weight: bold;
  font-size: 16px;
  color: #121619;
  letter-spacing: 0;
  line-height: 24px;
  font-family: "Helvetica Neue";
  padding-left: 20px !important;
}
.path-onelambda .text-cmp .reg-table tbody tr td:before {
  display: none !important;
}
.path-onelambda .text-cmp .reg-table tbody tr td ul {
  padding-left: 16px;
}
.path-onelambda .text-cmp .reg-table tbody tr td ul li {
  width: 100%;
}
.path-onelambda .text-cmp .reg-table tbody tr td ul li:before {
  left: -16px;
}
.path-onelambda .text-cmp .reg-table tbody tr td ol {
  padding-left: 17px;
}
.path-onelambda .text-cmp .reg-table tbody tr td ol li {
  padding-left: 0;
}
.path-onelambda .text-cmp .reg-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
.path-onelambda .text-cmp .reg-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}

.text-cmp-v2 {
  margin: 0 auto;
}
.text-cmp-v2 table {
  border-top: 0;
  clear: both;
  border-collapse: collapse;
  border: 0;
}
.text-cmp-v2 table td,
.text-cmp-v2 table th {
  padding: 15px !important;
  text-align: center;
}
.text-cmp-v2 table td {
  border: 1px solid #D1D1D1;
  color: #575757;
  font-size: 16px;
}
.text-cmp-v2 table th {
  text-align: left;
  font-weight: normal !important;
  font-family: HelveticaNeueLTStd-Md !important;
}
.text-cmp-v2 table caption {
  background-color: #3A506B;
  text-align: center;
  color: #ffffff;
  padding: 15px;
  font-size: 20px;
  margin: 0 5px;
  font-family: HelveticaNeueLTStd-Md;
}
.text-cmp-v2 .text-wrapper:not(.inside-borders):not(.borderless) table tr th {
  border: 1px solid #D1D1D1 !important;
}
.text-cmp-v2 .text-wrapper.inside-borders table tbody tr td {
  text-align: left;
  border-left: 0 !important;
  border-right: 0 !important;
  position: relative;
}
.text-cmp-v2 .text-wrapper.inside-borders table tbody tr td:first-child {
  font-family: HelveticaNeueLTStd-Bd;
  font-size: 15px;
  color: #575757;
  line-height: 22px;
}
.text-cmp-v2 .text-wrapper.inside-borders table tbody tr td:first-child::before {
  display: none;
}
.text-cmp-v2 .text-wrapper.inside-borders table tbody tr td::before {
  content: ' ';
  height: 27px;
  left: 0;
  width: 1px;
  background-color: #D1D1D1;
  position: absolute;
  top: 50%;
  margin-top: -14px;
}
.text-cmp-v2 .text-wrapper.inside-borders table tbody tr,
.text-cmp-v2 .text-wrapper.inside-borders table tbody th {
  background-color: #ffffff !important;
  border: 0 !important;
}
.text-cmp-v2 .text-wrapper.inside-borders table tbody th {
  text-align: left;
  font-size: 16px;
  font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif !important;
}
.text-cmp-v2 .text-wrapper.borderless table {
  border-collapse: separate;
  border-spacing: 12px;
}
.text-cmp-v2 .text-wrapper.borderless table tr th {
  background-color: #00677E;
  color: #ffffff;
  text-align: center;
}
.text-cmp-v2 .text-wrapper.borderless table tr td {
  padding: 10px !important;
}
.text-cmp-v2 .text-wrapper.borderless table tr th,
.text-cmp-v2 .text-wrapper.borderless table tr td {
  border: none;
}
.text-cmp-v2 .text-wrapper.borderless table tr th:first-child,
.text-cmp-v2 .text-wrapper.borderless table tr td:first-child {
  text-align: left;
}
.text-cmp-v2 .white-td-color table td {
  color: #ffffff;
}
.text-cmp-v2 .text-wrapper.white-td-bg-color table tr {
  background-color: #ffffff;
}
.text-cmp-v2 table tr.odd-row td {
  background-color: var(--odd-rows-bg-color);
}
.text-cmp-v2 table tr.even-row td {
  background-color: var(--even-rows-bg-color);
}
.text-cmp-v2 .highlight {
  background-color: #f5f5f5;
}
.text-cmp-v2 .text-wrapper.caption-vibrant-blue-bg caption {
  background-color: #61A8FF;
}
.text-cmp-v2 .text-wrapper table td p {
  margin: 0;
}

.cmp-well .well2 {
  background-size: cover;
  position: relative;
}
.cmp-well .well2.with-video {
  overflow: hidden;
}
.cmp-well .well2.with-video > .container {
  position: relative;
  z-index: 1;
}
.cmp-well .well2.with-video > video.bg-vid {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
}
.cmp-well .well2.with-border {
  border: 1px solid;
}
.cmp-well .well2.with-border-radius {
  border-radius: 45px;
}
.cmp-well .well2.with-border-radius.small-radius {
  border-radius: 20px;
}
.cmp-well .well2.with-border-radius.xs-br-left-0 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cmp-well .well2.with-border-radius.xs-br-right-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (min-width: 576px) {
  .cmp-well .well2.with-border-radius.sm-br-left-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .cmp-well .well2.with-border-radius.sm-br-right-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 768px) {
  .cmp-well .well2.with-border-radius.md-br-left-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .cmp-well .well2.with-border-radius.md-br-right-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 992px) {
  .cmp-well .well2.with-border-radius.lg-br-left-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .cmp-well .well2.with-border-radius.lg-br-right-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1200px) {
  .cmp-well .well2.with-border-radius.xl-br-left-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .cmp-well .well2.with-border-radius.xl-br-right-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1400px) {
  .cmp-well .well2.with-border-radius.xxl-br-left-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .cmp-well .well2.with-border-radius.xxl-br-right-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cmp-well .well2.with-drop-shadow {
  box-shadow: 0 4px 6px 0 rgba(34, 34, 34, 0.1);
}
.cmp-well .well2.modal-or-link:hover {
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.fixed-well{
	position:fixed;
	bottom:0;
	width:100%;
	z-index:120;
}

.fixed-well.zero-padding{
	padding:0 !important;
}

.fixed-well > .container{
	display:none;
	max-height: calc(100vh - 100px);
	overflow: auto;
}

.fixed-well .fa-chevron-down{
	display:none;
}

.fixed-well.not-fixed{
	position:relative;
}

.fixed-well.not-fixed > .container{
	display:block !important;
	max-height:none;
}

.fixed-well .sticky-section{
	text-align:center;
	font-size:18px;
	cursor:pointer;
	padding:15px;
}

.fixed-well.show-container .fixed-well-title, .fixed-well.show-container .fa-chevron-up{
	display:none;
}

.fixed-well-title.font-color-white, .fixed-well-btn.font-color-white{
	color:#ffffff;
}

.fixed-well.show-container .fa-chevron-down{
	display:inline;
}                                        

.well-cmp {
	margin:0 !important;
	border:0 !important;
	padding:0 !important;
}

.well-cmp .well-bg-gray{
	background-color:#F6F6F6;
}

.well-cmp .well-bg-warm-gray{
	background-color:#9b9b9b;
}

.well-cmp .well-bg-white{
	background-color:#FFFFFF;
}

.well-cmp .well-bg-dark{
	color:#ffffff;
	background-color:#555759;
}

.well-cmp .well-bg-transparent{
	background-color:transparent;
}

.well-cmp .well-bg-purple, body.patient .well-bg-buyer-type{
	background-color:#7474C1;
	color:#ffffff !important;
}

.well-bg-purple .text-cmp {
	text-align:center;
}

.well-bg-purple .text-cmp h1, .well-bg-purple .text-cmp p {
	color:#ffffff !important;
}

.well-bg-dark .text-cmp h1, .well-bg-dark .text-cmp p {
	color:#ffffff !important;
}

.well-bg-purple .btn{
	background-color:#ffffff !important;
	color: #766FC6 !important;
	-webkit-box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.2) !important;
	-moz-box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.2) !important;
	box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.2) !important;
}

.well.hover-well{
	cursor:pointer;
}

.well.hover-well:hover{
	color:#ffffff;
	background-color:#7772b6;
}

.well-cmp .well-shadow{
	-webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
	margin-bottom:20px !important;
}

.well-cmp .well-shadow.well-shadow-style-2{
	-webkit-box-shadow: 2px 32px 64px -10px rgba(189,205,219,0.52);
	-moz-box-shadow: 2px 32px 64px -10px rgba(189,205,219,0.52);
	box-shadow: 2px 32px 64px -10px rgba(189,205,219,0.52);
}

.well-cmp .well-shadow.well-shadow-style-flat{
	border:1px solid #EEEEEE !important;
	border-radius:4px;
	box-shadow: none;
}
.well-cmp .well-shadow.well-shadow-style-paper{
	border:1px solid #EEEEEE !important;
	border-radius:4px;
	-webkit-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
}
.well-cmp .well-shadow.well-shadow-style-raised{
	border:1px solid #EEEEEE !important;
	border-radius:4px;
	-webkit-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
}
.well-cmp .well-shadow.well-shadow-style-float{
	border:1px solid #EEEEEE !important;
	border-radius:4px;
	-webkit-box-shadow: 0 6px 8px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 6px 8px 0 rgba(34,34,34,0.10);
	box-shadow: 0 6px 8px 0 rgba(34,34,34,0.10);
}

.well-cmp .well-shadow img{
	max-width:100%;
}

.well-cmp .well-shadow-none{

}

.well-cmp .well-padding {
	padding: 35px 15px;
}

.well-cmp .well-padding.well-shadow {
	padding: 25px 15px !important;
}

.well-shadow .container{
	padding:0;
}

.well-cmp .well-padding-off{
	padding: 0px;
}

.well-padding-off.well-shadow .container{
	margin:0;
	width:100%;
}

.well-separator .responsivegrid:not(:first-child){
	border-left: 1px solid #D8D8D8;
}

.well-separator{
	text-align:center;
}

.well-separator img{
	width:200px;
	max-width:100%;
}

.well-cmp .last-well-padding{
	//padding-bottom:100px !important;
}

.well-bg-purple.last-well-padding{
	//padding-bottom:35px !important;
}

.well-shadow.well-padding-off p {
	margin: 0;
	padding: 0;
}

.well-shadow.well-padding-off .btn {
	margin: 0;
	width: 100%;
	min-width:0;
}

.well-shadow.well-padding-off .text-cmp {
	padding: 0;
}

.well-shadow.well-padding-off .well-padding{
	padding:20px 15px;
}

.well-cmp > .outer-well-wrapper > .well-cmp-inner[data-filter="true"]{
	display:none;
}

.well-cmp > .outer-well-wrapper > .well-cmp-inner.shown{
	display:block;
}

.path-patient .well-bg-buyer-type-light{
	background-color:#7474C1;
}

.path-hcp .well-bg-buyer-type-light{
	background-color:#6FABDC;
}

.path-lab .well-bg-buyer-type-light{
	background-color:#EE3134;
}

.path-patient .well-bg-buyer-type-dark{
	background-color:#522D6D;
}

.path-hcp .well-bg-buyer-type-dark{
	background-color:#00548B;
}

.path-lab .well-bg-buyer-type-dark{
	background-color:#AD1E2D;
}

.path-patient .well-bg-buyer-type-alt{
	background-color:#ED7700;
}

.path-hcp .well-bg-buyer-type-alt{
	background-color:#EE3134;
}

.path-lab .well-bg-buyer-type-alt{
	background-color:#006680;
}

.well-border-gray{
	border: 1px solid #979697;
}

.path-patient .well-border-buyer-type-light{
	border: 1px solid #7474C1;
}

.path-hcp .well-border-buyer-type-light{
	border: 1px solid #6FABDC;
}

.path-lab .well-border-buyer-type-light{
	border: 1px solid #EE3134;
}

.path-patient .well-border-buyer-type-dark{
	border: 1px solid #522D6D;
}

.path-hcp .well-border-buyer-type-dark{
	border: 1px solid #00548B;
}

.path-lab .well-border-buyer-type-dark{
	border: 1px solid #AD1E2D;
}

.path-patient .well-border-buyer-type-alt{
	border: 1px solid #ED7700;
}

.path-hcp .well-border-buyer-type-alt{
	border: 1px solid #EE3134;
}

.path-lab .well-border-buyer-type-alt{
	border: 1px solid #006680;
}

.well-bg-orange{
	background-color:#FF9E3D;
}
.well-bg-vibrant-blue{
	background-color:#61A8FF;
}
.well-bg-dark-blue{
	background-color:#3A506B;
}
.well-bg-yellow{
	background-color:#FFCE4E;
}
.well-bg-gray-gradient-1{
	background: #B4B4B4;
	background-image: linear-gradient(180deg, rgba(255,255,255,0.00) 34%, rgba(255,255,255,0.36) 72%, #FFFFFF 100%);
}
.well-bg-gray-gradient-2{
	background-image: linear-gradient(90deg, #F6F6F6 0%, rgba(246,246,246,0.00) 97%);
}


.well-cmp .well-padding-small-v{
    padding-top:15px;
    padding-bottom:15px;
}

.well-cmp .well-padding-medium-v{
    padding-top:50px;
    padding-bottom:50px;
}

.well-cmp .well-padding-large-v{
    padding-top:100px;
    padding-bottom:100px;
}

.well-cmp .well-bottom-padding-off{
	padding-top:25px;
	padding-bottom:0;
}

.well-cmp .well-bottom-padding-swoop{
	padding-top:35px;
	padding-bottom:80px;
}

.well-cmp .well-padding-small-h{
    padding-left:15px;
    padding-right:15px;
}

.well-cmp .well-padding-border-hz{
	padding:0;
}

.well-cmp .well-padding-border-hz > .container{
	padding:0;
	width:95% !important;
}

.well-cmp .well-padding-medium-h{
    padding-left:50px;
    padding-right:50px;
}

.well-cmp .well-padding-large-h{
    padding-left:100px;
    padding-right:100px;
}


.well-cmp .well-padding-h{
	padding-left:15px;
    padding-right:15px;
}

.well-cmp .well-padding-off-h{
	padding-left:0;
    padding-right:0;
}

.path-phadia .well-padding-off-h > .container{
	padding:0;
	width:100%;
}

.well-cmp > .outer-well-wrapper > .well-table{
    display:table;
    width:100%;
}

.well-cmp > .outer-well-wrapper > .well-table > .container{
    display:table-cell;
}

.well-cmp > .outer-well-wrapper > .well-table.well-valign-top > .container{
    vertical-align:top;
}

.well-cmp > .outer-well-wrapper > .well-table.well-valign-middle > .container{
    vertical-align:middle;
}

.well-cmp >  .outer-well-wrapper > .well-table.well-valign-bottom > .container{
    vertical-align:bottom;
}

.well-cmp{
	position:relative;
}

.well-triangle-border{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	bottom: -22px;
	margin: 0 auto;
	text-align: center;
	content: '';
	width: 0;
	height: 0;
	border-left: 22px solid transparent;
	border-right: 22px solid transparent;
	border-top: 22px solid #F6F6F6;
	z-index: 100;
	color: #ffffff;
}

.well-triangle{
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	color: #ffffff;
	font-size: 34px;
	bottom: -30px;
	z-index: 101;
	color:#ffffff;
}

.accordion-content  .well-triangle {
	bottom: -22px;
}


.path-patient .well-bg-white > .well-triangle, .path-patient .well-bg-gray > .well-triangle{
	color:#7474C1;
}
.path-hcp .well-bg-white > .well-triangle, .path-hcp .well-bg-gray > .well-triangle{
	color:#6FABDC;
}
.path-lab .well-bg-white > .well-triangle, .path-lab .well-bg-gray > .well-triangle{
	color:#EE3134;
}

.path-patient .well-bg-buyer-type-light  > .well-triangle-border{
	border-top:22px solid #7474C1;
}

.path-hcp .well-bg-buyer-type-light  > .well-triangle-border{
	border-top:22px solid #6FABDC;
}

.path-lab .well-bg-buyer-type-light  > .well-triangle-border{
	border-top:22px solid #EE3134;
}

.path-patient .well-bg-buyer-type-dark  > .well-triangle-border{
	border-top:22px solid #522D6D;
}

.path-hcp .well-bg-buyer-type-dark  > .well-triangle-border{
	border-top:22px solid #00548B;
}

.path-lab .well-bg-buyer-type-dark .well-triangle-border{
	border-top:22px solid #AD1E2D;
}

.path-patient .well-bg-buyer-type-alt  > .well-triangle-border{
	border-top:22px solid #ED7700;
}

.path-hcp .well-bg-buyer-type-alt  > .well-triangle-border{
	border-top:22px solid #EE3134;
}

.path-lab .well-bg-buyer-type-alt  > .well-triangle-border{
	border-top:22px solid #006680;
}
.well-bg-white  > .well-triangle-border{
	border-top:22px solid #ffffff;
}

.well-bg-warm-gray  > .well-triangle-border{
	border-top:22px solid #9b9b9b;
}
.well-bg-dark > .well-triangle-border{
	border-top:22px solid #555759;
}

.path-patient .well-border-buyer-type-light .well-triangle{
	color: #7474C1;
}

.path-hcp .well-border-buyer-type-light .well-triangle{
	color: #6FABDC;
}

.path-lab .well-border-buyer-type-light .well-triangle{
	color: #EE3134;
}

.path-patient .well-border-buyer-type-dark .well-triangle{
	color: #522D6D;
}

.path-hcp .well-border-buyer-type-dark .well-triangle{
	color: #00548B;
}

.path-lab .well-border-buyer-type-dark .well-triangle{
	color: #AD1E2D;
}

.path-patient .well-border-buyer-type-alt .well-triangle{
	color: #ED7700;
}

.path-hcp .well-border-buyer-type-alt .well-triangle{
	color: #EE3134;
}

.path-lab .well-border-buyer-type-alt .well-triangle{
	color: #006680;
}

div[class*="well-border-"] > .well-triangle-border{
	bottom:-21px;
}

.floating-well-icon-bg{
	position:absolute;
	top:-35px;
	width:70px;
	height:70px;
	border-radius:100%;
	text-align:center;
	background-size: contain;
	-webkit-box-shadow: 0px 6px 15px 0px rgba(0,0,0,.25);
	-moz-box-shadow: 0px 6px 15px 0px rgba(0,0,0,.25);
	box-shadow: 0px 6px 15px 0px rgba(0,0,0,.25);	
}

.floating-well-icon-bg.well-icon-blue{
	background-color:#005DAA;
}
.floating-well-icon-bg.well-icon-red{
	background-color:#E71316;
}
.floating-well-icon-bg.well-icon-yellow{
	background-color:#FFCE4E;
}
.floating-well-icon-bg.well-icon-orange{
	background-color:#FF9E3D;
}
.floating-well-icon-bg.well-icon-multi{
	background-image: url('../../../etc.clientlibs/diagnostics/components/content/well/clientlib/resources/multi-color-icon.png');
}



.floating-well-icon-bg.well-icon-center{
	left:0;
	right:0;
	margin: 0 auto;
}
.floating-well-icon-bg.well-icon-left{
	left:15px;
}
.floating-well-icon-bg.well-icon-right{
	right:15px;
}

.floating-well-icon{
	position:absolute;
	top:50%;
	margin-top:-16px;
	width:32px;
	height:32px;
	left:0;
	right:0;
	margin-left:auto;
	margin-right:auto;
}

.well-swoop{
    position: absolute;
    top: -76px;
    right: 0;
    max-width:40%;
    overflow-x:hidden;
}


.well-cmp .well-paper-effect{
	transform-style: preserve-3d;
	margin-bottom:0 !important;
}

.well-paper-effect::before, .well-paper-effect::after{
	content: '';
    display:block;
	background-color:#ffffff;
	position:absolute;
	top:15px;
	width:10px;
	height: calc(100% - 15px);
	transform: translateZ(-1px);
	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
}


.well-paper-effect::before{
	left:-10px;
}
.well-paper-effect::after{
	right:-10px;
}

.well-bg-gray.well-paper-effect::before, .well-bg-gray.well-paper-effect::after{
	background-color:#F6F6F6;
}
.well-bg-warm-gray.well-paper-effect::before, .well-bg-warm-gray.well-paper-effect::after{
	background-color:#9b9b9b;
}
.well-bg-dark.well-paper-effect::before, .well-bg-dark.well-paper-effect::after{
	background-color:#555759;
}
.well-bg-orange.well-paper-effect::before, .well-bg-orange.well-paper-effect::after{
	background-color:#FF9E3D;
}
.well-bg-dark-blue.well-paper-effect::before, .well-bg-dark-blue.well-paper-effect::after{
	background-color:#3A506B;
}
.well-bg-vibrant-blue.well-paper-effect::before, .well-bg-vibrant-blue.well-paper-effect::after{
	background-color:#61A8FF;
}
.well-bg-transparent.well-paper-effect::before{
	background-color:transparent;
	box-shadow:-2px 2px 4px 1px rgba(0, 0, 0, 0.1);
}
.well-bg-transparent.well-paper-effect::after{
	background-color:transparent;
	box-shadow:2px 2px 4px 1px rgba(0, 0, 0, 0.1);
}
.well-bg-yellow.well-paper-effect::before, .well-bg-yellow.well-paper-effect::after{
	background-color:#FFCE4E;
}
.well-bg-gray-gradient-1.well-paper-effect::before, .well-bg-gray-gradient-1.well-paper-effect::after{
	background: #B4B4B4;
	background-image: linear-gradient(180deg, rgba(255,255,255,0.00) 34%, rgba(255,255,255,0.36) 72%, #FFFFFF 100%);
}
.well-bg-gray-gradient-2.well-paper-effect::before{
	background-image: linear-gradient(90deg, #F6F6F6 0%, rgba(246,246,246,0.00) 97%);
}
.well-bg-gray-gradient-2.well-paper-effect::after{
	background-image: linear-gradient(90deg, rgba(246,246,246,0.00) 0%, #F6F6F6 97%);
	box-shadow:2px 2px 4px 1px rgba(0, 0, 0, 0.1);
}
.path-patient .well-bg-buyer-type-light.well-paper-effect::before, .path-patient .well-bg-buyer-type-light.well-paper-effect::after{
	background-color:#7474C1;
}
.path-patient .well-bg-buyer-type-dark.well-paper-effect::before, .path-patient .well-bg-buyer-type-dark.well-paper-effect::after{
	background-color:#522D6D;
}
.path-patient .well-bg-buyer-type-alt.well-paper-effect::before, .path-patient .well-bg-buyer-type-alt.well-paper-effect::after{
	background-color:#ED7700;
}
.path-hcp .well-bg-buyer-type-light.well-paper-effect::before, .path-hcp .well-bg-buyer-type-light.well-paper-effect::after{
	background-color:#6FABDC;
}
.path-hcp .well-bg-buyer-type-dark.well-paper-effect::before, .path-hcp .well-bg-buyer-type-dark.well-paper-effect::after{
	background-color:#00548B;
}
.path-hcp .well-bg-buyer-type-alt.well-paper-effect::before, .path-hcp .well-bg-buyer-type-alt.well-paper-effect::after{
	background-color:#EE3134;
}
.path-lab .well-bg-buyer-type-light.well-paper-effect::before, .path-lab .well-bg-buyer-type-light.well-paper-effect::after{
	background-color:#EE3134;
}
.path-lab .well-bg-buyer-type-dark.well-paper-effect::before, .path-lab .well-bg-buyer-type-dark.well-paper-effect::after{
	background-color:#AD1E2D;
}
.path-lab .well-bg-buyer-type-alt.well-paper-effect::before, .path-lab .well-bg-buyer-type-alt.well-paper-effect::after{
	background-color:#006680;
}

[class^="path-"] .well-bg-gray > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(246, 246, 246, 0), #F6F6F6);
}
[class^="path-"] .well-bg-warm-gray > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(155, 155, 155, 0), #9b9b9b);
}
[class^="path-"] .well-bg-warm-white > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
}
[class^="path-"] .well-bg-dark > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(85, 87, 89, 0), #555759);
}
.path-patient .well-bg-buyer-type-light > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(116, 116, 193, 0), #7474C1);
}
.path-hcp .well-bg-buyer-type-light > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(111, 171, 220, 0), #6FABDC);
}
.path-lab .well-bg-buyer-type-light > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(238, 49, 52, 0), #EE3134);
}
.path-patient .well-bg-buyer-type-dark > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(82, 45, 109, 0), #522D6D);
}
.path-hcp .well-bg-buyer-type-dark > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(0, 84, 139, 0), #00548B);
}
.path-lab .well-bg-buyer-type-dark > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(173, 30, 45, 0), #AD1E2D);
}
.path-patient .well-bg-buyer-type-alt > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(237, 119, 0, 0), #ED7700);
}
.path-hcp .well-bg-buyer-type-alt > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(238, 49, 52, 0), #EE3134);
}
.path-lab .well-bg-buyer-type-alt > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(0, 102, 128, 0), #006680);
}
[class^="path-"] .well-bg-vibrant-blue > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(97, 168, 255, 0), #61A8FF);
}
[class^="path-"] .well-bg-dark-blue > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(58, 80, 107, 0), #3A506B);
}
[class^="path-"] .well-bg-orange > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(255, 158, 61, 0), #FF9E3D);
}
[class^="path-"] .well-bg-yellow > .container > .aem-Grid > .well-cmp >  .hidden-read-more > .well-cmp-inner::after{
	background-image: linear-gradient(to bottom, rgba(255, 205, 78, 0), #FFCE4E);
}


.hidden-read-more > .well-cmp-inner{
	max-height:100px;
	overflow:hidden;
	position:relative;
}

.hidden-read-more.open > .well-cmp-inner::after{
	opacity:0;
}

.hidden-read-more > .well-cmp-inner::after{
	content:'';
	display:block;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:50px;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    opacity:1;
     transition: opacity 1s linear;
    -webkit-transition: opacity 1s linear;
    -moz-transition: opacity 1s linear;
    -o-transition: opacity 1s linear;
}

.well-cmp-inner .well-side-border{
	position:absolute;
	width:9px;
	content:'';
	top:0;
	bottom:0;
	border-radius:6px;
	background-color:#222222;
}

.well-cmp-inner .well-side-border.left-well-border{
	left:10px;
}

.well-cmp-inner .well-side-border.right-well-border{
	right:10px;
}

.well-anchor{
	text-align:center;
	font-size:18px;
}

.well-anchor a, .well-anchor a:hover{
	color:#222222 !important;
}
.path-procalcitonin .well-anchor a{
	color:#121619 !important;
}
.path-procalcitonin .well-anchor a:hover{
	color:#004A5C !important;
}

@media screen and (max-width: 768px){

	.well-cmp .well-shadow{

	}
	
	.well-cmp .well-shadow.container{
		padding:0;
	}

	.well-separator .responsivegrid:not(:first-child){
		border-left:0;
		border-top: 1px solid #D8D8D8;
	}

    .well-cmp .well-padding-medium-v{
        padding-top:25px;
        padding-bottom:25px;
    }
    
    .well-cmp .well-padding-large-v{
        padding-top:50px;
        padding-bottom:50px;
    }
    
    
    .well-cmp .well-padding-medium-h{
        padding-left:25px;
        padding-right:25px;
    }
    
    .well-cmp .well-padding-large-h{
        padding-left:50px;
        padding-right:50px;
    }
    
    .well-swoop{
		display:none;
	}
	
	.well-cmp .well-bottom-padding-swoop{
		padding-bottom:35px;
	}
	.well-cmp .well-padding-border-hz{
		padding:10px;
	}
}

.pct-container.pct-cta-box.pct-text-callout .--headline {
  font-size: 40px;
  line-height: 48px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .pct-container.pct-cta-box.pct-text-callout .--headline {
    font-size: 32px;
    line-height: 39px;
  }
}

.cmp-container-inner.equalize-well-heights > .aem-Grid {
  display: flex;
  flex-wrap: wrap;
}
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > .well,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > .well2,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > a {
  height: 100%;
}
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > .outer-well-wrapper,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > a {
  height: 100%;
}
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > .outer-well-wrapper > .well,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > a > .well,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > .outer-well-wrapper > .well2,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > a > .well2 {
  height: 100%;
}
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > .outer-well-wrapper > a > .well,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > a > a > .well,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > .outer-well-wrapper > a > .well2,
.cmp-container-inner.equalize-well-heights > .aem-Grid > .cmp-well > a > a > .well2 {
  height: 100%;
}

#rss-feed-cmp .wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
#rss-feed-cmp #rssFeedContainer {
  font-family: HelveticaNeue, sans-serif;
  font-size: 14px;
  color: #222222;
  letter-spacing: 0;
  line-height: 24px;
  overflow: visible;
}
#rss-feed-cmp #rssFeedContainer .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
#rss-feed-cmp #rssFeedContainer .row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}
#rss-feed-cmp #rssFeedContainer table {
  width: 100%;
  table-layout: fixed;
}
#rss-feed-cmp #rssFeedContainer .rss-row {
  border-bottom: 1px solid #B5B7B4;
  padding: 12px 0;
  position: relative;
  margin: 0;
}
#rss-feed-cmp #rssFeedContainer .rssFeedTitle {
  font-family: "HelveticaNeueBold", sans-serif;
  padding-right: 30px !important;
}
#rss-feed-cmp #rssFeedContainer .rssFeedLink a {
  color: #222222;
}
#rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn {
  text-align: right;
}
@media screen and (max-width: 768px) {
  #rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn {
    position: absolute;
    top: 7px;
    right: 0;
  }
}
#rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn .copy-link-btn {
  cursor: pointer;
  padding: 8px;
}
#rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn .copy-link-btn:hover {
  color: var(--onelambda-color-hover);
}
#rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn .copy-btn-container {
  position: absolute;
  right: 0;
  top: calc(50% - 14px);
}
@media screen and (max-width: 768px) {
  #rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn .copy-btn-container {
    top: 0;
  }
}
#rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn .copied-tooltip {
  background: #ffffff;
  border-radius: 3px;
  color: #555759;
  padding: 5px 20px 7px 20px;
  text-align: center;
  position: absolute;
  top: calc(50% - 50px);
  box-shadow: 0 6px 8px 0 rgba(34, 34, 34, 0.1);
  display: none;
  border: 1px solid #dcdcdc;
  min-width: 130px;
  left: calc(-50% - 26px);
  line-height: 14px;
}
#rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn .copied-tooltip.active {
  background: #333333;
  color: #ffffff;
  border: 1px solid #424242;
}
#rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn .copied-tooltip.active:after {
  border-color: #333333 transparent transparent transparent;
}
#rss-feed-cmp #rssFeedContainer .rssFeedCopyBtn .copied-tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}
#rss-feed-cmp #rssFeedDisplay .rssItemRow {
  background-color: #E7E9ED;
  padding: 10px 14px;
  font-size: 12px;
  color: #222222;
  border-bottom: 1px solid #C5CAD3;
}
#rss-feed-cmp #rssFeedDisplay .rssItemRow:nth-child(even) {
  background-color: #ffffff;
}
#rss-feed-cmp #rssFeedDisplay .rssItemRow .rssItemTitle {
  font-family: "HelveticaNeueBold", sans-serif;
  font-size: 14px;
}
#rss-feed-cmp #rssFeedDisplay .no-results-text {
  font-size: 18px;
  font-family: "HelveticaNeueBold", sans-serif;
}

.modal-editor-wrapper{
	background-color:#ffffff;
	border:1px solid #dcdcdc;
	border-radius:4px;
	-webkit-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	margin:0 auto;
}

.modal-editor-header{
	border-bottom:1px solid #dcdcdc;
	padding:15px;
}

.modal-editor-header.no-border{
	border-bottom:0;
}

.modal-editor-title, .modal-editor-close-btn{
	display:inline-block;
}

.modal-editor-close-btn{
	float:right;
	cursor:pointer;
}

.modal-cmp .modal-header.no-border{
	border-bottom:0;
}

.modal-cmp .modal-title{
	font-size:20px;
}

.path-phadia:not(.path-onelambda,
.path-procalcitonin,
.path-covid-19-antibody-testing,
.path-clinical-mass-spectrometry,
.path-infectious-diseases) .modal-header .close {
	font-size: 40px;
	font-weight: 100;
}

.hide-header {
	height: 0;
	padding: 0;
	position: relative;
	border-bottom: none;
}
.hide-header .modal-title {
	display: none;
}

.hide-header .close {
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 1;
}

.remove-margins {
	padding: 0;
}

.modal-content:has(.hide-header) .remove-margins .well2 {
	border-radius: 7px;
}

.modal-content:has(.hide-header) .remove-margins .well-cmp-inner {
	border-radius: 7px;
}

.modal-content .remove-margins .well2 {
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}

.modal-content .remove-margins .well-cmp-inner {
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}

.modal-fullscreen {
    min-height: 100vh;
	max-width: none !important;
    height: 100%;
    width: 100%;
    margin: 0;
	overflow: hidden;
}

.modal-fullscreen .modal-content {
    min-height: 100vh;
    width: 100%;
    margin: 0;
	border-radius: 0;
}

.modal-fullscreen .modal-body {
    height: calc(100vh - 59px);
    overflow-y: auto;
}

.modal-fullscreen .hide-header ~ .modal-body {
	height: 100vh;
}

.modal.fade:not(.in) .modal-dialog.modal-top-right,
.modal.fade:not(.in) .modal-dialog.modal-bottom-right  {
	transform: translate3d(25%,0,0);
}

.modal.fade:not(.in) .modal-dialog.modal-top-left,
.modal.fade:not(.in) .modal-dialog.modal-bottom-left  {
	transform: translate3d(-25%,0,0);
}

.modal-dialog.modal-positioned {
	position: absolute;
	margin: 0;
}

.modal-dialog.modal-top-right {
	top: 10px;
	right: 10px;
}

.modal-dialog.modal-top-left {
	top: 10px;
	left: 10px;
}

.modal-dialog.modal-bottom-right {
	bottom: 10px;
	right: 10px;
}

.modal-dialog.modal-bottom-left {
	bottom: 10px;
	left: 10px;
}

/* Custom CSS for slide-in modal */
.modal.modal-right {
	transition: transform .45s ease-out;
	transform: translateX(100%);
	display:block !important;
}

.modal.modal-right.in {
	transform: translateX(0);
}

.modal.modal-right .modal-dialog {
	margin: 0 0 0 auto !important;
	min-height:100vh;
}


.modal.modal-right .modal-dialog .modal-content {
	border-left: 11px solid #E71316;
	border-radius:0 !important;
	min-height:100vh;
}

.modal.modal-right .modal-header button{
	opacity:1;
	margin-top:5px;
}

.modal.modal-right .modal-header .fa-chevron-right{
	display:block;
	color:#E71316;
	font-size:20px !important;
	opacity:1 !important;
	font-weight:bold;
}

.modal.modal-right .modal-header .times-close{
	display:none !important;
}

@media screen and (max-width: 991px){
	.modal.modal-right .modal-dialog{
		min-width:100%;
		margin:0 !important;
	}

}



.modal.fixed-modal {
  width: fit-content;
  height: fit-content;
  transition: none !important;
}
.modal.fixed-modal .modal-dialog {
  bottom: 0;
  right: 0;
  max-width: 350px;
  position: fixed;
}
.modal.fixed-modal .modal-content {
  border-radius: 12px 0 0 0;
}
.modal.fixed-modal .modal-content .modal-header button.close {
  color: #7F7F7F;
  opacity: 1;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .modal.fixed-modal {
    display: none !important;
  }
  .modal.fixed-modal.opened {
    display: block !important;
  }
  .modal.fixed-modal.opened .modal-dialog {
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 100%;
  }
  .modal.fixed-modal.opened .modal-dialog .modal-content {
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
  }
}
#fixed-modal-button-container {
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
}
#fixed-modal-button-container #fixed-modal-button {
  display: none;
  background: #FFFFFF;
  border: 1px solid #DCDCDC;
  box-shadow: 0 -1px 3px 0 rgba(34, 34, 34, 0.1);
  border-radius: 12px 12px 0 0;
  font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #E71316;
  letter-spacing: 0;
  line-height: 24px;
  padding: 7px 41px 4px 41px;
  position: fixed;
  bottom: 0;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
#fixed-modal-button-container #fixed-modal-button i {
  font-size: 13px;
  padding-bottom: 3px;
}
@media screen and (max-width: 768px) {
  #fixed-modal-button-container #fixed-modal-button {
    display: flex;
  }
}

.accordion-btn-head-wrapper{
	background-image: linear-gradient(175deg, #FFFFFF 15%, #F5F5F5 99%);
	border: 1px solid #DCDCDC;
	border-radius: 4px;
	position:relative;
	cursor:pointer;
	margin-bottom:27px;
	-webkit-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
}

.accordion-btn-head-wrapper:hover .accordion-btn-title,
.accordion-btn-head-wrapper:hover .accordion-btn-header-text::after{
	color:var(--onelambda-color-hover);
}

.accordion-btn-header-text{
	width:70%;
	padding:24px;
	position:relative;
}

.accordion-btn-header-text::after {
	font-family:"icomoon";
	content: "\e93b";
	font-size: 32px;
	position:absolute;
	top:15px;
	right:24px;
}

.accordion-btn-wrapper.active .accordion-btn-header-text::after{
	content:'\e941';
}

.accordion-btn-img{
	position: absolute;
	top: 0px;
	right: 0;
	content: '';
	width: 30%;
	bottom: 0;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	background-size: cover;
}

.accordion-btn-title{
	font-family: "HelveticaNeueBold", sans-serif;
	font-size: 24px;
	color: #262626;
	line-height: 24px;
	margin-bottom:15px;
	padding-right:34px;
}

.accordion-btn-body{
	font-family: "HelveticaNeue", sans-serif;
	font-size: 16px;
	color: #222222;
	line-height: 24px;
}

.accordion-btn-content-wrapper{
	display:none;
}

.accordion-btn-wrapper.active .accordion-btn-content-wrapper{
	display:block;
}

@media screen and (max-width: 767px) {

	.accordion-btn-header-text{
		width:100%;
	}
	.accordion-btn-img{
		position: relative;
		display: block;
		width: 100%;
		height: 124px;
		border-top-right-radius:0;
		border-bottom-left-radius:4px;
	}

}
.accordion-wrapper{
	border:1px solid #D8D8D8;
    margin-bottom:15px;
}

.accordion-wrapper.accordion-wrapper-center{
	margin-bottom:0;

	overflow-wrap: break-word;
	word-wrap: break-word;
	-ms-word-break: break-all;
	word-break: break-word;

	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;

}

.accordion-wrapper.accordion-wrapper-center, .accordion-wrapper.no-borders, .accordion-wrapper.no-borders .accordion-content{
	border:0;
}

.accordion-wrapper.accordion-wrapper-commercial{
	border:0;
}
.accordion-wrapper.accordion-wrapper-commercial .accordion-title{
	border-top:1px solid #DBDBDB;
	border-bottom:1px solid #DBDBDB;
	border-left:0;
	border-right:0;
	background-color:#ffffff;
	font-size:14px;
	line-height:1;
	padding:20px 50px 16px 16px;
	font-family:"HelveticaNeueMedium", sans-serif;
	position:relative;
	cursor:pointer;
}

.accordion-wrapper.accordion-wrapper-commercial .accordion-title::after{
	font-family:"icomoon";
	font-size:20px;
	content:'\ec23';
	position:absolute;
	right:16px;
	top:calc(50% - 10px);
}

.accordion-wrapper-commercial .accordion-content{
	padding:16px 4px;
}

.accordion-wrapper.accordion-wrapper-commercial.active .accordion-title::after{
	content:'\ebf9';
}

.accordion-wrapper.accordion-wrapper-default .accordion-title{
	padding:15px 50px 10px 15px;
	cursor:pointer;
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: #575757;
	background-color:#F6F6F6;
	line-height: 24px;
	position:relative;
	text-align:left;
}

.accordion-wrapper .accordion-title.has-img{
	padding:15px 45px 15px 15px;
}

.accordion-wrapper .accordion-title img{
	margin-right:15px;
}

.accordion-wrapper.accordion-wrapper-default .accordion-title.white{
	background-color:#ffffff !important;
}

.path-patient .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-light{
	background-color:#7474C1;
    color:#ffffff !important;
}
.path-hcp .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-light{
	background-color:#6FABDC;
    color:#ffffff !important;
}
.path-lab .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-light{
	background-color:#EE3134;
    color:#ffffff !important;
}

.path-patient .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-dark{
	background-color:#522D6D;
    color:#ffffff !important;
}
.path-hcp .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-dark{
	background-color:#00548B;
    color:#ffffff !important;
}
.path-lab .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-dark{
	background-color:#AD1E2D;
    color:#ffffff !important;
}

.path-patient .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-alt{
	background-color:#ED7700;
    color:#ffffff !important;
}
.path-hcp .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-alt{
	background-color:#EE3134;
    color:#ffffff !important;
}
.path-lab .accordion-wrapper.accordion-wrapper-default .accordion-title.buyer-type-alt{
	background-color:#006680;
    color:#ffffff !important;
}

.path-patient .accordion-wrapper.accordion-wrapper-default.buyer-type-border-light{
	border:1px solid #7474C1;
}
.path-hcp .accordion-wrapper.accordion-wrapper-default.buyer-type-border-light{
	border:1px solid #6FABDC;
}
.path-lab .accordion-wrapper.accordion-wrapper-default.buyer-type-border-light{
	border:1px solid #EE3134;
}

.path-patient .accordion-wrapper.accordion-wrapper-default.buyer-type-border-dark{
	border:1px solid #522D6D;
}
.path-hcp .accordion-wrapper.accordion-wrapper-default.buyer-type-border-dark{
	border:1px solid #00548B;
}
.path-lab .accordion-wrapper.accordion-wrapper-default.buyer-type-border-dark{
	border:1px solid #AD1E2D;
}
.path-patient .accordion-wrapper.accordion-wrapper-default.buyer-type-alt-border{
	border:1px solid #ED7700;
}
.path-hcp .accordion-wrapper.accordion-wrapper-default.buyer-type-alt-border{
	border:1px solid #EE3134;
}
.path-lab .accordion-wrapper.accordion-wrapper-default.buyer-type-alt-border{
	border:1px solid #006680;
}

.path-phadia .accordion-wrapper.accordion-wrapper-center .accordion-title{
	background-color:#262262;
}

.path-phadia .accordion-wrapper.accordion-wrapper-center .accordion-title span{
	color:inherit;
	font-family:"HelveticaNeueMedium", sans-serif;
	font-size:22px;
	letter-spacing:0;
	line-height:28px;
}

.path-phadia .accordion-wrapper.accordion-wrapper-center .accordion-title{
	padding:15px 0;
}

.path-phadia .accordion-wrapper.accordion-wrapper-center.active .accordion-title::after{
	content: '\f0d8';
}
.path-phadia .accordion-wrapper.accordion-wrapper-center .accordion-title::after{
	content: '\f0d7';
	margin-top:-13px;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.accordion-title .fa{
	display:none;
	position:absolute;
	top:50%;
	margin-top:-12px;
	font-size:24px;
	right:20px;
    text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.accordion-wrapper.accordion-wrapper-default.active .fa-minus{
    display:block;
}

.accordion-wrapper.accordion-wrapper-default:not(.active) .fa-minus{
    display:none;
}  
.accordion-wrapper.accordion-wrapper-default:not(.active) .fa-plus{
    display:block;
}  

.accordion-wrapper.accordion-wrapper-default.active .fa-chevron-up,
.accordion-wrapper.accordion-wrapper-default.active .fa-chevron-down {
	display: none;
}

.accordion-wrapper.accordion-wrapper-default .accordion-title.pulsing-icon .fa{
    animation-duration: 0.8s;
	animation-name: scale;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.accordion-wrapper.accordion-wrapper-center .accordion-title {
    padding: 8px 0 4px 0;
	cursor:pointer;
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #FFFEFF;
	background-color:#555659;
	line-height: 26px;
	position:relative;
	text-align:center;
}

.accordion-wrapper .accordion-title b{
    font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
}
.accordion-wrapper .accordion-title i{
    font-family: HelveticaNeueLTStd-It, Helvetica, Arial, sans-serif;
}
.accordion-wrapper .accordion-title b i, .accordion-wrapper .accordion-title i b{
    font-family: HelveticaNeueLTStd-BdIt, Helvetica, Arial, sans-serif;
}

.accordion-wrapper .accordion-title.text-transform-uppercase{
	text-transform:uppercase;
}

.accordion-wrapper.accordion-wrapper-center .accordion-title::after {
	font-family:'FontAwesome';
	content:"\f078";
	position:absolute;
	top:50%;
	margin-top:-15px;
	font-size: 16px;
	right: inherit;
	padding-left:10px;
}

.accordion-wrapper-center .accordion-title{
	padding-right:36px;
}

.accordion-wrapper.accordion-wrapper-center.active .accordion-title::after{
	content: "\f077";
}

.accordion-content{
	border-top:1px solid #D8D8D8;
	display:none;
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #575757;
	line-height: 24px;
	background-color:#ffffff;
	padding:45px 30px;
	text-align:left;
}

.path-phadia .accordion-content{
	font-size:14px;
}

.path-phadia .accordion-content{
	border:0;
}

.accordion-wrapper-center .text-cmp{
	max-width:1200px;
	margin:0 auto;
	float:none !important;
    padding:0 30px;
}

.accordion-wrapper.active > .accordion-content{
	display:block;
}

.accordion-wrapper.accordion-wrapper-center .accordion-content {
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #575757;
	line-height: 24px;
	background-color:#ffffff;
	padding:50px;
}

.path-phadia .accordion-wrapper.accordion-wrapper-center .accordion-content {
	font-family:"HelveticaNeue", sans-serif;
}


.accordion-wrapper.accordion-wrapper-center .accordion-content li{
	padding-left:7px;
	margin-bottom:30px;
}

.accordion-wrapper.accordion-wrapper-center .accordion-content li:last-child, .accordion-wrapper-center ol{
	margin-bottom:0;
}

.accordion-wrapper .accordion-content.no-content-padding, 
.accordion-content.no-content-padding .aem-GridColumn, 
.accordion-content.no-content-padding .text-cmp p, 
.accordion-content.no-content-padding .text-cmp h1, 
.accordion-content.no-content-padding .text-cmp h2, 
.accordion-content.no-content-padding .text-cmp h3{
	padding-left:0px !important;
	padding-right:0px !important;
}

@media screen and (max-width: 768px){
	.accordion-wrapper.accordion-wrapper-center .accordion-content {
		padding-left:15px;
		padding-right:15px;
	}
	.accordion-wrapper-center .text-cmp{
	
	}
}

@media screen and (max-width: 600px){
	.accordion-wrapper-center .text-cmp{
		padding:0 15px;
	}
}
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default {
  border-bottom: 2px solid #999;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  margin-bottom: 0;
}
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default .fa-minus,
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default .fa-plus {
  display: none;
}
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default:not(.active) .fa-chevron-up {
  display: none;
}
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default:not(.active) .fa-chevron-down {
  display: block;
}
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default .accordion-title {
  font-family: "ProximaNova", sans-serif;
  font-weight: bold;
  line-height: 36px;
  color: #151515;
  font-size: 24px;
  background-color: transparent;
}
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default .accordion-title .fa {
  font-size: 30px;
  right: 25px;
  margin-top: -18px;
  color: #473FB9;
}
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default .accordion-title > span:first-child {
  max-width: 83%;
  display: inline-block;
}
.path-procalcitonin .accordion-wrapper.accordion-wrapper-default.active .fa-chevron-up {
  display: block;
}
.path-procalcitonin .accordion-wrapper-default .accordion-title {
  padding: 15px 0;
}
.path-procalcitonin .accordion-content {
  font-size: 24px;
  margin: 0 auto;
  padding: 45px 0 60px 0;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .path-procalcitonin .accordion-content {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.video-text{
	width:100%;
	max-width:521px;
	
	border:1px solid 
	background: #ffffff;
	border-radius: 4px;

	-webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.25);
	
	margin:10px auto;
}

.brightcove-container{
	margin-bottom:0 !important;
}

.video-text img{
	width:100%;
	margin:0 auto;
}

.video-text-content{
	padding:25px;
	background-color:#ffffff;
}

.video-text-title{
	font-family: HelveticaNeueLTStd-Md, Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #575757;
	margin-bottom:10px;
}

.video-text-text{
	font-family: HelveticaNeueLTStd-Lt, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #575757;
	line-height: 24px;
}

@media screen and (max-width: 768px){
	.video-text{
		max-width:434px;
	}
}

.video-js.vjs-controls-enabled.vjs-paused .vjs-big-play-button {
	display: block;
	background: url(https://www.thermofisher.com/content/dam/LifeTech/components/video/play-lg.png) no-repeat;
    font-size: 5em;
    background-color: transparent;
    background-size: 100%;
    line-height: 1.3em;
    height: 1.5em;
    width: 1.5em;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    margin-left: -.75em;
    margin-top: -.75em;
    text-indent: -1000px\9;
    filter: none\9;
}

.video-js.vjs-controls-enabled.vjs-paused .vjs-big-play-button:before {
    position: initial;
    color: transparent;
    font-size: inherit;
    line-height: inherit;
    margin: .09999em auto;
    text-align: center;
    width: initial;
}
.form-wrapper input:not([type="radio"]):not([type="checkbox"]), .form-wrapper select {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555555;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid #cccccc;
	border-radius: 0px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	background: none;
	display: block;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #979797;
	box-shadow: none !important;
	-webkit-appearance: none;
	font-family: HelveticaNeueLTStd-Roman, Helvetica, Arial, sans-serif;
	color: #4A4A4A;
	font-size: 18px;
	height: 50px;
	padding: 30px 0 0 0;
}

.path-phadia .form-wrapper input:not([type="radio"]):not([type="checkbox"]), .path-phadia .form-wrapper select {
	font-family:"HelveticaNeueMedium", sans-serif;
	color:#222222;
	height:60px;
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"]{
	width:auto;
}

.cmp-options .form-group.drop-down{
	position:relative;
}

.cmp-options .form-group.drop-down::after{
	font-family: 'icomoon';
	content: "\ee2c";
	font-size: 10px;
	position: absolute;
	right: 0;
	top: 35px;
	color: #333333;
	pointer-events: none;
}

.cmp-options .drop-down label{
	pointer-events:none;
}

.path-patient .cmp-options .form-group.drop-down::after{
	top:28px;
	color:#7474b6;
}

.path-hcp .cmp-options .form-group.drop-down::after{
	top:28px;
	color:#6FABDC;
}

.path-lab .cmp-options .form-group.drop-down::after{
	top:28px;
	color:#EF2E34;
}

input[type="radio"], input[type="checkbox"]{
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.radio label, .checkbox label{
	padding-left:35px;
}

.checkstyle{
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: transparent;
	border: 1px solid #D8D8D8;
}

.checkbox-item, .radio-item{
	margin:10px 0;
}
.checkbox-item label p {
	margin: 0;
}

.checkstyle::after {
	content: "";
	position: absolute;
	display: none;
}

.path-patient .form-wrapper input:checked ~ .checkstyle {
	border-color: #262262;
}
.path-hcp .form-wrapper input:checked ~ .checkstyle {
	border-color: #00568B;
}
.path-lab .form-wrapper input:checked ~ .checkstyle {
	border-color: #AD1E2D;
}



.form-wrapper input:checked ~ .checkstyle::after {
	display: block;
}

.path-patient .form-wrapper .checkstyle::after {
	color: #262262;
}
.path-hcp .form-wrapper .checkstyle::after {
	color: #00568B;
}
.path-lab .form-wrapper .checkstyle::after {
	color: #AD1E2D;
}

.form-wrapper .checkstyle::after {
	font-family: 'FontAwesome';
	content: "\f00c";
	font-size: 20px;
	padding-left: 1px;
}

.path-onelambda .form-wrapper .checkbox-item .checkstyle::after{
	font-family:"icomoon";
	content: "\eb08";
}

.form-wrapper .radio .checkstyle{
	border-radius: 25px;
}

.form-wrapper .radio .checkstyle::after{
	content: "\f111";
	font-size: 15px;
	padding-left: 5px;
	padding-top: 1px;
}

.successMsg{
	text-align: center;
	font-family: HelveticaNeueLTStd-Roman;
	font-size: 24px;
	color: #575757;
	line-height: 1.2;
	padding: 50px 0;
}

.path-phadia .successMsg{
	font-family:"HelveticaNeueMedium";
	color:#222222;
}

.form-wrapper label .sublabel{
	font-family:"HelveticaNeue", sans-serif;
	font-size:14px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active{
	-webkit-transition-delay: 9999s;
	-webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
}

.form-wrapper select{
	-moz-appearance:none;
}

.form-wrapper select::-ms-expand {
	display: none;
}

.form-wrapper label {
	font-size: 16px;
	font-family: HelveticaNeueLTStd-Roman, Helvetica, Arial, sans-serif;
	color: #373737;
	font-weight: normal;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;

    position: absolute;
	bottom: 0;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.path-phadia .form-wrapper label{
	font-family: "HelveticaNeueMedium", sans-serif;
	font-size: 16px;
	color: #222222;
	letter-spacing: 0;
	line-height: 22px;
}

.path-patient label{
	color:#7474b6;
}

.path-hcp label{
	color:#6FABDC;
}

.path-lab label{
	color:#EF2E34;
}

.ta-wrapper{
	margin-top:40px;
}

.ta-wrapper label{
	top:-20px;
}

.path-phadia .ta-wrapper label{
	top:-25px;
}

.path-phadia .ta-wrapper label.sublabel-padding {
	top:-50px;
}

.form-wrapper textarea{
    background: none;
	display: block;
	border: 1px solid #979797 !important;
	border-radius: 0;
	box-shadow: none !important;
	-webkit-appearance: none;
	font-family: HelveticaNeueLTStd-Roman, Helvetica, Arial, sans-serif;
	color: #4A4A4A;
	font-size: 18px;
	width: 100%;
}

.path-phadia .form-wrapper textarea{
	font-family:"HelveticaNeueMedium", sans-serif;
	color:#222222;
	border-radius:4px;
}

body:not(.path-onelambda) .form-wrapper label.active{
	font-size: 11px;
	bottom:20px;
}


.form-wrapper legend{
	display:none;

	font-size: 16px;
	font-family: HelveticaNeueLTStd-Roman, Helvetica, Arial, sans-serif;
	color: #373737;
	font-weight: normal;
	border: 0;
	margin: 0;
}

.path-patient .form-wrapper legend{
	color:#7474b6;
}

.path-hcp .form-wrapper legend{
	color:#6FABDC;
}

.path-lab .form-wrapper legend{
	color:#EF2E34;
}

.form-wrapper fieldset legend{
	display:block;
}

.form-wrapper fieldset.checkbox label, .form-wrapper fieldset.radio label{
	position:relative;
	font-family: HelveticaNeueLTStd-Lt;
	font-size: 14px;
	color: #4A4A4A;
	line-height: 22px;
}

.path-phadia fieldset.checkbox label, .path-phadia .form-wrapper fieldset.radio label{
	font-family: "HelveticaNeueMedium", sans-serif;
	font-size: 16px;
	color: #222222;
	letter-spacing: 0;
	line-height: 22px;
}

.form-group.nested .checkbox-item:not(.first){
	margin-left:20px;
}

.path-phadia .form-group.checkbox .help-block, .path-phadia .form-group.radio .help-block{
	margin-top:-5px;
}

.form-wrapper p.help-block{
	display:none;
}

.form-wrapper .form-group.has-error legend{
	color: #a94442;
}

.form-wrapper .form-group.ta-wrapper.has-error textarea{
	border-color: #a94442 !important;
}

.path-phadia .form-wrapper .form-group.has-error li{
	color:#E71316;
}

.path-phadia .form-wrapper .has-error input, .path-phadia .form-wrapper .has-error select,  .path-phadia .form-wrapper .form-group.ta-wrapper.has-error textarea{
	border-color: #E71316 !important;
}

.path-onelambda .form-wrapper input:not([type="radio"]):not([type="checkbox"]), .path-onelambda .form-wrapper select, .path-onelambda .form-wrapper textarea{
	background: #FFFFFF;
	border: 1px solid #C9C8C8;
	padding:6px 16px;
	height:auto;
	border-radius:4px;
}

.path-onelambda .form-wrapper label{
	position:relative;
}

.path-onelambda .form-wrapper legend{
	font-family: "HelveticaNeueMedium", sans-serif;
	font-size: 16px;
	color: #222222;
	letter-spacing: 0;
	line-height: 22px;
}

.path-onelambda .form-wrapper.checkbox label{
	font-family: "HelveticaNeue", sans-serif;
	font-size: 16px;
	color: #222222;
	letter-spacing: 0;
	line-height: 22px;
	padding-right:25px;
}

.path-onelambda .form-wrapper .checkbox.nested .checkbox-item:not(.first) label {
	font-size:14px;
}

.path-onelambda .checkstyle{
	width:18px;
	height:18px;
	border-radius:4px;
}

.path-onelambda .form-wrapper input:checked ~ .checkstyle{
	background-color:#535B6B;
	border:0;
}

.path-onelambda .form-wrapper input:checked ~ .checkstyle::after{
	font-size:14px;
	top:-2px;
	left:1px;
	color:#ffffff;
}

.path-onelambda .form-wrapper .radio-item input:checked ~ .checkstyle::after{
	left: 0;
	top: -3px;
	font-size: 10px;
}

.path-onelambda .cmp-options .form-group.drop-down::after{
	right:8px;
	top:40px;
}

.path-onelambda .form-wrapper .ta-wrapper{
	margin-top:0;
}
.path-onelambda .form-wrapper .ta-wrapper label{
	position:relative;
	top:0;
}

.path-onelambda .form-wrapper .help-block.with-errors{
	margin-top:2px;
}

.path-onelambda .form-wrapper .form-group.has-error li{
	font-size:10px !important;
	line-height:1;
}

.path-onelambda .form-wrapper label.required::after{
	content: '*';
	color:#E71316;
	font-size:14px;
	padding-left:5px;
}

.path-onelambda .form-group{
	margin-bottom:20px;
}

form.dark-mode label,
form.dark-mode input,
form.dark-mode input::placeholder,
form.dark-mode select,
form.dark-mode legend,
form.dark-mode .checkstyle::before,
form.dark-mode .multiselect-cmp-wrapper .form-check-label,
form.dark-mode textarea {
	color: #ffffff !important;
}
form.dark-mode input,
form.dark-mode select,
form.dark-mode textarea {
	background: transparent;
}
form.dark-mode .form-group.drop-down::after,
form.dark-mode .multiselect-cmp-wrapper .form-check .checkstyle:after,
form.dark-mode .multiselect-cmp-wrapper button.multiselect,
form.dark-mode .multiselect-cmp-wrapper .btn-group:after {
	color: #ffffff;
}

form.dark-mode .has-error .with-errors {
	color: #FF0000;
}

form.dark-mode option{
	color:#000 !important;
}

form.dark-mode .multiselect-cmp-wrapper button.multiselect {
	background: transparent;
}

form.dark-mode .multiselect-cmp-wrapper .multiselect-container.dropdown-menu {
	background-color: #4a4a4a;
}

form.dark-mode .form-control:focus {
	background-color: transparent;
	border-color: #ffffff;
}

.successMsg.dark-mode {
	color: #ffffff;
}

.well2 form .aem-GridColumn {
	padding: 0 12px;
}
.gated > .container > .aem-Grid{
	filter:blur(3px);
	position:relative;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none; 
	-ms-user-select: none;
	user-select: none;
}

.gated > .container::before{
	position:absolute;
	content: ' ';
	top:0;
	right:0;
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	z-index:100;
}

.gated > .container{
	position:relative;
}

.gated.ie11 > .container > .aem-Grid{
	opacity: .1;
	filter: none;
}

.gated-modal{
	display:none;
	background-color:#ffffff;
	margin:50px 0;
	-webkit-box-shadow: 0px 2px 13px 0px rgba(0,0,0,0.39);
	-moz-box-shadow: 0px 2px 13px 0px rgba(0,0,0,0.39);
	box-shadow: 0px 2px 13px 0px rgba(0,0,0,0.39);
	width:83%;
	margin:0 auto;
	left:0;
	right:0;
	position:absolute;
	top:0;
    z-index:100;
}

.gated .gated-modal{
	display:block;
}			  

.gated-modal-heading{
	font-family: HelveticaNeueLTStd-Roman;
	font-size: 36px;
	color: #FFFFFF;
	line-height: 44px;
}

.gated-modal p{
	font-family: HelveticaNeueLTStd-Lt;
	font-size: 20px;
	color: #FFFFFF;
	line-height: 24px;
}

.gated-modal-inner{
	display:table;
	width:100%;
}

.gated-modal .content-section{
	background-color:#262262;
	color:#ffffff;
	text-align:center;
	display:table-cell;
	vertical-align:middle;
	float:none;
	padding:50px;
}

.path-hcp .gated-modal .content-section{
	background-color:#00548B;
}

.path-lab .gated-modal .content-section{
	background-color:#AD1E2D;
}

.gated-modal .form-section{
	display:table-cell;
	vertical-align:middle;
	float:none;
	padding:50px;
}

.gated-modal.md-size .content-section, .gated-modal .form-section{
	width:100%;
	float:left;
	display:block;
}

.md-size .gated-modal-heading{
	font-size: 24px;
	line-height: 28.8px;
}

.gated-modal.md-size .gated-modal-inner{
	display:block;
}

.gated-modal.md-size p{
	font-family: HelveticaNeueLTStd-Lt;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 24px;
	margin:0;
}

.gated-modal.md-size .content-section, .gated-modal.md-size .form-section{
	padding:20px 30px;
	text-align:left;
}

.gated-modal.md-size .content-section img{
	/*position:absolute;
	top:50%;
	right:30px;
	margin-top:-19px;*/
    display:none;
}

.gated-modal.sm-size .content-section, .gated-modal.sm-size .form-section{
	padding:20px 20px;
	text-align:left;
}

.gated-modal.sm-size .content-section{
	//padding-right:70px;
}

.gated > .container > .aem-Grid:not(.aem-Grid--12) .text-cmp{
	padding:0;
}


.gated-modal.sm-size{
	width:90%;
}

.gated-modal.sm-size .form-section{
	padding:20px 0;
}

.gated-modal .successMsg{
	padding: 100px 10px;
}


.text-callout-button {
  cursor: pointer;
  margin-bottom: 25px;
}
.text-callout-button.no-bottom-margin {
  margin-bottom: 0;
}
.text-callout-button a {
  text-decoration: none;
}
.text-callout-button .--main-text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-callout-button .--main-text-wrapper .--main-text {
  font-family: HelveticaNeue-Medium;
  font-size: 18px;
  color: #222222;
  letter-spacing: 0;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.text-callout-button .--main-text-wrapper .icon-24-arrow-right-mono {
  color: #E71316;
  font-size: 20px;
  padding-right: 25px;
  transition: padding-right 250ms ease-in-out;
}
.text-callout-button:hover .--main-text {
  text-decoration: underline;
}
.text-callout-button:hover .icon-24-arrow-right-mono {
  padding-right: 0;
}
.text-callout-button .--body-text {
  max-width: 80%;
  font-family: HelveticaNeue;
  font-size: 16px;
  color: #222222;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

.resource_card_inner{
	-webkit-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	border: 1px solid #DCDCDC;
	border-radius: 4px;
	min-height:125px;
	position:relative;
	padding:26px;
	color:#222222;
	margin:5px 0;
	height:100%;
	display: flex;
	flex-direction: column;
	background-size:cover;
    justify-content: space-between;
}

.resource_card_wrapper{
	height: calc(100% - 24px);
	margin:12px 0;
}

.resource_card_wrapper a{
	width:100%;
	text-decoration:none !important;
}
.resource_card_inner img {
	margin: 0 0 12px 0;
}
.resource_card_main_text{
	font-family: "HelveticaNeueMedium", sans-serif;
	color: #2B2B2B;
	font-size: 18px;
	text-align: center;
	line-height: 26px;
	margin: 0 0 12px 0;
}

.resource_card_sub_text{
	font-family: "HelveticaNeue", sans-serif;
	font-size: 16px;
	color: #222222;
	text-align: center;
	line-height: 24px;
	margin-bottom: 46px;
}

@media screen and (max-width: 768px){
	.resource_card_main_text{
		font-size: 22px;
		letter-spacing: 0;
		text-align: left;
		line-height: 28px;
	}
}
.resource_card_wrapper .resource_card_cta {
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
	text-align: center;
	font-size: 16px;
	display: inline-block;
	min-width: 180px;
	height:auto;
	line-height:1.5;
	cursor: pointer;
	border-radius:0;
	text-shadow: none;
	white-space: normal;
	padding: 10px 20px 7px 20px;
	transition: .3s;
	position:relative;
    overflow-wrap:break-word;
    max-width:100%;
}

@media screen and (max-width: 325px){
	.resource_card_wrapper .resource_card_cta{
		min-width:100%;
		height:auto;
	}
}
.resource_card_wrapper .resource_card_cta{
	border-radius:3px;
	font-family: "HelveticaNeueBold", sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 18px;
	padding:10px;
	transition:none;
	color:#ffffff;
	background-color:#555759;
	border:1px solid #555759;
}

.resource_card_wrapper .resource_card_cta:hover{
	background-color:#222222;
	border-color: #222222;
}

.resource_card_wrapper .resource_card_cta:active{
	background-color:#333333;
	border:0;
	box-shadow:inset 0px 2px 5px 2px #000000;
	padding:11px;
}
.resource_card_cta_container {
	text-align: center;
}
.resource_card_inner .resource_card_resource_type_text {
	font-family: "HelveticaNeueBold", sans-serif;
	font-size: 16px;
	color: #7F7F7F;
	text-align: center;
	line-height: 26px;
}

/*CMS Site Refresh Updates*/
.path-clinical-mass-spectrometry .resource_card_inner {
    -webkit-box-shadow: 0 2px 4px 0 rgb(34 34 34 / 10%);
    -moz-box-shadow:    0 2px 4px 0 rgba(34,34,34,0.10);
    box-shadow:         0 2px 4px 0 rgb(34 34 34 / 10%);
}
.cta-group-cmp .cta_group_inner {
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 24px 16px;
  cursor: pointer;
  color: #000000;
  margin: 5px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-size: cover;
}
.cta-group-cmp .cta_group_inner:hover:active,
.cta-group-cmp .cta_group_inner:active {
  outline: 2px solid #ACACAC;
  border: 1px solid transparent;
  background-color: #ffffff;
}
.cta-group-cmp .cta_group_wrapper {
  display: grid;
  height: calc(100% - 24px);;
  margin: 12px 0;
}
.cta-group-cmp .cta_group_wrapper a {
  width: 100%;
}
.cta-group-cmp .cta_group_wrapper a:hover,
.cta-group-cmp .cta_group_wrapper a:focus {
  text-decoration: none !important;
  cursor: pointer;
}
.cta-group-cmp .cta_group_wrapper a:hover .cta_group_inner,
.cta-group-cmp .cta_group_wrapper a:focus .cta_group_inner {
  background: #F1F1F1;
}
.cta-group-cmp .cta_group_wrapper a[target="_blank"] .cta_group_inner::after {
  content: '\ed5b' !important;
}
.cta-group-cmp .cta_group_wrapper a .cta_group_inner .cta_group_main_text {
  font-family: "HelveticaNeueMedium", sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: inherit;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 16px;
}
.cta-group-cmp .cta_group_wrapper a .cta_group_inner .cta_group_sub_text {
  font-family: "HelveticaNeue", sans-serif;
  font-size: 14px;
  color: inherit;
  letter-spacing: 0;
  text-align: left;
  line-height: 22px;
  padding-right: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.cta-group-cmp .cta_group_wrapper a .cta_group_inner .cta_group_link_text {
  font-family: "HelveticaNeueMedium", sans-serif;
  font-size: 20px;
  color: #D53328;
}
.cta-group-cmp .cta_group_wrapper a .cta_group_inner::after {
  content: '\e93e';
  position: absolute;
  font-family: "icomoon";
  font-size: 20px;
  right: 16px;
  bottom: 24px;
}
.cta-group-cmp .cta_group_wrapper.with-icon[data-columns="4"] {
  grid-template-columns: repeat(4, minmax(250px, 500px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 1138px) {
  .cta-group-cmp .cta_group_wrapper.with-icon[data-columns="4"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.with-icon[data-columns="3"] {
  grid-template-columns: repeat(3, minmax(250px, 500px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 852px) {
  .cta-group-cmp .cta_group_wrapper.with-icon[data-columns="3"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.with-icon[data-columns="2"] {
  grid-template-columns: repeat(2, minmax(250px, 500px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 566px) {
  .cta-group-cmp .cta_group_wrapper.with-icon[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.with-icon[data-columns="1"] {
  grid-template-columns: repeat(1, minmax(250px, 500px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 280px) {
  .cta-group-cmp .cta_group_wrapper.with-icon[data-columns="1"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.with-icon .cta_group_inner {
  padding: 36px 24px;
}
.cta-group-cmp .cta_group_wrapper.with-icon .cta_group_inner .cta_group_icon[data-icon] {
  margin-bottom: 24px;
}
.cta-group-cmp .cta_group_wrapper.with-icon .cta_group_inner .cta_group_icon[data-icon]::after {
  font-family: "FontAwesome";
  font-size: 45px;
  content: attr(data-icon);
}
.cta-group-cmp .cta_group_wrapper.with-icon .cta_group_inner .cta_group_main_text {
  font-size: 20px;
  line-height: 24px;
}
.cta-group-cmp .cta_group_wrapper.with-icon .cta_group_inner .cta_group_sub_text {
  margin-bottom: 36px;
}
.cta-group-cmp .cta_group_wrapper.with-icon .cta_group_inner .cta_group_link_text {
  display: none;
}
.cta-group-cmp .cta_group_wrapper.no-icon[data-columns="4"] {
  grid-template-columns: repeat(4, minmax(250px, 400px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 1138px) {
  .cta-group-cmp .cta_group_wrapper.no-icon[data-columns="4"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.no-icon[data-columns="3"] {
  grid-template-columns: repeat(3, minmax(250px, 400px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 852px) {
  .cta-group-cmp .cta_group_wrapper.no-icon[data-columns="3"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.no-icon[data-columns="2"] {
  grid-template-columns: repeat(2, minmax(250px, 400px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 566px) {
  .cta-group-cmp .cta_group_wrapper.no-icon[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.no-icon[data-columns="1"] {
  grid-template-columns: repeat(1, minmax(250px, 400px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 280px) {
  .cta-group-cmp .cta_group_wrapper.no-icon[data-columns="1"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.no-icon .cta_group_inner .cta_group_main_text {
  flex-grow: 1;
  margin-bottom: 32px;
}
.cta-group-cmp .cta_group_wrapper.no-icon .cta_group_inner .cta_group_sub_text {
  display: none;
}
.cta-group-cmp .cta_group_wrapper.main-text-only[data-columns="4"] {
  grid-template-columns: repeat(4, minmax(250px, 350px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 1138px) {
  .cta-group-cmp .cta_group_wrapper.main-text-only[data-columns="4"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.main-text-only[data-columns="3"] {
  grid-template-columns: repeat(3, minmax(250px, 350px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 852px) {
  .cta-group-cmp .cta_group_wrapper.main-text-only[data-columns="3"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.main-text-only[data-columns="2"] {
  grid-template-columns: repeat(2, minmax(250px, 350px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 566px) {
  .cta-group-cmp .cta_group_wrapper.main-text-only[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.main-text-only[data-columns="1"] {
  grid-template-columns: repeat(1, minmax(250px, 350px));
  grid-gap: 36px;
  justify-content: center;
}
@media (max-width: 280px) {
  .cta-group-cmp .cta_group_wrapper.main-text-only[data-columns="1"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.cta-group-cmp .cta_group_wrapper.main-text-only .cta_group_inner {
  min-height: 90px;
  justify-content: center;
}
.cta-group-cmp .cta_group_wrapper.main-text-only .cta_group_inner:after {
  content: "";
}
.cta-group-cmp .cta_group_wrapper.main-text-only .cta_group_inner .cta_group_main_text {
  text-align: center;
  margin-bottom: 0;
}
.cta-group-cmp .cta_group_wrapper.main-text-only .cta_group_inner .cta_group_sub_text {
  display: none;
}
.cta-group-cmp .cta_group_wrapper.main-text-only .cta_group_inner .cta_group_link_text {
  display: none;
}
@media screen and (max-width: 768px) {
  .cta-group-cmp .cta_group_main_text {
    font-size: 22px;
    letter-spacing: 0;
    text-align: left;
    line-height: 28px;
  }
}

.large_cta_inner{
	-webkit-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	border-radius: 4px;
	min-height:125px;
	position:relative;
	padding:16px;
	cursor:pointer;
	color:#ffffff;
	margin:5px 0;
	height:100%;
	display: flex;
	flex-direction: column;
	background-size:cover;
}

.large_cta_wrapper{
	height: calc(100% - 24px);
	margin:12px 0;
}

.large_cta_wrapper a{
	width:100%;
	text-decoration:none !important;
}

.large_cta_main_text{
	font-family: "HelveticaNeueMedium", sans-serif;
	font-size: 26px;
	color: inherit;
	letter-spacing: 0;
	text-align: left;
	line-height: 33px;
	margin-bottom:20px;
	flex-grow: 1;
	width:75%;
}
.large_cta_sub_text{
	font-family: "HelveticaNeue", sans-serif;
	font-size: 14px;
	color: inherit;
	letter-spacing: 0;
	text-align: left;
	line-height: 22px;
	padding-right:20px;
}
.large_cta_inner:hover .large_cta_sub_text{
	font-family:"HelveticaNeueBold", sans-serif;
}

.large_cta_inner:hover{
	-webkit-box-shadow: 0 6px 8px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 6px 8px 0 rgba(34,34,34,0.10);
	box-shadow: 0 6px 8px 0 rgba(34,34,34,0.10);
}

.large_cta_wrapper:not(.inner_cta_style) .large_cta_inner::after{
	content: '\eb0e';
	position: absolute;
	font-family: "icomoon";
	font-size: 16px;
	right: 16px;
	bottom:16px;
}

.large_cta_wrapper:not(.inner_cta_style):hover .large_cta_inner::after{
	content: '\eb0d';
}

.large_cta_wrapper.inner_cta_style .cta-button {
    background: #FFFFFF;
    border-radius: 3px;
}
.large_cta_wrapper.inner_cta_style:hover .cta-button {
    background: #EEEEEE;
}
.large_cta_wrapper.inner_cta_style a:active .cta-button {
    box-shadow: inset 0px 2px 5px 2px #C9C8C8;
}

.large_cta_wrapper.inner_cta_style .background-ice-blue .cta-button,
.large_cta_wrapper.inner_cta_style .background-white .cta-button,
.large_cta_wrapper.inner_cta_style .background-snow .cta-button,
.large_cta_wrapper.inner_cta_style .background-platinum-grey .cta-button,
.large_cta_wrapper.inner_cta_style .background-silver-grey .cta-button,
.large_cta_wrapper.inner_cta_style .background-ash-grey .cta-button,
.large_cta_wrapper.inner_cta_style .background-slate-grey .cta-button {
    background: #00677F;
    color: #FFFFFF;
}
.large_cta_wrapper.inner_cta_style:hover .background-ice-blue .cta-button,
.large_cta_wrapper.inner_cta_style:hover .background-white .cta-button,
.large_cta_wrapper.inner_cta_style:hover .background-snow .cta-button,
.large_cta_wrapper.inner_cta_style:hover .background-platinum-grey .cta-button,
.large_cta_wrapper.inner_cta_style:hover .background-silver-grey .cta-button,
.large_cta_wrapper.inner_cta_style:hover .background-ash-grey .cta-button,
.large_cta_wrapper.inner_cta_style:hover .background-slate-grey .cta-button {
    background: #004A5C;
    color: #FFFFFF;
}
.large_cta_wrapper.inner_cta_style a:active .background-ice-blue .cta-button,
.large_cta_wrapper.inner_cta_style a:active .background-white .cta-button,
.large_cta_wrapper.inner_cta_style a:active .background-snow .cta-button,
.large_cta_wrapper.inner_cta_style a:active .background-platinum-grey .cta-button,
.large_cta_wrapper.inner_cta_style a:active .background-silver-grey .cta-button,
.large_cta_wrapper.inner_cta_style a:active .background-ash-grey .cta-button,
.large_cta_wrapper.inner_cta_style a:active .background-slate-grey .cta-button {
    box-shadow: inset 0px 2px 5px 2px rgba(0,0,0,.35);
}

.background-tf-red{
	background-color:#E71316 !important;
}
.large_cta_wrapper.inner_cta_style .background-tf-red .cta-button {
    color:#E71316 !important;
}

.background-tf-midnight-blue{
	background-color:#262262 !important;
}
.large_cta_wrapper.inner_cta_style .background-tf-midnight-blue .cta-button {
    color:#262262 !important;
}

.background-kiwi-green{
	background-color:#7FBA00 !important;
}
.large_cta_wrapper.inner_cta_style .background-kiwi-green .cta-button {
    color:#7FBA00 !important;
}

.background-teal{
	background-color:#00677F !important;
}
.large_cta_wrapper.inner_cta_style .background-teal .cta-button {
    color:#00677F !important;
}

.background-kelly-green{
	background-color:#3BAD2F !important;
}
.large_cta_wrapper.inner_cta_style .background-kelly-green .cta-button {
    color:#3BAD2F !important;
}

.background-ice-blue{
	background-color:#EBF2FA !important;
	color:#222222 !important;
}

.background-link-blue{
	background-color:#1E8AE7 !important;
}
.large_cta_wrapper.inner_cta_style .background-link-blue .cta-button {
    color:#1E8AE7 !important;
}

.background-hover-blue{
	background-color:#005DAA !important;
}
.large_cta_wrapper.inner_cta_style .background-hover-blue .cta-button {
    color:#005DAA !important;
}

.background-royal-purple{
	background-color:#522D6D !important;
}
.large_cta_wrapper.inner_cta_style .background-royal-purple .cta-button {
    color:#522D6D !important;
}

.background-lilac-purple{
	background-color:#7474C1 !important;
}
.large_cta_wrapper.inner_cta_style .background-lilac-purple .cta-button {
    color:#7474C1 !important;
}

.background-alt-text-grey{
	background-color:#54545C !important;
}
.large_cta_wrapper.inner_cta_style .background-alt-text-grey .cta-button {
    color:#54545C !important;
}

.background-tf-grey{
	background-color:#555759 !important;
}
.large_cta_wrapper.inner_cta_style .background-tf-grey .cta-button {
    color:#555759 !important;
}

.background-white{
	background-color:#FFFFFF !important;
	color:#222222 !important;
}

.background-snow{
	background-color:#F7F7F7 !important;
	color:#222222 !important;
}

.background-platinum-grey{
	background-color:#F3F3F3 !important;
	color:#222222 !important;
}

.background-silver-grey{
	background-color:#EEEEEE !important;
	color:#222222 !important;
}

.background-ash-grey{
	background-color:#DCDCDC !important;
	color:#222222 !important;
}

.background-slate-grey{
	background-color:#C9C8C8 !important;
	color:#222222 !important;
}

.background-pewter-grey{
	background-color:#A2A2A2 !important;
}
.large_cta_wrapper.inner_cta_style .background-pewter-grey .cta-button {
    color:#A2A2A2 !important;
}

.background-elephant-grey{
	background-color:#7F7F7F !important;
}
.large_cta_wrapper.inner_cta_style .background-elephant-grey .cta-button {
    color:#7F7F7F  !important;
}

.background-black{
	background-color:#222222 !important;
}
.large_cta_wrapper.inner_cta_style .background-black .cta-button {
    color:#222222  !important;
}

@media screen and (max-width: 768px){
	.large_cta_main_text{
		font-size: 22px;
		letter-spacing: 0;
		text-align: left;
		line-height: 28px;
	}
}
/*CMS Site Refresh Updates*/
.path-clinical-mass-spectrometry .large_cta_text {
	z-index: 100;
}
.path-clinical-mass-spectrometry .large_cta_wrapper:hover .large_cta_inner:before,
.path-clinical-mass-spectrometry .large_cta_wrapper:active .large_cta_inner:before {
    content: "";
    height: 100%;
    width: 100%;
	border-radius: 4px;
    background: rgba(0,0,0,.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.path-clinical-mass-spectrometry .large_cta_sub_text,
.path-clinical-mass-spectrometry .large_cta_inner:hover .large_cta_sub_text {
	font-family: "HelveticaNeueMedium", sans-serif;
}
.path-clinical-mass-spectrometry .large_cta_inner {
    -webkit-box-shadow: 0 2px 4px 0 rgb(34 34 34 / 10%);
    -moz-box-shadow:    0 2px 4px 0 rgba(34,34,34,0.10);
    box-shadow:         0 2px 4px 0 rgb(34 34 34 / 10%);
}
.path-clinical-mass-spectrometry .large_cta_inner:hover {
    -webkit-box-shadow: 0 4px 6px 0 rgb(34 34 34 / 10%);
    -moz-box-shadow:    0 4px 6px 0 rgba(34,34,34,0.10);
    box-shadow:         0 4px 6px 0 rgb(34 34 34 / 10%);
}
.path-clinical-mass-spectrometry .large_cta_inner:hover:active,
.path-clinical-mass-spectrometry .large_cta_inner:active{
    -webkit-box-shadow: 0 2px 4px 0 rgb(34 34 34 / 10%);
    -moz-box-shadow:    0 2px 4px 0 rgba(34,34,34,0.10);
    box-shadow:         0 2px 4px 0 rgb(34 34 34 / 10%);
}
.large_cta_wrapper:not(.inner_cta_style):hover:active .large_cta_inner::after,
.large_cta_wrapper:not(.inner_cta_style):active .large_cta_inner::after{
	content: '\eb0e';
}
.large_cta {
    padding: 0 12px;
}
.large_button_ol a:hover,
.large_button_ol a:active {
  text-decoration: none !important;
}
.large_button_ol .large-btn-wrapper {
  height: calc(100% - 30px);
}
.accordion-btn-content .large_button_ol {
  padding: 0;
}
.large_btn_inner {
  padding: 24px;
  background-color: #E7E9EE;
  border-radius: 4px;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #D2D6E0;
  -webkit-box-shadow: 0 2px 4px 0 rgba(34, 34, 34, 0.1);
  -moz-box-shadow: 0 2px 4px 0 rgba(34, 34, 34, 0.1);
  box-shadow: 0 2px 4px 0 rgba(34, 34, 34, 0.1);
}
.large_btn_inner:hover {
  background-color: #D9DDE8 !important;
}
.large_btn_inner:hover .large_btn_title_text {
  color: var(--onelambda-color-hover);
}
.large_btn_inner .large_btn_title_text {
  font-family: "HelveticaNeueBold", sans-serif;
  margin-bottom: 5px;
  display: block;
  color: var(--onelambda-color);
  font-size: 18px;
  position: relative;
  letter-spacing: 0;
  line-height: 24px;
}
.large_btn_inner .large_btn_title_text::after {
  content: '\eb0d';
  position: absolute;
  font-family: "icomoon";
  font-size: 14px;
  margin-left: 10px;
}
.large_btn_inner .large_btn_body_text {
  display: block;
  font-family: "HelveticaNeue", sans-serif;
  font-size: 16px;
  color: #222222;
  letter-spacing: 0;
  line-height: 24px;
}
.large_btn_inner.menu-style {
  background-color: #ffffff;
  border-left: 6px solid #ff0000;
  border-right: 1px solid #DCDCDC !important;
  border-top: 1px solid #DCDCDC !important;
  border-bottom: 1px solid #DCDCDC !important;
  border-radius: 8px;
  padding: 20px;
}
.large_btn_inner.menu-style:hover {
  background-color: #fbf8fa !important;
}
.large_btn_inner.menu-style.border-yellow-orange {
  border-left-color: #F7A700;
}
.large_btn_inner.menu-style.border-sky-blue {
  border-left-color: #83B8D9;
}
.large_btn_inner.menu-style.border-onelambda-pink {
  border-left-color: var(--onelambda-color);
}
.large_btn_inner.menu-style .large_btn_title_text {
  font-family: "HelveticaNeueBold", sans-serif;
  font-size: 20px;
}

.dropdown-button {
  border-radius: 8px !important;
  display: block !important;
  border: 0 !important;
}
.dropdown-button:active {
  padding: 10px !important;
}
.dropdown-button .--main-text {
  font-family: HelveticaNeue-Bold;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 700;
}
.dropdown-button .--main-text::after {
  font-size: 12px;
  font-family: "icomoon";
  content: "\ecd8";
  padding-left: 10px;
}
.dropdown-button.open {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.dropdown-button.open .--main-text::after {
  content: "\ecde";
}
.dropdown-button.open .--menu {
  display: block;
}
.dropdown-button .--menu {
  cursor: default;
  z-index: 5;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  padding: 15px;
  background: #fff;
  box-shadow: 0 4px 6px 0 rgba(34, 34, 34, 0.1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.dropdown-button .--menu.above-nav {
  z-index: 12;
}
.dropdown-button .--menu .--item {
  display: block;
  text-align: left;
  color: #000 !important;
  font-family: HelveticaNeue;
  font-size: 14px;
  margin-bottom: 15px;
}
.dropdown-button .--menu .--item:last-of-type {
  margin-bottom: 0px;
}

.cta {
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
	text-align: center;
	font-size: 16px;
	display: inline-block;
	min-width: 180px;
	height:auto;
	line-height:1.5;
	cursor: pointer;
	border-radius:0;
	margin-top:20px;
	text-shadow: none;
	white-space: normal;
	padding: 10px 20px 7px 20px;
	transition: .3s;
	position:relative;
    overflow-wrap:break-word;
    max-width:100%;
}

.path-patient .cta-primary{
	background-color:#7474b6;
	border:2px solid #7474b6;
}
.path-hcp .cta-primary{
	background-color:#6FABDC;
	border:2px solid #6FABDC;

}
.path-lab .cta-primary{
	background-color:#EF2E34;
	border:2px solid #EF2E34;
}

.path-patient .cta-primary.buyer-type-dark-color{
	background-color:#522D6D;
	border:2px solid #522D6D;
}
.path-hcp .cta-primary.buyer-type-dark-color{
	background-color:#00548B;
	border:2px solid #00548B;

}
.path-lab .cta-primary.buyer-type-dark-color{
	background-color:#AD1E2D;
	border:2px solid #AD1E2D;
}

.path-patient .cta-primary.buyer-type-alt-color{
	background-color:#ED7700;
	border:2px solid #ED7700;
}
.path-hcp .cta-primary.buyer-type-alt-color{
	background-color:#EE3134;
	border:2px solid #EE3134;
}
.path-lab .cta-primary.buyer-type-alt-color{
	background-color:#006680;
	border:2px solid #006680;
}

.cta-primary.new-light-blue-color{
	background-color:#61A8FF;
	border:2px solid #61A8FF;
}
.cta-primary.new-dark-blue-color{
	background-color:#005DAA;
	border:2px solid #005DAA;
}
.cta-primary.darker-blue-color{
	background-color:#3A506B;
	border:2px solid #3A506B;
}
.cta-primary.new-orange-color{
	background-color:#FF9E3D;
	border:2px solid #FF9E3D;
}

.cta-primary:hover{
	background-color:#ffffff !important;
}

.path-patient .cta-primary:hover{
	color:#7474b6;
}

.path-hcp .cta-primary:hover{
	color:#6FABDC;
}

.path-lab .cta-primary:hover{
	color:#EF2E34;
}

.path-patient .cta-primary.buyer-type-dark-color:hover{
	color:#522D6D;
}

.path-hcp .cta-primary.buyer-type-dark-color:hover{
	color:#00548B;
}

.path-lab .cta-primary.buyer-type-dark-color:hover{
	color:#AD1E2D;
}

.path-patient .cta-primary.buyer-type-alt-color:hover{
	color:#ED7700;
}

.path-hcp .cta-primary.buyer-type-alt-color:hover{
	color:#EE3134;
}

.path-lab .cta-primary.buyer-type-alt-color:hover{
	color:#006680;
}

.cta-primary.new-light-blue-color:hover{
	color:#61A8FF;
}

.cta-primary.new-dark-blue-color:hover{
	color:#005DAA;
}

.cta-primary.darker-blue-color:hover{
	color:#3A506B;
}

.cta-primary.new-orange-color:hover{
	color:#FF9E3D;
}

.cta-primary, .cta-secondary:hover{
	color:#ffffff;
	transition: .3s;
}

.cta-primary-alt{
	background-color:#ffffff;
	border:2px solid #ffffff;
	transition: .3s;
}

.path-patient .cta-primary-alt{
	color:#7474b6;
}

.path-hcp .cta-primary-alt{
	color:#6FABDC;
}

.path-lab .cta-primary-alt{
	color:#EF2E34;
}

.path-patient .cta-primary-alt.buyer-type-dark-color{
	color:#522D6D;
}

.path-hcp .cta-primary-alt.buyer-type-dark-color{
	color:#00548B;
}

.path-lab .cta-primary-alt.buyer-type-dark-color{
	color:#AD1E2D;
}

.path-patient .cta-primary-alt.buyer-type-alt-color{
	color:#ED7700;
}

.path-hcp .cta-primary-alt.buyer-type-alt-color{
	color:#EE3134;
}

.path-lab .cta-primary-alt.buyer-type-alt-color{
	color:#006680;
}

.cta-primary-alt.new-light-blue-color{
	color:#61A8FF;
}
.cta-primary-alt.new-dark-blue-color{
	color:#005DAA;
}
.cta-primary-alt.new-orange-color{
	color:#FF9E3D;
}

.cta-primary-alt:hover{
	border-color:#ffffff !important;
	color:#ffffff !important;
	background-color:transparent;
	transition:.3s;
}

.path-patient .cta-primary-alt:hover{
	background-color:#7474b6;
}

.path-hcp .cta-primary-alt:hover{
	background-color:#6FABDC;
}

.path-lab .cta-primary-alt:hover{
	background-color:#EF2E34;
}

.path-patient .cta-primary-alt.buyer-type-dark-color:hover{
	background-color:#522D6D;
}

.path-hcp .cta-primary-alt.buyer-type-dark-color:hover{
	background-color:#00548B;
}

.path-lab .cta-primary-alt.buyer-type-dark-color:hover{
	background-color:#AD1E2D;
}

.path-patient .cta-primary-alt.buyer-type-alt-color:hover{
	background-color:#ED7700;
}

.path-hcp .cta-primary-alt.buyer-type-alt-color:hover{
	background-color:#EE3134;
}

.path-lab .cta-primary-alt.buyer-type-alt-color:hover{
	background-color:#006680;
}

.cta-primary-alt.new-light-blue-color:hover{
	background-color:#61A8FF;
}

.cta-primary-alt.new-dark-blue-color:hover{
	background-color:#005DAA;
}

.cta-primary-alt.new-orange-color:hover{
	background-color:#FF9E3D;
}

.cta-secondary{
	background-color:transparent;
	display:block;
}

.path-patient .cta-secondary{
	color: #7474b6;
	border:2px solid #7474b6;
}

.path-hcp .cta-secondary{
	color: #6FABDC;
	border:2px solid #6FABDC;
}

.path-lab .cta-secondary{
	color: #EF2E34;
	border:2px solid #EF2E34;
}

.path-patient .cta-secondary.buyer-type-dark-color{
	color: #522D6D;
	border:2px solid #522D6D;
}

.path-hcp .cta-secondary.buyer-type-dark-color{
	color: #00548B;
	border:2px solid #00548B;
}

.path-lab .cta-secondary.buyer-type-dark-color{
	color: #AD1E2D;
	border:2px solid #AD1E2D;
}

.path-patient .cta-secondary.buyer-type-alt-color{
	color: #ED7700;
	border:2px solid #ED7700;
}

.path-hcp .cta-secondary.buyer-type-alt-color{
	color: #EE3134;
	border:2px solid #EE3134;
}

.path-lab .cta-secondary.buyer-type-alt-color{
	color: #006680;
	border:2px solid #006680;
}

.cta-secondary.new-light-blue-color{
	color:#61A8FF;
	border:2px solid #61A8FF;
}
.cta-secondary.new-dark-blue-color{
	color:#005DAA;
	border:2px solid #005DAA;
}
.cta-secondary.new-orange-color{
	color:#FF9E3D;
	border:2px solid #FF9E3D;
}

.cta-secondary:hover{
	background-color:#ffffff;
}

.cta-secondary::after {
	display:block;
	content: '';
	position:absolute;
	width:100%;
	height:2px;
	bottom:0;
	left:0;
	right:0;
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
}

.path-patient .cta-secondary::after {
	background-color:#7474b6;
}
.path-hcp .cta-secondary::after {
	background-color:#6FABDC;
}
.path-lab .cta-secondary::after {
	background-color:#EF2E34;
}

.path-patient .cta-secondary.buyer-type-dark-color::after {
	background-color:#522D6D;
}
.path-hcp .cta-secondary.buyer-type-dark-color::after {
	background-color:#00548B;
}
.path-lab .cta-secondary.buyer-type-dark-color::after {
	background-color:#AD1E2D;
}

.path-patient .cta-secondary.buyer-type-alt-color::after {
	background-color:#ED7700;
}
.path-hcp .cta-secondary.buyer-type-alt-color::after {
	background-color:#EE3134;
}
.path-lab .cta-secondary.buyer-type-alt-color::after {
	background-color:#006680;
}

.cta-secondary.new-light-blue-color::after{
	background-color:#61A8FF;
}
.cta-secondary.new-dark-blue-color::after{
	background-color:#005DAA;
}
.cta-secondary.new-orange-color::after{
	background-color:#FF9E3D;
}

.cta-secondary:hover::after, .cta-secondary-alt:hover::after { 
	transform: scaleX(1); 
}

.cta-secondary-alt{
	background-color:transparent;
	color:#ffffff;
	border:2px solid #ffffff;
	transition:.3s;
	display:block;
}

.cta-secondary-alt::after {
	display:block;
	content: '';
	position:absolute;
	width:100%;
	height:2px;
	bottom:0;
	left:0;
	right:0;
	background-color:#ffffff;
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
}

.cta-text { 
	display:inline-block; 
	font-size:14px; 
	margin-top:20px;
	text-decoration:none !important;
}

.cta-text::after {
	display:block;
	content: '';
	border-bottom: solid 2px #7474b6;  
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
}
.cta-text:hover::after,.cta-text.hover::after { 
	transform: scaleX(1); 
}

.path-patient .cta-text{
	color: #7474b6;
}

.path-hcp .cta-text{
	color:#6FABDC;
}

.path-lab .cta-text{
	color:#EF2E34;
}

.path-patient .cta-text::after{
	border-bottom: solid 2px #7474b6;
}
.path-hcp .cta-text::after{
	border-bottom: solid 2px #6FABDC;
}
.path-lab .cta-text::after{
	border-bottom: solid 2px #EF2E34;
}

.path-patient .cta-text.buyer-type-dark-color{
	color: #522D6D;
}
.path-hcp .cta-text.buyer-type-dark-color{
	color: #00548B;
}

.path-lab .cta-text.buyer-type-dark-color{
	color: #AD1E2D;
}

.path-patient .cta-text.buyer-type-alt-color{
	color: #ED7700;
}
.path-hcp .cta-text.buyer-type-alt-color{
	color: #EE3134;
}

.path-lab .cta-text.buyer-type-alt-color{
	color: #006680;
}

.cta-text.new-light-blue-color{
	color:#61A8FF;
}
.cta-text.new-dark-blue-color{
	color:#005DAA;
}
.cta-text.new-orange-color{
	color:#FF9E3D;
}

.path-patient .cta-text.buyer-type-dark-color::after{
	border-bottom: solid 2px #522D6D;
}
.path-hcp .cta-text.buyer-type-dark-color::after{
	border-bottom: solid 2px #00548B;
}
.path-lab .cta-text.buyer-type-dark-color::after{
	border-bottom: solid 2px #AD1E2D;
}

.path-patient .cta-text.buyer-type-alt-color::after{
	border-bottom: solid 2px #ED7700;
}
.path-hcp .cta-text.buyer-type-alt-color::after{
	border-bottom: solid 2px #EE3134;
}
.path-lab .cta-text.buyer-type-alt-color::after{
	border-bottom: solid 2px #006680;
}

.cta-text.new-light-blue-color::after{
	border-bottom: 2px solid #61A8FF;
}
.cta-text.new-dark-blue-color::after{
	border-bottom: 2px solid #005DAA;
}
.cta-text.new-orange-color::after{
	border-bottom: 2px solid #FF9E3D;
}

.cta-text .fa{
	font-weight:900;
}

.cta-wrapper a:hover, .cta-wrapper a:focus{
	text-decoration:none !important;
}

.cta-wrapper .cta-align-left{
    text-align:left;
}

.cta-wrapper .cta-align-center{
    text-align:center;
}

.cta-wrapper .cta-align-right{
    text-align:right;
}

.path-phadia [class*=commercial-btn]{
	border-radius:3px;
	font-family: "HelveticaNeueBold", sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 18px;
	padding:10px;
	margin:10px 0;
	transition:none;
}

.path-phadia .commercial-btn-primary, .path-phadia .cta-primary{
	color:#ffffff;
	background-color:#E71316;
	border:1px solid #E71316;
}

.path-phadia .commercial-btn-primary:hover, .path-phadia .cta-primary:hover{
	background-color:#d01013;
	border-color: #d01013;
}

.path-phadia .commercial-btn-primary:not(.cta-menu-btn):active, .path-phadia .cta-primary:active{
	background-color:#d01013;
	border:0;
	box-shadow:inset 0px 2px 5px 2px #B10609;
	padding:11px;
}


.path-procalcitonin .commercial-btn-primary, .path-procalcitonin .cta-primary{
	background-color:#00677F;
	border-color:#00677F;
}

.path-procalcitonin .commercial-btn-primary:hover, .path-procalcitonin .cta-primary:hover{
	background-color:#004A5C;
	border-color:#004A5C;
}

.path-procalcitonin .commercial-btn-primary:not(.cta-menu-btn):active, .path-procalcitonin .cta-primary:active {
	background-color:#004A5C;
	border:0;
	box-shadow:inset 0px 2px 5px 2px #004A5C;
}

.path-onelambda .commercial-btn-primary, .path-onelambda .cta-primary{
	background-color:var(--onelambda-color);
	border-color:var(--onelambda-color);
}

.path-onelambda .commercial-btn-primary:hover, .path-onelambda .cta-primary:hover{
	background-color:var(--onelambda-color-hover);
	border-color:var(--onelambda-color-hover);
}

.path-onelambda .commercial-btn-primary:not(.cta-menu-btn):active, .path-onelambda .cta-primary:active {
	background-color:var(--onelambda-color-hover);
	border:0;
	box-shadow:inset 0px 2px 5px 2px var(--onelambda-color-active-box-shadow);
}

.path-phadia .commercial-btn-secondary{
	color:#ffffff;
	background-color:#535969;
	border:1px solid #535969;
}

.path-phadia .commercial-btn-secondary:hover{
	background-color:#222222;
	border-color: #222222;
}

.path-phadia .commercial-btn-secondary:active{
	background-color:#333333;
	border:0;
	box-shadow:inset 0px 2px 5px 2px #000000;
	padding:11px;
}

.path-procalcitonin .commercial-btn-secondary{
	background-color:#42474C;
}

.path-procalcitonin .commercial-btn-secondary:hover{
	background-color:#121619;
	border-color:#121619;
}

.path-phadia .commercial-btn-transparent-background{
	color:#ffffff;
	background-color:transparent;
	border:1px solid #ffffff;
}
.path-phadia .commercial-btn-transparent-background:hover{
	color:#222222;
	background-color:#ffffff;
	border:1px solid #ffffff;
}
.path-phadia .commercial-btn-transparent-background:active{
	color:#222222;
	background-color:#ffffff;
	border:1px solid #ffffff;
	box-shadow:inset 0px 2px 5px 2px #eeeeee;
}

.path-phadia .commercial-btn-outline{
	color:#1e8ae7;
	background-color:#ffffff;
	border:1px solid #dcdcdc;
}

.path-phadia .commercial-btn-outline:hover{
	border-color: #1e8ae7;
}

.path-phadia .commercial-btn-outline:active{
	border-color: #1e8ae7;
	box-shadow:inset 0px 2px 5px 2px #eeeeee;
}

.path-procalcitonin .commercial-btn-outline{
	color:#00677F;
	background-color:#ffffff;
	border:1px solid #DCDCDC;
}

.path-procalcitonin .commercial-btn-outline:hover{
	border-color: #004A5C;
}

.path-procalcitonin .commercial-btn-outline:active{
	border-color: #004A5C;
	box-shadow:inset 0px 2px 5px 2px #eeeeee;
}

.path-onelambda .commercial-btn-outline{
	color:var(--onelambda-color);
	background-color:#ffffff;
	border:1px solid #DCDCDC;
}

.path-onelambda .commercial-btn-outline:hover{
	border-color: var(--onelambda-color);
}

.path-onelambda .commercial-btn-outline:active{
	border-color: var(--onelambda-color);
	box-shadow:inset 0px 2px 5px 2px #eeeeee;
}

.path-phadia .commercial-btn-information{
	color:#555759;
	background-color:#ffffff;
	border:1px solid #dcdcdc;
}


.path-phadia .commercial-btn-information{
	color:#555759;
	background-color:#ffffff;
	border:1px solid #dcdcdc;
}

.path-phadia .commercial-btn-information:hover{
	border-color: #555759;
}

.path-phadia .commercial-btn-information:active{
	border-color: #555759;
	box-shadow:inset 0px 2px 5px 2px #eeeeee;
}

.path-phadia .cta-menu-btn{
	background-color:#ffffff;
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	border-radius: 4px;
	border-left:6px solid #ffffff;
	font-family: "HelveticaNeueMedium", sans-serif;
	font-size: 14px;
	color: #222222;
	letter-spacing: 0;
	text-align: left;
	line-height: 20px;
	border-top:0;
	border-bottom:0;
	border-right:0;
	width:100%;
	position:relative;
	padding-right:40px;
}

.path-procalcitonin .cta-menu-btn{
	color:#121619;
}

.path-phadia .cta-menu-btn::after{
	content: '\eb0d';
	position: absolute;
	font-family: "icomoon";
	font-size: 16px;
	right: 15px;
	color:#C9C8C8;
	top:calc(50% - 10px);
}

.path-phadia .cta-container a[target="_blank"] .cta-menu-btn::after {
	display: none;
}

.path-onelambda .cta-container a[target="_blank"] .cta-menu-btn::after {
	content: '\ed5b';
    display:block !important;
}

.path-phadia .cta-container a[target="_blank"] .cta-menu-btn .fas.fa-external-link {
	float: right;
	margin-right: -25px;
	margin-top:3px;
}

.path-onelambda .cta-menu-btn:hover, .path-onelambda .cta-menu-btn:hover::after{
	color:var(--onelambda-color) !important;
}

.path-phadia .cta-menu-btn:hover, .path-phadia .cta-menu-btn:active{
	border-right:0 !important;
	border-top:0 !important;
	border-bottom:0 !important;
	background-color: rgb(235, 242, 250);
	font-family: "HelveticaNeueBold", sans-serif;
	color:#222222;
}

.path-onelambda .cta-menu-btn:hover{
	font-family:"HelveticaNeueMedium", sans-serif;
}

.path-phadia .cta-menu-btn:hover::after, .path-phadia .cta-menu-btn:active::after {
	color:#1E8AE7;
}

.path-phadia .menu-button-hover .cta-menu-btn:hover{
	background-color:#ffffff;
}

.path-phadia .cta-menu-btn.menu-btn-border-tf-red{
	border-color:#E71316;
}

.path-phadia .cta-menu-btn.menu-btn-border-tf-midnight-blue{
	border-color:#262262;
}

.path-phadia .cta-menu-btn.menu-btn-border-kiwi-green{
	border-color:#7FBA00;
}

.path-phadia .cta-menu-btn.menu-btn-border-kelly-green{
	border-color:#3BAD2F;
}

.path-phadia .cta-menu-btn.menu-btn-border-ice-blue{
	border-color:#EBF2FA;
}

.path-phadia .cta-menu-btn.menu-btn-border-link-blue{
	border-color:#1E8AE7;
}

.path-phadia .cta-menu-btn.menu-btn-border-hover-blue{
	border-color:#005DAA;
}

.path-phadia .cta-menu-btn.menu-btn-border-pct-teal{
	border-color:#00677F;
}

.path-phadia .cta-menu-btn.menu-btn-border-royal-purple{
	border-color:#522D6D;
}

.path-phadia .cta-menu-btn.menu-btn-border-lilac-purple{
	border-color:#7474C1;
}

.path-phadia .cta-menu-btn.menu-btn-border-alt-text-grey{
	border-color:#54545C;
}

.path-phadia .cta-menu-btn.menu-btn-border-tf-grey{
	border-color:#555759;
}

.path-phadia .cta-menu-btn.menu-btn-border-white{
	border-color:#FFFFFF;
}

.path-phadia .cta-menu-btn.menu-btn-border-snow{
	border-color:#F7F7F7;
}

.path-phadia .cta-menu-btn.menu-btn-border-platinum-grey{
	border-color:#F3F3F3;
}

.path-phadia .cta-menu-btn.menu-btn-border-silver-grey{
	border-color:#EEEEEE;
}

.path-phadia .cta-menu-btn.menu-btn-border-ash-grey{
	border-color:#DCDCDC;
}

.path-phadia .cta-menu-btn.menu-btn-border-slate-grey{
	border-color:#C9C8C8;
}

.path-phadia .cta-menu-btn.menu-btn-border-pewter-grey{
	border-color:#A2A2A2;
}

.path-phadia .cta-menu-btn.menu-btn-border-elephant-grey{
	border-color:#7F7F7F;
}

.path-phadia .cta-menu-btn.menu-btn-border-black{
	border-color:#222222;
}

.path-phadia .cta-menu-btn.menu-btn-border-yellow-orange{
	border-color:#F7A700;
}

.path-phadia .cta-menu-btn.menu-btn-border-sky-blue{
	border-color:#83B8D9;
}

.path-phadia .cta-menu-btn.menu-btn-border-onelambda-pink{
	border-color:var(--onelambda-color);
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-tf-red:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-tf-red:hover{
	color:#E71316;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-tf-midnight-blue:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-tf-midnight-blue:hover{
	color:#262262;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-kiwi-green:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-kiwi-green:hover{
	color:#7FBA00;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-kelly-green:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-kelly-green:hover{
	color:#3BAD2F;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-ice-blue:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-ice-blue:hover{
	color:#EBF2FA;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-link-blue:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-link-blue:hover{
	color:#1E8AE7;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-hover-blue:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-hover-blue:hover{
	color:#005DAA;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-pct-teal:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-pct-teal:hover{
	color:#00677F;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-royal-purple:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-royal-purple:hover{
	color:#522D6D;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-lilac-purple:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-lilac-purple:hover{
	color:#7474C1;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-alt-text-grey:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-alt-text-grey:hover{
	color:#54545C;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-tf-grey:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-tf-grey:hover{
	color:#555759;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-elephant-grey:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-elephant-grey:hover{
	color:#7F7F7F;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-black:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-black:hover{
	color:#222222;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-yellow-orange:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-yellow-orange:hover{
	color:#F7A700;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-sky-blue:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-sky-blue:hover{
	color:#83B8D9;
}

.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-onelambda-pink:hover::after,
.path-phadia .menu-button-hover .cta-menu-btn.menu-btn-border-onelambda-pink:hover{
	color:var(--onelambda-color);
}

.path-procalcitonin .cta-menu-btn:hover{
	background-color:#EBF7FA !important;
}

.path-onelambda .cta-menu-btn:hover{
	background-color:#FBF8FA !important;
}

.path-phadia .cta-commercial-small{
	padding: 5px 10px;
}

.path-onelambda .cta-commercial-small{
	padding:5px 16px;
}

.path-phadia .cta-commercial-small:active{
	padding:6px 11px !important;
}

.path-onelambda .cta-commercial-small:active{
	padding: 6px 17px !important;
}

.cta.btn{
	margin: 0 !important;
    width: 100% !important;
    padding: 15px;
    border: 0 !important;
    transition:none;
}

.cta.non-bold-font{
	font-family: HelveticaNeueLTStd-Md, Helvetica, Arial, sans-serif;
}

.cta b, .cta strong{
	font-family: HelveticaNeueLTStd-Bd, Helvetica, Arial, sans-serif;
}

.well-shadow.well-padding-off .cta-wrapper{
	padding:0;
}

@media screen and (max-width: 325px){
	.cta{
		min-width:100%;
		height:auto;
	}
}

.cta-wrapper .hide-cta{
	display:none !important;
}

.modal{
	padding-right:0 !important;
}

.modal-dialog{
	max-width:95%;
	margin-left:auto;
	margin-right:auto;
}

.cta.forceFullWidth{
	min-width:0;
	display:block;
}

.new-window.fas.fa-external-link {
	display: none;
	padding-left: 8px;
}

.path-phadia:not(.path-onelambda,
.path-procalcitonin,
.path-covid-19-antibody-testing,
.path-clinical-mass-spectrometry,
.path-infectious-diseases) .new-window.fas.fa-external-link {
	display: inline-block;
}
.button-blocks-wrapper{
	border: 1px solid #DEDEDE;
	border-radius: 4px;
}

.button-block{
	background-color: #F4F4F5;
	padding:48px 40px;
	cursor:pointer;
	display:block;
	display:flex;
	flex-direction:column;
	flex:1;
}

.button-block + .button-block{
	border-left:1px solid #DEDEDE;
}

.button-blocks-wrapper .row + .row{
	border-top:1px solid #DEDEDE;
}

.button-block:hover{
	background-color:#FAF9FA;
}

.button-block:hover .button-block-main-text{
	color:#00677F;
}

.button-block-main-text{
	font-family:ProximaNova-Bold;
	font-size: 20px;
	color: #121619;
	margin-bottom:10px;
}

.button-block-main-text::after{
	font-family:"icomoon";
	content: '\eb0d';
	font-size:16px;
	padding-left:10px;
}

.button-block-sub-text{
	font-size: 16px;
	color: #121619;
}

.button-block a{
	text-decoration:none !important;
}

.button_blocks .row{
	margin:0;
	display:flex;
}

@media screen and (max-width: 767px) {
	.button_blocks .row{
		display:block;
	}
	.button-block + .button-block{
		border-left:0;
		border-top:1px solid #dedede;
	}
	.button-block .button-block-main-text{
		color:#00677F;
	}
}
.back-to-top-button {
  position: fixed;
  right: 0;
  top: 75%;
  margin-top: -30px;
  z-index: 500;
  width: 60px;
  height: 60px;
  background-color: #C0BFC0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: none;
}
.back-to-top-button:hover {
  background-color: #808080;
}

.phadia-back-to-top-btn-container {
  text-align: right;
}
.phadia-back-to-top-btn-container .phadia-back-to-top-button {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color);
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  box-shadow: 0px 2px 4px rgba(34, 34, 34, 0.1);
  margin-left: calc(100% + 31px);
  margin-top: -75px;
  transition: font-size 100ms;
}
@media (max-width: 1400px) {
  .phadia-back-to-top-btn-container .phadia-back-to-top-button {
    margin-left: auto !important;
    margin-top: 0  !important;
    margin-right: 12px;
  }
}
.phadia-back-to-top-btn-container .phadia-back-to-top-button.relative {
  margin-left: auto;
  margin-top: 0;
}
.phadia-back-to-top-btn-container .phadia-back-to-top-button:hover {
  border-width: 2px;
  font-size: 20px;
}

.breadcrumbs-wrapper .breadcrumb-item{
	text-transform:uppercase;
	display:inline-block;
	margin: 3px 15px 3px 0;
}

.root>.aem-Grid>.breadcrumbs-wrapper{
	margin-top:112px;
}

.breadcrumbs-container{
	margin:10px auto;
}

.breadcrumb-item-wrapper{
	white-space:nowrap;
}

.breadcrumbs-wrapper .fa{
	font-weight:900;
	margin-right:10px;
}

.path-patient .breadcrumbs-wrapper .fa{
	color:#7474b6;
}

.path-hcp .breadcrumbs-wrapper .fa{
	color:#6FABDC;
}

.path-lab .breadcrumbs-wrapper .fa{
	color:#EF2E34;
}

.breadcrumb-item-wrapper:last-of-type .fa{
	color:#333333 !important;
	font-weight:normal;
}

@media screen and (max-width: 768px){
	.root>.aem-Grid>.breadcrumbs-wrapper{
		margin-top:57px;
	}
	
	.breadcrumbs-wrapper .breadcrumb-item{
		margin: 3px 7px 3px 0;
	}
	.breadcrumbs-wrapper .fa{
		margin-right:3px;
	}
}

@media screen and (max-width: 500px){
	
	.breadcrumbs-wrapper .breadcrumb-item{
		font-size:12px;
	}
}
.cmp-sharing .sharing-btns.style-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cmp-sharing .sharing-btns.style-icons a,
.cmp-sharing .sharing-btns.style-icons a:hover,
.cmp-sharing .sharing-btns.style-icons > span:not(.share-label) {
  color: inherit !important;
  text-decoration: none !important;
}
.cmp-sharing .sharing-btns.style-roundIcons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
}
.cmp-sharing .sharing-btns.style-roundIcons a,
.cmp-sharing .sharing-btns.style-roundIcons a:hover,
.cmp-sharing .sharing-btns.style-roundIcons > span:not(.share-label) {
  color: inherit !important;
  text-decoration: none !important;
}
.cmp-sharing .sharing-btns.text-center {
  text-align: center;
  justify-content: center;
}
.cmp-sharing .sharing-btns.text-end {
  text-align: right;
  justify-content: right;
}
.cmp-sharing .sharing-btns .share-label {
  color: #222;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn {
  padding: 4px 8px;
}
.cmp-sharing .sharing-btns .share-btn {
  cursor: pointer;
}
.cmp-sharing .sharing-btns.style-roundIcons .icon-circle {
  background-color: #222;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-sharing .sharing-btns.style-roundIcons .button-text {
  display: none;
}
.cmp-sharing .sharing-btns.style-icons a,
.cmp-sharing .sharing-btns.style-icons > span {
  display: inline-block;
  margin-top: 15px;
}
.cmp-sharing .sharing-btns.style-icons .button-text {
  display: none;
}
.cmp-sharing .sharing-btns.style-icons .icon {
  font-size: 24px;
}
.cmp-sharing .sharing-btns.style-buttons .share-label {
  display: none;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn {
  display: inline-block;
  margin-top: 15px;
  margin-right: 8px;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff !important;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn.facebook {
  background-color: #1778f2;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn.twitter {
  background-color: #26a7de;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn.linkedin {
  background-color: #0072b1;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn.email {
  background-color: #97989b;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn.copy-link {
  background-color: #97989b;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn span.fa,
.cmp-sharing .sharing-btns.style-buttons .share-btn span.fa-brands {
  margin-right: 8px;
}
.cmp-sharing .sharing-btns.style-buttons .share-btn:hover {
  color: #fff !important;
}

#anchor_nav_wrapper{
    position: fixed;
    top: 0;
    left:0;
    right:0;
    z-index: 1000;
    background-color: #ffffff;
    padding:20px 0;
    width:100%;
    margin:0 auto;
    height:71px;
}

#anchor_nav_inner{
    max-width:1200px;
    margin:0 auto;
}

#anchor_nav_links{
    display:inline-block;
}

.anchor-item{
    text-decoration: none;
    display:inline-block;
    margin:0 13px;
    padding-top:7px;
    cursor:pointer;
    font-family: HelveticaNeue, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #575757;
}

.anchor-item::after{
    width: 0;
    height: 3px;
    background-color: #7474C1;
    margin-top: 2px;
    transition: width .5s ease;
    content: ' ';
    display:block;
}

.path-hcp .anchor-item::after{
    background-color:#6FABDC;
}
.path-lab .anchor-item::after{
    background-color:#EE3134;
}

.anchor-item:hover::after, .anchor-item.active::after{
    width:100%;
}

#anchor_nav_links_col{
    text-align:right;
}

#mobile-anchor-nav-btn{
    display:none;
	font-size: 25px;
	padding-top: 5px;
}

@media screen and (max-width: 767px){
	#mobile-anchor-nav-btn{
		display: inline-block;
	}
	#anchor_nav_links{
		position:absolute;
        top:50px;
        width:100%;
        left:0;
        right:0;
        display:none;
    }
    #anchor_nav_links.active{
		display:block;
    }
    .anchor-item{
        color: #4A4A4A;
        background-color: #f6f6f6;
        display: block;
        margin: 0;
        border-bottom: 1px solid #D8D8D8 !important;
        padding: 15px 20px;
        position: relative;
        text-align: left;
        line-height: auto;
        border-right: 0;
	}
	.anchor-item:hover::after, .anchor-item.active::after{
		width:0%;
     }
    .path-patient .anchor-item:hover, .path-patient .anchor-item.active{
    	color:#7474C1;
	}
    .path-hcp .anchor-item:hover, .path-hcp .anchor-item.active{
    	color:#6FABDC;
	}
    .path-lab .anchor-item:hover, .path-lab .anchor-item.active{
       color:#EE3134;
    }
}


.breadcrumbs-cmp .breadcrumb-container {
  max-width: 1500px;
  margin: 0 auto;
}
.breadcrumbs-cmp #breadCrumbs.absolute {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}
.breadcrumbs-cmp #breadCrumbs .breadcrumb {
  padding: 19px 28px;
  background-color: transparent;
  margin: 0;
}
.breadcrumbs-cmp #breadCrumbs .breadcrumb .breadcrumb-item a {
  font-family: HelveticaNeue-Bold;
  font-size: 14px;
  color: #7F7F7F;
}
.breadcrumbs-cmp #breadCrumbs .breadcrumb > li + li:before {
  font-family: "icomoon";
  content: '\ecdc';
  font-size: 10px;
  color: #7F7F7F;
}
.breadcrumbs-cmp #breadCrumbs.white-font .breadcrumb .breadcrumb-item a {
  color: #ffffff;
}
.breadcrumbs-cmp #breadCrumbs.white-font .breadcrumb > li + li:before {
  color: #ffffff;
}

.separator-bar{
	border-radius:10px;
	min-height:5px;
}

.separator-bar.light-color{
	background-color:rgba(255,255,255,.25);
}
.separator-bar.dark-color{
	background-color:rgba(0,0,0,.25);
}

.separator-bar.horizontal{
	width:100%;
	height:5px;
}

.separator-bar.vertical{
	width:5px;
	height:100%;
}

.separator-bar.bar-align-center{
	margin:0 auto;
}

.separator-bar.bar-align-right{
	margin-left:auto;
}
.mini_catalog_card.flex {
  display: flex !important;
  flex-direction: column;
}
.mini_catalog_card.flex .mini-catalog-card-wrapper {
  display: flex;
  flex: auto;
  flex-direction: column;
}
.mini-catalog-card-wrapper {
  background-color: #ffffff;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(34, 34, 34, 0.1);
  -moz-box-shadow: 0 2px 4px 0 rgba(34, 34, 34, 0.1);
  box-shadow: 0 2px 4px 0 rgba(34, 34, 34, 0.1);
  position: relative;
  min-height: 10px;
  margin: 5px 0;
}
.mini-catalog-card-wrapper .row.equal {
  display: flex;
  flex-wrap: wrap;
}
.mini-catalog-card-wrapper .mini-catalog-card-header {
  border-bottom: 1px solid #eeeeee;
  position: relative;
  min-height: 88px;
}
.mini-catalog-card-wrapper .mini-catalog-card-header .mini-catalog-card-header-text {
  padding: 16px;
  padding-right: 60px;
  display: inline-block;
  font-size: 16px;
  font-family: "HelveticaNeueBold";
}
.mini-catalog-card-wrapper .mini-catalog-card-header .mini-catalog-card-btn-wrapper {
  max-width: 50px;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 88px;
}
.mini-catalog-card-wrapper .mini-catalog-card-header .mini-catalog-card-btn-wrapper a {
  color: #555659 !important;
  text-decoration: none !important;
}
.mini-catalog-card-wrapper .mini-catalog-card-header .mini-catalog-card-btn-wrapper a:hover {
  color: var(--onelambda-color) !important;
}
.mini-catalog-card-wrapper .mini-catalog-card-header .mini-catalog-card-btn-wrapper .mini-catalog-card-btn {
  padding: 10px;
  background-color: #EAE9EC;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.mini-catalog-card-wrapper .mini-catalog-card-header .mini-catalog-card-btn-wrapper .mini-catalog-card-btn:hover {
  background-color: #FAF7FA;
}
.mini-catalog-card-wrapper .mini-catalog-card-body {
  padding: 16px;
}
.mini-catalog-card-wrapper .mini-catalog-card-footer {
  padding: 16px;
  border-top: 1px solid #eeeeee;
}
.mini-catalog-card-wrapper .mini-catalog-card-footer .mini-catalog-card-footer-text {
  color: red;
}
/*

.commercial_card.flex{
	display:flex !important;
	flex-direction:column;
}

.commercial-card-wrapper{
	background-color:#ffffff;
	border:1px solid #EEEEEE;
	border-radius:4px;
	padding:25px;
	-webkit-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	position:relative;
	min-height:10px;
	margin:5px 0;
}

.commercial_card.flex .commercial-card-wrapper{
	display:flex;
	flex:auto;
	flex-direction:column;
}

.commercial-card-heading{
	color: rgb(38, 38, 38);
	font-size: 16px;
	font-family: "HelveticaNeueBold", sans-serif;
	letter-spacing: 0px;
	line-height: 20px;
}

.commercial-card-body{
	color: rgb(43, 43, 43);
	font-size: 13px;
	font-family: "HelveticaNeue", sans-serif;
	letter-spacing: 0px;
	line-height: 20px;
	margin:15px 0 35px 0;
}

.commercial-card-icon{
	margin-bottom:18px;
}

.commercial-card-icon::after{
	font-family:"icomoon";
	content:attr(data-icon);
	font-size:25px;
}

.commercial-card-wrapper a{
	color: rgb(30, 138, 231);
	font-size: 14px;
	font-family: "HelveticaNeue", sans-serif;
	letter-spacing: 0px;
	line-height: 22px;
	position:absolute;
	bottom:25px;
}

.path-procalcitonin .commercial-card-wrapper a{
	color:#00677F;
}

.path-procalcitonin .commercial-card-wrapper:hover a{
	color:#00677F;
}

.path-onelambda .commercial-card-wrapper a{
	color:#B90C4B;
}

.path-onelambda .commercial-card-wrapper:hover a{
	color:#B90C4B;
}

.path-clinical-mass-spectrometry .commercial-card-wrapper:hover a{
	color:#005DAA;
}


.commercial-card-wrapper:hover{
	-webkit-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
}

.commercial-card-wrapper:hover .commercial-card-icon::after{
	color:#1e8ae7;
}

.path-clinical-mass-spectrometry .commercial-card-wrapper:hover .commercial-card-icon::after{
	color:#005DAA;
}
.path-procalcitonin .commercial-card-wrapper:hover .commercial-card-icon::after{
	color:#00677F;
}
.path-onelambda .commercial-card-wrapper:hover .commercial-card-icon::after{
	color:#B90C4B;
}

.commercial-card-wrapper::before{
	display:block;
	width:100%;
	background-color:#1e8ae7;
	height:4px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
	visibility:hidden;
	content: ' ';
}

.path-clinical-mass-spectrometry .commercial-card-wrapper::before{
	background-color:#005DAA;
}
.path-procalcitonin .commercial-card-wrapper::before{
	background-color:#00677F;
}
.path-onelambda .commercial-card-wrapper::before{
	background-color:#B90C4B;
}

.commercial-card-wrapper:hover::before{
	visibility:visible;
}

.commercial-card-wrapper:hover .commercial-card-heading{
	color: #1e8ae7;
}

.path-clinical-mass-spectrometry .commercial-card-wrapper:hover .commercial-card-heading{
	color:#005DAA;
}

.path-procalcitonin .commercial-card-wrapper:hover .commercial-card-heading{
	color:#00677F;
}
.path-onelambda .commercial-card-wrapper:hover .commercial-card-heading{
	color:#B90C4B;
}

.commercial-card-wrapper:hover a {
	font-family: "HelveticaNeueBold", sans-serif;
}*/

.commercial_card.flex{
	display:flex !important;
	flex-direction:column;
}

.commercial-card-wrapper{
	background-color:#ffffff;
	border:1px solid #EEEEEE;
	border-radius:4px;
	padding:25px;
	-webkit-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	position:relative;
	min-height:10px;
	margin:5px 0;
}
.path-clinical-mass-spectrometry .commercial-card-wrapper{
	border:1px solid #DCDCDC;
}

.commercial_card.flex .commercial-card-wrapper{
	display:flex;
	flex:auto;
	flex-direction:column;
}

.commercial-card-heading{
	color: rgb(38, 38, 38);
	font-size: 16px;
	font-family: "HelveticaNeueBold", sans-serif;
	letter-spacing: 0px;
	line-height: 20px;
}

.commercial-card-body{
	color: rgb(43, 43, 43);
	font-size: 13px;
	font-family: "HelveticaNeue", sans-serif;
	letter-spacing: 0px;
	line-height: 20px;
	margin:15px 0 35px 0;
}

.commercial-card-icon{
	margin-bottom:18px;
}

.commercial-card-icon::after{
	font-family:"icomoon";
	content:attr(data-icon);
	font-size:25px;
}

.commercial-card-wrapper a{
	color: rgb(30, 138, 231);
	font-size: 14px;
	font-family: "HelveticaNeue", sans-serif;
	letter-spacing: 0px;
	line-height: 22px;
	position:absolute;
	bottom:25px;
}

.path-procalcitonin .commercial-card-wrapper a{
	color:#00677F;
}

.path-procalcitonin .commercial-card-wrapper:hover a{
	color:#00677F;
}

.path-onelambda .commercial-card-wrapper a{
	color:var(--onelambda-color);
}

.path-onelambda .commercial-card-wrapper:hover a{
	color:var(--onelambda-color);
}

.path-clinical-mass-spectrometry .commercial-card-wrapper a{
	color:#1E8AE7;
}
.path-clinical-mass-spectrometry .commercial-card-wrapper a:visited {
	color: #7474C1;
}
.path-clinical-mass-spectrometry .commercial-card-wrapper a:visited:active,
.path-clinical-mass-spectrometry .commercial-card-wrapper a:active{
	color: #262262;
}
.path-clinical-mass-spectrometry .commercial-card-wrapper:hover {
	background: #EBF2FA;
}

.commercial-card-wrapper:hover{
	-webkit-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
	box-shadow: 0 4px 6px 0 rgba(34,34,34,0.10);
}
.path-clinical-mass-spectrometry .commercial-card-wrapper:hover,
.path-clinical-mass-spectrometry .commercial-card-wrapper:active,
.path-clinical-mass-spectrometry .commercial-card-wrapper:hover:active{
	-webkit-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	-moz-box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
	box-shadow: 0 2px 4px 0 rgba(34,34,34,0.10);
}

.commercial-card-wrapper:hover .commercial-card-icon::after{
	color:#1e8ae7;
}

.path-clinical-mass-spectrometry .commercial-card-wrapper:hover .commercial-card-icon::after{
	color:inherit;
}
.path-procalcitonin .commercial-card-wrapper:hover .commercial-card-icon::after{
	color:#00677F;
}
.path-onelambda .commercial-card-wrapper:hover .commercial-card-icon::after{
	color:var(--onelambda-color);
}

.commercial-card-wrapper::before{
	display:block;
	width:100%;
	background-color:#1e8ae7;
	height:4px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
	visibility:hidden;
	content: ' ';
}

.path-clinical-mass-spectrometry .commercial-card-wrapper::before{
	background-color:transparent;
}
.path-procalcitonin .commercial-card-wrapper::before{
	background-color:#00677F;
}
.path-onelambda .commercial-card-wrapper::before{
	background-color:var(--onelambda-color);
}

.commercial-card-wrapper:hover::before{
	visibility:visible;
}

.commercial-card-wrapper:hover .commercial-card-heading{
	color: #1e8ae7;
}

.path-clinical-mass-spectrometry .commercial-card-wrapper:hover .commercial-card-heading{
	color:inherit;
}

.path-procalcitonin .commercial-card-wrapper:hover .commercial-card-heading{
	color:#00677F;
}
.path-onelambda .commercial-card-wrapper:hover .commercial-card-heading{
	color:var(--onelambda-color);
}

#regionDetectionModal #regionDetectionModalHeadingText {
  font-size: 24px;
}
#regionDetectionModal .close-btn {
  cursor: pointer;
}

body.path-phadia {
  --button-color: #e71316;
  --button-color-hover: #d01013;
  --button-font: "ProximaNova", "HelveticaNeue", Helvetica, Helvetica, Arial, sans-serif;
}
body.path-phadia .cmp-formcommons-container .cmp-formcommons-button {
  display: flex;
  width: 100% !important;
  justify-content: center;
}
body.path-phadia .cmp-formcommons-container .cmp-formcommons-button button[type="submit"] {
  min-width: 180px;
  font-size: 15px;
}
body.path-allergy {
  --button-color: #6867b8;
  --button-color-hover: #3b3a7d;
  --button-font: "HelveticaNeue", Helvetica, sans-serif;
}
body.path-allergy .cmp-formcommons-button button[type="submit"] {
  font-size: 14px;
}
.cmp-formcommons-container.__dark-mode label,
.cmp-formcommons-container.__dark-mode legend,
.cmp-formcommons-container.__dark-mode input,
.cmp-formcommons-container.__dark-mode textarea,
.cmp-formcommons-container.__dark-mode select {
  color: #ffffff;
}
.cmp-formcommons-container .cmp-formcommons-input:focus-within:has( *:not(textarea):focus) {
  outline: #00428e auto 1px;
}
.cmp-formcommons-container .cmp-formcommons-input textarea.cmp-form-text__textarea:focus {
  outline: #00428e auto 1px;
}
.cmp-formcommons-container .cmp-formcommons-input,
.cmp-formcommons-container .cmp-formcommons-options {
  position: relative;
}
.cmp-formcommons-container .cmp-formcommons-input:focus label,
.cmp-formcommons-container .cmp-formcommons-options:focus label,
.cmp-formcommons-container .cmp-formcommons-input:focus-within label,
.cmp-formcommons-container .cmp-formcommons-options:focus-within label,
.cmp-formcommons-container .cmp-formcommons-input:active label,
.cmp-formcommons-container .cmp-formcommons-options:active label,
.cmp-formcommons-container .cmp-formcommons-input.active label,
.cmp-formcommons-container .cmp-formcommons-options.active label {
  font-size: 11px;
  top: 10px;
}
.cmp-formcommons-container .cmp-formcommons-input .cmp-form-options,
.cmp-formcommons-container .cmp-formcommons-options .cmp-form-options,
.cmp-formcommons-container .cmp-formcommons-input .cmp-form-text,
.cmp-formcommons-container .cmp-formcommons-options .cmp-form-text {
  padding-top: 30px;
  margin: 0 7px;
}
.cmp-formcommons-container .cmp-formcommons-input label,
.cmp-formcommons-container .cmp-form-options--drop-down label {
  pointer-events: none;
}
.cmp-formcommons-container .cmp-formcommons-input label.error,
.cmp-formcommons-container .cmp-form-options--drop-down label.error {
  margin: 7px 0 0 0;
}
.cmp-formcommons-container .cmp-form-textarea {
  padding-top: 30px;
  margin: 0 7px;
}
.cmp-formcommons-container .cmp-form-textarea label {
  position: relative;
  top: unset !important;
  font-size: 15px !important;
}
.cmp-formcommons-container textarea {
  width: 100%;
  border-radius: 0;
  background: transparent;
}
.cmp-formcommons-container .cmp-formcommons-options .dropdown {
  display: none;
}
.cmp-formcommons-container label {
  font-family: "HelveticaNeueMedium", sans-serif;
  font-size: 16px;
  color: #1c1c1c;
  position: absolute;
  transition: all .2s ease;
  line-height: 25px;
  top: 30px;
}
.cmp-formcommons-container legend {
  font-size: 15px;
  color: #1c1c1c;
  line-height: 25px;
  margin-bottom: 0;
}
.cmp-formcommons-container textarea.cmp-form-text__textarea {
  font-family: "HelveticaNeueMedium", sans-serif !important;
  font-size: 18px !important;
}
.cmp-formcommons-container input.cmp-form-text__text,
.cmp-formcommons-container select.cmp-form-options__field {
  font-family: "HelveticaNeueMedium", sans-serif !important;
  font-size: 18px !important;
  height: 35px !important;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #727477;
  border-radius: 0;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
}
.cmp-formcommons-container input.cmp-form-text__text {
  padding-left: 4px;
}
.cmp-formcommons-container .cmp-form-options--checkbox,
.cmp-formcommons-container .cmp-form-options--radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cmp-formcommons-container .cmp-form-options--checkbox label,
.cmp-formcommons-container .cmp-form-options--radio label {
  position: relative;
  top: unset !important;
  font-size: 15px !important;
  display: flex;
  flex-direction: row-reverse;
  align-self: start;
  gap: 10px;
}
.cmp-formcommons-container .cmp-form-options--checkbox input,
.cmp-formcommons-container .cmp-form-options--radio input {
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-color: #bec4cb;
  accent-color: #1c1c1c;
  opacity: 1;
  position: static;
}
.cmp-formcommons-container .cmp-form-options--checkbox .cmp-form-options__field-description,
.cmp-formcommons-container .cmp-form-options--radio .cmp-form-options__field-description {
  display: none;
}
.cmp-formcommons-container .cmp-formcommons-button {
  margin: 15px 7px 7px 7px;
}
.cmp-formcommons-container .cmp-formcommons-button button {
  display: block;
  padding: 12px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-weight: 500;
  line-height: 1;
  background-color: #d3d8de;
}
.cmp-formcommons-container .cmp-formcommons-button button:hover {
  background-color: #bec4cb;
}
.cmp-formcommons-container .cmp-formcommons-button button:active {
  background-color: #bec4cb;
  border-color: #ACAFB4;
}
.cmp-formcommons-container .cmp-formcommons-button button[type="submit"] {
  font-family: var(--button-font);
  font-weight: bold;
  font-size: 16px;
  background-color: var(--button-color);
  color: #ffffff;
}
.cmp-formcommons-container .cmp-formcommons-button button[type="submit"]:hover {
  background-color: var(--button-color-hover);
}
.cmp-formcommons-container .cmp-formcommons-button button[type="submit"]:active {
  background-color: var(--button-color-hover);
}
.cmp-formcommons-container .cmp-form__required::after {
  content: '*';
}
.cmp-formcommons-container label.error {
  color: #f1472f;
  font-size: 13px;
  position: relative;
  margin: 7px 7px 0 7px;
  top: unset !important;
}
.cmp-form-options--multi-drop-down .cmp-formcommons-options.active label {
  top: 30px;
}
.cmp-form-options--multi-drop-down .multiselect-native-select .btn-group {
  display: block;
}
.cmp-form-options--multi-drop-down input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0 !important;
}
.cmp-form-options--multi-drop-down input[type="checkbox"]:checked::after {
  font-family: "icomoon";
  content: "\eb08";
  font-size: 20px;
}
.cmp-form-options--multi-drop-down button.multiselect {
  background: transparent;
  border: 1px solid #C9C8C8;
  padding: 6px 16px 6px 0;
  height: auto;
  border-radius: 4px;
  font-family: "HelveticaNeueMedium", sans-serif;
  color: #222222;
  font-size: 18px;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  box-shadow: none !important;
  min-height: 35px;
}
.cmp-form-options--multi-drop-down .btn-group {
  position: relative;
}
.cmp-form-options--multi-drop-down .btn-group::after {
  right: 8px;
  top: 13px;
  font-family: 'icomoon';
  content: "\ee2c";
  font-size: 10px;
  position: absolute;
  color: #333333;
  pointer-events: none;
  display: block;
}
.cmp-form-options--multi-drop-down .btn-group.open::after {
  content: "\ee2f";
}
.cmp-form-options--multi-drop-down .multiselect-filter {
  margin-bottom: 10px;
}
.cmp-form-options--multi-drop-down .multiselect-filter input {
  border: 0 !important;
  border-bottom: 1px solid #C9C8C8 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cmp-form-options--multi-drop-down .multiselect-filter input,
.cmp-form-options--multi-drop-down .multiselect-filter input::placeholder {
  font-family: "HelveticaNeueMedium", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.cmp-form-options--multi-drop-down .multiselect-filter input::placeholder {
  color: #8A8A8A;
}
.cmp-form-options--multi-drop-down .multiselect-option.dropdown-item {
  display: block;
  font-family: "HelveticaNeue", sans-serif;
  font-size: 14px;
  color: #222222;
  letter-spacing: 0;
  text-align: left;
  line-height: 22px;
  font-weight: 400;
  padding: 4px 0;
}
.cmp-form-options--multi-drop-down .multiselect-container.dropdown-menu {
  width: 100%;
  padding-bottom: 7px;
  border-top: 0;
  max-height: 210px;
  overflow-y: scroll;
  z-index: 10;
}
.cmp-form-options--multi-drop-down .multiselect-container.dropdown-menu li:first-of-type {
  display: none;
}
.cmp-form-options--multi-drop-down .dropdown-backdrop {
  display: none;
}
.cmp-form-options--multi-drop-down .multiselect-container > .multiselect-option > span,
.cmp-form-options--multi-drop-down .multiselect-container .multiselect-group > span {
  padding: 0 16px;
  position: relative;
}
.cmp-form-options--multi-drop-down .multiselect-container > .multiselect-option > span > .form-check-label,
.cmp-form-options--multi-drop-down .multiselect-container .multiselect-group > span > .form-check-label {
  margin-bottom: 0;
}
.cmp-form-options--multi-drop-down .form-check-label {
  margin-left: 28px;
  font-family: "HelveticaNeue", sans-serif !important;
  font-size: 14px !important;
  color: #222222 !important;
  letter-spacing: 0;
  text-align: left;
  line-height: 22px;
  font-weight: 400;
  position: static;
}
.cmp-form-options--multi-drop-down .form-check .checkstyle {
  margin-left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.cmp-form-options--multi-drop-down .form-check .checkstyle::after {
  font-family: "icomoon";
  content: "\eb08";
}
.cmp-form-options--multi-drop-down .dropdown-toggle {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cmp-form-options--multi-drop-down .multiselect-selected-text {
  text-overflow: ellipsis;
  overflow: hidden;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down label,
[class^="path-allergy"] .cmp-form-options--multi-drop-down label {
  bottom: 5px;
  margin-bottom: 0;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down .dropdown-menu label,
[class^="path-allergy"] .cmp-form-options--multi-drop-down .dropdown-menu label {
  font-size: 15px;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down.options-selected,
[class^="path-allergy"] .cmp-form-options--multi-drop-down.options-selected {
  margin-top: 19px;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down.options-selected > label,
[class^="path-allergy"] .cmp-form-options--multi-drop-down.options-selected > label {
  bottom: 25px;
  font-size: 11px;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down.options-selected .btn-group::after,
[class^="path-allergy"] .cmp-form-options--multi-drop-down.options-selected .btn-group::after {
  top: 16px;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down button.multiselect,
[class^="path-allergy"] .cmp-form-options--multi-drop-down button.multiselect {
  border: 0;
  border-bottom: 1px solid #979797;
  border-radius: 0;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down .btn-group,
[class^="path-allergy"] .cmp-form-options--multi-drop-down .btn-group {
  margin: 0;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down .btn-group .multiselect-selected-text,
[class^="path-allergy"] .cmp-form-options--multi-drop-down .btn-group .multiselect-selected-text {
  display: block;
  padding-left: 0;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down .btn-group::after,
[class^="path-allergy"] .cmp-form-options--multi-drop-down .btn-group::after {
  right: 0;
}
[class^="path-phadia"]:not(.path-onelambda) .cmp-form-options--multi-drop-down .btn-group button,
[class^="path-allergy"] .cmp-form-options--multi-drop-down .btn-group button {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.path-phadia .cmp-form-options--multi-drop-down,
.path-allergy .cmp-form-options--multi-drop-down {
  position: relative;
}
.path-phadia .cmp-form-options--multi-drop-down .multiselect-native-select,
.path-allergy .cmp-form-options--multi-drop-down .multiselect-native-select {
  display: block;
}
.path-phadia .cmp-form-options--multi-drop-down li label,
.path-allergy .cmp-form-options--multi-drop-down li label {
  position: relative;
}
.path-phadia .cmp-form-options--multi-drop-down li a,
.path-allergy .cmp-form-options--multi-drop-down li a {
  outline: 0 !important;
}
.path-phadia .cmp-form-options--multi-drop-down button.multiselect,
.path-allergy .cmp-form-options--multi-drop-down button.multiselect {
  background: transparent !important;
  padding: 6px 0px;
  color: #222222 !important;
  float: none;
}
.path-phadia .cmp-form-options--multi-drop-down button.multiselect .caret,
.path-allergy .cmp-form-options--multi-drop-down button.multiselect .caret {
  display: none;
}
.path-phadia .cmp-form-options--multi-drop-down ul label,
.path-allergy .cmp-form-options--multi-drop-down ul label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "HelveticaNeue", sans-serif !important;
  padding: 0 20px 0 35px;
}
.path-phadia .cmp-form-options--multi-drop-down ul label input[type="checkbox"],
.path-allergy .cmp-form-options--multi-drop-down ul label input[type="checkbox"] {
  min-width: 25px;
  width: 25px;
  height: 25px;
  position: relative;
  border: 1px solid #D8D8D8;
  opacity: 1;
  border-radius: 0;
  margin-right: 10px;
}
.path-phadia .cmp-form-options--multi-drop-down .input-group,
.path-allergy .cmp-form-options--multi-drop-down .input-group {
  width: 100%;
  margin: 0 !important;
}
.path-phadia .cmp-form-options--multi-drop-down .input-group-addon,
.path-allergy .cmp-form-options--multi-drop-down .input-group-addon,
.path-phadia .cmp-form-options--multi-drop-down .input-group-btn,
.path-allergy .cmp-form-options--multi-drop-down .input-group-btn {
  display: none;
}
.path-phadia .cmp-form-options--multi-drop-down .multiselect-search,
.path-allergy .cmp-form-options--multi-drop-down .multiselect-search {
  width: 100% !important;
  height: auto !important;
  padding: 6px 16px !important;
}
.path-phadia .cmp-form-options--multi-drop-down .multiselect-selected-text,
.path-allergy .cmp-form-options--multi-drop-down .multiselect-selected-text {
  padding-left: 15px;
}
.path-phadia .cmp-form-options--multi-drop-down .multiselect-container.dropdown-menu,
.path-allergy .cmp-form-options--multi-drop-down .multiselect-container.dropdown-menu {
  position: absolute;
  top: 100%;
  width: 100%;
  padding-bottom: 0;
}
.path-phadia .cmp-form-options--multi-drop-down .multiselect-container.dropdown-menu a,
.path-allergy .cmp-form-options--multi-drop-down .multiselect-container.dropdown-menu a {
  background-color: transparent !important;
}
.form-wrapper .cmp-form-options--multi-drop-down .multiselect-error-message {
  display: none;
  position: absolute;
  color: #E71316;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.form-wrapper .cmp-form-options--multi-drop-down:not(.options-selected) .multiselect-native-select.has-error button.multiselect {
  border-color: #E71316 !important;
}
.form-wrapper .cmp-form-options--multi-drop-down:not(.options-selected) .multiselect-native-select.has-error + .multiselect-error-message {
  display: block;
}
.form-wrapper .cmp-form-options--multi-drop-down .multiselect-container input {
  border-color: #d8d8d8 !important;
}

