/*
 *  Copyright 2017 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.
 */
/* stylelint-disable-next-line selector-max-type */
.cmp-image img {
  width: 100%;
}

/*
 *  Copyright 2017 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.
 */
/** @define image */
.cmp-image__image {
  width: 100%;
}

/*
 *  Copyright 2017 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.
 */
.cmp-search {
  position: relative;
}
.cmp-search__field {
  position: relative;
  height: 2rem;
}
.cmp-search__input {
  padding-left: 2rem;
  padding-right: 2rem;
  height: 100%;
  width: 100%;
}
.cmp-search__icon {
  display: block;
  position: absolute;
  left: .5rem;
  top: .5rem;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTE1MnB4IiBoZWlnaHQ9IjExNTJweCIgdmlld0JveD0iMCAwIDExNTIgMTE1MiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTE1MiAxMTUyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGQ9Ik02NzIsMEM0MDYuOTAzLDAsMTkyLDIxNC45MDMsMTkyLDQ4MGMwLDk1LjcsMjguMDExLDE4NC44NTUsNzYuMjc1LDI1OS43MjVDMTgxLjY0Niw4MjYuMzU0LDQ4LjA3NSw5NTkuOTI1LDM2LDk3Mg0KCWMtMTgsMTgtMzYsMzYtMzYsNzJzMTgsNTQsMzYsNzJzMzYuMDEyLDM2LDcyLDM2czU0LTE4LDcyLTM2YzEyLjA3NS0xMi4wNzUsMTQ1LjY0Ni0xNDUuNjQ2LDIzMi4yNzUtMjMyLjI3NQ0KCUM0ODcuMTQ0LDkzMS45ODgsNTc2LjMsOTYwLDY3Miw5NjBjMjY1LjA5NywwLDQ4MC0yMTQuOTAzLDQ4MC00ODBDMTE1MiwyMTQuOTAzLDkzNy4wOTcsMCw2NzIsMHogTTY3Miw4MTYNCgljLTE4NS41NjgsMC0zMzYtMTUwLjQzMy0zMzYtMzM2YzAtMTg1LjU2OCwxNTAuNDMyLTMzNiwzMzYtMzM2YzE4NS41NjcsMCwzMzYsMTUwLjQzMiwzMzYsMzM2QzEwMDgsNjY1LjU2Nyw4NTcuNTY3LDgxNiw2NzIsODE2eiINCgkvPg0KPC9zdmc+DQo=");
  background-size: contain;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
}
.cmp-search__loading-indicator {
  display: none;
  position: absolute;
  top: .5rem;
  left: .5rem;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  animation: cmp-search__loading-indicator-spin 2s linear infinite;
}
@keyframes cmp-search__loading-indicator-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cmp-search__clear {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.cmp-search__clear-icon {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTE1MnB4IiBoZWlnaHQ9IjExNTJweCIgdmlld0JveD0iMCAwIDExNTIgMTE1MiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTE1MiAxMTUyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGlkPSJYTUxJRF85XyIgZD0iTTgyLjYsOTM3LjJsMzYyLTM2Mkw4NCwyMTQuOGMtMTQuMS0xNC4xLTE0LjEtMzYuOSwwLTUxbDgxLjItODEuMmMxNC4xLTE0LjEsMzYuOS0xNC4xLDUxLDBsMzYwLjUsMzYwLjUNCglMOTM3LjIsODIuNmMxNC4xLTE0LjEsMzYuOS0xNC4xLDUxLDBsODEuMiw4MS4yYzE0LjEsMTQuMSwxNC4xLDM2LjksMCw1MUw3MDguOSw1NzUuM2wzNjAuNSwzNjAuNWMxNC4xLDE0LjEsMTQuMSwzNi45LDAsNTENCglsLTgxLjIsODEuMmMtMTQuMSwxNC4xLTM2LjksMTQuMS01MSwwTDU3Ni43LDcwNy41bC0zNjIsMzYyYy0xNC4xLDE0LjEtMzYuOSwxNC4xLTUxLDBsLTgxLjItODEuMg0KCUM2OC41LDk3NC4yLDY4LjUsOTUxLjMsODIuNiw5MzcuMnoiLz4NCjwvc3ZnPg0K");
  background-size: contain;
  width: 1rem;
  height: 1rem;
}
.cmp-search__results {
  display: none;
  overflow-y: auto;
  min-width: 100%;
  max-height: 10rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999999;
  border: 1px solid #ccc;
  background: #fff;
}
.cmp-search__item {
  display: block;
}
.cmp-search__item--is-focused {
  background-color: #ccc;
}

.font-size-8pt{
	font-size:8pt;
}
.font-size-10pt{
	font-size:10pt;
}
.font-size-12pt{
	font-size:12pt;
}
.font-size-14pt{
	font-size:14pt;
}
.font-size-16pt{
	font-size:16pt;
}
.font-size-18pt{
	font-size:18pt;
}
.font-size-20pt{
	font-size:20pt;
}
.font-size-22pt{
	font-size:22pt;
}
.font-size-24pt{
	font-size:24pt;
}
.download-item {
  margin-bottom: 50px;
}
.download-item h4 {
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1d252d;
  font-size: 24px;
  font-weight: normal;
  font-style: none;
}
.download-item .alle-core-borderAtBottom {
  border-bottom: 1px solid #939393;
  height: 100%;
  padding-bottom: 10px;
  padding-left: 25px;
  vertical-align: middle;
  position: relative;
  bottom: 15px;
}
.download-item .alle-core-download {
  list-style: none;
  font-size: 12px;
  padding: 18px 35px;
  padding-bottom: 40px;
  background-color: #eaf1f9;
}
@media (max-width: 767px) {
  .download-item .alle-core-download.clearfix ul {
    padding-left: 0;
  }
}
.download-item .alle-core-download.clearfix ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: stretch;
  padding: 10px 0;
}
.download-item .alle-core-download.clearfix ul li:before {
  content: "";
}
.download-item .alle-core-download.clearfix ul li .alle-core-download-icon {
  width: auto;
  align-self: center;
  padding-right: 10px;
}
.download-item .alle-core-download.clearfix ul li .alle-core-borderAtBottom {
  bottom: auto;
}

.contentcontainer.aem-GridColumn.aem-GridColumn--default--12 {
  padding: 0px;
  margin: auto;
  float: none !important;
}
.containercustom .col-xs-12.col-sm-4.col-md-4.col-lg-4 {
  padding: 0px !important;
}
.root.responsivegrid {
  padding: 0px !important;
}
#bottom-container button {
  border: 1px solid #ffffff;
  border-radius: 0;
  letter-spacing: 2px;
  line-height: 12px;
  padding: 14px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}
#bottom-container button a {
  text-decoration: none;
  color: #1D252D;
}
.imageText {
  padding: -15px;
}
.imageText .standardpadding {
  padding: 10px;
}
.imageText .text {
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  text-align: left;
  padding: 10px 15px;
  color: #000;
  height: 100%;
}
.imageText .textWithIcon {
  margin: auto;
  padding: 0px 15px;
}
.imageText .textWithIcon img.img-responsive {
  margin: auto;
}
.imageText .textWithIcon .icon-column {
  padding: 20px 30px;
  text-align: center;
}
.imageText .textWithIcon hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  width: 100%;
  border-top: 1px solid #000;
}
.imageText .textWithIcon button {
  display: block;
  color: #000;
  text-align: center;
  width: auto;
  margin: auto;
  padding: 8px;
  text-decoration: none;
}
.imageText .textWithIcon .content.video {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}
.imageText .textWithIcon .video iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.imageText .textWithIcon h2 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  text-align: center;
  padding: 0px 10px;
}
.imageText .alle-core-pull-left {
  float: left;
}
.imageText .alle-core-pull-right {
  float: right;
}
.imageText .padding-null {
  padding: 0px;
}
.textWithMargin {
  padding: 10px;
}
.textWithMargin h3 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  padding: 0px 10px;
  color: #e62b1c;
}
.textWithMargin h3 p {
  font-size: 18px;
}
.textWithMargin .text {
  margin-top: 10px;
  padding: 0px 10px;
}
.textWithMargin .text ul {
  list-style: none;
  padding: 0px 15px;
}
.textWithMargin .text ul li::before {
  content: "\2022";
  color: #e62b1c;
  font-weight: 600;
  margin-right: 1em;
  margin-left: -1em;
}
@media (min-width: 768px) {
  .contentcontainer.aem-GridColumn.aem-GridColumn--default--12 {
    padding: 0px;
    margin: auto;
    float: none !important;
  }
  .containercustom .col-xs-12.col-sm-4.col-md-4.col-lg-4 {
    padding: 0px !important;
  }
  .root.responsivegrid {
    padding: 0px !important;
  }
  #bottom-container button {
    border: 1px solid #ffffff;
    border-radius: 0;
    letter-spacing: 2px;
    line-height: 12px;
    padding: 14px;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
  }
  #bottom-container button a {
    text-decoration: none;
    color: #1D252D;
  }
  .imageText {
    padding: -15px;
  }
  .imageText .text {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    text-align: left;
    padding: 10px 15px;
    color: #000;
    height: 100%;
  }
  .imageText .textWithIcon {
    margin: auto;
    padding: 0px 15px;
  }
  .imageText .textWithIcon img.img-responsive {
    margin: auto;
  }
  .imageText .textWithIcon .col-md-2 img.img-responsive {
    padding: 20px 0px;
  }
  .imageText .textWithIcon .icon-column {
    padding: 20px 30px;
    text-align: center;
  }
  .imageText .textWithIcon button {
    display: block;
    color: #000;
    text-align: center;
    width: auto;
    margin: auto;
    padding: 8px;
    text-decoration: none;
  }
  .imageText .textWithIcon .content.video {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
  }
  .imageText .textWithIcon .video iframe {
    height: 100%;
    position: absolute;
    width: 100%;
  }
  .imageText .textWithIcon h2 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center;
    padding: 0px 10px;
  }
  .imageText .textWithIcon.arrow img.img-responsive {
    margin: 0;
  }
  .imageText .alle-core-pull-left {
    float: left;
  }
  .imageText .alle-core-pull-right {
    float: right;
  }
  .imageText .padding-null {
    padding: 0;
  }
}
/* new added cta style*/
.cta-button {
  border-radius: 20px;
  letter-spacing: 2px;
  line-height: 22px;
  padding: 15px 32px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.cta-button a {
  text-decoration: none;
}
.btn-xs {
  padding: 0px 5px !important;
  font-size: 10px !important;
  line-height: 1.5 !important;
  border-radius: 3px !important;
}
.btn-sm {
  padding: 1px 10px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  border-radius: 20px !important;
}
.btn-md {
  padding: 5px 10% !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  border-radius: 20px !important;
}
.btn-lg {
  padding: 6px 30px !important;
  font-size: 18px !important;
  line-height: 1.3333333 !important;
  border-radius: 20px !important;
}
@media (min-width: 768px) {
  .text-with-image-arrows .imageText {
    height: 100%;
  }
  .text-with-image-arrows .imageText > .clearfix {
    height: 100%;
  }
  .text-with-image-arrows .imageText > .clearfix > section {
    height: 100%;
  }
  .arrow {
    height: 100%;
  }
  .arrow > .row {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .arrow > .row:before,
  .arrow > .row:after {
    content: none;
  }
  .arrow > .row > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
  }
  .arrow > .row > a.order-1 {
    order: 1;
  }
  .arrow > .row > a.order-2 {
    order: 2;
  }
  .arrow > .row > a .col-md-6 {
    height: 100%;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    float: none;
  }
  .arrow > .row > .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 30px;
    width: 50%;
  }
  .arrow > .row > .text a {
    transition: all .3s;
    text-decoration: underline transparent;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .arrow > .row > a {
    width: 100%;
  }
  .arrow > .row > a.order-1 {
    order: inherit;
  }
  .arrow > .row > a.order-2 {
    order: inherit;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .arrow > .row > .text {
    width: 100%;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .arrow > .row > .text.alle-core-pull-left {
    order: 1;
  }
  .arrow > .row > .text.alle-core-pull-left:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    border-style: solid;
    border-width: 22px 22px 22px 0;
    right: -20px;
    margin-top: -20px;
    transform: rotateY(180deg);
  }
  .arrow > .row > .text.alle-core-pull-right {
    order: 2;
  }
  .arrow > .row > .text.alle-core-pull-right:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    border-style: solid;
    border-width: 22px 22px 22px 0;
    left: -20px;
    margin-top: -20px;
  }
}
section > .arrow > .row > a .col-md-6 {
  background-color: white;
}
@media (min-width: 991px) {
  .columnselector.text-with-image-arrows:not(.cq-Editable-dom) > .clearfix > div > .row {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
  }
}
.image-with-border {
  border: 2px solid #000000;
  margin: 0px 15px!important;
  width: 248px!important;
  height: 200px!important;
  object-fit: scale-down;
}
@media (max-width: 768px) {
  .image-with-border {
    margin: 0px 35px!important;
    width: 80%!important;
    height: 250px!important;
  }
  .imageText .text {
    padding: 10px 35px!important;
  }
}
#myModal .carousel-control {
  height: max-content;
}
#myModal .carousel-inner img {
  margin: 0 auto;
}

