@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Light.eot');
    src: local('☺'), url('../fonts/Metropolis-Light.woff') format('woff'),
                     url('../fonts/Metropolis-Light.ttf') format('truetype'),
                     url('../fonts/Metropolis-Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.eot');
    src: local('☺'), url('../fonts/Metropolis-Regular.woff') format('woff'),
                     url('../fonts/Metropolis-Regular.ttf') format('truetype'),
                     url('../fonts/Metropolis-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Medium.eot');
    src: local('☺'), url('../fonts/Metropolis-Medium.woff') format('woff'),
                     url('../fonts/Metropolis-Medium.ttf') format('truetype'),
                     url('../fonts/Metropolis-Medium.svg') format('svg');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-SemiBold.eot');
    src: local('☺'), url('../fonts/Metropolis-SemiBold.woff') format('woff'),
                     url('../fonts/Metropolis-SemiBold.ttf') format('truetype'),
                     url('../fonts/Metropolis-SemiBold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Bold.eot');
    src: local('☺'), url('../fonts/Metropolis-Bold.woff') format('woff'),
                     url('../fonts/Metropolis-Bold.ttf') format('truetype'),
                     url('../fonts/Metropolis-Bold.svg') format('svg');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-ExtraBold.eot');
    src: local('☺'), url('../fonts/Metropolis-ExtraBold.woff') format('woff'),
                     url('../fonts/Metropolis-ExtraBold.ttf') format('truetype'),
                     url('../fonts/Metropolis-ExtraBold.svg') format('svg');
    font-weight: 900;
    font-style: normal;
}
/* Master layout */
/************************************************************
Global styles */

/* Partial CSS Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html, body {
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, select, input, option {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
    display: block;
}
audio, canvas, video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

:focus {
    outline: none;
}

table {
    border: 0 none;
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}
td {
    vertical-align: top;
}
hr {
	border: 0;
	outline: none;
	background: inherit;
	height: 0;
	margin: 0;
	padding: 0;
	filter: alpha(opacity=0);
	width: auto;
}
/* End Reset */
.no-margin {
	margin: 0 !important;
}

body {
    font: 14px 'Metropolis', sans-serif;
    line-height: normal;
    color: #777777;
}

/* Links */
a{
   color: inherit; 
}
a,
input[type="submit"] {
    display: inline-block;
    outline: none;
    -webkit-transition: all 0.3s ease 0s; 
       -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
         -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    outline: none;
}
a[href^="tel:"] {
    color: inherit;
}
a img {
    border: none;
    -webkit-transition: all 0.5s ease 0s;
       -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
         -o-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}
img {
    max-width: 100%;
}

*::marker,
*::-webkit-details-marker {
    display: none;
}

