.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.slow {
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

.animated.fast {
    -webkit-animation-duration: .4s;
    animation-duration: .4s
}

.animated.delayed {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadein {
    animation-name: fadein
}

@keyframes fadeindown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeindown {
    animation-name: fadeindown
}

@keyframes fadeinright {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeinright {
    animation-name: fadeinright
}

@keyframes fadeinleft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeinleft {
    animation-name: fadeinleft
}

@keyframes fadeinup {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeinup {
    animation-name: fadeinup
}

@keyframes slightfadeinup {
    from {
        opacity: 0;
        transform: translatey(50px)
    }

    to {
        opacity: 1;
        transform: translatey(0)
    }
}

.slightfadeinup {
    animation: slightfadeinup .4s normal forwards ease
}

@keyframes fadeout {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeout {
    animation-name: fadeout
}

@keyframes fadeoutup {
    from {
        opacity: 1;
        transform: none
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeoutup {
    animation-name: fadeoutup
}

@keyframes slideindown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideindown {
    animation-name: slideindown
}

@keyframes slideinleft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideinleft {
    animation-name: slideinleft
}

@keyframes slideinright {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideinright {
    animation-name: slideinright
}

@keyframes slideinup {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideinup {
    animation-name: slideinup
}

@keyframes slideoutdown {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideoutdown {
    animation-name: slideoutdown
}

@keyframes slideoutleft {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideoutleft {
    animation-name: slideoutleft
}

@keyframes slideoutright {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideoutright {
    animation-name: slideoutright
}

@keyframes slideoutup {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideoutup {
    animation-name: slideoutup
}

@keyframes zoomin {
    from {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.zoomin {
    animation-name: zoomin
}

.lazyload {
    opacity: 0;
    -webkit-transform: translatey(40px);
    -moz-transform: translatey(40px);
    -ms-transform: translatey(40px);
    -o-transform: translatey(40px);
    transform: translatey(40px);
    -webkit-transition: all .5s ease-in-out .2s;
    -moz-transition: all .5s ease-in-out .2s;
    -o-transition: all .5s ease-in-out .2s;
    transition: all .5s ease-in-out .2s
}

.lazyload.fade {
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0)
}

.lazyload .lazyload-child,
.lazyload.lazyload-child {
    opacity: 0;
    -webkit-transform: translatey(40px);
    -moz-transform: translatey(40px);
    -ms-transform: translatey(40px);
    -o-transform: translatey(40px);
    transform: translatey(40px);
    -webkit-transition: all .5s ease-in-out .4s;
    -moz-transition: all .5s ease-in-out .4s;
    -o-transition: all .5s ease-in-out .4s;
    transition: all .5s ease-in-out .4s
}

.lazyload.active {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0)
}

.lazyload.active .lazyload-child {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0)
}

body.disable-lazyload .lazyload,
body.editor-mode .lazyload {
    opacity: 1 !important;
    -webkit-transform: translatey(0) !important;
    -moz-transform: translatey(0) !important;
    -ms-transform: translatey(0) !important;
    -o-transform: translatey(0) !important;
    transform: translatey(0) !important;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out
}

body.disable-lazyload .lazyload .lazyload-child,
body.disable-lazyload .lazyload.lazyload-child,
body.editor-mode .lazyload .lazyload-child,
body.editor-mode .lazyload.lazyload-child {
    opacity: 1 !important;
    -webkit-transform: translatey(0) !important;
    -moz-transform: translatey(0) !important;
    -ms-transform: translatey(0) !important;
    -o-transform: translatey(0) !important;
    transform: translatey(0) !important;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out
}

@keyframes suggestedsearchanimation {
    0% {
        opacity: 0;
        -webkit-transform: translatey(-15px);
        -moz-transform: translatey(-15px);
        -ms-transform: translatey(-15px);
        -o-transform: translatey(-15px);
        transform: translatey(-15px)
    }

    2% {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -ms-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0)
    }

    31% {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -ms-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0)
    }

    33% {
        opacity: 0;
        -webkit-transform: translatey(-15px);
        -moz-transform: translatey(-15px);
        -ms-transform: translatey(-15px);
        -o-transform: translatey(-15px);
        transform: translatey(-15px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translatey(-15px);
        -moz-transform: translatey(-15px);
        -ms-transform: translatey(-15px);
        -o-transform: translatey(-15px);
        transform: translatey(-15px)
    }
}

@keyframes profileupdatesuccessful {

    0%,
    100% {
        opacity: 0
    }

    15% {
        opacity: .4
    }

    50% {
        opacity: 1
    }

    80% {
        opacity: .4
    }
}

.subhead-regular {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 20px;
    color: #000;
    letter-spacing: .22px;
    line-height: 27px;
    margin-bottom: 10px
}

.headline-xs {
    font-family: montserrat;
    font-weight: 300;
    font-size: 14px;
    color: #000;
    letter-spacing: .5px;
    line-height: 18px;
    text-transform: uppercase
}

.dropdown.inline .text {
    font-family: proximanova, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 14px;
    color: #000;
    letter-spacing: .5px
}

.dropdown.inline i.dropdown.icon {
    color: #983cc9;
    transform: translatey(3px);
    margin: 0 !important;
    margin-left: 5px !important
}

.dropdown.inline .menu {
    box-shadow: 0 2px 3px 0 rgba(34, 36, 38, .32);
    border: none
}

.dropdown.flat {
    background: #fff;
    width: 100%;
    padding: 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .17)
}

.dropdown.flat .text {
    font-family: proximanova, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 14px;
    color: #000;
    letter-spacing: .5px
}

.dropdown.flat i.dropdown.icon {
    color: #983cc9;
    transform: translatey(3px);
    margin: 0 !important;
    margin-left: 5px !important;
    float: right
}

.dropdown.flat .menu {
    box-shadow: 0 2px 3px 0 rgba(34, 36, 38, .32);
    border: none;
    width: 100%;
    border-radius: 0
}

.tabs .ui.secondary.pointing.menu {
    border: 0;
    display: block
}

.tabs .ui.secondary.pointing.menu .item {
    font-family: montserrat;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    border: none;
    letter-spacing: .5px;
    line-height: 12px;
    padding: 0 30px 0 0;
    float: left;
    position: relative;
    cursor: pointer !important
}

.tabs .ui.secondary.pointing.menu .item span {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: calc(100% - 30px);
    height: 5px;
    background: #983cc9;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.tabs .ui.secondary.pointing.menu .item.active,
.tabs .ui.secondary.pointing.menu .item:hover {
    color: #983cc9;
    border: none;
    cursor: pointer !important
}

.tabs .ui.secondary.pointing.menu .item.active span,
.tabs .ui.secondary.pointing.menu .item:hover span {
    opacity: 1
}

a.arrow-btn {
    color: #983cc9 !important
}

a.arrow-btn i {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

a.arrow-btn:hover i {
    -webkit-transform: translatex(5px);
    -moz-transform: translatex(5px);
    -ms-transform: translatex(5px);
    -o-transform: translatex(5px);
    transform: translatex(5px)
}

.bc-label label {
    padding-left: 0 !important;
    object-fit: contain;
    font-size: .875em !important;
    font-weight: 300;
    font-family: montserrat;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    letter-spacing: .031em
}

.bc-hide {
    display: none !important
}

.bc-anchor-offset {
    position: relative;
    display: block;
    top: -7.5em;
    height: 0;
    width: 0;
    visibility: hidden
}

.dropdown-label.required::after {
    content: '*';
    color: red;
    font-size: 1.143rem
}

.gdpr-user-consent #phone-consent {
    margin-top: 15px
}

.gigya-screen input[type=submit] {
    cursor: pointer;
    width: 100%;
    height: 43px;
    border-radius: 1.79px;
    border-color: #983cc9;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, .4);
    color: #fff;
    background-color: #983cc9;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
    font-size: 19px
}

.gigya-screen-dialog-main * {
    font-family: proximanova, lato, 'helvetica neue', arial, helvetica, sans-serif
}

.gigya-screen-dialog-main .gigya-screen-dialog-top {
    display: none
}

@media only screen and (min-width:500px) {
    .gdpr-user-consent .beckman-radio-group li {
        display: inline-block
    }

    .gdpr-user-consent .beckman-radio-group li:first-child {
        width: 25%
    }

    .gdpr-user-consent .beckman-radio-group li:nth-child(2) {
        width: 30%
    }

    .gdpr-user-consent .beckman-radio-group li:nth-child(3) {
        width: 38%
    }
}

#module-lib-nav {
    width: 18%;
    float: left;
    height: 100vh;
    position: fixed;
    background: #3a3a3a;
    overflow-x: scroll;
    padding: 20px 10px;
    z-index: 9999999
}

#module-lib-nav h5 {
    color: #fff;
    border-bottom: solid;
    line-height: 3em
}

#module-lib-nav ul {
    list-style: none;
    margin: 0;
    padding: 0
}

#module-lib-nav ul li.sections {
    color: #983cc9;
    font-size: 1.2em;
    font-family: proximanova, montserrat, sans-serif
}

#module-lib-nav ul li a {
    color: #a2a2a2;
    font-size: .8em;
    font-family: proximanova, montserrat, sans-serif
}

#module-lib-nav ul li a:hover {
    color: #fff
}

#module-lib-body {
    width: calc(100% - 200px);
    float: left;
    margin-left: 18%
}

.ml-header {
    justify-content: center;
    width: 100%;
    padding: 50px 0;
    display: flex;
    position: relative
}

.ml-header:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #dcdcdc;
    position: absolute;
    top: 50%
}

.ml-header span {
    border: none;
    font-size: 1.5em;
    font-family: montserrat, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-weight: 200;
    text-transform: none;
    color: #fff;
    background: #983cc9;
    padding: 10px 20px;
    border-radius: 45px;
    z-index: 1;
    box-shadow: #00003047 0 4px 5px 0, #00003047 0 0 6px
}

.two-column-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
    z-index: 2 !important;
    position: relative;
    margin-top: 0
}

.two-column-tabs .layout-content-container {
    width: 100%;
    max-width: 1400px;
    background: #fff;
    border: 1px solid #d5d5d5;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .09);
    display: flex;
    flex-direction: row
}

.two-column-tabs .layout-content-container .column-1 {
    flex: 1
}

.two-column-tabs .layout-content-container .column-1 .product-lineup {
    background: 0 0;
    margin: 0
}

.two-column-tabs .layout-content-container .column-1 .product-lineup .product-lineup-container {
    margin: 0
}

.two-column-tabs .layout-content-container .column-1 .product-lineup .product-lineup-container .tabbed-content .tabs .tab.segment {
    padding: 0 40px
}

.two-column-tabs .layout-content-container .column-1 .product-lineup .product-lineup-container .ui.secondary.menu {
    border-bottom: solid 2px #f8f8f8;
    padding: 20px 40px;
    padding-bottom: 40px
}

.two-column-tabs .layout-content-container .column-2 {
    flex: 1;
    max-width: 295px;
    padding: 40px;
    border-left: solid 2px #f8f8f8
}

@media only screen and (max-width:767px) {
    .two-column-tabs .layout-content-container {
        flex-direction: column
    }

    .two-column-tabs .layout-content-container .column-2 {
        max-width: none;
        border-left: none;
        border-top: solid 2px #f8f8f8
    }
}

.one-column-bordered {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
    z-index: 2 !important;
    position: relative;
    margin-top: 0
}

.one-column-bordered .layout-content-container {
    width: 100%;
    max-width: 1400px;
    background: #fff;
    border: 1px solid #d5d5d5;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .09);
    display: flex;
    flex-direction: column
}

@media only screen and (max-width:767px) {
    .one-column-bordered .layout-content-container {
        padding: 30px 0
    }
}

.sublayout-two-column-dynamic {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 35px
}

.sublayout-two-column-dynamic .sublayout-content {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    padding: 0 30px;
    width: 100%;
    max-width: 1400px
}

.sublayout-two-column-dynamic .column-1 {
    flex: 1;
    margin-right: 30px;
    width: 50%
}

.sublayout-two-column-dynamic .column-2 {
    flex: 1;
    width: 50%
}

.sublayout-two-column-dynamic.large-left .column-1 {
    flex: none;
    width: 65%;
    margin-right: 30px
}

.sublayout-two-column-dynamic.large-left .column-2 {
    flex: none;
    width: 35%
}

.sublayout-two-column-dynamic.large-right .column-1 {
    flex: none;
    margin-right: 30px;
    width: 35%
}

.sublayout-two-column-dynamic.large-right .column-2 {
    width: 65%;
    flex: none
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .sublayout-two-column-dynamic .sublayout-content {
        display: flex;
        flex-direction: row;
        margin-bottom: 30px
    }

    .sublayout-two-column-dynamic .flex-column {
        flex-direction: column
    }

    .sublayout-two-column-dynamic .flex-row {
        flex-direction: row
    }

    .sublayout-two-column-dynamic .column-1 {
        margin-right: 30px;
        width: 50%
    }

    .sublayout-two-column-dynamic .column-2 {
        flex: 1;
        width: 50%
    }

    .sublayout-two-column-dynamic.large-left .column-1 {
        flex: none;
        width: 100%;
        margin-right: 0
    }

    .sublayout-two-column-dynamic.large-left .column-2 {
        flex: none;
        width: 100%
    }

    .sublayout-two-column-dynamic.large-right .column-1 {
        flex: none;
        margin-right: 0;
        width: 50%
    }

    .sublayout-two-column-dynamic.large-right .column-2 {
        width: 50%;
        flex: none
    }
}

@media only screen and (max-width:767px) {
    .sublayout-two-column-dynamic .sublayout-content {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px
    }

    .sublayout-two-column-dynamic .column-1 {
        flex: none;
        margin-right: 0;
        width: 100%
    }

    .sublayout-two-column-dynamic .column-2 {
        flex: none;
        width: 100%
    }

    .sublayout-two-column-dynamic.large-left .column-1 {
        flex: none;
        width: 100%;
        margin-right: 0
    }

    .sublayout-two-column-dynamic.large-left .column-2 {
        flex: none;
        width: 100%
    }

    .sublayout-two-column-dynamic.large-right .column-1 {
        flex: none;
        margin-right: 0;
        width: 100%
    }

    .sublayout-two-column-dynamic.large-right .column-2 {
        width: 100%;
        flex: none
    }
}

.ui.grid.container {
    width: 100% !important;
    max-width: 1400px !important
}

.ui.grid .grid {
    margin: 0
}

html {
    margin: 0;
    padding: 0
}

html body {
    margin: 0;
    padding: 0;
    font-family: sans-serif !important;
    font-size: 16px;
    color: #000
}

html body .footer-container,
html body .main-container {
    width: 100%
}

html body .one-full-column-padding-bottom {
    padding-bottom: 70px !important
}

html body .one-column-padding-bottom {
    padding-bottom: 70px !important
}

html body .two-column-padding-bottom {
    padding-bottom: 70px !important
}

html body .two-column-10-6-padding-bottom {
    padding-bottom: 70px !important
}

html body .three-column-padding-bottom {
    padding-bottom: 70px !important
}

html body .one-full-column-footer-top {
    padding-top: 50px !important
}

.two-column-tabs .nested-padding {
    padding: 30px
}

.component-spacer {
    margin: 50px 0
}

.red {
    color: #ea1c2c !important
}

.black {
    color: #000 !important
}

.dont-breakout {
    overflow-wrap: normal;
    word-wrap: normal;
    -ms-word-break: normal;
    word-break: normal;
    -ms-hyphens: none;
    -moz-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none
}

.ui.table {
    color: #000
}

.styleguide-heading {
    width: 100%;
    background: #f9f9f9;
    text-align: center;
    font-size: 40px;
    padding: 10px;
    display: block;
    height: auto;
    line-height: initial
}

.styleguide-sub-heading {
    width: 100%;
    margin: 50px 0;
    text-align: center;
    color: #000;
    border-bottom: solid 2px
}

.ui.header,
h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    border: none;
    padding: 0 0;
    font-family: 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-weight: 200;
    text-transform: none;
    color: #000;
    width: 100%
}

.ui.header .sub.header.sub-header,
.ui.header span.sub-header,
h1 .sub.header.sub-header,
h1 span.sub-header,
h2 .sub.header.sub-header,
h2 span.sub-header,
h3 .sub.header.sub-header,
h3 span.sub-header,
h4 .sub.header.sub-header,
h4 span.sub-header,
h5 .sub.header.sub-header,
h5 span.sub-header,
h6 .sub.header.sub-header,
h6 span.sub-header,
h7 .sub.header.sub-header,
h7 span.sub-header {
    font-family: 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    display: block;
    font-weight: 400;
    padding: 0;
    margin: 0;
    margin-top: 1em;
    font-size: .5em;
    line-height: 1.2em;
    color: #000
}

.ui.header .sub.header.label,
.ui.header span.label,
h1 .sub.header.label,
h1 span.label,
h2 .sub.header.label,
h2 span.label,
h3 .sub.header.label,
h3 span.label,
h4 .sub.header.label,
h4 span.label,
h5 .sub.header.label,
h5 span.label,
h6 .sub.header.label,
h6 span.label,
h7 .sub.header.label,
h7 span.label {
    font-size: .5em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    display: block;
    padding: 0;
    margin: 0;
    margin-top: 1em;
    line-height: 1.2em;
    color: #000
}

h4,
h5,
h6,
h7 {
    border: none;
    padding: 0 0;
    font-family: 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-weight: 300;
    text-transform: none;
    color: #000
}

h1,
h1.ui.header {
    font-size: 3em
}

h2,
h2.ui.header {
    font-size: 2.5em
}

h3,
h3.ui.header {
    font-size: 2em
}

h4,
h4.ui.header {
    font-size: 1.5em
}

h5,
h5.ui.header {
    font-size: 1em
}

p {
    font-family: sans-serif;
    font-size: 1em;
    line-height: 1.5em;
    width: 100%
}

p strong {
    font-family: 'open sans', 'helvetica neue', arial, helvetica, sans-serif
}

p.body-large {
    font-size: 1.125em;
    line-height: 1.5em
}

p.body-xlarge {
    font-size: 1.75em;
    line-height: 1.5em
}

a {
    font-size: 1em;
    font-family: 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    color: #00a9e0
}

.center-text {
    text-align: center
}

@media only screen and (max-width:768px) {

    h1,
    h1.ui.header {
        font-size: 42px;
        font-size: calc(16px   2.95vw)
    }

    h2,
    h2.ui.header {
        font-size: 35px;
        font-size: calc(16px   2.15vw)
    }

    h3,
    h3.ui.header {
        font-size: 28px;
        font-size: calc(16px   1.4vw)
    }

    h4,
    h4.ui.header {
        font-size: 21px;
        font-size: calc(16px   .6vw)
    }
}

.ui.button {
    background-color: #000;
    color: #fff;
    font-family: montserrat;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    font-size: 1.125rem;
    position: relative;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.ui.button.inverted {
    box-shadow: none !important;
    border: solid 2px #fff !important
}

.ui.button:visited {
    color: #fff;
    background-color: #000
}

.ui.button:visited:after {
    opacity: 1
}

.ui.button:active,
.ui.button:focus,
.ui.button:hover {
    color: #fff;
    background-color: #a2a1a1;
    box-shadow: none !important
}

.ui.button:active:after,
.ui.button:focus:after,
.ui.button:hover:after {
    opacity: 1
}

.ui.button.primary {
    background-color: #983cc9;
    color: #fff
}

.ui.button.primary.inverted {
    box-shadow: none !important;
    border: solid 2px #983cc9 !important;
    background: 0 0 !important;
    color: #983cc9 !important
}

.ui.button.primary:visited {
    background-color: #983cc9;
    color: #fff
}

.ui.button.primary:active,
.ui.button.primary:focus,
.ui.button.primary:hover {
    background-color: #983cc9;
    color: #fff
}

.ui.button.primary:active.inverted,
.ui.button.primary:focus.inverted,
.ui.button.primary:hover.inverted {
    box-shadow: none !important;
    background: #983cc9 !important;
    color: #fff !important
}

.ui.button.secondary {
    background-color: #00a9e0;
    color: #fff
}

.ui.button.secondary:visited {
    background-color: #00a9e0;
    color: #fff
}

.ui.button.secondary:active,
.ui.button.secondary:focus,
.ui.button.secondary:hover {
    background-color: #05b5ef;
    color: #fff
}

.ui.button.tertiary {
    background-color: #fff;
    color: #983cc9;
    border: solid 1px #983cc9
}

.ui.button.tertiary:visited {
    background-color: #fff;
    color: #983cc9
}

.ui.button.tertiary:active,
.ui.button.tertiary:focus,
.ui.button.tertiary:hover {
    background-color: #fff;
    color: #983cc9
}

.ui.button.clear {
    background: 0 0;
    color: #00a9e0
}

.ui.button.clear:visited {
    background: 0 0;
    color: #00a9e0
}

.ui.button.clear:active,
.ui.button.clear:focus,
.ui.button.clear:hover {
    background: 0 0;
    color: #1e70bf
}

.ui.button.btn-cta {
    background: 0 0;
    border: none;
    color: #000;
    position: relative
}

.ui.button.btn-cta:after {
    content: '\e876';
    font-family: linearicons-free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: auto;
    height: auto;
    box-shadow: none;
    opacity: 1;
    z-index: 1;
    position: absolute;
    top: calc(50% - 8px);
    right: 0;
    -webkit-transform: translatey(0) translatex(0);
    -moz-transform: translatey(0) translatex(0);
    -ms-transform: translatey(0) translatex(0);
    -o-transform: translatey(0) translatex(0);
    transform: translatey(0) translatex(0);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.ui.button.btn-cta.reversed:after {
    content: '\e875';
    font-family: linearicons-free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    right: auto;
    z-index: 1;
    -webkit-transform: translatey(0) translatex(0);
    -moz-transform: translatey(0) translatex(0);
    -ms-transform: translatey(0) translatex(0);
    -o-transform: translatey(0) translatex(0);
    transform: translatey(0) translatex(0);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.ui.button.btn-cta:active,
.ui.button.btn-cta:focus,
.ui.button.btn-cta:hover,
.ui.button.btn-cta:visited {
    background: 0 0
}

.ui.button.btn-cta:active:after,
.ui.button.btn-cta:focus:after,
.ui.button.btn-cta:hover:after,
.ui.button.btn-cta:visited:after {
    opacity: 1;
    -webkit-transform: translatey(0) translatex(3px);
    -moz-transform: translatey(0) translatex(3px);
    -ms-transform: translatey(0) translatex(3px);
    -o-transform: translatey(0) translatex(3px);
    transform: translatey(0) translatex(3px)
}

.ui.button.btn-cta:active.reversed:after,
.ui.button.btn-cta:focus.reversed:after,
.ui.button.btn-cta:hover.reversed:after,
.ui.button.btn-cta:visited.reversed:after {
    opacity: 1;
    -webkit-transform: translatey(0) translatex(-3px);
    -moz-transform: translatey(0) translatex(-3px);
    -ms-transform: translatey(0) translatex(-3px);
    -o-transform: translatey(0) translatex(-3px);
    transform: translatey(0) translatex(-3px)
}

.ui.button.btn-cta.primary {
    color: #983cc9
}

.ui.button.btn-cta.primary:active,
.ui.button.btn-cta.primary:focus,
.ui.button.btn-cta.primary:hover,
.ui.button.btn-cta.primary:visited {
    color: #983cc9
}

.ui.button.btn-cta.secondary {
    color: #00a9e0
}

.ui.button.btn-cta.secondary:active,
.ui.button.btn-cta.secondary:focus,
.ui.button.btn-cta.secondary:hover,
.ui.button.btn-cta.secondary:visited {
    color: #05b5ef
}

.ui.button.validate .loader:after {
    border-color: #fff transparent transparent
}

.ui.button.validate i.checkmark {
    display: none;
    position: absolute;
    top: 50%;
    color: #fff;
    left: 50%;
    margin: 0;
    opacity: 1;
    font-size: 15px;
    text-align: center;
    z-index: 1000;
    -webkit-transform: translatex(-50%) translatey(-50%);
    transform: translatex(-50%) translatey(-50%)
}

.ui.button.validate.validating {
    pointer-events: none
}

.ui.button.validate.validating .loader {
    display: block !important
}

.ui.button.validate.validating .loader:after {
    border-color: #fff transparent transparent !important
}

.ui.button.validate.validating .loader:before {
    border: .2em solid rgba(0, 0, 0, .1) !important
}

.ui.button.validate.validating span {
    opacity: 0
}

.ui.button.validate.verified {
    background: green
}

.ui.button.validate.verified i.checkmark {
    display: block
}

.ui.button.validate.verified span {
    opacity: 0
}

.ui.button.validate.verified:hover i.checkmark {
    display: none
}

.ui.button.validate.verified:hover span {
    opacity: 1
}

.ui.button.add-to-cart .loader:after,
.ui.button.add-to-quote .loader:after {
    border-color: #fff transparent transparent
}

.ui.button.add-to-cart i.checkmark,
.ui.button.add-to-cart i.exclamation,
.ui.button.add-to-quote i.checkmark,
.ui.button.add-to-quote i.exclamation {
    position: absolute;
    top: 50%;
    color: #fff;
    left: 50%;
    margin: 0;
    font-size: 15px;
    text-align: center;
    opacity: 0;
    top: 5px;
    pointer-events: none;
    z-index: 1000;
    -webkit-transform: translatex(30px);
    -moz-transform: translatex(30px);
    -ms-transform: translatex(30px);
    -o-transform: translatex(30px);
    transform: translatex(30px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    font-family: montserrat;
    font-weight: 500
}

.ui.button.add-to-cart i.checkmark:before,
.ui.button.add-to-cart i.exclamation:before,
.ui.button.add-to-quote i.checkmark:before,
.ui.button.add-to-quote i.exclamation:before {
    font-family: icons;
    margin-right: 5px
}

.ui.button.add-to-cart.adding,
.ui.button.add-to-quote.adding {
    pointer-events: none;
    background: 0 0;
    border: none
}

.ui.button.add-to-cart.adding .loader,
.ui.button.add-to-quote.adding .loader {
    display: block
}

.ui.button.add-to-cart.adding span,
.ui.button.add-to-quote.adding span {
    opacity: 0
}

.ui.button.add-to-cart.successful,
.ui.button.add-to-quote.successful {
    background: 0 0;
    pointer-events: none;
    border: none
}

.ui.button.add-to-cart.successful:after,
.ui.button.add-to-quote.successful:after {
    display: none
}

.ui.button.add-to-cart.successful i.checkmark,
.ui.button.add-to-quote.successful i.checkmark {
    display: block;
    color: green;
    opacity: 1;
    -webkit-transform: translatex(-30px);
    -moz-transform: translatex(-30px);
    -ms-transform: translatex(-30px);
    -o-transform: translatex(-30px);
    transform: translatex(-30px)
}

.ui.button.add-to-cart.successful span,
.ui.button.add-to-quote.successful span {
    opacity: 0
}

.ui.button.add-to-cart.successful:hover span,
.ui.button.add-to-quote.successful:hover span {
    opacity: 1
}

.ui.button.add-to-cart.hidden,
.ui.button.add-to-quote.hidden {
    visibility: hidden
}

.ui.button.add-to-cart.error,
.ui.button.add-to-quote.error {
    background: 0 0;
    pointer-events: none;
    border: none
}

.ui.button.add-to-cart.error:after,
.ui.button.add-to-quote.error:after {
    display: none
}

.ui.button.add-to-cart.error i.exclamation,
.ui.button.add-to-quote.error i.exclamation {
    display: block;
    color: #983cc9;
    opacity: 1;
    -webkit-transform: translatex(-30px);
    -moz-transform: translatex(-30px);
    -ms-transform: translatex(-30px);
    -o-transform: translatex(-30px);
    transform: translatex(-30px)
}

.ui.button.add-to-cart.error span,
.ui.button.add-to-quote.error span {
    opacity: 0
}

.ui.button.add-to-cart.error:hover span,
.ui.button.add-to-quote.error:hover span {
    opacity: 1
}

.beckman-form {
    position: relative
}

.beckman-form .step-loader,
.beckman-form .ui.loader {
    display: none !important
}

.beckman-form .step-loader:after,
.beckman-form .ui.loader:after {
    border-color: #767676 transparent transparent !important
}

.beckman-form .step-loader:before,
.beckman-form .ui.loader:before {
    border: .2em solid rgba(0, 0, 0, .1) !important
}

.beckman-form.loading .step-loader.loader {
    display: block !important
}

.beckman-form.loading .form-container,
.beckman-form.loading .form-step {
    pointer-events: none !important;
    opacity: .3 !important
}

.beckman-form.loading .form-container *,
.beckman-form.loading .form-step * {
    pointer-events: none !important
}

.beckman-form .form-container,
.beckman-form .form-step {
    width: 100%;
    visibility: hidden;
    height: 0;
    pointer-events: none
}

.beckman-form .form-container>a,
.beckman-form .form-container>div,
.beckman-form .form-container>ul,
.beckman-form .form-step>a,
.beckman-form .form-step>div,
.beckman-form .form-step>ul {
    opacity: 0;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s
}

.beckman-form .form-container .ui.error.message,
.beckman-form .form-step .ui.error.message {
    opacity: 0;
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0s ease 0s !important;
    -moz-transition: all 0s ease 0s !important;
    -o-transition: all 0s ease 0s !important;
    transition: all 0s ease 0s !important
}

.beckman-form .form-container .bc-custom-message,
.beckman-form .form-step .bc-custom-message {
    position: relative;
    min-height: 1em;
    font-size: 1em;
    margin: 1em 0;
    background: #f8f8f9;
    padding: 1em 1.5em;
    line-height: 1.4285em;
    color: rgba(0, 0, 0, .87);
    -webkit-transition: opacity .1s ease, color .1s ease, background .1s ease, box-shadow .1s ease;
    transition: opacity .1s ease, color .1s ease, background .1s ease, box-shadow .1s ease;
    border-radius: .28571429rem;
    box-shadow: 0 0 0 1px rgba(34, 36, 38, .22) inset, 0 0 0 0 transparent
}

.beckman-form .form-container .bc-custom-message.error,
.beckman-form .form-step .bc-custom-message.error {
    background-color: #fff6f6;
    color: #9f3a38;
    box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent;
    opacity: 0;
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0s ease 0s !important;
    -moz-transition: all 0s ease 0s !important;
    -o-transition: all 0s ease 0s !important;
    transition: all 0s ease 0s !important
}

.beckman-form .form-container .bc-custom-message.show,
.beckman-form .form-step .bc-custom-message.show {
    opacity: 1;
    height: auto;
    margin: 1em 0;
    padding: 1em 1.5em;
    pointer-events: all
}

.beckman-form .form-container input[readonly],
.beckman-form .form-step input[readonly] {
    border: none;
    padding: 0;
    color: #000;
    display: inline-block;
    cursor: pointer;
    outline: 0
}

.beckman-form .form-container input[readonly]:focus,
.beckman-form .form-step input[readonly]:focus {
    outline: 0
}

.beckman-form .form-container input:read-only,
.beckman-form .form-step input:read-only {
    border: none;
    padding: 0;
    color: #000;
    display: inline-block;
    cursor: pointer;
    outline: 0
}

.beckman-form .form-container input:read-only:focus,
.beckman-form .form-step input:read-only:focus {
    outline: 0
}

.beckman-form .form-container input:-moz-read-only,
.beckman-form .form-step input:-moz-read-only {
    border: none;
    padding: 0;
    color: #000;
    display: inline-block;
    cursor: pointer;
    outline: 0
}

.beckman-form .form-container input:-moz-read-only:focus,
.beckman-form .form-step input:-moz-read-only:focus {
    outline: 0
}

.beckman-form .form-container.active,
.beckman-form .form-step.active {
    visibility: visible;
    height: auto;
    pointer-events: all
}

.beckman-form .form-container.active>a:nth-child(1),
.beckman-form .form-container.active>div:nth-child(1),
.beckman-form .form-container.active>ul:nth-child(1),
.beckman-form .form-step.active>a:nth-child(1),
.beckman-form .form-step.active>div:nth-child(1),
.beckman-form .form-step.active>ul:nth-child(1) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease 50ms;
    -moz-transition: all .6s ease 50ms;
    -o-transition: all .6s ease 50ms;
    transition: all .6s ease 50ms
}

.beckman-form .form-container.active>a:nth-child(2),
.beckman-form .form-container.active>div:nth-child(2),
.beckman-form .form-container.active>ul:nth-child(2),
.beckman-form .form-step.active>a:nth-child(2),
.beckman-form .form-step.active>div:nth-child(2),
.beckman-form .form-step.active>ul:nth-child(2) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .1s;
    -moz-transition: all .6s ease .1s;
    -o-transition: all .6s ease .1s;
    transition: all .6s ease .1s
}

.beckman-form .form-container.active>a:nth-child(3),
.beckman-form .form-container.active>div:nth-child(3),
.beckman-form .form-container.active>ul:nth-child(3),
.beckman-form .form-step.active>a:nth-child(3),
.beckman-form .form-step.active>div:nth-child(3),
.beckman-form .form-step.active>ul:nth-child(3) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .15s;
    -moz-transition: all .6s ease .15s;
    -o-transition: all .6s ease .15s;
    transition: all .6s ease .15s
}

.beckman-form .form-container.active>a:nth-child(4),
.beckman-form .form-container.active>div:nth-child(4),
.beckman-form .form-container.active>ul:nth-child(4),
.beckman-form .form-step.active>a:nth-child(4),
.beckman-form .form-step.active>div:nth-child(4),
.beckman-form .form-step.active>ul:nth-child(4) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .2s;
    -moz-transition: all .6s ease .2s;
    -o-transition: all .6s ease .2s;
    transition: all .6s ease .2s
}

.beckman-form .form-container.active>a:nth-child(5),
.beckman-form .form-container.active>div:nth-child(5),
.beckman-form .form-container.active>ul:nth-child(5),
.beckman-form .form-step.active>a:nth-child(5),
.beckman-form .form-step.active>div:nth-child(5),
.beckman-form .form-step.active>ul:nth-child(5) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .25s;
    -moz-transition: all .6s ease .25s;
    -o-transition: all .6s ease .25s;
    transition: all .6s ease .25s
}

.beckman-form .form-container.active>a:nth-child(6),
.beckman-form .form-container.active>div:nth-child(6),
.beckman-form .form-container.active>ul:nth-child(6),
.beckman-form .form-step.active>a:nth-child(6),
.beckman-form .form-step.active>div:nth-child(6),
.beckman-form .form-step.active>ul:nth-child(6) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .3s;
    -moz-transition: all .6s ease .3s;
    -o-transition: all .6s ease .3s;
    transition: all .6s ease .3s
}

.beckman-form .form-container.active>a:nth-child(7),
.beckman-form .form-container.active>div:nth-child(7),
.beckman-form .form-container.active>ul:nth-child(7),
.beckman-form .form-step.active>a:nth-child(7),
.beckman-form .form-step.active>div:nth-child(7),
.beckman-form .form-step.active>ul:nth-child(7) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .35s;
    -moz-transition: all .6s ease .35s;
    -o-transition: all .6s ease .35s;
    transition: all .6s ease .35s
}

.beckman-form .form-container.active>a:nth-child(8),
.beckman-form .form-container.active>div:nth-child(8),
.beckman-form .form-container.active>ul:nth-child(8),
.beckman-form .form-step.active>a:nth-child(8),
.beckman-form .form-step.active>div:nth-child(8),
.beckman-form .form-step.active>ul:nth-child(8) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .4s;
    -moz-transition: all .6s ease .4s;
    -o-transition: all .6s ease .4s;
    transition: all .6s ease .4s
}

.beckman-form .form-container.active>a:nth-child(9),
.beckman-form .form-container.active>div:nth-child(9),
.beckman-form .form-container.active>ul:nth-child(9),
.beckman-form .form-step.active>a:nth-child(9),
.beckman-form .form-step.active>div:nth-child(9),
.beckman-form .form-step.active>ul:nth-child(9) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .45s;
    -moz-transition: all .6s ease .45s;
    -o-transition: all .6s ease .45s;
    transition: all .6s ease .45s
}

.beckman-form .form-container.active>a:nth-child(10),
.beckman-form .form-container.active>div:nth-child(10),
.beckman-form .form-container.active>ul:nth-child(10),
.beckman-form .form-step.active>a:nth-child(10),
.beckman-form .form-step.active>div:nth-child(10),
.beckman-form .form-step.active>ul:nth-child(10) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .5s;
    -moz-transition: all .6s ease .5s;
    -o-transition: all .6s ease .5s;
    transition: all .6s ease .5s
}

.beckman-form .form-container.active>a:nth-child(11),
.beckman-form .form-container.active>div:nth-child(11),
.beckman-form .form-container.active>ul:nth-child(11),
.beckman-form .form-step.active>a:nth-child(11),
.beckman-form .form-step.active>div:nth-child(11),
.beckman-form .form-step.active>ul:nth-child(11) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .55s;
    -moz-transition: all .6s ease .55s;
    -o-transition: all .6s ease .55s;
    transition: all .6s ease .55s
}

.beckman-form .form-container.active>a:nth-child(12),
.beckman-form .form-container.active>div:nth-child(12),
.beckman-form .form-container.active>ul:nth-child(12),
.beckman-form .form-step.active>a:nth-child(12),
.beckman-form .form-step.active>div:nth-child(12),
.beckman-form .form-step.active>ul:nth-child(12) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .6s;
    -moz-transition: all .6s ease .6s;
    -o-transition: all .6s ease .6s;
    transition: all .6s ease .6s
}

.beckman-form .form-container.active>a:nth-child(13),
.beckman-form .form-container.active>div:nth-child(13),
.beckman-form .form-container.active>ul:nth-child(13),
.beckman-form .form-step.active>a:nth-child(13),
.beckman-form .form-step.active>div:nth-child(13),
.beckman-form .form-step.active>ul:nth-child(13) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .65s;
    -moz-transition: all .6s ease .65s;
    -o-transition: all .6s ease .65s;
    transition: all .6s ease .65s
}

.beckman-form .form-container.active>a:nth-child(14),
.beckman-form .form-container.active>div:nth-child(14),
.beckman-form .form-container.active>ul:nth-child(14),
.beckman-form .form-step.active>a:nth-child(14),
.beckman-form .form-step.active>div:nth-child(14),
.beckman-form .form-step.active>ul:nth-child(14) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .7s;
    -moz-transition: all .6s ease .7s;
    -o-transition: all .6s ease .7s;
    transition: all .6s ease .7s
}

.beckman-form .form-container.active>a:nth-child(15),
.beckman-form .form-container.active>div:nth-child(15),
.beckman-form .form-container.active>ul:nth-child(15),
.beckman-form .form-step.active>a:nth-child(15),
.beckman-form .form-step.active>div:nth-child(15),
.beckman-form .form-step.active>ul:nth-child(15) {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all .6s ease .75s;
    -moz-transition: all .6s ease .75s;
    -o-transition: all .6s ease .75s;
    transition: all .6s ease .75s
}

.beckman-form .form-container.active.error .ui.error.message,
.beckman-form .form-step.active.error .ui.error.message {
    opacity: 1;
    height: auto;
    margin: 1em 0;
    padding: 1em 1.5em;
    pointer-events: all;
    max-width: 100%
}

.beckman-form .form-container .success,
.beckman-form .form-step .success {
    display: none
}

.beckman-form .form-container .form-step-btns,
.beckman-form .form-step .form-step-btns {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.two-fields {
    display: flex;
    flex-direction: row;
    width: 100%
}

.two-fields .input-group:nth-child(1) {
    margin-right: 15px
}

.three-fields {
    display: flex;
    flex-direction: row;
    width: 100%
}

.three-fields .input-group {
    margin-right: 15px
}

.three-fields .input-group:last-child {
    margin-right: 0
}

.input-group {
    position: relative;
    margin-bottom: 30px;
    max-width: 400px
}

.input-group.with-button {
    display: flex;
    flex-direction: row
}

.input-group.with-button input {
    border-radius: 4px 0 0 4px
}

.input-group.with-button:before {
    right: 72px !important
}

.input-group.with-button span {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 4px 4px 0;
    width: 60px;
    min-width: 60px;
    cursor: pointer;
    background: #983cc9;
    color: #fff
}

.input-group.with-button span.show,
.input-group.with-button span:hover {
    background: #d5d5d5;
    color: #5d5d5d
}

.input-group input {
    font-size: 18px;
    padding: 14px 10px 4px 15px;
    display: block;
    line-height: 1.4;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    border: solid #797979 1px;
    box-shadow: none
}

.input-group input:focus {
    outline: 0
}

.input-group label {
    font-family: proximanovalight, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 24px;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 10px;
    -webkit-transition: .2s ease all;
    -moz-transition: .2s ease all;
    -o-transition: .2s ease all;
    transition: .2s ease all
}

.input-group label.required:after {
    content: '*';
    color: red;
    font-size: 1.143rem
}

.input-group label.verified:after {
    content: '*';
    color: red
}

.input-group input:focus {
    border-color: #00a9e0
}

.input-group input:focus~label,
.input-group input:valid~label,
.input-group:-webkit-autofill~label {
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    transform: translatey(-15px);
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #00a9e0;
    background: #fff;
    background-color: #fff;
    background-image: none;
    padding: 0 10px;
    letter-spacing: .5px;
    line-height: 12px
}

.input-group.field.error .ui.dropdown,
.input-group.field.error input {
    background: 0 0;
    border-color: #983cc9
}

.input-group.field.error label {
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    transform: translatey(-15px);
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #983cc9;
    background: #fff;
    padding: 0 10px;
    letter-spacing: .5px;
    line-height: 12px
}

input[type=email],
input[type=number],
input[type=password],
input[type=text],
textarea {
    font-size: 18px;
    padding: 10px 15px;
    display: block;
    line-height: 1.4;
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
    border: solid #797979 1px
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=text]:focus,
textarea:focus {
    outline: 0
}

input[type=email] label,
input[type=number] label,
input[type=password] label,
input[type=text] label,
textarea label {
    font-family: proximanovalight, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 24px;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 10px;
    -webkit-transition: .2s ease all;
    -moz-transition: .2s ease all;
    -o-transition: .2s ease all;
    transition: .2s ease all
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=text]:focus,
textarea:focus {
    border-color: #00a9e0
}

input[type=email]:-webkit-autofill~label,
input[type=email]:focus~label,
input[type=email]:valid~label,
input[type=number]:-webkit-autofill~label,
input[type=number]:focus~label,
input[type=number]:valid~label,
input[type=password]:-webkit-autofill~label,
input[type=password]:focus~label,
input[type=password]:valid~label,
input[type=text]:-webkit-autofill~label,
input[type=text]:focus~label,
input[type=text]:valid~label,
textarea:-webkit-autofill~label,
textarea:focus~label,
textarea:valid~label {
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    transform: translatey(-15px);
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #00a9e0;
    background: #fff;
    background-color: #fff;
    background-image: none;
    padding: 0 10px;
    letter-spacing: .5px;
    line-height: 12px
}

.input-group input:focus~label {
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    transform: translatey(-15px);
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #00a9e0;
    background: #fff;
    background-color: #fff;
    background-image: none;
    padding: 0 10px;
    letter-spacing: .5px;
    line-height: 12px
}

.input-group textarea:focus~label {
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    transform: translatey(-15px);
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #00a9e0;
    background: #fff;
    background-color: #fff;
    background-image: none;
    padding: 0 10px;
    letter-spacing: .5px;
    line-height: 12px
}

.input-group input:valid~label {
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    transform: translatey(-15px);
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #00a9e0;
    background: #fff;
    background-color: #fff;
    background-image: none;
    padding: 0 10px;
    letter-spacing: .5px;
    line-height: 12px
}

.input-group textarea:valid~label {
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    transform: translatey(-15px);
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #00a9e0;
    background: #fff;
    background-color: #fff;
    background-image: none;
    padding: 0 10px;
    letter-spacing: .5px;
    line-height: 12px
}

.password-requirements {
    margin: 0;
    height: 0;
    background-color: #f5f5f5;
    position: relative;
    border-radius: 4px;
    padding: 10px;
    opacity: 0 !important;
    -webkit-transition: opacity 0s ease 0s !important;
    -moz-transition: opacity 0s ease 0s !important;
    -o-transition: opacity 0s ease 0s !important;
    transition: opacity 0s ease 0s !important
}

.password-requirements.show {
    margin-top: -15px;
    margin-bottom: 30px;
    height: auto;
    opacity: 1 !important;
    -webkit-transition: opacity .2s ease 0s !important;
    -moz-transition: opacity .2s ease 0s !important;
    -o-transition: opacity .2s ease 0s !important;
    transition: opacity .2s ease 0s !important
}

.password-requirements:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f5f5f5;
    position: absolute;
    top: -10px;
    left: 25px
}

.password-requirements .strength-meter {
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    position: relative
}

.password-requirements .strength-meter .password-requiremnts-label {
    color: #983cc9;
    font-size: 12px;
    width: 75px;
    float: left
}

.password-requirements .strength-meter .password-requiremnts-label i,
.password-requirements .strength-meter .password-requiremnts-label span {
    width: 12px;
    height: 12px;
    fill: #983cc9
}

.password-requirements .strength-meter .meter-bar {
    position: relative;
    flex: 1
}

.password-requirements .strength-meter .meter-bar #string-marker {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #983cc9;
    position: absolute;
    bottom: -13px;
    left: -5px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.password-requirements .strength-meter .meter-bar ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 3px;
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center
}

.password-requirements .strength-meter .meter-bar ul li {
    flex: 1;
    background: #e2e2e8;
    height: 5px;
    margin-right: 5px;
    position: relative
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(1):before {
    content: 'fair';
    position: absolute;
    top: -29px;
    width: 100%;
    color: #983cc9;
    text-align: center;
    font-size: 12px;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(1).active {
    background: #dceec7
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(1).active:before {
    opacity: 0;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0)
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(1).selected {
    background: #dceec7
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(1).selected:before {
    opacity: 1;
    -webkit-transform: translatey(10px);
    -moz-transform: translatey(10px);
    -ms-transform: translatey(10px);
    -o-transform: translatey(10px);
    transform: translatey(10px)
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(2):before {
    content: 'good';
    position: absolute;
    top: -29px;
    width: 100%;
    color: #983cc9;
    text-align: center;
    font-size: 12px;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(2).active {
    background: #88c541
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(2).active:before {
    opacity: 0;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0)
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(2).selected {
    background: #88c541
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(2).selected:before {
    opacity: 1;
    -webkit-transform: translatey(10px);
    -moz-transform: translatey(10px);
    -ms-transform: translatey(10px);
    -o-transform: translatey(10px);
    transform: translatey(10px)
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(3) {
    margin-right: 0
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(3):before {
    content: 'strong';
    position: absolute;
    top: -29px;
    width: 100%;
    color: #983cc9;
    text-align: center;
    font-size: 12px;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(3).active {
    background: #297e2e
}

.password-requirements .strength-meter .meter-bar ul li:nth-child(3).active:before {
    opacity: 1;
    -webkit-transform: translatey(10px);
    -moz-transform: translatey(10px);
    -ms-transform: translatey(10px);
    -o-transform: translatey(10px);
    transform: translatey(10px)
}

.password-requirements.validated .password-requiremnts-label-success {
    display: block
}

.password-requirements.validated .password-requiremnts-label {
    display: none;
    margin-top: 10px
}

.password-requirements .requirements-list {
    list-style: none;
    margin: 0;
    background-color: #fff;
    margin-top: 15px;
    border-radius: 6px;
    padding: 10px 15px
}

.password-requirements .requirements-list li {
    font-size: 1em;
    line-height: 1.75em;
    position: relative;
    width: 100%;
    color: #656565
}

.password-requirements .requirements-list li:nth-child(1) {
    font-weight: 700
}

.password-requirements .requirements-list li:nth-child(1):before {
    display: none
}

.password-requirements .requirements-list li i,
.password-requirements .requirements-list li span {
    width: 12px;
    height: 12px;
    color: #69b316;
    opacity: 0;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5)
}

.password-requirements .requirements-list li:before {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    top: 8px;
    left: 0;
    border-radius: 200px;
    background-color: #656565;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.password-requirements .requirements-list li.validated {
    color: #69b316;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.password-requirements .requirements-list li.validated:before {
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
    opacity: 0
}

.password-requirements .requirements-list li.validated i,
.password-requirements .requirements-list li.validated span {
    fill: #983cc9;
    opacity: 1;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.form-stepper {
    margin: 30px 0 70px 0;
    width: 100%
}

.form-stepper .step-description {
    font-family: proximanovalight, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 18px;
    color: #000
}

.form-stepper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    margin: 30px 0
}

.form-stepper ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    flex: 1
}

.form-stepper ul li span {
    position: absolute;
    top: calc(100%   10px);
    width: auto;
    min-width: 200px;
    left: 0;
    text-align: center;
    transform: translatex(-50%)
}

.form-stepper ul li:before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 500px;
    background: #2d2d2d
}

.form-stepper ul li:after {
    content: '';
    display: block;
    width: calc(100% - 14px);
    height: 1px;
    background: #2d2d2d
}

.form-stepper ul li:last-child {
    width: 14px;
    max-width: 14px
}

.form-stepper ul li:last-child:after {
    display: none
}

.form-stepper ul li.active:before {
    background: #983cc9
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px
}

.switch input {
    display: none
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s
}

input:checked .slider {
    background-color: #2196f3
}

input:focus .slider {
    box-shadow: 0 0 1px #2196f3
}

input:checked .slider:before {
    -webkit-transform: translatex(26px);
    -ms-transform: translatex(26px);
    transform: translatex(26px)
}

.slider.round {
    border-radius: 34px
}

.slider.round:before {
    border-radius: 50%
}

.beckman-radio-group {
    list-style: none;
    padding: 0;
    margin: 0
}

.beckman-radio-group [type=radio]:checked,
.beckman-radio-group [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px
}

.beckman-radio-group [type=radio]:checked label,
.beckman-radio-group [type=radio]:not(:checked) label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000
}

.beckman-radio-group [type=radio]:checked label:before,
.beckman-radio-group [type=radio]:not(:checked) label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #9e9e9e;
    border-radius: 100%;
    background: #fff
}

.beckman-radio-group [type=radio]:checked label:after,
.beckman-radio-group [type=radio]:not(:checked) label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #983cc9;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.beckman-radio-group [type=radio]:not(:checked) label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.beckman-radio-group [type=radio]:checked label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.beckman-box-radio-group {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px
}

.beckman-box-radio-group li {
    display: flex;
    flex: 1;
    padding: 5px
}

.beckman-box-radio-group li label {
    width: 100%
}

.beckman-box-radio-group [type=radio]:checked,
.beckman-box-radio-group [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px
}

.beckman-box-radio-group [type=radio]:checked label,
.beckman-box-radio-group [type=radio]:not(:checked) label {
    position: relative;
    padding: 0;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    border: solid 2px #dedede;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.beckman-box-radio-group [type=radio]:checked label span,
.beckman-box-radio-group [type=radio]:not(:checked) label span {
    display: block;
    width: 100%
}

.beckman-box-radio-group [type=radio]:checked label span.title,
.beckman-box-radio-group [type=radio]:not(:checked) label span.title {
    color: #983cc9;
    text-align: center;
    text-transform: uppercase
}

.beckman-box-radio-group [type=radio]:checked label span.details,
.beckman-box-radio-group [type=radio]:not(:checked) label span.details {
    text-align: center
}

.beckman-box-radio-group [type=radio]:checked label span.button,
.beckman-box-radio-group [type=radio]:not(:checked) label span.button {
    color: #983cc9;
    background: #fff
}

.beckman-box-radio-group [type=radio]:checked label span.button:hover,
.beckman-box-radio-group [type=radio]:not(:checked) label span.button:hover {
    color: #fff;
    background: #983cc9
}

.beckman-box-radio-group [type=radio]:checked label:after,
.beckman-box-radio-group [type=radio]:not(:checked) label:after {
    content: "\f00c";
    font-family: icons;
    width: 20px;
    height: 20px;
    color: #fff;
    background: #983cc9;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    justify-content: center;
    align-items: center;
    font-size: 12px
}

.beckman-box-radio-group [type=radio]:not(:checked) label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.beckman-box-radio-group [type=radio]:checked label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.beckman-box-radio-group [type=radio]:checked label {
    border: solid 2px #983cc9
}

.beckman-box-radio-group [type=radio]:checked label span.button {
    color: #fff !important;
    background: #983cc9 !important
}

.ui.dropdown .item.address span,
.ui.dropdown .text span {
    display: block
}

.ui.dropdown {
    padding: 10px 15px;
    display: block;
    line-height: 1.4;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    border: solid #797979 1px;
    z-index: 0;
    min-height: 47px !important;
    display: flex;
    flex-direction: row;
    align-items: center
}

.ui.dropdown input {
    margin: 8px 34px 8px 14px !important;
    width: calc(100% - 50px) !important;
    padding: 0 !important
}

.ui.dropdown .menu {
    z-index: 10
}

.ui.dropdown .default.text {
    color: #000 !important
}

.ui.dropdown.inline {
    border: none;
    width: auto;
    padding: 0
}

.global-search-spacer {
    display: flex;
    width: 300px;
    height: 100%
}

#dashboard-site-search input,
#dx-navigation input {
    border: none;
    outline: 0;
    -webkit-appearance: none
}

#dashboard-site-search.searching .global-search,
#dx-navigation.searching .global-search {
    width: 70%;
    transform: translatex(-20%);
    -webkit-transition: all .5s cubic-bezier(0, 0, .12, .99) .2s;
    -moz-transition: all .5s cubic-bezier(0, 0, .12, .99) .2s;
    -o-transition: all .5s cubic-bezier(0, 0, .12, .99) .2s;
    transition: all .5s cubic-bezier(0, 0, .12, .99) .2s
}

#dashboard-site-search.searching .global-search .lnr-cross,
#dx-navigation.searching .global-search .lnr-cross {
    display: block
}

#dashboard-site-search.searching .global-search .awesomplete ul.show,
#dx-navigation.searching .global-search .awesomplete ul.show {
    opacity: 1;
    pointer-events: all
}

.global-search {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 300px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
    font-size: 16px;
    -webkit-transition: all .5s cubic-bezier(0, 0, .12, .99);
    -moz-transition: all .5s cubic-bezier(0, 0, .12, .99);
    -o-transition: all .5s cubic-bezier(0, 0, .12, .99);
    transition: all .5s cubic-bezier(0, 0, .12, .99)
}

.global-search ::-ms-clear {
    display: none
}

.global-search ::-webkit-search-cancel-button,
.global-search ::-webkit-search-decoration,
.global-search ::-webkit-search-results-button,
.global-search ::-webkit-search-results-decoration {
    display: none
}

.global-search .lnr-magnifier {
    position: relative;
    left: 0;
    color: #983cc9;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.global-search .lnr-cross {
    position: relative;
    right: 0;
    display: none;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.global-search .loader {
    position: absolute;
    display: initial;
    left: initial;
    right: 20px;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.global-search .loader.show {
    opacity: 1
}

.global-search .global-search-input-container {
    width: calc(100% - 40px);
    margin: 0 10px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.global-search .global-search-input-container .twitter-typeahead {
    width: 100%
}

.global-search .global-search-input-container .twitter-typeahead .typeahead {
    width: 100%;
    height: 70px;
    font-size: 16px
}

.global-search .global-search-input-container .twitter-typeahead .typeahead-label {
    content: 'suggested searches';
    width: 100%;
    color: #983cc9;
    padding: 10px 0 5px 0;
    display: block;
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    -webkit-transition: opacity .3s ease .3s;
    -moz-transition: opacity .3s ease .3s;
    -o-transition: opacity .3s ease .3s;
    transition: opacity .3s ease .3s
}

.global-search .global-search-input-container .twitter-typeahead .tt-menu {
    background: #fff;
    position: relative;
    top: 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .18039216);
    list-style: none;
    margin: 0;
    padding: 0 25px 15px 25px;
    display: block;
    width: calc(100%   40px);
    left: -20px !important
}

.global-search .global-search-input-container .twitter-typeahead .tt-menu .tt-suggestion {
    padding: 10px 0;
    font-family: proximanovalight, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    position: relative;
    z-index: 1;
    cursor: pointer
}

.global-search .global-search-input-container .twitter-typeahead .tt-menu .tt-suggestion:before {
    content: "\e86f";
    width: 100%;
    color: grey;
    padding-right: 10px;
    font-family: linearicons-free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased
}

.global-search .global-search-input-container .twitter-typeahead .tt-menu .tt-suggestion:after {
    background: #f8f8f8;
    box-shadow: 0 2px 2px #d4d4d4;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: -10px;
    width: calc(100%   20px);
    height: 100%;
    opacity: 0;
    content: '';
    z-index: -1;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.global-search .global-search-input-container .twitter-typeahead .tt-menu .tt-suggestion .tt-highlight {
    color: #983cc9;
    background: 0 0
}

.global-search .global-search-input-container .twitter-typeahead .tt-menu .tt-suggestion.tt-cursor:after,
.global-search .global-search-input-container .twitter-typeahead .tt-menu .tt-suggestion:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.global-search .global-search-input-container ul.animated-search-suggestions {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    pointer-events: none;
    opacity: 1;
    font-size: 16px;
    -webkit-transition: opacity .4s ease .4s;
    -moz-transition: opacity .4s ease .4s;
    -o-transition: opacity .4s ease .4s;
    transition: opacity .4s ease .4s
}

.global-search .global-search-input-container ul.animated-search-suggestions.hide {
    opacity: 0;
    -webkit-transition: opacity .4s ease 0s;
    -moz-transition: opacity .4s ease 0s;
    -o-transition: opacity .4s ease 0s;
    transition: opacity .4s ease 0s
}

.global-search .global-search-input-container ul.animated-search-suggestions li {
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
    color: #63666a;
    height: 24px;
    font-size: 1em;
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease
}

.global-search .global-search-input-container ul.animated-search-suggestions li.active {
    opacity: 1;
    -webkit-transition: opacity .5s ease .5s;
    -moz-transition: opacity .5s ease .5s;
    -o-transition: opacity .5s ease .5s;
    transition: opacity .5s ease .5s
}

.global-search .awesomplete {
    width: calc(100% - 40px);
    height: 100%;
    position: relative
}

.global-search .awesomplete #global-search-input {
    height: 100%;
    border: none;
    width: 100%;
    padding: 0 0 0 30px;
    box-shadow: none;
    outline: 0;
    -webkit-appearance: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.global-search .awesomplete span {
    display: none
}

.global-search .awesomplete ul {
    background: #fff;
    position: relative;
    top: 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .18039216);
    list-style: none;
    margin: 0;
    padding: 0 25px;
    display: block;
    opacity: 0;
    pointer-events: none
}

.global-search .awesomplete ul:before {
    content: 'suggested searches';
    width: 100%;
    color: #983cc9;
    padding: 10px 0 5px 0;
    display: block;
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    -webkit-transition: opacity .3s ease .3s;
    -moz-transition: opacity .3s ease .3s;
    -o-transition: opacity .3s ease .3s;
    transition: opacity .3s ease .3s
}

.global-search .awesomplete ul li {
    padding: 10px 0;
    font-family: proximanovalight, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    position: relative;
    z-index: 1;
    cursor: pointer
}

.global-search .awesomplete ul li:before {
    content: "\e86f";
    width: 100%;
    color: grey;
    padding-right: 10px;
    font-family: linearicons-free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased
}

.global-search .awesomplete ul li:after {
    background: #f8f8f8;
    box-shadow: 0 2px 2px #d4d4d4;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: -10px;
    width: calc(100%   20px);
    height: 100%;
    opacity: 0;
    content: '';
    z-index: -1;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.global-search .awesomplete ul li mark {
    color: #983cc9;
    background: 0 0
}

.global-search .awesomplete ul li:hover:after,
.global-search .awesomplete ul li[aria-selected=true]:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.global-search:after {
    content: '';
    width: 100%;
    height: 6px;
    background: #983cc9;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.bec-pagination-ui {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bec-pagination-ui .pagination-end,
.bec-pagination-ui .pagination-next,
.bec-pagination-ui .pagination-previous,
.bec-pagination-ui .pagination-start {
    float: left;
    color: #bdbdbd;
    font-size: 12px;
    cursor: pointer
}

.bec-pagination-ui .pagination-end:hover i,
.bec-pagination-ui .pagination-next:hover i,
.bec-pagination-ui .pagination-previous:hover i,
.bec-pagination-ui .pagination-start:hover i {
    color: #983cc9
}

.bec-pagination-ui .pagination-end i,
.bec-pagination-ui .pagination-start i {
    font-size: 12px;
    margin: 0;
    padding: 0;
    width: 4px
}

.bec-pagination-ui .pagination-next i,
.bec-pagination-ui .pagination-previous i {
    font-size: 12px;
    margin: 0;
    padding: 0;
    width: 35px;
    display: flex;
    justify-content: center
}

.bec-pagination-ui ul {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0
}

.bec-pagination-ui ul li {
    float: left;
    padding: 0 5px;
    cursor: pointer;
    pointer-events: all
}

.bec-pagination-ui ul li:hover {
    color: #983cc9
}

.bec-pagination-ui ul li.active {
    color: #983cc9;
    pointer-events: none
}

.breadcrumbs {
    padding-top: 15px;
    padding-bottom: 15px
}

.breadcrumbs a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: lighter
}

.breadcrumbs a i {
    color: #983cc9;
    margin: 0 !important
}

.breadcrumbs span {
    font-size: 14px;
    font-weight: lighter;
    color: #000
}

.breadcrumbs span.breadcrumb-divider {
    color: #000
}

.share-menu {
    float: right;
    width: auto;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    font-size: 14px;
    font-weight: lighter
}

.share-menu span {
    margin-right: 0
}

.share-menu span.dark-text {
    color: #000
}

.share-menu span.light-text {
    color: #fff
}

.share-menu a {
    margin-right: 7px;
    display: inline-block;
    font-size: 20px
}

.share-menu a span {
    width: 20px;
    height: 20px;
    color: #979797;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.share-menu a:hover span {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    color: #983cc9
}

.share-menu a:last-child {
    margin-right: 0
}

.share-menu a .dark-text {
    color: #000
}

.share-menu a .light-text {
    color: #fff
}

.product-side-menu {
    position: fixed;
    right: 0;
    top: calc(50% - 115px);
    width: 60px;
    z-index: 3
}

.product-side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.product-side-menu ul li {
    display: flex;
    align-items: center;
    width: 220px;
    cursor: pointer
}

.product-side-menu ul li .product-side-menu-text {
    font-size: 14px;
    color: #000;
    letter-spacing: .5px;
    line-height: 18px;
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2);
    border-bottom: solid 1px #d5d5d5;
    width: 100%;
    padding: 20px 60px 20px 20px;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -ms-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.product-side-menu ul li .product-side-menu-text span {
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.product-side-menu ul li svg {
    width: 26px;
    height: 26px;
    position: absolute;
    right: 15px
}

.product-side-menu ul li:hover .product-side-menu-text {
    background: #f8f8f8
}

.product-side-menu ul li:first-child .product-side-menu-text {
    border-top-left-radius: 4px
}

.product-side-menu ul li:last-child .product-side-menu-text {
    border-bottom-left-radius: 4px;
    border: none
}

.product-side-menu ul:hover li .product-side-menu-text {
    -webkit-transform: translatex(-160px);
    -moz-transform: translatex(-160px);
    -ms-transform: translatex(-160px);
    -o-transform: translatex(-160px);
    transform: translatex(-160px)
}

.product-side-menu ul:hover li .product-side-menu-text span {
    opacity: 1;
    -webkit-transition: opacity .4s ease .2s;
    -moz-transition: opacity .4s ease .2s;
    -o-transition: opacity .4s ease .2s;
    transition: opacity .4s ease .2s
}

.page-navigation.dot-style {
    position: fixed;
    right: 15px;
    top: 50vh;
    z-index: 99;
    font-size: 50px
}

.page-navigation.dot-style ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.page-navigation.dot-style ul li {
    background: grey;
    background: #fff;
    border: solid 1px #c5c5c5;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    margin-bottom: 14px;
    cursor: pointer;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.page-navigation.dot-style ul li:hover {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    background: #983cc9;
    border: solid 1px #983cc9
}

.two-column-navigation .two-column-body-container {
    width: calc(100% - 210px);
    margin-right: 30px;
    float: left;
    background: #fff;
    border: 1px solid #d5d5d5;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .09);
    padding: 0 40px
}

.two-column-navigation .page-navigation.text-style {
    width: 180px;
    float: left;
    padding: 0
}

.two-column-navigation .page-navigation.text-style ul {
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.two-column-navigation .page-navigation.text-style ul.fixed {
    position: fixed;
    width: 180px;
    opacity: 1;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.two-column-navigation .page-navigation.text-style ul.passed {
    position: fixed;
    width: 180px;
    opacity: 0;
    -webkit-transition: opacity .1s ease;
    -moz-transition: opacity .1s ease;
    -o-transition: opacity .1s ease;
    transition: opacity .1s ease
}

.two-column-navigation .page-navigation.text-style ul li {
    cursor: pointer;
    padding: 20px 20px;
    background: #fff;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .17);
    font-size: 16px;
    font-weight: lighter;
    font-family: proximanovalight, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    color: #000;
    line-height: 24px;
    margin-bottom: 10px;
    position: relative
}

.two-column-navigation .page-navigation.text-style ul li span {
    z-index: 3
}

.two-column-navigation .page-navigation.text-style ul li.active {
    color: #fff;
    background: #2d2d2d
}

.two-column-navigation .page-navigation.text-style ul li.active:after {
    -webkit-transform: scalex(0);
    -moz-transform: scalex(0);
    -ms-transform: scalex(0);
    -o-transform: scalex(0);
    transform: scalex(0)
}

.two-column-navigation .page-navigation.text-style ul li.active:hover {
    color: #fff
}

.two-column-navigation .page-navigation.text-style ul li.active:hover:after {
    -webkit-transform: scalex(0);
    -moz-transform: scalex(0);
    -ms-transform: scalex(0);
    -o-transform: scalex(0);
    transform: scalex(0)
}

.two-column-navigation .page-navigation.text-style ul li:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #2d2d2d;
    -webkit-transform: scalex(0);
    -moz-transform: scalex(0);
    -ms-transform: scalex(0);
    -o-transform: scalex(0);
    transform: scalex(0);
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transform-origin: left
}

.two-column-navigation .page-navigation.text-style ul li:hover {
    color: #983cc9
}

.two-column-navigation .page-navigation.text-style ul li:hover:after {
    -webkit-transform: scalex(.03);
    -moz-transform: scalex(.03);
    -ms-transform: scalex(.03);
    -o-transform: scalex(.03);
    transform: scalex(.03)
}

@media only screen and (max-width:767px) {
    .two-column-navigation .two-column-body-container {
        width: 100%;
        margin-right: 0
    }

    .two-column-navigation .page-navigation.text-style {
        display: none
    }
}

.bc-modal.full-width .content-container {
    max-width: none
}

.bc-modal.multi-download-modal .content {
    padding: 5px 15px 35px 15px !important
}

.bc-modal .close {
    top: 1.0535rem !important;
    right: 1rem !important;
    color: rgba(0, 0, 0, .87) !important
}

.bc-modal .content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 55px 15px 35px 15px !important
}

.bc-modal .content-container {
    width: 100%;
    max-width: 390px;
    margin: 0 auto
}

.ui.dimmer.modals {
    z-index: 99999
}

.card-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    font-size: 1.5em;
    font-family: montserrat, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-weight: 350;
    line-height: 1
}

.card-tag span {
    display: inline-block;
    padding: 10px 25px 11px 20px;
    min-width: 86px;
    color: #fff;
    background-color: #983cc9
}

.card-tag--left {
    text-align: left
}

.card-tag--center {
    text-align: center
}

.card-tag--right {
    text-align: right
}

.card-tag.hide {
    visibility: hidden
}

.image .type-video:before,
.media-teaser .type-video:before,
.media-teaser-tall .type-video:before,
.video-hero .type-video:before {
    content: '';
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    z-index: 1;
    width: 80px;
    height: 80px;
    border: solid 2px #fff;
    border-radius: 1000px;
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    pointer-events: none
}

.image .type-video:after,
.media-teaser .type-video:after,
.media-teaser-tall .type-video:after,
.video-hero .type-video:after {
    content: '';
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 15px);
    z-index: 1;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    pointer-events: none
}

.image .type-video.hide-play-button:after,
.image .type-video.hide-play-button:before,
.media-teaser .type-video.hide-play-button:after,
.media-teaser .type-video.hide-play-button:before,
.media-teaser-tall .type-video.hide-play-button:after,
.media-teaser-tall .type-video.hide-play-button:before,
.video-hero .type-video.hide-play-button:after,
.video-hero .type-video.hide-play-button:before {
    display: none
}

.image .type-video:hover:before,
.media-teaser .type-video:hover:before,
.media-teaser-tall .type-video:hover:before,
.video-hero .type-video:hover:before {
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9)
}

.image .type-video:hover:after,
.media-teaser .type-video:hover:after,
.media-teaser-tall .type-video:hover:after,
.video-hero .type-video:hover:after {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.image .type-video img,
.media-teaser .type-video img,
.media-teaser-tall .type-video img,
.video-hero .type-video img {
    opacity: .8
}

.image .type-video .play-button,
.media-teaser .type-video .play-button,
.media-teaser-tall .type-video .play-button,
.video-hero .type-video .play-button {
    display: none !important
}

.thumb.type-video:before {
    content: '';
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 18px);
    z-index: 1;
    width: 30px;
    height: 30px;
    border: solid 2px #fff;
    border-radius: 1000px;
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease
}

.thumb.type-video:after {
    content: '';
    position: absolute;
    left: calc(50% - 3px);
    top: calc(50% - 8px);
    z-index: 1;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease
}

#vidyard-overlay-wrapper {
    z-index: 10000
}

.address-card .details-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px
}

.address-card .details-container .details {
    flex: 1
}

.address-card .details-container .details:nth-child(1) {
    margin-right: 30px
}

.adjustable-two-column-display {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    overflow-y: hidden !important;
    position: relative
}

.adjustable-two-column-display .content-container {
    width: 100%;
    max-width: 1100px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 0
}

.adjustable-two-column-display .content-container .adjustable-two-column-display-content {
    width: 50%;
    max-width: 550px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column
}

.adjustable-two-column-display .content-container .adjustable-two-column-display-content .padding {
    padding-left: 50px
}

.adjustable-two-column-display .content-container .adjustable-two-column-display-image {
    width: 50%;
    max-width: 550px;
    max-height: 550px;
    height: 100%;
    display: flex;
    align-self: flex-start
}

.adjustable-two-column-display .content-container .adjustable-two-column-display-image.ui.segment {
    margin: 0 !important;
    padding: 0 !important
}

.adjustable-two-column-display .image-alignment {
    flex-direction: row-reverse
}

.adjustable-two-column-display .ui .image {
    max-height: 550px !important;
    object-fit: cover !important;
    width: 100% !important
}

.adjustable-two-column-display-image ui segment {
    margin: 0 0;
    padding: 0 0
}

.lazyload.adjustable-two-column-display-image.ui.segment.active {
    margin: 0 0 !important;
    padding: 0 0 !important
}

.lazyload.adjustable-two-column-display-content.ui.segment.active {
    padding-bottom: 0 !important
}

@media only screen and (max-width:767px) {
    .adjustable-two-column-display .content-container {
        flex-direction: column-reverse;
        max-width: 550px
    }

    .adjustable-two-column-display .content-container .adjustable-two-column-display-content {
        padding: 24px !important;
        width: 100%;
        height: 50%
    }

    .adjustable-two-column-display .content-container .adjustable-two-column-display-image {
        height: auto;
        width: 100%
    }

    .adjustable-two-column-display ui container {
        margin-left: 0 !important;
        margin-right: 0 !important
    }
}

.announcement-hero {
    display: flex;
    justify-content: center
}

.announcement-hero .content-container {
    width: 100%;
    max-width: 1000px
}

.announcement-hero .wysiwyg-content {
    padding: 20px
}

.announcement-hero.warning .wysiwyg-content {
    background-color: #fff8db
}

.announcement-hero.warning .wysiwyg-content * {
    color: #b58105
}

.announcement-hero.alert .wysiwyg-content {
    background-color: #ffe8e6
}

.announcement-hero.alert .wysiwyg-content * {
    color: #db2828
}

.announcement-hero.highlight .wysiwyg-content {
    background-color: #dff0ff
}

.announcement-hero.highlight .wysiwyg-content * {
    color: #2185d0
}

.photo-hero-carousel {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    font-family: montserrat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.photo-hero-carousel.short .item-container {
    height: 300px;
    font-size: .6em
}

.photo-hero-carousel.short .item-container .banner-details {
    font-size: 1.4em;
    line-height: 1.6em
}

.photo-hero-carousel .item {
    display: -ms-flexbox;
    justify-content: center
}

.photo-hero-carousel .item.content-right .item-container {
    align-items: flex-end;
    text-align: right
}

.photo-hero-carousel .item.content-right .item-container .banner-details,
.photo-hero-carousel .item.content-right .item-container .banner-heading,
.photo-hero-carousel .item.content-right .item-container .xl-banner-heading {
    text-align: right
}

@media only screen and (max-width:767px) {
    .photo-hero-carousel .item.content-right .item-container {
        align-items: center;
        text-align: center;
        padding-right: 0
    }
}

.photo-hero-carousel .item.content-left .item-container {
    align-items: flex-start;
    text-align: left
}

.photo-hero-carousel .item.content-left .item-container .banner-details,
.photo-hero-carousel .item.content-left .item-container .banner-heading,
.photo-hero-carousel .item.content-left .item-container .xl-banner-heading {
    text-align: left
}

@media only screen and (max-width:767px) {
    .photo-hero-carousel .item.content-left .item-container {
        align-items: center;
        text-align: center;
        padding-right: 0
    }
}

.photo-hero-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background: #fff;
    box-shadow: -1px 3px 2px 0 rgba(0, 0, 0, .1);
    overflow: initial
}

.photo-hero-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 500px;
    border: solid 1px #979797;
    margin: 4px
}

.photo-hero-carousel .owl-dots .owl-dot.active {
    background: #979797;
    border: solid 1px #979797
}

.photo-hero-carousel .owl-nav {
    position: absolute;
    top: calc(50% - 25px);
    left: 4%;
    height: 50px;
    width: calc(100% - 8%);
    display: flex;
    justify-content: space-between
}

.photo-hero-carousel .owl-nav .owl-next,
.photo-hero-carousel .owl-nav .owl-prev {
    color: #fff;
    font-size: 60px
}

.photo-hero-carousel .owl-item.active .banner-details,
.photo-hero-carousel .owl-item.active .banner-heading,
.photo-hero-carousel .owl-item.active .xl-banner-heading {
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    opacity: 1
}

.photo-hero-carousel .owl-item.active a.ui.button {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0)
}

.photo-hero-carousel .item-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    font-size: 14px;
    padding: 20px
}

@media only screen and (max-width:767px) {
    .photo-hero-carousel .item-container {
        font-size: 1em
    }
}

.photo-hero-carousel .item-container .banner-details {
    color: #fff;
    font-weight: 300;
    width: 70%;
    margin: 15px 0 25px 0;
    line-height: normal;
    opacity: 0;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.photo-hero-carousel .item-container .banner-details.left {
    text-align: left
}

.photo-hero-carousel .item-container .banner-details.right {
    text-align: right
}

@media only screen and (max-width:767px) {
    .photo-hero-carousel .item-container .banner-details {
        font-size: 1.2em
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-carousel .item-container .banner-details {
        font-size: 1.875em
    }
}

.photo-hero-carousel .item-container .xl-banner-heading {
    font-weight: 300;
    font-style: normal;
    width: 70%;
    font-stretch: normal;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 50px rgba(0, 0, 0, .37);
    line-height: normal;
    opacity: 0;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .4s;
    -moz-transition: all .3s ease .4s;
    -o-transition: all .3s ease .4s;
    transition: all .3s ease .4s
}

.photo-hero-carousel .item-container .xl-banner-heading.left {
    text-align: left
}

.photo-hero-carousel .item-container .xl-banner-heading.right {
    text-align: right
}

@media only screen and (max-width:767px) {
    .photo-hero-carousel .item-container .xl-banner-heading {
        font-size: 3.438em;
        letter-spacing: 1.4px
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-carousel .item-container .xl-banner-heading {
        font-size: 6.25em;
        letter-spacing: 3px
    }
}

.photo-hero-carousel .item-container .banner-heading {
    font-weight: 300;
    font-style: normal;
    width: 70%;
    font-stretch: normal;
    text-align: center;
    color: #fff;
    line-height: normal;
    opacity: 0;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

.photo-hero-carousel .item-container .banner-heading.left {
    text-align: left
}

.photo-hero-carousel .item-container .banner-heading.right {
    text-align: right
}

@media only screen and (max-width:767px) {
    .photo-hero-carousel .item-container .banner-heading {
        font-size: 2.563em;
        letter-spacing: .7px
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-carousel .item-container .banner-heading {
        font-size: 3.563em;
        letter-spacing: .5px
    }
}

.photo-hero-carousel .item-container a.ui.button {
    opacity: 0;
    -webkit-transform: translatey(20px);
    -moz-transform: translatey(20px);
    -ms-transform: translatey(20px);
    -o-transform: translatey(20px);
    transform: translatey(20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.photo-hero-carousel .item-container .ui.button.primary {
    background-color: #983cc9;
    color: #fff
}

.photo-hero-carousel .item-container .ui.button.primary.left {
    float: left
}

.photo-hero-carousel .item-container .ui.button.primary.right {
    float: right
}

.photo-hero-carousel .item-container .carousel-button-wrapper {
    width: auto
}

.video-hero-carousel {
    width: 100% !important;
    margin: auto !important;
    padding: 0 !important;
    font-family: montserrat;
    justify-content: center;
    align-items: center;
    text-align: center
}

.video-hero-carousel .ui horizontal segments {
    margin: auto !important;
    border: none !important
}

.video-hero-carousel .ui container {
    margin: auto !important
}

.video-hero-carousel .video-overlay {
    position: absolute;
    z-index: 3;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0
}

.video-hero-carousel .item-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 0;
    position: absolute
}

@media only screen and (max-width:767px) {
    .video-hero-carousel .item-container {
        font-size: 1em;
        padding: 0
    }
}

.video-hero-carousel .item-container .vidyard-player-container {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important
}

@media only screen and (max-width:1024px) {
    .video-hero-carousel .item-container .vidyard-player-container {
        display: none !important
    }
}

@media only screen and (min-width:1024px) {
    .video-hero-carousel .item-container .vidyard-player-container {
        display: block !important
    }
}

@media screen and (min-width:0 \0) {
    .video-hero-carousel .item-container {
        display: block !important;
        top: 0;
        left: 0;
        height: auto !important;
        max-height: 100% !important;
        overflow: hidden !important
    }

    .video-hero-carousel .banner-arrow {
        bottom: 0;
        left: 0
    }
}

.video-hero-carousel .vidyard-player-embed {
    width: 100% !important;
    left: 0;
    right: 0;
    top: 0;
    visibility: hidden
}

.video-hero-carousel #vid {
    height: 100% !important;
    object-fit: cover !important;
    position: relative;
    width: 100vw !important
}

@media only screen and (max-width:1024px) {
    .video-hero-carousel #vid {
        display: none !important
    }
}

@media only screen and (min-width:1024px) {
    .video-hero-carousel #vid {
        display: block !important
    }
}

.video-hero-carousel #video-hero-thumbnail {
    display: none
}

@media only screen and (max-width:1024px) {
    .video-hero-carousel #video-hero-thumbnail {
        display: block;
        width: 100%;
        height: 400px
    }
}

@media only screen and (min-width:1024px) and (max-height:1366px) {
    .video-hero-carousel #video-hero-thumbnail {
        display: none;
        width: 100%;
        height: 400px
    }
}

.video-hero-carousel #video-tag-thumbnail {
    display: none;
    height: 100vh !important
}

@media only screen and (max-width:1024px) {
    .video-hero-carousel #video-tag-thumbnail {
        display: block;
        width: 100%;
        height: 400px
    }
}

@media only screen and (min-width:1024px) and (max-height:1366px) {
    .video-hero-carousel #video-tag-thumbnail {
        display: none;
        width: 100%;
        height: 400px
    }
}

.video-hero-carousel .main-item-container {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.video-hero-carousel .heading-container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    justify-content: center
}

.video-hero-carousel .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.video-hero-carousel .content-container .content-alignment {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    width: 100%
}

@media only screen and (max-width:767px) {
    .video-hero-carousel .content-container .content-alignment {
        width: 100%
    }
}

.video-hero-carousel .content-container .content-alignment .content-max-width {
    width: 55%
}

@media only screen and (max-width:767px) {
    .video-hero-carousel .content-container .content-alignment .content-max-width {
        width: 100%
    }
}

.video-hero-carousel .xl-banner-heading {
    font-weight: 300;
    font-style: normal;
    width: 90%;
    font-stretch: normal;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 50px rgba(0, 0, 0, .37);
    line-height: normal;
    z-index: 5;
    font-size: 6.25em;
    font-family: montserrat;
    letter-spacing: 3px;
    margin: 0 auto;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .4s;
    -moz-transition: all .3s ease .4s;
    -o-transition: all .3s ease .4s;
    transition: all .3s ease .4s
}

.video-hero-carousel .xl-banner-heading.left {
    text-align: left
}

.video-hero-carousel .xl-banner-heading.right {
    text-align: right
}

@media only screen and (max-width:767px) {
    .video-hero-carousel .xl-banner-heading {
        font-size: 3.438em;
        letter-spacing: 1.4px
    }
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (-webkit-min-device-pixel-ratio:1) {
    .video-hero-carousel .xl-banner-heading {
        font-size: 4.5em;
        letter-spacing: 1.4px
    }
}

.video-hero-carousel .banner-heading {
    font-weight: 300;
    font-style: normal;
    width: 90%;
    font-stretch: normal;
    text-align: center;
    color: #fff;
    line-height: normal;
    font-family: montserrat;
    margin: 0 auto;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

.video-hero-carousel .banner-heading.left {
    text-align: left
}

.video-hero-carousel .banner-heading.right {
    text-align: right
}

@media only screen and (max-width:767px) {
    .video-hero-carousel .banner-heading {
        font-size: 2.563em;
        letter-spacing: .7px
    }
}

@media only screen and (min-width:768px) {
    .video-hero-carousel .banner-heading {
        font-size: 3em;
        letter-spacing: .5px
    }
}

.video-hero-carousel .banner-details {
    color: #fff;
    font-weight: 300;
    width: 90%;
    line-height: normal;
    font-family: montserrat;
    margin: 0 auto;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.video-hero-carousel .banner-details.left {
    text-align: left
}

.video-hero-carousel .banner-details.right {
    text-align: right
}

@media only screen and (max-width:767px) {
    .video-hero-carousel .banner-details {
        font-size: 1.2em
    }
}

@media only screen and (min-width:768px) {
    .video-hero-carousel .banner-details {
        font-size: 1.575em
    }
}

.video-hero-carousel .ui.button {
    z-index: 5;
    position: relative;
    -webkit-transform: translatey(20px);
    -moz-transform: translatey(20px);
    -ms-transform: translatey(20px);
    -o-transform: translatey(20px);
    transform: translatey(20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.video-hero-carousel .ui.button.primary {
    background-color: #983cc9;
    color: #fff
}

.video-hero-carousel .ui.button.primary.left {
    float: left
}

.video-hero-carousel .ui.button.primary.right {
    float: right
}

.video-hero-carousel .carousel-button-wrapper {
    width: 90%;
    margin: 0 auto
}

.video-hero-carousel .carousel-button-wrapper a {
    margin-top: -20px
}

.video-hero-carousel .banner-arrow {
    font-family: montserrat;
    font-size: 3em;
    position: absolute;
    bottom: 0;
    width: 100%;
    bottom: 20px
}

@media only screen and (max-width:767px) {
    .video-hero-carousel .banner-arrow {
        display: none !important
    }
}

.video-hero-carousel .banner-arrow a span {
    color: #fff;
    cursor: pointer;
    font-size: .8em
}

.video-hero-carousel .banner-arrow a span:hover {
    cursor: pointer;
    font-size: .8em
}

.stick-to-column {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    padding-left: 2.8572em;
    padding-right: 2.8572em
}

.flex-right {
    align-items: flex-end
}

.flex-left {
    align-items: flex-start
}

.flex-center {
    align-items: center
}

@media only screen and (max-width:768px) {
    .video-hero-carousel .heading-container {
        padding: 0 40px
    }

    .video-hero-carousel .heading-container .banner-heading {
        margin-left: 0;
        margin-right: 0
    }

    .video-hero-carousel .heading-container .banner-details,
    .video-hero-carousel .heading-container .banner-heading {
        margin-left: 0;
        margin-right: 0
    }
}

@media only screen and (max-width:768px) {
    .video-hero-carousel .heading-container .banner-heading.font-size-mobile {
        font-size: 2.3em !important
    }
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: .7;
    background-color: #fff;
    z-index: 99;
    text-align: center
}

#loading-image {
    position: absolute;
    top: 200px;
    left: 480px;
    z-index: 100
}

.blog.breadcrumbs {
    margin-bottom: 36px
}

.blog.breadcrumbs .blog-pagetitle a {
    margin: 50px 0 0;
    font-size: 36px;
    font-weight: 200;
    font-family: montserrat, sans-serif
}

.ui.segment.light-gray {
    background-color: #f8f8f8
}

.blog-landing-page .blog-post-subtitle {
    margin-top: 1rem
}

.blog-landing-page .cards {
    margin-bottom: 2rem
}

.blog-landing-page .pagination {
    display: flex;
    width: 100%;
    justify-content: center !important;
    flex-wrap: wrap
}

.blog-landing-page .pagination .results-count {
    width: 100%
}

.blog-landing-page #search-container.loading .filter-by {
    pointer-events: none;
    opacity: .3
}

.blog-landing-page #search-container.loading .search-body-header,
.blog-landing-page #search-container.loading .search-results {
    pointer-events: none;
    opacity: .3
}

.blog-landing-page #search-container.loading .loader {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important
}

#resultstop.loading .loader {
    display: block;
    top: 30em;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%) !important
}

@media screen and (max-width:768px) {
    #resultstop.loading .loader {
        left: 50%
    }
}

#resultstop.loading .blog-post-list {
    pointer-events: none;
    opacity: .3
}

@media screen and (max-width:768px) {
    #resultstop .bec-pagination-ui ul li {
        padding: 0 5px
    }
}

#resultstop .bec-pagination-ui .bc-disable {
    pointer-events: none
}

@media screen and (max-width:768px) {

    .blog-post-list,
    .ui.grid.blog-post-list {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .blog-post-list .column,
    .ui.grid.blog-post-list .column {
        padding: 1rem 0
    }

    .blog-post-list .cards,
    .ui.grid.blog-post-list .cards {
        margin-bottom: 0
    }

    .blog-post-list .cards .icon-card,
    .ui.grid.blog-post-list .cards .icon-card {
        -webkit-transform: translatey(-5px);
        -moz-transform: translatey(-5px);
        -ms-transform: translatey(-5px);
        -o-transform: translatey(-5px);
        transform: translatey(-5px)
    }

    .blog-post-list .cards .icon-card:after,
    .ui.grid.blog-post-list .cards .icon-card:after {
        opacity: 1
    }
}

.blog-post-tag-list {
    border: #000 solid;
    border-width: 1px 0;
    padding: 1rem 0 !important;
    margin: 1rem 0 !important
}

.blog-post-tag-list .tag-icon {
    font-size: 1.5rem
}

.blog-post-tag-list a {
    margin: 0 0
}

.blog-post-tag-list .ui.column span:not(:last-of-type):after {
    content: "|"
}

.blog-post-tag-list .share-container {
    padding: 0 !important;
    margin: auto
}

.blog-post-tag-list .share-container .share-menu {
    height: auto
}

.blog-post-header,
.ui.grid .row.blog-post-header {
    padding-top: 0;
    padding-bottom: 0;
    justify-content: flex-end;
    align-items: stretch;
    background-color: #811167;
    color: #fff
}

.blog-post-header.bg-purple,
.ui.grid .row.blog-post-header.bg-purple {
    background-color: #811167
}

.blog-post-header.bg-light-blue,
.ui.grid .row.blog-post-header.bg-light-blue {
    background-color: #00a9e0
}

.blog-post-header.bg-dark-gray,
.ui.grid .row.blog-post-header.bg-dark-gray {
    background-color: #474c55
}

.blog-post-header.bg-dark-blue,
.ui.grid .row.blog-post-header.bg-dark-blue {
    background-color: #006298
}

.blog-post-header.bg-green,
.ui.grid .row.blog-post-header.bg-green {
    background-color: #00927c
}

.blog-post-header.bg-black,
.ui.grid .row.blog-post-header.bg-black {
    background-color: #000
}

.blog-post-header .card-body,
.ui.grid .row.blog-post-header .card-body {
    width: 50%;
    max-width: 700px;
    float: right;
    padding: 36px 75px 35px 1rem
}

.blog-post-header .card-body .card-title,
.ui.grid .row.blog-post-header .card-body .card-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 75px;
    margin-top: 75px;
    color: #fff;
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-weight: 700
}

.blog-post-header .card-body .card-byline,
.ui.grid .row.blog-post-header .card-body .card-byline {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
    min-height: 1.5rem
}

.blog-post-header .card-body .card-byline .card-author,
.ui.grid .row.blog-post-header .card-body .card-byline .card-author {
    text-transform: uppercase;
    margin-right: 5px
}

.blog-post-header .card-body .card-byline .card-date,
.ui.grid .row.blog-post-header .card-body .card-byline .card-date {
    text-transform: uppercase;
    margin-left: 5px
}

.blog-post-header .card-body .card-byline .card-readtime,
.ui.grid .row.blog-post-header .card-body .card-byline .card-readtime {
    float: left;
    height: 30px;
    line-height: 30px
}

.blog-post-header .card-body .card-byline .share-container .share-menu,
.ui.grid .row.blog-post-header .card-body .card-byline .share-container .share-menu {
    height: 30px
}

.blog-post-header .card-body .card-summary,
.ui.grid .row.blog-post-header .card-body .card-summary {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.2
}

.blog-post-header .card-body .card-link,
.ui.grid .row.blog-post-header .card-body .card-link {
    color: #983cc9;
    margin-top: 20px
}

.blog-post-header .card-body .card-link a,
.ui.grid .row.blog-post-header .card-body .card-link a {
    color: #983cc9;
    padding-left: 0
}

.blog-post-header .card-image,
.ui.grid .row.blog-post-header .card-image {
    width: 50%;
    height: 100%;
    position: relative;
    float: right;
    max-height: 562px;
    overflow: hidden;
    line-height: 0
}

.blog-post-header .card-image img,
.ui.grid .row.blog-post-header .card-image img {
    width: 100%
}

.blog-post-header .card-image .card-bg,
.ui.grid .row.blog-post-header .card-image .card-bg {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 5
}

@media screen and (max-width:768px) {

    .blog-post-header,
    .ui.grid .row.blog-post-header {
        justify-content: flex-end
    }

    .blog-post-header .card-body,
    .ui.grid .row.blog-post-header .card-body {
        order: 2
    }

    .blog-post-header .card-body .card-byline,
    .ui.grid .row.blog-post-header .card-body .card-byline {
        text-align: center
    }

    .blog-post-header .card-body .card-title,
    .ui.grid .row.blog-post-header .card-body .card-title {
        text-align: center;
        margin-bottom: 29px
    }

    .blog-post-header .card-body .card-summary,
    .ui.grid .row.blog-post-header .card-body .card-summary {
        text-align: center
    }

    .blog-post-header .column.card-image,
    .ui.grid .row.blog-post-header .column.card-image {
        order: 1;
        height: auto;
        padding: 0 !important
    }

    .blog-post-header .column.card-image .card-bg,
    .ui.grid .row.blog-post-header .column.card-image .card-bg {
        width: auto
    }
}

.blog-card .play-overlay {
    display: none
}

.blog-card.camera-video .play-overlay {
    display: block;
    position: absolute;
    width: 75px;
    font-size: 75px;
    height: 75px;
    color: #ccc;
    margin: 0 calc(50% - 32.5px);
    top: calc(50% - 32.5px)
}

.blog-card .icon {
    display: block;
    position: absolute;
    background-color: #983cc9;
    height: 56px;
    width: 56px;
    color: #fff;
    line-height: 56px;
    text-align: center;
    z-index: 10;
    font-size: 26px
}

.blog-card .card-image {
    width: 100%;
    line-height: 0;
    position: relative;
    min-height: 1px
}

.blog-card .card-image img {
    width: 100%
}

.blog-card .card-body {
    padding: 30px
}

.blog-card .card-body .card-title {
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 24px;
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    text-transform: capitalize
}

.blog-card .card-body .card-byline {
    font-size: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 7px
}

.blog-card .card-body .card-byline .card-author {
    text-transform: uppercase;
    margin-right: 5px
}

.blog-card .card-body .card-byline .card-date {
    text-transform: uppercase;
    margin-left: 5px
}

.blog-card .card-body .card-byline .card-readtime {
    float: right
}

.blog-card .card-body .card-summary {
    margin: 20px 0;
    font-size: 16px;
    font-family: proximanova, montserrat, sans-serif;
    color: #000;
    line-height: 1.2
}

.blog-card .card-body .card-link {
    color: #983cc9;
    margin-top: 20px
}

.blog-card .card-body .card-link a {
    color: #983cc9;
    padding-left: 0;
    font-family: montserrat, sans-serif;
    font-size: 16px
}

.blog-card.search a {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #000
}

.blog-card.search a .card-body .card-tag-list {
    font-size: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
    border-top: 1px solid #ccc
}

.blog-card.search a .card-body .card-tag-list .tag-label {
    padding-right: 10px;
    color: #1e70bf
}

.bec-pagination-ui ul li {
    padding: 0 10px
}

.blog-landing-header {
    width: 100%;
    padding: 0 !important
}

.blog-landing-header .header-image {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-height: 365px;
    overflow: hidden;
    margin-bottom: -350px
}

.blog-landing-header .header-image img {
    width: 100%
}

.blog-landing-header .blog-post-list-header .blog-post-subtitle {
    color: #fff
}

.blog-landing-header .blog-post-list-header .blog-post-subtitle h1 {
    color: #fff;
    text-align: center
}

.blog-landing-header .blog-post-list-header .blog-post-grid {
    border: 1px solid #fff;
    background-color: #fff;
    margin-top: 0
}

.blog-landing-header .blog-post-list-header .blog-post-grid>.column {
    padding: 0
}

.blog-landing-header .blog-post-list-header .blog-post-grid>.column.half-height .blog-card {
    height: 50%
}

.blog-landing-header .blog-post-list-header .blog-post-grid>.column.half-height .blog-card .card-byline {
    margin-bottom: 3px
}

.blog-landing-header .blog-post-list-header .blog-post-grid>.column.half-height .blog-card .card-title {
    font-size: 24px;
    line-height: 1em
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card {
    border: 1px solid #fff;
    position: relative;
    height: 100%;
    overflow: auto
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card:hover {
    box-shadow: none !important;
    transform: none
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-image {
    height: 100%;
    overflow: hidden
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-image .card-bg {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 5
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 10;
    color: #fff
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body .card-byline {
    margin-top: 0;
    line-height: 1.5em;
    min-height: 18px;
    border-top: none
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body .card-byline .card-category {
    text-transform: uppercase
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body .card-byline .card-readtime {
    float: left;
    font-size: 14px
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body .card-title {
    margin-bottom: 0;
    line-height: 1.2em
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body .card-link {
    height: 0;
    clear: both;
    overflow: hidden;
    transition: all .5s cubic-bezier(0, 0, .12, .99) .2s
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body .card-link a {
    padding-left: 1.5em;
    color: #fff
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body:hover .card-link {
    color: #fff;
    height: 48px;
    transition: all .5s cubic-bezier(0, 0, .12, .99) .2s
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body:hover .card-link a {
    padding-left: 1.5em;
    color: #fff
}

.blog-landing-header .blog-post-list-header .blog-post-grid .blog-card .card-body:hover .card-link a:hover {
    color: rgba(0, 0, 0, .8)
}

@media screen and (max-width:768px) {
    .blog-landing-header .header-image {
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-height: 365px;
        overflow: hidden;
        margin-bottom: -350px
    }

    .blog-landing-header .header-image img {
        width: 100%
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid {
        border: 1px solid #fff;
        background-color: #fff;
        margin-top: 0
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column {
        padding: 0 !important
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-image {
        min-height: 175px
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-body {
        padding: 15px
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-body .card-byline {
        display: none;
        margin-bottom: 3px
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-body .card-byline .card-category {
        text-align: center
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-body .card-byline .card-readtime {
        text-align: center;
        float: none
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-body .card-title {
        font-size: 20px;
        line-height: 1em;
        text-align: center
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-body .card-link {
        color: #fff;
        height: 40px;
        margin-top: 10px;
        transition: all .5s cubic-bezier(0, 0, .12, .99) .2s;
        text-align: center
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-body .card-link a {
        padding: .5em;
        color: #fff
    }

    .blog-landing-header .blog-post-list-header .blog-post-grid>.wide.column .blog-card .card-body .card-link a:hover {
        color: rgba(0, 0, 0, .8)
    }
}

.image-menu-item {
    float: left
}

.primary-navigation.blog {
    height: auto
}

.primary-navigation.blog #dx-navigation .global-search-spacer {
    height: 70px
}

.primary-navigation.blog #dx-navigation .global-search {
    height: 70px;
    background-color: #fff;
    padding: 0 2rem
}

@media screen and (max-width:767px) {
    .primary-navigation.blog {
        height: 70px
    }
}

@media screen and (min-width:768px) {
    .primary-navigation.blog #dx-navigation>.menu-item {
        display: none !important
    }
}

.blog-search.search-page #mobile-filters {
    display: none !important
}

.blog-search.search-page #search-header {
    background-color: #fff
}

.blog-search.search-page #search-header:after {
    content: '';
    width: 100%;
    height: 6px;
    background: #983cc9;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.blog-search.search-page #search-header .container {
    height: 100px
}

.blog-search.search-page #search-header .container label.inline-search-input span #search-icon {
    color: #983cc9
}

.blog-search.search-page #search-header .container label.inline-search-input span.inline-search-input-container {
    border: none
}

.blog-search.search-page #search-container {
    width: 100% !important
}

.blog-search.search-page #search-container .search-left-rail {
    min-width: 0;
    width: auto
}

.blog-search.search-page #search-container .search-left-rail .filter-by {
    display: none !important
}

.blog-search.search-page #search-container .search-body {
    width: 100% !important
}

.blog-search.search-page #search-container .search-body .search-body-header {
    padding: inherit;
    width: 100% !important
}

.blog-search.search-page #search-container .search-body .search-body-header-left,
.blog-search.search-page #search-container .search-body .search-body-header-right {
    display: inline-block
}

.blog-search.search-page #search-container .search-body .search-body-header-left h3,
.blog-search.search-page #search-container .search-body .search-body-header-right h3 {
    font-size: 1.5em
}

.blog-search.search-page #search-container .search-body .search-results .item .content .title {
    color: #000
}

.blog-search.search-page #search-container .search-body .search-results .icon-card:after {
    transition: none
}

@media screen and (max-width:768px) {
    .search-page #search-container {
        padding-top: 0 !important
    }
}

.blog-post-subtitle {
    margin-top: 1rem;
    margin-bottom: -1rem
}

.blog-search-tag-list .blog-post-subtitle h3,
.stay-connected .blog-post-subtitle h3 {
    font-size: 1.5em;
    background: #fff;
    width: auto;
    display: inline-block;
    padding: 0;
    margin-left: -1rem;
    padding: 0 1rem 0 1rem
}

.blog-search-tag-list .blog-post-subtitle:after,
.stay-connected .blog-post-subtitle:after {
    content: '';
    width: 100%;
    height: 6px;
    background: #983cc9;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: -10;
    top: 2rem
}

.blog-small-search .blog-small-search-spacer {
    width: 100%;
    margin-top: 1rem;
    height: 5rem
}

.blog-small-search .small-search {
    width: 100%;
    padding-right: 0;
    position: relative
}

.blog-small-search .small-search .small-search-input-container {
    width: 100%
}

.blog-small-search .small-search .small-search-input-container form {
    margin-bottom: 1rem
}

.blog-small-search .small-search .small-search-input-container form #small-search-input {
    width: 100%;
    padding: 1rem
}

.blog-small-search .small-search .small-search-input-container form span#global-search-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #983cc9;
    font-size: 26px
}

@media screen and (max-width:768px) {
    .ui.grid.blog-small-search {
        margin: 0 !important;
        padding: 1rem
    }

    .ui.grid.blog-small-search .blog-small-search-spacer {
        display: none
    }

    .ui.grid.blog-small-search .small-search {
        padding: 0
    }

    .ui.grid.blog-small-search .small-search .small-search-input-container form {
        margin-bottom: 0
    }

    .ui.grid.blog-small-search .small-search .small-search-input-container form #small-search-input {
        width: 100%;
        padding: 1rem
    }
}

.stay-connected .group-links {
    list-style: none;
    height: 25px;
    padding-left: 0
}

@media screen and (max-width:768px) {
    .ui.container.stay-connected {
        margin: 0 !important
    }

    .ui.container.stay-connected .blog-post-subtitle {
        margin-left: 0 !important;
        margin-right: 1rem
    }

    .ui.container.stay-connected .group-links {
        list-style: none;
        height: 25px;
        padding-left: 0
    }
}

.blog-search-tag-list .blog-tag {
    display: inline-block;
    margin: 0 5px 10px 0;
    padding: 10px;
    background-color: #eee;
    border-radius: .28571429rem
}

@media screen and (max-width:768px) {
    .ui.container.blog-search-tag-list {
        margin-left: 0 !important
    }

    .ui.container.blog-search-tag-list .blog-post-subtitle {
        margin-left: 0;
        margin-right: 1rem
    }
}

.blog-search-tags .tag-filter-list {
    list-style: none;
    display: inline-block
}

.blog-search-tags .tag-filter-list .blog-search-tag {
    display: inline-block;
    padding: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: #ccc 1px solid;
    border-radius: .28571429rem;
    cursor: pointer
}

.blog-search-tags .tag-filter-list .blog-search-tag.selected {
    background-color: #983cc9;
    color: #fff;
    border-color: #fff
}

.blog-search-tags .tag-filter-list .blog-search-tag.hidden {
    display: none
}

.stand-alone.product-ordering .content-container {
    margin: auto
}

.stand-alone.product-ordering .content-container a {
    margin: auto
}

.blog-post-tag-list .allignfront {
    top: -4px;
    right: 6.4em !important
}

.enhanced-share.share-menu {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center
}

.blog-post-tag-list .enhanced-share.share-menu {
    background-color: #983cc9;
    padding: .7rem;
    border-radius: .25rem;
    color: #fff
}

.enhanced-share.share-menu .sharedialog {
    height: 24px;
    white-space: nowrap
}

.enhanced-share.share-menu .sharedialog .share-icon {
    height: 24px;
    width: 24px;
    vertical-align: middle;
    line-height: 26px
}

.enhanced-share.share-menu .sharedialog .share-icon svg {
    width: 20px;
    fill: #fff
}

.enhanced-share.share-menu .sharedialog span.share-label {
    margin-right: 0
}

.enhanced-share.share-menu .sharedialog:before {
    content: " ";
    height: 3.2em;
    width: 2em;
    display: flex;
    position: absolute;
    align-items: center;
    top: -.7em;
    left: -1em
}

.enhanced-share.share-menu .enhanced-share-container {
    position: absolute;
    z-index: 100;
    background-color: #fff;
    right: 1.2em;
    border: 1px solid #777;
    border-radius: .35rem;
    padding-right: 30px;
    padding-left: 30px;
    width: 195px
}

.enhanced-share.share-menu .enhanced-share-container .group-links {
    align-items: center;
    margin: auto;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: 0;
    padding-right: 0;
    height: 44px
}

.enhanced-share.share-menu .enhanced-share-container .group-links .image-menu-item {
    display: inline-flex;
    line-height: 25px
}

.enhanced-share.share-menu .enhanced-share-container .group-links .image-menu-item:not(:last-child) {
    margin-right: 11px
}

.enhanced-share.share-menu .enhanced-share-container:after {
    border-width: 7px 0 9px 12px;
    border-color: transparent #fff;
    content: "";
    position: absolute;
    right: -12px;
    left: auto;
    top: calc(50% - 6px);
    border-style: solid;
    display: block;
    width: 0
}

.enhanced-share.share-menu .enhanced-share-container:before {
    border-width: 8px 0 10px 14px;
    border-color: transparent #777;
    content: "";
    position: absolute;
    right: -14px;
    display: block;
    width: 0;
    border-style: solid;
    top: calc(50% - 7px)
}

.stay-conected-container .image-menu-item {
    padding-right: 11px
}

.clickable {
    cursor: pointer !important
}

.allignfront {
    top: -11px;
    align-self: center;
    right: 5.05em !important;
    border: 1px solid #979797 !important
}

.allignnext {
    top: 6px;
    align-self: center;
    right: 8.1em !important;
    border: 1px solid #979797 !important
}

.image-menu-item.social-icon-padding {
    padding-top: 20px;
    padding-right: 11px
}

.sharedialog:hover:not(.lnr-printer)~.enhanced-share-container {
    display: block !important
}

.enhanced-share-container:hover {
    display: block !important
}

.sharedialog:not(.blog-post-tag-list>.share-container>.share-menu>.sharedialog):hover .share-label {
    color: #ff1f30 !important;
    fill: #983cc9 !important
}

.sharedialog:not(.blog-post-tag-list>.share-container>.share-menu>.sharedialog):hover .share-icon svg {
    color: #ff1f30 !important;
    fill: #983cc9 !important
}

@media only screen and (max-width:767px) {
    .share-container {
        display: none !important
    }
}

@media screen and (min-width:0 \0) {
    .allignnext {
        top: 9px !important
    }

    .allignfront {
        top: -7px !important
    }

    .share-icon,
    share-label {
        vertical-align: middle;
        display: inline-block
    }
}

.box-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0
}

.box-links .box-links-container {
    width: 100%;
    max-width: 1400px
}

.box-links .box-links-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}

.box-links .box-links-container ul li {
    max-width: calc(100% / 4);
    position: relative;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    min-height: 100px;
    cursor: pointer;
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    border: solid 1px #fff;
    background: #621b4a
}

.box-links .box-links-container ul li a {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center
}

.box-links .box-links-container ul li h5 {
    color: #fff;
    margin: 0;
    font-weight: 300;
    position: absolute;
    opacity: 1;
    padding: 0 10px;
    width: 100%;
    text-align: center;
    -webkit-transition: all .3s ease .1s;
    -moz-transition: all .3s ease .1s;
    -o-transition: all .3s ease .1s;
    transition: all .3s ease .1s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.box-links .box-links-container ul li .content {
    color: #000;
    width: 100%;
    padding: 10px;
    pointer-events: none;
    z-index: 1;
    text-align: center
}

.box-links .box-links-container ul li .content p {
    margin: 0;
    opacity: 0;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease
}

.box-links .box-links-container ul li .content .cta {
    background: 0 0;
    border: none;
    color: #000;
    position: relative;
    margin-top: 10px;
    opacity: 0;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease
}

.box-links .box-links-container ul li .content .cta:after {
    content: '\e876';
    font-family: linearicons-free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    position: absolute;
    top: -11px;
    margin-left: 10px;
    z-index: 1;
    -webkit-transform: translatey(92%) translatex(-3px);
    -moz-transform: translatey(92%) translatex(-3px);
    -ms-transform: translatey(92%) translatex(-3px);
    -o-transform: translatey(92%) translatex(-3px);
    transform: translatey(92%) translatex(-3px);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.box-links .box-links-container ul li:after {
    content: '';
    position: absolute;
    background: #f5f5f5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease
}

.box-links .box-links-container ul li:hover {
    z-index: 3333
}

.box-links .box-links-container ul li:hover:after {
    -webkit-transform: scale(1.075);
    -moz-transform: scale(1.075);
    -ms-transform: scale(1.075);
    -o-transform: scale(1.075);
    transform: scale(1.075);
    opacity: 1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.box-links .box-links-container ul li:hover h5 {
    opacity: 0;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
    -webkit-transform: scale(.75);
    -moz-transform: scale(.75);
    -ms-transform: scale(.75);
    -o-transform: scale(.75);
    transform: scale(.75)
}

.box-links .box-links-container ul li:hover .content .cta,
.box-links .box-links-container ul li:hover .content p {
    opacity: 1;
    -webkit-transition: all .3s ease .1s;
    -moz-transition: all .3s ease .1s;
    -o-transition: all .3s ease .1s;
    transition: all .3s ease .1s
}

@media only screen and (max-width:767px) {
    .box-links .box-links-container ul li {
        max-width: calc(100% / 2)
    }
}

@media only screen and (max-width:1399px) {
    .box-links .box-links-container {
        max-width: calc(100% - 30px)
    }
}

.business-overview .image-container {
    padding-bottom: 1.875em !important
}

.business-overview .explore-top-padding {
    padding-top: 2em !important
}

.business-overview .static-menu-link {
    padding-top: 3.125em !important
}

.business-overview .static-menu-link p {
    font-size: 1em !important;
    font-family: proximanovasemibold !important;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 2.25em !important;
    letter-spacing: normal;
    text-align: left;
    word-break: normal
}

.business-overview .static-menu-link p .menu-link-item {
    color: #00a9e0 !important
}

.business-overview .static-menu-link p .bullet-link {
    padding-left: .795em;
    padding-right: .795em;
    color: #979797
}

.country-language-modal .close {
    top: 1.0535rem !important;
    right: 1rem !important;
    color: rgba(0, 0, 0, .87) !important
}

.country-language-modal .content {
    display: flex !important;
    justify-content: center
}

.country-language-modal .content-container {
    width: 100%;
    max-width: 390px
}

.country-language-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.country-language-selector .form {
    width: 100%;
    max-width: 390px
}

.contact-card {
    margin-bottom: 30px
}

.contact-card .contact-heading {
    font-family: montserrat;
    font-size: 1.25rem;
    font-weight: 300;
    color: #9e9e9e;
    line-height: 1.75rem;
    margin-bottom: 1.25rem
}

.contact-card .details .detail-item {
    display: flex;
    flex-direction: row
}

.contact-card .details .detail-item span {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 13px;
    color: #7f8fa4;
    flex: 1
}

.contact-card .details .detail-item span:nth-child(1) {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #354052;
    max-width: 60px
}

#contact-us #location-contact-wrapper,
#contact-us #office-location-wrapper {
    position: relative;
    min-height: 50px
}

#contact-us #location-contact-wrapper {
    margin-top: 50px
}

#contact-us .input-group {
    max-width: 100%
}

#contact-us .locations-title {
    margin-bottom: 4rem
}

.contact-us-page .beckman-form {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact-us-page h4,
.contact-us-page h5 {
    max-width: 400px
}

.contact-us-page .gdpr-user-consent {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%
}

.contact-us-page .gdpr-user-consent .beckman-radio-group {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row
}

.contact-us-page .gdpr-user-consent .beckman-radio-group li {
    flex: 1
}

.contact-us-page .ui.checkbox {
    max-width: 400px
}

.contact-us-page .center-recaptcha {
    display: flex;
    justify-content: center
}

.contact-us-page #inquiry-product-line {
    display: none;
    position: relative;
    margin-bottom: 30px;
    max-width: 400px;
    width: 100%
}

.contact-us-page #inquiry-product-line.active {
    display: block
}

.contact-us-page #beckman-address-form {
    display: none;
    max-width: 400px;
    width: 100%
}

.contact-us-page #beckman-address-form.active {
    display: block
}

.contact-us-page #inquiry-successful {
    display: none
}

.contact-us-page #inquiry-successful.active {
    display: block
}

.contact-us-page #inquiry-successful .wysiwyg-content h5 {
    max-width: 100%
}

.contact-us-page .account-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative
}

.contact-us-page .account-details .input-group {
    position: relative;
    margin-bottom: 30px;
    max-width: 400px;
    width: 100%
}

#beckman-address-form .input input[name=countryname] {
    opacity: .6
}

@media only screen and (min-width:320px) {
    #office-location-anchor .fax-number span.label {
        display: block
    }
}

@media only screen and (min-width:500px) {
    #office-location-anchor .fax-number span.label {
        display: inline
    }
}

.blog-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: montserrat, sans-serif;
    color: #000
}

.contributor-detail.summary {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.contributor-detail .headshot img {
    border-radius: 50%;
    height: auto;
    max-height: 153px;
    width: 153px;
    max-width: 100%
}

.contributor-detail .contributor-name {
    font-size: 1.2em;
    font-family: proximanova, montserrat, sans-serif;
    font-weight: bolder;
    text-transform: uppercase;
    color: #000
}

.contributor-detail .contributor-bio {
    font-size: 16px;
    padding: 16px 0;
    font-family: proximanova, montserrat, sans-serif;
    color: #000
}

.contributor-detail .contributor-link {
    font-size: 16px;
    text-transform: capitalize;
    color: #983cc9
}

.contributor-detail .contributor-link a {
    padding-left: 0
}

@media screen and (max-width:768px) {
    .contributor-detail .headshot {
        text-align: center
    }

    .contributor-detail .contributor-name {
        text-align: center
    }

    .contributor-detail .contributor-bio {
        text-align: center
    }

    .contributor-detail .contributor-link {
        text-align: center
    }
}

.contributor-list .blog-post-subtitle {
    margin-top: 2rem
}

.contributor-list .contributor-detail~.contributor-detail .contributor-name {
    border-top: 1px solid #000;
    padding-top: 20px
}

.double-showcase-feature {
    width: 100%;
    /*min-height: 450px;*/
    display: flex;
    justify-content: center;
    padding: 60px 0;
    overflow-y: hidden !important;
    position: relative
}

.double-showcase-feature .floating-bg {
    background-position: center !important;
    background-size: cover !important;
    position: absolute !important;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.double-showcase-feature .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.double-showcase-feature .content-container .intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px
}

.double-showcase-feature .content-container .intro-content h2,
.double-showcase-feature .content-container .intro-content h2 span.sub-header {
    color: #fff;
    text-align: center
}

.double-showcase-feature .content-container .feature-container {
    display: flex;
    flex-direction: row;
    width: 100%
}

.double-showcase-feature .content-container .feature-content {
    padding: 15px;
    flex: 1;
    display: flex
}

.double-showcase-feature.no-background .content-container .intro-content .sub-header,
.double-showcase-feature.no-background .content-container .intro-content h2 {
    color: #000 !important
}

.double-showcase-feature.no-background .floating-bg {
    background: #f8f8f8 !important
}

@media only screen and (max-width:767px) {
    .double-showcase-feature .content-container .feature-container {
        flex-direction: column
    }

    .double-showcase-feature .content-container .feature-content {
        flex: none
    }
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999
}

.nav-container.editor-mode {
    position: relative;
    z-index: 999
}

.hamburger {
    width: 20px;
    height: 10px;
    position: relative;
    cursor: pointer;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.hamburger span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

.hamburger span:nth-child(1) {
    top: 0
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 5px
}

.hamburger span:nth-child(4) {
    top: 10px
}

.mobile-nav-open .hamburger span:nth-child(1) {
    -webkit-transform: translatey(5px) scale(.1);
    -moz-transform: translatey(5px) scale(.1);
    -ms-transform: translatey(5px) scale(.1);
    -o-transform: translatey(5px) scale(.1);
    transform: translatey(5px) scale(.1);
    opacity: 0
}

.mobile-nav-open .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.mobile-nav-open .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.mobile-nav-open .hamburger span:nth-child(4) {
    -webkit-transform: translatey(-5px) scale(.1);
    -moz-transform: translatey(-5px) scale(.1);
    -ms-transform: translatey(-5px) scale(.1);
    -o-transform: translatey(-5px) scale(.1);
    transform: translatey(-5px) scale(.1);
    opacity: 0
}

.mobile-nav-open #mobile-search-btn {
    display: none
}

.primary-navigation {
    position: relative;
    height: 70px;
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.primary-navigation.hidden {
    -webkit-transform: translatey(-53px);
    -moz-transform: translatey(-53px);
    -ms-transform: translatey(-53px);
    -o-transform: translatey(-53px);
    transform: translatey(-53px)
}

.primary-navigation.blog.hidden {
    -webkit-transform: translatey(-70px);
    -moz-transform: translatey(-70px);
    -ms-transform: translatey(-70px);
    -o-transform: translatey(-70px);
    transform: translatey(-70px)
}

.primary-navigation:after {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #979797;
    pointer-events: none
}

.primary-navigation .mobile-bar {
    display: none;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    position: relative
}

.primary-navigation .mobile-bar .right-items {
    display: flex;
    flex-direction: row;
    align-items: center
}

.primary-navigation .mobile-bar a.mobile-logo {
    margin-right: auto
}

.primary-navigation .mobile-bar img {
    padding-left: 1rem
}

.primary-navigation .mobile-bar .mobile-menu-btn {
    margin-right: 1rem;
    cursor: pointer
}

.primary-navigation .mobile-bar .mobile-menu-btn:hover {
    color: #983cc9
}

.primary-navigation #dx-navigation {
    position: relative;
    height: 100%;
    background: #fff;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(1) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease .25s;
    -moz-transition: all .4s ease .25s;
    -o-transition: all .4s ease .25s;
    transition: all .4s ease .25s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(2) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease .2s;
    -moz-transition: all .4s ease .2s;
    -o-transition: all .4s ease .2s;
    transition: all .4s ease .2s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(3) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease .15s;
    -moz-transition: all .4s ease .15s;
    -o-transition: all .4s ease .15s;
    transition: all .4s ease .15s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(4) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease .1s;
    -moz-transition: all .4s ease .1s;
    -o-transition: all .4s ease .1s;
    transition: all .4s ease .1s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(5) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease 50ms;
    -moz-transition: all .4s ease 50ms;
    -o-transition: all .4s ease 50ms;
    transition: all .4s ease 50ms
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(6) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(7) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -50ms;
    -moz-transition: all .4s ease -50ms;
    -o-transition: all .4s ease -50ms;
    transition: all .4s ease -50ms
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(8) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -.1s;
    -moz-transition: all .4s ease -.1s;
    -o-transition: all .4s ease -.1s;
    transition: all .4s ease -.1s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(9) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -.15s;
    -moz-transition: all .4s ease -.15s;
    -o-transition: all .4s ease -.15s;
    transition: all .4s ease -.15s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(10) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -.2s;
    -moz-transition: all .4s ease -.2s;
    -o-transition: all .4s ease -.2s;
    transition: all .4s ease -.2s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(11) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -.25s;
    -moz-transition: all .4s ease -.25s;
    -o-transition: all .4s ease -.25s;
    transition: all .4s ease -.25s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(12) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -.3s;
    -moz-transition: all .4s ease -.3s;
    -o-transition: all .4s ease -.3s;
    transition: all .4s ease -.3s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(13) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -.35s;
    -moz-transition: all .4s ease -.35s;
    -o-transition: all .4s ease -.35s;
    transition: all .4s ease -.35s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(14) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -.4s;
    -moz-transition: all .4s ease -.4s;
    -o-transition: all .4s ease -.4s;
    transition: all .4s ease -.4s
}

.primary-navigation #dx-navigation.searching .menu-item:nth-child(15) {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .4s ease -.45s;
    -moz-transition: all .4s ease -.45s;
    -o-transition: all .4s ease -.45s;
    transition: all .4s ease -.45s
}

.primary-navigation #dx-navigation.searching #mobile-language-select-btn,
.primary-navigation #dx-navigation.searching #mobile-universal-nav {
    opacity: 0
}

.primary-navigation #dx-navigation .mobile-secondary-nav {
    width: 100%;
    display: none;
    border-bottom: 4px solid #d4d4d4;
    border-top: 4px solid #d4d4d4
}

.primary-navigation #dx-navigation .mobile-secondary-nav .menu-item {
    border: none !important
}

.primary-navigation #dx-navigation .mobile-secondary-nav a {
    color: #983cc9
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-link-solo {
    margin: 10px;
    font-family: montserrat;
    font-size: 1em;
    font-weight: 300;
    color: #983cc9;
    padding: 25px 10px;
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-link-solo:after {
    content: '\e876';
    font-family: linearicons-free;
    speak: none;
    color: #983cc9;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    position: absolute;
    right: 25px;
    left: initial;
    z-index: 1
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group {
    width: 100%;
    position: relative
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group .group-title {
    font-family: montserrat;
    font-size: 1em;
    font-weight: 300;
    color: #983cc9;
    padding: 25px 20px;
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group .group-title:after {
    content: '\e870';
    font-family: linearicons-free;
    speak: none;
    color: #983cc9;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    position: absolute;
    right: 20px;
    left: initial;
    z-index: 1;
    -webkit-transform: rotatez(45deg);
    -moz-transform: rotatez(45deg);
    -ms-transform: rotatez(45deg);
    -o-transform: rotatez(45deg);
    transform: rotatez(45deg);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group .group-title .lnr {
    font-size: 1.3rem;
    pointer-events: none
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group .group-title .cart-items {
    position: absolute;
    left: 25px;
    top: 13px;
    font-family: proximanova;
    font-size: .7em;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #983cc9;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    pointer-events: none
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group .group-title .cart-items.hidden {
    visibility: hidden
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox] {
    position: absolute;
    left: -9999px
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]~ul {
    height: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]~.wysiwyg-content {
    height: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul {
    height: auto;
    opacity: 1;
    pointer-events: all;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(1) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 40ms;
    -moz-transition: all .5s ease 40ms;
    -o-transition: all .5s ease 40ms;
    transition: all .5s ease 40ms
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(2) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 80ms;
    -moz-transition: all .5s ease 80ms;
    -o-transition: all .5s ease 80ms;
    transition: all .5s ease 80ms
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(3) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .12s;
    -moz-transition: all .5s ease .12s;
    -o-transition: all .5s ease .12s;
    transition: all .5s ease .12s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(4) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .16s;
    -moz-transition: all .5s ease .16s;
    -o-transition: all .5s ease .16s;
    transition: all .5s ease .16s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(5) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .2s;
    -moz-transition: all .5s ease .2s;
    -o-transition: all .5s ease .2s;
    transition: all .5s ease .2s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(6) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .24s;
    -moz-transition: all .5s ease .24s;
    -o-transition: all .5s ease .24s;
    transition: all .5s ease .24s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(7) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .28s;
    -moz-transition: all .5s ease .28s;
    -o-transition: all .5s ease .28s;
    transition: all .5s ease .28s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(8) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .32s;
    -moz-transition: all .5s ease .32s;
    -o-transition: all .5s ease .32s;
    transition: all .5s ease .32s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(9) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .36s;
    -moz-transition: all .5s ease .36s;
    -o-transition: all .5s ease .36s;
    transition: all .5s ease .36s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(10) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .4s;
    -moz-transition: all .5s ease .4s;
    -o-transition: all .5s ease .4s;
    transition: all .5s ease .4s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(11) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .44s;
    -moz-transition: all .5s ease .44s;
    -o-transition: all .5s ease .44s;
    transition: all .5s ease .44s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(12) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .48s;
    -moz-transition: all .5s ease .48s;
    -o-transition: all .5s ease .48s;
    transition: all .5s ease .48s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(13) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .52s;
    -moz-transition: all .5s ease .52s;
    -o-transition: all .5s ease .52s;
    transition: all .5s ease .52s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(14) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .56s;
    -moz-transition: all .5s ease .56s;
    -o-transition: all .5s ease .56s;
    transition: all .5s ease .56s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(15) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .6s;
    -moz-transition: all .5s ease .6s;
    -o-transition: all .5s ease .6s;
    transition: all .5s ease .6s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(16) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .64s;
    -moz-transition: all .5s ease .64s;
    -o-transition: all .5s ease .64s;
    transition: all .5s ease .64s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(17) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .68s;
    -moz-transition: all .5s ease .68s;
    -o-transition: all .5s ease .68s;
    transition: all .5s ease .68s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(18) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .72s;
    -moz-transition: all .5s ease .72s;
    -o-transition: all .5s ease .72s;
    transition: all .5s ease .72s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(19) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .76s;
    -moz-transition: all .5s ease .76s;
    -o-transition: all .5s ease .76s;
    transition: all .5s ease .76s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(20) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .8s;
    -moz-transition: all .5s ease .8s;
    -o-transition: all .5s ease .8s;
    transition: all .5s ease .8s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(21) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .84s;
    -moz-transition: all .5s ease .84s;
    -o-transition: all .5s ease .84s;
    transition: all .5s ease .84s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(22) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .88s;
    -moz-transition: all .5s ease .88s;
    -o-transition: all .5s ease .88s;
    transition: all .5s ease .88s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(23) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .92s;
    -moz-transition: all .5s ease .92s;
    -o-transition: all .5s ease .92s;
    transition: all .5s ease .92s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(24) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .96s;
    -moz-transition: all .5s ease .96s;
    -o-transition: all .5s ease .96s;
    transition: all .5s ease .96s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(25) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1s;
    -moz-transition: all .5s ease 1s;
    -o-transition: all .5s ease 1s;
    transition: all .5s ease 1s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(26) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.04s;
    -moz-transition: all .5s ease 1.04s;
    -o-transition: all .5s ease 1.04s;
    transition: all .5s ease 1.04s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(27) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.08s;
    -moz-transition: all .5s ease 1.08s;
    -o-transition: all .5s ease 1.08s;
    transition: all .5s ease 1.08s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(28) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.12s;
    -moz-transition: all .5s ease 1.12s;
    -o-transition: all .5s ease 1.12s;
    transition: all .5s ease 1.12s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(29) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.16s;
    -moz-transition: all .5s ease 1.16s;
    -o-transition: all .5s ease 1.16s;
    transition: all .5s ease 1.16s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(30) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.2s;
    -moz-transition: all .5s ease 1.2s;
    -o-transition: all .5s ease 1.2s;
    transition: all .5s ease 1.2s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(31) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.24s;
    -moz-transition: all .5s ease 1.24s;
    -o-transition: all .5s ease 1.24s;
    transition: all .5s ease 1.24s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(32) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.28s;
    -moz-transition: all .5s ease 1.28s;
    -o-transition: all .5s ease 1.28s;
    transition: all .5s ease 1.28s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(33) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.32s;
    -moz-transition: all .5s ease 1.32s;
    -o-transition: all .5s ease 1.32s;
    transition: all .5s ease 1.32s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(34) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.36s;
    -moz-transition: all .5s ease 1.36s;
    -o-transition: all .5s ease 1.36s;
    transition: all .5s ease 1.36s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(35) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.4s;
    -moz-transition: all .5s ease 1.4s;
    -o-transition: all .5s ease 1.4s;
    transition: all .5s ease 1.4s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(36) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.44s;
    -moz-transition: all .5s ease 1.44s;
    -o-transition: all .5s ease 1.44s;
    transition: all .5s ease 1.44s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(37) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.48s;
    -moz-transition: all .5s ease 1.48s;
    -o-transition: all .5s ease 1.48s;
    transition: all .5s ease 1.48s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(38) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.52s;
    -moz-transition: all .5s ease 1.52s;
    -o-transition: all .5s ease 1.52s;
    transition: all .5s ease 1.52s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(39) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.56s;
    -moz-transition: all .5s ease 1.56s;
    -o-transition: all .5s ease 1.56s;
    transition: all .5s ease 1.56s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(40) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.6s;
    -moz-transition: all .5s ease 1.6s;
    -o-transition: all .5s ease 1.6s;
    transition: all .5s ease 1.6s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(41) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.64s;
    -moz-transition: all .5s ease 1.64s;
    -o-transition: all .5s ease 1.64s;
    transition: all .5s ease 1.64s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(42) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.68s;
    -moz-transition: all .5s ease 1.68s;
    -o-transition: all .5s ease 1.68s;
    transition: all .5s ease 1.68s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(43) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.72s;
    -moz-transition: all .5s ease 1.72s;
    -o-transition: all .5s ease 1.72s;
    transition: all .5s ease 1.72s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(44) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.76s;
    -moz-transition: all .5s ease 1.76s;
    -o-transition: all .5s ease 1.76s;
    transition: all .5s ease 1.76s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(45) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.8s;
    -moz-transition: all .5s ease 1.8s;
    -o-transition: all .5s ease 1.8s;
    transition: all .5s ease 1.8s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(46) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.84s;
    -moz-transition: all .5s ease 1.84s;
    -o-transition: all .5s ease 1.84s;
    transition: all .5s ease 1.84s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(47) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.88s;
    -moz-transition: all .5s ease 1.88s;
    -o-transition: all .5s ease 1.88s;
    transition: all .5s ease 1.88s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(48) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.92s;
    -moz-transition: all .5s ease 1.92s;
    -o-transition: all .5s ease 1.92s;
    transition: all .5s ease 1.92s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(49) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.96s;
    -moz-transition: all .5s ease 1.96s;
    -o-transition: all .5s ease 1.96s;
    transition: all .5s ease 1.96s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~ul li:nth-child(50) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 2s;
    -moz-transition: all .5s ease 2s;
    -o-transition: all .5s ease 2s;
    transition: all .5s ease 2s
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~.wysiwyg-content {
    height: auto;
    opacity: 1;
    padding: 15px;
    pointer-events: all;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group input[type=checkbox]:checked~.group-title:after {
    -webkit-transform: rotatez(0);
    -moz-transform: rotatez(0);
    -ms-transform: rotatez(0);
    -o-transform: rotatez(0);
    transform: rotatez(0)
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group ul li {
    width: 100%;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group ul li a {
    font-family: montserrat;
    font-size: .87em;
    font-weight: 500;
    color: #515151;
    display: block;
    border-top: solid #ededed 2px;
    padding: 16px 25px 16px 25px;
    width: 100%;
    position: relative
}

.primary-navigation #dx-navigation .mobile-secondary-nav .mobile-links-group ul li:hover {
    background: #ededed;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.primary-navigation #dx-navigation .mobile-language-select-btn {
    display: none;
    width: 100%;
    position: relative;
    height: 70px;
    flex-direction: row;
    justify-content: center;
    min-height: 70px
}

.primary-navigation #dx-navigation .mobile-language-select-btn a {
    display: flex;
    line-height: 0;
    align-items: center;
    outline: 0;
    color: #000;
    position: relative;
    font-family: proximanova, montserrat, sans-serif;
    font-size: .87em;
    letter-spacing: 0;
    line-height: 2em;
    text-decoration: none
}

.primary-navigation #dx-navigation .mobile-language-select-btn a img {
    max-height: 16px;
    max-width: 16px;
    object-fit: contain;
    margin-right: 5px
}

.primary-navigation #dx-navigation .menu-item {
    flex: 1;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    -webkit-transition: all .5s cubic-bezier(0, 0, .12, .99);
    -moz-transition: all .5s cubic-bezier(0, 0, .12, .99);
    -o-transition: all .5s cubic-bezier(0, 0, .12, .99);
    transition: all .5s cubic-bezier(0, 0, .12, .99);
    overflow: hidden;
    font-size: 16px
}

.primary-navigation #dx-navigation .menu-item:after {
    content: '';
    opacity: 0;
    position: absolute;
    bottom: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #979797
}

.primary-navigation #dx-navigation .menu-item .menu-link {
    font-family: montserrat;
    font-weight: 500;
    font-size: .75em;
    color: #000;
    letter-spacing: .03125em;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none
}

.primary-navigation #dx-navigation .menu-item .menu-link.parent-link {
    text-transform: uppercase
}

.primary-navigation #dx-navigation .menu-item .menu-link span {
    pointer-events: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    visibility: hidden;
    z-index: 1;
    opacity: 0;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px)
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .mobile-subnav-header {
    display: none;
    height: 50px;
    min-height: 50px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .mobile-subnav-header .mobile-back-btn,
.primary-navigation #dx-navigation .menu-item .item-dropdown .mobile-subnav-header a {
    font-size: .8em;
    font-family: proximanova, montserrat, sans-serif;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    user-select: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column {
    flex: 1;
    border-left: solid 1px #d5d5d5;
    padding: 20px;
    font-size: 16px
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column .column-title {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
    color: #000;
    letter-spacing: .03125rem;
    line-height: 12px;
    margin-bottom: 15px;
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column.continued {
    border: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column.continued .column-title {
    opacity: 0;
    pointer-events: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column:first-child {
    border: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown div.dropdown-colmn:last-child {
    border: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column {
    position: relative;
    width: calc((100% / 5) * 2)
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item,
.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-stage,
.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-stage-outer {
    height: 100%
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(1) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .1s;
    -moz-transition: all .3s ease .1s;
    -o-transition: all .3s ease .1s;
    transition: all .3s ease .1s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(2) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .2s;
    -moz-transition: all .3s ease .2s;
    -o-transition: all .3s ease .2s;
    transition: all .3s ease .2s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(3) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .3s;
    -moz-transition: all .3s ease .3s;
    -o-transition: all .3s ease .3s;
    transition: all .3s ease .3s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(4) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .4s;
    -moz-transition: all .3s ease .4s;
    -o-transition: all .3s ease .4s;
    transition: all .3s ease .4s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(5) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .5s;
    -moz-transition: all .3s ease .5s;
    -o-transition: all .3s ease .5s;
    transition: all .3s ease .5s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(6) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(7) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .7s;
    -moz-transition: all .3s ease .7s;
    -o-transition: all .3s ease .7s;
    transition: all .3s ease .7s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(8) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(9) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .9s;
    -moz-transition: all .3s ease .9s;
    -o-transition: all .3s ease .9s;
    transition: all .3s ease .9s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-item.active .item-content :nth-child(10) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1s;
    -moz-transition: all .3s ease 1s;
    -o-transition: all .3s ease 1s;
    transition: all .3s ease 1s
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .item a {
    width: 100%
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-nav {
    position: absolute;
    top: calc(50% - 15px);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #fff;
    font-size: 25px;
    pointer-events: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-nav.disabled {
    display: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-nav .owl-next,
.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-nav .owl-prev {
    pointer-events: all;
    background: 0 0;
    box-shadow: none;
    border: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    width: 10px;
    left: calc(50% - 5px)
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-dots .owl-dot {
    padding: 5px;
    float: left
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 500px;
    background: #fff;
    border: solid 1px #979797;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-dots .owl-dot.active span {
    background: #979797;
    border: solid 1px #979797
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .owl-carousel .owl-dots .owl-dot:hover span {
    background: #983cc9;
    border-color: #983cc9;
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4)
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column img {
    width: 100%;
    height: auto;
    float: left
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .item-content {
    float: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .item-content .item-title {
    font-family: montserrat;
    font-weight: 300;
    font-size: 1.25em;
    color: #fff;
    text-align: center
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .item-content label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: .75em;
    color: #fff;
    text-align: center;
    text-transform: uppercase
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .item-content ul {
    margin: 10px 0;
    padding-left: 15px
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .item-content ul li {
    font-family: proximanova, montserrat, sans-serif;
    font-size: .75em;
    color: #000
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .feature-column .item-content * {
    opacity: 0;
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    transform: translatey(-15px)
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .menu-link {
    position: relative;
    margin: 0;
    padding: 0 0;
    font-family: proximanova, montserrat, sans-serif;
    font-size: .87em;
    font-weight: 300;
    color: #000;
    letter-spacing: 0;
    line-height: 1.3em;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    text-decoration: none;
    -webkit-transform: translatey(100%);
    -moz-transform: translatey(100%);
    -ms-transform: translatey(100%);
    -o-transform: translatey(100%);
    transform: translatey(100%)
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .menu-link:before {
    content: '';
    background: #983cc9;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    position: absolute;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .menu-link span {
    color: #000;
    display: block;
    font-family: proximanova, montserrat, sans-serif;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -ms-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .menu-link.view-all {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
    color: #000;
    letter-spacing: .03125rem;
    line-height: .75rem;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .menu-link.view-all:before {
    display: none
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .menu-link:hover:before {
    opacity: 1
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .menu-link:hover span {
    -webkit-transform: translatex(15px);
    -moz-transform: translatex(15px);
    -ms-transform: translatex(15px);
    -o-transform: translatex(15px);
    transform: translatex(15px)
}

.primary-navigation #dx-navigation .menu-item .item-dropdown .menu-link:hover.view-all {
    color: #983cc9;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -ms-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0)
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown,
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease, transform .4s ease, visibility 0s linear;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0)
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(1),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(1) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .1s;
    -moz-transition: all .3s ease .1s;
    -o-transition: all .3s ease .1s;
    transition: all .3s ease .1s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(2),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(2) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .2s;
    -moz-transition: all .3s ease .2s;
    -o-transition: all .3s ease .2s;
    transition: all .3s ease .2s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(3),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(3) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .3s;
    -moz-transition: all .3s ease .3s;
    -o-transition: all .3s ease .3s;
    transition: all .3s ease .3s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(4),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(4) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .4s;
    -moz-transition: all .3s ease .4s;
    -o-transition: all .3s ease .4s;
    transition: all .3s ease .4s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(5),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(5) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .5s;
    -moz-transition: all .3s ease .5s;
    -o-transition: all .3s ease .5s;
    transition: all .3s ease .5s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(6),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(6) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(7),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(7) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .7s;
    -moz-transition: all .3s ease .7s;
    -o-transition: all .3s ease .7s;
    transition: all .3s ease .7s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(8),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(8) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(9),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(9) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .9s;
    -moz-transition: all .3s ease .9s;
    -o-transition: all .3s ease .9s;
    transition: all .3s ease .9s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(10),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(10) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1s;
    -moz-transition: all .3s ease 1s;
    -o-transition: all .3s ease 1s;
    transition: all .3s ease 1s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(11),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(11) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.1s;
    -moz-transition: all .3s ease 1.1s;
    -o-transition: all .3s ease 1.1s;
    transition: all .3s ease 1.1s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(12),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(12) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.2s;
    -moz-transition: all .3s ease 1.2s;
    -o-transition: all .3s ease 1.2s;
    transition: all .3s ease 1.2s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(13),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(13) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.3s;
    -moz-transition: all .3s ease 1.3s;
    -o-transition: all .3s ease 1.3s;
    transition: all .3s ease 1.3s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(14),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(14) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.4s;
    -moz-transition: all .3s ease 1.4s;
    -o-transition: all .3s ease 1.4s;
    transition: all .3s ease 1.4s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(15),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(15) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.5s;
    -moz-transition: all .3s ease 1.5s;
    -o-transition: all .3s ease 1.5s;
    transition: all .3s ease 1.5s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(16),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(16) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.6s;
    -moz-transition: all .3s ease 1.6s;
    -o-transition: all .3s ease 1.6s;
    transition: all .3s ease 1.6s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(17),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(17) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.7s;
    -moz-transition: all .3s ease 1.7s;
    -o-transition: all .3s ease 1.7s;
    transition: all .3s ease 1.7s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(18),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(18) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.8s;
    -moz-transition: all .3s ease 1.8s;
    -o-transition: all .3s ease 1.8s;
    transition: all .3s ease 1.8s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(19),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(19) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.9s;
    -moz-transition: all .3s ease 1.9s;
    -o-transition: all .3s ease 1.9s;
    transition: all .3s ease 1.9s
}

.primary-navigation #dx-navigation .menu-item.clicked .item-dropdown .dropdown-column .menu-link:nth-child(20),
.primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(20) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 2s;
    -moz-transition: all .3s ease 2s;
    -o-transition: all .3s ease 2s;
    transition: all .3s ease 2s
}

.primary-navigation #dx-navigation .menu-item.clicked:after,
.primary-navigation #dx-navigation .menu-item:hover:after {
    opacity: 1
}

@media only screen and (max-width:767px) {
    body {
        width: 100%;
        position: relative
    }

    body .primary-navigation #dx-navigation {
        position: absolute;
        width: 100%;
        height: 100vh;
        padding-top: 70px;
        padding-bottom: 240px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-top: 70px;
        display: none;
        overflow-x: hidden;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease
    }

    body .primary-navigation #dx-navigation.searching .menu-item {
        opacity: 1;
        pointer-events: all
    }

    body .primary-navigation #dx-navigation .mobile-secondary-nav {
        display: block
    }

    body .primary-navigation #dx-navigation .mobile-language-select-btn {
        display: flex
    }

    body .primary-navigation #dx-navigation .menu-item {
        height: 70px;
        flex: none;
        border-bottom: solid 1px #d5d5d5;
        width: 100%
    }

    body .primary-navigation #dx-navigation .menu-item:after {
        display: none
    }

    body .primary-navigation #dx-navigation .menu-item .item-dropdown {
        pointer-events: none;
        opacity: 1;
        width: 100%;
        height: 100%;
        top: 0;
        right: -100%;
        left: initial;
        padding-bottom: 200px;
        flex-direction: column;
        box-shadow: none;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -ms-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0)
    }

    body .primary-navigation #dx-navigation .menu-item .item-dropdown .mobile-subnav-header {
        display: flex
    }

    body .primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column {
        flex: initial;
        padding: 0;
        font-size: 16px
    }

    body .primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column.continued .column-title {
        display: none
    }

    body .primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column .column-title {
        background: #f7f7f7;
        padding-left: 15px
    }

    body .primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column .menu-link {
        height: 70px;
        flex: none;
        border-bottom: solid 1px #d5d5d5;
        width: 100%;
        opacity: 1;
        padding-left: 15px;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -ms-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0)
    }

    body .primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column .menu-link:before {
        display: none
    }

    body .primary-navigation #dx-navigation .menu-item .item-dropdown .dropdown-column .menu-link:after {
        content: '\e876';
        font-family: linearicons-free;
        color: #983cc9;
        position: absolute;
        right: 15px
    }

    body .primary-navigation #dx-navigation .menu-item .feature-column {
        display: none
    }

    body .primary-navigation #dx-navigation .menu-item .menu-link.parent-link {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px
    }

    body .primary-navigation #dx-navigation .menu-item .menu-link.parent-link:after {
        content: '\e876';
        font-family: linearicons-free;
        color: #983cc9;
        position: absolute;
        right: 15px
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(1) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(2) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(3) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(4) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(5) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(6) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(7) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(8) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(9) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover .item-dropdown .dropdown-column .menu-link:nth-child(10) {
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s
    }

    body .primary-navigation #dx-navigation .menu-item:hover:after {
        opacity: 1
    }

    body .primary-navigation #dx-navigation .global-search {
        position: absolute;
        top: 0;
        left: 0;
        padding: 5px;
        display: flex;
        width: 100%;
        transform: translatex(0);
        height: 70px;
        padding: 0 15px;
        flex-direction: row
    }

    body .primary-navigation #dx-navigation .global-search #clear-global-search {
        color: #983cc9
    }

    body .primary-navigation #dx-navigation .global-search .global-search-input-container .tt-menu {
        background: #fff;
        position: relative;
        top: 0;
        box-shadow: 0 30px 30px 10px rgba(0, 0, 0, .7);
        list-style: none;
        margin: 0;
        padding: 0 10px 15px 10px;
        display: block;
        width: calc(100%   82px);
        font-size: 13px;
        left: -41px !important
    }

    body .primary-navigation #dx-navigation .global-search .global-search-input-container .tt-menu .tt-suggestion:before {
        display: none
    }

    body .primary-navigation #dx-navigation .global-search .global-search-input-container .tt-menu .typeahead-label {
        margin-bottom: 0
    }

    body .primary-navigation #dx-navigation .global-search-spacer {
        display: none
    }

    body .primary-navigation .mobile-bar {
        display: flex
    }

    body .primary-navigation .mobile-bar .logo-fixed {
        width: 115px;
        height: auto
    }

    body.mobile-nav-open {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        position: fixed
    }

    body.mobile-nav-open .main-container,
    body.mobile-nav-open footer-container {
        display: none !important
    }

    body.mobile-nav-open #dx-navigation,
    body.mobile-nav-open .primary-navigation {
        display: flex;
        position: absolute;
        top: 0;
        left: 0
    }

    body #dx-navigation.mobile-sub-active {
        -webkit-transform: translatex(-100%);
        -moz-transform: translatex(-100%);
        -ms-transform: translatex(-100%);
        -o-transform: translatex(-100%);
        transform: translatex(-100%);
        overflow-x: visible;
        overflow-y: visible;
        display: block
    }

    body #dx-navigation.mobile-sub-active .menu-item.active .item-dropdown {
        pointer-events: all;
        opacity: 1;
        visibility: visible
    }

    body #dx-navigation.mobile-sub-active .menu-item.active .item-dropdown .menu-link {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -ms-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
        -webkit-transition: all 0 ease 0;
        -moz-transition: all 0 ease 0;
        -o-transition: all 0 ease 0;
        transition: all 0 ease 0
    }
}

@media all and (max-width:1024px) and (min-width:767px) {
    #dx-navigation .feature-column {
        display: none
    }
}

.date-driven-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px
}

.date-driven-cards .content-header {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between
}

.date-driven-cards .content-container {
    width: 100%;
    max-width: 1400px
}

.date-driven-cards .content-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}

.date-driven-cards .content-container ul li {
    max-width: calc(100% / 4);
    cursor: pointer;
    background: #fff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    position: relative
}

.date-driven-cards .content-container ul li .content {
    width: 100%;
    padding: 20px
}

.date-driven-cards .content-container ul li .image-container {
    width: 100%;
    overflow: hidden
}

.date-driven-cards .content-container ul li img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.date-driven-cards .content-container ul li h5 {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1.15em;
    font-size: 1em;
    line-height: 1.4em;
    letter-spacing: .02em;
    margin-bottom: 10px;
    color: #000;
    padding: 0;
    opacity: 1;
    -webkit-transition: all .3s ease .1s;
    -moz-transition: all .3s ease .1s;
    -o-transition: all .3s ease .1s;
    transition: all .3s ease .1s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.date-driven-cards .content-container ul li span.lnr {
    margin-right: 10px
}

.date-driven-cards .content-container ul li .label {
    background: #474c55;
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    padding: 6px 10px 4px 10px;
    font-size: .9em;
    line-height: 1em;
    margin: 0 0 1em
}

.date-driven-cards .content-container ul li a.button {
    margin-left: 0;
    padding-left: 0
}

.date-driven-cards .content-container ul li .time,
.date-driven-cards .content-container ul li ldate {
    margin-bottom: 10px
}

.date-driven-cards .content-container ul li:after {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    pointer-events: none
}

.date-driven-cards .content-container ul li:hover {
    z-index: 3333;
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px)
}

.date-driven-cards .content-container ul li:hover .image-container img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.date-driven-cards .content-container ul li:hover:after {
    opacity: 1
}

@media only screen and (max-width:767px) {
    .date-driven-cards .content-container ul li {
        max-width: calc(100% / 2)
    }
}

@media only screen and (max-width:1399px) {
    .date-driven-cards .content-container {
        max-width: calc(100% - 30px)
    }
}

.disclaimer-text,
.two-column-navigation .disclaimer-text {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px
}

.disclaimer-text .content-container,
.two-column-navigation .disclaimer-text .content-container {
    margin-top: 50px;
    width: 100%;
    max-width: 1400px;
    font-size: .938em;
    overflow-wrap: break-word;
    text-align: justify
}

.expanded-links-groups {
    background: #f8f8f8;
    min-height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0
}

.expanded-links-groups .content-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 30px
}

.expanded-links-groups .content-container .links-group {
    width: calc((100% / 3) - 20px);
    background: #fff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    border-top: solid #983cc9 4px;
    margin: 10px;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    position: relative
}

.expanded-links-groups .content-container .links-group:after {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    pointer-events: none
}

.expanded-links-groups .content-container .links-group .group-title {
    font-family: montserrat;
    font-size: 1em;
    font-weight: 300;
    color: #000;
    padding: 25px
}

.expanded-links-groups .content-container .links-group ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.expanded-links-groups .content-container .links-group ul li {
    width: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.expanded-links-groups .content-container .links-group ul li a {
    font-family: montserrat;
    font-size: .87em;
    font-weight: 500;
    color: #515151;
    display: block;
    border-top: solid #ededed 2px;
    padding: 16px 25px 16px 25px;
    width: 100%;
    position: relative
}

.expanded-links-groups .content-container .links-group ul li a:after {
    content: '\e876';
    font-family: linearicons-free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    position: absolute;
    right: 25px;
    left: initial;
    z-index: 1
}

.expanded-links-groups .content-container .links-group ul li:hover {
    background: #ededed
}

.expanded-links-groups .content-container .links-group:hover {
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px)
}

.expanded-links-groups .content-container .links-group:hover:after {
    opacity: 1
}

@media only screen and (max-width:767px) {
    .expanded-links-groups .content-container .links-group {
        width: 100%
    }

    .expanded-links-groups .content-container.one-by .links-group {
        width: 100%
    }

    .expanded-links-groups .content-container.two-by .links-group {
        width: 100%
    }
}

@media all and (max-width:1024px) and (min-width:767px) {
    .expanded-links-groups .content-container .links-group {
        width: calc((100% / 2) - 20px)
    }
}

.expanding-links-groups {
    background: #f8f8f8;
    min-height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 60px 0
}

.expanding-links-groups .content-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 30px
}

.expanding-links-groups .content-container h2 {
    text-align: left;
    width: 100%;
    margin-bottom: 30px
}

.expanding-links-groups .content-container.one-by .links-group {
    width: calc(100% - 20px)
}

.expanding-links-groups .content-container.two-by .links-group {
    width: calc((100% / 2) - 20px)
}

.expanding-links-groups .content-container .links-group {
    width: calc((100% / 3) - 20px);
    background: #fff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    border-top: solid #983cc9 4px;
    margin: 10px;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    position: relative
}

.expanding-links-groups .content-container .links-group:after {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    pointer-events: none
}

.expanding-links-groups .content-container .links-group .group-title {
    font-family: montserrat;
    font-size: 1em;
    font-weight: 300;
    color: #000;
    padding: 25px;
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer
}

.expanding-links-groups .content-container .links-group .group-title:after {
    content: '\e870';
    font-family: linearicons-free;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    position: absolute;
    right: 25px;
    left: initial;
    z-index: 1;
    -webkit-transform: rotatez(45deg);
    -moz-transform: rotatez(45deg);
    -ms-transform: rotatez(45deg);
    -o-transform: rotatez(45deg);
    transform: rotatez(45deg);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.expanding-links-groups .content-container .links-group input[type=checkbox] {
    position: absolute;
    left: -9999px
}

.expanding-links-groups .content-container .links-group input[type=checkbox]~ul {
    height: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.expanding-links-groups .content-container .links-group input[type=checkbox]~.wysiwyg-content {
    height: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul {
    height: auto;
    opacity: 1;
    pointer-events: all;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(1) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 40ms;
    -moz-transition: all .5s ease 40ms;
    -o-transition: all .5s ease 40ms;
    transition: all .5s ease 40ms
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(2) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 80ms;
    -moz-transition: all .5s ease 80ms;
    -o-transition: all .5s ease 80ms;
    transition: all .5s ease 80ms
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(3) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .12s;
    -moz-transition: all .5s ease .12s;
    -o-transition: all .5s ease .12s;
    transition: all .5s ease .12s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(4) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .16s;
    -moz-transition: all .5s ease .16s;
    -o-transition: all .5s ease .16s;
    transition: all .5s ease .16s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(5) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .2s;
    -moz-transition: all .5s ease .2s;
    -o-transition: all .5s ease .2s;
    transition: all .5s ease .2s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(6) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .24s;
    -moz-transition: all .5s ease .24s;
    -o-transition: all .5s ease .24s;
    transition: all .5s ease .24s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(7) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .28s;
    -moz-transition: all .5s ease .28s;
    -o-transition: all .5s ease .28s;
    transition: all .5s ease .28s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(8) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .32s;
    -moz-transition: all .5s ease .32s;
    -o-transition: all .5s ease .32s;
    transition: all .5s ease .32s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(9) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .36s;
    -moz-transition: all .5s ease .36s;
    -o-transition: all .5s ease .36s;
    transition: all .5s ease .36s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(10) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .4s;
    -moz-transition: all .5s ease .4s;
    -o-transition: all .5s ease .4s;
    transition: all .5s ease .4s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(11) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .44s;
    -moz-transition: all .5s ease .44s;
    -o-transition: all .5s ease .44s;
    transition: all .5s ease .44s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(12) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .48s;
    -moz-transition: all .5s ease .48s;
    -o-transition: all .5s ease .48s;
    transition: all .5s ease .48s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(13) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .52s;
    -moz-transition: all .5s ease .52s;
    -o-transition: all .5s ease .52s;
    transition: all .5s ease .52s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(14) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .56s;
    -moz-transition: all .5s ease .56s;
    -o-transition: all .5s ease .56s;
    transition: all .5s ease .56s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(15) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .6s;
    -moz-transition: all .5s ease .6s;
    -o-transition: all .5s ease .6s;
    transition: all .5s ease .6s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(16) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .64s;
    -moz-transition: all .5s ease .64s;
    -o-transition: all .5s ease .64s;
    transition: all .5s ease .64s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(17) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .68s;
    -moz-transition: all .5s ease .68s;
    -o-transition: all .5s ease .68s;
    transition: all .5s ease .68s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(18) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .72s;
    -moz-transition: all .5s ease .72s;
    -o-transition: all .5s ease .72s;
    transition: all .5s ease .72s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(19) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .76s;
    -moz-transition: all .5s ease .76s;
    -o-transition: all .5s ease .76s;
    transition: all .5s ease .76s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(20) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .8s;
    -moz-transition: all .5s ease .8s;
    -o-transition: all .5s ease .8s;
    transition: all .5s ease .8s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(21) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .84s;
    -moz-transition: all .5s ease .84s;
    -o-transition: all .5s ease .84s;
    transition: all .5s ease .84s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(22) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .88s;
    -moz-transition: all .5s ease .88s;
    -o-transition: all .5s ease .88s;
    transition: all .5s ease .88s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(23) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .92s;
    -moz-transition: all .5s ease .92s;
    -o-transition: all .5s ease .92s;
    transition: all .5s ease .92s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(24) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease .96s;
    -moz-transition: all .5s ease .96s;
    -o-transition: all .5s ease .96s;
    transition: all .5s ease .96s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(25) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1s;
    -moz-transition: all .5s ease 1s;
    -o-transition: all .5s ease 1s;
    transition: all .5s ease 1s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(26) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.04s;
    -moz-transition: all .5s ease 1.04s;
    -o-transition: all .5s ease 1.04s;
    transition: all .5s ease 1.04s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(27) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.08s;
    -moz-transition: all .5s ease 1.08s;
    -o-transition: all .5s ease 1.08s;
    transition: all .5s ease 1.08s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(28) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.12s;
    -moz-transition: all .5s ease 1.12s;
    -o-transition: all .5s ease 1.12s;
    transition: all .5s ease 1.12s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(29) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.16s;
    -moz-transition: all .5s ease 1.16s;
    -o-transition: all .5s ease 1.16s;
    transition: all .5s ease 1.16s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(30) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.2s;
    -moz-transition: all .5s ease 1.2s;
    -o-transition: all .5s ease 1.2s;
    transition: all .5s ease 1.2s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(31) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.24s;
    -moz-transition: all .5s ease 1.24s;
    -o-transition: all .5s ease 1.24s;
    transition: all .5s ease 1.24s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(32) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.28s;
    -moz-transition: all .5s ease 1.28s;
    -o-transition: all .5s ease 1.28s;
    transition: all .5s ease 1.28s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(33) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.32s;
    -moz-transition: all .5s ease 1.32s;
    -o-transition: all .5s ease 1.32s;
    transition: all .5s ease 1.32s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(34) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.36s;
    -moz-transition: all .5s ease 1.36s;
    -o-transition: all .5s ease 1.36s;
    transition: all .5s ease 1.36s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(35) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.4s;
    -moz-transition: all .5s ease 1.4s;
    -o-transition: all .5s ease 1.4s;
    transition: all .5s ease 1.4s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(36) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.44s;
    -moz-transition: all .5s ease 1.44s;
    -o-transition: all .5s ease 1.44s;
    transition: all .5s ease 1.44s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(37) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.48s;
    -moz-transition: all .5s ease 1.48s;
    -o-transition: all .5s ease 1.48s;
    transition: all .5s ease 1.48s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(38) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.52s;
    -moz-transition: all .5s ease 1.52s;
    -o-transition: all .5s ease 1.52s;
    transition: all .5s ease 1.52s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(39) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.56s;
    -moz-transition: all .5s ease 1.56s;
    -o-transition: all .5s ease 1.56s;
    transition: all .5s ease 1.56s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(40) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.6s;
    -moz-transition: all .5s ease 1.6s;
    -o-transition: all .5s ease 1.6s;
    transition: all .5s ease 1.6s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(41) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.64s;
    -moz-transition: all .5s ease 1.64s;
    -o-transition: all .5s ease 1.64s;
    transition: all .5s ease 1.64s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(42) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.68s;
    -moz-transition: all .5s ease 1.68s;
    -o-transition: all .5s ease 1.68s;
    transition: all .5s ease 1.68s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(43) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.72s;
    -moz-transition: all .5s ease 1.72s;
    -o-transition: all .5s ease 1.72s;
    transition: all .5s ease 1.72s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(44) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.76s;
    -moz-transition: all .5s ease 1.76s;
    -o-transition: all .5s ease 1.76s;
    transition: all .5s ease 1.76s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(45) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.8s;
    -moz-transition: all .5s ease 1.8s;
    -o-transition: all .5s ease 1.8s;
    transition: all .5s ease 1.8s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(46) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.84s;
    -moz-transition: all .5s ease 1.84s;
    -o-transition: all .5s ease 1.84s;
    transition: all .5s ease 1.84s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(47) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.88s;
    -moz-transition: all .5s ease 1.88s;
    -o-transition: all .5s ease 1.88s;
    transition: all .5s ease 1.88s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(48) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.92s;
    -moz-transition: all .5s ease 1.92s;
    -o-transition: all .5s ease 1.92s;
    transition: all .5s ease 1.92s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(49) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 1.96s;
    -moz-transition: all .5s ease 1.96s;
    -o-transition: all .5s ease 1.96s;
    transition: all .5s ease 1.96s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~ul li:nth-child(50) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .5s ease 2s;
    -moz-transition: all .5s ease 2s;
    -o-transition: all .5s ease 2s;
    transition: all .5s ease 2s
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~.wysiwyg-content {
    height: auto;
    opacity: 1;
    padding: 15px;
    pointer-events: all;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~.wysiwyg-content ul li {
    opacity: 1;
    width: 100%
}

.expanding-links-groups .content-container .links-group input[type=checkbox]:checked~.group-title:after {
    -webkit-transform: rotatez(0);
    -moz-transform: rotatez(0);
    -ms-transform: rotatez(0);
    -o-transform: rotatez(0);
    transform: rotatez(0)
}

.expanding-links-groups .content-container .links-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap
}

.expanding-links-groups .content-container .links-group ul li {
    width: 50%;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.expanding-links-groups .content-container .links-group ul li a {
    font-family: montserrat;
    font-size: .87em;
    font-weight: 500;
    color: #515151;
    display: block;
    border-top: solid #ededed 2px;
    padding: 16px 25px 16px 25px;
    width: 100%;
    position: relative
}

.expanding-links-groups .content-container .links-group ul li:hover {
    background: #ededed;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.expanding-links-groups .content-container .links-group:hover {
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px)
}

.expanding-links-groups .content-container .links-group:hover:after {
    opacity: 1
}

@media only screen and (max-width:767px) {
    .expanding-links-groups {
        padding: 60px 40px !important
    }

    .expanding-links-groups .content-container {
        padding: 0
    }

    .expanding-links-groups .content-container .links-group {
        width: 100%;
        margin: 0
    }

    .expanding-links-groups .content-container .links-group .group-title {
        padding: 15px
    }

    .expanding-links-groups .content-container.one-by .links-group {
        width: 100%
    }

    .expanding-links-groups .content-container.two-by .links-group {
        width: 100%
    }
}

@media all and (max-width:1024px) and (min-width:767px) {
    .expanding-links-groups .content-container .links-group {
        width: calc((100% / 2) - 20px)
    }
}

.expanding-product-links-grid {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background: #f8f8f8
}

.expanding-product-links-grid .content-container {
    max-width: 1400px;
    width: 100%
}

.expanding-product-links-grid .content-container .expanding-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.expanding-product-links-grid .content-container .expanding-content label.btn-cta:after {
    content: '\e881'
}

.expanding-product-links-grid .content-container .expanding-content .list-container {
    width: 100%;
    height: 0
}

.expanding-product-links-grid .content-container .expanding-content .list-container:before {
    content: '';
    height: 4px;
    width: 100%;
    display: block;
    background: #983cc9;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    -webkit-transform: scalex(0);
    -moz-transform: scalex(0);
    -ms-transform: scalex(0);
    -o-transform: scalex(0);
    transform: scalex(0);
    transform-origin: center
}

.expanding-product-links-grid .content-container .expanding-content .list-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    opacity: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.expanding-product-links-grid .content-container .expanding-content .list-container ul li {
    width: 100%;
    max-width: calc(100% / 6);
    border: solid 1px #ededed;
    padding: 10px;
    opacity: 0;
    -webkit-transform: translatey(-10px);
    -moz-transform: translatey(-10px);
    -ms-transform: translatey(-10px);
    -o-transform: translatey(-10px);
    transform: translatey(-10px)
}

.expanding-product-links-grid .content-container .expanding-content .list-container ul li a {
    font-family: montserrat;
    font-weight: 500;
    font-size: 14px;
    color: #515151;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease
}

.expanding-product-links-grid .content-container .expanding-content .list-container ul li a:hover {
    color: #983cc9
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox] {
    position: absolute;
    left: -9999px
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]~.list-container {
    height: 0
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]~.list-container ul {
    opacity: 0;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container {
    height: auto
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul {
    opacity: 1;
    -webkit-transition: opacity .3s ease .2s;
    -moz-transition: opacity .3s ease .2s;
    -o-transition: opacity .3s ease .2s;
    transition: opacity .3s ease .2s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(1) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 20ms;
    -moz-transition: all .3s ease 20ms;
    -o-transition: all .3s ease 20ms;
    transition: all .3s ease 20ms
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(2) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 40ms;
    -moz-transition: all .3s ease 40ms;
    -o-transition: all .3s ease 40ms;
    transition: all .3s ease 40ms
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(3) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 60ms;
    -moz-transition: all .3s ease 60ms;
    -o-transition: all .3s ease 60ms;
    transition: all .3s ease 60ms
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(4) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 80ms;
    -moz-transition: all .3s ease 80ms;
    -o-transition: all .3s ease 80ms;
    transition: all .3s ease 80ms
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(5) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .1s;
    -moz-transition: all .3s ease .1s;
    -o-transition: all .3s ease .1s;
    transition: all .3s ease .1s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(6) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .12s;
    -moz-transition: all .3s ease .12s;
    -o-transition: all .3s ease .12s;
    transition: all .3s ease .12s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(7) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .14s;
    -moz-transition: all .3s ease .14s;
    -o-transition: all .3s ease .14s;
    transition: all .3s ease .14s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(8) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .16s;
    -moz-transition: all .3s ease .16s;
    -o-transition: all .3s ease .16s;
    transition: all .3s ease .16s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(9) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .18s;
    -moz-transition: all .3s ease .18s;
    -o-transition: all .3s ease .18s;
    transition: all .3s ease .18s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(10) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .2s;
    -moz-transition: all .3s ease .2s;
    -o-transition: all .3s ease .2s;
    transition: all .3s ease .2s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(11) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .22s;
    -moz-transition: all .3s ease .22s;
    -o-transition: all .3s ease .22s;
    transition: all .3s ease .22s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(12) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .24s;
    -moz-transition: all .3s ease .24s;
    -o-transition: all .3s ease .24s;
    transition: all .3s ease .24s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(13) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .26s;
    -moz-transition: all .3s ease .26s;
    -o-transition: all .3s ease .26s;
    transition: all .3s ease .26s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(14) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .28s;
    -moz-transition: all .3s ease .28s;
    -o-transition: all .3s ease .28s;
    transition: all .3s ease .28s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(15) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .3s;
    -moz-transition: all .3s ease .3s;
    -o-transition: all .3s ease .3s;
    transition: all .3s ease .3s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(16) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .32s;
    -moz-transition: all .3s ease .32s;
    -o-transition: all .3s ease .32s;
    transition: all .3s ease .32s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(17) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .34s;
    -moz-transition: all .3s ease .34s;
    -o-transition: all .3s ease .34s;
    transition: all .3s ease .34s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(18) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .36s;
    -moz-transition: all .3s ease .36s;
    -o-transition: all .3s ease .36s;
    transition: all .3s ease .36s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(19) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .38s;
    -moz-transition: all .3s ease .38s;
    -o-transition: all .3s ease .38s;
    transition: all .3s ease .38s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(20) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .4s;
    -moz-transition: all .3s ease .4s;
    -o-transition: all .3s ease .4s;
    transition: all .3s ease .4s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(21) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .42s;
    -moz-transition: all .3s ease .42s;
    -o-transition: all .3s ease .42s;
    transition: all .3s ease .42s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(22) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .44s;
    -moz-transition: all .3s ease .44s;
    -o-transition: all .3s ease .44s;
    transition: all .3s ease .44s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(23) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .46s;
    -moz-transition: all .3s ease .46s;
    -o-transition: all .3s ease .46s;
    transition: all .3s ease .46s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(24) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .48s;
    -moz-transition: all .3s ease .48s;
    -o-transition: all .3s ease .48s;
    transition: all .3s ease .48s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(25) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .5s;
    -moz-transition: all .3s ease .5s;
    -o-transition: all .3s ease .5s;
    transition: all .3s ease .5s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(26) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .52s;
    -moz-transition: all .3s ease .52s;
    -o-transition: all .3s ease .52s;
    transition: all .3s ease .52s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(27) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .54s;
    -moz-transition: all .3s ease .54s;
    -o-transition: all .3s ease .54s;
    transition: all .3s ease .54s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(28) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .56s;
    -moz-transition: all .3s ease .56s;
    -o-transition: all .3s ease .56s;
    transition: all .3s ease .56s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(29) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .58s;
    -moz-transition: all .3s ease .58s;
    -o-transition: all .3s ease .58s;
    transition: all .3s ease .58s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(30) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(31) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .62s;
    -moz-transition: all .3s ease .62s;
    -o-transition: all .3s ease .62s;
    transition: all .3s ease .62s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(32) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .64s;
    -moz-transition: all .3s ease .64s;
    -o-transition: all .3s ease .64s;
    transition: all .3s ease .64s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(33) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .66s;
    -moz-transition: all .3s ease .66s;
    -o-transition: all .3s ease .66s;
    transition: all .3s ease .66s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(34) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .68s;
    -moz-transition: all .3s ease .68s;
    -o-transition: all .3s ease .68s;
    transition: all .3s ease .68s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(35) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .7s;
    -moz-transition: all .3s ease .7s;
    -o-transition: all .3s ease .7s;
    transition: all .3s ease .7s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(36) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .72s;
    -moz-transition: all .3s ease .72s;
    -o-transition: all .3s ease .72s;
    transition: all .3s ease .72s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(37) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .74s;
    -moz-transition: all .3s ease .74s;
    -o-transition: all .3s ease .74s;
    transition: all .3s ease .74s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(38) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .76s;
    -moz-transition: all .3s ease .76s;
    -o-transition: all .3s ease .76s;
    transition: all .3s ease .76s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(39) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .78s;
    -moz-transition: all .3s ease .78s;
    -o-transition: all .3s ease .78s;
    transition: all .3s ease .78s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(40) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(41) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .82s;
    -moz-transition: all .3s ease .82s;
    -o-transition: all .3s ease .82s;
    transition: all .3s ease .82s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(42) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .84s;
    -moz-transition: all .3s ease .84s;
    -o-transition: all .3s ease .84s;
    transition: all .3s ease .84s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(43) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .86s;
    -moz-transition: all .3s ease .86s;
    -o-transition: all .3s ease .86s;
    transition: all .3s ease .86s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(44) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .88s;
    -moz-transition: all .3s ease .88s;
    -o-transition: all .3s ease .88s;
    transition: all .3s ease .88s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(45) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .9s;
    -moz-transition: all .3s ease .9s;
    -o-transition: all .3s ease .9s;
    transition: all .3s ease .9s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(46) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .92s;
    -moz-transition: all .3s ease .92s;
    -o-transition: all .3s ease .92s;
    transition: all .3s ease .92s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(47) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .94s;
    -moz-transition: all .3s ease .94s;
    -o-transition: all .3s ease .94s;
    transition: all .3s ease .94s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(48) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .96s;
    -moz-transition: all .3s ease .96s;
    -o-transition: all .3s ease .96s;
    transition: all .3s ease .96s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(49) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease .98s;
    -moz-transition: all .3s ease .98s;
    -o-transition: all .3s ease .98s;
    transition: all .3s ease .98s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(50) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1s;
    -moz-transition: all .3s ease 1s;
    -o-transition: all .3s ease 1s;
    transition: all .3s ease 1s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(51) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.02s;
    -moz-transition: all .3s ease 1.02s;
    -o-transition: all .3s ease 1.02s;
    transition: all .3s ease 1.02s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(52) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.04s;
    -moz-transition: all .3s ease 1.04s;
    -o-transition: all .3s ease 1.04s;
    transition: all .3s ease 1.04s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(53) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.06s;
    -moz-transition: all .3s ease 1.06s;
    -o-transition: all .3s ease 1.06s;
    transition: all .3s ease 1.06s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(54) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.08s;
    -moz-transition: all .3s ease 1.08s;
    -o-transition: all .3s ease 1.08s;
    transition: all .3s ease 1.08s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(55) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.1s;
    -moz-transition: all .3s ease 1.1s;
    -o-transition: all .3s ease 1.1s;
    transition: all .3s ease 1.1s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(56) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.12s;
    -moz-transition: all .3s ease 1.12s;
    -o-transition: all .3s ease 1.12s;
    transition: all .3s ease 1.12s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(57) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.14s;
    -moz-transition: all .3s ease 1.14s;
    -o-transition: all .3s ease 1.14s;
    transition: all .3s ease 1.14s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(58) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.16s;
    -moz-transition: all .3s ease 1.16s;
    -o-transition: all .3s ease 1.16s;
    transition: all .3s ease 1.16s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(59) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.18s;
    -moz-transition: all .3s ease 1.18s;
    -o-transition: all .3s ease 1.18s;
    transition: all .3s ease 1.18s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(60) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.2s;
    -moz-transition: all .3s ease 1.2s;
    -o-transition: all .3s ease 1.2s;
    transition: all .3s ease 1.2s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(61) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.22s;
    -moz-transition: all .3s ease 1.22s;
    -o-transition: all .3s ease 1.22s;
    transition: all .3s ease 1.22s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(62) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.24s;
    -moz-transition: all .3s ease 1.24s;
    -o-transition: all .3s ease 1.24s;
    transition: all .3s ease 1.24s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(63) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.26s;
    -moz-transition: all .3s ease 1.26s;
    -o-transition: all .3s ease 1.26s;
    transition: all .3s ease 1.26s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(64) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.28s;
    -moz-transition: all .3s ease 1.28s;
    -o-transition: all .3s ease 1.28s;
    transition: all .3s ease 1.28s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(65) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.3s;
    -moz-transition: all .3s ease 1.3s;
    -o-transition: all .3s ease 1.3s;
    transition: all .3s ease 1.3s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(66) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.32s;
    -moz-transition: all .3s ease 1.32s;
    -o-transition: all .3s ease 1.32s;
    transition: all .3s ease 1.32s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(67) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.34s;
    -moz-transition: all .3s ease 1.34s;
    -o-transition: all .3s ease 1.34s;
    transition: all .3s ease 1.34s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(68) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.36s;
    -moz-transition: all .3s ease 1.36s;
    -o-transition: all .3s ease 1.36s;
    transition: all .3s ease 1.36s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(69) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.38s;
    -moz-transition: all .3s ease 1.38s;
    -o-transition: all .3s ease 1.38s;
    transition: all .3s ease 1.38s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(70) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.4s;
    -moz-transition: all .3s ease 1.4s;
    -o-transition: all .3s ease 1.4s;
    transition: all .3s ease 1.4s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(71) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.42s;
    -moz-transition: all .3s ease 1.42s;
    -o-transition: all .3s ease 1.42s;
    transition: all .3s ease 1.42s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(72) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.44s;
    -moz-transition: all .3s ease 1.44s;
    -o-transition: all .3s ease 1.44s;
    transition: all .3s ease 1.44s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(73) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.46s;
    -moz-transition: all .3s ease 1.46s;
    -o-transition: all .3s ease 1.46s;
    transition: all .3s ease 1.46s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(74) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.48s;
    -moz-transition: all .3s ease 1.48s;
    -o-transition: all .3s ease 1.48s;
    transition: all .3s ease 1.48s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(75) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.5s;
    -moz-transition: all .3s ease 1.5s;
    -o-transition: all .3s ease 1.5s;
    transition: all .3s ease 1.5s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(76) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.52s;
    -moz-transition: all .3s ease 1.52s;
    -o-transition: all .3s ease 1.52s;
    transition: all .3s ease 1.52s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(77) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.54s;
    -moz-transition: all .3s ease 1.54s;
    -o-transition: all .3s ease 1.54s;
    transition: all .3s ease 1.54s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(78) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.56s;
    -moz-transition: all .3s ease 1.56s;
    -o-transition: all .3s ease 1.56s;
    transition: all .3s ease 1.56s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(79) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.58s;
    -moz-transition: all .3s ease 1.58s;
    -o-transition: all .3s ease 1.58s;
    transition: all .3s ease 1.58s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(80) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.6s;
    -moz-transition: all .3s ease 1.6s;
    -o-transition: all .3s ease 1.6s;
    transition: all .3s ease 1.6s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(81) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.62s;
    -moz-transition: all .3s ease 1.62s;
    -o-transition: all .3s ease 1.62s;
    transition: all .3s ease 1.62s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(82) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.64s;
    -moz-transition: all .3s ease 1.64s;
    -o-transition: all .3s ease 1.64s;
    transition: all .3s ease 1.64s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(83) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.66s;
    -moz-transition: all .3s ease 1.66s;
    -o-transition: all .3s ease 1.66s;
    transition: all .3s ease 1.66s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(84) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.68s;
    -moz-transition: all .3s ease 1.68s;
    -o-transition: all .3s ease 1.68s;
    transition: all .3s ease 1.68s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(85) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.7s;
    -moz-transition: all .3s ease 1.7s;
    -o-transition: all .3s ease 1.7s;
    transition: all .3s ease 1.7s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(86) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.72s;
    -moz-transition: all .3s ease 1.72s;
    -o-transition: all .3s ease 1.72s;
    transition: all .3s ease 1.72s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(87) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.74s;
    -moz-transition: all .3s ease 1.74s;
    -o-transition: all .3s ease 1.74s;
    transition: all .3s ease 1.74s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(88) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.76s;
    -moz-transition: all .3s ease 1.76s;
    -o-transition: all .3s ease 1.76s;
    transition: all .3s ease 1.76s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(89) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.78s;
    -moz-transition: all .3s ease 1.78s;
    -o-transition: all .3s ease 1.78s;
    transition: all .3s ease 1.78s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(90) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.8s;
    -moz-transition: all .3s ease 1.8s;
    -o-transition: all .3s ease 1.8s;
    transition: all .3s ease 1.8s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(91) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.82s;
    -moz-transition: all .3s ease 1.82s;
    -o-transition: all .3s ease 1.82s;
    transition: all .3s ease 1.82s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(92) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.84s;
    -moz-transition: all .3s ease 1.84s;
    -o-transition: all .3s ease 1.84s;
    transition: all .3s ease 1.84s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(93) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.86s;
    -moz-transition: all .3s ease 1.86s;
    -o-transition: all .3s ease 1.86s;
    transition: all .3s ease 1.86s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(94) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.88s;
    -moz-transition: all .3s ease 1.88s;
    -o-transition: all .3s ease 1.88s;
    transition: all .3s ease 1.88s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(95) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.9s;
    -moz-transition: all .3s ease 1.9s;
    -o-transition: all .3s ease 1.9s;
    transition: all .3s ease 1.9s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(96) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.92s;
    -moz-transition: all .3s ease 1.92s;
    -o-transition: all .3s ease 1.92s;
    transition: all .3s ease 1.92s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(97) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.94s;
    -moz-transition: all .3s ease 1.94s;
    -o-transition: all .3s ease 1.94s;
    transition: all .3s ease 1.94s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(98) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.96s;
    -moz-transition: all .3s ease 1.96s;
    -o-transition: all .3s ease 1.96s;
    transition: all .3s ease 1.96s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(99) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 1.98s;
    -moz-transition: all .3s ease 1.98s;
    -o-transition: all .3s ease 1.98s;
    transition: all .3s ease 1.98s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container ul li:nth-child(100) {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: all .3s ease 2s;
    -moz-transition: all .3s ease 2s;
    -o-transition: all .3s ease 2s;
    transition: all .3s ease 2s
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked~.list-container:before {
    -webkit-transform: scalex(1);
    -moz-transform: scalex(1);
    -ms-transform: scalex(1);
    -o-transform: scalex(1);
    transform: scalex(1)
}

.expanding-product-links-grid .content-container .expanding-content input[type=checkbox]:checked label:after {
    content: '\e882'
}

@media only screen and (max-width:500px) {
    .expanding-product-links-grid .content-container .expanding-content .list-container ul li {
        width: 100%;
        max-width: calc(100% / 2) !important
    }
}

@media only screen and (max-width:900px) {
    .expanding-product-links-grid .content-container .expanding-content .list-container ul li {
        width: 100%;
        max-width: calc(100% / 4)
    }
}

.expanding-tip {
    width: 100%;
    background: #fff;
    position: relative;
    margin-bottom: 30px
}

.expanding-tip .title {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    font-size: 1em;
    font-family: montserrat;
    color: #00a9e0;
    text-align: center
}

.expanding-tip .wysiwyg-content {
    margin: 0;
    height: 0;
    padding: 0;
    background-color: #f5f5f5;
    position: relative;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 5px #00000052
}

.expanding-tip .wysiwyg-content:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f5f5f5;
    position: absolute;
    top: -10px;
    left: calc(50% - 5px)
}

.expanding-tip input[type=checkbox] {
    position: absolute;
    left: -9999px
}

.expanding-tip input[type=checkbox]~.wysiwyg-content {
    height: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.expanding-tip input[type=checkbox]:checked~.wysiwyg-content {
    height: auto;
    opacity: 1;
    padding: 15px;
    margin-top: 25px;
    pointer-events: all;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease
}

.expanding-tip input[type=checkbox]:checked~.wysiwyg-content ul li {
    opacity: 1;
    width: 100%
}

.feature-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px
}

.feature-cards .content-header {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between
}

.feature-cards .content-container {
    width: 100%;
    max-width: 1400px
}

.feature-cards .content-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}

.feature-cards .content-container ul li {
    max-width: calc(100% / 4);
    cursor: pointer;
    background: #fff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    position: relative
}

.feature-cards .content-container ul li .content {
    width: 100%;
    padding: 20px;
    text-align: center
}

.feature-cards .content-container ul li .image-container {
    width: 100%;
    overflow: hidden
}

.feature-cards .content-container ul li img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.feature-cards .content-container ul li h5 {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1.15em;
    font-size: 1em;
    line-height: 1.4em;
    letter-spacing: .02em;
    margin-bottom: 10px;
    color: #000;
    padding: 0;
    opacity: 1;
    -webkit-transition: all .3s ease .1s;
    -moz-transition: all .3s ease .1s;
    -o-transition: all .3s ease .1s;
    transition: all .3s ease .1s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.feature-cards .content-container ul li span.lnr {
    margin-right: 10px
}

.feature-cards .content-container ul li .label {
    background: #474c55;
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    padding: 6px 10px 4px 10px;
    font-size: .9em;
    line-height: 1em;
    margin: 0 0 1em
}

.feature-cards .content-container ul li a.button {
    margin-left: 0;
    padding-left: 0
}

.feature-cards .content-container ul li .time,
.feature-cards .content-container ul li ldate {
    margin-bottom: 10px
}

.feature-cards .content-container ul li:after {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    pointer-events: none
}

.feature-cards .content-container ul li:hover {
    z-index: 3333;
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px)
}

.feature-cards .content-container ul li:hover .image-container img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.feature-cards .content-container ul li:hover:after {
    opacity: 1
}

@media only screen and (max-width:767px) {
    .feature-cards .content-container ul li {
        max-width: calc(100%)
    }
}

@media only screen and (max-width:1399px) {
    .feature-cards .content-container {
        max-width: calc(100% - 30px)
    }
}

.unclickbale {
    cursor: default !important
}

.feature-content.centered {
    text-align: center
}

.feature-content.centered * {
    text-align: center
}

.generic-carousel .owl-carousel {
    height: 100%
}

.generic-carousel .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    width: 10px;
    left: calc(50% - 5px)
}

.generic-carousel .owl-carousel .owl-dots .owl-dot {
    padding: 5px;
    float: left
}

.generic-carousel .owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 500px;
    background: #fff;
    border: solid 1px #979797;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.generic-carousel .owl-carousel .owl-dots .owl-dot.active span {
    background: #979797;
    border: solid 1px #979797
}

.generic-carousel .owl-carousel .owl-dots .owl-dot:hover span {
    background: #983cc9;
    border-color: #983cc9;
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4)
}

.hero-content {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center
}

.hero-content .content-container {
    width: 100%;
    max-width: 1400px;
    text-align: center
}

.hero-content .content-container .left {
    text-align: left
}

.hero-content .content-container .right {
    text-align: right
}

.intro-hero-content {
    margin: 60px 0
}

.intro-hero-content p {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 1.125em;
    line-height: 1.688em
}

.intro-hero-content p strong {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif
}

.intro-content {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: center
}

.intro-content .content-container {
    width: 100%;
    max-width: 1400px;
    text-align: center
}

.intro-content .content-container h2 {
    font-family: montserrat, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    display: block;
    font-weight: 200;
    padding: 0;
    font-size: 2.5em;
    line-height: 1.2em;
    color: #000
}

.intro-content .content-container.left {
    text-align: left
}

.intro-content .content-container.left .button.btn-cta {
    padding-left: 0
}

.intro-content .content-container.right {
    text-align: right
}

@media only screen and (max-width:767px) {
    .intro-content {
        padding-left: 40px !important;
        padding-right: 40px !important
    }

    .intro-content .content-container .media-link-image {
        margin: 18px 0;
        padding: 10px
    }
}

@media (min-width:425px) and (max-width:768px) {

    .diagnostics-container .two-column-body-container .sublayout,
    .diagnostics-container .two-column-body-container .sublayout-two-column-dynamic,
    .diagnostics-container .two-column-body-container .sublayout-two-column-dynamic .sublayout-content {
        flex-direction: column !important
    }

    .diagnostics-container .two-column-body-container .sublayout div[class*=column],
    .diagnostics-container .two-column-body-container .sublayout-two-column-dynamic .sublayout-content div[class*=column],
    .diagnostics-container .two-column-body-container .sublayout-two-column-dynamic div[class*=column] {
        width: 100% !important
    }
}

.info-feature {
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    overflow-y: hidden !important;
    position: relative
}

.info-feature .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around
}

.info-feature .content-container .info-feature-content {
    width: calc(100% - 50px);
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column
}

.info-feature .content-container .info-feature-image {
    width: calc(100% - 50px);
    max-width: 450px;
    display: flex
}

.info-feature .image-alignment {
    flex-direction: row-reverse
}

@media only screen and (max-width:767px) {
    .info-feature {
        padding-left: 40px !important;
        padding-right: 40px !important
    }

    .info-feature .content-container {
        flex-direction: column
    }

    .info-feature .content-container .info-feature-content {
        width: 100%
    }

    .info-feature .image-alignment {
        flex-direction: row-reverse;
        flex-wrap: wrap-reverse
    }
}

.maxed-height-card {
    height: 100% !important;
    border-radius: 0
}

.icon-card {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1) !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1) !important
}

.icon-card .image-card-box {
    padding-top: 3.688em !important;
    padding-bottom: 3.688em !important;
    overflow: hidden;
    width: 100%;
    background: rgba(0, 0, 0, .05)
}

.icon-card .image-card-box.no-padding {
    padding: 0 !important
}

.icon-card .image-card-box img.icon-restricted-size {
    display: block;
    width: auto;
    max-width: 100%;
    margin: auto;
    border-radius: inherit
}

.icon-card .image-card-box .image-restricted-size {
    height: 6.25em !important;
    width: initial !important;
    margin: auto
}

.icon-card .image-card-box:after {
    content: '';
    position: absolute;
    top: calc(50% - 250px);
    left: calc(50% - 250px);
    background: #f1f1f1;
    width: 500px;
    height: 500px;
    border-radius: 1000px;
    -webkit-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    z-index: -1
}

.icon-card:hover {
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px)
}

.icon-card:hover a.card-header-text {
    color: #983cc9 !important
}

.icon-card:hover .image-card-box:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.icon-card:hover:after {
    opacity: 1
}

.icon-card .card-header-text {
    padding-top: 1em;
    padding-bottom: .25em;
    font-family: montserrat !important;
    font-weight: 300 !important;
    font-size: 1.875em !important;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.17;
    letter-spacing: .025em;
    text-align: center;
    color: #000;
    hyphens: auto
}

.icon-card .card-content-text {
    padding-left: 1.875em;
    padding-right: 1.875em;
    padding-top: .938em;
    padding-bottom: .45em;
    font-family: proximanova, montserrat, sans-serif;
    font-size: 1.125em;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    word-break: break-word
}

.icon-card .card-explorer-padding {
    padding-bottom: 2.5em !important
}

.icon-card .explore-link {
    font-family: montserrat !important;
    font-weight: 500 !important
}

.icon-card .explore-link a {
    color: #983cc9 !important
}

.icon-card .explore-link a i {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.icon-card .explore-link a:hover i {
    -webkit-transform: translatex(5px);
    -moz-transform: translatex(5px);
    -ms-transform: translatex(5px);
    -o-transform: translatex(5px);
    transform: translatex(5px)
}

.icon-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    visibility: initial !important;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s ease-in-out
}

.clickable {
    cursor: pointer
}

.image-cards {
    width: 100%;
    padding: 0 !important;
    margin: 0
}

.image-cards h1 {
    font-size: 3em
}

@media only screen and (max-width:768px) {
    .image-cards h1 {
        font-size: calc(16px   2.95vw)
    }
}

.image-cards h2 {
    font-size: 1.45em
}

@media only screen and (max-width:768px) {
    .image-cards h2 {
        font-size: calc(16px   2.15vw)
    }
}

.image-cards .container {
    background-color: #d3d3d3;
    padding-bottom: 2em
}

.image-cards .container .content-container {
    max-width: 1400px;
    margin: auto
}

.image-cards .container .content-container .heading-content {
    padding-top: 5%
}

@media only screen and (min-width:768px) {
    .image-cards .container .content-container .heading-content {
        padding-top: 2%
    }
}

@media only screen and (min-width:768px) {
    .image-cards .container .content-container .image-cards-list {
        display: flex
    }
}

@media only screen and (min-width:768px) {
    .image-cards .container .content-container .image-cards-list .column {
        width: 33.33333%
    }
}

.image-cards .container .content-container .image-cards-list .image-card-content {
    padding: 14px;
    background: #fff;
    background-clip: content-box;
    margin-top: 1em;
    box-shadow: none !important
}

.image-cards .container .content-container .image-cards-list .image-card-content:hover {
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px)
}

.image-cards .container .content-container .image-cards-list .image-card-content .card-header-text {
    padding-top: 1em;
    padding-bottom: .25em;
    font-family: montserrat !important;
    font-weight: 300 !important;
    font-size: 30px !important;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: .025em;
    text-align: center
}

.image-cards .container .content-container .image-cards-list .image-card-content .card-content-text {
    padding-left: 1.875em;
    padding-right: 1.875em;
    padding-top: .938em;
    padding-bottom: .45em;
    font-family: proximanova, montserrat, sans-serif;
    font-size: 18px !important;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    word-break: break-word
}

.image-cards .container .content-container .image-cards-list .image-card-content .card-explorer-padding {
    padding-bottom: 2.5em !important
}

.image-cards .container .content-container .image-cards-list .image-card-content:hover a.card-header-text {
    color: #983cc9 !important
}

.login-page,
.registration-page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0
}

.login-page .content-container,
.registration-page .content-container {
    width: 100%;
    max-width: 390px
}

.login-page .content-container button[type=submit],
.registration-page .content-container button[type=submit] {
    width: 100%
}

.login-page .content-container .login-inline-form .error.message,
.registration-page .content-container .login-inline-form .error.message {
    display: none
}

.login-page .content-container .login-inline-form.loading,
.registration-page .content-container .login-inline-form.loading {
    opacity: .4
}

.login-page .content-container .login-inline-form.loading .form-elements,
.registration-page .content-container .login-inline-form.loading .form-elements {
    opacity: .2;
    pointer-events: none
}

.login-page .content-container .login-inline-form.loading .loader,
.registration-page .content-container .login-inline-form.loading .loader {
    display: block
}

.line-break {
    width: 100%;
    height: 50px;
    display: block;
    position: relative
}

.line-break:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #979797;
    position: absolute;
    top: 50%;
    left: 0
}

.list-explorer {
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    overflow-y: hidden !important;
    position: relative
}

.list-explorer .floating-bg {
    background: url(/uploads/image/cimage/geometric-bg.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.list-explorer .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.list-explorer .content-container .intro-text {
    margin-bottom: 60px;
    width: 100%
}

.list-explorer .content-container .intro-text h2 {
    color: #fff
}

.list-explorer .content-container .intro-text h2 span {
    color: #fff
}

.list-explorer .content-container .intro-text p {
    color: #fff
}

.list-explorer .content-container .list-controller {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 925px
}

.list-explorer .content-container .list-controller .controller-header {
    background: #2d2d2d;
    min-height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.list-explorer .content-container .list-controller .controller-header .ui.selection.dropdown {
    width: 80%;
    max-width: 600px;
    height: 50px
}

.list-explorer .content-container .list-controller .controller-header .ui.selection.dropdown .text {
    font-size: 1.25rem;
    line-height: 2rem;
    font-family: montserrat;
    font-weight: 300
}

.list-explorer .content-container .list-controller .controller-header .ui.selection.dropdown .dropdown.icon {
    font-size: 1.5rem;
    line-height: .5rem;
    right: 10px
}

.list-explorer .content-container .list-controller .controller-header .ui.selection.dropdown .menu .item {
    font-size: 1rem;
    line-height: 1rem;
    font-family: montserrat;
    font-weight: 300
}

.list-explorer .content-container .list-controller .controller-list {
    width: 100%;
    background: #fff;
    padding: 30px;
    display: none
}

.list-explorer .content-container .list-controller .controller-list.active {
    display: initial
}

.list-explorer .content-container .list-controller .controller-list ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0
}

.list-explorer .content-container .list-controller .controller-list ul li {
    position: relative;
    user-select: none;
    cursor: pointer;
    height: 60px;
    z-index: 0
}

.list-explorer .content-container .list-controller .controller-list ul li .item-content {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1.125rem;
    color: #983cc9;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    border-bottom: solid #e6e6e6 1px;
    z-index: 2
}

.list-explorer .content-container .list-controller .controller-list ul li .item-content span {
    font-family: proximanova;
    font-size: 1rem;
    color: #000
}

.list-explorer .content-container .list-controller .controller-list ul li:last-child .item-content {
    border: none
}

.list-explorer .content-container .list-controller .controller-list ul li:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #fafafa;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.list-explorer .content-container .list-controller .controller-list ul li:hover {
    z-index: 3
}

.list-explorer .content-container .list-controller .controller-list ul li:hover .item-content {
    border-color: rgba(250, 250, 250, 0)
}

.list-explorer .content-container .list-controller .controller-list ul li:hover:after {
    opacity: 1;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03)
}

.media-showcase-simple {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center
}

.media-showcase-simple .vidyard-lightbox-image {
    position: relative !important
}

.media-showcase-simple .content-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.media-showcase-simple .content-container .image {
    margin-right: 40px;
    width: 30%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: #000
}

.media-showcase-simple .content-container .image a {
    width: 100%;
    text-decoration: none
}

.media-showcase-simple .content-container .image img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.media-showcase-simple .content-container .image:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1
}

.media-showcase-simple .content-container .image:hover:before {
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9)
}

.media-showcase-simple .content-container .image:hover:after {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.media-showcase-simple .content-container .content {
    width: 70%
}

.media-showcase-simple .content-container .content h2:hover {
    color: #983cc9
}

.media-showcase-simple .content-container .content a.ui.button.btn-cta.primary {
    padding-left: 0
}

.media-showcase-simple .media-alignment {
    flex-direction: row-reverse
}

@media only screen and (max-width:767px) {
    .media-showcase-simple .content-container {
        flex-direction: column
    }

    .media-showcase-simple .content-container .image {
        margin-right: 0;
        width: calc(100% - 30px);
        height: auto
    }

    .media-showcase-simple .content-container .content {
        width: calc(100% - 30px)
    }

    .media-showcase-simple .media-alignment {
        flex-direction: row-reverse;
        flex-wrap: wrap-reverse
    }
}

.media-showcase .video {
    text-align: right
}

.page-content {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center
}

.page-content .content-container {
    width: 100%;
    max-width: 1400px
}

.photo-hero-small {
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    overflow-y: hidden !important;
    position: relative;
    margin: 30px 0
}

.photo-hero-small .floating-bg {
    background-position: center !important;
    background-size: cover !important;
    position: absolute !important;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.photo-hero-small .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.photo-hero-small .content-container h1 {
    color: #fff;
    font-size: 6rem
}

@media only screen and (max-width:767px) {
    .photo-hero-small .content-container h1 {
        font-size: 3rem
    }
}

.photo-hero-dual-cta {
    width: 100%;
    min-height: 450px;
    display: flex;
    overflow-y: hidden !important;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center
}

.photo-hero-dual-cta .floating-bg {
    background-position: center !important;
    background-size: cover !important;
    position: absolute !important;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.photo-hero-dual-cta .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.photo-hero-dual-cta .heading-container {
    z-index: 5;
    width: 70%
}

.photo-hero-dual-cta .xl-banner-heading {
    font-style: normal;
    width: 100%;
    font-stretch: normal;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 50px rgba(0, 0, 0, .37);
    line-height: normal;
    z-index: 5;
    font-size: 6.25em;
    font-family: montserrat;
    letter-spacing: 3px;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .4s;
    -moz-transition: all .3s ease .4s;
    -o-transition: all .3s ease .4s;
    transition: all .3s ease .4s
}

.photo-hero-dual-cta .xl-banner-heading.left {
    text-align: left
}

.photo-hero-dual-cta .xl-banner-heading.right {
    text-align: right
}

.photo-hero-dual-cta .xl-banner-heading.center {
    text-align: center
}

@media only screen and (max-width:767px) {
    .photo-hero-dual-cta .xl-banner-heading {
        font-size: 3.438em;
        letter-spacing: 1.4px
    }
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (-webkit-min-device-pixel-ratio:1) {
    .photo-hero-dual-cta .xl-banner-heading {
        font-size: 4.5em;
        letter-spacing: 1.4px
    }
}

.photo-hero-dual-cta .banner-heading {
    font-style: normal;
    width: 100%;
    font-stretch: normal;
    text-align: center;
    color: #fff;
    line-height: normal;
    font-family: montserrat;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

.photo-hero-dual-cta .banner-heading.left {
    text-align: left
}

.photo-hero-dual-cta .banner-heading.right {
    text-align: right
}

.photo-hero-dual-cta .banner-heading.center {
    text-align: center
}

@media only screen and (max-width:767px) {
    .photo-hero-dual-cta .banner-heading {
        font-size: 2.563em;
        letter-spacing: .7px
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-dual-cta .banner-heading {
        font-size: 3.563em;
        letter-spacing: .5px
    }
}

.photo-hero-dual-cta .banner-details {
    color: #fff;
    font-weight: 300;
    width: 100%;
    margin: 15px 0 0 0;
    line-height: normal;
    font-family: montserrat;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.photo-hero-dual-cta .banner-details.left {
    text-align: left
}

.photo-hero-dual-cta .banner-details.right {
    text-align: right
}

.photo-hero-dual-cta .banner-details.center {
    text-align: center
}

@media only screen and (max-width:767px) {
    .photo-hero-dual-cta .banner-details {
        font-size: 1.2em
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-dual-cta .banner-details {
        font-size: 1.875em
    }
}

.photo-hero-dual-cta .ui.button {
    z-index: 5;
    position: relative;
    -webkit-transform: translatey(20px);
    -moz-transform: translatey(20px);
    -ms-transform: translatey(20px);
    -o-transform: translatey(20px);
    transform: translatey(20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.photo-hero-dual-cta .ui.button.primary {
    font-family: montserrat;
    font-weight: 500;
    font-size: 1.125em;
    color: #fff;
    background-color: #983cc9;
    border: 1px solid #983cc9;
    cursor: pointer;
    min-width: 141px
}

.photo-hero-dual-cta .ui.button.secondary {
    font-family: montserrat;
    font-weight: 500;
    font-size: 1.125em;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    margin-left: 18px;
    cursor: pointer;
    min-width: 141px
}

@media only screen and (max-width:452px) {
    .photo-hero-dual-cta .ui.button.secondary {
        font-size: 1.2em;
        margin-left: 0;
        margin-top: 18px
    }
}

.photo-hero-dual-cta .carousel-button-wrapper {
    width: 100%
}

.photo-hero-dual-cta .carousel-button-wrapper.left {
    text-align: left
}

.photo-hero-dual-cta .carousel-button-wrapper.right {
    text-align: right
}

.photo-hero-dual-cta .carousel-button-wrapper.center {
    text-align: center
}

.photo-hero-promotional-banner {
    width: 100%;
    min-height: 250px;
    display: flex;
    overflow-y: hidden !important;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center
}

.photo-hero-promotional-banner .floating-bg {
    background-position: center !important;
    background-size: cover !important;
    position: absolute !important;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.photo-hero-promotional-banner .content-container {
    width: 100%;
    max-width: 1370px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.photo-hero-promotional-banner .heading-container {
    z-index: 5;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    position: relative
}

@media only screen and (min-width:768px) {
    .photo-hero-promotional-banner .heading-container {
        width: 100%;
        height: 100%
    }

    .photo-hero-promotional-banner .heading-container .left {
        padding-right: 10% !important
    }

    .photo-hero-promotional-banner .heading-container .right {
        padding-left: 10% !important
    }
}

.photo-hero-promotional-banner .banner-heading {
    font-style: normal;
    width: 100%;
    font-stretch: normal;
    text-align: center;
    color: #fff;
    line-height: normal;
    font-family: montserrat;
    margin-top: .9rem;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

.photo-hero-promotional-banner .banner-heading.left {
    text-align: left
}

.photo-hero-promotional-banner .banner-heading.right {
    text-align: right
}

.photo-hero-promotional-banner .banner-heading.center {
    text-align: center
}

@media only screen and (max-width:767px) {
    .photo-hero-promotional-banner .banner-heading {
        font-size: 2.263em;
        letter-spacing: .7px
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-promotional-banner .banner-heading {
        font-size: 3.5em;
        letter-spacing: .5px
    }
}

.photo-hero-promotional-banner .banner-details {
    color: #fff;
    font-weight: 300;
    width: 100%;
    line-height: normal;
    font-family: montserrat;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.photo-hero-promotional-banner .banner-details.left {
    text-align: left
}

.photo-hero-promotional-banner .banner-details.right {
    text-align: right
}

.photo-hero-promotional-banner .banner-details.center {
    text-align: center
}

@media only screen and (max-width:767px) {
    .photo-hero-promotional-banner .banner-details {
        font-size: .7em
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-promotional-banner .banner-details {
        font-size: 1em
    }
}

.photo-hero-promotional-banner .ui.button {
    z-index: 5;
    position: relative
}

.photo-hero-promotional-banner .ui.button.primary {
    font-family: montserrat;
    font-weight: 500;
    font-size: 1.125rem;
    color: #fff;
    background-color: #983cc9;
    border: 1px solid #983cc9;
    cursor: pointer
}

.photo-hero-promotional-banner .ui.button.primary:hover {
    color: #fff;
    background-color: #983cc9
}

.photo-hero-promotional-banner .ui.button.secondary {
    font-family: montserrat;
    font-weight: 500;
    font-size: 1.125rem;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    margin-left: 18px;
    cursor: pointer
}

@media only screen and (max-width:452px) {
    .photo-hero-promotional-banner .ui.button.secondary {
        font-size: 1.2em;
        margin-left: 0;
        margin-top: 18px
    }
}

.photo-hero-promotional-banner .ui.button.secondary:hover {
    color: #000;
    background-color: #fff
}

.photo-hero-promotional-banner .carousel-button-wrapper {
    width: 100%
}

.photo-hero-promotional-banner .carousel-button-wrapper.left {
    text-align: left
}

.photo-hero-promotional-banner .carousel-button-wrapper.right {
    text-align: right
}

.photo-hero-promotional-banner .carousel-button-wrapper.center {
    text-align: center
}

.product-list {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background: #f8f8f8
}

.product-list .heading {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.product-list .content-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    max-width: 1400px
}

.page-scrolling {
    height: 40px;
    padding: 0;
    margin: 0;
    z-index: 99;
    width: 100%;
    text-align: center
}

.page-scrolling a {
    font-size: 16px;
    font-weight: 700;
    color: #983cc9;
    letter-spacing: 0;
    width: 100px;
    height: 50px;
    cursor: pointer
}

.page-scrolling a i {
    margin: auto;
    display: block;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 33px;
    border-radius: 400px;
    user-select: none;
    background: #fff;
    border: 1px solid #d5d5d5;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .18);
    -moz-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .18);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .18);
    color: #983cc9;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.page-scrolling a:hover i {
    background: #983cc9;
    color: #fff;
    border-color: #983cc9
}

.photo-feature {
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    overflow-y: hidden !important;
    position: relative
}

.photo-feature .floating-bg {
    background-position: center !important;
    background-size: cover !important;
    position: absolute !important;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.photo-feature .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.photo-feature .content-container .photo-feature-content {
    align-self: flex-end;
    background-color: #fff;
    width: calc(100% - 50px);
    max-width: 450px;
    margin-right: 20px;
    text-align: left;
    display: block;
    margin: 30px;
    padding: 45px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column
}

.photo-feature .content-container .photo-feature-content.left {
    align-self: flex-start
}

.photo-feature .content-container .photo-feature-content.right {
    align-self: flex-end
}

.photo-feature .content-container .photo-feature-content.center {
    align-self: center
}

@media only screen and (max-width:767px) {
    .photo-feature {
        padding: 20px !important;
        min-height: inherit
    }

    .photo-feature .content-container .photo-feature-content {
        width: 100%;
        align-self: center;
        font-size: 1em;
        margin: 0;
        padding: 20px
    }
}

.product-card {
    width: calc((100% - 80px)/ 4);
    line-height: 4;
    background: #fff;
    margin: 20px 10px 0 10px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
    position: relative;
    cursor: pointer;
    -webkit-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.product-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s ease-in-out
}

.product-card .product-thumb {
    width: 100%;
    height: auto
}

.product-card .product-description,
.product-card .product-specs {
    padding: 15px;
    text-align: left
}

.product-card .product-description {
    position: relative
}

.product-card .product-description p {
    max-height: 4.3em;
    overflow: hidden
}

.product-card .product-description .label {
    background: #474c55;
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    padding: 6px 10px 4px 10px;
    font-size: .9em;
    line-height: 1em;
    margin: 0 0 1em
}

.product-card .product-description a.ui.button.btn-cta {
    padding: 0 20px 0 0
}

.product-card hr {
    margin: 15px 0 30px 0;
    border: none;
    border-bottom: solid 1px #d5d5d5
}

.product-card .product-specs {
    padding: 0 15px 15px 15px
}

.product-card .product-specs label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #983cc9;
    letter-spacing: .5px;
    line-height: 12px;
    text-transform: uppercase
}

.product-card .product-specs ul {
    padding: 5px 0 10px 15px;
    margin: 0
}

.product-card .product-specs ul li {
    font-family: proximanova;
    font-size: 14px;
    color: #000;
    letter-spacing: 0;
    line-height: 18px
}

.product-card:hover {
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px)
}

.product-card:hover:after {
    opacity: 1
}

@media only screen and (max-width:1200px) and (min-width:767px) {
    .product-card {
        width: calc((100% - 80px)/ 3)
    }
}

@media only screen and (max-width:767px) {
    .product-card {
        width: calc((100% - 50px)/ 2)
    }
}

@media only screen and (max-width:540px) {
    .product-card {
        width: calc((100% - 50px))
    }
}

.unclickbale {
    cursor: default !important
}

.maxed-height-card {
    height: 100% !important;
    border-radius: 0
}

.photo-card {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1) !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1) !important
}

.photo-card .image-card-box {
    padding-top: 3.688em !important;
    padding-bottom: 3.688em !important;
    overflow: hidden
}

.photo-card .image-card-box.no-padding {
    padding: 0 !important
}

.photo-card .image-card-box img.icon-restricted-size {
    display: block;
    width: auto;
    max-width: 100%;
    margin: auto;
    border-radius: inherit
}

.photo-card .image-card-box .image-restricted-size {
    height: 6.25em !important;
    width: initial !important;
    margin: auto
}

.photo-card .image-card-box:after {
    content: '';
    position: absolute;
    top: calc(50% - 250px);
    left: calc(50% - 250px);
    background: #f1f1f1;
    width: 500px;
    height: 500px;
    border-radius: 1000px;
    -webkit-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    z-index: -1
}

.photo-card:hover {
    -webkit-transform: translatey(-5px);
    -moz-transform: translatey(-5px);
    -ms-transform: translatey(-5px);
    -o-transform: translatey(-5px);
    transform: translatey(-5px)
}

.photo-card:hover a.card-header-text {
    color: #983cc9 !important
}

.photo-card:hover .image-card-box:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.photo-card:hover:after {
    opacity: 1
}

.photo-card .card-header-text {
    padding-top: 1em;
    padding-bottom: .25em;
    font-family: montserrat !important;
    font-weight: 300 !important;
    font-size: 1.875em !important;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.17;
    letter-spacing: .025em;
    text-align: center;
    color: #000;
    hyphens: auto
}

.photo-card .card-content-text {
    padding-left: 1.875em;
    padding-right: 1.875em;
    padding-top: .938em;
    padding-bottom: .45em;
    font-family: proximanova, montserrat, sans-serif;
    font-size: 1.125em;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    word-break: break-word
}

.photo-card .card-explorer-padding {
    padding-bottom: 2.5em !important
}

.photo-card .explore-link {
    font-family: montserrat !important;
    font-weight: 500 !important
}

.photo-card .explore-link a {
    color: #983cc9 !important
}

.photo-card .explore-link a i {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.photo-card .explore-link a:hover i {
    -webkit-transform: translatex(5px);
    -moz-transform: translatex(5px);
    -ms-transform: translatex(5px);
    -o-transform: translatex(5px);
    transform: translatex(5px)
}

.photo-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    visibility: initial !important;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s ease-in-out
}

@media only screen and (max-width:767px) {
    .photo-card .content {
        padding: 1em 1.5em !important
    }

    .photo-card .content .card-content-text {
        padding-left: 0;
        padding-right: 0
    }
}

.photo-header-container {
    background: 0 0 !important;
    height: 210px;
    overflow: visible
}

.editor-mode .photo-header-container {
    height: auto;
    min-height: 210px
}

.photo-header-container .photo-header-container {
    width: 100%;
    max-width: 1400px
}

.photo-header-container .photo-header-container .breadcrumb-container {
    width: calc(100% - 150px);
    float: left;
    text-align: left
}

.photo-header-container .photo-header-container .breadcrumb-container .breadcrumbs a {
    color: #000
}

.photo-header-container .photo-header-container .breadcrumb-container .breadcrumbs i {
    color: #983cc9;
    font-size: 14px
}

.photo-header-container .photo-header-container .breadcrumb-container .breadcrumbs span {
    color: #000
}

.photo-header-container .photo-header-container .breadcrumb-container .breadcrumbs span.breadcrumb-divider {
    color: #000
}

.photo-header-container .photo-header-container .share-container {
    width: 150px;
    float: left
}

.photo-header-container .photo-header-container .share-container .share-menu {
    color: #000
}

.photo-header-container .photo-header-container .share-container .share-menu a svg {
    fill: #000
}

.photo-header-container .photo-header-container .share-container .share-menu a:hover svg {
    fill: #983cc9
}

.photo-header-container .photo-header {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1 !important;
    margin: 0 !important;
    padding: 0 !important
}

.photo-header-container .photo-header .photo-feature-img-wrapper {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    background: #f8f8f8
}

.photo-header-container .photo-header .photo-feature-img-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .48);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .48) 0, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(0, 0, 0, .48)), color-stop(48%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .48) 0, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, .48) 0, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, .48) 0, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .48) 0, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0) 100%)
}

.photo-header-container .photo-header .photo-feature-img-wrapper .photo-feature-content .large-text {
    color: #000
}

.photo-header-container .photo-header .photo-feature-img-wrapper:after {
    display: none
}

.photo-header-container .photo-header .photo-feature-img-wrapper .photo-feature-content {
    width: 100%;
    max-width: 1400px
}

.photo-header-container .photo-header .photo-feature-img-wrapper .photo-feature-content h1,
.photo-header-container .photo-header .photo-feature-img-wrapper .photo-feature-content h2 {
    width: 100%;
    padding: 0 20px;
    text-align: left;
    color: #fff;
    letter-spacing: .5px;
    line-height: 45px;
    font-size: 40px;
    font-weight: lighter;
    font-family: proximanovalight, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    transform: translatey(-20px)
}

.photo-header-container.light-text .photo-header .photo-feature-img-wrapper .photo-feature-content .large-text {
    color: #fff
}

.photo-header-container.light-text .photo-header .photo-feature-img-wrapper:after {
    display: none
}

.photo-header-container.light-text .breadcrumbs a {
    color: #fff !important
}

.photo-header-container.light-text .breadcrumbs i {
    color: #983cc9 !important
}

.photo-header-container.light-text .breadcrumbs span {
    color: #fff !important
}

.photo-header-container.light-text .breadcrumbs span.breadcrumb-divider {
    color: #fff !important
}

.photo-header-container.light-text .share-container .share-menu {
    color: #fff !important
}

.photo-header-container.light-text .share-container .share-menu a svg {
    fill: #979797 !important
}

.photo-header-container.light-text .share-container .share-menu a:hover svg {
    fill: #983cc9 !important
}

.photo-header-container.no-background {
    height: auto !important
}

.photo-header-container.no-background .photo-header-container {
    height: auto !important
}

.photo-header-container.no-background .breadcrumb-container {
    width: calc(100% - 150px);
    float: left;
    text-align: left
}

.photo-header-container.no-background .breadcrumb-container .breadcrumbs a {
    color: #000
}

.photo-header-container.no-background .breadcrumb-container .breadcrumbs i {
    color: #000;
    font-size: 14px
}

.photo-header-container.no-background .breadcrumb-container .breadcrumbs span {
    color: #000
}

.photo-header-container.no-background .breadcrumb-container .breadcrumbs span.breadcrumb-divider {
    color: #000
}

.photo-header-container.no-background .share-container {
    width: 150px;
    float: left
}

.photo-header-container.no-background .share-container .share-menu {
    color: #000
}

.photo-header-container.no-background .share-container .share-menu a svg {
    fill: #979797
}

.photo-header-container.no-background .share-container .share-menu a:hover svg {
    fill: #983cc9
}

@media only screen and (max-width:767px) {
    .photo-header-container .breadcrumb-container {
        display: none
    }

    .photo-header-container .share-container {
        display: none
    }

    .photo-header-container .photo-header h1,
    .photo-header-container .photo-header h2 {
        font-size: 24px !important;
        line-height: initial !important
    }
}

@media all and (max-width:1024px) and (min-width:767px) {

    .photo-header-container .photo-header h1,
    .photo-header-container .photo-header h2 {
        font-size: 32px !important;
        line-height: initial !important
    }
}

.product-ordering {
    padding: 10px 0 10px 0;
    justify-content: center;
    display: flex;
    position: relative;
    z-index: 1
}

.product-ordering.product-variants {
    position: relative;
    z-index: 2
}

.product-ordering.product-variants .input-group {
    margin-bottom: 0
}

.product-ordering.dynamic-product-content {
    justify-content: center !important
}

.product-ordering.dynamic-product-content .content-container {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center
}

.product-ordering.dynamic-product-content .content-container .input-group {
    position: relative;
    margin-bottom: 30px;
    max-width: 400px;
    min-width: 270px
}

.product-ordering.dynamic-product-content .content-container .product-links {
    width: auto
}

.product-ordering .content-container {
    width: 100%;
    max-width: 1000px
}

.product-ordering .dropdown {
    display: block
}

.product-ordering .request-btn {
    float: left;
    margin-top: 10px;
    margin-bottom: 10px
}

.product-ordering .product-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 15px 0;
    width: 100%
}

.product-ordering .product-links a {
    margin-right: 15px
}

@media only screen and (max-width:767px) {
    .product-ordering .content-container {
        max-width: 90%
    }
}

.product-tabs {
    background: #f8f8f8;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 60px;
    display: flex !important;
    justify-content: center !important
}

.product-tabs .tabs-mobile-dropdown {
    display: none
}

.product-tabs .tabs {
    padding: 0 20px
}

.product-tabs .tabs .ui.pointing.secondary.menu {
    margin-bottom: 30px !important
}

.product-tabs .tabs .ui.pointing.secondary.menu .item {
    align-self: flex-start
}

.product-tabs .tabs .tab {
    padding: 0;
    margin: 0
}

.product-tabs .tabs .tab table {
    width: 100%;
    background-color: #f8f8f8
}

.product-tabs .tabs .tab .results-list .search-results {
    padding: 0 15px 0 30px;
    width: calc(100% - 15px);
    z-index: 1
}

.product-tabs .tabs .tab .results-list .search-results .item {
    position: relative;
    padding: 15px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    border: solid 1px #e6e6e6;
    margin-bottom: 30px
}

.product-tabs .tabs .tab .results-list .search-results .item .locked-content {
    display: inline-flex;
    font-family: proximanova, montserrat, sans-serif;
    font-size: 20px;
    color: #983cc9;
    width: 100%;
    line-height: 26px;
    z-index: 3
}

.product-tabs .tabs .tab .results-list .search-results .item .content {
    text-align: left
}

.product-tabs .tabs .tab .results-list .search-results .item .content a {
    text-decoration: none;
    display: block
}

.product-tabs .tabs .tab .results-list .search-results .item .content a.popup,
.product-tabs .tabs .tab .results-list .search-results .item .content a.popupcenter,
.product-tabs .tabs .tab .results-list .search-results .item .content a.popupleft,
.product-tabs .tabs .tab .results-list .search-results .item .content a.popupright {
    display: inline-block
}

.product-tabs .tabs .tab .results-list .search-results .item .content .label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    letter-spacing: .82px;
    line-height: 21px;
    position: relative;
    z-index: 1
}

.product-tabs .tabs .tab .results-list .search-results .item .content .label svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #63666a
}

.product-tabs .tabs .tab .results-list .search-results .item .content .label-centered {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    letter-spacing: .82px;
    line-height: 21px;
    border: none !important;
    padding: 0 !important;
    width: 33%;
    text-align: center;
    position: relative;
    z-index: 1
}

.product-tabs .tabs .tab .results-list .search-results .item .content .label-centered span {
    font-family: proximanova, 'open sans', 'helvetica neue', arial, helvetica, sans-serif
}

.product-tabs .tabs .tab .results-list .search-results .item .content .label-centered svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #63666a
}

.product-tabs .tabs .tab .results-list .search-results .item .content .language-label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    letter-spacing: .82px;
    line-height: 21px;
    text-align: right;
    border: none !important;
    padding: 0 !important;
    position: relative;
    z-index: 1
}

.product-tabs .tabs .tab .results-list .search-results .item .content .language-label span {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 12px;
    color: #000;
    margin-left: 5px
}

.product-tabs .tabs .tab .results-list .search-results .item .content .language-label svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #63666a
}

.product-tabs .tabs .tab .results-list .search-results .item .content .title {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 20px;
    color: #983cc9;
    width: 100%;
    line-height: 26px;
    position: relative;
    z-index: 3;
    word-break: break-word
}

.product-tabs .tabs .tab .results-list .search-results .item .content .text {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details {
    position: relative;
    z-index: 1;
    width: 100%
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .more-details {
    font-size: 1em;
    font-weight: 200;
    position: relative;
    display: block;
    cursor: pointer;
    font-family: proximanova, montserrat, sans-serif;
    font-size: 12px;
    color: #979797;
    width: 100%
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .more-details:before {
    content: '\f0fe';
    font-family: icons;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    z-index: 1;
    margin-right: 5px
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details {
    background: #fff;
    border: solid 1px #e6e6e6
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .product-line-column {
    max-width: 326px;
    width: 326px
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .search-columns {
    max-width: 215px;
    width: 215px
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .document-detail {
    border-right: solid 1px #e6e6e6;
    vertical-align: top
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .document-detail:last-child {
    border: none
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .document-detail .detail-label {
    font-size: 14px;
    color: #000;
    font-family: proximanova;
    font-size: 12px;
    color: #983cc9;
    line-height: normal;
    padding-bottom: 5px
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .document-detail .detail-value {
    font-family: proximanova;
    font-size: 14px;
    color: #4c4c4c
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .document-detail .detail-value .type-icon {
    padding: 5px
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .document-detail .icon.lock {
    color: #fff;
    font-size: 20px
}

.product-tabs .tabs .tab .results-list .search-results .item .technical-document-details .document-details .document-detail .pop-up-list-container {
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    max-height: 3.6em;
    text-align: center !important;
    margin-right: -1em;
    padding-right: 1em
}

.product-tabs .tabs .tab .results-list .search-results .item:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #eaeaea;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    z-index: 0;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.product-tabs .tabs .tab .results-list .search-results .item:hover:after {
    opacity: 1;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03)
}

.product-tabs .tabs .tab .list-results {
    padding: 0
}

.product-tabs .tabs .tab .list-results .item {
    position: relative;
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column
}

.product-tabs .tabs .tab .list-results .item .content {
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%
}

.product-tabs .tabs .tab .list-results .item .content a {
    text-decoration: none;
    display: block
}

.product-tabs .tabs .tab .list-results .item .content .label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    letter-spacing: .82px;
    line-height: 21px;
    align-items: center;
    position: relative;
    z-index: 1
}

.product-tabs .tabs .tab .list-results .item .content .label svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #63666a
}

.product-tabs .tabs .tab .list-results .item .content .title {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 20px;
    color: #983cc9;
    line-height: 26px
}

.product-tabs .tabs .tab .list-results .item .content .text {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 12px;
    color: #000;
    width: 100%
}

.product-tabs .tabs .tab .list-results .item .content .text span {
    color: #000;
    font-size: 12px
}

.product-tabs .tabs .tab .list-results .item .content .information {
    display: flex;
    flex-direction: column;
    flex: 1
}

.product-tabs .tabs .tab .list-results .item .content .actions {
    display: flex;
    flex-direction: row
}

.product-tabs .tabs .tab .list-results .item .content .actions .add-to-quote {
    border: solid 1px #983cc9;
    color: #983cc9;
    background: 0 0
}

.product-tabs .tabs .tab .list-results .item .content .actions .add-to-quote:hover:after {
    display: none
}

.product-tabs .tabs .tab .list-results .item .content .search-helper {
    display: inline-block;
    padding-left: 0
}

.product-tabs .tabs .tab .list-results .item:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #eaeaea;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.product-tabs .tabs .tab .list-results .item:hover:after {
    opacity: 1;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03)
}

.product-tabs .product-tabs-container {
    width: 100%;
    min-height: 450px;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 1400px
}

.product-tabs .product-tabs-container .tabs .ui.secondary.menu {
    display: flex;
    justify-content: center
}

.product-tabs .filters-dropdowns {
    position: absolute;
    top: 0;
    right: 0
}

.product-tabs .filters-dropdowns .ui.dropdown:nth-child(1) {
    margin-right: 30px !important
}

.product-tabs .tab,
.product-tabs .tabbed-content {
    background: 0 0
}

body.small-viewport .product-tabs .ui.secondary.menu {
    display: none !important
}

body.small-viewport .product-tabs .tabs-mobile-dropdown {
    display: block
}

.product-content {
    padding: 10px 0 10px 0;
    justify-content: center;
    display: flex
}

.product-content .content-container {
    width: 100%;
    max-width: 1000px
}

.product-content.dynamic-product-content {
    justify-content: center !important
}

.product-content.dynamic-product-content .content-container {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column
}

@media only screen and (max-width:767px) {
    .product-content .content-container {
        max-width: 90%
    }
}

.quad-showcase-feature {
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    overflow-y: hidden !important;
    position: relative
}

.quad-showcase-feature .floating-bg {
    background-position: center !important;
    background-size: cover !important;
    position: absolute !important;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.quad-showcase-feature .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.quad-showcase-feature .content-container .intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px
}

.quad-showcase-feature .content-container .intro-content h2,
.quad-showcase-feature .content-container .intro-content h2 span.sub-header {
    color: #fff;
    text-align: center
}

.quad-showcase-feature .content-container .feature-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%
}

.quad-showcase-feature .content-container .feature-container .feature-content {
    min-width: 50%
}

.quad-showcase-feature .content-container .feature-content {
    padding: 15px;
    flex: 1;
    display: flex
}

.quad-showcase-feature.no-background .content-container .intro-content .sub-header,
.quad-showcase-feature.no-background .content-container .intro-content h2 {
    color: #000 !important
}

.quad-showcase-feature.no-background .floating-bg {
    background: #f8f8f8 !important
}

@media only screen and (max-width:1200px) and (min-width:767px) {
    .quad-showcase-feature .content-container .feature-container {
        flex-wrap: wrap
    }

    .quad-showcase-feature .content-container .feature-container .feature-content {
        min-width: 50%
    }
}

@media only screen and (max-width:767px) {
    .quad-showcase-feature .content-container .feature-container {
        flex-direction: column
    }

    .quad-showcase-feature .content-container .feature-content {
        width: 100%
    }
}

.related-products h1 {
    text-align: center;
    width: 100%
}

.related-products.no-results #no-related-products {
    display: flex
}

.related-products.no-results .bec-pagination-ui {
    display: none
}

.related-products.no-results .results-list {
    display: none
}

.related-products #no-related-products {
    width: 100%;
    display: none;
    flex-direction: row;
    justify-content: center
}

.related-products #no-related-products span {
    text-align: center;
    font-size: 1.25em;
    background: #e8e8e8;
    color: #615a5a;
    padding: 10px 30px;
    border-radius: 3px
}

.related-products .tab-search-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 15px 0
}

.related-products .owl-carousel .owl-stage {
    display: flex
}

.related-products .owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto
}

.related-products .owl-carousel .owl-item .item {
    padding: 10px
}

.related-products .owl-carousel .caption {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column
}

.related-products .owl-carousel .flex-text {
    flex-grow: 1
}

.related-products .owl-carousel .thumbnail {
    display: flex;
    flex-direction: column;
    margin: 0 15px
}

.related-products .product-card {
    width: 100%;
    height: 100%;
    margin: 0;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .3)
}

.related-products .product-card .product-description {
    max-height: none;
    padding: 25px
}

.related-products .product-card .product-description:before {
    display: none
}

.related-products .product-card .product-description p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.related-products .product-card .product-description a {
    padding-left: 0;
    margin-left: 0
}

.related-products .product-card .product-description a i {
    margin: 0 !important;
    padding: 0;
    font-size: 20px
}

.related-products .owl-stage {
    padding: 20px 0
}

.related-products .owl-dots {
    width: calc(100% - 100px);
    margin-left: 50px;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0
}

.related-products .owl-dots .owl-dot {
    padding: 5px;
    float: left
}

.related-products .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 500px;
    background: #fff;
    border: solid 1px #979797;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.related-products .owl-dots .owl-dot.active span {
    background: #979797;
    border: solid 1px #979797
}

.related-products .owl-dots .owl-dot:hover span {
    background: #983cc9;
    border-color: #983cc9;
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4)
}

.related-products .owl-nav {
    width: 100%;
    padding: 0 20px
}

.related-products .owl-nav .owl-next,
.related-products .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    border: solid 1px #979797;
    border-radius: 100px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #979797;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.related-products .owl-nav .owl-next i,
.related-products .owl-nav .owl-prev i {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto
}

.related-products .owl-nav .owl-next:hover,
.related-products .owl-nav .owl-prev:hover {
    color: #fff;
    background: #983cc9;
    border-color: #983cc9
}

.related-products .owl-nav .owl-prev {
    float: left
}

.related-products .owl-nav .owl-next {
    float: right
}

.bc-card {
    background: #fff;
    border: 1px solid #dbdbdb;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .08);
    border-radius: 4px;
    padding: 15px;
    display: flex;
    font-size: 16px;
    flex-direction: row;
    align-items: center;
    margin: 40px 0
}

.bc-card .bc-card-content {
    padding-right: 15px
}

.registration-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0
}

.registration-page.completed .form-stepper {
    display: none
}

.registration-page.completed h1:first-child {
    display: none
}

.registration-page .beckman-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.registration-page .registration-footer {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-top: 40px
}

.registration-page .content-container {
    width: 100%;
    max-width: 600px
}

.registration-page .content-container .form-step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%
}

.registration-page .content-container .form-step .input-group.field {
    width: 100%
}

.registration-page .content-container .form-step.full-width {
    max-width: none;
    max-width: 940px;
    width: 70vw
}

.registration-page .content-container .form-step.split {
    flex-direction: row;
    align-items: flex-start
}

.registration-page .content-container .form-step .half {
    flex: 1;
    padding: 25px;
    width: 100%
}

.registration-page .content-container .form-step .half:first-child {
    background: url(/uploads/image/cimage/geometric-bg.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2
}

.registration-page .content-container .form-step .half:first-child:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #006fa6;
    position: absolute;
    right: -30px;
    top: 30px
}

.registration-page .content-container .form-step .half:first-child .wysiwyg-content * {
    color: #fff
}

.registration-page .content-container .form-step .half:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    box-shadow: 0 3px 7px 0 #ccc;
    border: solid 1px #d8d8d8
}

.registration-page .content-container .ui.checkbox.privacy-policy {
    margin: 15px 0;
    max-width: 400px
}

.registration-page .content-container .gdpr-user-consent {
    max-width: 400px;
    margin-bottom: 15px
}

.registration-page .content-container button[type=submit] {
    width: 100%
}

.registration-page .content-container #validate-address-selectors {
    display: none
}

.registration-page .content-container #validate-address-selectors.show {
    display: block
}

.registration-page .content-container #recaptcha1 {
    display: flex;
    align-items: center;
    flex-direction: column
}

.registration-page .content-container .login-inline-form .error.message {
    display: none
}

.registration-page .content-container .login-inline-form.loading {
    opacity: .4
}

.registration-page .content-container .login-inline-form.loading .form-elements {
    opacity: .2;
    pointer-events: none
}

.registration-page .content-container .login-inline-form.loading .step-loader.loader {
    display: block
}

@media only screen and (max-width:980px) {
    .registration-page .form-stepper {
        width: 80%
    }

    .registration-page .form-stepper li span {
        display: none
    }

    .registration-page .form-step.split {
        flex-direction: column !important
    }

    .registration-page .form-step.split .half {
        flex: auto
    }

    .registration-page .form-step.split .half:first-child:before {
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid #006fa6;
        border-bottom: none;
        top: auto;
        bottom: -20px;
        right: auto;
        left: calc(50% - 10px);
        content: '';
        position: absolute
    }
}

.showcase-feature {
    background-color: #fff;
    width: 100%;
    text-align: left;
    padding: 50px;
    display: flex;
    flex-direction: column
}

.showcase-teaser-tall {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px;
    color: #fff;
    cursor: pointer;
    background: #9e007e;
    height: calc(100% - 15px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.showcase-teaser-tall p {
    width: 100%
}

.showcase-teaser-tall h1,
.showcase-teaser-tall h2,
.showcase-teaser-tall h3 {
    color: #fff
}

.showcase-teaser-tall h1 .sub-header,
.showcase-teaser-tall h2 .sub-header,
.showcase-teaser-tall h3 .sub-header {
    color: #fff
}

.showcase-teaser-tall a.ui.button.btn-cta {
    color: #fff !important;
    text-align: left;
    padding-left: 0
}

.showcase-teaser-tall:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s ease-in-out
}

.showcase-teaser-tall:hover:after {
    opacity: 1
}

.unclickable {
    cursor: default !important
}

.showcase-teaser {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 15px;
    background: #00a9e0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.showcase-teaser p {
    width: 100%
}

.showcase-teaser h1,
.showcase-teaser h2,
.showcase-teaser h3 {
    color: #fff
}

.showcase-teaser h1 .sub-header,
.showcase-teaser h2 .sub-header,
.showcase-teaser h3 .sub-header {
    color: #fff
}

.showcase-teaser a.ui.button.btn-cta {
    color: #fff !important;
    text-align: left;
    padding-left: 0
}

.showcase-teaser:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s ease-in-out
}

.showcase-teaser:hover:after {
    opacity: 1
}

.unclickable {
    cursor: default !important
}

.showcase-feature-photo {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center
}

.showcase-feature-photo .content-container {
    width: 100%;
    max-width: 1400px
}

.simple-link-list {
    display: flex;
    justify-content: center;
    margin-bottom: 40px
}

.simple-link-list .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.simple-link-list .content-container .label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1.25em;
    color: #000;
    margin-bottom: .5em
}

.simple-link-list .content-container ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.simple-link-list .content-container ul li a {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1em;
    color: #00a9e0;
    line-height: 30px
}

.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%
}

.testimonial .quote {
    color: #000;
    font-family: proximanova;
    font-size: 1.625em;
    line-height: 1.3em;
    text-align: center;
    width: 60%;
    max-width: 800px
}

.testimonial .quote:before {
    content: '“';
    color: #983cc9;
    font-size: 150px;
    font-weight: 300;
    position: absolute;
    -webkit-transform: translatex(-70px) translatey(35px);
    -moz-transform: translatex(-70px) translatey(35px);
    -ms-transform: translatex(-70px) translatey(35px);
    -o-transform: translatex(-70px) translatey(35px);
    transform: translatex(-70px) translatey(35px)
}

.testimonial .quote:after {
    content: '”';
    color: #983cc9;
    font-size: 150px;
    font-weight: 300;
    position: absolute;
    -webkit-transform: translatey(45px) translatex(15px);
    -moz-transform: translatey(45px) translatex(15px);
    -ms-transform: translatey(45px) translatex(15px);
    -o-transform: translatey(45px) translatex(15px);
    transform: translatey(45px) translatex(15px)
}

.testimonial img {
    border-radius: 500px;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 120px
}

.testimonial .author,
.testimonial .title1,
.testimonial .title2 {
    color: #000;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase
}

.testimonial-slim {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0
}

.testimonial-slim .quote {
    display: flex;
    flex-direction: row;
    padding-top: 4%;
    margin: 0 auto;
    color: #fff;
    font-family: proximanova;
    font-size: 1.625em;
    line-height: 1.3em;
    text-align: center;
    width: 90%;
    max-width: 1200px
}

.testimonial-slim .title1 {
    color: #fff;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase
}

.testimonial-slim .title2 {
    color: #fff;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 4%
}

.testimonial-slim .author {
    color: #fff;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    padding-top: 2%
}

.quotetext {
    display: inline-block
}

.quotebefore {
    padding-top: 1.5%
}

.quotebefore:after {
    content: '“';
    font-size: 90px;
    font-weight: 300
}

@media only screen and (max-width:320px) {
    .quotebefore {
        padding-top: 6%
    }
}

@media only screen and (min-width:321px) {
    .quotebefore {
        padding-top: 6%
    }
}

@media only screen and (min-width:374px) {
    .quotebefore {
        padding-top: 6%
    }
}

@media only screen and (min-width:414px) {
    .quotebefore {
        padding-top: 5%
    }
}

@media only screen and (min-width:601px) {
    .quotebefore {
        padding-top: 4%
    }
}

@media only screen and (min-width:800px) {
    .quotebefore {
        padding-top: 2.5%
    }
}

@media only screen and (min-width:1101px) {
    .quotebefore {
        padding-top: 1.5%
    }
}

.quoteafter {
    padding-top: 1.5%
}

.quoteafter:after {
    content: '”';
    font-size: 90px;
    font-weight: 300
}

@media only screen and (max-width:320px) {
    .quoteafter {
        padding-top: 6%
    }
}

@media only screen and (min-width:321px) {
    .quoteafter {
        padding-top: 6%
    }
}

@media only screen and (min-width:374px) {
    .quoteafter {
        padding-top: 6%
    }
}

@media only screen and (min-width:414px) {
    .quoteafter {
        padding-top: 5%
    }
}

@media only screen and (min-width:601px) {
    .quoteafter {
        padding-top: 4%
    }
}

@media only screen and (min-width:800px) {
    .quoteafter {
        padding-top: 2.5%
    }
}

@media only screen and (min-width:1101px) {
    .quoteafter {
        padding-top: 1.5%
    }
}

.techdocs-feature {
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    overflow-y: hidden !important;
    position: relative
}

.techdocs-feature .floating-bg {
    background: url(/uploads/image/cimage/geometric-bg.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.techdocs-feature .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center
}

.techdocs-feature .content-container * {
    color: #fff
}

.techdocs-feature .content-container .left {
    width: 60%;
    position: relative;
    padding: 25px
}

.techdocs-feature .content-container .left .search-input {
    position: relative;
    width: 80%;
    max-width: 610px;
    display: flex;
    justify-content: center;
    align-items: center
}

.techdocs-feature .content-container .left .search-input input[type=search] {
    height: 100%;
    border: none;
    width: 100%;
    padding: 0 50px;
    box-shadow: none;
    outline: 0;
    height: 70px;
    color: #000;
    font-size: 1.25em
}

.techdocs-feature .content-container .left .search-input input[type=search]:focus~ul {
    display: none
}

.techdocs-feature .content-container .left .search-input .lnr-magnifier {
    color: #63666a;
    position: absolute;
    left: 15px;
    font-size: 1.25em;
    cursor: pointer
}

.techdocs-feature .content-container .left .search-input .lnr-cross {
    color: #63666a;
    position: absolute;
    right: 15px;
    font-size: 1.25em;
    cursor: pointer
}

.techdocs-feature .content-container .left .search-input ul {
    position: absolute;
    height: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 45px;
    width: calc(100% - 90px);
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center
}

.techdocs-feature .content-container .left .search-input ul li {
    position: absolute;
    left: 0;
    color: #63666a;
    font-size: 1.25em;
    opacity: 0
}

.techdocs-feature .content-container .left .search-input ul li:nth-child(1) {
    -webkit-animation: suggestedsearchanimation 30s 0s infinite ease
}

.techdocs-feature .content-container .left .search-input ul li:nth-child(2) {
    -webkit-animation: suggestedsearchanimation 30s 10s infinite ease
}

.techdocs-feature .content-container .left .search-input ul li:nth-child(3) {
    -webkit-animation: suggestedsearchanimation 30s 20s infinite ease
}

.techdocs-feature .content-container .left:after {
    content: '';
    width: 2px;
    background: #fff;
    height: 80%;
    position: absolute;
    top: 5%;
    right: 0
}

.techdocs-feature .content-container .right {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px
}

.techdocs-feature .content-container .right a.button.inverted {
    width: 100%;
    max-width: 260px
}

.techdocs-feature .content-container .right a.button.btn-cta {
    color: #fff
}

@media only screen and (max-width:767px) {
    .techdocs-feature .content-container {
        flex-direction: column
    }

    .techdocs-feature .content-container .left {
        width: 100%;
        text-align: center
    }

    .techdocs-feature .content-container .left:after {
        display: none
    }

    .techdocs-feature .content-container .left .search-input {
        width: 100%;
        max-width: none
    }

    .techdocs-feature .content-container .right {
        width: 100%
    }
}

.tripple-showcase-feature {
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    overflow-y: hidden !important;
    position: relative
}

.tripple-showcase-feature .floating-bg {
    background-position: center !important;
    background-size: cover !important;
    position: absolute !important;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 0
}

.tripple-showcase-feature .content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.tripple-showcase-feature .content-container .intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px
}

.tripple-showcase-feature .content-container .intro-content h2,
.tripple-showcase-feature .content-container .intro-content h2 span.sub-header {
    color: #fff;
    text-align: center
}

.tripple-showcase-feature .content-container .feature-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%
}

.tripple-showcase-feature .content-container .feature-content {
    padding: 15px;
    flex: 1;
    display: flex
}

.tripple-showcase-feature.no-background .content-container .intro-content .sub-header,
.tripple-showcase-feature.no-background .content-container .intro-content h2 {
    color: #000 !important
}

.tripple-showcase-feature.no-background .floating-bg {
    background: #f8f8f8 !important
}

@media only screen and (max-width:1200px) and (min-width:767px) {
    .tripple-showcase-feature .content-container .feature-container {
        flex-wrap: wrap
    }

    .tripple-showcase-feature .content-container .feature-container .feature-content {
        min-width: 50%
    }

    .tripple-showcase-feature .content-container .feature-container .feature-content:nth-child(3) .showcase-feature {
        align-items: center
    }
}

@media only screen and (max-width:767px) {
    .tripple-showcase-feature .content-container .feature-container {
        flex-direction: column
    }
}

.menu-item.user-account-container .logged-in {
    display: block
}

.menu-item.user-account-container .logged-out {
    display: none
}

.menu-item.user-account-container .user-account-btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.menu-item.user-account-container .user-account-btn .menu-link:after {
    content: '\e874';
    font-family: linearicons-free;
    speak: none;
    color: #983cc9;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    margin-left: 5px;
    z-index: 1;
    -webkit-transform: translatey(92%) translatex(-3px);
    -moz-transform: translatey(92%) translatex(-3px);
    -ms-transform: translatey(92%) translatex(-3px);
    -o-transform: translatey(92%) translatex(-3px);
    transform: translatey(92%) translatex(-3px);
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.menu-item.user-account-container .user-account-btn.logged-out {
    display: none
}

.menu-item.user-account-container .user-account-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: calc(50% - 4px);
    width: 0;
    height: 0;
    opacity: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #979797;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.menu-item.user-account-container .user-account-btn:hover:before {
    opacity: 1
}

.menu-item.user-account-container .user-account-btn:hover .account-dropdown {
    opacity: 1 !important;
    pointer-events: all !important
}

.universal-navigation {
    border-bottom: 1px solid #979797;
    background: #fff;
    position: relative;
    z-index: 10;
    height: 53px;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.universal-navigation.hidden {
    -webkit-transform: translatey(-53px);
    -moz-transform: translatey(-53px);
    -ms-transform: translatey(-53px);
    -o-transform: translatey(-53px);
    transform: translatey(-53px)
}

.universal-navigation.blog.hidden {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none
}

.universal-navigation .desktop-menu.grid {
    margin: 0;
    padding: 0;
    width: 100% !important;
    display: flex;
    justify-content: center
}

.universal-navigation .desktop-menu .one {
    width: 100% !important;
    max-width: 1155px;
    padding: 0 15px !important
}

.universal-navigation .desktop-menu .nav-flex-container #universal-nav-link {
    height: 100%;
    display: flex;
    align-items: center
}

.universal-navigation .desktop-menu .nav-flex-container .right.item {
    height: calc(100%   1px)
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item {
    position: relative;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 16px
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .item-dropdown {
    position: absolute;
    top: 51px;
    background: #fff;
    padding: 15px;
    display: flex;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    min-width: 250px;
    max-width: 250px;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
    transform: translatex(-50%);
    left: 50%;
    font-size: 16px
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .item-dropdown:after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: -8px;
    left: calc(50% - 4px);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #979797
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .item-dropdown .menu-link {
    display: block
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .menu-link {
    color: #000;
    position: relative;
    font-family: proximanova, montserrat, sans-serif;
    font-size: .87em;
    letter-spacing: 0;
    line-height: 2em;
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .menu-link.parent-link.parent-link-highlight {
    color: red
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .menu-link .lnr {
    font-size: 1.3rem;
    pointer-events: none
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .menu-link .cart-items {
    position: absolute;
    left: 4px;
    top: 2px;
    font-family: proximanova;
    font-size: .7em;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #983cc9;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    pointer-events: none
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .menu-link .cart-items.hidden {
    visibility: hidden
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .menu-link:hover {
    color: #983cc9
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .menu-link.country-language-link {
    line-height: 0;
    display: flex;
    align-items: center;
    outline: 0
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item .menu-link.country-language-link img {
    max-height: 16px;
    max-width: 16px;
    object-fit: contain;
    margin-right: 5px
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item:after {
    content: '';
    width: 1px;
    height: 50%;
    background: #e7e7e7;
    -webkit-transform: translatex(15px);
    -moz-transform: translatex(15px);
    -ms-transform: translatex(15px);
    -o-transform: translatex(15px);
    transform: translatex(15px)
}

.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item.clicked .item-dropdown,
.universal-navigation .desktop-menu .nav-flex-container .right.item .menu-item:hover .item-dropdown {
    opacity: 1;
    pointer-events: all
}

.universal-navigation .desktop-menu .nav-flex-container .right.item div.menu-item:last-child:after {
    display: none
}

@media only screen and (max-width:767px) {
    .universal-navigation {
        display: none
    }
}

@media only screen and (min-width:768px) {
    .universal-navigation {
        max-height: 53px !important
    }

    .universal-navigation .desktop-menu {
        min-height: 50px !important;
        margin-top: 0 !important;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0
    }

    .universal-navigation .desktop-menu .nav-flex-container {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1
    }

    .universal-navigation .desktop-menu .nav-flex-container .logo-padding {
        padding-left: 15px
    }

    .universal-navigation .desktop-menu .nav-flex-container .logo-fixed {
        width: 100px !important
    }

    .universal-navigation .desktop-menu .nav-flex-container .ui.button {
        max-height: 50px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        padding: 7px 35px
    }

    .universal-navigation .desktop-menu .nav-flex-container .item {
        display: flex;
        justify-content: flex-end;
        align-items: center
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .desktop-logo {
        max-height: 30px !important
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-link {
        width: 20px;
        height: 20px;
        fill: #63666a;
        cursor: pointer
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container svg {
        width: 20px;
        height: 20px;
        fill: #63666a;
        cursor: pointer
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container:hover .account-link {
        fill: #983cc9
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container.show .account-link {
        fill: #983cc9
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container.show .account-dropdown {
        opacity: 1;
        pointer-events: all
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown {
        position: absolute;
        bottom: 0;
        right: 4px;
        width: 100%;
        min-width: 280px;
        padding: 20px;
        max-width: 1000px;
        transform: translatey(100%);
        background: #fff;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity .3s ease;
        -moz-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease;
        box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12)
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out {
        min-height: 320px
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in label,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out label {
        font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
        font-size: 12px;
        color: #000;
        letter-spacing: .5px;
        line-height: 12px
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:checked,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:not(:checked),
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:checked,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:not(:checked) {
        position: absolute;
        left: -9999px
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:checked label,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:not(:checked) label,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:checked label,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:not(:checked) label {
        position: relative;
        padding-left: 1.95em;
        cursor: pointer
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:checked label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:not(:checked) label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:checked label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:not(:checked) label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 1.25em;
        height: 1.25em;
        border: 2px solid #ccc;
        background: #fff;
        border-radius: 4px;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1)
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:checked label:after,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:not(:checked) label:after,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:checked label:after,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:not(:checked) label:after {
        content: '✔';
        position: absolute;
        top: .1em;
        left: .3em;
        font-size: 1.3em;
        line-height: .8;
        color: #09ad7e;
        transition: all .2s
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:not(:checked) label:after,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:not(:checked) label:after {
        opacity: 0;
        transform: scale(0)
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:checked label:after,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:checked label:after {
        opacity: 1;
        transform: scale(1)
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:disabled:checked label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:disabled:not(:checked) label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:disabled:checked label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:disabled:not(:checked) label:before {
        box-shadow: none;
        border-color: #bbb;
        background-color: #ddd
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:disabled:checked label:after,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:disabled:checked label:after {
        color: #999
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:disabled label,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:disabled label {
        color: #aaa
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:checked:focus label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=checkbox]:not(:checked):focus label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:checked:focus label:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=checkbox]:not(:checked):focus label:before {
        border: 2px dotted #00f
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in label:hover:before,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out label:hover:before {
        border: 2px solid #4778d9 !important
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .signup-container,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .signup-container {
        min-height: 320px;
        height: 320px;
        background: #fff;
        width: calc(100% - 250px);
        float: left;
        padding: 20px;
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .signup-container ul,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .signup-container ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: row;
        width: 100%
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .signup-container ul li,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .signup-container ul li {
        text-align: center;
        padding: 5px
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .signup-container ul li p,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .signup-container ul li p {
        text-align: left;
        font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
        font-size: 12px;
        color: #000;
        letter-spacing: .5px;
        line-height: 12px
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container {
        min-height: 320px;
        height: 320px;
        background: #f1f1f1;
        width: 250px;
        float: left;
        border-left: solid 1px #e0e0e0;
        padding: 20px;
        display: flex
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container form,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container form {
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container form.loading input,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container form.loading label,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container form.loading p,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container form.loading input,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container form.loading label,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container form.loading p {
        opacity: .2;
        pointer-events: none
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container form.loading .loader,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container form.loading .loader {
        display: block
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container form .error-popup,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container form .error-popup {
        position: absolute;
        width: 200px;
        top: 26px;
        background-color: #fff6f6;
        color: #9f3a38;
        border-radius: 4px;
        padding: 10px;
        left: calc(-100%   -5px);
        box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent;
        pointer-events: none;
        opacity: 0
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container form .error-popup.visible,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container form .error-popup.visible {
        opacity: 1
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in .login-container form .error-popup:after,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out .login-container form .error-popup:after {
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        right: -10px;
        top: calc(50% - 10px);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #e0b4b3
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in input,
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out input {
        background: #fff;
        z-index: 5;
        border: none;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .21);
        font-family: montserrat;
        font-weight: 300;
        font-size: 15px;
        color: #232323;
        letter-spacing: .17px;
        padding: 10px;
        width: 100%;
        -webkit-appearance: none;
        margin-top: 10px
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-in [type=submit],
    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .logged-out [type=submit] {
        background: #983cc9
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links {
        width: 100%;
        position: relative
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links.loading ul {
        opacity: .2;
        pointer-events: none
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links.loading .loader {
        display: block
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links ul li {
        position: relative
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links ul li.heading {
        border-bottom: solid 2px red;
        margin-bottom: 10px
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links ul li.link {
        cursor: pointer
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links ul li.link:before {
        content: '•';
        color: #983cc9;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: calc(50% - 12px);
        opacity: 0;
        -webkit-transition: opacity .3s ease;
        -moz-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links ul li.link a {
        text-decoration: none;
        display: block;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -ms-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
        -webkit-transition: transform .3s ease;
        -moz-transition: transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        cursor: pointer;
        color: #000;
        position: relative;
        font-family: proximanova, montserrat, sans-serif;
        font-size: .87em;
        letter-spacing: 0;
        line-height: 2em
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links ul li:hover.link:before {
        opacity: 1
    }

    .universal-navigation .desktop-menu .nav-flex-container .item .user-account-container .account-dropdown .user-links ul li:hover.link a {
        -webkit-transform: translatex(15px);
        -moz-transform: translatex(15px);
        -ms-transform: translatex(15px);
        -o-transform: translatex(15px);
        transform: translatex(15px)
    }
}

#movetop {
    opacity: .7;
    display: inline-block;
    position: fixed;
    bottom: 3.3em;
    right: 30px;
    z-index: 99;
    font-size: 1.6em;
    border: none;
    outline: 0;
    cursor: pointer;
    padding: 10px;
    border-radius: 50px;
    transition: opacity 1s
}

@media screen and (max-width:1024px) {
    #movetop {
        visibility: hidden
    }
}

#movetop.hide {
    opacity: 0;
    cursor: default
}

.angles {
    display: inline-block;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    text-align: center
}

.angles::after {
    border-style: solid;
    border-width: .08em .08em 0 0;
    content: '';
    display: inline-block;
    height: .85em;
    position: relative;
    top: .55em;
    transform: rotate(-45deg);
    vertical-align: middle;
    width: .85em
}

.angles.right:after {
    left: 0;
    transform: rotate(45deg)
}

.angles.bottom:after {
    top: 0;
    transform: rotate(135deg)
}

.angles.left:after {
    left: .25em;
    transform: rotate(-135deg)
}

.angles.top {
    background: #d6d6d6;
    color: #fff
}

span.angles.top:hover {
    background: #00a9e0
}

.video-hero .video-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center;
    overflow: hidden;
    cursor: pointer
}

.video-hero .video-hero-image:before {
    content: '';
    background: rgba(0, 0, 0, .25);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .07);
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    z-index: 1;
    width: 80px;
    height: 80px;
    border: solid 2px #fff;
    border-radius: 1000px;
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease
}

.video-hero .video-hero-image:after {
    content: '';
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 15px);
    z-index: 1;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    -webkit-transition: transform .4s ease;
    -moz-transition: transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease
}

.video-hero .video-hero-image img {
    width: 100%;
    display: block;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease
}

.video-hero .video-hero-image:hover:before {
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9)
}

.video-hero .video-hero-image:hover:after {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.video-hero .video-hero-image:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05)
}

.webinar-overview {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 60px
}

.webinar-overview .content-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative
}

.webinar-overview .content-container .image-container {
    width: 30%;
    position: relative
}

.webinar-overview .content-container .image-container img {
    width: 100%;
    height: auto
}

.webinar-overview .content-container .content {
    width: 70%;
    padding: 0 20px
}

.webinar-overview .content-container .content span.lnr {
    margin-right: 10px
}

.webinar-overview .content-container .content .label {
    background: #474c55;
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    padding: 6px 10px 4px 10px;
    font-size: .9em;
    line-height: 1em;
    margin: 0 0 1em
}

.webinar-overview .content-container .content a.button {
    margin-left: 0;
    padding-left: 0
}

.webinar-overview .content-container .content .time,
.webinar-overview .content-container .content ldate {
    margin-bottom: 10px
}

@media only screen and (max-width:767px) {
    .webinar-overview .content-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center
    }

    .webinar-overview .content-container .image-container {
        width: 70%
    }

    .webinar-overview .content-container .content {
        width: 100%;
        padding: 20px
    }
}

.wysiwyg-content {
    font-family: proximanova;
    font-size: 16px;
    color: #000;
    line-height: 24px;
    width: 100%;
    display: block
}

.content-gating {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.content-gating .login-prompt {
    position: absolute;
    background: #2d2d2d;
    z-index: 2;
    text-align: center;
    padding: 15px;
    width: 80%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.content-gating .login-prompt h3 {
    color: #fff;
    width: 80%
}

.content-gating .login-prompt h3 .sub-header {
    color: #fff
}

.content-gating .login-prompt .login {
    margin-bottom: 10px
}

.content-gating .login-prompt .register {
    box-shadow: none !important;
    border: none !important
}

.content-gating .login-prompt .register:after {
    display: none
}

.content-gating .login-prompt .register:hover {
    background: 0 0 !important;
    box-shadow: none !important;
    border: none !important;
    color: red
}

.content-gating .gated-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.content-gating .gated-content-container.not-allowed {
    pointer-events: none;
    opacity: .3
}

.content-gating .gated-content-container .file-details-container {
    display: flex;
    flex-direction: row;
    margin: 15px 0
}

.content-gating .gated-content-container .file-details-container .file-details {
    padding-left: 15px
}

.content-gating .gated-content-container .file-details-container .file-details .file-name {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1.16em;
    color: #983cc9
}

.content-gating .gated-content-container .file-details-container .file-details .file-date,
.content-gating .gated-content-container .file-details-container .file-details .file-format,
.content-gating .gated-content-container .file-details-container .file-details .file-size {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1em;
    color: #000
}

.content-gating .gated-content-select-download-container {
    display: flex;
    flex-direction: row;
    align-items: center
}

.content-gating .gated-content-select-download-container.not-allowed {
    pointer-events: none;
    opacity: .3
}

.content-gating .gated-content-select-download-container .file-details-container {
    display: flex;
    flex-direction: column;
    margin: 15px 15px
}

.content-gating .gated-content-select-download-container .file-details-container .file-details {
    padding-left: 15px
}

.content-gating .gated-content-select-download-container .file-details-container .file-details .file-name {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1.16em;
    color: #983cc9
}

.content-gating .gated-content-select-download-container .file-details-container .file-details .file-date,
.content-gating .gated-content-select-download-container .file-details-container .file-details .file-format,
.content-gating .gated-content-select-download-container .file-details-container .file-details .file-size {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1em;
    color: #000
}

.content-gating .gated-content-select-download-container {
    display: flex;
    flex-direction: row;
    align-items: center
}

.content-gating .gated-content-select-download-container.not-allowed {
    pointer-events: none;
    opacity: .3
}

.content-gating .gated-content-select-download-container .file-details-container a {
    display: flex;
    flex-direction: column;
    margin: 15px 15px;
    align-items: center
}

.content-gating .gated-content-select-download-container .file-details-container a .file-details {
    padding-left: 15px
}

.content-gating .gated-content-select-download-container .file-details-container a .file-details .file-name {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1.16em;
    color: #983cc9
}

.content-gating .gated-content-select-download-container .file-details-container a .file-details .file-date,
.content-gating .gated-content-select-download-container .file-details-container a .file-details .file-format,
.content-gating .gated-content-select-download-container .file-details-container a .file-details .file-size {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 1em;
    color: #000;
    text-align: center
}

.content-gating .gated-content-select-download-container .file-details-container a .file-details .file-format-pdf {
    color: #e81d2e
}

.content-gating .gated-content-select-download-container .file-details-container a .file-details .file-format-word {
    color: #009dcb
}

.content-gating .gated-content-select-download-container .file-details-container a .file-details .file-format-zip {
    color: #838383
}

.content-gating .dynamic-links {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 30px
}

.content-gating .dynamic-links .simple-link-list {
    width: calc(100% / 3)
}

.content-gating .loading-ellipsis:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(8, end) .9s infinite;
    animation: ellipsis steps(8, end) .9s infinite;
    content: "\2026";
    width: 0;
    position: absolute
}

@keyframes ellipsis {
    to {
        width: 1.25em
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 1.25em
    }
}

.gated-content-dynamic-links {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.gated-content-dynamic-links .simple-link-list {
    justify-content: center;
    margin-bottom: 40px;
    display: flex;
    flex: 1
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.video-modal .video-modal-content {
    background: #fff;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    min-height: 100px
}

.video-modal .video-modal-content .video-modal-embed-container {
    width: 100%
}

.video-modal .video-modal-content .video-modal-embed-container .close-modal {
    position: absolute;
    z-index: 11;
    right: 0;
    top: 0;
    background: red;
    width: 50px;
    color: #fff;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.video-modal .video-modal-content .video-modal-embed-container .close-modal:hover i {
    -webkit-transform: scale 1.2;
    -moz-transform: scale 1.2;
    -ms-transform: scale 1.2;
    -o-transform: scale 1.2;
    transform: scale 1.2
}

.video-modal .video-modal-content .video-modal-embed-container .close-modal i {
    margin: 0;
    height: auto;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.video-modal .video-modal-content .video-modal-embed-container .vidyard_player span:first-child {
    width: 100% !important;
    height: 100% !important;
    padding-top: 56.25% !important
}

.video-modal .video-modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    height: 100%;
    cursor: pointer
}

.product-highlights {
    background: #f8f8f8;
    padding: 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 300px;
    flex-direction: column
}

.product-highlights .highlight-intro-text {
    width: 100%;
    text-align: center;
    padding: 80px 0;
    max-width: 1400px
}

.product-highlights .highlight-intro-text .highlight-title {
    font-size: 2.8em !important;
    font-weight: 300 !important;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.13;
    letter-spacing: .5px;
    color: #000
}

.product-highlights .highlight-intro-text .highlight-subtitle {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 20px;
    color: #000;
    letter-spacing: .22px;
    line-height: 27px;
    margin-bottom: 10px
}

.product-highlights .highlight-intro-text .highlight-body {
    font-size: 1.325em !important;
    font-weight: 300 !important;
    font-family: proximanova !important;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #000
}

.product-highlights .highlight-points {
    width: 100%;
    padding: 0 0 80px 0;
    max-width: 1400px
}

.product-highlights .highlight-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex
}

.product-highlights .highlight-points ul li {
    text-align: center
}

.product-highlights .highlight-points ul li img {
    width: 55%;
    border-radius: 1000px
}

.product-highlights .highlight-points ul li .point-title {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 20px;
    color: #000;
    letter-spacing: .22px;
    line-height: 27px;
    margin-bottom: 10px
}

.product-highlights .highlight-points ul li .point-body {
    font-size: 1.325em !important;
    font-weight: 300 !important;
    font-family: proximanova !important;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #000
}

.product-media-slideshow .owl-carousel .item img {
    width: 100%;
    height: auto
}

.product-media-slideshow .owl-carousel .owl-stage {
    display: flex;
    align-items: center
}

.product-media-slideshow .thumbs {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center
}

.product-media-slideshow .thumbs .thumb {
    padding: 5px;
    cursor: pointer;
    position: relative
}

.product-media-slideshow .thumbs .thumb img {
    width: 100%;
    display: block;
    max-width: 70px
}

.product-lineup {
    background: #f8f8f8;
    padding: 10px 0;
    width: 100%;
    display: flex;
    justify-content: center
}

.product-lineup .tabs .tab {
    padding: 0;
    margin: 0
}

.product-lineup .product-lineup-container {
    width: 100%;
    max-width: 1150px;
    min-height: 450px;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px
}

.product-lineup .filters-dropdowns {
    position: absolute;
    top: 0;
    right: 0
}

.product-lineup .filters-dropdowns .ui.dropdown:nth-child(1) {
    margin-right: 30px !important
}

.product-lineup .tab,
.product-lineup .tabbed-content {
    background: 0 0
}

.video-template-banner {
    width: 100%;
    display: flex;
    justify-content: center
}

.video-template-banner .vidyard-lightbox-image {
    position: relative !important
}

.video-template-banner .content-container {
    width: 100%;
    max-width: 1368px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.video-template-banner .content-container .image {
    margin-right: 40px;
    width: 50%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: #000
}

.video-template-banner .content-container .image a {
    width: 100%;
    text-decoration: none
}

.video-template-banner .content-container .image img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.video-template-banner .content-container .image:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1
}

.video-template-banner .content-container .image:hover:before {
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9)
}

.video-template-banner .content-container .image:hover:after {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.video-template-banner .content-container .content {
    width: 50%
}

.video-template-banner .content-container .content h2:hover {
    color: #983cc9
}

.video-template-banner .content-container .content a.ui.button.btn-cta.primary {
    padding-left: 0
}

.video-template-banner .media-alignment {
    flex-direction: row-reverse
}

.video-template-banner .custom-subhead {
    text-align: left;
    font-weight: 700
}

.video-template-banner .type-video::after {
    border-top: 16px solid transparent !important;
    border-bottom: 16px solid transparent !important
}

@media only screen and (max-width:767px) {
    .video-template-banner .content-container {
        flex-direction: column
    }

    .video-template-banner .content-container .image {
        margin-right: 0;
        width: calc(100% - 30px);
        height: auto
    }

    .video-template-banner .content-container .content {
        width: calc(100% - 30px)
    }

    .video-template-banner .media-alignment {
        flex-direction: row-reverse;
        flex-wrap: wrap-reverse
    }
}

.large-header-banner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column
}

@media only screen and (max-width:767px) {
    .large-header-banner {
        background-image: none !important
    }
}

@media only screen and (max-width:767px) {
    .large-header-banner .image-mobile-only {
        display: block !important;
        max-width: 100%;
        height: auto;
        width: 100%
    }
}

.large-header-banner .banner-bg {
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    top: 0;
    left: 0;
    height: auto;
    max-width: 100%;
    display: block;
    z-index: 0;
    width: 100%
}

.large-header-banner .lgb-content-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px
}

@media only screen and (max-width:1024px) {
    .large-header-banner .lgb-content-container {
        padding: 20px;
        padding-top: 10px !important;
        padding-bottom: 0 !important
    }
}

.large-header-banner .lgb-content-container.left {
    align-items: flex-start
}

.large-header-banner .lgb-content-container.right {
    align-items: flex-end
}

.large-header-banner .lgb-content-container.center {
    align-items: center
}

.large-header-banner .lgb-heading-container {
    z-index: 5;
    width: 90%;
    padding: 30px
}

@media only screen and (max-width:767px) {
    .large-header-banner .lgb-heading-container {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 15px;
        padding-bottom: 15px
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .large-header-banner .lgb-heading-container {
        width: 100%;
        height: auto;
        padding: 20px
    }
}

@media only screen and (min-width:1025px) {
    .large-header-banner .lgb-heading-container {
        width: 50%;
        height: inherit
    }
}

.large-header-banner .lgb-banner-heading {
    font-style: normal;
    width: 100%;
    font-stretch: normal;
    text-align: left;
    color: #fff;
    line-height: normal;
    font-family: montserrat;
    line-height: .75em;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

@media only screen and (max-width:767px) {
    .large-header-banner .lgb-banner-heading {
        font-size: 1.875em;
        letter-spacing: .7px;
        line-height: 1em
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .large-header-banner .lgb-banner-heading {
        letter-spacing: .7px;
        line-height: 1em
    }
}

@media only screen and (min-width:1025px) {
    .large-header-banner .lgb-banner-heading {
        font-size: 1rem;
        letter-spacing: 0;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: .75em
    }
}

.large-header-banner .lgb-banner-sub-heading {
    color: #fff;
    font-weight: 200;
    width: 100%;
    margin: 5px 0 0 0;
    line-height: normal;
    font-family: proximanova;
    text-align: left;
    font-size: 1em;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.large-header-banner .lgb-banner-details {
    color: #fff;
    font-weight: 200;
    width: 100%;
    margin: 5px 0 -20px 0;
    line-height: normal;
    font-family: proximanova;
    text-align: left;
    font-size: 1em;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.large-header-banner .ui.primary {
    font-family: proximanova;
    font-weight: 200;
    font-size: 1em;
    color: #000;
    cursor: pointer;
    text-transform: uppercase
}

@media only screen and (max-width:767px) {
    .large-header-banner .ui.primary {
        font-size: 1em
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .large-header-banner .ui.primary {
        line-height: normal
    }
}

.large-header-banner .button-wrapper {
    width: 100%;
    height: 40px
}

@media only screen and (max-width:1024px) {
    .large-header-banner .button-wrapper {
        height: 45px
    }
}

.large-banner-bg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    min-height: 400px
}

.data-visualization-container .data-visualization-feature {
    width: 100%;
    min-height: 350px;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column
}

.data-visualization-container .data-visualization-feature .dv-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column
}

@media screen and (min-width:0 \0) {
    .data-visualization-container .data-visualization-feature .dv-container {
        left: 0
    }
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding: 30px;
    font-size: 14px;
    background-color: transparent !important;
    box-shadow: none;
    border: none
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content.left {
    float: left
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content.right {
    float: right
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content.center {
    margin: auto
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content .dv-header {
    font-size: 1rem;
    color: #fff;
    font-style: normal;
    width: 100%;
    font-stretch: normal;
    text-align: left;
    color: #fff;
    line-height: normal;
    font-family: montserrat;
    color: #fff;
    margin-bottom: 10px
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content .dv-sub-header {
    font-weight: 200;
    width: 100%;
    margin-bottom: 20px;
    line-height: normal;
    font-family: proximanova;
    text-align: left;
    font-size: 1.125em;
    color: #fff
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content .ui.button {
    z-index: 5;
    position: relative
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content .ui.button.primary {
    font-family: montserrat;
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    color: #fff;
    background-color: #983cc9
}

.data-visualization-container .data-visualization-feature .dv-container .dv-content .carousel-button-wrapper {
    width: 100%;
    text-align: left
}

.data-visualization-container .data-visualization-feature .chart-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    bottom: 0
}

@media screen and (min-width:0 \0) {
    .data-visualization-container .data-visualization-feature .chart-container {
        left: 0;
        width: 100%
    }
}

.data-visualization-container .data-visualization-feature .chart-content {
    padding: 15px;
    flex: 1;
    display: flex
}

.data-visualization-container.background-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%
}

@media only screen and (min-width:768px) {
    .data-visualization-feature .ui.one.column.grid {
        width: 100%
    }

    .data-visualization-feature .dv-container {
        margin: auto;
        width: 60%
    }

    .data-visualization-feature .dv-container .dv-content {
        min-width: 10%;
        max-width: 50%;
        width: fit-content
    }

    .data-visualization-feature .dv-container .dv-content .dv-header {
        color: #fff
    }

    .data-visualization-feature .dv-container .dv-content .dv-sub-header {
        color: #fff
    }

    .data-visualization-feature .charts.grid {
        max-width: 1400px
    }

    .data-visualization-feature .charts.ui.grid {
        flex-direction: row
    }

    .data-visualization-feature .charts.ui.grid .column {
        width: 33.33333333%
    }
}

@media only screen and (max-width:767px) {
    .data-visualization-container {
        padding: 0 !important
    }

    .data-visualization-container.background-color {
        background-color: #152e4c
    }

    .data-visualization-container .data-visualization-feature,
    .data-visualization-container .ui.container {
        margin: 0 !important
    }

    .data-visualization-container .data-visualization-feature .ui.one.column.grid,
    .data-visualization-container .ui.container .ui.one.column.grid {
        margin: 0 !important;
        width: 100% !important
    }

    .data-visualization-container .data-visualization-feature .dv-container,
    .data-visualization-container .ui.container .dv-container {
        position: relative !important;
        top: 0;
        left: 0;
        padding: 0
    }

    .data-visualization-container .data-visualization-feature .dv-container .dv-content,
    .data-visualization-container .ui.container .dv-container .dv-content {
        width: 100%;
        padding: 20px 40px;
        margin: 0 auto
    }

    .data-visualization-container .data-visualization-feature .dv-container .dv-content .dv-header,
    .data-visualization-container .ui.container .dv-container .dv-content .dv-header {
        color: #fff;
        text-align: inherit;
        font-size: 2em
    }

    .data-visualization-container .data-visualization-feature .dv-container .dv-content .dv-sub-header,
    .data-visualization-container .ui.container .dv-container .dv-content .dv-sub-header {
        color: #fff;
        text-align: inherit
    }

    .data-visualization-container .data-visualization-feature .dv-container .dv-content .carousel-button-wrapper,
    .data-visualization-container .ui.container .dv-container .dv-content .carousel-button-wrapper {
        text-align: center
    }

    .data-visualization-container .data-visualization-feature .chart-container,
    .data-visualization-container .ui.container .chart-container {
        flex-wrap: wrap;
        position: relative
    }

    .data-visualization-container .data-visualization-feature .chart-container .chart-content,
    .data-visualization-container .ui.container .chart-container .chart-content {
        min-width: 100%;
        padding: 15px 40px
    }

    .data-visualization-container .data-visualization-feature .chart-container .chart-content .chart-body,
    .data-visualization-container .ui.container .chart-container .chart-content .chart-body {
        margin: 40px 0 0 0
    }

    .data-visualization-container .data-visualization-feature .charts.ui.grid,
    .data-visualization-container .ui.container .charts.ui.grid {
        flex-direction: column
    }

    .data-visualization-container .data-visualization-feature .charts.ui.grid .column,
    .data-visualization-container .ui.container .charts.ui.grid .column {
        width: 100%
    }
}

.icon-showcase-container .icon-showcase-feature {
    width: 100%;
    min-height: 450px;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column
}

.icon-showcase-container .icon-showcase-feature .dv-container {
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    display: flex;
    flex-direction: column
}

@media screen and (min-width:0 \0) {
    .icon-showcase-container .icon-showcase-feature .dv-container {
        left: 0
    }
}

.icon-showcase-container .icon-showcase-feature .dv-container .dv-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px;
    font-size: 14px;
    background-color: transparent;
    box-shadow: none;
    border: none
}

.icon-showcase-container .icon-showcase-feature .dv-container .dv-content.left {
    text-align: left
}

.icon-showcase-container .icon-showcase-feature .dv-container .dv-content.right {
    text-align: right
}

.icon-showcase-container .icon-showcase-feature .dv-container .dv-content.center {
    text-align: center
}

.icon-showcase-container .icon-showcase-feature .dv-container .dv-content .dv-header {
    font-size: 2.5em;
    font-style: normal;
    width: 100%;
    font-stretch: normal;
    color: #fff;
    line-height: normal;
    font-family: montserrat;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize
}

.icon-showcase-container .icon-showcase-feature .dv-container .dv-content .dv-sub-header {
    font-weight: 200;
    width: 100%;
    margin-bottom: 8px;
    line-height: normal;
    font-family: proximanova;
    font-size: 1.125em;
    color: #fff
}

.icon-showcase-container .icon-showcase-feature .chart-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

@media screen and (min-width:0 \0) {
    .icon-showcase-container .icon-showcase-feature .chart-container {
        left: 0;
        width: 100%
    }
}

.icon-showcase-container .icon-showcase-feature .chart-content {
    padding: 15px;
    flex: 1;
    display: flex
}

.icon-showcase-container.background-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .icon-showcase-feature .dv-container .dv-content {
        width: 100%
    }

    .icon-showcase-feature .dv-container .dv-content .dv-header {
        color: #fff
    }

    .icon-showcase-feature .dv-container .dv-content .dv-sub-header {
        color: #fff
    }
}

@media only screen and (max-width:767px) {
    .icon-showcase-container {
        padding: 0 !important
    }

    .icon-showcase-container.background-color {
        background-color: #152e4c
    }

    .icon-showcase-container .icon-showcase-feature,
    .icon-showcase-container .ui.container {
        margin: 0 !important
    }

    .icon-showcase-container .icon-showcase-feature .dv-container,
    .icon-showcase-container .ui.container .dv-container {
        position: relative !important;
        top: 0;
        left: 0
    }

    .icon-showcase-container .icon-showcase-feature .dv-container .dv-content,
    .icon-showcase-container .ui.container .dv-container .dv-content {
        width: 100%;
        padding: 20px 40px;
        margin: 0 auto;
        text-align: center
    }

    .icon-showcase-container .icon-showcase-feature .dv-container .dv-content .dv-header,
    .icon-showcase-container .ui.container .dv-container .dv-content .dv-header {
        color: #fff;
        font-size: 2em
    }

    .icon-showcase-container .icon-showcase-feature .dv-container .dv-content .dv-sub-header,
    .icon-showcase-container .ui.container .dv-container .dv-content .dv-sub-header {
        color: #fff
    }

    .icon-showcase-container .icon-showcase-feature .chart-container,
    .icon-showcase-container .ui.container .chart-container {
        flex-wrap: wrap;
        position: relative
    }

    .icon-showcase-container .icon-showcase-feature .chart-container .chart-content,
    .icon-showcase-container .ui.container .chart-container .chart-content {
        min-width: 100%;
        padding: 15px 40px
    }

    .icon-showcase-container .icon-showcase-feature .chart-container .chart-content .chart-body,
    .icon-showcase-container .ui.container .chart-container .chart-content .chart-body {
        margin: 40px 0 0 0
    }
}

.chart-feature {
    width: 100%;
    text-align: left;
    padding: 50px;
    display: flex;
    flex-direction: column
}

@media only screen and (max-width:767px) {
    .chart-feature {
        padding: 20px 40px 0 40px
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .chart-feature {
        padding: 10px 0 0 0
    }
}

.chart-feature .chart-header {
    font-style: normal;
    width: 100%;
    font-stretch: normal;
    text-align: center;
    color: #65c8cc;
    line-height: normal;
    font-family: montserrat;
    font-size: 2em;
    letter-spacing: 0;
    line-height: 1.2em;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s;
    font-weight: 200;
    height: 60px;
    margin-bottom: 5px
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .chart-feature .chart-header {
        font-size: 1.5em
    }
}

.chart-feature .ch-head {
    min-height: 65px
}

.chart-feature .chart-graph {
    font-family: proximanova;
    font-weight: 700;
    text-align: center;
    color: #65c8cc;
    line-height: 2.5em;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 2px;
    font-weight: 200 !important
}

@media only screen and (min-width:767px) {
    .chart-feature .chart-graph {
        height: 180px
    }
}

.chart-feature .chart-graph .symbol {
    font-size: 2.8em
}

.chart-feature .chart-graph .lnr {
    display: block;
    height: auto;
    line-height: 1.1em
}

.chart-feature .chart-graph .count {
    font-size: 2.8em
}

.chart-feature .chart-graph .num-txt {
    display: block;
    font-size: 1.5em;
    line-height: .25em
}

.chart-feature .chart-graph .normal-text {
    line-height: 131px
}

.chart-feature .chart-graph .iconcontainer {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.chart-feature .chart-graph .iconcontainer.custom-icon-container {
    justify-content: flex-start
}

.chart-feature .chart-graph .iconcontainer.custom-icon-container .custom-icon {
    height: 90px;
    width: 90px;
    background-repeat: no-repeat !important;
    background-position: center;
    background-size: cover;
    margin-bottom: 8px
}

.chart-feature .non-circle-linear {
    min-height: 148px
}

.chart-feature .non-linear {
    min-height: 148px
}

.chart-feature .circle {
    background-repeat: no-repeat;
    line-height: 12em;
    background-position: center
}

.chart-feature .chart-body {
    font-weight: 700;
    color: #fff;
    font-weight: 200;
    width: 100%;
    margin: 40px 0 0 0;
    line-height: normal;
    font-family: proximanova;
    text-align: center;
    font-size: 1em;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

@media only screen and (max-width:767px) {
    .chart-feature .chart-body {
        color: #fff
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .chart-feature .chart-body {
        margin: 35px 0 0 0
    }
}

.chart-feature .animate-stat-container {
    height: 150px
}

.chart-feature .animate-stat-container .animate-stat {
    color: #65c8cc;
    font-size: 34px;
    margin: 0 auto;
    position: absolute;
    text-align: center;
    top: 108px;
    width: 267px
}

.flexible-chart {
    margin: 0 !important
}

.flexible-chart .iconography-display {
    background-repeat: no-repeat !important;
    background-position: center;
    min-height: 110px
}

@media only screen and (min-width:767px) {
    .flexible-chart .iconography-display {
        height: 160px
    }
}

.flexible-chart .iconography-display .lnr {
    height: 100%;
    text-align: center;
    padding: 32px 0 !important
}

.flexible-chart .flexible-chart-header {
    font-weight: 200;
    font-size: 2.5em;
    font-family: montserrat;
    text-align: center;
    color: #fff;
    width: 100%
}

@media only screen and (max-width:767px) {
    .flexible-chart .flexible-chart-header {
        font-size: 1.5em;
        text-align: center
    }
}

.flexible-chart .chart-body {
    margin: 20px 0 0 0;
    font-family: proximanova
}

.social-share-button {
    height: 40px;
    border: solid 1px #e6e6e6;
    font: proxima nova;
    font-size: 14px;
    color: #4c4c4c;
    background-color: #e6e6e6
}

.social-share-button:hover {
    background-color: #983cc9;
    color: #fff;
    border: solid 0
}

.social-share-icon svg {
    width: 20px;
    fill: #000 !important
}

.media-gallery-carousel {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-top: 1rem
}

.media-gallery-carousel .carousel-heading {
    font-family: montserrat, 'open sans', 'helvetica neue', arial, helvetica, sans-serif !important;
    font-size: 2.5em !important;
    font-weight: 200;
    font-style: normal;
    width: 100%;
    font-stretch: normal;
    text-align: center;
    color: #000;
    line-height: normal;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .6s;
    -moz-transition: all .3s ease .6s;
    -o-transition: all .3s ease .6s;
    transition: all .3s ease .6s
}

@media only screen and (max-width:767px) {
    .media-gallery-carousel .carousel-heading {
        width: 90%;
        text-align: center;
        font-size: 1.875em;
        letter-spacing: .7px;
        line-height: 1em
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .media-gallery-carousel .carousel-heading {
        font-size: 2em;
        letter-spacing: .7px;
        line-height: 1em
    }
}

@media only screen and (min-width:1025px) {
    .media-gallery-carousel .carousel-heading {
        font-size: 2.5em;
        letter-spacing: 0;
        margin-top: 30px;
        line-height: 1em
    }
}

.media-gallery-carousel .carousel-subheading {
    width: 70%;
    text-align: center;
    color: #000;
    font-family: proximanova;
    font-size: 1.125em;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
    transform: translatey(-20px);
    -webkit-transition: all .3s ease .8s;
    -moz-transition: all .3s ease .8s;
    -o-transition: all .3s ease .8s;
    transition: all .3s ease .8s
}

.media-gallery-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background: #fff;
    box-shadow: -1px 3px 2px 0 rgba(0, 0, 0, .1);
    overflow: initial
}

.media-gallery-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 500px;
    border: solid 1px #979797;
    margin: 4px
}

.media-gallery-carousel .owl-dots .owl-dot.active {
    background: #979797;
    border: solid 1px #979797
}

@media only screen and (max-width:1200px) {
    .media-gallery-carousel {
        padding-top: 2rem
    }
}

.data-visualization-container.dv-simple .ui.one.column.grid {
    width: 100%;
    max-width: 1400px
}

.data-visualization-container.dv-simple .ui.one.column.grid .dv-content {
    margin-bottom: 0
}

.data-visualization-container.dv-simple .charts .chart-feature {
    padding-top: 0 !important
}

@media screen and (min-width:768px) {
    .sticky-header-container {
        display: none;
        min-height: 95px;
        z-index: 9999
    }

    .sticky-header-container .content-container {
        height: inherit
    }

    .sticky-header-container .lnr-cross {
        position: absolute;
        text-align: center;
        padding: 6px;
        top: 4px;
        width: 34px;
        height: 34px;
        right: 8px;
        transition: all .2s;
        font-size: 1.5em;
        font-weight: 300;
        text-decoration: none;
        color: #000;
        z-index: 1
    }

    .sticky-header-container.background-image {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width: 100%;
        height: 95px
    }

    .sticky-header-container .ui.container {
        padding: 20px;
        font-family: montserrat
    }

    .sticky-header-container .segments {
        border: none;
        box-shadow: none
    }

    .sticky-header-container .segments.left {
        float: left
    }

    .sticky-header-container .segments.right {
        float: right
    }

    .sticky-header-container .segments.center {
        margin: auto
    }

    .sticky-header-container .header {
        font-weight: 400;
        font-size: 30px;
        margin-bottom: 10px
    }
}

@media screen and (max-width:767px) {
    .sticky-header-container {
        display: none !important
    }
}

@media screen and (min-width:1441px) {
    .sticky-header-container {
        min-height: 100px;
        z-index: 9999
    }

    .sticky-header-container.background-image {
        height: 100px
    }
}

.dashboard {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important
}

.dashboard .account-info span:first-child {
    color: #9a9a9a
}

.dashboard #account-validation-status .validated-status {
    display: none
}

.dashboard #account-validation-status .non-validated-status,
.dashboard #account-validation-status .validated-status {
    text-align: center
}

.dashboard #account-validation-status.validated .non-validated-status {
    display: none
}

.dashboard #account-validation-status.validated .validated-status {
    display: inline-block
}

.dashboard #account-validation-status.validated .validate-card {
    display: none !important;
    pointer-events: none !important
}

.dashboard #address-dropdowns {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-width: 400px
}

.dashboard .account-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative
}

.dashboard .input-group {
    position: relative;
    margin-bottom: 30px;
    max-width: 400px;
    width: 100%
}

.dashboard .notification {
    background: #7f8fa4;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .13);
    border-radius: 2px;
    color: #fff;
    padding: 10px;
    width: 100%;
    margin: 15px 0;
    font-size: 1em;
    display: flex
}

.dashboard .notification span {
    color: #35465d;
    margin-right: 10px;
    font-size: 1.4em
}

.dashboard .dash-header-center {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 14px
}

.dashboard .dash-header-center .dash-section-title {
    margin: 0
}

.dashboard .dash-header-center a.back {
    position: absolute;
    left: 0
}

.dashboard #dashboard-site-search {
    width: 100%;
    height: 70px;
    position: relative
}

.dashboard #dashboard-site-search:after {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #979797;
    pointer-events: none
}

.dashboard #dashboard-container {
    display: flex;
    flex-direction: row;
    width: 100%
}

.dashboard #dashboard-container .flex-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap
}

.dashboard #dashboard-container .flex-grid .flex-2:first-child {
    padding-right: 10px
}

.dashboard #dashboard-container hr {
    background: #dfe2e5;
    border: 0;
    height: 1px;
    background-image: none;
    width: calc(100% - 30px)
}

.dashboard #dashboard-container .dash-body-center {
    width: 100%;
    max-width: 660px
}

.dashboard #dashboard-container .dashboard-body {
    width: 100%;
    overflow-y: hidden
}

.dashboard #dashboard-container .dashboard-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px 15px 25px
}

.dashboard #dashboard-container .dashboard-content ul.dashboard-sections {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap
}

.dashboard .bc-modal-update-email {
    display: none
}

.dashboard .successful .form-container {
    pointer-events: none !important;
    opacity: .3 !important
}

.dashboard .successful .profile-update {
    opacity: 0;
    z-index: 1;
    background-image: url(/uploads/image/c2cimage/circle-checkmark.svg);
    position: absolute;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100px;
    width: 100px;
    line-height: 240px;
    text-align: center;
    animation: profileupdatesuccessful 3s 1
}

.dashboard .successful .profile-update:after {
    content: 'updated';
    color: #5adb5a;
    font-size: 1.2rem;
    font-weight: 700
}

.no-scroll {
    overflow: hidden !important
}

.bec-dsc {
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 10px;
    cursor: pointer;
    width: 125px
}

.bec-dsc a {
    font-family: proximanova, montserrat, sans-serif;
    text-align: center
}

.bec-dsc .bec-dsc-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    z-index: 2
}

.bec-dsc .bec-dsc-icon span.lnr {
    position: relative;
    font-size: 40px;
    color: #fff;
    z-index: 1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.bec-dsc .bec-dsc-icon .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 9999px;
    background-image: -webkit-linear-gradient(top, #aa217c 5%, #621b4a 95%);
    background-image: -moz-linear-gradient(top, #aa217c 5%, #621b4a 95%);
    background-image: -ms-linear-gradient(top, #aa217c 5%, #621b4a 95%);
    background-image: -o-linear-gradient(top, #aa217c 5%, #621b4a 95%);
    background-image: linear-gradient(to bottom, #aa217c 5%, #621b4a 95%);
    background-color: #aa217c;
    transform-origin: center center;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.bec-dsc span.label {
    padding: 20px 0;
    width: 100%;
    color: #000;
    text-align: center;
    z-index: 4
}

.bec-dsc.transition {
    z-index: 9999999999
}

.bec-dsc.transition .bg {
    -webkit-transform: scale(22) !important;
    -moz-transform: scale(22) !important;
    -ms-transform: scale(22) !important;
    -o-transform: scale(22) !important;
    transform: scale(22) !important
}

.bec-dsc.transition span.lnr {
    -webkit-transform: scale(1.3) !important;
    -moz-transform: scale(1.3) !important;
    -ms-transform: scale(1.3) !important;
    -o-transform: scale(1.3) !important;
    transform: scale(1.3) !important
}

.bec-dsc.transition span.label {
    bottom: -30px !important;
    color: #fff !important
}

.bec-dsc:hover span.lnr {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3)
}

.validate-customer-form .close {
    top: 1.0535rem !important;
    right: 1rem !important;
    color: rgba(0, 0, 0, .87) !important
}

.validate-customer-form .content {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-top: 50px !important
}

.validate-customer-form .form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.validate-customer-form .form-step .input-group.field {
    width: 100%
}

.validate-customer-form .modal-footer {
    max-width: 1400px;
    text-align: center;
    margin-top: 40px;
    width: 100%
}

.img-responsive {
    height: auto;
    max-width: 100%;
    display: inline
}

@media only screen and (max-width:767px) {
    .richtext-mobile * {
        text-align: left !important
    }
}

.blog-post-list .pagination {
    display: flex;
    width: 100%;
    justify-content: space-between;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px
}

.blog-post-list .pagination .results-count {
    width: 100%
}

.search-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 !important
}

.search-page .download-all {
    padding: 10px;
    margin-top: -15px;
    margin-bottom: 10px
}

.search-page .download-all a {
    cursor: pointer
}

.search-page .custom-error {
    opacity: 1;
    height: 100%;
    padding: 5px
}

.search-page #search-header {
    width: 100%;
    display: flex;
    position: relative;
    background-color: #eaeaea;
    justify-content: center
}

.search-page #search-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    max-width: 1400px;
    width: calc(100% - 30px);
    flex-wrap: wrap
}

.search-page #search-header .container label.inline-search-input {
    width: 100%
}

.search-page #search-header .container label.inline-search-input span.label {
    color: red;
    width: 100%
}

.search-page #search-header .container label.inline-search-input span#search-icon {
    margin-right: 10px;
    font-size: 20px;
    color: #909090;
    cursor: pointer
}

.search-page #search-header .container label.inline-search-input span.inline-search-input-container {
    width: 100%;
    border-bottom: solid 1px #909090;
    display: flex;
    flex-direction: row;
    align-items: center
}

.search-page #search-header .container label.inline-search-input span.inline-search-input-container input {
    width: 100%;
    max-width: none;
    background: 0 0;
    border: none;
    box-shadow: none;
    outline: 0;
    font-family: montserrat;
    font-weight: 200;
    font-size: 2em;
    margin: 0;
    padding: 0
}

.search-page #mobile-filters {
    margin-top: 30px;
    background-color: #eaeaea;
    padding: 15px;
    width: calc(100% - 30px);
    display: none
}

.search-page #mobile-filters .dropdown {
    border-radius: 0;
    border: none
}

.search-page #mobile-filters .dropdown .menu {
    border: none
}

.search-page #mobile-filters .main-mobile-filters .input-group {
    margin-bottom: 0
}

.search-page #mobile-filters #secondary-filters .input-group:first-child {
    margin-top: 30px
}

.search-page #mobile-filters #secondary-filters .input-group:last-child {
    margin-bottom: 0
}

.search-page #mobile-filters .multi-download {
    max-width: 400px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center
}

.search-page #mobile-filters .multi-download #download {
    font-size: 12px;
    width: 100%;
    height: 37px;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.search-page #mobile-filters .multi-download #download .icon {
    font-size: 20px;
    height: auto;
    margin: 0 4px 0 0;
    color: #fff
}

.search-page #mobile-filters .multi-download #clear-items {
    margin-top: 5px;
    display: inline-block;
    cursor: pointer
}

.search-page #mobile-filters .multi-download.disabled #download {
    background-color: #c1c1c1;
    pointer-events: none
}

.search-page #mobile-filters .multi-download.disabled #clear-items {
    display: none
}

.search-page #search-container {
    display: flex;
    flex-direction: row;
    min-height: 300px;
    padding-top: 30px;
    max-width: 1570px;
    width: calc(100% - 30px)
}

.search-page #search-container .search-left-rail {
    width: 250px;
    min-width: 250px
}

.search-page #search-container .search-left-rail .multi-download {
    max-width: 400px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center
}

.search-page #search-container .search-left-rail .multi-download #download {
    font-size: 12px;
    width: 100%;
    height: 37px;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.search-page #search-container .search-left-rail .multi-download #download .icon {
    font-size: 20px;
    height: auto;
    margin: 0 4px 0 0;
    color: #fff
}

.search-page #search-container .search-left-rail .multi-download #clear-items {
    margin-top: 5px;
    display: inline-block;
    cursor: pointer
}

.search-page #search-container .search-left-rail .multi-download.disabled #download {
    background-color: #c1c1c1;
    pointer-events: none
}

.search-page #search-container .search-left-rail .multi-download.disabled #clear-items {
    display: none
}

.search-page #search-container .search-left-rail .filter-by {
    background-color: #eaeaea;
    padding: 15px;
    -webkit-transition: margin-top .3s;
    transition: margin-top .3s
}

.search-page #search-container .search-left-rail .filter-by .dropdown {
    border-radius: 0;
    border: none
}

.search-page #search-container .search-left-rail .filter-by .dropdown .text .count {
    color: #983cc9
}

.search-page #search-container .search-left-rail .filter-by .dropdown .menu {
    border: none
}

.search-page #search-container .search-left-rail .filter-by .dropdown .menu .count {
    color: #983cc9
}

.search-page #search-container .search-left-rail .filter-by ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.search-page #search-container .search-left-rail .filter-by ul li {
    padding: 5px 0
}

.search-page #search-container .search-left-rail .filter-by ul li .refiners {
    margin-top: 10px;
    display: none
}

.search-page #search-container .search-left-rail .filter-by ul li .refiners .input-group.field {
    color: #000
}

.search-page #search-container .search-left-rail .filter-by ul li .refiners.active {
    display: block
}

.search-page #search-container .search-left-rail .filter-by ul li .refiners .clear-all-fitlers .button {
    margin: 0;
    padding: 0;
    font-family: proximanova, 'open sans', 'helvetica neue', arial, helvetica, sans-serif
}

.search-page #search-container .search-left-rail .filter-by ul li .refiners .select-all-techdocs {
    padding-top: 10px
}

.search-page #search-container .search-left-rail .filter-by ul li .refiners .select-all-techdocs .label {
    color: grey;
    margin-left: 5px
}

.search-page #search-container .search-body {
    width: calc(100% - 250px);
    position: relative
}

.search-page #search-container .search-body .search-body-footer,
.search-page #search-container .search-body .search-body-header {
    padding: 0 15px 0 30px;
    width: calc(100% - 15px)
}

.search-page #search-container .search-body .search-results {
    padding: 0 15px 0 30px;
    width: calc(100% - 15px);
    position: relative;
    z-index: 900
}

.search-page #search-container .search-body .search-results .item {
    position: relative;
    padding: 15px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    border: solid 1px #e6e6e6;
    margin-bottom: 30px
}

.search-page #search-container .search-body .search-results .item .locked-content {
    display: inline-flex;
    font-family: proximanova, montserrat, sans-serif;
    font-size: 20px;
    color: #983cc9;
    width: 100%;
    line-height: 26px
}

.search-page #search-container .search-body .search-results .item table .ui .celled .table .content {
    padding: 0 !important;
    margin: 0 !important;
    table-layout: fixed;
    width: 100%
}

.search-page #search-container .search-body .search-results .item table.content {
    background: 0 0
}

.search-page #search-container .search-body .search-results .item .content {
    text-align: left;
    margin: 0 !important;
    width: 100%
}

.search-page #search-container .search-body .search-results .item .content a {
    text-decoration: none;
    display: block
}

.search-page #search-container .search-body .search-results .item .content a.popup,
.search-page #search-container .search-body .search-results .item .content a.popupcenter,
.search-page #search-container .search-body .search-results .item .content a.popupleft,
.search-page #search-container .search-body .search-results .item .content a.popupright {
    display: inline-block
}

.search-page #search-container .search-body .search-results .item .content .label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    letter-spacing: .82px;
    line-height: 21px;
    border: none !important;
    padding: 0 !important;
    width: 33%;
    position: relative
}

.search-page #search-container .search-body .search-results .item .content .label svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #63666a
}

.search-page #search-container .search-body .search-results .item .content .label-centered {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    letter-spacing: .82px;
    line-height: 21px;
    border: none !important;
    padding: 0 !important;
    width: 33%;
    text-align: center;
    position: relative
}

.search-page #search-container .search-body .search-results .item .content .label-centered span {
    font-family: proximanova, 'open sans', 'helvetica neue', arial, helvetica, sans-serif
}

.search-page #search-container .search-body .search-results .item .content .label-centered svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #63666a
}

.search-page #search-container .search-body .search-results .item .content .title {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 20px;
    color: #983cc9;
    width: 100%;
    line-height: 26px
}

.search-page #search-container .search-body .search-results .item .content .text {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%
}

.search-page #search-container .search-body .search-results .item .technical-document-details {
    position: relative;
    width: 100%
}

.search-page #search-container .search-body .search-results .item .technical-document-details .more-details {
    font-size: 1em;
    font-weight: 200;
    position: relative;
    display: block;
    cursor: pointer;
    font-family: proximanova, montserrat, sans-serif;
    font-size: 12px;
    color: #979797;
    width: 100%
}

.search-page #search-container .search-body .search-results .item .technical-document-details .more-details:before {
    content: '\f0fe';
    font-family: icons;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    margin-right: 5px
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details {
    background: #fff
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .product-line-column {
    max-width: 326px;
    width: 326px
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .search-columns {
    max-width: 215px;
    width: 215px
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .document-detail {
    border-right: solid 1px #e6e6e6;
    vertical-align: top
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .document-detail:last-child {
    border: none
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .document-detail .detail-label {
    font-size: 14px;
    color: #000;
    font-family: proximanova;
    font-size: 12px;
    color: #983cc9;
    line-height: normal;
    padding-bottom: 5px
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .document-detail .detail-value {
    font-family: proximanova;
    font-size: 14px;
    color: #4c4c4c
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .document-detail .detail-value .type-icon {
    padding: 5px
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .document-detail .icon.lock {
    color: #fff;
    font-size: 20px
}

.search-page #search-container .search-body .search-results .item .technical-document-details .document-details .document-detail .pop-up-list-container {
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    max-height: 3.6em;
    text-align: center !important;
    margin-right: -1em;
    padding-right: 1em
}

.search-page #search-container .search-body .search-results .item:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #eaeaea;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1
}

.search-page #search-container .search-body .search-results .item:hover:before {
    opacity: 1;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03)
}

.search-page #search-container .search-body .pagination {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap
}

.search-page #search-container .search-body .pagination .results-count {
    width: 100%
}

.search-page #search-container .search-body .search-no-results {
    padding: 0 15px 0 30px
}

.search-page #search-container.loading .filter-by {
    pointer-events: none;
    opacity: .3
}

.search-page #search-container.loading .search-body-header,
.search-page #search-container.loading .search-results {
    pointer-events: none;
    opacity: .3
}

.search-page #search-container.loading .loader {
    display: block;
    top: 60px;
    position: absolute
}

.results-list,
.search-results {
    padding: 0 15px 0 30px;
    width: calc(100% - 15px)
}

.results-list .item,
.search-results .item {
    position: relative;
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    border-bottom: solid 1px #e6e6e6
}

.results-list .item .content,
.search-results .item .content {
    text-align: left;
    width: 100%;
    border: none !important;
    margin: 0 !important
}

.results-list .item .content a,
.search-results .item .content a {
    text-decoration: none;
    display: block
}

.results-list .item .content .label,
.search-results .item .content .label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    letter-spacing: .82px;
    line-height: 21px;
    border: none !important;
    padding: 0 !important;
    width: 33%;
    position: relative
}

.results-list .item .content .label span,
.search-results .item .content .label span {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 12px;
    color: #000;
    margin-left: 5px
}

.results-list .item .content .label svg,
.search-results .item .content .label svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #63666a
}

.results-list .item .content .language-label,
.search-results .item .content .language-label {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    letter-spacing: .82px;
    line-height: 21px;
    text-align: right;
    border: none !important;
    padding: 0 !important;
    position: relative
}

.results-list .item .content .language-label span,
.search-results .item .content .language-label span {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 12px;
    color: #000;
    margin-left: 5px
}

.results-list .item .content .language-label svg,
.search-results .item .content .language-label svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #63666a
}

.results-list .item .content .title,
.search-results .item .content .title {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 20px;
    color: #983cc9;
    width: 100%;
    line-height: 26px;
    position: relative;
    word-break: break-word
}

.results-list .item .content .text,
.search-results .item .content .text {
    font-family: proximanova, montserrat, sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%
}

.results-list .item .technical-document-details,
.search-results .item .technical-document-details {
    position: relative;
    width: 100%
}

.results-list .item .technical-document-details .more-details,
.search-results .item .technical-document-details .more-details {
    font-size: 1em;
    font-weight: 200;
    position: relative;
    display: block;
    cursor: pointer;
    font-family: proximanova, montserrat, sans-serif;
    font-size: 12px;
    color: #979797;
    width: 100%
}

.results-list .item .technical-document-details .more-details:before,
.search-results .item .technical-document-details .more-details:before {
    content: '\f0fe';
    font-family: icons;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: initial;
    height: initial;
    box-shadow: none;
    opacity: 1;
    margin-right: 5px
}

.results-list .item .technical-document-details .document-details,
.search-results .item .technical-document-details .document-details {
    background: #fff
}

.results-list .item .technical-document-details .document-details .document-detail,
.search-results .item .technical-document-details .document-details .document-detail {
    text-align: center;
    padding: 12px
}

.results-list .item .technical-document-details .document-details .document-detail .detail-label,
.search-results .item .technical-document-details .document-details .document-detail .detail-label {
    font-family: proximanova;
    font-size: 14px;
    color: #000;
    line-height: normal;
    padding-bottom: 5px
}

.results-list .item .technical-document-details .document-details .document-detail .detail-value,
.search-results .item .technical-document-details .document-details .document-detail .detail-value {
    font-family: proximanova;
    font-size: 14px;
    color: #4c4c4c
}

.results-list .item .technical-document-details .document-details .download-lock,
.search-results .item .technical-document-details .document-details .download-lock {
    background-color: #eaeaea;
    max-width: 34px;
    width: 34px
}

.results-list .item .technical-document-details .document-details .download,
.search-results .item .technical-document-details .document-details .download {
    justify-content: center;
    align-items: center;
    max-width: 42px;
    width: 42px;
    background-color: #c1c1c1;
    vertical-align: middle !important
}

.results-list .item .technical-document-details .document-details .download .ui.checkbox,
.search-results .item .technical-document-details .document-details .download .ui.checkbox {
    justify-content: center;
    align-items: center
}

.results-list .item .technical-document-details .document-details .download .ui.checkbox label,
.search-results .item .technical-document-details .document-details .download .ui.checkbox label {
    width: 17px;
    height: 17px;
    margin: 0;
    padding: 0
}

.results-list .item .technical-document-details .document-details .download.selected,
.search-results .item .technical-document-details .document-details .download.selected {
    background-color: #983cc9
}

.results-list .item .technical-document-details .document-disclaimer,
.search-results .item .technical-document-details .document-disclaimer {
    padding: 10px 0;
    color: red
}

.results-list .item .technical-document-details .document-word-file,
.search-results .item .technical-document-details .document-word-file {
    padding: 10px 0
}

.results-list .item .technical-document-details .document-word-file a,
.search-results .item .technical-document-details .document-word-file a {
    color: #983cc9
}

.results-list .item .technical-document-details input[type=checkbox],
.search-results .item .technical-document-details input[type=checkbox] {
    position: absolute;
    left: -9999px
}

.results-list .item .technical-document-details input[type=checkbox]~.document-details,
.search-results .item .technical-document-details input[type=checkbox]~.document-details {
    height: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0s ease;
    -moz-transition: opacity 0s ease;
    -o-transition: opacity 0s ease;
    transition: opacity 0s ease
}

.results-list .item .technical-document-details input[type=checkbox]:checked~.document-details,
.search-results .item .technical-document-details input[type=checkbox]:checked~.document-details {
    height: auto;
    opacity: 1;
    padding: 15px;
    pointer-events: all;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease
}

.results-list .item:before,
.search-results .item:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #fafafa;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1
}

.results-list .item:hover:before,
.search-results .item:hover:before {
    opacity: 1;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03)
}

.modal.multi-download-modal {
    margin-top: -409.5px !important;
    margin-top: -45vh !important
}

.modal.multi-download-modal .recaptcha-input {
    max-width: none;
    width: 100%;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px 0
}

.modal.multi-download-modal .content-container {
    max-width: none
}

.modal.multi-download-modal .dash-header {
    text-align: center;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1.25rem
}

.modal.multi-download-modal .multi-download-items {
    max-height: calc(100vh - 450px);
    margin-top: 10px;
    overflow-y: auto
}

.modal.multi-download-modal .multi-download-items .item {
    display: flex;
    align-items: center;
    height: 62px;
    border: 1px solid #e6e6e6;
    margin-top: 2px
}

.modal.multi-download-modal .multi-download-items .item .download {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
    min-width: 42px;
    max-width: 42px;
    flex: 1;
    background-color: #c1c1c1
}

.modal.multi-download-modal .multi-download-items .item .download .ui.checkbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.modal.multi-download-modal .multi-download-items .item .download .ui.checkbox label {
    width: 17px;
    height: 17px;
    margin: 0;
    padding: 0
}

.modal.multi-download-modal .multi-download-items .item .selected {
    background-color: #983cc9
}

.modal.multi-download-modal .item-info {
    display: flex;
    flex-grow: 1;
    padding-left: 20px;
    padding-right: 20px
}

.modal.multi-download-modal .item-info .left-section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    line-height: 1
}

.modal.multi-download-modal .item-info .left-section .header {
    font-size: 16px;
    font-weight: 700;
    color: #d8001e;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.modal.multi-download-modal .item-info .left-section .description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.modal.multi-download-modal .item-info .right-section {
    display: flex;
    flex-direction: column;
    text-align: right;
    max-width: 80px
}

.modal.multi-download-modal .item-info .right-section .header {
    color: #d8001e;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.modal.multi-download-modal .item-info .right-section .description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media only screen and (max-width:767px) {
    .search-page #search-container .search-left-rail {
        display: none
    }

    .search-page #search-container .search-body {
        width: 100%
    }

    .search-page #search-container .search-body-header,
    .search-page #search-container .search-results {
        padding: 0 15px 0 15px !important;
        width: 100% !important
    }

    .search-page #mobile-filters {
        display: block
    }

    .download-lock {
        height: 32px
    }

    .results-list .item .content,
    .search-results .item .content {
        border: none !important;
        margin-bottom: 0 !important;
        text-align: left
    }

    .results-list .item .content .label-centered,
    .search-results .item .content .label-centered {
        text-align: left !important
    }

    .results-list .item .content .language-label,
    .search-results .item .content .language-label {
        text-align: left !important
    }

    .results-list .item .content .info,
    .search-results .item .content .info {
        width: 100%
    }

    .results-list .technical-document-details table tbody tr,
    .search-results .technical-document-details table tbody tr {
        padding-top: 0 !important
    }

    .results-list .technical-document-details .document-details,
    .search-results .technical-document-details .document-details {
        flex-wrap: wrap !important
    }

    .results-list .technical-document-details .document-details .document-detail,
    .search-results .technical-document-details .document-details .document-detail {
        width: 100% !important;
        max-width: inherit !important;
        border-bottom: solid 1px #e6e6e6 !important
    }

    .results-list .technical-document-details .document-details .document-detail:nth-last-child(-n 1),
    .search-results .technical-document-details .document-details .document-detail:nth-last-child(-n 1) {
        border-bottom: none !important
    }
}

a.popup,
a.popupcenter,
a.popupleft,
a.popupright {
    cursor: pointer
}

div.popupcontainer {
    min-width: 300px;
    max-width: 375px;
    margin: 5px;
    overflow: visible
}

div.popupcontainer div.popupheader {
    color: #983cc9;
    font-size: 24px;
    font-family: montserrat;
    display: grid;
    display: -ms-grid;
    grid-template-columns: 6fr 1fr;
    -ms-grid-columns: 6fr 1fr
}

div.popupcontainer div.popupheader .popupheadertext {
    grid-column-end: 2
}

div.popupcontainer div.popupheader .popup-close-icon {
    grid-column-start: 2;
    -ms-grid-column: 2
}

div.popupcontainer div.popupheader .popup-close-icon i.close {
    float: right;
    color: #000
}

div.popupcontainer div.popupinner {
    max-height: 200px;
    font-size: 14px
}

div.popupcontainer .prod-scroll {
    overflow-y: auto
}

.info {
    z-index: 10;
    display: inherit
}

div.ui.popup {
    max-width: 425px;
    min-width: 300px
}

.locked-content-doc-type-icon {
    display: inline-block
}

.content-lock-wrapper {
    cursor: pointer
}

.pop-up-list {
    display: inline-block;
    vertical-align: -1px
}

.view-all-link {
    cursor: pointer;
    display: inline;
    padding-left: 10px
}

.filters-dropdowns .result-size,
.filters-dropdowns .sort-by {
    z-index: 1000
}

.blog-search .filters-dropdowns .content {
    display: inline-block
}

.blog-search .filters-dropdowns .content:not(:last-of-type) {
    margin-right: 2rem
}

.blog-post-list .filters-dropdowns .content {
    display: inline-block
}

.blog-post-list .filters-dropdowns .content:not(:last-of-type) {
    margin-right: 2rem
}

.search-results .item.registration-required svg,
.search-results .item.validation-required svg {
    opacity: .3
}

.search-results .item.registration-required.registered svg,
.search-results .item.validation-required.validated svg {
    opacity: 1
}

.site-banner-messages {
    width: 100vw;
    background: #fff
}

.site-banner-messages .site-banner-container {
    background: #474c55;
    width: 100%;
    display: flex;
    justify-content: center
}

.site-banner-messages .site-banner-container .site-banner-message {
    width: 100%;
    padding: 0 1rem;
    display: flex;
    align-items: center
}

.site-banner-messages .site-banner-container .site-banner-message span {
    color: #fff;
    font-size: 16px;
    text-align: center;
    width: calc(100% - 45px)
}

.site-banner-messages .site-banner-container .site-banner-message button {
    background: 0 0 !important;
    border: none !important;
    width: 45px !important;
    height: 45px !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: 0 !important
}

.site-banner-messages .site-banner-container .site-banner-message button svg {
    width: 12px;
    height: 12px;
    fill: #fff
}

.cookie-message {
    font-size: 14px !important;
    font-family: proximanova, montserrat, sans-serif !important
}

.cookie-dismiss {
    font-size: 14px !important;
    font-family: proximanova, montserrat, sans-serif !important
}

.cookie-link {
    font-size: 14px !important;
    font-family: proximanova, montserrat, sans-serif !important
}

.photo-hero-splash {
    height: 600px !important;
    font-family: montserrat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.photo-hero-splash .top-banner-text {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 50px rgba(0, 0, 0, .37);
    line-height: 1em !important
}

@media only screen and (max-width:767px) {
    .photo-hero-splash .top-banner-text {
        font-size: 3.438em !important;
        letter-spacing: 1.4px
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-splash .top-banner-text {
        font-size: 9.25em !important;
        letter-spacing: 3px
    }
}

.photo-hero-splash .top-banner-spacer {
    padding-top: 1.375rem !important
}

.photo-hero-splash .top-banner-subtext {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #fff
}

@media only screen and (max-width:767px) {
    .photo-hero-splash .top-banner-subtext {
        font-size: 1.25em !important;
        letter-spacing: .7px
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-splash .top-banner-subtext {
        font-size: 1.875em !important;
        letter-spacing: .5px
    }
}

@media only screen and (max-width:767px) {
    .photo-hero-splash .splash-dot {
        position: absolute !important;
        top: -350% !important;
        width: 100% !important;
        left: 90% !important;
        border: 1px solid #fff
    }

    .photo-hero-splash .dot-line {
        left: 89%;
        width: 100%;
        float: left;
        text-align: left;
        position: absolute;
        top: -360%
    }

    .photo-hero-splash .dot-line .left {
        float: left
    }

    .photo-hero-splash .dot-line .right {
        float: right
    }

    .photo-hero-splash .dot-line .restricted-size {
        width: 10px !important
    }

    .photo-hero-splash .dot-line .right-aligned {
        display: inline-flex
    }

    .photo-hero-splash .dot-line hr {
        margin: 0;
        margin-left: -100% !important;
        width: 195%;
        height: 5px;
        border-left: none;
        border-right: none;
        border-top: 1px solid transparent;
        border-bottom: 1px solid #979797;
        font-size: 1px
    }

    .photo-hero-splash .dot-line .circle {
        margin-top: -16px;
        font-size: 4em !important;
        color: #621b4a
    }
}

@media only screen and (min-width:768px) {
    .photo-hero-splash .splash-dot {
        position: absolute !important;
        top: 19px !important;
        width: 190% !important;
        left: 24px !important;
        border: 1px solid #fff
    }

    .photo-hero-splash .dot-line {
        width: 100%;
        float: left;
        text-align: left
    }

    .photo-hero-splash .dot-line .left {
        float: left
    }

    .photo-hero-splash .dot-line .right {
        float: right
    }

    .photo-hero-splash .dot-line .restricted-size {
        width: 10px !important
    }

    .photo-hero-splash .dot-line .right-aligned {
        display: inline-flex
    }
}

@media only screen and (min-width:768px) and only screen and (min-width:768px) {
    .photo-hero-splash .dot-line hr {
        margin: 0;
        margin-left: -100% !important;
        width: 198%;
        height: 5px;
        border-left: none;
        border-right: none;
        border-top: 1px solid transparent;
        border-bottom: 1px solid #979797;
        font-size: 1px
    }

    .photo-hero-splash .dot-line .circle {
        margin-top: -16px;
        font-size: 4em !important;
        color: #621b4a
    }
}

.media-teaser {
    padding: 1em;
    padding-left: 0;
    padding-right: 0;
    box-sizing: content-box
}

.media-teaser .media-link-image {
    background: #000;
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center;
    overflow: hidden
}

.media-teaser .media-link-image .media-text {
    position: absolute;
    bottom: 1em;
    display: table-caption;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    padding: 0 1.5rem 1.5rem 1.5rem
}

.media-teaser .media-link-image .media-text .media-category {
    font-size: 14px;
    font-family: montserrat;
    color: #fff !important;
    letter-spacing: 0;
    padding-bottom: 3px;
    padding-left: initial
}

.media-teaser .media-link-image .media-text .media-headline {
    font-size: 1.877em;
    font-family: montserrat;
    color: #fff !important;
    letter-spacing: 0;
    line-height: .95;
    padding-left: initial;
    padding-right: initial;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.media-teaser .media-link-image .media-text .media-headline::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-bottom: .09em
}

.media-teaser .media-link-image .media-text .media-headline::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-bottom: .047em
}

.media-teaser .media-link-image img {
    opacity: .9;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease
}

.media-teaser .media-link-image:hover img {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05)
}

.media-teaser .type-video::after,
.media-teaser .type-video::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    position: absolute
}

.column .media-teaser .media-link-image .media-text .media-headline {
    font-size: 1.577em
}

.column .media-teaser .media-link-image .media-text .media-headline::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-bottom: .071em
}

.column .media-teaser .media-link-image .media-text .media-headline::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-bottom: .071em
}

.column .media-teaser .type-video:before {
    width: 4em;
    height: 4em
}

@media screen and (max-width:1024px) {
    .media-teaser .type-video::after {
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 23px solid #fff
    }

    .media-teaser .type-video::before {
        width: 3rem !important;
        height: 3rem !important;
        left: 49%
    }

    .media-text .media-category {
        font-size: 1rem !important
    }

    .media-text .media-headline {
        font-size: 1rem !important;
        padding-right: initial
    }

    .media-text {
        padding: 0 1rem 1rem 1rem !important
    }
}

@media screen and (width:320px) {
    .media-text .media-category {
        font-size: .75rem !important
    }

    .media-text .media-headline {
        font-size: .75rem !important
    }
}

@media screen and (width:768px) {
    .column.media-text .media-category {
        font-size: .82rem !important
    }

    .column .media-text .media-headline {
        font-size: .82rem !important
    }
}

@media screen and (min-width:321px) and (max-width:360px) {
    .media-text .media-category {
        font-size: .84rem !important
    }

    .media-text .media-headline {
        font-size: .84rem !important
    }
}

.media-teaser-tall {
    height: 100% !important;
    padding: 1em;
    padding-left: 0;
    padding-right: 0
}

.media-teaser-tall .media-link-image {
    background: #000;
    width: 100%;
    height: 100%;
    display: flex;
    transform-origin: center;
    overflow: hidden
}

.media-teaser-tall .media-link-image .media-text {
    position: absolute;
    align-self: flex-end;
    padding-bottom: 20px;
    width: 100%;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease
}

.media-teaser-tall .media-link-image .media-text .media-category {
    font-size: 14px !important;
    font-family: montserrat;
    color: #fff !important;
    letter-spacing: .5px;
    padding-bottom: 3px;
    padding-left: 1.6em
}

.media-teaser-tall .media-link-image .media-text .media-headline {
    font-size: 30px !important;
    font-family: montserrat;
    color: #fff !important;
    letter-spacing: .5px;
    line-height: .95;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.media-teaser-tall .media-link-image img {
    height: 100% !important;
    opacity: .9;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease
}

.media-teaser-tall .media-link-image:hover img {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05)
}

.dot-motif.motif-divider {
    position: relative;
    right: 0;
    width: calc(100%   100vw);
    left: -100vw;
    display: block;
    margin-top: 50px
}

.dot-motif.motif-divider:before {
    content: '';
    background: #979797;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0
}

.dot-motif.motif-divider:after {
    content: '';
    background: #9e007e;
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 100px;
    right: -3px;
    top: -3px
}

.dot-motif.motif-divider.motif-right {
    left: 0;
    right: -100vw
}

.dot-motif.motif-divider.motif-right:before {
    right: 0;
    left: initial
}

.dot-motif.motif-divider.motif-right:after {
    right: initial;
    left: -3px
}

.dot-motif.motif-divider.motif-light:after {
    background: #fff
}

.dot-motif.motif-divider.motif-light:before {
    background: #fff
}

.dot-motif.motif-inline {
    position: absolute;
    left: initial;
    top: 50%;
    width: calc(100%   100vw);
    right: 100%
}

.dot-motif.motif-inline:before {
    content: '';
    background: #979797;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0
}

.dot-motif.motif-inline:after {
    content: '';
    background: #9e007e;
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 100px;
    right: -3px;
    top: -3px
}

.dot-motif.motif-inline.motif-right {
    position: absolute;
    right: initial;
    top: 50%;
    width: calc(100%   100vw);
    left: 100%
}

.dot-motif.motif-inline.motif-right:before {
    left: 0;
    right: initial
}

.dot-motif.motif-inline.motif-right:after {
    right: initial;
    left: -3px
}

.dot-motif.motif-inline.motif-light:after {
    background: #fff
}

.dot-motif.motif-inline.motif-light:before {
    background: #fff
}

.ui.segment {
    border: transparent !important;
    box-shadow: none !important
}

.ui.grid.segment {
    margin: 0 !important
}

.ui.card,
.ui.card>:first-child,
.ui.cards>.card>:first-child {
    border-radius: 0 !important
}

.universal-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    background-color: #2d2d2d
}

.universal-footer .footer-hr {
    width: 100%;
    background: #7d7d7d;
    height: 1px
}

.universal-footer .footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    padding: 30px 30px 0 30px
}

.universal-footer .footer-language-select {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px
}

.universal-footer .footer-language-select .flag {
    margin-right: 5px
}

.universal-footer .footer-language-select .labels {
    display: flex;
    flex-direction: column;
    font-family: montserrat, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-weight: 300;
    color: #fff
}

.universal-footer .footer-img-col {
    border-bottom: .5px solid #7d7d7d
}

.universal-footer .column {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 15px;
    padding-left: 0
}

.universal-footer .column:first-child {
    padding-left: 0
}

.universal-footer .column:last-child {
    padding-right: 0
}

.universal-footer .column .group-label {
    font-family: montserrat, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    font-weight: 300;
    color: #fff;
    width: 95%
}

.universal-footer .column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 15px
}

.universal-footer .column ul.group-links a {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    color: #9a9a9a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4285em
}

.universal-footer .column ul.group-links .image-menu-item.social-icon-padding {
    padding-top: 20px
}

.universal-footer .column:first-child .footer-logo {
    width: 100%;
    max-width: 150px;
    min-width: 100px;
    height: auto;
    margin-bottom: 30px;
    flex-shrink: 0
}

.universal-footer .mob-footer-div {
    display: none
}

.universal-footer-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    color: #9a9a9a;
    font-size: 16px;
    background-color: #2d2d2d
}

.universal-footer-text .footer-hr {
    width: 100%;
    background: #7d7d7d;
    height: 1px
}

.universal-footer-text p {
    padding: 15px 0;
    color: #9a9a9a;
    font-size: 16px
}

.universal-footer-text .footer-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    padding: 30px 30px
}

.universal-footer-text .legal-links {
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap
}

.universal-footer-text .legal-links ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap
}

.universal-footer-text .legal-links ul li {
    display: flex;
    flex-direction: row;
    align-items: center
}

.universal-footer-text .legal-links ul li a {
    font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
    color: #9a9a9a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300
}

.universal-footer-text .legal-links ul li:after {
    content: '';
    width: 1px;
    height: 15px;
    background: #7d7d7d;
    margin: 0 15px
}

.universal-footer-text .legal-links ul li:last-child:after {
    display: none
}

@media all and (max-width:375px) {
    .universal-footer .footer-container {
        padding: 15px 30px 0 30px
    }

    .universal-footer .footer-container .column {
        flex: auto;
        width: calc(100% / 2);
        display: none
    }

    .universal-footer .footer-container .column:first-child {
        padding-left: 0;
        flex: auto;
        display: none
    }

    .universal-footer .footer-container .column:first-child .footer-logo {
        width: 100%;
        max-width: 150px;
        min-width: 100px;
        height: auto;
        margin-bottom: 30px;
        flex-shrink: 0
    }

    .universal-footer .footer-container .footer-img-col {
        padding-left: 0;
        flex: auto;
        display: block !important
    }

    .universal-footer .footer-container .footer-img-col .footer-logo {
        width: 100%;
        max-width: 150px;
        min-width: 100px;
        height: auto;
        margin-bottom: 30px;
        flex-shrink: 0
    }

    .universal-footer .footer-container .mob-footer-div {
        width: 100%;
        display: block
    }

    .universal-footer .footer-container .mob-footer-div .collapse-hr-div {
        width: 100%;
        background: #7d7d7d;
        height: 1px;
        margin: 10px 0 10px 0
    }

    .universal-footer .footer-container .mob-footer-div .collapse-hr-div:first-child,
    .universal-footer .footer-container .mob-footer-div last-child {
        display: none
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div {
        width: 100%
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div .collapse-div {
        background-color: #2d2d2d;
        color: #fff;
        cursor: pointer;
        width: 100%;
        border: none;
        text-align: left;
        outline: 0;
        font-size: 14px;
        border-top: grey;
        font-family: montserrat, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
        font-weight: 300;
        padding: 0
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div .collapse-div .collapse-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height .2s ease-out
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div .collapse-div .collapse-content .collapse-content ul {
        list-style: none;
        margin-block-start: 0;
        margin-block-end: 0;
        margin-inline-start: 0;
        margin-inline-end: 0;
        padding-inline-start: 0
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div .collapse-div .collapse-content .collapse-content ul .collapse-item {
        font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
        color: #9a9a9a !important;
        text-decoration: none;
        font-size: 14px;
        font-weight: 300;
        line-height: 1.4285em
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div .collapse-icon {
        display: inline;
        content: '\002b';
        cursor: pointer
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div .collapse-icon:not(.last-collapse-icon):after {
        content: '\002b';
        color: #9a9a9a;
        float: right;
        margin-right: 10px;
        font-family: linearicons-free;
        font-size: 25px;
        cursor: pointer
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div .active:after {
        content: "\00d7" !important;
        cursor: pointer
    }

    .universal-footer .footer-container .mob-footer-div .collapse-main-div .last-collapse-icon~.collapse-content {
        max-height: none !important
    }

    .universal-footer .footer-container .collapse-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height .2s ease-out
    }

    .universal-footer .footer-container .collapse-content ul {
        list-style: none;
        margin-block-start: 0;
        margin-block-end: 0;
        margin-inline-start: 0;
        margin-inline-end: 0;
        padding-inline-start: 0
    }

    .universal-footer .footer-container .collapse-item {
        font-family: proximanovasemibold, 'open sans', 'helvetica neue', arial, helvetica, sans-serif;
        color: #9a9a9a !important;
        text-decoration: none;
        font-size: 14px;
        font-weight: 300;
        line-height: 1.4285em
    }
}

@media all and (max-width:767px) and (min-width:376px) {
    .universal-footer .footer-container .column:not(.footer-img-col) {
        flex: auto;
        width: calc(100% / 2)
    }

    .universal-footer .footer-container .column .footer-img-col:first-child {
        padding-left: 0;
        width: 100%;
        flex: auto
    }

    .universal-footer .footer-container .column .footer-img-col:first-child .footer-logo {
        width: 100%;
        max-width: 150px;
        min-width: 100px;
        height: auto;
        margin-bottom: 30px;
        flex-shrink: 0
    }
}

@media all and (max-width:1024px) and (min-width:767px) {
    .universal-footer .footer-container .column:first-child {
        padding-left: 0
    }

    .universal-footer .footer-container .column:first-child .footer-logo {
        width: 100%;
        max-width: 150px;
        min-width: 100px;
        height: auto;
        margin-bottom: 30px;
        flex-shrink: 0
    }

    .universal-footer .footer-container .mob-footer-div {
        display: none
    }
}

.intro-hero-simple {
    padding-top: 60px !important
}

.intro-hero-simple .index-top-title {
    text-align: left !important
}

.intro-hero-simple .index-top-title .top-title-text {
    font-size: 2.857em !important;
    font-weight: 400;
    font-family: montserrat !important;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.13;
    letter-spacing: .031em;
    color: #000
}

.intro-hero-simple .index-top-title .sub-title-text {
    padding-top: .938em !important;
    font-size: 1.286em !important;
    font-weight: 300;
    font-style: normal;
    font-family: proximanovalight, 'open sans', 'helvetica neue', arial, helvetica, sans-serif !important;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #000
}

.intro-hero-simple .index-top-title .ui.divider {
    margin-top: 3.8rem !important;
    margin-left: -62.5em !important;
    border-top: 1px solid #979797 !important
}

@media print {

    *,
    :after,
    :before,
    :first-letter,
    blockquote:first-line,
    div:first-line,
    li:first-line,
    p:first-line {
        box-shadow: none !important;
        text-shadow: none !important
    }

    * {
        color: #000 !important;
        text-shadow: none !important;
        filter: none !important;
        -ms-filter: none !important
    }

    a,
    a:visited {
        text-decoration: underline
    }

    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img,
    tr {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    @page {
        margin: .5cm
    }

    h2,
    h3,
    p {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    h1 {
        font-size: 2em !important
    }

    h2 {
        font-size: 1.5em !important
    }

    h3 {
        font-size: 1.17em !important
    }

    h4 {
        font-size: 1em !important
    }

    h5 {
        font-size: .83em !important
    }

    h6 {
        font-size: .75em !important
    }

    p {
        font-size: .77em !important;
        line-height: 2em !important
    }

    .cc-banner,
    .footer-container,
    .nav-container,
    .product-side-menu,
    .share-menu {
        display: none
    }

    .disclaimer-text *,
    .double-showcase-feature,
    .highlight *,
    .intro-hero-content *,
    .product-lineup *,
    .product-tabs {
        page-break-inside: avoid
    }

    .request-btn * {
        color: #fff !important
    }

    .main-container {
        padding-top: 0 !important
    }

    .product-tabs {
        page-break-inside: avoid;
        background: 0 0 !important
    }

    @page {
        margin: 1cm
    }

    .lazyload {
        opacity: 1 !important;
        -webkit-transform: translatey(0) !important;
        -moz-transform: translatey(0) !important;
        -ms-transform: translatey(0) !important;
        -o-transform: translatey(0) !important;
        transform: translatey(0) !important;
        -webkit-transition: all 0s ease-in-out;
        -moz-transition: all 0s ease-in-out;
        -o-transition: all 0s ease-in-out;
        transition: all 0s ease-in-out
    }

    .lazyload .lazyload-child,
    .lazyload.lazyload-child {
        opacity: 1 !important;
        -webkit-transform: translatey(0) !important;
        -moz-transform: translatey(0) !important;
        -ms-transform: translatey(0) !important;
        -o-transform: translatey(0) !important;
        transform: translatey(0) !important;
        -webkit-transition: all 0s ease-in-out;
        -moz-transition: all 0s ease-in-out;
        -o-transition: all 0s ease-in-out;
        transition: all 0s ease-in-out
    }
}

@media only screen and (max-width:767px) {
    .country-language-selector {
        padding-top: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 2em !important
    }
}

@media only screen and (min-width:768px) {
    .country-language-selector {
        margin-top: 5.625em !important;
        margin-bottom: 5em !important
    }
}

.country-language-selector .country-dropdown .item i.external,
.country-language-selector .country-dropdown .text i.external {
    color: #983cc9
}

.country-language-selector .region-label {
    padding-left: 0 !important;
    object-fit: contain;
    font-size: .875em !important;
    font-weight: 300;
    font-family: montserrat;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    letter-spacing: .031em;
    color: #000
}

.country-language-selector .label-remember-selection-chkbox {
    font-family: proximanova;
    font-size: 1em !important
}

.country-language-selector .submit-button {
    font-family: montserrat !important;
    font-size: 1.125rem !important;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff
}

.footer-image {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important
}

.footer-image img {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important
}

.region-foot-image {
    margin-top: -9.5em
}

.region-foot-image .backdrop-image {
    z-index: -1 !important
}

.ui.basic.label {
    border: none !important
}

.ui.top.attached.label:first-child :not(.attached) {
    margin-top: 2.4rem !important
}

.country-dropdown>.menu>.item a {
    color: rgba(0, 0, 0, .8);
    font-family: proximanova, montserrat, sans-serif
}

.language-dropdown>.menu>.item a {
    color: rgba(0, 0, 0, .8);
    font-family: proximanova, montserrat, sans-serif
}

.country-dropdown>.text a {
    color: rgba(0, 0, 0, .8);
    font-family: proximanova, montserrat, sans-serif
}

.language-dropdown>.text a {
    color: rgba(0, 0, 0, .8);
    font-family: proximanova, montserrat, sans-serif
}

#ourvalues.carousel {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    height: 400px;
    width: 100%
}

@media (max-width:480px) {
    #ourvalues.carousel {
        height: auto !important
    }
}

@media (max-width:767px) {
    #ourvalues.carousel {
        height: auto !important
    }
}

@media (max-width:1025px) {
    #ourvalues.carousel {
        height: auto !important
    }
}

#ourvalues.carousel .carousel-indicators-outer-container {
    position: absolute;
    width: 100%;
    z-index: 11;
    display: flex;
    flex-direction: row;
    opacity: .8
}

@media (max-width:480px) {
    #ourvalues.carousel .carousel-indicators-outer-container {
        margin-top: 30%
    }
}

@media (min-width:768px) {
    #ourvalues.carousel .carousel-indicators-outer-container {
        bottom: 1%
    }
}

@media (min-width:1024px) {
    #ourvalues.carousel .carousel-indicators-outer-container {
        bottom: 5%
    }
}

#ourvalues.carousel .carousel-caption {
    text-align: left !important
}

#ourvalues.carousel {
    position: relative
}

#ourvalues.carousel .carousel-indicators-container {
    display: table;
    margin: 0 auto;
    position: relative;
    text-align: center;
    z-index: 9;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-grow: 8;
    opacity: .8
}

@media (max-width:767px) {
    #ourvalues.carousel .carousel-indicators-container {
        opacity: 1;
        padding-top: 3%
    }
}

#ourvalues.carousel .carousel-indicators-container .label {
    margin: 0;
    color: #fff !important;
    height: 40px;
    left: 0;
    font-size: 1.125em;
    width: 20%;
    display: inline-block;
    float: left;
    border-width: 0 2px 0 0;
    border-style: solid;
    border-color: transparent
}

@media (max-width:1024px) {
    #ourvalues.carousel .carousel-indicators-container .label {
        height: 40px
    }
}

#ourvalues.carousel .carousel-indicators-container .label a {
    color: #fff !important
}

#ourvalues.carousel .carousel-indicators {
    bottom: 0;
    list-style: outside none none;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    width: 80%;
    z-index: 5;
    padding: 0;
    display: contents
}

#ourvalues.carousel .carousel-indicators li {
    width: 1%;
    height: 40px;
    cursor: pointer;
    text-align: center;
    border-style: solid;
    border-color: #fff;
    border-width: 0;
    border-radius: 0;
    text-indent: 0;
    background: 0 0;
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    padding: 5px 0;
    border-width: 0 2px 0 0;
    user-select: none;
    border-color: transparent
}

@media (max-width:480px) {
    #ourvalues.carousel .carousel-indicators li {
        border-width: 0
    }
}

@media (max-width:1024px) {
    #ourvalues.carousel .carousel-indicators li {
        height: 40px
    }
}

#ourvalues.carousel .carousel-indicators li .last {
    border-right: none
}

#ourvalues.carousel .carousel-indicators .active {
    margin: 0;
    width: 1%;
    height: 40px;
    cursor: pointer;
    text-align: center
}

@media (max-width:1024px) {
    #ourvalues.carousel .carousel-indicators .active {
        height: 40px
    }
}

@media (max-width:767px) {
    #ourvalues.carousel .carousel-indicators .active {
        display: table-cell !important
    }
}

#ourvalues.carousel .carousel-caption {
    top: 20px;
    text-shadow: none;
    width: 100%;
    left: 0
}

#ourvalues.carousel .carousel-caption h2 {
    font-size: 2.5em;
    font-weight: 200
}

@media (max-width:767px) {
    #ourvalues.carousel .carousel-caption h2 {
        padding: 0 !important;
        margin: 0 auto;
        margin-top: 2%
    }
}

@media (max-width:767px) {
    #ourvalues.carousel .carousel-caption h2 {
        color: #000 !important
    }
}

#ourvalues.carousel .carousel-caption p {
    font-size: 1.125em
}

#ourvalues.carousel .carousel-caption p .subtext {
    color: #000
}

@media (max-width:1440px) {
    #ourvalues.carousel .carousel-caption {
        top: 40px
    }
}

@media (max-width:1024px) {
    #ourvalues.carousel .carousel-indicators-container .label {
        font-size: 14px
    }

    #ourvalues.carousel .carousel-indicators {
        left: 90px;
        width: 95%
    }

    #ourvalues.carousel .carousel-indicators li {
        font-size: 1em
    }

    #ourvalues.carousel .carousel-caption p {
        font-size: 1.125em
    }

    #ourvalues.carousel .carousel-caption h3 {
        font-size: 30px
    }
}

@media (max-width:767px) {
    #ourvalues.carousel .carousel-indicators {
        left: 58px;
        width: 90%
    }

    #ourvalues.carousel .carousel-indicators li {
        font-size: 1em
    }

    #ourvalues.carousel .carousel-inner .carousel-caption {
        top: 5px;
        left: 0
    }

    #ourvalues.carousel .carousel-caption ul {
        margin-top: 1px;
        margin-bottom: 1px
    }

    #ourvalues.carousel .carousel-caption p {
        font-size: 1.125em;
        margin-bottom: 0
    }

    #ourvalues.carousel .bkg {
        background: #fff;
        opacity: .9;
        padding: 10px 10px 0
    }

    #ourvalues.carousel .carousel-caption p.subtext {
        font-size: 16px
    }

    .space-bottom-20 {
        margin-bottom: 20px
    }

    .btn.btn-about {
        font-size: 12px
    }

    .no-space-bottom {
        margin-bottom: 0 !important
    }
}

@media (max-width:767px) and (max-width:767px) {
    #ourvalues.carousel .carousel-caption p {
        color: #000 !important
    }
}

@media (max-width:767px) {
    #ourvalues.carousel .carousel-indicators li {
        display: none
    }

    #ourvalues.carousel .carousel-indicators-container .label {
        display: none
    }

    #ourvalues.carousel .carousel-inner .carousel-caption {
        position: relative;
        bottom: auto
    }

    #ourvalues.carousel .carousel-caption {
        color: #333 !important
    }
}

@media (max-width:667px) {
    #ourvalues.carousel .carousel-caption {
        color: #333 !important
    }

    #ourvalues.carousel .carousel-indicators-outer-container {
        position: absolute;
        left: 0;
        height: auto;
        opacity: 1
    }

    #ourvalues.carousel .carousel-caption {
        position: relative;
        bottom: auto
    }

    #ourvalues.carousel .carousel-caption .carousel-caption-content {
        position: relative !important
    }

    #ourvalues.carousel .carousel-caption div h3,
    #ourvalues.carousel .carousel-inner .carousel-caption p {
        text-align: left;
        color: #000
    }

    #ourvalues.carousel .carousel-inner img {
        height: auto
    }
}

@media (max-width:767px) {
    #ourvalues.carousel .carousel-indicators-outer-container {
        margin-top: 30%
    }
}

@media (max-width:480px) {
    #ourvalues.carousel .carousel-caption .carousel-caption-content {
        padding: 0 10px
    }

    #ourvalues.carousel .carousel-inner .carousel-caption {
        top: 5px
    }

    #ourvalues.carousel .carousel-indicators {
        overflow: hidden;
        list-style: none;
        background: 0 0;
        background: rgba(52, 56, 58, 0);
        left: 0;
        width: 100%
    }

    #ourvalues.carousel .carousel-indicators li {
        display: none;
        width: 300px;
        height: auto;
        color: #fff;
        font-size: 1.3em;
        text-align: left;
        padding: 1px 1px 1px 10px
    }

    #ourvalues.carousel .carousel-indicators .active {
        display: list-item;
        height: auto;
        text-align: center;
        cursor: pointer;
        padding: 2%
    }

    #ourvalues.carousel p {
        font-size: 1.125em
    }

    #ourvalues.carousel .carousel-caption {
        left: 0;
        padding: 5px 0 0;
        top: 75px;
        width: 100%;
        opacity: .9;
        height: 100%
    }

    #ourvalues.carousel .carousel-caption div {
        margin: 0;
        width: 100%;
        padding-left: 0
    }

    #ourvalues.carousel .carousel-caption .carousel-caption-content-container {
        position: relative
    }

    #ourvalues.carousel .carousel-caption .carousel-caption-content {
        position: absolute;
        bottom: 10px;
        background: #fff;
        padding: 10px;
        padding-left: 1rem;
        padding-right: 1rem
    }

    #ourvalues.carousel .carousel-caption div h3 {
        margin: 0;
        font-size: 20px
    }

    #ourvalues.carousel .carousel-caption div p {
        font-size: 16px
    }

    #ourvalues.carousel .carousel-caption div p a {
        padding: 5px
    }

    #ourvalues.carousel .carousel-inner .carousel-caption p {
        font-size: 1em;
        color: #000 !important
    }
}

#ourvalues.carousel .carousel-inner>.item>a>img,
#ourvalues.carousel .carousel-inner>.item>img,
.ourvalue-img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%
}

#ourvalues.carousel {
    position: relative
}

#ourvalues.carousel .carousel-inner>.item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

#ourvalues.carousel .carousel-inner>.item>a>img,
#ourvalues.carousel .carousel-inner>.item>img {
    line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    #ourvalues.carousel .carousel-inner>.item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000
    }

    #ourvalues.carousel .carousel-inner>.item.active.right,
    #ourvalues.carousel .carousel-inner>.item.next {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    #ourvalues.carousel .carousel-inner>.item.active.left,
    #ourvalues.carousel .carousel-inner>.item.prev {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    #ourvalues.carousel .carousel-inner>.item.active,
    #ourvalues.carousel .carousel-inner>.item.next.left,
    #ourvalues.carousel .carousel-inner>.item.prev.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

#ourvalues.carousel .carousel-inner>.active,
#ourvalues.carousel .carousel-inner>.next,
#ourvalues.carousel .carousel-inner>.prev {
    display: block
}

#ourvalues.carousel .carousel-inner>.active {
    left: 0
}

#ourvalues.carousel .carousel-inner>.next,
#ourvalues.carousel .carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%
}

#ourvalues.carousel .carousel-inner>.next {
    left: 100%
}

#ourvalues.carousel .carousel-inner>.prev {
    left: -100%
}

#ourvalues.carousel .carousel-inner>.next.left,
#ourvalues.carousel .carousel-inner>.prev.right {
    left: 0
}

#ourvalues.carousel .carousel-inner>.active.left {
    left: -100%
}

#ourvalues.carousel .carousel-inner>.active.right {
    left: 100%
}

#ourvalues.carousel .carousel-indicators {
    position: absolute;
    z-index: 15;
    padding-left: 0;
    text-align: center;
    list-style: none
}

.slider-tabs .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px
}

.slider-tabs .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff
}

#ourvalues.carousel .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    left: 0
}

#ourvalues.carousel .carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width:768px) {
    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

@media screen and (min-width:768px) {
    .carousel-caption-content .swipe-instruction {
        display: none !important;
        padding-top: 5%
    }
}

@media screen and (max-width:480px) {
    .carousel-caption-content .swipe-instruction {
        color: #ccc
    }
}

.white {
    color: #fff
}

.arrow {
    margin-left: 20px;
    display: inline-block;
    height: 12px;
    position: relative;
    width: 12px
}

.arrow::after {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
    content: '';
    display: inline-block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 12px
}

.arrow.arrow-bar::before {
    bottom: 1px;
    content: '';
    height: 20px;
    position: absolute;
    right: 0;
    transform-origin: bottom;
    width: 2px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.arrow.is-right {
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg)
}

.arrow.is-left {
    -moz-transform: rotate(500deg);
    -ms-transform: rotate(500deg);
    -webkit-transform: rotate(500deg);
    transform: rotate(500deg)
}

.arrow .arrow::after,
.arrow::after {
    border-color: #fff
}

.arrow .arrow::before,
.arrow::before {
    background-color: #fff
}

#ourvalues.carousel .carousel-caption .carousel-button-wrapper {
    padding-top: 2%
}

@media (max-width:480px) {
    #ourvalues.carousel .carousel-caption .carousel-button-wrapper {
        text-align: center
    }
}

#ourvalues.carousel .carousel-caption .carousel-caption-content {
    width: 55%
}

@media (max-width:767px) {
    #ourvalues.carousel .carousel-caption .carousel-caption-content {
        width: 75%;
        padding-left: 3%
    }
}

@media (max-width:480px) {
    #ourvalues.carousel .carousel-caption .carousel-caption-content {
        width: 100%;
        padding-left: 1rem
    }
}

#ourvalues.carousel .carousel-caption .carousel-caption-content ul {
    margin: 0
}

#ourvalues.carousel .carousel-indicators .carousel-indicators {
    margin: 0
}

#ourvalues.carousel .carousel-indicators-container p {
    padding-top: 12px
}

#ourvalues.carousel .carousel-indicators-container h3 {
    padding-top: 12px;
    font-size: 1em;
    color: #fff
}

.slider-tabs {
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
    float: right;
    width: 100%
}

@media (min-width:768px) {
    .slider-tabs {
        width: 80%
    }
}

@media (max-width:1024px) {
    .slider-tabs {
        height: 40px
    }
}

#ourvalues.carousel .slidercontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0
}

#ourvalues.carousel .slidercontentright {
    max-width: 1400px;
    flex-direction: column;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding-left: 40px;
    padding-right: 40px
}

#ourvalues.carousel .slidercontentleft {
    max-width: 1400px;
    flex-direction: column;
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding-left: 40px;
    padding-right: 40px
}

#ourvalues.carousel .slidertableft {
    display: none;
    height: 40px;
    width: auto;
    flex-grow: 1;
    background: #811167;
    opacity: .8
}

@media (min-width:768px) {
    #ourvalues.carousel .slidertableft {
        display: flex
    }
}

#ourvalues.carousel .slidertabright {
    display: none;
    width: auto;
    flex-grow: 1;
    background: #811167;
    opacity: .8
}

@media (min-width:768px) {
    #ourvalues.carousel .slidertabright {
        display: flex
    }
}

@media only screen and (max-width:767px) {
    .carousel-inner .carousel-caption {
        padding: 20px !important
    }

    .carousel-inner .carousel-caption .slidercontentleft {
        padding: 0 !important
    }

    .carousel-inner .carousel-caption .slidercontentleft .carousel-caption-content {
        padding: 10px 0 !important
    }
}

.navigation-slider {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    width: 100% !important
}

.navigation-slider .item {
    display: none;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-size: 100%
}

.navigation-slider .item.active {
    display: block
}

.navigation-slider .tabs {
    height: 40px
}

#ourvalues.carousel.tabs {
    position: absolute;
    bottom: 10px;
    height: 40px
}

.navigation-slider .carousel-inner .carousel-caption {
    background: 0 0;
    padding: 30px;
    padding-bottom: 80px;
    border: transparent;
    margin: 0
}

.navigation-slider .carousel-inner .carousel-caption-content .carousel-button-wrapper {
    margin-top: 12px
}

@media only screen and (max-width:425px) {
    .navigation-slider .navigation-slider-mobile-column {
        padding: 0 !important
    }

    .navigation-slider .navigation-slider-mobile-column #ourvalues.carousel.tabs {
        top: 0 !important
    }

    .navigation-slider .image-mobile-only {
        display: block;
        max-width: 100%;
        height: auto;
        width: 100%
    }

    .navigation-slider .carousel-inner .item {
        background-image: none !important
    }

    .navigation-slider .carousel-inner .item .slidercontentleft,
    .navigation-slider .carousel-inner .item .slidercontentright {
        width: 100%
    }

    .navigation-slider .carousel-inner .item .carousel-caption-content .xl-banner-heading {
        color: #000 !important
    }

    .navigation-slider .carousel-inner .item .carousel-caption-content p {
        color: #000 !important;
        text-align: justify
    }

    .navigation-slider .carousel-inner .item .carousel-caption-content .carousel-button-wrapper {
        text-align: center
    }
}

@media only screen and (min-width:426px) {
    .navigation-slider {
        min-height: 390px
    }

    .navigation-slider .image-mobile-only {
        display: none
    }

    .navigation-slider .carousel-inner .item {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width: 100%
    }

    .navigation-slider .carousel-inner .item .slidercontentleft,
    .navigation-slider .carousel-inner .item .slidercontentright {
        width: 50%
    }

    .navigation-slider #ourvalues.carousel.tabs {
        position: absolute;
        bottom: 20px;
        overflow: inherit
    }
}

@media only screen and (min-width:426px) and (max-width:1024px) {
    .navigation-slider .navigation-slider-mobile-column #ourvalues.carousel.tabs {
        position: absolute;
        bottom: 29px !important;
        display: list-item !important;
        height: 40px !important
    }
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .navigation-slider .carousel-inner>.item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000
    }

    .navigation-slider .carousel-inner>.item.active.right,
    .navigation-slider .carousel-inner>.item.next {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    .navigation-slider .carousel-inner>.item.active.left,
    .navigation-slider .carousel-inner>.item.prev {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    .navigation-slider .carousel-inner>.item.active,
    .navigation-slider .carousel-inner>.item.next.left,
    .navigation-slider .carousel-inner>.item.prev.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.navigation-slider .carousel-inner>.active,
.navigation-slider .carousel-inner>.next,
.navigation-slider .carousel-inner>.prev {
    display: block
}

.navigation-slider .carousel-inner>.active {
    left: 0
}

.navigation-slider .carousel-inner>.next,
.navigation-slider .carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%
}

.navigation-slider .carousel-inner>.next {
    left: 100%
}

.navigation-slider .carousel-inner>.prev {
    left: -100%
}

.navigation-slider .carousel-inner>.next.left,
.navigation-slider .carousel-inner>.prev.right {
    left: 0
}

#ourvalues.carousel .carousel-inner>.active.left {
    left: -100%
}

#ourvalues.carousel .carousel-inner>.active.right {
    left: 100%
}

@media only screen and (min-width:768px) {
    .navigation-slider .carousel-inner .item .slidercontainer {
        width: auto;
        padding-left: 0 !important;
        padding-right: 0 !important
    }
}

@media only screen and (min-width:450px) and (max-width:600px) {
    .navigation-slider .navigation-slider-mobile-column #ourvalues.carousel.tabs {
        position: relative !important;
        bottom: 52px !important
    }

    .navigation-slider .navigation-slider-mobile-column #ourvalues.carousel.tabs .carousel-indicators-outer-container {
        margin-top: 0 !important
    }
}