.core-service-icon .column-content {
	border-bottom: 2px solid #0c5ba5;
	height: 16%;
	margin-bottom: 2px;
	padding: 17px;
}

.core-service-icon .title:before {
	position: absolute;
	font-family: 'FontAwesome';
	top: 0;
	left: 10px;
	content: "\f054";
}

.core-service-icon .title {
	display: inline-block;
	height: 27px;
	letter-spacing: 2px;
	line-height: 27px;
	margin: 0;
	padding-left: 25px;
	position: relative;
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #0c5ba5;
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
	text-transform: uppercase;
}

.core-service-icon .column-button {
	border-radius: 0;
	display: block;
	height: auto;
	padding: 5px 0;
	white-space: normal;
	width: 100%;
}

.core-service-icon .column-content h2 {
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #0c5ba5;
	font-size: 37px;
	font-weight: 300;
	font-style: normal;
	margin: 0;
	text-align: center;
}
.video {
  width: 100%;
  cursor: pointer;
}
.video .video-loop-wrap {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  transition: all 0.75s ease-in-out;
  margin-left: auto!important;
  margin-right: auto;
}
.video .video-loop-wrap.active {
  z-index: 2;
  opacity: 1;
}
.video .content.video {
  height: 0;
  position: relative;
}
.video .video iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video .video-container iframe,
.video .video-container object,
.video .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video .video-poster.active {
  z-index: 2;
  opacity: 1;
  display: block;
}
.video .video-poster.active img {
  width: 100%;
}
.video .video-poster {
  z-index: 0;
  display: none;
}
.video .video-content {
  display: none;
}
.video .video-content.active {
  z-index: 2;
  display: block;
}
.video .video-cover {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.45);
}
.video .absolute-center-sm {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  -webkit-transform: translate(-50%, -50%) !important;
}
.video .video_inner-copy {
  display: block;
  text-align: center;
  font-size: 30px;
  line-height: 35px;
  color: white;
}
.video .video_inner-play {
  position: relative;
  margin: 15px auto;
  text-align: center;
  /* border: 2px solid #959595; */
  border: 2px solid #fff;
  transition: border-color 0.25s ease-in;
  height: 65px;
  width: 65px;
}
.video .video .elevate-arrow {
  width: 20px;
  border-width: 12px;
  border-right-width: 0;
  border-left-width: 20px;
  /* border-left-color: #7b8582; */
  border-left-color: #fff;
  transition: border-left-color 0.25s ease-in;
}
.video .elevate-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 8px;
  border-color: transparent;
  border-style: solid;
}

.banner.aem-GridColumn.aem-GridColumn--default--12 {
  padding: 0px;
}
.aem-GridColumn {
  padding: 0px;
}
.banner-wrapper {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.banner-wrapper .alle-banner img.img-responsive {
  width: 100%;
}
.banner-wrapper .button {
  display: inline-block;
  border-radius: 5px;
  border: none;
  color: #ffffff;
  text-align: center;
  width: auto;
  margin: 5px 20px;
}
.banner-wrapper button a {
  color: #ffffff;
  text-decoration: none;
}
.banner-wrapper .btn {
  border-color: white;
  border-radius: 0px;
  padding: 0px;
  margin: 10px auto;
}
@media (min-width: 768px) {
  .banner.aem-GridColumn.aem-GridColumn--default--12 {
    padding: 0px;
  }
  .aem-GridColumn {
    padding: 0px;
  }
  .banner-wrapper {
    position: relative;
    text-align: center;
    color: #ffffff;
    margin: auto;
  }
  .banner-wrapper .alle-banner img.img-responsive {
    width: 100%;
  }
  .banner-wrapper .textOnBanner.col-md-4.col-sm-5.col-md-offset-1 {
    position: absolute;
    top: 50%;
    height: auto;
    transform: translateY(-50%);
  }
  .banner-wrapper .textOnBanner.col-md-4.col-sm-5.col-md-offset-7 {
    position: absolute;
    top: 50%;
    height: auto;
    transform: translateY(-50%);
  }
  .banner-wrapper .textOnBanner p {
    color: #ffffff;
  }
  .banner-wrapper .button {
    display: inline-block;
    border-radius: 5px;
    border: none;
    color: #ffffff;
    text-align: center;
    width: auto;
    margin: 5px 20px;
  }
  .banner-wrapper button a {
    color: #ffffff;
    text-decoration: none;
  }
  .banner-wrapper .btn {
    border-color: white;
    border-radius: 0px;
    padding: 0px;
    margin: 10px auto;
  }
}
.fullWidth {
  max-width: 100%;
}
.fullHeightImg {
  object-fit: cover;
}
.keepContentInPlace {
  top: 50%;
  height: auto;
}

.carousel .carousel-caption {
  color: #fff;
  padding: 20px;
  width: max-content;
  text-align: left;
  opacity: 0.8;
}
.carousel .carousel-caption h1.caption-heading {
  text-align: left;
  margin-top: 0px;
}
.carousel .carousel-caption .carousel-text {
  text-align: left;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  max-height: 120px;
  overflow: hidden;
  white-space: inherit;
}
.carousel .carousel-caption .caption-button {
  align-content: center;
  border: 1px solid #f2f2f2;
  border-radius: 0;
  bottom: 0;
  letter-spacing: 2px;
  padding-bottom: 5px;
  padding-top: 5px;
  color: #0c5ba5;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
}
.carousel .carousel-caption .caption-button div {
  color: #fff;
}
.carousel .caption-left {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  height: max-content;
}
.carousel .caption-right {
  position: absolute;
  left: 96%;
  top: 50%;
  transform: translate(-100%, -50%);
  height: max-content;
}
.carousel .width40 {
  width: 40%;
}
.carousel .width30 {
  width: 30%;
}
.carousel.fadeAnimate .carousel-indicators {
  opacity: 0;
  animation-duration: 3s;
}
.carousel.fadeAnimate .item {
  transition-property: opacity;
  transition-duration: 1s;
  overflow: hidden;
}
.carousel.fadeAnimate .item .caption-heading {
  animation-duration: 3s;
  opacity: 0 !important;
  word-break: break-word;
}
.carousel.fadeAnimate .item .carousel-text {
  animation-duration: 2.7s;
  opacity: 0 !important;
  word-break: break-word;
}
.carousel.fadeAnimate .item .caption-button {
  animation-duration: 3s;
  opacity: 0 !important;
}
.carousel.fadeAnimate .item.active.done .caption-heading,
.carousel.fadeAnimate .item.active.done .carousel-text,
.carousel.fadeAnimate .item.active.done .caption-button {
  opacity: 1 !important;
}
@media (min-width: 768px) {
  .carousel.fadeAnimate .item > img {
    transition: all 2s;
  }
  .carousel.fadeAnimate .item:nth-child(3n+1) > img {
    transform: scale(1.2) translateX(85px);
  }
  .carousel.fadeAnimate .item:nth-child(3n+2) > img {
    transform: scale(1.2) translateY(85px);
  }
  .carousel.fadeAnimate .item:nth-child(3n) > img {
    transform: scale(1.2) translateY(-85px);
  }
  .carousel.fadeAnimate .item.active.done > img {
    transform: scale(1) translateX(0) translateY(0);
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .carousel.fadeAnimate .item:nth-child(3n+1) > img {
    transform: scale(1.2) translateX(30px);
  }
  .carousel.fadeAnimate .item:nth-child(3n+2) > img {
    transform: scale(1.2) translateY(30px);
  }
  .carousel.fadeAnimate .item:nth-child(3n) > img {
    transform: scale(1.2) translateY(-30px);
  }
}
@media (max-width: 767px) {
  .carousel.fadeAnimate .item .carousel-caption {
    padding-bottom: 80px;
  }
  .carousel.fadeAnimate .item > img {
    min-height: 400px;
    object-fit: cover;
  }
}
.carousel.fadeAnimate .item,
.carousel.fadeAnimate .active.left,
.carousel.fadeAnimate .active.right {
  opacity: 0;
}
.carousel.fadeAnimate .active,
.carousel.fadeAnimate .next.left,
.carousel.fadeAnimate .prev.right {
  opacity: 1;
}
.carousel.fadeAnimate .next,
.carousel.fadeAnimate .prev,
.carousel.fadeAnimate .active.left,
.carousel.fadeAnimate .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
.carousel-indicators {
  bottom: 0;
  left: auto;
  margin-bottom: 0;
  right: 0;
  width: auto;
}
.carousel-indicators li,
.carousel-indicators li.active {
  height: 40px;
  width: 40px;
}
.carousel-indicators li {
  background-color: transparent;
  border-radius: 0;
  border: none;
  line-height: 40px;
  margin: 0;
  text-align: center;
  text-indent: 0;
}
.carousel-indicators.no-show {
  display: none;
}
.carousel-indicators .leftcorner {
  position: absolute;
  left: -40px;
  background: transparent;
  bottom: 0;
  color: white;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin-bottom: 0;
  text-align: center;
  text-indent: 0;
  vertical-align: bottom;
  width: 40px;
}
.carousel-indicators .rightcorner {
  background: transparent;
  bottom: 0;
  color: white;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin-bottom: 0;
  text-align: center;
  text-indent: 0;
  vertical-align: bottom;
  width: 40px;
}
.carousel-indicators.title-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: stretch;
  justify-content: stretch;
  padding: 0 140px;
  border-top: 1px solid white;
}
@media (max-width: 991px) and (min-width: 768px) {
  .carousel-indicators.title-row {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .carousel-indicators.title-row {
    padding: 0 15px;
  }
}
.carousel-indicators.title-row li {
  min-height: 60px;
  width: 100%;
  display: block;
  padding-top: 10px;
  color: white;
  transition: all .3s;
  border-right: 1px solid white;
  word-break: break-word;
  overflow: hidden;
}
.carousel-indicators.title-row li:first-child {
  border-left: 1px solid white;
}
.carousel-indicators.title-row li.active {
  color: #35AEE5;
  background-color: transparent;
}
.carousel-indicators.title-row li .indicator-titles {
  display: inline-block;
}
@media (max-width: 767px) {
  .carousel-indicators.title-row li .indicator-titles {
    display: none;
  }
}
.carousel-indicators.title-row li .indicator-titles p {
  display: inline-block;
}
.carousel-control {
  opacity: 1;
  background: none !important;
  z-index: 99;
  width: 40px;
  top: 50%;
  transform: translate(0, -50%);
}
.carousel-control:focus,
.carousel-control:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -52px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -52px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -90px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -90px;
  }
}
@media screen and (max-width: 768px) {
  .caption-left,
  .caption-right {
    position: initial !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateY(0%) !important;
  }
  .carousel-control {
    opacity: 1;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-top: 10px;
    margin-left: -20px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-top: 10px;
    margin-right: -20px;
  }
}
@media (min-width: 480px) {
  .carousel-indicators {
    bottom: 0;
  }
}