/* Form elements */
input[type=text]{
    text-align: center;
    font-size: 14px;
    padding: 11px 15px;
    color: #1a1b1d;
    font-family: 'Metropolis';
}
label i{
    margin-left: 2px;
    vertical-align: text-bottom !important;
}
input[type]:-webkit-autofill,
input[type]:-webkit-autofill:hover,
input[type]:-webkit-autofill:focus,
input[type]:-webkit-autofill:active { /* Fix input background with autocomplete */
    transition: background-color 5000s ease-in-out 0s;
}
.search-box input[type]:-webkit-autofill,
.search-box input[type]:-webkit-autofill:hover,
.search-box input[type]:-webkit-autofill:focus,
.search-box input[type]:-webkit-autofill:active {
    -webkit-box-shadow: /*your box-shadow*/,0 0 0 50px white inset;
    -webkit-text-fill-color: #fff;
}
.search-box input[type]::-webkit-input-placeholder{ 
    color: #fff;
}
.search-box input[type]:-ms-input-placeholder{ 
    color: #fff;
}
.search-box input[type]::placeholder { 
    color: #fff;
}
input[type="search"] {
    -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
.form-check input[type="checkbox"]:not(checked) {
    position: absolute;
    visibility: hidden;
}
.form-check input[type="checkbox"]:not(checked) + label{
    display: block;
    cursor: pointer;
    position: relative;
    padding-left: 20px;
    line-height: 1.2;
    z-index: 0;
}
.form-check input[type="checkbox"]:not(checked) + label:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    vertical-align: middle;
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border: 1px solid #aba7a7;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #fff;
}
.form-check input[type="checkbox"]:checked + label:before {
    content: '\f00c';
    font: 13px 'Font Awesome\ 5 Pro';
    font-weight: bold;
    color: #ed1c24;
    z-index: 1;
    line-height: 7px;
}
input[type="submit"] {
    cursor: pointer;
}
input[type="submit"]::-moz-focus-inner { /* Fix extra button padding in Firefox */
    padding: 0;
    border: none;
    line-height: 1;
}
textarea {
    resize: none;
    overflow: auto;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected=true]{
    background: transparent;
    color: #0a0a0a;
}
.select2-results__option[aria-selected]{
    padding: 10px 0 10px 14px;
    color: #0a0a0a;
}
.select2-results__option[aria-selected]:hover{
    background: #ebebeb;
}
.select2-dropdown{
    border-color: #ebebeb;
}
li[class*="select2"][aria-selected="true"] {
	font-weight: bold;
	color: #ed1c24 !important;
}
/* Default Placeholder styles */
::-webkit-input-placeholder{
/* WebKit browsers */
    color: #bfbfbf;
}
:-moz-placeholder{
/* Mozilla Firefox 4 to 18 */
    color: #bfbfbf;
    opacity: 1;
}
::-moz-placeholder{
/* Mozilla Firefox 19+ */
    color: #bfbfbf;
    opacity: 1;
}
:-ms-input-placeholder{
/* Internet Explorer 10+ */
    color: #bfbfbf;
    opacity: 1;
}
/* Headings */
h1,h2,h3,h4,h5,h6 {
    font-weight: bold;
    line-height: 1.2;
    color: #212121;
}
h1, h2{
    font-size: 34px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 25px;
}
h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
h4 {
    font-size: 18px;
    text-transform: uppercase;
}
h5 {
   font-size: 16px;
   font-weight: 500;
}
h6 {
   
}
h1 span,
h2 span,
h3 span,
.medium-title span{
    color: #ed1c24;
}
h1.prod-title span {
	text-transform: capitalize;
	color: #777777;
	display: block;
	font-weight: normal;
	line-height: 1.2;
	font-size: 90%
}