@charset "UTF-8";
/*
  scaffolding
*/
/*
  colors
*/
.inline-block {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.grey-landing {
  background-color: #d8d8d9;
}
.grey-content {
  background-color: #e6e6e7;
}
.grey-light {
  background: #9d9ea0;
}
.transparent-grey {
  background-color: rgba(157, 158, 160, 0.3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d9d9ea0, endColorstr=#4d9d9ea0);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d9d9ea0, endColorstr=#4d9d9ea0);
}
.dark-blue {
  background: #ff6701;
}
.blue {
  background-color: #fe8f1c;
}
.blue-light {
  background-color: #cedfef;
}
.heading-blue {
  background-color: #f2f2f2;
}
.transparent-blue {
  background-color: rgba(254, 143, 28, 0.3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dfe8f1c, endColorstr=#4dfe8f1c);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dfe8f1c, endColorstr=#4dfe8f1c);
}
.blue-archive {
  background-color: #e9eef7;
}
/* Element Addition Styles __________________________________________________________________________________________________________________________________________ */
.navbar-form {
  margin-top: 30px;
}
.buttons {
  margin-top: 16px;
}
.content-container {
  margin: 0 auto;
  margin-bottom: 60px;
  max-width: 1200px;
  overflow: hidden;
}
.content-container.no-margin {
  margin-bottom: 0;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
}
.caret {
  transition: transform 0.4s linear;
}
.caret.open {
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
/*Search Box Styles _________________________________________________________________________________________________________________________________________________________________________________*/
.searchRight {
  border-left: 1px solid #ddd;
  float: right;
  width: 190px;
  padding-left: 20px;
  padding-bottom: 20px;
}
.search {
  padding-left: 15px;
  padding-right: 15px;
}
/*****Search box styles****/
.search-results .results-list {
  list-style: none;
  margin-top: 35px;
  padding-left: 0;
}
.search-results .results-list .description {
  line-height: 22px;
}
.search-results .results-list .contact {
  margin-top: 15px;
}
.search-results .results-list .image {
  margin-top: 10px;
}
.search-results li {
  margin: 0;
  margin-bottom: 20px;
  padding: 25px;
}
.search-results .highlight {
  background-color: #d4deef;
}
.search-results .partner li {
  margin-bottom: 0;
  padding: 0;
}
/*Search meadia queries*/
@media (max-width: 325px) {
  .search.searchField form input {
    width: 96%;
    float: left;
  }
  .searchRight {
    display: none;
  }
  .search.searchField {
    width: 100%;
    padding-left: 7px;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .search.searchField {
    width: 100%;
    padding-left: 7px;
  }
  /*input[type=submit]{display:none;}*/
  .search.searchField form input {
    width: 96%;
    float: left;
  }
  .search.searchField form {
    margin-top: 1em;
  }
  .search input[type=submit] {
    display: none;
  }
}
@media (min-width: 380px) and (max-width: 395px) {
  .header-wrapper .hamburger {
    /*top: -120px;*/
    height: 40px;
  }
}
@media (min-width: 480px) and (max-width: 480px) {
  #search_box form {
    /*float: right;*/
    width: 100%;
  }
  /*#search_box{float: right;/*padding-top: 0px !important;}*/
  .searchRight {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 599px) {
  #search_box form {
    float: right;
  }
  #search_box {
    float: right;
  }
  .searchRight {
    display: none;
  }
  .search {
    padding: 0 25px 6px 25px;
  }
}
@media (min-width: 600px) and (max-width: 819px) {
  #search_box form {
    float: right;
  }
  #search_box {
    top: -2em;
    margin-right: 10px;
    float: right;
  }
}
@media (min-width: 820px) and (max-width: 829px) {
  #search_box {
    top: -3em;
    width: 100%;
  }
  #search_box [name="searchform"] {
    float: right;
    margin-right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .search.searchField {
    padding: 0 30px;
  }
  .search.searchField form {
    margin-top: 6em;
  }
}
@media (min-width: 1024px) {
  /*.search.searchField.cq-analyzable {padding: 0 75px;}*/
  .search.searchField form {
    margin-top: 2em;
  }
}
@media (min-width: 1024px) and (max-width: 1122px) {
  .search.searchField {
    padding: 0 30px;
  }
}
/*end*/
@media (max-width: 599px) {
  #search_box {
    float: right;
    padding-top: 0px !important;
  }
}
@media (min-width: 830px) {
  #search_box {
    float: right;
    padding-top: 64px;
  }
  #search_box form {
    float: right;
  }
}
.search-results {
  font-size: 12px;
  line-height: 18px;
  padding: 10px;
}
@media (max-width: 480px) {
  #search_box {
    padding-top: 0 !important;
    float: right;
    width: 80%;
    padding: 0 0 6px 49px;
    margin-right: 10px;
  }
  #searchInput1 {
    width: 80% !important;
  }
}
#search_box {
  z-index: 1;
}
#search_box input {
  border: 0;
  background: #e5e5e5;
  width: 258px;
  height: 31px !important;
  line-height: 31px !important;
  color: #959595;
  padding-left: 20px;
  font-size: 11px;
  display: inline-block;
  vertical-align: middle;
}
#search_box .search_btn {
  background: url('../../../content/dam/interflex/Icons/header/search.png') center center no-repeat #414042;
  width: 31px;
  height: 31px !important;
  margin-left: -5px;
  text-indent: -9999px;
}
.searchRight {
  border-left: 1px solid #ddd;
  float: right;
  width: 190px;
  padding-left: 20px;
  padding-bottom: 20px;
}
div.searchRight p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 829px) {
  .row.header-wrapper .col-xs-3 {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
}
.navigation-item-interflex {
  display: none;
}
/* responsive adjustment __________________________________________________________________________________________________________________________________________________________________________________________________*/
/*
======================
     Header section
======================
*/
@media (max-width: 599px) {
  .utility-header .header-navigation {
    display: none;
  }
  .header-bottom {
    display: block;
  }
  .header-bottom .logo {
    display: none;
  }
  .header-bottom .navigation-list {
    float: left;
    margin-left: 8px;
  }
  .header-bottom .navigation-list a {
    font-size: 10px;
    letter-spacing: normal;
  }
  .navigation-list .navigation-item a {
    font-size: 10px;
    letter-spacing: normal;
  }
  .fixed-area.affix + #homepage-carousel {
    padding-top: 72px;
  }
}
@media (max-width: 829px) {
  .col-xxs-offset-1 {
    margin-left: 8.33333333%;
  }
  .header-wrapper .logo {
    padding-left: 20px;
  }
  .header-wrapper .hamburger .mobile-toggle {
    display: inline-block;
  }
  .header-wrapper .hamburger #accordion {
    display: block;
    overflow: auto;
  }
}
@media (max-width: 500px) and (min-width: 381px) {
  .header-wrapper .hamburger {
    margin: 0;
    padding-left: 0;
  }
  .header-wrapper .hamburger .mobile-toggle {
    width: 75px;
  }
}
@media (max-width: 380px) {
  .header-wrapper .hamburger .mobile-toggle {
    width: 70px;
  }
}
/*
======================
    Main navigation
======================
*/
@media (min-width: 768px) {
  .nav-container {
    display: block;
  }
}
@media (max-width: 1130px) {
  .main-navigation ul > li > a,
  .child-nav ul > li > a {
    font-size: 10px;
  }
  .color-wrapper-1.landing {
    min-height: 141px;
  }
  .fixed-area.affix + #homepage-carousel,
  .fixed-area.affix + .teaserCarousel {
    padding-top: 141px;
  }
}
@media (max-width: 767px) {
  .fixed-area.affix + #homepage-carousel,
  .fixed-area.affix + .teaserCarousel {
    padding-top: 60px;
  }
  .color-wrapper-1.landing {
    min-height: 60px;
  }
  .navbar-default {
    margin-bottom: 0;
  }
  .navbar-toggle {
    margin-top: 25px;
  }
  .navbar-nav {
    margin: 10px 0 0 0;
  }
  .mainNav .navbar-collapse {
    margin-top: -5px;
  }
  .mainNav .navbar-collapse li > a {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    padding: 10px 15px;
  }
  .mainNav .navbar-collapse li.dropdown > a:before {
    content: " ";
  }
  .mainNav .navbar-collapse li.dropdown > a:before {
    color: #f2f2f2;
    content: "▸";
    display: inline-block;
    float: right;
    font-size: 12px;
    margin-right: 5px;
    margin-left: 15px;
  }
  .mainNav .navbar-collapse li.dropdown.open > a:before {
    transform: rotate(90deg);
    transition: all 0.2s ease 0s;
    float: left;
    margin-right: 15px;
  }
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li.active > a,
  .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav > .open > a,
  .navbar-default .navbar-nav > .open > a:hover,
  .navbar-default .navbar-nav > .open > a:focus {
    background: #fe8f1c;
    color: white;
    font-weight: 300;
    text-shadow: none;
  }
  .mainNav .navbar-collapse {
    z-index: 1001;
    background: #ff6701;
    border-radius: 0;
    border: none;
    font-weight: 300 !important;
    text-shadow: none;
  }
  .navbar-collapse {
    position: absolute;
    background: #fff;
    right: 45px;
  }
  .navbar-nav {
    text-align: right;
  }
  .navbar-nav .header-container {
    position: static;
    right: 0;
    height: auto;
    text-align: center;
    width: auto;
    min-width: 260px;
    display: table;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .navbar-nav .header-container .dropdown-menu {
    margin: 0;
    padding: 0;
    text-align: right;
    width: 100%;
    right: 0;
    float: right;
    position: static;
    background: #ff6701;
  }
  .navbar-nav .header-container .dropdown-menu li {
    float: none;
  }
  .navbar-nav .dropdown.open .header-container .dropdown-menu {
    display: block;
    background: white;
    border-radius: 0;
  }
  .navbar-nav .dropdown.open .header-container .dropdown-menu li a {
    padding-right: 40px;
  }
  .navbar-nav .dropdown.open .header-container .dropdown-menu li a:hover {
    background: #fe8f1c;
    color: white;
  }
}
@media (min-width: 768px) {
  .navbar {
    margin-bottom: 0;
  }
  .navbar-header {
    margin-bottom: 0;
  }
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-left: -15px;
    margin-right: -15px;
  }
  .navbar-nav .dropdown .header-container {
    width: 100%;
  }
  .navbar-nav .dropdown.open .header-container .dropdown-menu {
    display: inline-block;
    color: black;
    border-radius: 0;
  }
  .navbar-nav .dropdown.open .header-container .dropdown-menu li {
    display: table-cell;
    float: none;
  }
  .navbar-nav {
    display: table;
    width: 100%;
  }
  .navbar-nav li {
    display: table-cell;
    float: none;
  }
  .navbar-nav li a {
    text-align: center;
  }
  .navbar-nav li:hover .header-container .dropdown-menu {
    display: flex;
    flex-flow: wrap;
  }
  .navbar-nav li:hover .header-container .dropdown-menu li {
    float: none;
    flex-grow: 2;
  }
}
/* hamburger menu styles ____________________________________________________________________________________________________________________________________________________________-- */
/*
  Main navigation for mobile
*/
.hamburger {
  position: relative;
  right: 10px;
  text-align: right;
  top: 9px;
}
.hamburger div#accordion .panel .panel-heading {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.hamburger div#accordion .panel .panel-heading .panel-title {
  width: 100%;
}
.hamburger div#accordion .panel .panel-heading .panel-title a {
  font-size: 20px;
}
.hamburger div#accordion .panel .panel-heading .panel-title a:before {
  content: unset;
}
.hamburger div#accordion .panel .panel-heading .panel-direct-link {
  float: right;
}
.hamburger div#accordion .panel .panel-heading .panel-direct-link a {
  padding: 10px;
  color: #f2f2f2;
  display: inline-block;
  float: left;
  font-size: 20px;
  margin-right: 5px;
  transition: all .3s;
}
.hamburger div#accordion .panel .panel-heading .panel-direct-link a[aria-expanded="true"] {
  transform: rotate(90deg);
}
.hamburger div#accordion .childpanel-direct-link {
  float: right;
}
.hamburger div#accordion .childpanel-direct-link a {
  padding: 10px;
  color: #23527c;
  display: inline-block;
  float: left;
  font-size: 12px;
  margin-right: 5px;
}
.hamburger .mobile-toggle {
  display: none;
}
.hamburger .mobile-toggle .hamburgerMenuBars {
  width: 27px;
  height: 2px;
  background-color: black;
  margin: 6px auto;
  transition: transform .3s;
}
.hamburger .mobile-toggle[aria-expanded="true"] .bar1 {
  transform: rotate(-225deg) translate(6px, -6px);
}
.hamburger .mobile-toggle[aria-expanded="true"] .bar2 {
  opacity: 0;
}
.hamburger .mobile-toggle[aria-expanded="true"] .bar3 {
  transform: rotate(230deg) translate(5px, 5px);
}
.hamburger .mobile-toggle {
  background-color: transparent;
  background-size: 41px;
  color: #1d252d;
  cursor: pointer;
  height: 41px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  width: 91px;
}
.hamburger #accordion {
  background-color: #ff6701;
  border: 0;
  border-bottom: 5px solid #ff6701;
  display: none;
  left: auto;
  margin-right: 16px;
  min-width: 210px;
  right: 0;
  padding: 5px 5px 0 5px;
  position: absolute;
  top: 45px;
  z-index: 100;
}
.hamburger #accordion .panel {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}
.hamburger #accordion .panel a {
  display: block;
}
.hamburger #accordion .panel a:hover,
.hamburger #accordion .panel a:focus {
  text-decoration: none;
}
.hamburger #accordion .panel .menu-item {
  background-color: #dcdcdc;
  border-bottom: solid 2px #808080;
}
.hamburger #accordion .panel .panel-heading {
  background-color: #ff6701;
  border: none;
  border-radius: 0;
  padding: 0;
}
.hamburger #accordion .panel .panel-heading:hover {
  background-color: #fe8f1c;
}
.hamburger #accordion .panel .panel-heading .panel-title {
  letter-spacing: 1px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}