.large-text{
    font-size: 54px;
    line-height: 1.09;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.large-text span{
    color: #fdb915;
}
.medium-title{
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    color: #212121;
}
/* Block-level */
address {
    font-style: inherit;
}
p {
    line-height: 1.5;
    margin-bottom: 25px;
}
p a {
    
}
p a:hover {
    color: inherit;
}
ul {
    list-style-type: none;
}
strong {
    font-weight: bold;
    color: #212121;
}
sup {
    font-size: 6px;
}

/************************************************************
Generic Site Styles */
.flexbox {
    display: flex; 
    flex-wrap: wrap;
    align-items: stretch; 
    justify-content: flex-start;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
    float: none !important;
}
.table.page,
.container {
    max-width: 1130px;
    margin: 0 auto;
}
.container {
    padding: 0 15px;
}
main .table.page,
.table.auto-height {
    height: auto;
}

.table.auto-width {
    width: auto;
}
.table.auto-all {
    height: auto;
    width: auto;
}
.row {
    display: table-row;
}
.cell {
    display: table-cell;
    vertical-align: top;
    height: 100%;
    float: none !important;
}

.padding {
    padding: 0px 15px;
}
.padding-left {
    padding-left: 15px;
}
.padding-right {
    padding-right: 15px;
}
.middle {
    vertical-align: middle;
}
.bottom {
    vertical-align: bottom;
}
.table-header-group {
    display: table-header-group;
}
.table-footer-group {
    display: table-footer-group;
}

/* Text alignment */
.align-left {
    text-align: left !important;
}
.align-center {
    text-align: center !important;
}
.align-right {
    text-align: right !important;
}

/* Container class to make iFrames responsive */
.frame-contain {
    position: relative;
    max-width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 */
                            /* 75% = 4:3 */
}
.frame-contain iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.full-gallery {
	display: none;
}

/************************************************************
Miscellaneous */
.clearfix:after {
    content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
.relative {
    position: relative;
}
.full-size {
    width: 100%;
    height: 100%;
}

.on-top {
    position: relative;
    z-index: 1;
}

.hide {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}
.logo-wrapper, .header-menu,
.sub-menu, .side-menu a i, 
.sub-ctrl, .slick-arrow, .btn,
.more-link, .more-link:before,
.img-box:after, .event-control:after,
.event-slider-arrows,
.toggle-ctrl, .toggle-head span,
.toggle-head, .toggle-head span:after,
.product-related-wrapper .img-box:after{
    -webkit-transition: all 0.3s ease 0s;
       -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
         -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}
.search-box, .filter-side-wrapper{
    -webkit-transition: all 0.5s ease 0s;
       -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
         -o-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}
.search-box,
.text-overlay,
.event-slider-arrows,
.product-description .toggle-head span:after,
.product-box .img-box:after{
    opacity: 0;
    visibility: hidden;
}
.show-search .search-box,
.soc-box:hover .text-overlay,
.events-open .event-slider-arrows,
.product-description .toggle-open .toggle-head span:after,
.product-box a:hover .img-box:after{
    opacity: 1;
    visibility: visible;
}
.img-box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.banner .single-banner:before,
.img-box:after,
.product-gallery > a:last-child:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
    background-color: rgba(32, 34, 33, 0.5);
    z-index: -1;
}
.img-box.darker:after{
    background-color: rgba(32, 34, 33, 0.75);
}
.img-box .relative {
    z-index: 1;
}
.close-btn{
    font: 24px 'OpenSans-Semibold';
    color: #fff;
    text-align: center;
    position: absolute;
    top: 58px;
    right: 15px;
    z-index: 5;
}
.btn{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    color: #ed1c24;
    background: transparent;
    text-align: center;
    min-width: 148px;
    padding: 10px 25px 9px;
    border: 2px solid #ed1c24;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
.btn:hover{
    background: #ed1c24;
    color: #fff;

}
.btn.white {
	border-color: #FFF;
	color: #FFF;
}
.btn.white:hover {
	border-color: #ed1c24;
}

.btn + .btn {
	margin-left: 10px;
}
.btn-light{
    border-color: #fff;
    background: none;
    font-weight: 500;
    color: #fff;
}
.btn-light:hover{
    background: #fff;
    color: #ed1c24;
}
.btn-lg{
    min-width: 218px;
    padding: 20px 25px 18px;
}
.btn-play{
    display: block;
    width: 61px;
    height: 61px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #e6e6e6;
    text-align: center;
    padding: 6px 0 0 6px;
    line-height: 61px;
}
.btn-play:after{
    content: '\f04b';
    font: 23px Font Awesome\ 5 Pro;
    color: #ed1c24;
    font-weight: bold;
}
.product-more.btn {
	margin-top: 16px;
}
.more-link, .back-link{
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ed1c24;
    white-space: nowrap;
}
.more-link:after,
.back-link:before{
    content: "\f061";
    display: inline-block;
    vertical-align: middle;
    margin-left: 14px;
    font: 12px Font Awesome\ 5 Pro;
}
.more-link.alt:after,
.more-link.alt:before{
    color: #fdb915;
}
.more-link.alt:hover{
    border-color: #fdb915;
}
.back-link{
    color: #0a0a0a;
}
.back-link:before{
    content: "\f060";
    margin: 0 14px 0 0;
}
.line-after:after{
    content: "";
    height: 84px;
    width: 2px;
    background: #e11c24;
    position: absolute;
    left: 50%;
    bottom: -50px;
}
.line-after-sm:after{
    content: '';
    display: block;
    width: 29px;
    height: 2px;
    background: #ed1c24;
    margin-top: 15px;
}
.line-before:before {
	content: "";
	height: 84px;
	width: 2px;
	background: #e11c24;
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	margin: auto;
	top:-43px;
}
/* Icons */
.ico{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 70px;
    margin-bottom: 10px;
}
.ico img{
    max-height: 100%;
}
.active .ico img{
    filter: brightness(0) invert(1);
}
i{
    font-style: normal;
}
.toggle-content{
    display: none;
}
/************************************************************
Slick Slider main styles */
.slick-initialized .slick-slide {
    z-index: 7 !important;
}
.slick-initialized .slick-slide.slick-active {
    z-index: 8 !important;
}
.slick-vertical .slick-slide {
    position: relative;
    border: none;
}
.slick-arrow {
    width: auto;
    height: auto;
    color: #0a0a0a;
    z-index: 9;
}
.slick-arrow:after {
    font:24px/1 Font Awesome\ 5 Pro;
}
.slick-arrow.slick-prev {
    left: 0;
}
.slick-arrow.slick-prev:after {
    content: "\f060";
}
.slick-arrow.slick-next {
    right: 0;
}
.slick-arrow.slick-next:after {
    content: "\f061";
}
.slick-arrow.slick-disabled{
    pointer-events: none;
    color: #e6e6e6;
}
.slider-arrows{
    width: 74px;
    display: flex;
}
.slider-arrows .slick-arrow{
    position: static;
    display: block;
    transform: none;
}
.slider-arrows .slick-prev{
    margin-right: 30px;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-dots {
    bottom: 33px;
    height: 2px;
    line-height: 0;
    z-index: 9;
}
.slick-dots li {
    vertical-align: top;
    width: 30px;
    height: 2px;
    margin: 0 4px;
}
.slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #fff;
}
.slick-dots li.slick-active button {
    background-color: #ed1c24;
}
.slick-dots li button:before {
    content: none;
}

.select2-results__option:empty {
	display: none;
}
.select2,
.select2 * {
	text-align: left;
}

/***************************
  Request A Quote Modal
***************************/
 
#modal-contain {
  background-color: rgba(51, 51, 51, 0.9);
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease 0.3s;
}

.show-modal #modal-contain {
  opacity: 1; 
  visibility: visible;
  transition: all 0.3s ease 0s;
  z-index: 99999;
}

#modal-contain > #modal-display {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  width: 100%;
  max-width: 600px;
  background: url(/images/layout/bg-figures.jpg) no-repeat center bottom #FFF;
  background-size: cover;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.5);
  -webkit-transform: translate(-50%, -50%) scale(0.3);
  -moz-transform:    translate(-50%, -50%) scale(0.3);
  -ms-transform:     translate(-50%, -50%) scale(0.3);
  -o-transform:      translate(-50%, -50%) scale(0.3);
  transform:         translate(-50%, -50%) scale(0.3);
  opacity: 0;
  padding-top: 46px;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  text-align: center;
}
#modal-display > .modal-content {
  display: block;
  position: relative;
  padding: 30px 25px;
  margin: auto;
  font-size: 0px;
  z-index: 0;
}

.show-modal #modal-contain > #modal-display {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform:    translate(-50%, -50%) scale(1);
  -ms-transform:     translate(-50%, -50%) scale(1);
  -o-transform:      translate(-50%, -50%) scale(1);
  transform:         translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease 0.4s;
}

.modal-close {
  font-size: 48px !important;
  line-height: 48px !important;
  color: #FFF;
  display: inline-block;
  position: absolute;
  top:30px;
  right: 30px;
  cursor: pointer;
  z-index: 20;
}

a.modal-select {
  font-size: 25px;
  line-height: 30px;
  color: #FFF;
  background-color: #031d2b;
  width: 266px;
  height: 204px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-family: 'Metropolis-Bold';
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 0;
}

a.modal-select:before {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  position: absolute;
  z-index: 0;
  top:0px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  background: rgb(0,123,193);
	background: -moz-linear-gradient(left, rgba(0,123,193,1) 0%, rgba(1,175,169,1) 100%);
	background: -webkit-linear-gradient(left, rgba(0,123,193,1) 0%,rgba(1,175,169,1) 100%);
	background: linear-gradient(to right, rgba(0,123,193,1) 0%,rgba(1,175,169,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007bc1', endColorstr='#01afa9',GradientType=1 );
	transition: all 0.3s ease 0s;
}

a.modal-select:hover:before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

a.modal-select > .table {
  position: relative;
  z-index: 1;
}

a.modal-select + a.modal-select {
  margin-left: 20px;
}

a.modal-select span {
  display: block;
  margin: 0 auto 25px;
  position: relative;
  z-index: 0;
}

a.modal-select span:before,
a.modal-select span:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-attachment: scroll;
  background-color: transparent;
  background-repeat: no-repeat;
  position: absolute;
  top:0;
  left: 0;
  transition: all 0.3s ease 0s;
}

a.modal-select span:before {
  background-position: center top;
  opacity: 1;
  visibility: visible;
}

a.modal-select span:after {
  background-position: center bottom;
  opacity: 0;
  visibility: hidden;
}

a.modal-select:hover span:before {
  opacity: 0;
  visibility: hidden;
}

a.modal-select:hover span:after {
  opacity: 1;
  visibility: visible;
}

#modal-contain input:not([type="submit"]) {
	height: auto;
	width: 100%;
	display: block;
	font-size: 14px;
	padding: 15px 20px;
	border-radius: 4px;
	text-align: center;
	color: #333;
	background: #fefefe;
	border: 1px solid #ccc;
	box-shadow: inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.1);
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#modal-contain input + input {
  margin-top: 14px;
}
#modal-contain .btn {
  cursor: pointer;
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  background-color: #fff;
}