.hamburger #accordion .panel .panel-heading .panel-title a {
  padding: 10px 15px;
}
.hamburger #accordion .panel .panel-heading .panel-title a:before {
  color: #f2f2f2;
  content: '\25B8';
  display: inline-block;
  float: left;
  font-size: 12px;
  margin-right: 5px;
  transform: rotate(90deg);
  transition: all .2s;
  -webkit-transition: all .2s;
  -webkit-transform: rotate(90deg);
}
.hamburger #accordion .panel .panel-heading .panel-title a.collapsed:before {
  content: " ";
}
.hamburger #accordion .panel .childpanel-heading {
  background-color: white;
  border: none;
  border-radius: 0;
  padding: 0;
}
.hamburger #accordion .panel .childpanel-heading:hover {
  background-color: #fe8f1c;
}
.hamburger #accordion .panel .childpanel-heading .childpanel-title {
  letter-spacing: 1px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}
.hamburger #accordion .panel .childpanel-heading .childpanel-title a {
  padding: 10px 15px;
}
.hamburger #accordion .panel .childpanel-heading .childpanel-title a:before {
  color: #f2f2f2;
  content: '\25B8';
  display: inline-block;
  float: left;
  font-size: 12px;
  margin-right: 5px;
  transform: rotate(90deg);
  transition: all .2s;
  -webkit-transition: all .2s;
  -webkit-transform: rotate(90deg);
}
.hamburger #accordion .panel .childpanel-heading .childpanel-title a.collapsed:before {
  content: " ";
}
.hamburger #accordion .panel .panel-body {
  padding: 0;
}
.hamburger #accordion .panel .panel-body .list-group {
  margin-bottom: 0;
}
.hamburger #accordion .panel .panel-body .list-group-item {
  background-color: #f2f2f2;
  border: none;
  border-radius: 0;
  padding: 0 30px 0 0;
}
.hamburger #accordion .panel .panel-body .list-group-item:hover {
  background-color: #e3d2cc;
}
.hamburger #accordion .panel .panel-body .list-group-item a {
  letter-spacing: 1px;
  padding: 8px 15px;
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1d252d;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
}
.hamburger #accordion .panel .childpanel-body {
  padding: 0;
}
.hamburger #accordion .panel .childpanel-body .list-group {
  margin-bottom: 0;
}
.hamburger #accordion .panel .childpanel-body .listchild-group-item {
  background-color: #f2f2f2;
  border: none;
  border-radius: 0;
}
.hamburger #accordion .panel .childpanel-body .listchild-group-item:hover {
  background-color: #e3d2cc;
}
.hamburger #accordion .panel .childpanel-body .listchild-group-item a {
  letter-spacing: 1px;
  padding: 8px 15px;
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1d252d;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
}
.hamburger .collapse {
  display: none;
  visibility: hidden;
}
.hamburger .collapse.in {
  display: block;
  visibility: visible;
}
/* Logo Styles _______________________________________________________________________________________________________________________________________________________________________________ */
.logo {
  background-color: transparent;
  display: block;
  margin-bottom: 35px;
  margin-top: 35px;
  padding-left: 30px;
}
/* Main Menu Styles  _______________________________________________________________________________________________________________________________________________________________________________ */
header {
  background-color: white;
}
.utility-header {
  background-color: white;
}
.header-navigation {
  border-style: none;
  height: 30px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 5px 0;
}
.navigation-list {
  float: right;
  margin: 0;
  padding: 0;
}
.navigation-list .navigation-item {
  display: table-cell;
  list-style: none;
  padding: 0 10px;
}
.navigation-list .navigation-item.has-dropdown {
  position: relative;
}
.navigation-list .navigation-item img {
  margin-bottom: 7px;
}
.navigation-list .navigation-item a {
  display: block;
  letter-spacing: 1px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
}
.navigation-list .navigation-item a:hover {
  text-decoration: none;
}
.navigation-sublist {
  background-color: white;
  margin: 5px -15px;
  padding: 10px 18px;
  position: absolute;
  text-align: right;
  transition: height 1s ease-out 0.5s;
  width: 100%;
  z-index: 11;
}
.navigation-sublist li {
  list-style: none;
  padding: 5px 0;
}
.navigation-sublist a:hover {
  color: #c5c5c6;
}
.header-bottom {
  display: none;
}
.navigation-list .navigation-item-logo {
  display: table-cell;
  list-style: none;
  padding: 0 10px;
}
.navigation-list .navigation-item-logo img {
  margin-bottom: 7px;
}
.navigation-list .navigation-item-logo a {
  display: block;
  letter-spacing: 1px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
}
/*
  Main Navigation Styles For Desktop____________________________________________________________________________________________________________________________________________________________________________
*/
.fixed-area.affix,
.fixed-area.affix-bottom {
  background: #f2f2f2;
  z-index: 17;
}
.fixed-area.affix-bottom {
  position: relative;
}
.fixed-area.affix {
  top: 0;
  position: fixed !important;
  width: 100%;
}
.fixed-area.affix > .row {
  background: #f2f2f2;
}
.fixed-area.affix > .row {
  background: #f2f2f2;
}
.fixed-area.affix .main-navigation {
  background: #f2f2f2;
}
.fixed-area.affix + #homepage-carousel,
.fixed-area.affix + .teaserCarousel {
  margin-top: 0;
  padding-top: 145px;
}
.fixed-area.affix + .teaserCarousel #homepage-carousel {
  margin-top: 0;
}
.nav-container {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.nav-container.container {
  width: 100%;
}
.main-navigation,
.child-nav {
  width: 100%;
}
.main-navigation ul,
.child-nav ul {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}
.main-navigation ul li,
.child-nav ul li {
  background-color: #ff6701;
}
.main-navigation ul li a,
.child-nav ul li a {
  letter-spacing: 1px;
  padding: 13px 0;
  text-transform: uppercase;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
}
.main-navigation ul li.active,
.child-nav ul li.active {
  background-color: #fe8f1c;
}
.nav li a:hover,
.nav li a:focus {
  background-color: #fe8f1c;
}
.dropdown-menu {
  min-width: 100%;
}
.nav-container.affix {
  position: fixed;
  top: 0;
  z-index: 100;
}
/*
   Child Navigation for Desktop
*/
.child-nav .child {
  border-top: solid 2px #e7edf6;
  display: none;
}
.child-nav ul {
  display: none;
}
.child-nav ul li {
  background-color: rgba(242, 242, 242, 0.9);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e6f2f2f2, endColorstr=#e6f2f2f2);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e6f2f2f2, endColorstr=#e6f2f2f2);
}
.child-nav ul li:hover {
  background-color: #bbcce5;
}
.child-nav ul li a {
  color: #1d252d;
}
.navbar-default .caret {
  display: none;
}
.navbar-header,
.navbar-header img {
  clear: both;
  float: none;
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
  margin-left: 15px;
  height: 70px;
}
.navbar-default .navbar-toggle {
  margin-right: 30px;
  border-radius: 0;
  color: black;
  width: 91px;
  background: white;
}
.navbar-nav {
  float: none;
  clear: both;
  width: 100%;
  background: #ff6701;
}
.navbar-default {
  background: none;
  border: none;
}
.navbar-default .navbar-nav > li > a,
.dropdown-menu > li > a {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px;
  line-height: 18px;
}
.dropdown-menu > li > a {
  color: black;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li.active > a,
.dropdown-menu > li > a:hover,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background: #fe8f1c;
  color: white;
  text-transform: uppercase;
}
.navbar-nav .header-container {
  position: fixed;
  left: 0;
  right: 0;
  height: 0;
  text-align: center;
  z-index: 1000;
}
.navbar-nav .header-container .dropdown-menu {
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  display: none;
  background: none;
  border: none;
  box-shadow: none;
}
.navbar-nav li:hover ul,
#menu li.over ul {
  display: block;
}
.navbar-nav li:hover ul ul,
#menu li.over ul ul {
  display: none;
}
.navbar-nav ul li:hover ul,
#menu ul li.over ul {
  display: block;
}
.dropdown-submenu li {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px;
  line-height: 18px;
}
ul.dropdown-submenu {
  background-color: #f5f5f5;
}
.navbar-nav .header-container .dropdown-menu li {
  float: left;
}
/*
  Background color for nav submenu
*/
.header-container .dropdown-menu .subdropdown {
  background-color: #F2F2F2;
}

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600|Asar');
/* acquisitions main.less */
/* Logo Styles _______________________________________________________________________________________________________________________________________________________________________________ */
.logo {
  background-color: transparent;
  display: block;
  margin-bottom: 35px;
  margin-top: 35px;
  padding-left: 30px;
}
/*Footer Styles _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________ */
.footer {
  height: inherit;
  padding: 15px;
}
.footer .footer-wrapper {
  box-sizing: content-box;
  height: 70px;
  margin: 0 auto;
  max-width: 1030px;
  padding: 1%;
}
.footer-navigation {
  padding: 0;
  margin-left: 0;
  margin-top: 2.1%;
}
.footer-navigation .navigation {
  padding-left: 10px;
}
.footer-navigation .navigation .navigation-item {
  border-left: 1px solid #666666;
}
.footer-navigation .navigation .navigation-item:first-child {
  border-left: none;
}
.footer-logo {
  float: left;
  margin: 0;
  padding: 0;
}
.footer-logo .allegion-logo-large {
  margin-left: 80px;
}
.social-links {
  margin-top: 1.7%;
  padding: 0;
  width: 25%;
}
.social-links .navigation-item {
  border-left: none;
  padding: 0 4px;
}
.navigation-item {
  display: inline-block;
  list-style: none;
  padding-left: 5px;
  padding-right: 5px;
}
.navigation-item a {
  letter-spacing: 1px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
}
.navigation-item a:hover {
  text-decoration: none;
}
.footer .col-md-5.connectText {
  bottom: 25px;
  right: 185px;
  width: 78%;
}
.footer .connectText p {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  letter-spacing: 1px;
}
@media (max-width: 800px) and (min-width: 680px) {
  .footer .col-md-5.connectText {
    bottom: 0;
    left: 18px;
  }
}
@media (max-width: 679px) and (min-width: 475px) {
  .footer .social-links {
    width: 100%;
  }
  .footer .col-md-5.connectText {
    width: 100%;
    right: 158px;
  }
}
@media (max-width: 474px) and (min-width: 300px) {
  .footer .col-md-5.connectText {
    bottom: 0;
    right: 0;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer .col-md-5.connectText {
    right: 165px;
  }
}
.footer .footer-wrapper {
  max-width: 1200px;
}
@media (max-width: 767px) {
  /*.footer p.copyright {
      width: 65%;
  }*/
  .footer .copyright p {
    width: 65%;
    font-size: 10px;
  }
}
@media (max-width: 800px) {
  .footer-logo .allegion-logo {
    margin-left: 0;
  }
}
.copyright {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  text-align: justify;
}
/*
==================
   Footer
==================
*/
@media (max-width: 920px) {
  .footer a {
    font-size: 10px;
    letter-spacing: normal;
  }
}
@media (min-width: 680px) and (max-width: 800px) {
  .footer .footer-navigation {
    width: 50%;
  }
  .footer .social-links {
    width: 33.33333333%;
  }
  .footer .footer-logo {
    width: 16.66666667%;
  }
}
@media (max-width: 679px) {
  .footer .social-links {
    margin-left: 10px;
    padding-right: 0;
  }
  .footer .footer-logo {
    float: none;
    margin-top: 35px;
    position: absolute;
    right: 60px;
  }
}
@media (max-width: 420px) {
  .footer .footer-logo {
    margin-bottom: 15px;
  }
}
@media (max-width: 679px) and (min-width: 475px) {
  .footer .wrapper {
    padding-left: 20%;
  }
  .footer .social-links {
    margin-left: 0;
    text-align: left;
    width: 52%;
  }
}
@media (max-width: 474px) and (min-width: 350px) {
  .footer .wrapper {
    padding-left: 12%;
  }
  .footer .social-links {
    margin-left: 0;
    text-align: left;
  }
}
@media (max-width: 599px) {
  .block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer {
    height: inherit;
    padding: 0;
  }
  .footer .navigation-item {
    line-height: 0.7;
    padding-left: 2px;
    padding-right: 2px;
  }
  .footer .navigation-item a {
    font-size: 10px;
  }
  .footer .wrapper {
    padding-top: 15px;
  }
  .footer .social-links {
    margin-left: 10px;
    padding-right: 0;
    text-align: left;
    width: inherit;
  }
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.customrte p,
.imageText p,
.customrte li,
.imageText li {
  line-height: 1.8em;
}
.article p,
.article li {
  line-height: 1.8em;
}
@media (max-width: 768px) {
  .heading-blue .utility-header {
    display: none;
  }
}
@media (max-width: 830px) {
  .heading-blue .utility-header .clearfix + .navigation-item {
    display: none;
  }
}
.heading-blue .logo {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (max-width: 830px) {
  .heading-blue .logo {
    padding-left: 15px;
  }
}
.heading-blue .logo img {
  max-height: 100px;
}
@media (min-width: 768px) {
  .heading-blue #search_box {
    padding-right: 30px;
  }
}
.heading-blue .navigation-list {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  padding-top: 2px;
}
.heading-blue .navigation-list .alle-core-lang {
  height: 100%;
}
.heading-blue .navigation-list .alle-core-lang:before {
  content: "";
  background-image: url(clientlib-base/resources/allegion-icon-globe-black.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
  height: 25px;
  width: 25px;
  right: 5px;
  top: -3px;
}
.heading-blue .navigation-list .alle-core-lang .alle-language {
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}
.heading-blue .navigation-list .alle-core-lang .navigation-sublist {
  text-align: left;
  margin-top: -8px;
  box-shadow: rgba(0, 0, 0, 0.176) 0 6px 12px 0;
  background-color: #d6d6d6;
  padding: 10px 0;
}
.heading-blue .navigation-list .alle-core-lang .navigation-sublist li {
  padding: 5px 15px;
  transition: background-color 0.3s;
  background-color: transparent;
}
.heading-blue .navigation-list .alle-core-lang .navigation-sublist li a {
  transition: color .3s;
  font-size: 12px;
  font-weight: 300;
  color: #262626;
}
.heading-blue .navigation-list .alle-core-lang .navigation-sublist li:hover {
  background-color: #85afd5;
}
.heading-blue .navigation-list .alle-core-lang .navigation-sublist li:hover a {
  color: white;
}
.heading-blue .navigation-list .navigation-item-logo.logo {
  display: none;
}
.heading-blue .navigation-list .navigation-item-logo.logo ~ li {
  font-size: 14px;
  color: #333333;
  font-weight: 400;
}
.heading-blue .navigation-list .navigation-item-logo.logo ~ li a {
  font-size: 14px;
  color: #333333;
  font-weight: 400;
}
.heading-blue .navigation-list .navigation-item-logo.logo ~ li:last-child {
  font-size: 12px;
}
.heading-blue .navigation-list .navigation-item-logo.logo ~ li:last-child:first-letter {
  font-size: 16px;
  padding-right: 3px;
}
.heading-blue .navigation-list .navigation-item-logo.logo ~ li:last-child[style*='green'] {
  color: #7db340 !important;
}
.heading-blue .navigation-list .navigation-item-logo.logo ~ li:last-child[style*='red'] {
  color: #D52B1E !important;
}
.heading-blue .headerWrapper .nav.nabar-nav .dropdown a {
  background: transparent;
  transition: all .3s;
}
body > div.clearfix {
  max-width: 1200px;
  margin: 0 auto;
}
body > div.clearfix .allegion-thisisus-footer {
  margin-top: -35px;
  float: left;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #666666;
  font-weight: 300;
  font-style: normal;
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  body > div.clearfix .allegion-thisisus-footer {
    margin-top: 0;
    margin-left: 0;
    float: unset;
    background-color: transparent;
    padding-bottom: 15px;
    text-align: center;
    padding-top: 45px;
  }
}
@media only screen and (max-width: 920px) {
  body > div.clearfix .allegion-thisisus-footer {
    font-size: 11px;
  }
}
@media only screen and (min-width: 921px) and (max-width: 1190px) {
  body > div.clearfix .allegion-thisisus-footer {
    font-size: 11px;
    margin-left: calc(2% + 10px + 15px);
  }
}
@media only screen and (min-width: 1190px) and (max-width: 1510px) {
  body > div.clearfix .allegion-thisisus-footer {
    font-size: 14px;
  }
}
.footer {
  float: left;
  width: 100%;
}
@media only screen and (max-width: 679px) {
  .footer .footer-logo {
    margin-top: unset !important;
  }
}
@media only screen and (max-width: 768px) {
  .footer .footer-logo {
    width: 100% !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    position: relative !important;
    right: unset !important;
    float: left !important;
  }
}
.footer .footer-wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer .footer-wrapper .footer-navigation .navigation-item a {
  transition: all .2s;
  text-decoration: underline transparent;
  font-size: 12px;
  font-weight: normal;
}
@media only screen and (max-width: 920px) {
  .footer .footer-wrapper .footer-navigation .navigation-item a {
    font-size: 11px;
  }
}
@media only screen and (min-width: 921px) and (max-width: 1190px) {
  .footer .footer-wrapper .footer-navigation .navigation-item a {
    font-size: 11px;
  }
}
@media only screen and (min-width: 1190px) and (max-width: 1510px) {
  .footer .footer-wrapper .footer-navigation .navigation-item a {
    font-size: 14px;
  }
}
.footer .footer-wrapper .footer-navigation .navigation-item a:hover {
  color: #ff6701;
  text-decoration-color: #ff6701;
}
@media only screen and (max-width: 768px) {
  .footer .footer-wrapper .footer-navigation {
    width: 100% !important;
    text-align: center;
  }
}
.footer .footer-wrapper .social-links {
  width: 50% !important;
}
@media only screen and (max-width: 768px) {
  .footer .footer-wrapper .social-links {
    width: 100% !important;
    text-align: center;
  }
}
.footer .footer-wrapper .social-links li {
  padding: 0;
}
.footer .footer-wrapper .social-links li img {
  transition: all .3s;
}
.footer .footer-wrapper .social-links li img:hover {
  transform: scale(1.3) translateY(-5px);
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
.footer .footer-wrapper .social-links li:first-child:before {
  content: "Connect With Allegion";
  padding-right: 5px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: black;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .footer .footer-wrapper .social-links li:first-child:before {
    font-size: 14px;
  }
}
.footer .footer-wrapper .footer-logo {
  width: 0 !important;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
.cmp.cmp-breadcrumb .breadcrumb-core {
  list-style: none;
}
.cmp.cmp-breadcrumb .breadcrumb-core li.breadcrumb-item {
  display: inline-block;
  padding: 0 10px;
  border-left: 1px solid grey;
}
.cmp.cmp-breadcrumb .breadcrumb-core li.breadcrumb-item:first-child {
  border-left: none;
}
.cmp.cmp-breadcrumb .breadcrumb-core li.breadcrumb-item a {
  color: #ff6701;
  text-decoration: underline transparent;
  transition: all .3s;
}
.cmp.cmp-breadcrumb .breadcrumb-core li.breadcrumb-item a:hover {
  color: rgba(255, 109, 1, 0.59);
  text-decoration-color: rgba(255, 109, 1, 0.59);
}
#homepage-carousel .carousel-indicators li {
  padding-top: 10px;
}
.accordian-tab .alle-core-tabs li a {
  transition: background-color 0.2s;
  color: black;
}
.accordian-tab .alle-core-tabs li a:hover {
  background-color: rgba(255, 109, 1, 0.59);
}
.accordian-tab .alle-core-tabs li.active a {
  background-color: transparent;
  color: black;
}
.accordian-tab .alle-core-tabs li.active a:after {
  color: grey;
}
.accordian-tab .alle-core-tabs li.active a:hover {
  background-color: rgba(255, 109, 1, 0.59);
  color: black;
}
@media (min-width: 768px) {
  .customrte a[id] {
    display: block;
    position: relative;
    top: -240px;
    visibility: hidden;
  }
}

.body-container {
  height: 0;
  margin: 0 auto;
  max-width: 1200px;
}
body {
  max-width: 100%;
  overflow-x: hidden;
}
.content-menu .panel-body .list-group-item.active-child a {
  font-weight: bold;
}
.content-menu {
  border: 2px solid #e1e1e1;
  margin-left: 60px;
  overflow: hidden;
  position: relative;
  top: 17px;
  width: 178px;
  z-index: 1;
}
.content-menu.all-blue {
  border: none;
}
.content-menu.all-blue h3 {
  background-color: #FF671F;
  border-bottom: 1px solid white;
  color: white;
}
.content-menu.all-blue .panel-title {
  text-transform: uppercase;
}
.content-menu.all-blue .panel-title,
.content-menu.all-blue .panel-title:hover {
  background-color: #ff8d1b;
}
.content-menu.all-blue .panel-body {
  background-color: #ff8d1b;
  color: black;
  padding: 0;
}
.content-menu.all-blue .panel-body a {
  color: black;
  display: block;
  padding: 10px 15px;
}
.content-menu.all-blue .list-group-item {
  border-top: 1px solid white;
  padding: 0;
}
.content-menu.all-blue .list-group-item:first-child {
  border-top: none;
}
.content-menu.all-blue .list-group-item.active {
  border-bottom: 1px solid white;
}
.content-menu.all-blue .list-group-item.active,
.content-menu.all-blue .list-group-item:hover {
  background-color: #FF671F;
}
.content-menu.all-blue .list-group-item.active a,
.content-menu.all-blue .list-group-item:hover a {
  color: white;
}
.content-menu.affix {
  position: fixed;
  top: 187px;
}
.content-menu.affix-bottom {
  position: relative;
}
.content-menu a:hover,
.content-menu a:focus {
  text-decoration: none;
}
.content-menu h3 {
  background-color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  padding: 9px 32px 9px 15px;
  text-transform: uppercase;
}
.collapse.content-menu h3 {
  background-image: url(clientlib-base/less/img/sprite.png);
  background-position: -85px 50%;
  background-repeat: no-repeat;
}
.content-menu.closed .panel {
  display: none;
}
.content-menu.closed h3 {
  background-position: -285px 50%;
}
.content-menu .panel-heading {
  border-radius: 0;
  border: none;
  padding: 0;
}
.content-menu .panel-heading a,
.content-menu .panel-heading span {
  display: block;
  padding: 10px 15px;
}
.content-menu .panel {
  border-radius: 0;
  border: none;
  margin-bottom: 0;
}
.content-menu .panel:last-child {
  border-bottom: none;
}
.content-menu .panel-title {
  background: #FF671F;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
}
.content-menu .panel-title.active {
  background-color: #ff8d1b;
}
.content-menu .panel-title:hover {
  background-color: #ff8d1b;
}
.content-menu .active .panel-title {
  background-color: #FF671F;
}
.content-menu .highlight .panel-title {
  background-color: #ff8d1b;
  color: #ff4e0d;
  text-transform: uppercase;
}
.content-menu .list-group {
  margin-bottom: 0;
}
.content-menu .list-group-item {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0 0 5px 0;
}
.content-menu .panel-body {
  background-color: inherit;
  font-size: 12px;
  padding: 5px 15px;
}
.content-menu .panel-body a {
  color: #9d9ea0;
}
.content-menu .panel-body a:hover {
  font-weight: bold;
}
@media (max-width: 1200px) {
  .floatingmenuv1 {
    display: none;
  }
}

/*header css fixes*/
.fixed-area,
.color-wrapper-1.heading-blue {
  z-index: 999;
}
/*download component fixes*/
.alle-core-download ul {
  list-style-type: none;
  padding-left: 10px;
}
.alle-core-download-icon {
  display: inline-block;
  align-self: flex-start !important;
  float: left;
  margin-top: 15px;
  min-width: 100px;
}
/*.alle-core-download li:first-child .alle-core-download-icon{*/
.download-item .alle-core-borderAtBottom {
  padding-top: 15px;
  display: inline-block;
  width: calc(100% - 150px);
}
.download-item li:first-child .alle-core-borderAtBottom {
  padding-top: 0;
}
.alle-core-download ul li div:nth-child(2) {
  /*padding-top: 15px;*/
  display: inline-block;
  width: calc(100% - 150px);
}
.download-item .alle-core-download.clearfix ul li {
  padding: 0px !important;
}
/*download component fixes*/
/*container component fixes*/
@media (min-width: 1200px) {
  .container {
    width: 1200px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .download-item .alle-core-download {
    padding: 18px 10px !important;
  }
}
.textOnBanner .logo img {
  max-width: 100%;
  width: auto !important;
}
.textOnBanner {
  width: 350px;
  height: 316px;
  top: 42px !important;
  transform: translateY(0%) !important;
}
@media (min-width: 768px) {
  .banner-wrapper .textOnBanner {
    margin: 0px 42px;
  }
}
@media (max-width: 768px) {
  .banner-wrapper .alle-banner img.img-responsive {
    height: auto !important;
  }
  .textOnBanner {
    width: 100%;
    top: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .banner-wrapper .alle-banner img.img-responsive {
    height: max-content !important;
  }
}
.service-slot.square .service-title {
  bottom: 3%;
  color: #222222;
  font-size: 13px;
  left: 0;
  letter-spacing: 1px;
  line-height: inherit;
  position: absolute;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
}
.service-slot.square.grey {
  background-color: #f2f2f2;
}
.service-slot.square {
  background-position: center 30%;
  height: 190px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5%;
  position: relative;
  text-align: center;
}
.service-slot {
  background: no-repeat left center;
  display: block;
}
a {
  color: #f56f02;
}
.imageText .textWithIcon button {
  background: transparent !important;
}
/* btn fixes for 2 btns*/
@media (min-width: 768px) {
  .banner-wrapper .btn {
    border: none !important;
  }
  .banner-wrapper .button {
    border-color: white !important;
    border: 1px solid !important;
    padding: 5px 10px;
    margin: 10px;
    border-radius: 1px !important;
  }
}
.banner-wrapper .btn {
  border: none !important;
}
.banner-wrapper .button {
  border-color: white !important;
  border: 1px solid !important;
  padding: 5px 10px;
  margin: 10px;
  border-radius: 1px !important;
}
/* Adding fix for share button on news detail pages*/
.sharingButtons .boxSlider .img0 {
  background-color: #FE8F1C;
}
.sharingButtons .boxSlider .group0Text {
  color: white;
  background-color: #FE8F1C;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
}
.sharingButtons .boxSlider .dropdownImgs {
  border: 1px solid #FE8F1C;
}
/*News article*/
.cardView-configurator .form-group.tagsFilter h3 {
  display: inline;
  font-size: 18px;
  color: #ff671f;
}
.cardView-configurator .form-group.tagsFilter h3::after {
  content: '\2023';
  padding-left: 5px;
  font-size: 20px;
  color: #ff671f;
}
.cardView-configurator .filter-row {
  margin-bottom: 50px;
}
/* Adding fix for all image text components - this can be overridden by component styles*/
.imageText h2 {
  color: #9d9ea0;
  font-weight: normal;
}
.aem-Grid > .allegion-container > .clearfix > .container > .row > .col-xs-12 > div .banner:first-of-type {
  margin-bottom: 15px;
}
.aem-Grid > .allegion-container > .clearfix > .container > .row > .col-xs-12 > div .banner:first-of-type + .columnselector > .clearfix > .containercustom > .row > .col-sm-3 > .floatingmenuv1 {
  margin-top: -15px;
}
/* Text with Margin CSS Fixes */
.textWithMargin h3 {
  color: #ff671f!important;
  padding: 0px!important;
}
.textWithMargin h3 p {
  font-size: 16px!important;
  padding: 0px 15px!important;
  margin: 0px!important;
  font-weight: 600!important;
}
.textWithMargin .text {
  padding: 0px 15px!important;
  font-size: 13px!important;
}
.textWithMargin .text ul li:before {
  color: #ff671f!important;
}
.image-with-border {
  border: 2px solid #f0f0f0!important;
}
.borderline {
  background-color: #ff671f!important;
}
/*product configurator */
.product-configurator h1.page-title {
  color: #ff6620!important;
}
.product-configurator .default-image img {
  width: 100% !important;
}
.product-configurator .product-filter ul li a {
  cursor: pointer!important;
  font-weight: normal!important;
}
.product-configurator .product-filter ul li a.active,
.product-configurator .product-filter ul li a:hover {
  font-weight: bold!important;
}
.product-configurator .product-filter ul li a[aria-expanded="true"] {
  font-weight: bold!important;
}
.product-configurator .product-filter ul li a:only-child:before {
  content: none!important;
}
.component-product-configurator .product-grid-view .product-item {
  height: 500px!important;
}
.component-product-configurator .product-grid-view .product-item .product-item-container .product-image img {
  width: 100%!important;
}
/*image map changes*/
.link-imgmap a.dot {
  background-color: rgba(255, 102, 32, 0.5) !important;
}
.link-imgmap a.dot:hover {
  background-color: rgba(255, 102, 32, 0.9) !important;
}
.link-imgmap a.dot:hover span.title {
  text-align: justify;
  padding: 5px!important;
  font-size: 14px;
  font-weight: 600;
  color: #ff6620!important;
  border: 2px solid #ff6620!important;
  background: rgba(255, 255, 255, 0.4) !important;
}
.product-configurator .product-filter > nav {
  background: #ff6620!important;
}
.orangeText {
  margin: 0px;
  color: #ff671f;
}
@media (max-width: 380px) {
  .header-wrapper .hamburger .mobile-toggle {
    width: 64px;
  }
}
.card {
  max-width: 100%;
}
@media (max-width: 768px) {
  .card-image img {
    min-width: auto !important;
    max-width: 100%;
  }
}
/*checkbox bold fixes*/
.form-group.checkbox legend {
  font-weight: bold;
}
.cmp.cmp-options .checkbox-item label {
  font-weight: bold;
}

.alle-core-tabs .accordion-wapper {
  padding: 5px;
}
.alle-core-tabs .accordion-wapper .panel-title {
  background: transparent !important;
}
.alle-core-tabs .accordion-wapper .panel-title:hover {
  background: #ddd !important;
}
.alle-core-tabs .accordion-wapper .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border: 1px solid #f5f5f5;
}
.alle-core-tabs .nav-tabs > li.active > a,
.alle-core-tabs .nav-tabs > li.active > a:hover,
.alle-core-tabs .nav-tabs > li.active > a:focus {
  color: #555555 !important;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: #fff;
  cursor: default;
}
.alle-core-tabs .nav > li > a {
  color: #ff671f !important;
}
.alle-core-tabs .nav-tabs > li > a:hover {
  color: #555555 !important;
}
@media (max-width: 767px) {
  .alle-core-tabs .visible-xs {
    display: block !important;
  }
}

.core-service-icon .column-content {
  border-bottom: 2px solid #FF671F !important;
}
.core-service-icon .column-content h2 {
  color: #FF671F !important;
}
.core-service-icon .title {
  color: #FF671F !important;
}

.imageText .textWithIcon h2 {
  color: #333333;
}
.imageText .textWithIcon .icon-column.coreImageWithIcon {
  text-align: left;
  margin-bottom: 10px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 350;
  font-style: normal;
  color: black;
}
.imageText .textWithIcon button.coreImageWithIconBtn {
  background-color: #FF671F !important;
  border: none;
  border-radius: 4px;
  letter-spacing: 2px;
  line-height: 12px;
  padding: 14px;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  outline: 0;
}
.imageText .textWithIcon button.coreImageWithIconBtn a {
  color: #fff;
  font-weight: 400;
}
.imageText .textWithIcon button.coreImageWithIconBtn a:hover {
  text-decoration: none;
}
.coreImageWithIcon .icon {
  padding-left: 0px;
  padding-right: 0px;
}
.coreImageWithIcon .text p:first-of-type {
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .coreImageWithIcon {
    padding: 20px 7px !important;
  }
  .coreImageWithIcon .text {
    display: inline-block;
    padding: 0px 15px !important;
    margin-bottom: 10px;
  }
}

.product-detail-core-component .page-title,
.product-detail-core-component .product-description h2 {
  color: #ff6620;
}

.article-list .recommended-articles .newsImageWrap > img {
  object-fit: cover;
}
.article-configurator .component-article-configurator .cardView-configurator .card-gallery {
  column-count: unset;
  position: relative;
  height: inherit;
}
@media (min-width: 768px) {
  .article-configurator .component-article-configurator .cardView-configurator .card-gallery .card {
    width: 30%;
    transition: all .2s;
  }
  .article-configurator .component-article-configurator .cardView-configurator .card-gallery .card img {
    max-width: 100%;
    min-width: auto;
  }
}
@media (min-width: 992px) {
  .article {
    margin: 0% !important;
    padding: 0 15px;
  }
}
.component-article-configurator .multi-item-carousel .carousel-control {
  display: block !important;
}
@media (max-width: 767px) {
  .component-article-configurator .multi-item-carousel .carousel-control.right {
    margin-right: 30px;
  }
  .component-article-configurator .multi-item-carousel .carousel-control.left {
    margin-left: 15px;
  }
}
.component-article-configurator .multi-item-carousel .item a {
  transition: all .3s;
}
.component-article-configurator .multi-item-carousel .item .mainColumnImage {
  text-align: center;
}
.component-article-configurator .multi-item-carousel .item .mainColumnImage img {
  object-fit: cover;
  height: 170px;
  width: 100%;
}
.component-article-configurator .multi-item-carousel .item .columnText .art-title {
  font-size: 16px;
  font-family: "Antenna Bold", sans-serif;
}
.component-article-configurator .multi-item-carousel .item .columnText .small-text {
  display: none;
}
.component-article-configurator .multi-item-carousel .item .column-button {
  text-align: center;
}
.component-article-configurator .multi-item-carousel .item .column-button a {
  background-color: #ff6711;
  padding: 10px 15px;
  transition: all .3s;
  border: 1px solid transparent;
  border-radius: 10px;
  color: white;
}
.component-article-configurator .multi-item-carousel .item .column-button a:hover {
  background-color: white;
  border-color: black;
  color: black;
}

.carousel-caption {
  height: 80% !important;
  width: 316px !important;
  padding-top: 20px !important;
  padding-bottom: 30px!important;
  padding-left: 15px!important;
  padding-right: 15px!important;
  overflow: hidden;
}
.carousel-caption .caption-heading {
  margin-bottom: 10px!important;
}
@media (max-width: 768px) {
  .carousel .carousel-caption {
    width: 100%!important;
    height: max-content !important;
  }
}

.banner-wrapper .btn {
  float: left;
}
.banner-wrapper .button {
  margin-left: auto;
}
@media (min-width: 768px) {
  .banner-wrapper .textOnBanner {
    max-height: 95%;
    padding-left: 15px!important;
    padding-right: 15px!important;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .textOnBanner {
    width: 100%!important;
    height: max-content !important;
  }
}
@media only screen and (device-width: 768px) {
  .banner-wrapper .textOnBanner {
    margin: unset;
    width: 350px;
    max-height: 95%;
    top: 42px !important;
    transform: translateY(0%) !important;
    left: 42px;
  }
}

.navbar-default .navbar-nav > li > a,
.dropdown-menu > li > a {
  font-weight: 600;
  padding: 13px 3px;
  letter-spacing: normal;
}
.hamburger .mobile-toggle,
.hamburger #accordion {
  text-align: left;
}
.hamburger .panel-direct-link {
  float: left;
}
.heading-blue .headerWrapper .hamburger #accordion.collapse.in {
  max-height: 100%;
}
.heading-blue .headerWrapper .navbar-header .hamburger {
  margin-top: 0;
}
.heading-blue .headerWrapper .hamburger .mobile-toggle {
  width: 50px !important;
  position: relative;
  background: #fff;
  z-index: 999;
  border: 1px solid #ff6701;
}
.heading-blue .headerWrapper .navbar-header .hamburger .collapse.in#accordion,
.heading-blue .headerWrapper .navbar-header .hamburger .collapsing#accordion {
  background-color: #ff6701;
  border-bottom-color: #ff6701;
  width: 100%;
  left: 0;
  right: 0;
  min-height: 100%;
  position: fixed;
  top: 0%;
  padding-top: 80px;
  text-align: left;
}
.hamburger #accordion .panel .panel-heading .panel-title {
  background-color: #ff6701;
}
@media (max-width: 1024px) and (min-width: 767px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  .navbar-nav li:hover .header-container .dropdown-menu {
    display: table;
    background: #e1e1e1;
  }
  .navbar-nav li {
    display: table-cell;
    float: none;
  }
  .header-container .dropdown-menu .subdropdown {
    background: #e1e1e1!important;
  }
  .dropdown-menu li {
    position: relative;
    left: 0px;
    top: 0px;
    display: inline-block;
    width: 24.333%;
  }
}
#mainNav-navbar-collapse .dropdown a {
  font-family: "Antenna Bold", sans-serif;
}

/* forms style fixes*/
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}
textarea {
  width: 80%;
}
.form-group.drop-down .form-control {
  width: 250px;
}
.form-group > input {
  width: 250px;
}
fieldset > input {
  width: 100%;
}
fieldset > legend {
  margin-bottom: 10px;
  border-bottom: 1px #fff;
  font-size: 14px;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 1px 0 -16px;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  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: 4px;
  -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);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success {
  color: #3c763d;
}
.has-warning {
  color: #8a6d3b;
}
.has-error {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 830px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 830px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 830px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 830px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

/*****************************************************
LESS compilation failed due a JavaScript error!

Input: /apps/allegioncorp/clientlibs/clientlib-base/less/productCompGrid.less
Error: ParseError: missing closing `}` in /apps/allegioncorp/clientlibs/clientlib-base/less/productCompGrid.less on line 233, column 146:
232 	}
233  .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td .number, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th .number{
234      font-size: 13px;


(uncompiled LESS src is included below)
*****************************************************/
/* Product Comparision Grid Css */

table {
    border-spacing: 0;
    border-collapse: collapse;
}


/* Compare Table */
.keylessEraPanel{padding-top: 50px; margin-bottom: 45px;}
.compare-table{background: url(../../../etc/designs/allegion-us/images/bg-grey-texture.png) 0 0;}
.tableHeader th.active{background: #c7c7c7; }
.tableHeader th.active h2{font-size: 20px;}
.table-note .container td:first-child{ width: 48%!important;}
.table-note .container td:last-child{ width: 52%!important; text-align: left;}
.landing-form{padding-top: 35px; padding-bottom: 50px; overflow: hidden;}
.landing-form .col-md-6:first-child{padding-right: 35px; padding-left: 0;}
.landing-form .col-md-6:last-child{padding-left: 35px; padding-right: 0;}
.theKeylessEraPage .keylessEraPanel .keylessEraFind .tableHeader table th a{display: block;}
.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none!important;
}
    .glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
    .glyphicon-asterisk:before {
    content: "\2a";
}


    .theKeylessEraPage h1 em, .theKeylessEraPage h2 em, .theKeylessEraPage h3 em {
      color: #00a1d4;
      font-style: normal; }


    @media (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {

      .theKeylessEraPage h1 {
        font-size: 50px;
        line-height: 45px; } }

  .theKeylessEraPage h2 {
    font-size: 16px;  line-height: 20px;}
    @media (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {

      .theKeylessEraPage h2 {
        font-size: 18px;
        line-height: 18px; } }

    .theKeylessEraPage .keylessEraPanel .keylessEraFind table {
      width: 100%;
      margin-bottom: 100px; }
      /* line 573 */
      .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr {
        border-bottom: 1px solid #000; }
        /* line 575 */
        .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr:last-child {
          border: none; }
        /* line 578 */
        .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr:first-child {
          /* border-bottom: 1px solid #FFF; */ }
        /* line 581 */
        .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th {
          font-size: 16px;
             width: 15%;
          text-align: center; }
          @media (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {
            /* line 581 */
            .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th {
              font-size: 14px;
              line-height: 14px;
              padding: 0 20px; } }
          /* line 591 */
          .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td p.note, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th p.note {
            font-size: 12px; text-align: left; }
          .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td .number, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th .number {
            font-size: 16px; color: #000000; }
        .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td:first-child,
        .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th:first-child {
          text-align: left;
              width: 25%;
          color:#000; }
        /* line 613 */
        .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th img {
          height: 80px;
          margin-bottom: 10px; }
          @media (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {
            /* line 613 */
            .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th img {
              height: 80px; } }
        /* line 622 */
        .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td {
          /* padding-top: 40px; */
          vertical-align: middle;
          height: 88px; }
          /* line 626 */
          .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td div.check,
          .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td div.dash {
            display: inline-block; }
          /* line 629 */
          .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td div.check {
            width: 25px;
            height: 19px;
            background: url("../../../etc/designs/allegion-us/images/check01.png") center center no-repeat;
            background-size: 100%; }

            .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td.active .check {
            width: 35px;
            height: 28px;
            background: url("../../../etc/designs/allegion-us/images/check02.png") center center no-repeat;
            background-size: 100%; }
            .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td div .glyphicon-asterisk{
              color:#fff;
              font-size: 22px;
              font-weight: bold;
              top: -12px;
              margin-right: -30px;
              font-family: initial;
            }
            .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td.active .number {
              font-family: 'Avenir-Black';
              font-size: 34px;
            }
          /* line 635 */
          .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td div.dash {
            width: 20px;
            height: 2px;
            background: #000000; }
          @media (min-width: 600px) and (max-width: 767px)  {
            /* line 622 */
            .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td {
              padding-top: 20px;
              height: 60px;
              vertical-align: middle;}
             }
    .theKeylessEraPage .keylessEraPanel .keylessEraFind .tableHeader {
      width: 100%;
      left: 0;
      position: relative;
      z-index: 16; }
      /* line 660 */
      .theKeylessEraPage .keylessEraPanel .keylessEraFind .tableHeader.sticky {
        position: fixed; }
      /* line 663 */
      .theKeylessEraPage .keylessEraPanel .keylessEraFind .tableHeader table {
        margin-bottom: 0; }
        /* line 665 */
        .theKeylessEraPage .keylessEraPanel .keylessEraFind .tableHeader table th {
          padding: 10px 0; }
      /* line 669 */
      .theKeylessEraPage .keylessEraPanel .keylessEraFind .tableHeader .container {
        margin-top: 0;
        width: 100%;
        max-width: 960px; }
@media (max-width: 599px) {
.theKeylessEraPage .keylessEraPanel .keylessEraFind {

.theKeylessEraPage .keylessEraPanel .keylessEraFind.container h1 {
          font-size: 50px;
          line-height: 1em; 
}
.theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th:first-child {
          display: none; 
}

.theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td {
        width: 33%;
}
.theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td p.note {
         font-size: 14px; 
}
.theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td:first-child {
          padding-top: 10px;
          width: 0 !important;
          float: left; 
}
.theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td:first-child p, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td:first-child div {
            font-size: 13px;
            line-height: 14px;
            width: 305px;
            padding-right: 15px; } }

@media (min-width: 768px) and (max-width: 1023px) {
    .theKeylessEraPage h2{font-size: 12px;}
    .tableHeader th.active h2{font-size: 16px;}
    .tableHeader h3{ font-size: 1.17em; line-height: 24px;}
    .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th
    { font-size: 13px;}
    .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td .number, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th .number{
     font-size: 11px;
    }
            }
@media (max-width: 767px) {
    /* Content Landing Page */
    .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th{
    	font-size: 13px;
    }
    .tableHeader h3{padding: 0 0 50px 0; text-align: center;}
    .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td{vertical-align: bottom; padding-bottom: 20px;}
    .table-note td:first-child{display: none;}
    .table-note td{ width: 100%!important; font-size: 14px; vertical-align: middle!important; padding-bottom: 0!important;}

	}

@media screen and (max-width: 479px) {
    .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td{padding-bottom: 10px;}
    .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td .number, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th .number{
    	line-height: 24px;

    }
}
@media (min-width: 600px) and (max-width: 767px)  {
	.theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td {
              vertical-align: middle;}

     .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td .number, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th .number{
     font-size: 13px;
    }
}

@media (max-width: 599px) {
.theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td:first-child p, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td:first-child div{
	width:100%; position:absolute;
	}
 .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr td .number, .theKeylessEraPage .keylessEraPanel .keylessEraFind table tr th .number{
     font-size: 13px;
    }

}   