#modal-contain .btn.submit:hover {
	background-color: #ed1c24;
}
#modal-contain .btn.submit {
  margin-top: 12px; 
}

#modal-display p.error {
	margin-bottom: 0;
	font-weight: bold;
	color: #ff0000;
}

#modal-display h1 {
	margin-bottom: 10px;
}


.line {
	height: 1px; 
	width: 100%;
	background-color: #212121;
	margin: 0 0 6px 0;
	display: block;
}

/***********************
  Pagination Styles
***********************/

.pagination {
  display: block;
  background-color: #F9F9F9;
  border: 1px solid #E8E8E8;
  padding: 6px;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.pagination > div {
  display: inline-block;
  vertical-align: middle;
}

.pagination > div + div {
	margin-left: 8px;
}

.pagination > ul > li {
	display: inline-block;
	list-style: none;
	padding: 0 !important;
}
.pagination > ul > li:before,
.pagination > ul > li:after {
	display: none !important;
}

.pagination > ul > li + li {
	padding: 0 0 0 6px !important;
}

.pagination a, 
.pagination span,
.pagination strong {
  display: inline-block;
  font-family: 'Metropolis';
  font-size: 14px;
  line-height: 14px;
  padding: 10px 11px 8px;
}

.pagination span {
  padding:10px 13px 10px 11px;
}

.pagination a {
  color: #0a0a0a !important;
  background-color: #ddd;
  border: 1px solid #0a0a0a;
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  background-color: #0a0a0a;
  color: #FFF !important;
}

.pagination span {
  font-family: 'Metropolis';
  color: #FFF;
  background-color: #ed1c24;
  border: 1px solid #FFF;
  font-weight: bold;
}

/*
.pagination ul > .prev a,
.pagination ul > .next a {
  font-size: 22px;
  padding: 8px 11px 11px 11px;
}
*/

.pagination strong {
  font-family: 'Metropolis';
  font-weight: bold;
  color: #FFF;
  background-color: #0a0a0a;
  border: 1px solid #0a0a0a;
}

.pagination ul > .prev:empty,
.pagination ul > .next:empty {
  display: none;
}

.pagination ul > .prev:empty + div {
  margin-left: 0px;
}



/**************************
   Modal Default Styles
**************************/

.popup {
	background-color: #FFF;
}

.popup > .cell {
	padding: 30px;
}

.popup > .cell p {
	margin: 0;
}


/************************************************************
Toggle Styles */
/*.toggle-list{
    margin-top: 30px;
}
.toggle-box{
    background: #e6e6e6;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    margin-bottom: 9px;
}
.toggle-box:last-child{
    margin-bottom: 0;
}
.toggle-head{
    font-size: 18px;
    font-weight: bold;
    color: #212121;
    background: #e6e6e6;
    text-transform: uppercase;
    position: relative;
    padding: 20px 90px 16px 37px;
    cursor: pointer;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
.toggle-open .toggle-head{
    color: #ed1c24;
    padding-bottom: 15px;
}
.toggle-head span:after{
    margin-top: 0;
    height: 0;
}
.toggle-open .toggle-head span:after{
    content: '';
    display: block;
    width: 29px;
    height: 2px;
    background: #ed1c24;
    margin-top: 15px; 
    position: static;
}
.toggle-ctrl{
    width: 31px;
    height: 31px;
    line-height: 31px;
    text-align: center;
    background: #0a0a0a;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: 21px;
    top: 11px;
}
.toggle-ctrl:after{
    content: '\f067';
    font-family: Font Awesome\ 5 Pro;
    font-size: 10.5px;
    
}
.toggle-open .toggle-ctrl{
    background: #ed1c24;
}
.toggle-open .toggle-ctrl:after{
    content: '\f068';
}
.toggle-open .toggle-ctrl:after{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}
.toggle-box.toggle-open .toggle-head span{
    max-width: 500px;
}
.toggle-content{
    display: none;
    position: relative;
    padding: 0 90px 50px 37px;
    color: #0a0a0a;
}
.toggle-content p:last-child{
    margin-bottom: 0;
}*/

.display-tbl {
	margin: 0px auto;
	width: 100%;
	table-layout: fixed;
	border-radius: 10px;
}
.display-tbl.lg-tbl {
	max-width: 1600px;
}
.display-tbl.short {
	width: auto;
	margin: 0;
}
.display-tbl input[type="text"], 
.display-tbl input[type="email"], 
.display-tbl input[type="password"], 
.display-tbl textarea, 
.display-tbl select {
    background: #fcfcfc;
    color: #111;
    font-size: 14px;
    padding: 5px 7px;
    margin: 0;
    border: 1px solid #999;
    line-height: 1.1;
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
    width: 100%;
}
.display-tbl .tbl-btn {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 8px;
	background-color: #c9c9c9;
	color: #000;
	font-size: 14px;
	line-height: 1;
	font-family: 'Montserrat-Regular';
}
.display-tbl .tbl-btn:hover {
	background-color: #838383;
	color: #FFF;
}

.display-tbl caption {
	font-size: 18px;
	line-height: 22px;
	padding: 10px 0;
	border: none;
	background: none !important;
}

.display-tbl .rightFloat {
	float: right;
}

.display-tbl caption span {
	margin-top: -6px;
}

/* Default Styles */
.display-tbl {
  color: #333;
/*   background: white; */
/*   border: 1px solid grey; */
  border: none;
  font-size: 14px;
  border-collapse: collapse;
  table-layout: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.4);
}
.display-tbl + .display-tbl {
	margin-top: 16px;
}
.display-tbl thead th,
.display-tbl tfoot th,
.display-tbl .label {
	color:#FFF;
	background:#292929;
	border: none;
	font-size: 18px;
	font-weight: bold;
}

.display-tbl th:first-child,
.display-tbl td:first-child {
	vertical-align: middle;
} 

.display-tbl th,
.display-tbl td {
  padding: 1em;
/*   border: 1px solid lightgrey; */
}
.display-tbl td {
	background-color: #fff;
}

.display-tbl tr:nth-child(odd) td {
	background-color: #e7e7e7;
}

.display-tbl.lg-tbl td {
	font-size: 12px !important;
}

.display-tbl tr.disabled {
	background-color: #a5a5a5;
}

/* Zebra .display-tbl Style */
[data-.display-tbl-theme*=zebra] tbody tr:nth-of-type(odd) {
  background: rgba(0,0,0,.05);
}
[data-.display-tbl-theme*=zebra][data-.display-tbl-theme*=dark] tbody tr:nth-of-type(odd) {
  background: rgba(255,255,255,.05);
}
/* Dark Style */
[data-.display-tbl-theme*=dark] {
  color: #ddd;
  background: #333;
  font-size: 12pt;
  border-collapse: collapse;
}
[data-.display-tbl-theme*=dark] thead th,
[data-.display-tbl-theme*=dark] tfoot th {
  color: #aaa;
  background: rgba(0255,255,255,.15);
}
[data-.display-tbl-theme*=dark] caption {
  padding:.5em;
}
[data-.display-tbl-theme*=dark] th,
[data-.display-tbl-theme*=dark] td {
  padding: .5em;
  border: 1px solid grey;
}


.shake {
  display: inherit;
  transform-origin: center center; 
  animation-name: shake-horizontal;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 3; 
  animation-play-state: running;
 }

/*
.shake-freeze,
.shake-constant.shake-constant--hover:hover,
.shake-trigger:hover .shake-constant.shake-constant--hover {
  animation-play-state: paused; }

.shake-freeze:hover,
.shake-trigger:hover .shake-freeze, .shake-horizontal:hover,
.shake-trigger:hover .shake-horizontal {
  animation-play-state: running; }
*/

@keyframes shake-horizontal {
  2% {
    transform: translate(-50.5%, -50%) rotate(0); }
  4% {
    transform: translate(-50.5%, -50%) rotate(0); }
  6% {
    transform: translate(-50.3%, -50%) rotate(0); }
  8% {
    transform: translate(-50.1%, -50%) rotate(0); }
  10% {
    transform: translate(-51%, -50%) rotate(0); }
  12% {
    transform: translate(-50.6%, -50%) rotate(0); }
  14% {
    transform: translate(-50.2%, -50%) rotate(0); }
  16% {
    transform: translate(-50.5%, -50%) rotate(0); }
  18% {
    transform: translate(-50.7%, -50%) rotate(0); }
  20% {
    transform: translate(-50.3%, -50%) rotate(0); }
  22% {
    transform: translate(-50.1%, -50%) rotate(0); }
  24% {
    transform: translate(-50.7%, -50%) rotate(0); }
  26% {
    transform: translate(-50.1%, -50%) rotate(0); }
  28% {
    transform: translate(-50.6%, -50%) rotate(0); }
  30% {
    transform: translate(-51%, -50%) rotate(0); }
  32% {
    transform: translate(-50.6%, -50%) rotate(0); }
  34% {
    transform: translate(-50.5%, -50%) rotate(0); }
  36% {
    transform: translate(-50.1%, -50%) rotate(0); }
  38% {
    transform: translate(-50.1%, -50%) rotate(0); }
  40% {
    transform: translate(-50.9%, -50%) rotate(0); }
  42% {
    transform: translate(-50.5%, -50%) rotate(0); }
  44% {
    transform: translate(-50.9%, -50%) rotate(0); }
  46% {
    transform: translate(-50.4%, -50%) rotate(0); }
  48% {
    transform: translate(-50.0%, -50%) rotate(0); }
  50% {
    transform: translate(-50.7%, -50%) rotate(0); }
  52% {
    transform: translate(-50.8%, -50%) rotate(0); }
  54% {
    transform: translate(-50.7%, -50%) rotate(0); }
  56% {
    transform: translate(-50.9%, -50%) rotate(0); }
  58% {
    transform: translate(-51%, -50%) rotate(0); }
  60% {
    transform: translate(-50.6%, -50%) rotate(0); }
  62% {
    transform: translate(-50.8%, -50%) rotate(0); }
  64% {
    transform: translate(-50.8%, -50%) rotate(0); }
  66% {
    transform: translate(-50.9%, -50%) rotate(0); }
  68% {
    transform: translate(-50.2%, -50%) rotate(0); }
  70% {
    transform: translate(-50.8%, -50%) rotate(0); }
  72% {
    transform: translate(-50.4%, -50%) rotate(0); }
  74% {
    transform: translate(-50.4%, -50%) rotate(0); }
  76% {
    transform: translate(-50.9%, -50%) rotate(0); }
  78% {
    transform: translate(-50.9%, -50%) rotate(0); }
  80% {
    transform: translate(-50.7%, -50%) rotate(0); }
  82% {
    transform: translate(-50.5%, -50%) rotate(0); }
  84% {
    transform: translate(-50.5%, -50%) rotate(0); }
  86% {
    transform: translate(-50.4%, -50%) rotate(0); }
  88% {
    transform: translate(-50.9%, -50%) rotate(0); }
  90% {
    transform: translate(-50.6%, -50%) rotate(0); }
  92% {
    transform: translate(-50.2%, -50%) rotate(0); }
  94% {
    transform: translate(-50.8%, -50%) rotate(0); }
  96% {
    transform: translate(-50.1%, -50%) rotate(0); }
  98% {
    transform: translate(-50.3%, -50%) rotate(0); }
  0%, 100% {
    transform: translate(-50.0%, -50%) rotate(0); } }

/*
.shake-horizontal:hover,
.shake-trigger:hover .shake-horizontal, .shake-horizontal.shake-freeze, .shake-horizontal.shake-constant {
  animation-name: shake-horizontal;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; }
*/
