.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

@media(min-width: 640px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }
}

@media(min-width: 900px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }
}

@media(min-width: 1100px) {
    .d-mdlg-none {
        display: none !important
    }

    .d-mdlg-inline {
        display: inline !important
    }

    .d-mdlg-inline-block {
        display: inline-block !important
    }

    .d-mdlg-block {
        display: block !important
    }

    .d-mdlg-table {
        display: table !important
    }

    .d-mdlg-table-row {
        display: table-row !important
    }

    .d-mdlg-table-cell {
        display: table-cell !important
    }

    .d-mdlg-flex {
        display: flex !important
    }

    .d-mdlg-inline-flex {
        display: inline-flex !important
    }
}

@media(min-width: 1366px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }
}

@media(min-width: 1920px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }
}

@media(min-width: 2900px) {
    .d-xxl-none {
        display: none !important
    }

    .d-xxl-inline {
        display: inline !important
    }

    .d-xxl-inline-block {
        display: inline-block !important
    }

    .d-xxl-block {
        display: block !important
    }

    .d-xxl-table {
        display: table !important
    }

    .d-xxl-table-row {
        display: table-row !important
    }

    .d-xxl-table-cell {
        display: table-cell !important
    }

    .d-xxl-flex {
        display: flex !important
    }

    .d-xxl-inline-flex {
        display: inline-flex !important
    }
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

@media(min-width: 640px) {
    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }
}

@media(min-width: 900px) {
    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }
}

@media(min-width: 1100px) {
    .flex-mdlg-row {
        flex-direction: row !important
    }

    .flex-mdlg-column {
        flex-direction: column !important
    }

    .flex-mdlg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-mdlg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-mdlg-wrap {
        flex-wrap: wrap !important
    }

    .flex-mdlg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-mdlg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-mdlg-fill {
        flex: 1 1 auto !important
    }

    .flex-mdlg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-mdlg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-mdlg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-mdlg-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-mdlg-start {
        justify-content: flex-start !important
    }

    .justify-content-mdlg-end {
        justify-content: flex-end !important
    }

    .justify-content-mdlg-center {
        justify-content: center !important
    }

    .justify-content-mdlg-between {
        justify-content: space-between !important
    }

    .justify-content-mdlg-around {
        justify-content: space-around !important
    }

    .align-items-mdlg-start {
        align-items: flex-start !important
    }

    .align-items-mdlg-end {
        align-items: flex-end !important
    }

    .align-items-mdlg-center {
        align-items: center !important
    }

    .align-items-mdlg-baseline {
        align-items: baseline !important
    }

    .align-items-mdlg-stretch {
        align-items: stretch !important
    }

    .align-content-mdlg-start {
        align-content: flex-start !important
    }

    .align-content-mdlg-end {
        align-content: flex-end !important
    }

    .align-content-mdlg-center {
        align-content: center !important
    }

    .align-content-mdlg-between {
        align-content: space-between !important
    }

    .align-content-mdlg-around {
        align-content: space-around !important
    }

    .align-content-mdlg-stretch {
        align-content: stretch !important
    }

    .align-self-mdlg-auto {
        align-self: auto !important
    }

    .align-self-mdlg-start {
        align-self: flex-start !important
    }

    .align-self-mdlg-end {
        align-self: flex-end !important
    }

    .align-self-mdlg-center {
        align-self: center !important
    }

    .align-self-mdlg-baseline {
        align-self: baseline !important
    }

    .align-self-mdlg-stretch {
        align-self: stretch !important
    }
}

@media(min-width: 1366px) {
    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }
}

@media(min-width: 1920px) {
    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }
}

@media(min-width: 2900px) {
    .flex-xxl-row {
        flex-direction: row !important
    }

    .flex-xxl-column {
        flex-direction: column !important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .justify-content-xxl-center {
        justify-content: center !important
    }

    .justify-content-xxl-between {
        justify-content: space-between !important
    }

    .justify-content-xxl-around {
        justify-content: space-around !important
    }

    .align-items-xxl-start {
        align-items: flex-start !important
    }

    .align-items-xxl-end {
        align-items: flex-end !important
    }

    .align-items-xxl-center {
        align-items: center !important
    }

    .align-items-xxl-baseline {
        align-items: baseline !important
    }

    .align-items-xxl-stretch {
        align-items: stretch !important
    }

    .align-content-xxl-start {
        align-content: flex-start !important
    }

    .align-content-xxl-end {
        align-content: flex-end !important
    }

    .align-content-xxl-center {
        align-content: center !important
    }

    .align-content-xxl-between {
        align-content: space-between !important
    }

    .align-content-xxl-around {
        align-content: space-around !important
    }

    .align-content-xxl-stretch {
        align-content: stretch !important
    }

    .align-self-xxl-auto {
        align-self: auto !important
    }

    .align-self-xxl-start {
        align-self: flex-start !important
    }

    .align-self-xxl-end {
        align-self: flex-end !important
    }

    .align-self-xxl-center {
        align-self: center !important
    }

    .align-self-xxl-baseline {
        align-self: baseline !important
    }

    .align-self-xxl-stretch {
        align-self: stretch !important
    }
}

.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,
.my-2 {
    margin-top: .5rem !important
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important
}

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

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

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

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

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

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

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

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

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

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

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

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

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

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

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.m-6 {
    margin: 2rem !important
}

.mt-6,
.my-6 {
    margin-top: 2rem !important
}

.mr-6,
.mx-6 {
    margin-right: 2rem !important
}

.mb-6,
.my-6 {
    margin-bottom: 2rem !important
}

.ml-6,
.mx-6 {
    margin-left: 2rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,
.py-1 {
    padding-top: .25rem !important
}

.pr-1,
.px-1 {
    padding-right: .25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,
.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,
.py-2 {
    padding-top: .5rem !important
}

.pr-2,
.px-2 {
    padding-right: .5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,
.px-2 {
    padding-left: .5rem !important
}

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

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

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

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

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

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

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

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

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

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

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

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

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

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

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.p-6 {
    padding: 2rem !important
}

.pt-6,
.py-6 {
    padding-top: 2rem !important
}

.pr-6,
.px-6 {
    padding-right: 2rem !important
}

.pb-6,
.py-6 {
    padding-bottom: 2rem !important
}

.pl-6,
.px-6 {
    padding-left: 2rem !important
}

.m-n1 {
    margin: -0.25rem !important
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important
}

.m-n2 {
    margin: -0.5rem !important
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important
}

.m-n6 {
    margin: -2rem !important
}

.mt-n6,
.my-n6 {
    margin-top: -2rem !important
}

.mr-n6,
.mx-n6 {
    margin-right: -2rem !important
}

.mb-n6,
.my-n6 {
    margin-bottom: -2rem !important
}

.ml-n6,
.mx-n6 {
    margin-left: -2rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}

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

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

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important
    }

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

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important
    }

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

    .mt-sm-1,
    .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: .25rem !important
    }

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

    .mt-sm-2,
    .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: .5rem !important
    }

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

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

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important
    }

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

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important
    }

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

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

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important
    }

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

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important
    }

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

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

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important
    }

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

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important
    }

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

    .mt-sm-6,
    .my-sm-6 {
        margin-top: 2rem !important
    }

    .mr-sm-6,
    .mx-sm-6 {
        margin-right: 2rem !important
    }

    .mb-sm-6,
    .my-sm-6 {
        margin-bottom: 2rem !important
    }

    .ml-sm-6,
    .mx-sm-6 {
        margin-left: 2rem !important
    }

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

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

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important
    }

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

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important
    }

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

    .pt-sm-1,
    .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: .25rem !important
    }

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

    .pt-sm-2,
    .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: .5rem !important
    }

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

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

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important
    }

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

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important
    }

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

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

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important
    }

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

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important
    }

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

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

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important
    }

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

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important
    }

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

    .pt-sm-6,
    .py-sm-6 {
        padding-top: 2rem !important
    }

    .pr-sm-6,
    .px-sm-6 {
        padding-right: 2rem !important
    }

    .pb-sm-6,
    .py-sm-6 {
        padding-bottom: 2rem !important
    }

    .pl-sm-6,
    .px-sm-6 {
        padding-left: 2rem !important
    }

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

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important
    }

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

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important
    }

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

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important
    }

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

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important
    }

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

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important
    }

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

    .mt-sm-n6,
    .my-sm-n6 {
        margin-top: -2rem !important
    }

    .mr-sm-n6,
    .mx-sm-n6 {
        margin-right: -2rem !important
    }

    .mb-sm-n6,
    .my-sm-n6 {
        margin-bottom: -2rem !important
    }

    .ml-sm-n6,
    .mx-sm-n6 {
        margin-left: -2rem !important
    }

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

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

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important
    }

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

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important
    }
}

@media(min-width: 900px) {
    .m-md-0 {
        margin: 0 !important
    }

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

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important
    }

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

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important
    }

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

    .mt-md-1,
    .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: .25rem !important
    }

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

    .mt-md-2,
    .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: .5rem !important
    }

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

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

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important
    }

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

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important
    }

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

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

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important
    }

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

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important
    }

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

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

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important
    }

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

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important
    }

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

    .mt-md-6,
    .my-md-6 {
        margin-top: 2rem !important
    }

    .mr-md-6,
    .mx-md-6 {
        margin-right: 2rem !important
    }

    .mb-md-6,
    .my-md-6 {
        margin-bottom: 2rem !important
    }

    .ml-md-6,
    .mx-md-6 {
        margin-left: 2rem !important
    }

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

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

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important
    }

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

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important
    }

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

    .pt-md-1,
    .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: .25rem !important
    }

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

    .pt-md-2,
    .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: .5rem !important
    }

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

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

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important
    }

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

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important
    }

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

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

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important
    }

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

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important
    }

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

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

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important
    }

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

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important
    }

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

    .pt-md-6,
    .py-md-6 {
        padding-top: 2rem !important
    }

    .pr-md-6,
    .px-md-6 {
        padding-right: 2rem !important
    }

    .pb-md-6,
    .py-md-6 {
        padding-bottom: 2rem !important
    }

    .pl-md-6,
    .px-md-6 {
        padding-left: 2rem !important
    }

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

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important
    }

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

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important
    }

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

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important
    }

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

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important
    }

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

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important
    }

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

    .mt-md-n6,
    .my-md-n6 {
        margin-top: -2rem !important
    }

    .mr-md-n6,
    .mx-md-n6 {
        margin-right: -2rem !important
    }

    .mb-md-n6,
    .my-md-n6 {
        margin-bottom: -2rem !important
    }

    .ml-md-n6,
    .mx-md-n6 {
        margin-left: -2rem !important
    }

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

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

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important
    }

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

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important
    }
}

@media(min-width: 1100px) {
    .m-mdlg-0 {
        margin: 0 !important
    }

    .mt-mdlg-0,
    .my-mdlg-0 {
        margin-top: 0 !important
    }

    .mr-mdlg-0,
    .mx-mdlg-0 {
        margin-right: 0 !important
    }

    .mb-mdlg-0,
    .my-mdlg-0 {
        margin-bottom: 0 !important
    }

    .ml-mdlg-0,
    .mx-mdlg-0 {
        margin-left: 0 !important
    }

    .m-mdlg-1 {
        margin: .25rem !important
    }

    .mt-mdlg-1,
    .my-mdlg-1 {
        margin-top: .25rem !important
    }

    .mr-mdlg-1,
    .mx-mdlg-1 {
        margin-right: .25rem !important
    }

    .mb-mdlg-1,
    .my-mdlg-1 {
        margin-bottom: .25rem !important
    }

    .ml-mdlg-1,
    .mx-mdlg-1 {
        margin-left: .25rem !important
    }

    .m-mdlg-2 {
        margin: .5rem !important
    }

    .mt-mdlg-2,
    .my-mdlg-2 {
        margin-top: .5rem !important
    }

    .mr-mdlg-2,
    .mx-mdlg-2 {
        margin-right: .5rem !important
    }

    .mb-mdlg-2,
    .my-mdlg-2 {
        margin-bottom: .5rem !important
    }

    .ml-mdlg-2,
    .mx-mdlg-2 {
        margin-left: .5rem !important
    }

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

    .mt-mdlg-3,
    .my-mdlg-3 {
        margin-top: 1rem !important
    }

    .mr-mdlg-3,
    .mx-mdlg-3 {
        margin-right: 1rem !important
    }

    .mb-mdlg-3,
    .my-mdlg-3 {
        margin-bottom: 1rem !important
    }

    .ml-mdlg-3,
    .mx-mdlg-3 {
        margin-left: 1rem !important
    }

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

    .mt-mdlg-4,
    .my-mdlg-4 {
        margin-top: 1.5rem !important
    }

    .mr-mdlg-4,
    .mx-mdlg-4 {
        margin-right: 1.5rem !important
    }

    .mb-mdlg-4,
    .my-mdlg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-mdlg-4,
    .mx-mdlg-4 {
        margin-left: 1.5rem !important
    }

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

    .mt-mdlg-5,
    .my-mdlg-5 {
        margin-top: 3rem !important
    }

    .mr-mdlg-5,
    .mx-mdlg-5 {
        margin-right: 3rem !important
    }

    .mb-mdlg-5,
    .my-mdlg-5 {
        margin-bottom: 3rem !important
    }

    .ml-mdlg-5,
    .mx-mdlg-5 {
        margin-left: 3rem !important
    }

    .m-mdlg-6 {
        margin: 2rem !important
    }

    .mt-mdlg-6,
    .my-mdlg-6 {
        margin-top: 2rem !important
    }

    .mr-mdlg-6,
    .mx-mdlg-6 {
        margin-right: 2rem !important
    }

    .mb-mdlg-6,
    .my-mdlg-6 {
        margin-bottom: 2rem !important
    }

    .ml-mdlg-6,
    .mx-mdlg-6 {
        margin-left: 2rem !important
    }

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

    .pt-mdlg-0,
    .py-mdlg-0 {
        padding-top: 0 !important
    }

    .pr-mdlg-0,
    .px-mdlg-0 {
        padding-right: 0 !important
    }

    .pb-mdlg-0,
    .py-mdlg-0 {
        padding-bottom: 0 !important
    }

    .pl-mdlg-0,
    .px-mdlg-0 {
        padding-left: 0 !important
    }

    .p-mdlg-1 {
        padding: .25rem !important
    }

    .pt-mdlg-1,
    .py-mdlg-1 {
        padding-top: .25rem !important
    }

    .pr-mdlg-1,
    .px-mdlg-1 {
        padding-right: .25rem !important
    }

    .pb-mdlg-1,
    .py-mdlg-1 {
        padding-bottom: .25rem !important
    }

    .pl-mdlg-1,
    .px-mdlg-1 {
        padding-left: .25rem !important
    }

    .p-mdlg-2 {
        padding: .5rem !important
    }

    .pt-mdlg-2,
    .py-mdlg-2 {
        padding-top: .5rem !important
    }

    .pr-mdlg-2,
    .px-mdlg-2 {
        padding-right: .5rem !important
    }

    .pb-mdlg-2,
    .py-mdlg-2 {
        padding-bottom: .5rem !important
    }

    .pl-mdlg-2,
    .px-mdlg-2 {
        padding-left: .5rem !important
    }

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

    .pt-mdlg-3,
    .py-mdlg-3 {
        padding-top: 1rem !important
    }

    .pr-mdlg-3,
    .px-mdlg-3 {
        padding-right: 1rem !important
    }

    .pb-mdlg-3,
    .py-mdlg-3 {
        padding-bottom: 1rem !important
    }

    .pl-mdlg-3,
    .px-mdlg-3 {
        padding-left: 1rem !important
    }

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

    .pt-mdlg-4,
    .py-mdlg-4 {
        padding-top: 1.5rem !important
    }

    .pr-mdlg-4,
    .px-mdlg-4 {
        padding-right: 1.5rem !important
    }

    .pb-mdlg-4,
    .py-mdlg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-mdlg-4,
    .px-mdlg-4 {
        padding-left: 1.5rem !important
    }

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

    .pt-mdlg-5,
    .py-mdlg-5 {
        padding-top: 3rem !important
    }

    .pr-mdlg-5,
    .px-mdlg-5 {
        padding-right: 3rem !important
    }

    .pb-mdlg-5,
    .py-mdlg-5 {
        padding-bottom: 3rem !important
    }

    .pl-mdlg-5,
    .px-mdlg-5 {
        padding-left: 3rem !important
    }

    .p-mdlg-6 {
        padding: 2rem !important
    }

    .pt-mdlg-6,
    .py-mdlg-6 {
        padding-top: 2rem !important
    }

    .pr-mdlg-6,
    .px-mdlg-6 {
        padding-right: 2rem !important
    }

    .pb-mdlg-6,
    .py-mdlg-6 {
        padding-bottom: 2rem !important
    }

    .pl-mdlg-6,
    .px-mdlg-6 {
        padding-left: 2rem !important
    }

    .m-mdlg-n1 {
        margin: -0.25rem !important
    }

    .mt-mdlg-n1,
    .my-mdlg-n1 {
        margin-top: -0.25rem !important
    }

    .mr-mdlg-n1,
    .mx-mdlg-n1 {
        margin-right: -0.25rem !important
    }

    .mb-mdlg-n1,
    .my-mdlg-n1 {
        margin-bottom: -0.25rem !important
    }

    .ml-mdlg-n1,
    .mx-mdlg-n1 {
        margin-left: -0.25rem !important
    }

    .m-mdlg-n2 {
        margin: -0.5rem !important
    }

    .mt-mdlg-n2,
    .my-mdlg-n2 {
        margin-top: -0.5rem !important
    }

    .mr-mdlg-n2,
    .mx-mdlg-n2 {
        margin-right: -0.5rem !important
    }

    .mb-mdlg-n2,
    .my-mdlg-n2 {
        margin-bottom: -0.5rem !important
    }

    .ml-mdlg-n2,
    .mx-mdlg-n2 {
        margin-left: -0.5rem !important
    }

    .m-mdlg-n3 {
        margin: -1rem !important
    }

    .mt-mdlg-n3,
    .my-mdlg-n3 {
        margin-top: -1rem !important
    }

    .mr-mdlg-n3,
    .mx-mdlg-n3 {
        margin-right: -1rem !important
    }

    .mb-mdlg-n3,
    .my-mdlg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-mdlg-n3,
    .mx-mdlg-n3 {
        margin-left: -1rem !important
    }

    .m-mdlg-n4 {
        margin: -1.5rem !important
    }

    .mt-mdlg-n4,
    .my-mdlg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-mdlg-n4,
    .mx-mdlg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-mdlg-n4,
    .my-mdlg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-mdlg-n4,
    .mx-mdlg-n4 {
        margin-left: -1.5rem !important
    }

    .m-mdlg-n5 {
        margin: -3rem !important
    }

    .mt-mdlg-n5,
    .my-mdlg-n5 {
        margin-top: -3rem !important
    }

    .mr-mdlg-n5,
    .mx-mdlg-n5 {
        margin-right: -3rem !important
    }

    .mb-mdlg-n5,
    .my-mdlg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-mdlg-n5,
    .mx-mdlg-n5 {
        margin-left: -3rem !important
    }

    .m-mdlg-n6 {
        margin: -2rem !important
    }

    .mt-mdlg-n6,
    .my-mdlg-n6 {
        margin-top: -2rem !important
    }

    .mr-mdlg-n6,
    .mx-mdlg-n6 {
        margin-right: -2rem !important
    }

    .mb-mdlg-n6,
    .my-mdlg-n6 {
        margin-bottom: -2rem !important
    }

    .ml-mdlg-n6,
    .mx-mdlg-n6 {
        margin-left: -2rem !important
    }

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

    .mt-mdlg-auto,
    .my-mdlg-auto {
        margin-top: auto !important
    }

    .mr-mdlg-auto,
    .mx-mdlg-auto {
        margin-right: auto !important
    }

    .mb-mdlg-auto,
    .my-mdlg-auto {
        margin-bottom: auto !important
    }

    .ml-mdlg-auto,
    .mx-mdlg-auto {
        margin-left: auto !important
    }
}

@media(min-width: 1366px) {
    .m-lg-0 {
        margin: 0 !important
    }

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

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important
    }

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

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important
    }

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

    .mt-lg-1,
    .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: .25rem !important
    }

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

    .mt-lg-2,
    .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: .5rem !important
    }

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

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

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important
    }

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

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important
    }

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

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

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important
    }

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

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important
    }

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

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

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important
    }

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

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important
    }

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

    .mt-lg-6,
    .my-lg-6 {
        margin-top: 2rem !important
    }

    .mr-lg-6,
    .mx-lg-6 {
        margin-right: 2rem !important
    }

    .mb-lg-6,
    .my-lg-6 {
        margin-bottom: 2rem !important
    }

    .ml-lg-6,
    .mx-lg-6 {
        margin-left: 2rem !important
    }

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

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

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important
    }

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

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important
    }

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

    .pt-lg-1,
    .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: .25rem !important
    }

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

    .pt-lg-2,
    .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: .5rem !important
    }

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

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

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important
    }

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

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important
    }

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

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

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important
    }

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

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important
    }

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

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

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important
    }

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

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important
    }

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

    .pt-lg-6,
    .py-lg-6 {
        padding-top: 2rem !important
    }

    .pr-lg-6,
    .px-lg-6 {
        padding-right: 2rem !important
    }

    .pb-lg-6,
    .py-lg-6 {
        padding-bottom: 2rem !important
    }

    .pl-lg-6,
    .px-lg-6 {
        padding-left: 2rem !important
    }

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

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important
    }

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

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important
    }

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

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important
    }

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

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important
    }

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

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important
    }

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

    .mt-lg-n6,
    .my-lg-n6 {
        margin-top: -2rem !important
    }

    .mr-lg-n6,
    .mx-lg-n6 {
        margin-right: -2rem !important
    }

    .mb-lg-n6,
    .my-lg-n6 {
        margin-bottom: -2rem !important
    }

    .ml-lg-n6,
    .mx-lg-n6 {
        margin-left: -2rem !important
    }

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

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

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important
    }

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

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important
    }
}

@media(min-width: 1920px) {
    .m-xl-0 {
        margin: 0 !important
    }

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

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important
    }

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

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important
    }

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

    .mt-xl-1,
    .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: .25rem !important
    }

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

    .mt-xl-2,
    .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: .5rem !important
    }

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

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

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important
    }

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

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important
    }

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

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

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important
    }

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

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important
    }

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

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

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important
    }

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

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important
    }

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

    .mt-xl-6,
    .my-xl-6 {
        margin-top: 2rem !important
    }

    .mr-xl-6,
    .mx-xl-6 {
        margin-right: 2rem !important
    }

    .mb-xl-6,
    .my-xl-6 {
        margin-bottom: 2rem !important
    }

    .ml-xl-6,
    .mx-xl-6 {
        margin-left: 2rem !important
    }

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

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

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important
    }

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

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important
    }

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

    .pt-xl-1,
    .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: .25rem !important
    }

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

    .pt-xl-2,
    .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: .5rem !important
    }

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

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

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important
    }

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

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important
    }

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

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

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important
    }

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

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important
    }

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

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

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important
    }

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

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important
    }

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

    .pt-xl-6,
    .py-xl-6 {
        padding-top: 2rem !important
    }

    .pr-xl-6,
    .px-xl-6 {
        padding-right: 2rem !important
    }

    .pb-xl-6,
    .py-xl-6 {
        padding-bottom: 2rem !important
    }

    .pl-xl-6,
    .px-xl-6 {
        padding-left: 2rem !important
    }

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

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important
    }

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

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important
    }

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

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important
    }

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

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important
    }

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

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important
    }

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

    .mt-xl-n6,
    .my-xl-n6 {
        margin-top: -2rem !important
    }

    .mr-xl-n6,
    .mx-xl-n6 {
        margin-right: -2rem !important
    }

    .mb-xl-n6,
    .my-xl-n6 {
        margin-bottom: -2rem !important
    }

    .ml-xl-n6,
    .mx-xl-n6 {
        margin-left: -2rem !important
    }

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

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

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important
    }

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

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important
    }
}

@media(min-width: 2900px) {
    .m-xxl-0 {
        margin: 0 !important
    }

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

    .mr-xxl-0,
    .mx-xxl-0 {
        margin-right: 0 !important
    }

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

    .ml-xxl-0,
    .mx-xxl-0 {
        margin-left: 0 !important
    }

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

    .mt-xxl-1,
    .my-xxl-1 {
        margin-top: .25rem !important
    }

    .mr-xxl-1,
    .mx-xxl-1 {
        margin-right: .25rem !important
    }

    .mb-xxl-1,
    .my-xxl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xxl-1,
    .mx-xxl-1 {
        margin-left: .25rem !important
    }

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

    .mt-xxl-2,
    .my-xxl-2 {
        margin-top: .5rem !important
    }

    .mr-xxl-2,
    .mx-xxl-2 {
        margin-right: .5rem !important
    }

    .mb-xxl-2,
    .my-xxl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xxl-2,
    .mx-xxl-2 {
        margin-left: .5rem !important
    }

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

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

    .mr-xxl-3,
    .mx-xxl-3 {
        margin-right: 1rem !important
    }

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

    .ml-xxl-3,
    .mx-xxl-3 {
        margin-left: 1rem !important
    }

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

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

    .mr-xxl-4,
    .mx-xxl-4 {
        margin-right: 1.5rem !important
    }

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

    .ml-xxl-4,
    .mx-xxl-4 {
        margin-left: 1.5rem !important
    }

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

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

    .mr-xxl-5,
    .mx-xxl-5 {
        margin-right: 3rem !important
    }

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

    .ml-xxl-5,
    .mx-xxl-5 {
        margin-left: 3rem !important
    }

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

    .mt-xxl-6,
    .my-xxl-6 {
        margin-top: 2rem !important
    }

    .mr-xxl-6,
    .mx-xxl-6 {
        margin-right: 2rem !important
    }

    .mb-xxl-6,
    .my-xxl-6 {
        margin-bottom: 2rem !important
    }

    .ml-xxl-6,
    .mx-xxl-6 {
        margin-left: 2rem !important
    }

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

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

    .pr-xxl-0,
    .px-xxl-0 {
        padding-right: 0 !important
    }

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

    .pl-xxl-0,
    .px-xxl-0 {
        padding-left: 0 !important
    }

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

    .pt-xxl-1,
    .py-xxl-1 {
        padding-top: .25rem !important
    }

    .pr-xxl-1,
    .px-xxl-1 {
        padding-right: .25rem !important
    }

    .pb-xxl-1,
    .py-xxl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xxl-1,
    .px-xxl-1 {
        padding-left: .25rem !important
    }

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

    .pt-xxl-2,
    .py-xxl-2 {
        padding-top: .5rem !important
    }

    .pr-xxl-2,
    .px-xxl-2 {
        padding-right: .5rem !important
    }

    .pb-xxl-2,
    .py-xxl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xxl-2,
    .px-xxl-2 {
        padding-left: .5rem !important
    }

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

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

    .pr-xxl-3,
    .px-xxl-3 {
        padding-right: 1rem !important
    }

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

    .pl-xxl-3,
    .px-xxl-3 {
        padding-left: 1rem !important
    }

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

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

    .pr-xxl-4,
    .px-xxl-4 {
        padding-right: 1.5rem !important
    }

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

    .pl-xxl-4,
    .px-xxl-4 {
        padding-left: 1.5rem !important
    }

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

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

    .pr-xxl-5,
    .px-xxl-5 {
        padding-right: 3rem !important
    }

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

    .pl-xxl-5,
    .px-xxl-5 {
        padding-left: 3rem !important
    }

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

    .pt-xxl-6,
    .py-xxl-6 {
        padding-top: 2rem !important
    }

    .pr-xxl-6,
    .px-xxl-6 {
        padding-right: 2rem !important
    }

    .pb-xxl-6,
    .py-xxl-6 {
        padding-bottom: 2rem !important
    }

    .pl-xxl-6,
    .px-xxl-6 {
        padding-left: 2rem !important
    }

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

    .mt-xxl-n1,
    .my-xxl-n1 {
        margin-top: -0.25rem !important
    }

    .mr-xxl-n1,
    .mx-xxl-n1 {
        margin-right: -0.25rem !important
    }

    .mb-xxl-n1,
    .my-xxl-n1 {
        margin-bottom: -0.25rem !important
    }

    .ml-xxl-n1,
    .mx-xxl-n1 {
        margin-left: -0.25rem !important
    }

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

    .mt-xxl-n2,
    .my-xxl-n2 {
        margin-top: -0.5rem !important
    }

    .mr-xxl-n2,
    .mx-xxl-n2 {
        margin-right: -0.5rem !important
    }

    .mb-xxl-n2,
    .my-xxl-n2 {
        margin-bottom: -0.5rem !important
    }

    .ml-xxl-n2,
    .mx-xxl-n2 {
        margin-left: -0.5rem !important
    }

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

    .mt-xxl-n3,
    .my-xxl-n3 {
        margin-top: -1rem !important
    }

    .mr-xxl-n3,
    .mx-xxl-n3 {
        margin-right: -1rem !important
    }

    .mb-xxl-n3,
    .my-xxl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xxl-n3,
    .mx-xxl-n3 {
        margin-left: -1rem !important
    }

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

    .mt-xxl-n4,
    .my-xxl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xxl-n4,
    .mx-xxl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xxl-n4,
    .my-xxl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xxl-n4,
    .mx-xxl-n4 {
        margin-left: -1.5rem !important
    }

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

    .mt-xxl-n5,
    .my-xxl-n5 {
        margin-top: -3rem !important
    }

    .mr-xxl-n5,
    .mx-xxl-n5 {
        margin-right: -3rem !important
    }

    .mb-xxl-n5,
    .my-xxl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xxl-n5,
    .mx-xxl-n5 {
        margin-left: -3rem !important
    }

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

    .mt-xxl-n6,
    .my-xxl-n6 {
        margin-top: -2rem !important
    }

    .mr-xxl-n6,
    .mx-xxl-n6 {
        margin-right: -2rem !important
    }

    .mb-xxl-n6,
    .my-xxl-n6 {
        margin-bottom: -2rem !important
    }

    .ml-xxl-n6,
    .mx-xxl-n6 {
        margin-left: -2rem !important
    }

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

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

    .mr-xxl-auto,
    .mx-xxl-auto {
        margin-right: auto !important
    }

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

    .ml-xxl-auto,
    .mx-xxl-auto {
        margin-left: auto !important
    }
}


.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.col-xxl,
.col-xxl-auto,
.col-xxl-12,
.col-xxl-11,
.col-xxl-10,
.col-xxl-9,
.col-xxl-8,
.col-xxl-7,
.col-xxl-6,
.col-xxl-5,
.col-xxl-4,
.col-xxl-3,
.col-xxl-2,
.col-xxl-1,
.col-xl,
.col-xl-auto,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-auto,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-mdlg,
.col-mdlg-auto,
.col-mdlg-12,
.col-mdlg-11,
.col-mdlg-10,
.col-mdlg-9,
.col-mdlg-8,
.col-mdlg-7,
.col-mdlg-6,
.col-mdlg-5,
.col-mdlg-4,
.col-mdlg-3,
.col-mdlg-2,
.col-mdlg-1,
.col-md,
.col-md-auto,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-auto,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col-sm-1,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
    position: relative;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.row-cols-1>* {
    flex: 0 0 100%;
    max-width: 100%
}

.row-cols-2>* {
    flex: 0 0 50%;
    max-width: 50%
}

.row-cols-3>* {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 25%;
    max-width: 25%
}

.row-cols-5>* {
    flex: 0 0 20%;
    max-width: 20%
}

.row-cols-6>* {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
}

.col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
}

.col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
}

.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
}

.col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    order: -1
}

.order-last {
    order: 13
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-6 {
    order: 6
}

.order-7 {
    order: 7
}

.order-8 {
    order: 8
}

.order-9 {
    order: 9
}

.order-10 {
    order: 10
}

.order-11 {
    order: 11
}

.order-12 {
    order: 12
}

.offset-1 {
    margin-left: 8.3333333333%
}

.offset-2 {
    margin-left: 16.6666666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.3333333333%
}

.offset-5 {
    margin-left: 41.6666666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.3333333333%
}

.offset-8 {
    margin-left: 66.6666666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.3333333333%
}

.offset-11 {
    margin-left: 91.6666666667%
}

@media(min-width: 640px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-sm-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-sm-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-last {
        order: 13
    }

    .order-sm-0 {
        order: 0
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-6 {
        order: 6
    }

    .order-sm-7 {
        order: 7
    }

    .order-sm-8 {
        order: 8
    }

    .order-sm-9 {
        order: 9
    }

    .order-sm-10 {
        order: 10
    }

    .order-sm-11 {
        order: 11
    }

    .order-sm-12 {
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.3333333333%
    }

    .offset-sm-2 {
        margin-left: 16.6666666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.3333333333%
    }

    .offset-sm-5 {
        margin-left: 41.6666666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.3333333333%
    }

    .offset-sm-8 {
        margin-left: 66.6666666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.3333333333%
    }

    .offset-sm-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width: 900px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-md-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        order: -1
    }

    .order-md-last {
        order: 13
    }

    .order-md-0 {
        order: 0
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    .order-md-3 {
        order: 3
    }

    .order-md-4 {
        order: 4
    }

    .order-md-5 {
        order: 5
    }

    .order-md-6 {
        order: 6
    }

    .order-md-7 {
        order: 7
    }

    .order-md-8 {
        order: 8
    }

    .order-md-9 {
        order: 9
    }

    .order-md-10 {
        order: 10
    }

    .order-md-11 {
        order: 11
    }

    .order-md-12 {
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.3333333333%
    }

    .offset-md-2 {
        margin-left: 16.6666666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.3333333333%
    }

    .offset-md-5 {
        margin-left: 41.6666666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.3333333333%
    }

    .offset-md-8 {
        margin-left: 66.6666666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.3333333333%
    }

    .offset-md-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width: 1100px) {
    .col-mdlg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-mdlg-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-mdlg-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-mdlg-3>* {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .row-cols-mdlg-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-mdlg-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-mdlg-6>* {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-mdlg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-mdlg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-mdlg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-mdlg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-mdlg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-mdlg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-mdlg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-mdlg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-mdlg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-mdlg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-mdlg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-mdlg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-mdlg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-mdlg-first {
        order: -1
    }

    .order-mdlg-last {
        order: 13
    }

    .order-mdlg-0 {
        order: 0
    }

    .order-mdlg-1 {
        order: 1
    }

    .order-mdlg-2 {
        order: 2
    }

    .order-mdlg-3 {
        order: 3
    }

    .order-mdlg-4 {
        order: 4
    }

    .order-mdlg-5 {
        order: 5
    }

    .order-mdlg-6 {
        order: 6
    }

    .order-mdlg-7 {
        order: 7
    }

    .order-mdlg-8 {
        order: 8
    }

    .order-mdlg-9 {
        order: 9
    }

    .order-mdlg-10 {
        order: 10
    }

    .order-mdlg-11 {
        order: 11
    }

    .order-mdlg-12 {
        order: 12
    }

    .offset-mdlg-0 {
        margin-left: 0
    }

    .offset-mdlg-1 {
        margin-left: 8.3333333333%
    }

    .offset-mdlg-2 {
        margin-left: 16.6666666667%
    }

    .offset-mdlg-3 {
        margin-left: 25%
    }

    .offset-mdlg-4 {
        margin-left: 33.3333333333%
    }

    .offset-mdlg-5 {
        margin-left: 41.6666666667%
    }

    .offset-mdlg-6 {
        margin-left: 50%
    }

    .offset-mdlg-7 {
        margin-left: 58.3333333333%
    }

    .offset-mdlg-8 {
        margin-left: 66.6666666667%
    }

    .offset-mdlg-9 {
        margin-left: 75%
    }

    .offset-mdlg-10 {
        margin-left: 83.3333333333%
    }

    .offset-mdlg-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width: 1366px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-lg-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-lg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-last {
        order: 13
    }

    .order-lg-0 {
        order: 0
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-6 {
        order: 6
    }

    .order-lg-7 {
        order: 7
    }

    .order-lg-8 {
        order: 8
    }

    .order-lg-9 {
        order: 9
    }

    .order-lg-10 {
        order: 10
    }

    .order-lg-11 {
        order: 11
    }

    .order-lg-12 {
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.3333333333%
    }

    .offset-lg-2 {
        margin-left: 16.6666666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.3333333333%
    }

    .offset-lg-5 {
        margin-left: 41.6666666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.3333333333%
    }

    .offset-lg-8 {
        margin-left: 66.6666666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.3333333333%
    }

    .offset-lg-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width: 1920px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-xl-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-xl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-xl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-xl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-xl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-xl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-last {
        order: 13
    }

    .order-xl-0 {
        order: 0
    }

    .order-xl-1 {
        order: 1
    }

    .order-xl-2 {
        order: 2
    }

    .order-xl-3 {
        order: 3
    }

    .order-xl-4 {
        order: 4
    }

    .order-xl-5 {
        order: 5
    }

    .order-xl-6 {
        order: 6
    }

    .order-xl-7 {
        order: 7
    }

    .order-xl-8 {
        order: 8
    }

    .order-xl-9 {
        order: 9
    }

    .order-xl-10 {
        order: 10
    }

    .order-xl-11 {
        order: 11
    }

    .order-xl-12 {
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.3333333333%
    }

    .offset-xl-2 {
        margin-left: 16.6666666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.3333333333%
    }

    .offset-xl-5 {
        margin-left: 41.6666666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.3333333333%
    }

    .offset-xl-8 {
        margin-left: 66.6666666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.3333333333%
    }

    .offset-xl-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width: 2900px) {
    .col-xxl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-xxl-1>* {
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-xxl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-xxl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-xxl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-xxl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-xxl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-xxl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-xxl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xxl-first {
        order: -1
    }

    .order-xxl-last {
        order: 13
    }

    .order-xxl-0 {
        order: 0
    }

    .order-xxl-1 {
        order: 1
    }

    .order-xxl-2 {
        order: 2
    }

    .order-xxl-3 {
        order: 3
    }

    .order-xxl-4 {
        order: 4
    }

    .order-xxl-5 {
        order: 5
    }

    .order-xxl-6 {
        order: 6
    }

    .order-xxl-7 {
        order: 7
    }

    .order-xxl-8 {
        order: 8
    }

    .order-xxl-9 {
        order: 9
    }

    .order-xxl-10 {
        order: 10
    }

    .order-xxl-11 {
        order: 11
    }

    .order-xxl-12 {
        order: 12
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.3333333333%
    }

    .offset-xxl-2 {
        margin-left: 16.6666666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.3333333333%
    }

    .offset-xxl-5 {
        margin-left: 41.6666666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.3333333333%
    }

    .offset-xxl-8 {
        margin-left: 66.6666666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.3333333333%
    }

    .offset-xxl-11 {
        margin-left: 91.6666666667%
    }
}

#main {
    font-size: 16px;
    scroll-behavior: smooth
}

#main {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

@-ms-viewport {
    width: device-width
}

.pt {
    width: 100%
}

.pt--fullwidth .main {
    width: 100%
}

.pt--left-rail .region-main {
    display: flex;
    flex-direction: row;
    padding: 0 1rem
}

@media(min-width: 900px) {
    .pt--left-rail .region-main {
        padding: 0 1.5rem
    }
}

@media(min-width: 900px) {
    .pt--left-rail .region-main .rail {
        display: block;
        width: 25%;
        margin-right: 1rem
    }
}

.pt--left-rail .region-main .main {
    width: 100%
}

@media(min-width: 900px) {
    .pt--left-rail .region-main .main {
        width: 75%
    }
}

.pt--search .support-region-main,
.pt--search .region-main {
    margin: 50px auto 60px
}

@media(min-width: 900px) {

    .pt--search .support-region-main,
    .pt--search .region-main {
        margin: 60px auto 70px
    }
}

.support-region-main {
    max-width: 1366px
}

.pt--support .region-hero {
    margin-bottom: 60px
}

.pt--support .region-main {
    display: flex;
    flex-direction: row;
    padding: 0 1rem
}

.pt--support .region-main .rail {
    display: none
}

.pt--support .region-main .main {
    width: 100%
}

@media(min-width: 900px) {
    .pt--support .region-main {
        padding: 0 1.5rem
    }

    .pt--support .region-main .rail {
        display: block;
        width: 25%;
        margin-right: 1rem
    }

    .pt--support .region-main .main {
        width: 75%
    }
}

.pt--pdp .region--main {
    padding: 0 1rem;
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .pt--pdp .region--main {
        padding: 0 1.5rem;
        flex-direction: row
    }
}

.pt--pdp .region--details {
    padding: 0 1rem;
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .pt--pdp .region--details {
        padding: 0 8.3333333333%
    }
}

.header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 100%
}

@supports(display: grid) {
    .header {
        display: grid;
        grid-template-areas: "nav-local" "notification-bar";
        -ms-grid-rows: 60px auto;
        grid-template-rows: 60px auto
    }
}

@media(min-width: 900px) {
    .header {
        grid-template-areas: "nav-global" "notification-bar" "nav-local";
        -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto
    }
}

.promo-slot--header {
    order: 2;
    grid-area: notification-bar
}

.search {
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 25%;
    grid-area: search
}

@media(min-width: 56.25em) {
    .search {
        flex-grow: 0
    }
}

.cart {
    grid-area: cart
}

/* 
.menu--local {
    flex: 1 1 auto
}

h6,
h5,
h4,
h3,
h2,
h1 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 700;
    line-height: 1.2
}

h1 {
    font-size: 34px
} */

@media(min-width: 900px) {
    #main h1 {
        font-size: 2.75rem
    }
}

#main h2 {
    color: #fff;
    font-size: 1.875rem
}

@media(min-width: 900px) {
    #main h2 {
        font-size: 38px
    }
}

#main h3 {
    color: #fff;
    font-size: 1.5rem
}

@media(min-width: 900px) {
    #main h3 {
        font-size: 34px
    }
}

#main h4 {
    color: #fff;
    font-size: 16px
}

@media(min-width: 900px) {
    #main h4 {
        font-size: 16px
    }
}

#main h5 {
    color: #fff;
    font-size: 24px
}

@media(min-width: 900px) {
    #main h5 {
        font-size: 24px
    }
}

#main h6 {
    color: #fff;
    font-size: 20px
}

@media(min-width: 900px) {
    #main h6 {
        font-size: 20px
    }
}

#main p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 1rem
}


.image {
    display: block;
    position: relative;
    overflow: hidden
}

.image img {
    display: block;
    height: auto;
    width: 100%;
    top: 0
}

.image.is-fullwidth {
    width: 100%
}

.image.is-1by1,
.image.is-16by9 {
    width: 100%
}

.image.is-1by1 img,
.image.is-1by1 .has-ratio,
.image.is-16by9 img,
.image.is-16by9 .has-ratio {
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image.is-1by1 {
    padding-top: 100%
}

.image.is-16by9 {
    padding-top: 56.25%
}

.image--zoom:hover img {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    transition: -webkit-transform .1s ease-out;
    transition: transform .1s ease-out;
    transition: transform .1s ease-out, -webkit-transform .1s ease-out
}

.imageLeft {
    width: 100%;
    max-width: 500px
}

.imageRightTop {
    max-width: 250px;
    width: 100%
}

.select {
    font-size: .8125rem;
    display: block;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 0 0 .3rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iYmxhY2siIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMFYweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik03LjQxIDguNTlMMTIgMTMuMTdsNC41OS00LjU4TDE4IDEwbC02IDYtNi02IDEuNDEtMS40MXoiLz48L3N2Zz4=);
    background-repeat: no-repeat, repeat;
    background-position: right .2em top 50%;
    background-size: 1.5em auto
}

@media(min-width: 900px) {
    .select {
        font-size: .875rem
    }
}

.predator .select {
    background-color: #000;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMFYweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik03LjQxIDguNTlMMTIgMTMuMTdsNC41OS00LjU4TDE4IDEwbC02IDYtNi02IDEuNDEtMS40MXoiLz48L3N2Zz4=);
    color: #fff
}

.black .select {
    background-color: #000;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMFYweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik03LjQxIDguNTlMMTIgMTMuMTdsNC41OS00LjU4TDE4IDEwbC02IDYtNi02IDEuNDEtMS40MXoiLz48L3N2Zz4=);
    color: #fff
}

.select--no-border {
    border: 0 none
}

.select::-ms-expand {
    display: none
}

.select:hover {
    border-color: #888
}

.select:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none
}

.predator .select:focus {
    color: #fff
}

.black .select:focus {
    color: #fff
}

.select option {
    font-weight: normal
}

*[dir=rtl] .select,
:root:lang(ar) .select,
:root:lang(iw) .select {
    background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em
}

.select:disabled,
.select[aria-disabled=true] {
    color: graytext;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E")
}

.select:disabled:hover,
.select[aria-disabled=true] {
    border-color: #aaa
}

.select--large {
    padding: .5rem 1.5rem .5rem 1rem
}

.checkbox {
    position: relative;
    width: 15px;
    height: 15px;
    border: 1px solid #111;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    margin-right: .5rem
}

.checkbox:checked {
    background: url(http://vignette3.wikia.nocookie.net/roblox/images/5/57/Very-Basic-Checkmark-icon.png/revision/latest?cb=20131125154354) no-repeat center center;
    background-size: 100%
}

@media(min-width: 2900px) {
    .checkbox {
        width: 18px;
        height: 18px;
        margin-top: -5px
    }
}

input[type=reset],
input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input::-ms-reveal {
    display: none
}

select::-ms-expand {
    display: none
}

.input {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 12px;
    margin-top: 8px;
    overflow: visible
}

.input__label {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: .75rem;
    top: 0
}

.input__text,
.input__password,
.input__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #474747;
    border: none;
    border-bottom: 1px solid #474747;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    font-size: 16px;
    outline: none;
    width: 100%
}

@media(min-width: 900px) {

    .input__text,
    .input__password,
    .input__select {
        font-size: 18px
    }
}

.input__text::-webkit-input-placeholder,
.input__password::-webkit-input-placeholder,
.input__select::-webkit-input-placeholder {
    font-size: .8rem;
    line-height: 3
}

.input__text::-moz-placeholder,
.input__password::-moz-placeholder,
.input__select::-moz-placeholder {
    font-size: .8rem;
    line-height: 3
}

.input__text:-ms-input-placeholder,
.input__password:-ms-input-placeholder,
.input__select:-ms-input-placeholder {
    font-size: .8rem;
    line-height: 3
}

.input__text::placeholder,
.input__password::placeholder,
.input__select::placeholder {
    font-size: .8rem;
    line-height: 3
}

.conceptd .input__text,
.conceptd .input__password,
.conceptd .input__select {
    color: #25282a;
    border-color: #25282a
}

.predator .input__text,
.predator .input__password,
.predator .input__select {
    color: #fff;
    border-color: #fff
}

.input__password,
.input__text {
    padding: 2px 0 1px;
    line-height: 26px
}

.input__password {
    padding-right: 20px
}

.input__password-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    visibility: hidden;
    background: rgba(0, 0, 0, 0);
    border: none;
    position: absolute;
    right: 0;
    top: 20px;
    outline: none;
    cursor: pointer
}

.input__password-toggle .material-icons {
    color: #474747;
    font-size: 18px
}

.conceptd .input__password-toggle .material-icons {
    color: #222
}

.predator .input__password-toggle .material-icons {
    color: #fff
}

.input__password:valid~.input__password-toggle,
.input__password:focus~.input__password-toggle {
    visibility: visible
}

.input__error {
    color: red;
    font-size: .875rem;
    bottom: 0;
    padding: 0;
    margin: 3px 0 0;
    display: none
}

.input__hint {
    color: #89898b;
    font-size: .875rem;
    margin: 3px 0 0
}

.input__select {
    height: 30px;
    padding-bottom: 2px;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iYmxhY2siIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMFYweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik03LjQxIDguNTlMMTIgMTMuMTdsNC41OS00LjU4TDE4IDEwbC02IDYtNi02IDEuNDEtMS40MXoiLz48L3N2Zz4=);
    background-repeat: no-repeat, repeat;
    background-position: right .2em top 45%;
    background-size: 1em 1em
}

.predator .input__select {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTggMTg7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkYiIGQ9Ik01LjYsNi40TDksOS45bDMuNC0zLjRsMS4xLDEuMUw5LDEyTDQuNSw3LjVMNS42LDYuNHoiLz4NCjwvc3ZnPg==);
    background-color: #1a1a1a
}

.graphical-input {
    position: relative
}

.graphical-input__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    outline: none;
    border: none;
    margin: 0;
    width: 0;
    height: 0
}

.graphical-input__label {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    font-size: .75rem;
    line-height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.graphical-input__label span {
    display: inline-block
}

@media(min-width: 900px) {
    .graphical-input__label span {
        font-size: 14px
    }
}

.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #80c343;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.conceptd .graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #25282a;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.predator .graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.graphical-input__input:disabled+.graphical-input__label {
    color: #ccc
}

.graphical-input__input:disabled+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #80c343;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.conceptd .graphical-input__input:disabled+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #ccc;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.predator .graphical-input__input:disabled+.graphical-input__label {
    color: #474747
}

.predator .graphical-input__input:disabled+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #474747;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.graphical-input__input:checked+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #80c343;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.conceptd .graphical-input__input:checked+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #25282a;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.predator .graphical-input__input:checked+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.graphical-input__input:checked:disabled+.graphical-input__label {
    color: #ccc
}

.graphical-input__input:checked:disabled+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #80c343;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.conceptd .graphical-input__input:checked:disabled+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #ccc;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.predator .graphical-input__input:checked:disabled+.graphical-input__label {
    color: #474747
}

.predator .graphical-input__input:checked:disabled+.graphical-input__label::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #474747;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.form-panel {
    border: 1px solid #dbdce0;
    padding: 1.5rem;
    background-color: #fff;
    margin: 0 0 20px
}

.predator .form-panel {
    background-color: #1a1a1a;
    border: none
}

@media(min-width: 900px) {
    .form-panel {
        padding: 60px 50px 70px;
        max-width: 600px
    }
}

@media(min-width: 2900px) {
    .form-panel {
        padding: 60px 50px 70px;
        max-width: 875px
    }
}

.form-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    flex-shrink: 1
}

@media(min-width: 640px) {
    .form-inline {
        flex-direction: row
    }
}

.form-inline>.input {
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%
}

@media(min-width: 640px) {
    .form-inline>.input {
        margin-right: 1.5rem
    }

    .form-inline>.input:last-child {
        margin-right: 0
    }
}

@media(min-width: 640px) {
    .form-inline--40 {
        flex-basis: 40%;
        max-width: 40%
    }
}

@media(min-width: 640px) {
    .form-inline--60 {
        flex-basis: 60%;
        max-width: 60%
    }
}

table {
    width: 100%
}

.table--bordered td,
.table--bordered th {
    border: 1px solid #898989;
    padding: .5rem
}

.table--bordered td h6,
.table--bordered th h6 {
    margin: 0
}

.table--bordered th:first-child {
    min-width: 95px;
    font-size: .8125rem;
    font-weight: 400;
    text-align: center
}

@media(min-width: 900px) {
    .table--bordered th:first-child {
        font-size: .875rem
    }
}

.table--bordered p {
    font-size: 16px;
    margin: 0
}

@media(min-width: 900px) {
    .table--bordered p {
        font-size: 18px
    }
}

.table--bordered .ref {
    font-size: .8125rem
}

@media(min-width: 900px) {
    .table--bordered .ref {
        font-size: .875rem
    }
}

.table--bordered a {
    text-decoration: underline
}

.predator .table--bordered td,
.predator .table--bordered th {
    border: 1px solid #fff
}

.wrap {
    max-width: 1008px;
    margin: 0 auto;
    padding-right: 8px;
    padding-left: 8px;
    box-sizing: border-box
}

@media(min-width: 25em) {
    .wrap {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media(min-width: 80em) {
    .wrap {
        max-width: 1280px
    }
}

.layout {
    list-style: none;
    direction: ltr;
    text-align: left;
    display: flex;
    flex-flow: row wrap;
    -ms-flex-grow: 1;
    flex-grow: 1;
    margin-right: 0;
    margin-left: -8px;
    padding-right: 0;
    padding-left: 0
}

@media(min-width: 37.5em) {
    .layout {
        margin-left: -16px
    }
}

.layout__item {
    width: 100%;
    display: inline-block;
    padding-left: 8px;
    text-align: left;
    vertical-align: top;
    box-sizing: border-box
}

@media(min-width: 37.5em) {
    .layout__item {
        padding-left: 16px
    }
}

.layout--flush {
    margin-left: 0
}

.layout--flush>.layout__item {
    padding-left: 0
}

.layout--rev {
    flex-direction: row-reverse
}

.no-flexbox .layout--rev {
    direction: rtl;
    text-align: left
}

.no-flexbox .layout--rev>.layout__item {
    direction: ltr;
    text-align: left
}

.layout--middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center
}

.layout--middle>.layout__item {
    vertical-align: middle
}

.layout--bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end
}

.layout--bottom>.layout__item {
    vertical-align: bottom
}

.layout--right {
    text-align: right;
    justify-content: flex-end
}

.layout--right>.layout__item {
    text-align: left
}

.layout--center {
    text-align: center;
    justify-content: center
}

.layout--center>.layout__item {
    text-align: left
}

.layout--auto>.layout__item {
    width: auto
}

.layout--no-flex {
    min-width: 100%
}

.layout--no-flex,
.layout--no-flex>.layout__item {
    display: block;
    display: inline-block
}

.layout--equal>.layout__item {
    display: flex
}

.layout--fit>.layout__item {
    width: auto;
    flex: 1 1 auto
}

.layout__item--top {
    align-self: flex-start
}

.layout__item--center {
    align-self: center
}

.layout__item--bottom {
    align-self: flex-end
}

.embed-responsive {
    position: relative;
    width: 100%
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive__item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.embed-responsive--21by9::before {
    padding-top: 42.8571428571%
}

.embed-responsive--16by9::before {
    padding-top: 56.25%
}

.embed-responsive--4by3::before {
    padding-top: 75%
}

.embed-responsive--1by1::before {
    padding-top: 100%
}

.embed-responsive--gallery::before {
    padding-top: 136.7399%
}

.icon-sprite {
    display: none
}

.icon {
    width: 34px;
    height: 34px;
    padding: .5rem
}

.icon-white {
    fill: #fff
}

.icon--auth {
    fill: #fff;
    width: 38px;
    height: 38px
}

.icon--circle {
    border-radius: 50%
}

.icon--dark {
    background-color: #000;
    fill: #fff
}

.icon--white {
    background-color: #fff;
    fill: #000
}

.box {
    background-color: #fff;
    padding: 1rem
}

.box:hover {
    text-decoration: none
}

.box:hover .btn {
    background-color: #80c343
}

.conceptd .box:hover {
    text-decoration: none
}

.conceptd .box:hover .btn {
    background-color: #ca4e21;
    color: #fff
}

.predator .box {
    background-color: #000;
    color: #fff
}

.predator .box:hover {
    text-decoration: none
}

.predator .box:hover .btn {
    background-color: #00aecd;
    color: #000
}

.box--shadow {
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .3)
}

.box--shadow:hover {
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3)
}

.box--border {
    background-color: #fff;
    border-top: 4px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .3);
    margin: .5rem 0;
    padding: 1rem 1.25rem
}

.box--border:hover {
    border-top: 4px solid #80c343;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3);
    text-decoration: none
}

.box--border:hover .btn {
    background-color: #80c343
}

.conceptd .box--border:hover {
    border-color: #ca4e21;
    text-decoration: none
}

.conceptd .box--border:hover .btn {
    background-color: #ca4e21;
    color: #fff
}

.predator .box--border {
    background-color: #000;
    color: #fff
}

.predator .box--border:hover {
    border-color: #00aecd;
    text-decoration: none
}

.predator .box--border:hover .btn {
    background-color: #00aecd;
    color: #000
}

.dark .box--border {
    background-color: #000;
    color: #fff
}

.dark .box--border:hover {
    text-decoration: none
}

.dark .box--border:hover .btn {
    color: #fff
}

.black .box--border {
    background-color: #1a1a1a;
    color: #fff
}

.btn {
    display: inline-block;
    font-weight: 600;
    color: #000;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid rgba(0, 0, 0, 0);
    padding: 9px 24px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0
}

.btn:hover {
    color: #222;
    text-decoration: none
}

.btn:focus,
.btn.focus {
    outline: 0
}

.btn.disabled,
.btn:disabled {
    opacity: .65;
    pointer-events: none
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

@media(min-width: 900px) {
    .btn {
        padding: 14px 24px;
        font-size: 16px;
        line-height: 1.5;
        border-radius: 0
    }
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none
}

.btn--lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 2;
    border-radius: 0
}

.btn--sm {
    padding: 9px 24px;
    font-size: .875rem;
    line-height: 1.25;
    border-radius: 0
}

.btn--sm .material-icons {
    font-size: 18px
}

.btn--xs {
    padding: 9px 24px;
    font-size: 12px;
    line-height: 1.25;
    border-radius: 0
}

.btn--xs .material-icons {
    font-size: 18px
}

.btn--block {
    display: block;
    width: 100%
}

.btn--block+.btn--block {
    margin-top: .5rem
}

input[type=submit].btn--block,
input[type=reset].btn--block,
input[type=button].btn--block {
    width: 100%
}

.btn--video {
    padding: 0;
    display: inline-flex;
    align-items: center;
    min-width: auto
}

.btn--filter {
    display: inline-flex;
    border: 1px solid #80c343;
    color: #474747;
    justify-content: space-between;
    padding: .5rem .8rem;
    min-width: auto;
    background-color: rgba(128, 195, 67, .15);
    font-weight: normal;
    font-size: 12px;
    text-decoration: none
}

.btn--filter .material-icons {
    padding: 0 0 0 .2rem;
    font-size: 18px
}

.btn--warning::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.btn--label {
    cursor: default;
    pointer-events: none;
    color: #80c343
}

.conceptd .btn--label {
    color: #ca4e21;
    font-weight: 500
}

.predator .btn--label {
    color: #00aecd
}

.btn--btt {
    position: fixed;
    display: none;
    right: 0;
    bottom: 5rem;
    width: 50px;
    height: 50px;
    max-width: 50px;
    min-width: 50px;
    padding: 0;
    text-align: center;
    background-color: #f1f7e6;
    box-shadow: 0px 3px 16px rgba(34, 34, 34, .16);
    z-index: 50;
    transition: all 150ms ease-in-out
}

.btn--btt .material-icons {
    line-height: 50px;
    font-size: 30px;
    fill: #80c343
}

@media(min-width: 900px) {
    .btn--btt {
        right: 1.5rem
    }
}

.conceptd .btn--btt {
    background-color: #fcf8f6;
    color: #ca4e21
}

.conceptd .btn--btt .material-icons {
    fill: #ca4e21
}

.predator .btn--btt {
    background-color: #293b4b;
    box-shadow: 0px 3px 16px rgba(255, 255, 255, .16)
}

.predator .btn--btt .material-icons {
    fill: #00aecd
}

.btn--btt:hover {
    background-color: #80c343;
    color: #fff
}

.btn--btt:hover .material-icons {
    fill: #fff
}

.conceptd .btn--btt:hover {
    background-color: #ca4e21
}

.predator .btn--btt:hover {
    background-color: #00aecd
}

.predator .btn--btt:hover .material-icons {
    fill: #293b4b
}

.btn--icon {
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    color: #474747
}

.btn--icon label {
    margin: 0 .5rem
}

.btn--icon .material-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #80c343;
    color: #80c343;
    padding: 0;
    width: 35px;
    height: 35px
}

.btn--icon:hover .material-icons {
    background-color: #80c343;
    box-shadow: 0px 3px 3px rgba(34, 34, 34, .2);
    color: #fff
}

.conceptd .btn--icon .material-icons {
    border: 1px solid #ca4e21;
    color: #ca4e21
}

.conceptd .btn--icon:hover .material-icons {
    background-color: #ca4e21;
    color: #fff
}

.predator .btn--icon .material-icons {
    border: 1px solid #00aecd;
    color: #00aecd
}

.predator .btn--icon:hover .material-icons {
    background-color: #00aecd;
    color: #1a1a1a
}

.logo {
    flex: 0 0 25%;
    grid-area: logo;
    width: 100%;
    margin: 0
}

.logo__link {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.logo__img {
    height: 100%;
    max-height: 54px
}

.conceptd .logo__img {
    margin-top: 3px;
    max-height: 44px
}

.predator .logo__img {
    max-height: 44px
}

/* 
.menu {
    display: flex;
    font-size: 16px;
    margin: 0;
    padding: 0
}

.menu li {
    list-style: none;
    position: relative
}

.menu a {
    display: flex;
    align-items: center;
    padding: 1rem
}

.menu--vertical {
    flex-direction: column
}

.menu-right {
    position: absolute;
    right: 0;
    top: 0
}

.menu__item {
    position: relative
}

.menu--sep .menu__item::after {
    content: "|";
    position: absolute;
    right: -5px;
    top: 16px
}

.menu--sep .menu__item:last-child::after {
    display: none
}

.menu__link {
    display: flex
}

.menu__link:hover {
    text-decoration: none
}

.menu__link .material-icons {
    margin-right: 5px
}

.menu--icons {
    margin: 0 0 1rem
}

.menu--icons li {
    padding: 0 .5rem
}

.menu--icons li:last-child {
    padding-right: 0
}

.menu--icons a {
    padding: 1px
}

.mobile-menu-btn {
    grid-area: mobile-menu-btn;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.mobile-menu-btn:hover {
    text-decoration: none
}

.mobile-menu-btn .material-icons {
    color: #000;
    font-size: 2rem
}

.predator .mobile-menu-btn .material-icons {
    color: #fff
}

@media(min-width: 900px) {
    .mobile-menu-btn {
        display: none
    }
}

.menu--global {
    display: flex;
    font-size: .8125rem;
    margin: 0;
    padding: 0;
    height: 100%
}

@media(min-width: 900px) {
    .menu--global {
        font-size: .875rem
    }
}

.menu--global__item {
    list-style: none;
    position: relative;
    margin: 0 .75rem
}

.menu--global__item:first-child {
    margin-left: 0
}

.menu--global__item:last-child {
    margin-right: 0
}

.menu--global__link {
    display: flex;
    align-items: center;
    padding: 1rem 0
}

.menu--global__icon {
    font-size: 18px;
    margin-right: .2rem
}

.menu--global__icon img {
    vertical-align: top
}

.menu--local {
    margin: 0;
    padding: 0;
    grid-area: nav-local-list;
    display: none;
    justify-content: center;
    height: 100%
}

@media(min-width: 900px) {
    .menu--local {
        display: flex;
        margin: 0 auto
    }
}

.menu--local__item {
    list-style: none;
    position: relative;
    margin: 0 1rem
}

a.menu--local__link {
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0;
    height: 100%;
    white-space: nowrap
}

.menu--local__icon {
    font-size: 24px;
    margin-right: 0
}

.is-active .menu--local__icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.menu-mega {
    display: none;
    grid-column: 1/span 5
}

@media(min-width: 900px) {
    .menu-mega {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%
    }

    .menu-mega.is-open {
        display: block;
        padding: 1rem
    }
}

.menu-mega__list {
    flex: 0 1 90%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: none;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    position: absolute;
    transition: visibility .3s .2s cubic-bezier(0.25, 0.1, 0.25, 1);
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0
}

.is-open>.menu-mega__list {
    position: static;
    opacity: 1;
    display: flex;
    transition: .3s 0s cubic-bezier(0.25, 0.1, 0.25, 1);
    -webkit-transform: translate(0);
    transform: translate(0)
}

.menu-mega__link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: .75em;
    line-height: 18px;
    padding: 0 8px;
    max-width: 200px;
    text-align: center
}

.menu-mega__link img {
    flex-shrink: 0
}

.menu-mega__image {
    margin: 0 10px;
    width: 65px;
    height: 50px
}

@media(min-width: 2900px) {
    .menu-mega__image {
        margin: 0 10px .5rem;
        width: 180px;
        height: 121px
    }
}

.menu--dropdown>.menu--dropdown__list {
    display: none
}

.menu--dropdown:hover>.menu--dropdown__list {
    display: flex
}

.menu--dropdown:hover>.menu--dropdown__box {
    display: flex
}

.menu--dropdown:hover>.menu--dropdown__box__mobile {
    display: flex
}

.menu--dropdown__box {
    display: none;
    position: absolute;
    right: 0;
    z-index: 100;
    width: 580px;
    background-color: #fff;
    box-shadow: 0px 0px .75rem rgba(0, 0, 0, .3)
}

.is-open>.menu--dropdown__box {
    display: flex
}

.menu--dropdown__box[data-menu-open] {
    display: flex
}

@media(min-width: 2900px) {
    .menu--dropdown__box {
        width: 900px
    }
}

@media(max-width: 1099.98px) {
    .menu--dropdown__box {
        max-width: 580px;
        width: 90vw
    }
}

.predator .menu--dropdown__box {
    background-color: #333
}

.menu--dropdown__box__mobile {
    display: none;
    position: absolute;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0px 0px .75rem rgba(0, 0, 0, .3);
    right: 1pc;
    top: 3pc;
    max-width: 580px;
    width: 90%
}

.menu--dropdown__box__mobile:hover {
    display: flex
}

.is-open>.menu--dropdown__box__mobile {
    display: flex
}

.menu--dropdown__list {
    display: flex;
    min-width: 210px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    z-index: 100;
    flex-direction: column;
    white-space: nowrap;
    padding: .3rem .625rem
}

.is-active:last-child .menu--dropdown__list {
    right: 0;
    left: unset
}

.menu--dropdown__list .material-icons {
    font-size: 24px;
    margin-right: .5rem
}

.menu--dropdown__item {
    list-style: none;
    position: relative
}

.menu--dropdown__link {
    display: flex;
    align-items: center;
    padding: 1rem 0
}

.menu--mobile {
    margin: 0;
    padding: 0
}

.predator .menu--mobile {
    background-color: #1a1a1a;
    color: #fff
}

.menu__item--mobile {
    list-style: none
}

.menu__item--mobile:last-child .menu__link--mobile {
    border: 0 none
}

.menu__link--mobile {
    display: flex;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    color: #474747;
    padding: 1.5rem
}

.predator .menu__link--mobile {
    border-color: #474747
}

.is-drilldown__submenu-parent>.menu__link--mobile::after {
    content: "";
    position: absolute;
    right: 1rem;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 28px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    color: #80c343
}

.conceptd .is-drilldown__submenu-parent>.menu__link--mobile::after {
    color: #ca4e21
}

.predator .is-drilldown__submenu-parent>.menu__link--mobile::after {
    color: #00aecd
}

.menu__link--mobile:hover {
    text-decoration: none;
    color: #474747
}

.conceptd .menu__link--mobile:hover {
    color: #25282a
}

.predator .menu__link--mobile:hover {
    color: #fff
}

.conceptd .menu__link--mobile {
    font-weight: 400
}

.menu__link--mobile .material-icons {
    margin-right: 5px
}

.menu__submenu .menu__link--mobile {
    font-weight: 400;
    padding-left: 0;
    margin-left: 1.5rem
}

.js-drilldown-back>.menu__link--mobile {
    padding-left: 3rem;
    margin-left: 0;
    font-weight: 700
}

.js-drilldown-back>.menu__link--mobile::before {
    content: "";
    position: absolute;
    left: 1rem;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 28px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    color: #80c343;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.conceptd .js-drilldown-back>.menu__link--mobile::before {
    color: #ca4e21
}

.predator .js-drilldown-back>.menu__link--mobile::before {
    color: #00aecd
}

.conceptd .js-drilldown-back>.menu__link--mobile {
    font-weight: 400
}

.menu__btn--mobile {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.menu__btn--mobile:hover {
    text-decoration: none
} */

.nav-global {
    grid-area: nav-global;
    display: none;
    padding: 0 1rem
}

@media(min-width: 900px) {
    .nav-global {
        display: flex;
        justify-content: space-between;
        align-items: center
    }
}

.nav-local {
    order: 3;
    min-height: 64px
}

.predator .nav-local {
    background-color: #1a1a1a
}

.nav-local__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1rem;
    height: 64px
}

@supports(display: grid) {
    .nav-local__inner {
        grid-area: nav-local;
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 1rem 40px 1fr 1fr 40px 1rem;
        grid-template-areas: ". mobile-menu-btn logo search cart .";
        padding: initial
    }
}

@media screen and (max-width: 767px) {
    @supports(display: grid) {
        .nav-local__inner {
            grid-template-columns: 1rem 40px 1fr 40px 40px 1rem
        }
    }

    @supports(display: grid) {
        .nav-local__inner.is-open {
            grid-template-columns: 1rem 40px 2fr 40px 1rem;
            grid-template-areas: ". mobile-menu-btn search cart ."
        }
    }

    .nav-local__inner.is-open .logo {
        display: none
    }
}

@media(min-width: 900px) {
    @supports(display: grid) {
        .nav-local__inner {
            grid-template-columns: 1rem 1fr 2fr 1fr 1rem;
            grid-template-areas: ". logo nav-local-list search ."
        }
    }
}

.search {
    grid-area: search
}

@media(min-width: 900px) {
    .search {
        flex-grow: 0
    }
}

.cart {
    grid-area: cart
}

.nav-mobile__header {
    height: 64px
}

.nav-mobile__auth {
    background-color: #ededed
}

.predator .nav-mobile__auth {
    background-color: #474747;
    color: #fff
}

.nav-mobile__location {
    background-color: #ededed
}

.predator .nav-mobile__location {
    background-color: #000
}

.nav-mobile__brands {
    background-color: #ededed;
    border-top: 1px solid #c9c9c9
}

.predator .nav-mobile__brands {
    background-color: #000;
    border-color: #474747
}

.nav-mobile__brands p {
    padding: 1rem;
    margin: 0;
    font-size: 12px;
    line-height: 17px
}

.nav-mobile__text {
    color: #888
}

.predator .nav-mobile__text {
    color: #fff
}

.shop-now {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 9px 24px
}

@media(min-width: 900px) {
    .shop-now {
        padding: 9px 24px 9px 40px
    }
}

.shop-now__title {
    margin: 0
}

.shop-now__label {
    display: none
}

.shop-now.is-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 40
}

.is-drilldown {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition: height .5s
}

.conceptd .is-drilldown {
    background-color: #fefefe
}

.predator .is-drilldown {
    background-color: #1a1a1a
}

.is-drilldown__submenu {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    width: 100%;
    background: #fefefe;
    transition: -webkit-transform .25s linear;
    transition: transform .25s linear;
    transition: transform .25s linear, -webkit-transform .25s linear
}

.conceptd .is-drilldown__submenu {
    background-color: #fefefe
}

.predator .is-drilldown__submenu {
    background-color: #1a1a1a
}

.is-drilldown__submenu.is-active {
    z-index: 1;
    display: block;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.is-drilldown__submenu li {
    list-style: none
}

.promo-slot {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 32px
}

@media(min-width: 2900px) {
    .promo-slot {
        padding: 8px 0
    }
}

.promo-slot__content {
    width: 60%;
    padding: .5rem 0rem
}

@media(min-width: 640px) {
    .promo-slot__content {
        width: auto;
        max-width: 80%
    }
}

.promo-slot__text {
    display: none;
    margin: 0;
    padding: 0;
    font-size: .625rem
}

@media(min-width: 900px) {
    .promo-slot__text {
        font-size: .75rem
    }
}

.promo-slot__text.is-active {
    display: block
}

.promo-slot__link {
    display: inline-block;
    margin: 0 .5rem
}

.promo-slot__close {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 16px;
    cursor: pointer;
    justify-self: center;
    margin-left: auto
}

@media(min-width: 2900px) {
    .promo-slot__close {
        height: 30px
    }
}

@media(max-width: 899.98px) {
    .promo-slot__close {
        right: 8px
    }
}

@supports(display: grid) {
    .promo-slot__close {
        margin: initial
    }
}

.promo-slot__previous,
.promo-slot__next {
    height: 24px
}

@media(min-width: 2900px) {

    .promo-slot__previous,
    .promo-slot__next {
        height: 30px
    }
}

.search-widget {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.search-container {
    flex-shrink: 1;
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: all .25s ease-in-out
}

.search-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    cursor: pointer;
    padding: 0 0 0 .25rem;
    margin: 0;
    line-height: 1;
    height: 1.5rem
}

.predator .search-toggle {
    color: #fff
}

.search-toggle .material-icons img {
    vertical-align: top
}

.entry {
    display: flex;
    width: 0%;
    overflow: hidden;
    transition: all .25s ease-in-out;
    align-items: center
}

[data-active] .search-container {
    flex-grow: 1;
    width: 100%;
    border-radius: 4px;
    background-color: #fff;
    border-color: #dededf
}

.conceptd [data-active] .search-container {
    border-radius: 100px;
    padding: 0 .5rem
}

.predator [data-active] .search-container {
    background-color: #222;
    border-color: #474747
}

[data-active] .entry {
    flex-grow: 1;
    display: flex;
    width: 100%
}

.search-form {
    flex-grow: 1;
    display: flex
}

.search-input {
    width: 100%;
    flex-grow: 1;
    font-size: 16px;
    padding: .35rem 0;
    outline: none;
    border: none;
    background-color: rgba(0, 0, 0, 0)
}

.predator .search-input {
    color: #25282a
}

.predator .search-input {
    color: #ccc
}

.search-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
    height: 1.5rem
}

.predator .search-button {
    color: #ccc
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .17);
    background-color: #fff;
    z-index: 20
}

.conceptd .search-suggestions {
    border-radius: 1rem
}

.predator .search-suggestions {
    background-color: #222
}

.search-suggestions li {
    font-size: .813rem;
    font-style: italic;
    padding: 1rem;
    margin: 0 1.5rem;
    border-bottom: 1px solid #999;
    font-weight: 400;
    cursor: pointer
}

@media(min-width: 900px) {
    .search-suggestions li {
        font-size: 16px
    }
}

.acer .search-suggestions li {
    color: #474747
}

.conceptd .search-suggestions li {
    color: #25282a
}

.predator .search-suggestions li {
    color: #ccc;
    border-bottom: 1px solid #474747
}

.search-suggestions li:first-child {
    margin-top: 1rem
}

.search-suggestions li:last-child {
    margin-bottom: 1rem;
    border: none
}

.ui-menu.ui-autocomplete {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden
}

.cart {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

@media(min-width: 900px) {
    .cart {
        display: none
    }
}

.predator .cart .material-icons {
    color: #fff
}

@font-face {
    font-family: "swiper-icons";
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper,
swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide,
swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-backface-hidden .swiper-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: rgba(0, 0, 0, 0)
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@font-face {
    font-family: "swiper-icons";
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal
}

.swiper-container {
    width: 100%;
    position: relative
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    visibility: hidden;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 50;
    cursor: pointer;
    opacity: .6
}

@media(min-width: 900px) {

    .swiper-button-next,
    .swiper-button-prev {
        visibility: visible;
        width: 48px;
        height: 48px
    }
}

@media(min-width: 1366px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 64px;
        height: 64px
    }
}

@media screen and (min-width: 0\0) {

    .swiper-button-next .material-icons,
    .swiper-button-prev .material-icons {
        position: relative;
        top: 4px
    }
}

.swiper-button-next {
    right: 1.5rem
}

.swiper-button-prev {
    left: 1.5rem
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none
}

@-webkit-keyframes swiper-pagination {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

@keyframes swiper-pagination {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

.swiper-pagination-bullet {
    position: relative;
    width: 40px;
    height: 4px;
    box-shadow: 0px 1px 4px rgba(71, 71, 71, .2);
    border-radius: 0;
    background-color: #fff;
    opacity: 1
}

.conceptd .swiper-pagination-bullet {
    height: 5px;
    border-radius: 50px;
    background-color: #dbdbdb
}

.predator .swiper-pagination-bullet {
    width: 32px;
    background-color: #757575
}

.swiper-pagination {
    display: flex;
    align-items: center
}

.swiper-pagination .swiper-pagination-bullet {
    margin: 0 8px
}

.conceptd .swiper-pagination .swiper-pagination-bullet {
    margin: 0 4px
}

.predator .swiper-pagination .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-pagination-progress {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #80c343
}

.conceptd .swiper-pagination-progress {
    background-color: #ca4e21;
    border-radius: 50px
}

.predator .swiper-pagination-progress {
    background-color: #00aecd
}

.swiper-pagination-wrapper {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    bottom: 11px;
    z-index: 50
}

.conceptd .swiper-pagination-wrapper {
    bottom: 40px
}

.conceptd .swiper-pagination-wrapper .swiper-pagination-bullet {
    margin: 0 4px
}

.predator .swiper-pagination-wrapper {
    bottom: 30px
}

.predator .swiper-pagination-wrapper .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-pagination-bullet-active .swiper-pagination-progress {
    display: block;
    width: 100%
}

.swiper-button-play {
    color: #fff;
    font-size: 24px;
    z-index: 10;
    margin-left: 10px;
    -webkit-filter: drop-shadow(0px 1px 4px rgba(71, 71, 71, 0.2));
    filter: drop-shadow(0px 1px 4px rgba(71, 71, 71, 0.2));
    cursor: pointer
}

.swiper-button-play svg {
    fill: #80c343
}

.swiper-button-play .swiper-play {
    display: block
}

.swiper-button-play .swiper-pause {
    display: none
}

.conceptd .swiper-button-play {
    margin-left: 22px
}

.conceptd .swiper-button-play svg {
    fill: #ca4e21
}

.predator .swiper-button-play {
    color: #757575
}

.predator .swiper-button-play svg {
    fill: #00aecd
}

.swiper-button-play:hover {
    color: #80c343
}

.conceptd .swiper-button-play:hover {
    color: #ca4e21
}

.predator .swiper-button-play:hover {
    color: #00aecd
}

.swiper-playing .swiper-pagination-bullet-active .swiper-pagination-progress {
    display: block;
    -webkit-animation: swiper-pagination linear 5000ms;
    animation: swiper-pagination linear 5000ms
}

.swiper-playing .swiper-play {
    display: none
}

.swiper-playing .swiper-pause {
    display: block
}

.hero {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden
}

.hero__body {
    width: 100%;
    height: 100%;
    max-width: 1190px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media(min-width: 1920px) {
    .hero__body {
        max-width: 1280px
    }
}

.hero__image {
    display: flex;
    flex-shrink: 0;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center;"
}

.hero__image img {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center;"
}

.hero__caption {
    z-index: 1
}

.dark .hero__caption {
    color: #fff
}

.hero__title {
    line-height: 1.3;
    letter-spacing: -0.36px;
    width: 100%
}

.hero__overline {
    font-size: .813rem;
    font-weight: 400;
    display: block;
    margin-bottom: .5rem
}

@media(min-width: 900px) {
    .hero__overline {
        font-size: 16px
    }
}

.hero__text {
    width: 100%;
    font-size: 16px
}

@media(min-width: 900px) {
    .hero__text {
        font-size: 18px
    }
}

.hero__btn {
    margin-top: 20px
}

.hero__info {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    z-index: 1;
    display: inline-block
}

.dark .hero__info {
    color: #fff
}

@media(min-width: 900px) {
    .hero__info {
        right: 1.5rem;
        bottom: 0
    }
}

.hero__info-image {
    display: flex;
    justify-content: flex-end;
    margin-bottom: .5rem
}

.hero__info-image img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    max-height: 50px
}

@media(min-width: 900px) {
    .hero__info-image img {
        max-height: 70px
    }
}

@media(min-width: 2900px) {
    .hero__info-image img {
        max-height: 200px
    }
}

.hero__info-text {
    font-size: .813rem;
    text-align: right
}

@media(min-width: 900px) {
    .hero__info-text {
        font-size: 16px
    }
}

.hero__breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.hero__icon {
    margin-bottom: 1rem
}

.hero__icon img {
    max-height: 75px
}

@media(min-width: 2900px) {
    .hero__icon img {
        max-height: 160px
    }
}

.hero__awards {
    padding-top: 24px
}

.hero__awards picture {
    display: inline-block;
    margin: 0 10px 10px 0
}

.hero__awards img {
    max-height: 75px
}

@media(min-width: 2900px) {
    .hero__awards img {
        max-height: 160px
    }
}

.hero--reverse {
    flex-direction: row
}

@media(min-width: 900px) {
    .hero--reverse {
        flex-direction: row-reverse
    }
}

.hero--wrap {
    flex-wrap: wrap
}

.hero--left-top {
    align-items: flex-start;
    justify-content: flex-start
}

.hero--left-center {
    align-items: flex-start;
    justify-content: flex-start
}

@media(min-width: 900px) {
    .hero--left-center {
        align-items: center
    }
}

.hero--center {
    align-items: center;
    justify-content: center
}

.hero--center-top {
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem
}

@media(min-width: 640px) {
    .hero--center-top {
        padding-top: 2rem
    }
}

@media(min-width: 900px) {
    .hero--center-top {
        padding-top: 3rem
    }
}

.hero--right-center {
    justify-content: flex-end;
    align-items: flex-start
}

@media(min-width: 900px) {
    .hero--right-center {
        align-items: center
    }
}

.hero--right-top {
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 1rem
}

@media(min-width: 640px) {
    .hero--right-top {
        padding-top: 2rem
    }
}

@media(min-width: 900px) {
    .hero--right-top {
        padding-top: 3rem
    }
}

@media(min-width: 900px) {
    .hero--left-center-md {
        align-items: center;
        justify-content: flex-start
    }
}

@media(min-width: 900px) {
    .hero--center-md {
        justify-content: center;
        align-items: center
    }
}

@media(min-width: 900px) {
    .hero--right-top-md {
        justify-content: flex-end;
        align-items: flex-start;
        padding-top: 1rem
    }
}

@media(min-width: 900px)and (min-width: 640px) {
    .hero--right-top-md {
        padding-top: 2rem
    }
}

@media(min-width: 900px)and (min-width: 900px) {
    .hero--right-top-md {
        padding-top: 3rem
    }
}

@media(min-width: 900px) {
    .hero--right-center-md {
        justify-content: flex-end;
        align-items: center
    }
}

@media(min-width: 900px) {
    .hero--right-bottom-md {
        justify-content: flex-end;
        align-items: flex-end
    }
}

.hero__image--50 {
    flex: 1 1 100%;
    align-items: normal
}

.hero__image--50 img {
    -o-object-fit: cover;
    object-fit: cover
}

@media(min-width: 900px) {
    .hero__image--50 {
        flex: 1 1 50%;
        width: 50%;
        height: 100%;
        overflow: hidden
    }

    .hero__image--50 img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center
    }
}

.hero__image--55 {
    display: block
}

@media(min-width: 900px) {
    .hero__image--55 {
        width: 55%;
        height: 100%
    }
}

.hero__image--60 {
    flex: 1 1 100%;
    align-items: normal
}

.hero__image--60 img,
.hero__image--60 iframe {
    -o-object-fit: contain;
    object-fit: contain
}

@media(min-width: 900px) {
    .hero__image--60 {
        flex: 1 1 60%;
        width: 60%
    }

    .hero__image--60 img {
        -o-object-fit: cover;
        object-fit: cover
    }
}

.hero__image--75 {
    flex: 1 1 100%;
    align-items: normal;
    max-height: 450px
}

.hero__image--75 img {
    -o-object-fit: contain;
    object-fit: contain
}

@media(min-width: 900px) {
    .hero__image--75 {
        flex: 1 1 75%;
        width: 75%;
        height: 100%
    }
}

.hero__image--100 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    flex: 1 1 100%;
    align-items: center;
    justify-content: center;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%
}

.hero__image--100 img {
    flex-shrink: 0;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%
}

.hero__overline--live-feed {
    font-size: .8125rem
}

@media(min-width: 900px) {
    .hero__overline--live-feed {
        font-size: .875rem
    }
}

.hero__title--live-feed {
    font-size: 1.875rem;
    font-size: 30px
}

@media(min-width: 900px) {
    .hero__title--live-feed {
        font-size: 38px
    }
}

.hero__btn--live-feed {
    margin-top: 20px
}

@media(min-width: 900px) {
    .hero__btn--live-feed {
        margin-top: 30px
    }
}

.hero__position {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    opacity: 0
}

.hero__bg {
    background-size: cover;
    background-position: center
}

@media(max-width: 899.98px) {
    .hero__bg {
        min-height: 300px
    }
}

.error-title {
    color: #80c343
}

.predator .error-title {
    color: #00aecd
}

.conceptd .error-title {
    color: #ca4e21
}

.hero__image--opacity {
    filter: opacity(0.3);
    -webkit-filter: opacity(0.3)
}

.hero--primary {
    height: 35vw;
    min-height: 512px
}

@media(min-width: 640px) {
    .hero--primary {
        min-height: 425px
    }
}

@media(min-width: 900px) {
    .hero--primary {
        min-height: 450px
    }
}

@media(min-width: 1366px) {
    .hero--primary {
        min-height: 512px;
        padding-left: 5rem;
        padding-right: 5rem
    }
}

@media(min-width: 900px) {
    .hero--primary__title {
        line-height: 1.16
    }
}

.hero--primary__overline {
    font-size: .813rem;
    font-weight: 500;
    display: block;
    margin-bottom: .5rem
}

@media(min-width: 900px) {
    .hero--primary__overline {
        font-size: 16px
    }
}

.hero__caption--gradint {
    background: -webkit-linear-gradient(top, #00b4ff 0, #1eff96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    font-size: 1.5rem
}

@media(min-width: 640px) {
    .hero__caption--gradint {
        font-size: 2rem
    }
}

@media(min-width: 900px) {
    .hero__caption--gradint {
        font-size: 2.65rem
    }
}

@media(min-width: 1100px) {
    .hero__caption--gradint {
        font-size: 3.65rem
    }
}

.hero--secondary {
    height: 375px;
    min-height: 450px
}

@media(min-width: 640px) {
    .hero--secondary {
        min-height: 425px
    }
}

@media(min-width: 900px) {
    .hero--secondary {
        min-height: 450px
    }
}

@media(min-width: 2900px) {
    .hero--secondary {
        min-height: 956px
    }
}

.hero--banner {
    height: 375px;
    min-height: 400px
}

@media(min-width: 2900px) {
    .hero--banner {
        min-height: 866px
    }
}

.hero--search {
    height: 300px
}

@media(min-width: 2900px) {
    .hero--search {
        height: 637px
    }
}

.search-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #222;
    width: 100%;
    max-width: 428px;
    padding-top: 8px;
    padding-left: 2px;
    padding-bottom: 9px
}

.search-box::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.conceptd .search-box {
    border-color: #25282a
}

.predator .search-box {
    color: #fff;
    border-color: #fff
}

.black .search-box {
    border-bottom: 1px solid #fff
}

@media(min-width: 900px) {
    .search-box {
        padding-top: 18px
    }
}

@media(min-width: 2900px) {
    .search-box {
        max-width: 600px
    }

    .search-box::before {
        content: "";
        position: relative;
        right: 5px;
        font-family: "Material Icons";
        font-weight: normal;
        font-style: normal;
        font-size: 32px;
        display: inline-block;
        line-height: 1;
        text-transform: none;
        letter-spacing: normal;
        word-wrap: normal;
        white-space: nowrap;
        direction: ltr;
        vertical-align: middle;
        color: inherit;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-feature-settings: "liga";
        font-feature-settings: "liga"
    }
}

.search-box p {
    position: absolute;
    margin-top: 20px;
    display: block;
    text-align: left
}

.search-box.error {
    border-bottom: 1px solid #c00
}

.search-box.error::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: "middle";
    color: #c00;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

@media(min-width: 2900px) {
    .search-box.error {
        max-width: 600px
    }

    .search-box.error::before {
        content: "";
        position: relative;
        right: 5px;
        font-family: "Material Icons";
        font-weight: normal;
        font-style: normal;
        font-size: 32px;
        display: inline-block;
        line-height: 1;
        text-transform: none;
        letter-spacing: normal;
        word-wrap: normal;
        white-space: nowrap;
        direction: ltr;
        vertical-align: "middle";
        color: #c00;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-feature-settings: "liga";
        font-feature-settings: "liga"
    }
}

.search-box.error p {
    color: #c00
}

.search-box__form {
    width: 100%
}

.search-box__input {
    font-size: 16px;
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    position: relative
}

@media(min-width: 900px) {
    .search-box__input {
        font-size: 18px
    }
}

.search-box__input::-webkit-input-placeholder {
    color: #474747
}

.search-box__input::-moz-placeholder {
    color: #474747
}

.search-box__input:-ms-input-placeholder {
    color: #474747
}

.search-box__input::placeholder {
    color: #474747
}

.search-box__input:focus {
    outline: none
}

.search-box__input:focus::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0)
}

.search-box__input:focus::-moz-placeholder {
    color: rgba(0, 0, 0, 0)
}

.search-box__input:focus:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0)
}

.search-box__input:focus::placeholder {
    color: rgba(0, 0, 0, 0)
}

.conceptd .search-box__input {
    color: #25282a
}

.conceptd .search-box__input::-webkit-input-placeholder {
    color: #25282a
}

.conceptd .search-box__input::-moz-placeholder {
    color: #25282a
}

.conceptd .search-box__input:-ms-input-placeholder {
    color: #25282a
}

.conceptd .search-box__input::placeholder {
    color: #25282a
}

.conceptd .search-box__input:focus {
    outline: none
}

.conceptd .search-box__input:focus::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0)
}

.conceptd .search-box__input:focus::-moz-placeholder {
    color: rgba(0, 0, 0, 0)
}

.conceptd .search-box__input:focus:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0)
}

.conceptd .search-box__input:focus::placeholder {
    color: rgba(0, 0, 0, 0)
}

.predator .search-box__input {
    color: #fff
}

.predator .search-box__input::-webkit-input-placeholder {
    color: #fff
}

.predator .search-box__input::-moz-placeholder {
    color: #fff
}

.predator .search-box__input:-ms-input-placeholder {
    color: #fff
}

.predator .search-box__input::placeholder {
    color: #fff
}

.predator .search-box__input:focus {
    outline: none
}

.predator .search-box__input:focus::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0)
}

.predator .search-box__input:focus::-moz-placeholder {
    color: rgba(0, 0, 0, 0)
}

.predator .search-box__input:focus:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0)
}

.predator .search-box__input:focus::placeholder {
    color: rgba(0, 0, 0, 0)
}

.hero--5050 {
    flex-wrap: wrap;
    min-height: 475px
}

@media(min-width: 900px) {
    .hero--5050 {
        align-items: center;
        min-height: 450px
    }
}

.hero--5050__image {
    flex: 1 1 100%;
    align-items: normal
}

.hero--5050__image img {
    -o-object-fit: cover;
    object-fit: cover
}

@media(min-width: 900px) {
    .hero--5050__image {
        flex: 1 1 50%;
        width: 50%;
        height: 100%
    }

    .hero--5050__image img {
        -o-object-fit: cover;
        object-fit: cover
    }
}

.hero__caption--40 {
    flex: 1 1 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 300px;
    padding: 1.5rem
}

@media(min-width: 900px) {
    .hero__caption--40 {
        flex: 1 1 40%;
        padding: 1.5rem 3rem;
        max-width: 40%;
        min-height: 0
    }
}

@media(min-width: 2900px) {
    .hero__caption--40 {
        padding: 0 6rem
    }
}

.hero__caption--45 {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem
}

@media(min-width: 900px) {
    .hero__caption--45 {
        width: 45%;
        padding: 0 5% 0 10%
    }
}

.hero__caption--50 {
    flex: 1 1 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem
}

@media(min-width: 900px) {
    .hero__caption--50 {
        flex: 1 1 50%;
        padding: 0 3rem;
        max-width: 50%
    }
}

@media(min-width: 1920px) {
    .hero__caption--50 {
        padding: 0 6rem
    }
}

.hero__caption--75 {
    flex: 1 1 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem
}

@media(min-width: 900px) {
    .hero__caption--75 {
        flex: 1 1 75%;
        padding: 0 1.5rem;
        max-width: 75%
    }
}

@media(min-width: 1366px) {
    .hero__caption--75 {
        padding: 0 3rem
    }
}

@media(min-width: 2900px) {
    .hero__caption--75 {
        padding: 0 6rem
    }
}

.hero__caption--100 {
    flex: 1 1 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem
}

.hero__caption--center {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem
}

@media(min-width: 640px) {
    .hero__caption--center {
        padding: 2rem
    }
}

@media(min-width: 900px) {
    .hero__caption--center {
        padding: 3rem
    }
}

.hero__caption--right {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left
}

.hero-slider {
    display: flex;
    min-height: 100%;
    width: 100%
}

@media(min-width: 900px) {
    .hero-slider {
        min-height: 100%
    }
}

.slide-container {
    position: relative;
    width: 100%;
    overflow: hidden
}

.slider-wrapper {
    position: relative;
    width: 100%;
    display: inline-flex
}

.slider {
    width: 100vw
}

.slider:not(:first-child) {
    display: none
}

.control-btn {
    position: absolute;
    bottom: 12px;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    z-index: 65
}

.slider_pagination {
    display: flex;
    align-items: center
}

.slider_pagination_btn {
    display: inline-block;
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
    width: 40px;
    height: 4px;
    margin: 0 8px;
    background-color: #fff
}

@-webkit-keyframes slider_pagination {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

@keyframes slider_pagination {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

.slider_pagination_btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 40px;
    height: 4px;
    box-shadow: 0px 1px 4px rgba(71, 71, 71, .2);
    background-color: #fff
}

.slider_pagination_btn:hover:before {
    background-color: #80c343
}

.conceptd .slider_pagination_btn:hover:before {
    background-color: #ca4e21
}

.predator .slider_pagination_btn:hover:before {
    background-color: #00aecd
}

.slider_pagination_btn.slider_pagination_btn--sel:before {
    background-color: #80c343;
    -webkit-animation: slider_pagination 5s linear;
    animation: slider_pagination 5s linear
}

.conceptd .slider_pagination_btn.slider_pagination_btn--sel:before {
    background-color: #ca4e21
}

.predator .slider_pagination_btn.slider_pagination_btn--sel:before {
    background-color: #00aecd
}

.slider_pagination_btn.slider_pagination_btn--running:before {
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.slider_pagination_btn.slider_pagination_btn--paused:before {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.slider__prev,
.slider__next {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #fff;
    color: #80c343
}

.slider__prev .material-icons,
.slider__next .material-icons {
    font-size: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.slider__prev .material-icons svg,
.slider__next .material-icons svg {
    fill: #80c343;
    font-size: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.conceptd .slider__prev,
.conceptd .slider__next {
    color: #ca4e21
}

.conceptd .slider__prev svg,
.conceptd .slider__next svg {
    fill: #ca4e21
}

.predator .slider__prev,
.predator .slider__next {
    color: #00aecd;
    background-color: #474747
}

.predator .slider__prev svg,
.predator .slider__next svg {
    fill: #00aecd
}

.slider__prev:hover,
.slider__next:hover {
    opacity: 1;
    background-color: #80c343;
    color: #fff
}

.slider__prev:hover svg,
.slider__next:hover svg {
    fill: #fff
}

.conceptd .slider__prev:hover,
.conceptd .slider__next:hover {
    background-color: #ca4e21
}

.predator .slider__prev:hover,
.predator .slider__next:hover {
    background-color: #00aecd;
    color: #474747
}

@media(min-width: 900px) {
    .slider__prev {
        left: 10px
    }
}

@media(min-width: 1366px) {
    .slider__prev {
        left: 5%
    }
}

@media(min-width: 1920px) {
    .slider__prev {
        left: 13%
    }
}

@media(min-width: 900px) {
    .slider__next {
        right: 10px
    }
}

@media(min-width: 1366px) {
    .slider__next {
        right: 5%
    }
}

@media(min-width: 1920px) {
    .slider__next {
        right: 13%
    }
}

.section {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.section--padded {
    padding-top: 50px;
    padding-bottom: 3.75rem
}

@media(min-width: 900px) {
    .section--padded {
        padding-top: 60px;
        padding-bottom: 70px
    }
}

.section--padding-top {
    padding-top: 50px
}

@media(min-width: 900px) {
    .section--padding-top {
        padding-top: 60px
    }
}

.section--padding-bottom {
    padding-bottom: 3.75rem
}

@media(min-width: 900px) {
    .section--padding-bottom {
        padding-bottom: 70px
    }
}

@media(max-width: 899.98px) {
    .section__title {
        max-width: 2900;
        margin-left: auto;
        margin-right: auto
    }
}

.section__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    width: 100%
}

@media(min-width: 2900px) {
    .section__header {
        max-width: 2900;
        margin-left: auto;
        margin-right: auto
    }
}

.section__header--center {
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: center
}

.section__header--center-left {
    margin: 0 auto;
    align-items: center;
    text-align: center
}

@media(min-width: 900px) {
    .section__header--center-left {
        align-items: flex-start;
        text-align: left
    }
}

@media(min-width: 900px) {
    .section__header--50 {
        max-width: 50%
    }
}

@media(min-width: 900px) {
    .section__header--75 {
        max-width: 75%
    }
}

.section__header--specs {
    padding-top: 50px
}

@media(min-width: 900px) {
    .section__header--specs {
        padding-top: 60px
    }
}

.section__desc {
    font-size: 16px;
    margin-bottom: 0;
    width: 100%
}

@media(min-width: 900px) {
    .section__desc {
        font-size: 18px
    }
}

@media(min-width: 900px) {
    .section__desc--80 {
        max-width: 80%
    }
}

.section__body {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media(min-width: 1366px) {
    .section__body {
        max-width: 1414px;
        margin-left: auto;
        margin-right: auto
    }
}

.section__body--search {
    min-height: 100px;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media(min-width: 1366px) {
    .section__body--search {
        margin-left: auto;
        margin-right: auto
    }
}

.section__body[data-simplebar] {
    padding: 0;
    overflow: auto;
    overflow-y: hidden
}

@media(min-width: 900px) {
    .section__body[data-simplebar] {
        padding: 0 1.5rem
    }

    .section__body[data-simplebar].section__body--flush {
        padding: 0
    }
}

@media(min-width: 2900px) {
    .section__body[data-simplebar] {
        max-width: 2900px;
        margin-left: auto;
        margin-right: auto
    }
}

.section__body--flush {
    padding: 0
}

.section__body--cropped {
    padding: 0
}

@media(min-width: 900px) {
    .section__body--cropped {
        padding: 0 1.5rem
    }
}

.section__body--padding-bottom {
    padding-bottom: 60px
}

@media(min-width: 900px) {
    .section__body--padding-bottom {
        padding-bottom: 70px
    }
}

.section__footer {
    display: flex;
    padding: 2rem 1rem 0
}

.section__footer--center {
    align-items: center;
    justify-content: center
}

.section--form {
    background-color: #fafafa
}

.section--form__body {
    display: flex;
    justify-content: center;
    align-items: center
}

.section--feature {
    padding-top: 50px;
    padding-bottom: 10px
}

@media(min-width: 900px) {
    .section--feature {
        padding-top: 60px;
        padding-bottom: 30px
    }
}

.section--primary {
    padding-bottom: 2rem
}

@media(min-width: 900px) {
    .section--primary {
        padding-bottom: 70px
    }
}

.section__header--primary {
    margin: 0 auto;
    padding: 3.125rem 1.5rem;
    text-align: center
}

@media(min-width: 900px) {
    .section__header--primary {
        padding-top: 60px
    }
}

.section--primary--pad-scroll {
    padding-bottom: 1.5em
}

@media(min-width: 1100px) {
    .section--primary--pad-scroll {
        padding-bottom: 70px
    }
}

.section--secondary {
    margin-bottom: 3.75rem
}

@media(min-width: 900px) {
    .section--secondary {
        margin-bottom: 70px
    }
}

.section--secondary--pad-scroll {
    padding-bottom: 1.5em
}

@media(min-width: 900px) {
    .section--secondary--pad-scroll {
        padding-bottom: 0
    }
}

.section--article {
    margin-bottom: 1.5rem
}

.card-list {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    min-height: 100%
}

.card-list .card-list__item {
    margin-bottom: 1.5rem
}

.card-list .card-list__item span.over__stock {
    display: none;
    color: #c00
}

@media(min-width: 900px) {
    .card-list .card-list__item:last-of-type {
        margin-right: 0
    }
}

.has-scrollbar .card-list {
    margin-bottom: 1rem
}

@media(min-width: 900px) {
    .card-list--fixed-2 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--fixed-2 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px) {
    .card-list--fixed-3 .card-list__item {
        width: calc((100% - 2rem)/3);
        margin-right: 1rem
    }

    .card-list--fixed-3 .card-list__item:nth-child(3n) {
        margin-right: 0
    }
}

.card-list--fixed-4 .card-list__item {
    width: 100%
}

@media(min-width: 900px) {
    .card-list--fixed-4 .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--fixed-4 .card-list__item:nth-child(4n) {
        margin-right: 0
    }
}

@media(min-width: 900px)and (max-width: 1099.98px) {
    .card-list--fixed-4plus .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }
}

@media(min-width: 1100px)and (max-width: 1365.98px) {
    .card-list--fixed-4plus .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }
}

@media(min-width: 1366px) {
    .card-list--fixed-4plus .card-list__item {
        width: calc((100% - 4rem)/5);
        margin-right: 1rem
    }

    .card-list--fixed-4plus .card-list__item:nth-child(5n) {
        margin-right: 0
    }
}

@media(min-width: 640px)and (max-width: 899.98px) {
    .card-list--fluid-3 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--fluid-3 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px) {
    .card-list--fluid-3 .card-list__item {
        width: calc((100% - 2rem)/3);
        margin-right: 1rem
    }

    .card-list--fluid-3 .card-list__item:nth-child(3n) {
        margin-right: 0
    }
}

@media(min-width: 640px)and (max-width: 899.98px) {
    .card-list--support .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--support .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px)and (max-width: 1099.98px) {
    .card-list--support .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--support .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 1100px)and (max-width: 1365.98px) {
    .card-list--support .card-list__item {
        width: calc((100% - 2rem)/3);
        margin-right: 1rem
    }

    .card-list--support .card-list__item:nth-child(3n) {
        margin-right: 0
    }
}

@media(min-width: 1366px)and (max-width: 1919.98px) {
    .card-list--support .card-list__item {
        width: calc((100% - 2rem)/3);
        margin-right: 1rem
    }

    .card-list--support .card-list__item:nth-child(3n) {
        margin-right: 0
    }
}

@media(min-width: 1920px) {
    .card-list--support .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--support .card-list__item:nth-child(4n) {
        margin-right: 0
    }
}

@media(min-width: 640px)and (max-width: 899.98px) {
    .card-list--fluid-2-3 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--fluid-2-3 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px)and (max-width: 1099.98px) {
    .card-list--fluid-2-3 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--fluid-2-3 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 1100px)and (max-width: 1365.98px) {
    .card-list--fluid-2-3 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--fluid-2-3 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 1366px) {
    .card-list--fluid-2-3 .card-list__item {
        width: calc((100% - 2rem)/3);
        margin-right: 1rem
    }

    .card-list--fluid-2-3 .card-list__item:nth-child(3n) {
        margin-right: 0
    }
}

.card-list--fluid-2-3 .card-list__item {
    min-width: auto
}

.card-list--fluid-2-2-4 .card-list__item,
.card-list--fluid-2-2-4 .card {
    min-width: auto
}

@media(max-width: 899.98px) {
    .card-list--fluid-2-2-4 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--fluid-2-2-4 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px) {
    .card-list--fluid-2-2-4 .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--fluid-2-2-4 .card-list__item:nth-child(4n) {
        margin-right: 0
    }
}

.card-list--fluid-2-4 .card-list__item,
.card-list--fluid-2-4 .card {
    min-width: auto
}

@media(max-width: 899.98px) {
    .card-list--fluid-2-4 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--fluid-2-4 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 640px) {
    .card-list--fluid-2-4 .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--fluid-2-4 .card-list__item:nth-child(4n) {
        margin-right: 0
    }
}

@media(min-width: 640px)and (max-width: 899.98px) {
    .card-list--fluid-2-3-4 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--fluid-2-3-4 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px)and (max-width: 1099.98px) {
    .card-list--fluid-2-3-4 .card-list__item {
        width: calc((100% - 2rem)/3);
        margin-right: 1rem
    }

    .card-list--fluid-2-3-4 .card-list__item:nth-child(3n) {
        margin-right: 0
    }
}

@media(min-width: 1100px)and (max-width: 1365.98px) {
    .card-list--fluid-2-3-4 .card-list__item {
        width: calc((100% - 2rem)/3);
        margin-right: 1rem
    }

    .card-list--fluid-2-3-4 .card-list__item:nth-child(3n) {
        margin-right: 0
    }
}

@media(min-width: 1366px) {
    .card-list--fluid-2-3-4 .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--fluid-2-3-4 .card-list__item:nth-child(4n) {
        margin-right: 0
    }
}

.card-list--scroll-4 {
    flex-wrap: nowrap;
    min-width: 240px
}

.card-list--scroll-4 .card-list__item {
    margin-right: 1rem
}

@media(min-width: 900px) {
    .card-list--scroll-4 .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--scroll-4 .card-list__item:nth-child(4n) {
        margin-right: 0
    }
}

@media(min-width: 900px) {
    .has-scrollbar .card-list--scroll-4 {
        padding-left: 0;
        padding-right: 0;
        margin-right: 1.5
    }
}

.card-list--scroll-4plus {
    flex-wrap: nowrap;
    min-width: 242px
}

.card-list--scroll-4plus .card-list__item {
    margin-right: 1rem
}

@media(min-width: 900px)and (max-width: 1099.98px) {
    .card-list--scroll-4plus .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }
}

@media(min-width: 1100px)and (max-width: 1365.98px) {
    .card-list--scroll-4plus .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }
}

@media(min-width: 1366px) {
    .card-list--scroll-4plus .card-list__item {
        width: calc((100% - 4rem)/5);
        margin-right: 1rem
    }

    .card-list--scroll-4plus .card-list__item:nth-child(5n) {
        margin-right: 0
    }
}

@media(min-width: 900px) {
    .has-scrollbar .card-list--scroll-4plus {
        padding-left: 0;
        padding-right: 0
    }
}

.card-list--scroll-5 {
    flex-wrap: nowrap
}

.card-list--scroll-5 .card-list__item {
    margin-right: 1rem;
    max-width: 130px;
    min-width: 130px
}

@media(min-width: 900px) {
    .card-list--scroll-5 .card-list__item {
        max-width: 180px;
        min-width: 180px
    }
}

@media(min-width: 1100px) {
    .card-list--scroll-5 .card-list__item {
        max-width: 206px;
        min-width: 206px
    }
}

@media(min-width: 1366px) {
    .card-list--scroll-5 .card-list__item {
        max-width: 240px;
        min-width: 240px
    }
}

.card-list--scroll-5 .card-list__item .card {
    min-width: auto
}

.card-list--scroll-5 .card-list__item:hover .card__playVideo--icon {
    opacity: 1
}

.has-scrollbar .card-list--scroll-5 .card-list__item {
    margin-bottom: 0rem
}

@media(min-width: 900px) {
    .has-scrollbar .card-list--scroll-5 {
        padding-left: 0;
        padding-right: 0;
        margin-right: 1.5
    }
}

.card-list--scroll-5 .card__playVideo--icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 45px;
    color: rgba(0, 0, 0, .7);
    opacity: .8
}

.card-list--hybrid-4 .card-list__item {
    width: calc((100% - 3rem)/4);
    margin-right: 1rem
}

.card-list--hybrid-4 .card-list__item:nth-child(4n) {
    margin-right: 0
}

.card-list--scroll-3 {
    flex-wrap: nowrap;
    min-width: 242px
}

.card-list--scroll-3 .card-list__item {
    margin-right: 1rem
}

@media(min-width: 900px) {
    .card-list--scroll-3 .card-list__item {
        width: calc((100% - 2rem)/3);
        margin-right: 1rem
    }

    .card-list--scroll-3 .card-list__item:nth-child(3n) {
        margin-right: 0
    }
}

.has-scrollbar .card-list--scroll-3 {
    padding-left: 1rem;
    padding-right: 1rem
}

@media(min-width: 900px) {
    .has-scrollbar .card-list--scroll-3 {
        padding-left: 0;
        padding-right: 0;
        margin-right: 1.5
    }
}

.card-list--scroll-4w {
    flex-wrap: nowrap
}

.card-list--scroll-4w .card-list__item {
    margin-right: 1rem
}

@media(min-width: 900px) {
    .card-list--scroll-4w .card-list__item {
        min-width: auto
    }
}

@media(min-width: 900px) {
    .card-list--scroll-4w {
        flex-wrap: wrap;
        min-width: auto
    }

    .card-list--scroll-4w .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--scroll-4w .card-list__item:nth-child(4n) {
        margin-right: 0
    }
}

.card-list--category {
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0
}

.card-list--category .card-list__item {
    min-width: 120px;
    flex-shrink: 1;
    margin-bottom: 0;
    margin-right: 1rem;
    padding: 0
}

.card-list--category .card-list__item:last-child() {
    margin-right: 0
}

@media(min-width: 640px) {
    .card-list--category .card-list__item {
        min-width: 170px;
        max-width: 170px
    }
}

@media(min-width: 900px) {
    .card-list--category .card-list__item {
        min-width: 206px;
        max-width: 206px
    }
}

@media(min-width: 1366px) {
    .card-list--category .card-list__item {
        max-width: 438px
    }
}

.has-scrollbar .card-list--category {
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem
}

@media(min-width: 900px) {
    .has-scrollbar .card-list--category {
        padding-left: 0;
        padding-right: 0
    }
}

.card-list--variable {
    flex-wrap: nowrap;
    justify-content: center
}

.card-list--variable .card-list__item {
    min-width: 120px;
    flex-shrink: 1;
    margin-right: 1rem
}

.card-list--variable .card-list__item:last-child() {
    margin-right: 0
}

@media(min-width: 640px) {
    .card-list--variable .card-list__item {
        min-width: 170px;
        max-width: 170px
    }
}

@media(min-width: 900px) {
    .card-list--variable .card-list__item {
        min-width: 206px;
        max-width: 206px
    }
}

@media(min-width: 1366px) {
    .card-list--variable .card-list__item {
        max-width: 438px
    }
}

.has-scrollbar .card-list--variable {
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem
}

@media(min-width: 900px) {
    .has-scrollbar .card-list--variable {
        padding-left: 0;
        padding-right: 0
    }
}

.card-list--variable-2 {
    justify-content: center
}

.card-list--variable-2 .card-list__item {
    flex-shrink: 1;
    flex-grow: 1
}

@media(min-width: 56.25em) {
    .card-list--variable-2 {
        flex-wrap: nowrap
    }
}

.card-list--specs-2,
.card-list--specs-3,
.card-list--specs-4 {
    justify-content: space-around;
    margin-bottom: 0 !important
}

.card-list--specs-2 .card-list__item,
.card-list--specs-3 .card-list__item,
.card-list--specs-4 .card-list__item {
    flex-shrink: 1;
    flex-grow: 0;
    margin-bottom: 0 !important
}

.card-list--specs-2 .card-list__item {
    width: calc((100% - 1rem)/2);
    margin-right: 1rem
}

.card-list--specs-2 .card-list__item:nth-child(2n) {
    margin-right: 0
}

@media(max-width: 639.98px) {
    .card-list--specs-2 .card-list__item {
        margin-right: 0
    }
}

.card-list--specs-3 .card-list__item {
    width: calc((100% - 2rem)/3);
    margin-right: 1rem
}

.card-list--specs-3 .card-list__item:nth-child(3n) {
    margin-right: 0
}

@media(max-width: 639.98px) {
    .card-list--specs-3 .card-list__item {
        margin-right: 0
    }
}

@media(min-width: 640px)and (max-width: 899.98px) {
    .card-list--specs-4 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--specs-4 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px)and (max-width: 1099.98px) {
    .card-list--specs-4 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--specs-4 .card-list__item:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 1100px) {
    .card-list--specs-4 .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--specs-4 .card-list__item:nth-child(4n) {
        margin-right: 0
    }
}

.card-list--flush-3 {
    flex-wrap: wrap;
    margin: 0
}

.card-list--flush-3 .card-list__item {
    margin: 0;
    padding: 0
}

@media(min-width: 640px) {
    .card-list--flush-3 .card-list__item {
        min-width: 33.3333333333%
    }
}

@media(min-width: 640px) {
    .card-list--flush-3 {
        flex-wrap: nowrap
    }
}

.card-list--2_1_2 .card-list__item {
    flex-wrap: nowrap
}

@media(min-width: 640px) {
    .card-list--2_1_2 .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--2_1_2 .card-list__item:nth-child(2) {
        margin: 0rem
    }

    .card-list--2_1_2 .card-list__item:nth-child(3n) {
        margin: 1rem
    }
}

.card-list__item {
    flex-basis: auto;
    min-height: 100%;
    min-width: 242px;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
    list-style: none
}

.has-scrollbar .card-list__item {
    margin-bottom: 2rem
}

.card-list__item--hover:hover {
    box-shadow: 0 5px 8px 2px #89898b
}

.card-row {
    display: flex
}

.series-card {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 24px
}

.img-box,
.img-col {
    max-width: 242px
}

@media(min-width: 640px) {

    .img-box,
    .img-col {
        max-width: 317px
    }
}

@media(min-width: 900px) {
    .card-row {
        flex-wrap: wrap
    }

    .series-card {
        width: 25%
    }

    .img-box,
    .img-col {
        max-width: 100%
    }
}

.banner-box {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 50;
    padding: 24px;
    width: 100%;
    height: 100%
}

.banner-text {
    position: absolute;
    z-index: 50;
    padding: 24px
}

@media(max-width: 899.98px) {
    .card-list--filter .card-list__item {
        width: calc((100% - 1rem)/2);
        margin-right: 1rem
    }

    .card-list--filter .card-list__item:nth-child(2n) {
        margin-right: 0
    }

    .card-list--filter .card-list__item,
    .card-list--filter .card {
        min-width: auto
    }

    .card-list--filter .card-list__item {
        margin-right: 0
    }
}

@media(min-width: 900px) {
    .card-list--filter .card-list__item {
        width: calc((100% - 3rem)/4);
        margin-right: 1rem
    }

    .card-list--filter .card-list__item:nth-child(4n) {
        margin-right: 0
    }

    .card-list--filter .card-list__item,
    .card-list--filter .card {
        min-width: auto
    }
}

.banner_box {
    height: 100%;
    overflow: hidden;
    position: relative
}

@media(max-width: 639.98px) {
    .banner_box {
        height: 300px
    }
}

@media(max-width: 899.98px) {
    .banner_box {
        height: 350px
    }
}

.banner_img {
    width: 100%
}

.banner_img img {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -90%);
    transform: translate(-50%, -90%)
}

@media(max-width: 375px) {
    .banner_img img {
        -webkit-transform: translate(-50%, -70%);
        transform: translate(-50%, -70%)
    }
}

@media(min-width: 640px) {
    .banner_img img {
        -webkit-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%)
    }
}

@media(min-width: 1100px) {
    .max-width-1366 [name=search_results] .card-list--fluid-2-3-4 .card-list__item {
        width: calc((100% - 4rem)/3);
        margin-left: 1rem;
        margin-right: 0
    }
}

@media(min-width: 640px)and (max-width: 1100px) {
    .max-width-1366 [name=search_results] .card-list--fluid-2-3-4 .card-list__item {
        width: calc((100% - 3rem)/2);
        margin-left: 1rem;
        margin-right: 0
    }
}

@media screen and (max-width: 640px) {
    .max-width-1366 [name=search_results] .card-list--fluid-2-3-4 .card-list__item {
        width: 100%;
        margin: 0 auto 1.5rem
    }
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    text-decoration: none
}

.card:hover {
    text-decoration: none
}

.card--spaced {
    padding: 1rem
}

.card--horizontal {
    flex-direction: row
}

@media(min-width: 900px) {
    .card--horizontal\@md {
        flex-direction: row;
        align-items: center
    }
}

@media(min-width: 1366px) {
    .card--horizontal\@lg {
        flex-direction: row
    }
}

.card--nowrap {
    flex-wrap: nowrap
}

.card--center {
    justify-content: center
}

.card--start {
    justify-content: flex-start
}

.card--end {
    justify-content: flex-end
}

.card--middle {
    align-items: center
}

.card__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    word-break: break-word
}

.card__body--series {
    padding: 0 .5rem;
    text-align: center;
    margin-bottom: 30px
}

.card__body--padded {
    padding: 1.25rem 1rem
}

@media(min-width: 900px) {
    .card__body--padded {
        padding: 1rem 2rem
    }
}

@media(min-width: 1366px) {
    .card__body--padded {
        padding: 2rem 5rem
    }
}

.card--p1 {
    padding: 0 1rem
}

.card__body--center {
    text-align: center;
    align-items: center
}

.card__body--column {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.card__body--stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px
}

.card__body--center-left {
    text-align: center
}

@media(min-width: 900px) {
    .card__body--center-left {
        text-align: left
    }
}

.card__body--left-lg {
    text-align: center
}

@media(min-width: 1366px) {
    .card__body--left-lg {
        text-align: left
    }
}

.card__title {
    width: 100%
}

.card__title--m1 {
    margin-bottom: 1rem
}

.card__title--article {
    margin-bottom: 8px
}

.card__title--p1 {
    font-size: 18px
}

@media(min-width: 900px) {
    .card__title--p1 {
        font-size: 1.5rem
    }
}

.card__title--secondary {
    color: #224449;
    font-size: .813rem
}

@media(min-width: 900px) {
    .card__title--secondary {
        font-size: 16px
    }
}

.card__text {
    font-size: 16px;
    margin: 0;
    word-break: break-word;
    margin-bottom: 1rem
}

@media(min-width: 900px) {
    .card__text {
        font-size: 18px
    }
}

.acer .card__text {
    color: #474747
}

.card__text--b2 {
    font-size: .813rem
}

@media(min-width: 900px) {
    .card__text--b2 {
        font-size: 16px
    }
}

.card__text--t1 {
    font-size: .8125rem
}

@media(min-width: 900px) {
    .card__text--t1 {
        font-size: .875rem
    }
}

.card__link {
    font-size: 16px;
    text-decoration: underline;
    display: block
}

@media(min-width: 900px) {
    .card__link {
        font-size: 18px
    }
}

.card__link--c1 {
    font-size: .625rem
}

@media(min-width: 900px) {
    .card__link--c1 {
        font-size: .75rem
    }
}

.card__link--inline {
    display: inline-block
}

.card__picture {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%
}

.card__picture--padded {
    padding: 0 .5rem
}

.card__picture--50 {
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0;
    overflow: hidden
}

@media(min-width: 900px) {
    .card__picture--50 {
        width: 50%
    }
}

@media(min-width: 1366px) {
    .card__picture--50 {
        width: 33%
    }
}

.card__img {
    align-self: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
    max-width: 100%;
    min-width: 100%;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear
}

@media(min-width: 640px) {
    .card__img--horizontal\@sm {
        max-width: 200px;
        min-width: 0;
        margin-right: 1rem
    }
}

.card__img--zoom:hover {
    -webkit-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear
}

.card__img--wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    width: 100%
}

.card__tags {
    font-size: .813rem;
    margin: 0;
    margin-bottom: 10px
}

@media(min-width: 900px) {
    .card__tags {
        font-size: 16px
    }
}

.card__tags--t1 {
    font-size: .8125rem
}

@media(min-width: 900px) {
    .card__tags--t1 {
        font-size: .875rem
    }
}

.card__tags--10 {
    font-size: 10px;
    -webkit-transform: scale(0.83);
    transform: scale(0.83);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%
}

.card__by {
    font-size: .813rem;
    margin-bottom: .5rem
}

@media(min-width: 900px) {
    .card__by {
        font-size: 16px
    }
}

.card__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: flex-end;
    padding: .2rem;
    cursor: pointer
}

.card__close:hover {
    text-decoration: none
}

.card__close .material-icons {
    pointer-events: none
}

.card__footer {
    margin-top: auto;
    padding: .5rem 0
}

.card__footer--center {
    margin-top: auto;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%
}

.card__footer--right {
    margin-top: auto;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%
}

.card__footer--std {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center
}

@media(min-width: 56.25em) {
    .card__footer--std {
        align-self: flex-start;
        justify-content: flex-start
    }
}

.card__video--wrapper {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden
}

.card__video {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.card__video--icon {
    position: absolute;
    top: calc(50% - 48px);
    left: calc(50% - 48px)
}

.card__video--icon .material-icons {
    font-size: 96px;
    color: #fff
}

.predator .card__video--icon .material-icons {
    font-size: 96px;
    color: #474747
}

.card--panel {
    background-color: #fff;
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .3);
    margin: .5rem 0;
    padding: 1rem
}

.card--panel:hover {
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3);
    text-decoration: none
}

.card--panel:hover .btn {
    background-color: #80c343
}

.conceptd .card--panel:hover {
    text-decoration: none
}

.conceptd .card--panel:hover .btn {
    background-color: #ca4e21;
    color: #fff
}

.predator .card--panel {
    background-color: #000;
    color: #fff
}

.predator .card--panel:hover {
    text-decoration: none
}

.predator .card--panel:hover .btn {
    background-color: #00aecd;
    color: #000
}

.dark .card--panel {
    background-color: #000;
    color: #fff
}

.dark .card--panel:hover {
    text-decoration: none
}

.dark .card--panel:hover .btn {
    color: #fff
}

.black .card--panel {
    background-color: #1a1a1a;
    color: #fff
}

.card--panel-border {
    background-color: #fff;
    position: relative;
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .3);
    margin: .5rem 0
}

.card--panel-border:before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 4px;
    z-index: 2;
    transition: background-color .15s ease-in-out
}

.card--panel-border:hover {
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3);
    text-decoration: none
}

.card--panel-border:hover:before {
    background-color: #80c343
}

.card--panel-border:hover .btn {
    background-color: #80c343
}

.conceptd .card--panel-border:hover {
    text-decoration: none
}

.conceptd .card--panel-border:hover:before {
    background-color: #ca4e21
}

.conceptd .card--panel-border:hover .btn {
    background-color: #ca4e21;
    color: #fff
}

.predator .card--panel-border {
    background-color: #000;
    color: #fff
}

.predator .card--panel-border:hover {
    text-decoration: none
}

.predator .card--panel-border:hover:before {
    background-color: #00aecd
}

.predator .card--panel-border:hover .btn {
    background-color: #00aecd;
    color: #000
}

.dark .card--panel-border {
    background-color: #000;
    color: #fff
}

.dark .card--panel-border:hover {
    text-decoration: none
}

.dark .card--panel-border:hover .btn {
    color: #000
}

.black .card--panel-border {
    background-color: #1a1a1a;
    color: #fff
}

.card--outline,
.card--stroke {
    background-color: #fff;
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .3);
    transition: box-shadow .1s ease-out
}

.card--outline:hover,
.card--stroke:hover {
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3)
}

.conceptd .card--outline,
.conceptd .card--stroke {
    border-radius: 4px;
    overflow: hidden
}

.predator .card--outline,
.predator .card--stroke {
    background-color: #000;
    color: #fff;
    box-shadow: 0px 2px 4px rgba(255, 255, 255, .2039215686)
}

.dark .card--outline,
.dark .card--stroke {
    background-color: #000;
    color: #fff
}

.black .card--outline,
.black .card--stroke {
    background-color: #1a1a1a;
    color: #fff
}

.card--stroke {
    padding: 1rem
}

.card-product {
    display: flex;
    position: relative;
    overflow: hidden;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    text-decoration: none
}

.card-product:hover {
    text-decoration: none
}

.conceptd .card-product {
    border-radius: 4px
}

.card-product__body {
    padding: 0 .5rem;
    text-align: center;
    width: 100%
}

.card-product__title {
    font-size: 18px
}

@media(min-width: 900px) {
    .card-product__title {
        font-size: 1.5rem
    }
}

.card__price,
.card-product__price {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px
}

.card__price span,
.card-product__price span {
    text-decoration: line-through;
    line-height: 2;
    margin-right: .5rem
}

.card__price {
    justify-content: left
}

.card__price span {
    line-height: 2.3;
    font-size: 20px
}

.card-product__price--old {
    font-size: .813rem;
    font-weight: 300;
    text-decoration: line-through
}

@media(min-width: 900px) {
    .card-product__price--old {
        font-size: 16px
    }
}

.card-product__cart {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: .5rem
}

.card-product__select,
.card-product__number {
    border: 2px solid #e0e0e0;
    padding: .5rem;
    outline: none;
    outline-width: 0;
    outline-color: rgba(0, 0, 0, 0);
    width: 70px;
    text-align: center
}

.card-product__number {
    color: #474747
}

.conceptd .card-product__number {
    color: #222
}

.predator .card-product__number {
    color: #fff;
    background-color: #000
}

.card-product__select+.btn,
.card-product__number+.btn {
    margin-left: .5rem
}

.card-product__compare {
    font-size: 14px
}

.card-product__compare input {
    margin-right: .3rem
}

.card-product__compare label {
    display: flex;
    align-items: center;
    margin: 8px 0 0 3px
}

.card-product__text {
    font-size: .813rem;
    margin: 0;
    word-break: break-word
}

@media(min-width: 900px) {
    .card-product__text {
        font-size: 16px
    }
}

.card-product__model {
    margin-bottom: .5rem;
    font-size: .625rem
}

@media(min-width: 900px) {
    .card-product__model {
        font-size: .75rem
    }
}

.card-product__promo {
    margin-bottom: 15px;
    padding: .5rem;
    width: 100%;
    font-size: .8125rem;
    text-align: center
}

@media(min-width: 900px) {
    .card-product__promo {
        font-size: .875rem
    }
}

.card-product__list {
    text-align: left;
    list-style-type: disc;
    font-size: .8125rem
}

@media(min-width: 900px) {
    .card-product__list {
        font-size: .875rem
    }
}

.card-product__list li {
    margin-bottom: .5rem
}

.card-product__rating {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-bottom: .5rem;
    font-size: 16px
}

.card-product__rating .material-icons {
    max-width: 1.2rem;
    font-size: 16px
}

.card-product__rating .star {
    padding-left: .5rem;
    color: #80c343
}

.card-product__rating .rateCount {
    font-size: .625rem;
    padding-left: .5rem
}

@media(min-width: 900px) {
    .card-product__rating .rateCount {
        font-size: .75rem
    }
}

.card-product__footer {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: .5rem 0
}

.card-product__badge {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    background-color: #224449;
    padding: 4px 10px;
    z-index: 50
}

.card-product__badge h6 {
    margin: 0;
    color: #fff;
    font-weight: 100
}

.concept .card-product__badge h6 {
    color: #25282a
}

.predator .card-product__badge h6 {
    color: #000
}

.conceptd .card-product__badge {
    background-color: #bf9474;
    border-bottom-right-radius: 4px
}

.predator .card-product__badge {
    background-color: #11dfc3
}

.card-category {
    text-decoration: none;
    min-width: 120px;
    text-align: center;
    padding-bottom: 20px
}

.card-category:hover {
    color: #222;
    text-decoration: none
}

.light .card-category {
    color: #222
}

.light .card-category:hover {
    color: #222
}

.predator .card-category {
    color: #fff
}

.predator .card-category:hover {
    color: #fff
}

.dark .card-category {
    color: #fff
}

.dark .card-category:hover {
    color: #fff
}

.card-category__body {
    display: flex;
    justify-content: center;
    text-align: center
}

.card-category__title {
    font-size: .813rem;
    font-weight: 400;
    margin-top: auto;
    transition: font-weight .15s ease-in-out;
    margin-bottom: 0
}

@media(min-width: 900px) {
    .card-category__title {
        font-size: 16px
    }
}

.card-category:hover .card-category__title {
    font-weight: 700
}

.card-specs {
    padding-bottom: 24px
}

@media(min-width: 1100px) {
    .card-specs {
        padding-bottom: 0
    }
}

.card-list__item:last-of-type .card-specs {
    padding-bottom: 0
}

.card-specs--padding-bottom {
    padding-bottom: 24px
}

@media(min-width: 640px) {
    .card-specs--padding-bottom {
        padding-bottom: 48px
    }
}

.card-icon {
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 226px;
    max-width: 100%;
    padding: 1.875rem 1rem;
    width: 100%
}

@media(min-width: 900px) {
    .card-icon {
        min-width: 250px
    }
}

.card-icon:hover {
    color: #222;
    text-decoration: none
}

.conceptd .card-icon {
    color: #25282a
}

.conceptd .card-icon:hover {
    color: #25282a
}

.predator .card-icon {
    background-color: #000;
    color: #fff
}

.predator .card-icon:hover {
    color: #fff
}

.dark .card-icon {
    background-color: #000;
    color: #fff
}

.dark .card-icon:hover {
    color: #fff
}

.card-icon__body {
    display: flex;
    justify-content: center;
    text-align: center
}

.card-icon__title {
    font-size: 18px
}

@media(min-width: 900px) {
    .card-icon__title {
        font-size: 1.5rem
    }
}

.conceptd .card-icon__title {
    font-weight: 400
}

.card-icon__img {
    font-size: 3.5em;
    margin-bottom: 6px;
    display: inline-block
}

.card-overlay {
    position: relative;
    flex-direction: row;
    justify-content: center;
    min-width: 100%;
    overflow: hidden;
    text-align: center;
    transition: all .4s ease-in-out
}

.card-overlay__img {
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0
}

.card-overlay__picture {
    margin-bottom: 0
}

.card-overlay__body {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 1rem 1.5rem
}

@media(min-width: 900px) {
    .card-overlay__body {
        padding: 2rem 3rem
    }
}

.card-overlay__title {
    font-size: 24px
}

@media(min-width: 900px) {
    .card-overlay__title {
        font-size: 34px
    }
}

.card-overlay__text {
    font-size: 16px;
    align-self: center;
    width: 100%;
    margin-bottom: 30px;
    transition: display .15s ease-in-out
}

@media(min-width: 900px) {
    .card-overlay__text {
        font-size: 18px
    }
}

@media(min-width: 900px) {
    .card-overlay--hover .card-overlay__text {
        display: none
    }

    .card-overlay--hover:hover .card-overlay__text {
        display: block
    }
}

@media only screen and (min-device-width: 640px)and (max-device-width: 825px) {
    .card-overlay__text {
        display: none
    }
}

.card-overlay__btn {
    align-self: center;
    transition: display .15s ease-in-out
}

@media(min-width: 900px) {
    .card-overlay--hover .card-overlay__btn {
        display: none
    }

    .card-overlay--hover:hover .card-overlay__btn {
        display: block
    }
}

.card-picture--regional-2 {
    min-height: 317px;
    height: 100%
}

.card-picture--regional-2 img {
    height: 100%
}

.image-regional-2 {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: 100%
}

.card-feature {
    width: 100%;
    display: block;
    border-top: 4px solid rgba(0, 0, 0, 0);
    padding: 0;
    transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out
}

@media(min-width: 900px) {
    .card-feature:hover {
        background-color: #fff;
        border-top: 4px solid #80c343;
        box-shadow: 0 5px .8rem rgba(34, 34, 34, .3);
        text-decoration: none
    }

    .conceptd .card-feature:hover {
        border-color: #ca4e21
    }

    .predator .card-feature:hover {
        background-color: #000;
        border-color: #00aecd
    }
}

.card-feature__img {
    margin: 0;
    width: 100%
}

.card-feature__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 150ms;
    transition-timing-function: ease-in-out
}

@media(min-width: 900px) {
    .card-feature:hover .card-feature__inner {
        -webkit-transform: translateY(-54px);
        transform: translateY(-54px);
        height: calc(100% - 54px)
    }
}

.card-feature__body {
    text-align: center;
    padding: .25rem 1rem 1rem
}

@media(min-width: 1366px) {
    .card-feature__body {
        padding: .1rem 1rem 1rem
    }
}

.card-feature__text {
    font-size: .813rem;
    margin: 0;
    width: 100%;
    color: #474747
}

@media(min-width: 900px) {
    .card-feature__text {
        font-size: 16px
    }
}

.conceptd .card-feature__text {
    color: #25282a
}

.predator .card-feature__text {
    color: #fff
}

.card-feature__btn {
    padding: 6px 24px
}

@media(min-width: 900px) {
    .card-feature__btn {
        display: block;
        flex: 1 1 100%;
        border-radius: 0;
        font-size: 20px;
        padding: .7rem 1rem
    }
}

.card-feature__footer {
    display: flex;
    justify-content: center;
    width: 100%
}

@media(min-width: 900px) {
    .card-feature__footer {
        visibility: hidden;
        opacity: 0;
        margin-bottom: -40px;
        margin-top: 0;
        padding: 0;
        transition: opacity .25s ease-in
    }

    .card-feature:hover .card-feature__footer {
        visibility: visible;
        opacity: 1;
        transition: opacity .25s ease-out
    }
}

.card--pdp-icon {
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1.875rem 1rem;
    width: 100%;
    color: #474747
}

.card--pdp-icon:hover {
    color: #474747;
    text-decoration: none
}

.conceptd .card--pdp-icon {
    color: #25282a
}

.conceptd .card--pdp-icon:hover {
    color: #25282a
}

.predator .card--pdp-icon {
    color: #fff
}

.predator .card--pdp-icon:hover {
    color: #fff
}

.card__title--pdp-icon {
    font-size: 16px;
    font-weight: 400
}

@media(min-width: 900px) {
    .card__title--pdp-icon {
        font-size: 18px
    }
}

.card__img--pdp-icon {
    font-size: 3.5em;
    margin-bottom: 16px;
    display: inline-block
}

.card--pdp-product {
    padding-left: .5rem;
    height: auto;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card__body--pdp-product {
    display: block
}

.card__model--pdp-product {
    margin-bottom: .5rem;
    font-size: .8125rem
}

@media(min-width: 900px) {
    .card__model--pdp-product {
        font-size: .875rem
    }
}

.card__promo--pdp-product {
    margin-bottom: 16px;
    padding: .5rem 1.25rem;
    display: inline-block;
    font-size: .8125rem;
    background-color: rgba(126, 191, 66, .1019607843);
    border-left: 2px solid #80c343;
    color: #224449;
    text-align: left
}

@media(min-width: 900px) {
    .card__promo--pdp-product {
        font-size: .875rem
    }
}

.conceptd .card__promo--pdp-product {
    background-color: rgba(220, 88, 42, .05);
    border-left: 2px solid #ca4e21
}

.conceptd .card__promo--pdp-product strong {
    color: #ca4e21
}

.predator .card__promo--pdp-product {
    background-color: rgba(0, 174, 205, .2);
    border-left: 2px solid #00aecd;
    color: #fff
}

.predator .card__promo--pdp-product strong {
    color: #11dfc3
}

.card__list--pdp-product {
    text-align: left;
    list-style-type: disc;
    padding-left: 1.25rem;
    line-height: 1.35;
    font-size: 16px
}

@media(min-width: 900px) {
    .card__list--pdp-product {
        font-size: 18px
    }
}

.card__copy--pdp-product {
    font-size: 16px;
    line-height: 1.35
}

@media(min-width: 900px) {
    .card__copy--pdp-product {
        font-size: 18px
    }
}

.card__footer--pdp-product {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%
}

.card__cart--pdp-product {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: .5rem
}

.card__compare--pdp-product .graphical-input__label {
    margin: 8px 0 0 3px;
    font-size: .8125rem
}

@media(min-width: 900px) {
    .card__compare--pdp-product .graphical-input__label {
        font-size: .875rem
    }
}

.gallery-list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0;
    padding: 0
}

[data-simplebar] .gallery-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 0 .625rem 0
}

.gallery-list__item {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 100%;
    width: 100%;
    min-width: 365px;
    margin: 0 .5rem 2.75rem;
    list-style: none
}

@media(min-width: 900px) {
    .gallery-list__item:first-child {
        margin-left: 0
    }
}

.breadcrumb-wrapper {
    padding: 1rem
}

.breadcrumb {
    display: flex;
    margin: 0;
    padding: 0;
    font-size: .625rem
}

@media(min-width: 900px) {
    .breadcrumb {
        font-size: .75rem
    }
}

.breadcrumb__link {
    padding: 0 .5rem
}

.breadcrumb__item {
    list-style: none;
    display: none
}

.breadcrumb__item:first-of-type {
    display: inline-block
}

.breadcrumb__item:last-of-type {
    display: inline-block;
    padding: 0 .5rem
}

.breadcrumb__item:last-of-type:after {
    content: " ";
    display: none
}

.breadcrumb__item:after {
    content: "/";
    display: inline-block
}

.breadcrumb--expand .breadcrumb__item {
    display: inline-block
}

.breadcrumb__item--ellipsis {
    display: inline-block
}

.breadcrumb__item--ellipsis:after {
    content: "/";
    display: inline-block
}

.breadcrumb--expand .breadcrumb__item--ellipsis {
    display: none
}

.footnote {
    font-size: .8125rem;
    overflow-x: hidden;
    padding: 0 1rem;
    margin: 50px 0 60px
}

@media(min-width: 900px) {
    .footnote {
        font-size: .875rem
    }
}

@media(min-width: 900px) {
    .footnote {
        margin: 60px 0 70px;
        padding: 0 1.5rem
    }
}

.footnote picture {
    display: inline-block;
    margin-bottom: 1rem;
    clear: both
}

.footnote picture img {
    max-height: 60px
}

@media(min-width: 1920px) {
    .footnote picture img {
        max-height: 196px
    }
}

.footnote p,
.footnote div {
    font-size: .8125rem;
    margin: 0 0 12px 0;
    word-break: normal
}

@media(min-width: 900px) {

    .footnote p,
    .footnote div {
        font-size: .875rem
    }
}

.footnote p a,
.footnote div a {
    word-break: break-all;
    color: inherit
}

.footnote p:last-child,
.footnote div:last-child {
    margin-bottom: 0
}

.static-ksp {
    font-family: "Noto Sans", sans-serif;
    display: flex;
    flex-direction: column;
    margin: 50px 0 60px
}

.static-ksp.text-right {
    flex-direction: column-reverse
}

.static-ksp.theme-mid {
    background-color: #fafafa
}

.static-ksp.theme-dark {
    background-color: #000;
    color: #fff
}

.static-ksp__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    align-items: center;
    justify-content: center
}

.static-ksp__overline {
    font-size: 13px;
    text-align: center;
    line-height: 19px;
    letter-spacing: .2px
}

.static-ksp__headline {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    letter-spacing: -0.36px
}

.static-ksp__body {
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0 28px
}

.static-ksp__image {
    width: 100%;
    height: 210px
}

.static-ksp__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

@media(min-width: 900px) {
    .static-ksp {
        flex-direction: row;
        margin: 60px 0 70px
    }

    .static-ksp.text-right {
        flex-direction: row-reverse
    }

    .static-ksp__overline {
        font-size: 16px;
        text-align: center;
        line-height: 22px;
        letter-spacing: 0
    }

    .static-ksp__headline {
        font-size: 34px;
        text-align: center;
        line-height: 40px;
        letter-spacing: -0.51px
    }

    .static-ksp__body {
        font-size: 18px;
        line-height: 26px;
        max-width: 430px
    }

    .static-ksp__image {
        width: 100%;
        height: 400px
    }
}

.system-message {
    display: none;
    font-family: "Noto Sans", sans-serif;
    position: relative;
    flex-direction: row;
    justify-content: center;
    font-size: .625rem;
    line-height: 16px;
    min-height: 32px
}

@media(min-width: 900px) {
    .system-message {
        font-size: .75rem
    }
}

@media(min-width: 2900px) {
    .system-message {
        padding: 4px 0
    }
}

.system-message__link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    line-height: 32px
}

.system-message__link:hover {
    color: inherit;
    text-decoration: none
}

.system-message__text {
    display: inline-block
}

.system-message__close {
    display: block;
    background-color: rgba(0, 0, 0, 0);
    color: inherit;
    position: absolute;
    right: 16px;
    width: 24px;
    height: 32px;
    line-height: 32px;
    font-size: 24px;
    cursor: pointer
}

@media(max-width: 899.98px) {
    .system-message__close {
        right: 8px
    }
}

.account {
    position: relative;
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .account {
        flex-direction: row;
        padding: 60px 1.5rem 70px
    }
}

@media(min-width: 1366px) {
    .account {
        max-width: calc(1366px - 3.5rem);
        margin: 0 auto
    }
}

@media(min-width: 2900px) {
    .account {
        max-width: calc(1920px - 3.5rem);
        margin: 0 auto
    }
}

.account__nav--mobile {
    padding: 1rem 1.5rem
}

@media(min-width: 900px) {
    .account__nav--mobile {
        display: none
    }
}

.predator .account__nav--mobile {
    background-color: #000
}

.account__nav--mobile a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #222;
    width: 100%;
    text-align: left;
    padding: .3125rem 0;
    cursor: pointer;
    font-size: 16px
}

.account__nav--mobile a::before {
    content: "";
    position: relative;
    right: 0;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 28px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

@media(min-width: 900px) {
    .account__nav--mobile a {
        font-size: 1.25rem
    }
}

.account__nav--mobile a:hover {
    text-decoration: none
}

.conceptd .account__nav--mobile a {
    border-color: #222
}

.predator .account__nav--mobile a {
    border-color: #fff
}

.account__nav {
    flex-shrink: 1;
    margin-right: 1rem
}

.account__menu {
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fafafa;
    min-width: 317px
}

.predator .account__menu {
    background-color: #1a1a1a
}

@media(min-width: 2900px) {
    .account__menu {
        min-width: 420px
    }
}

.account__menu-item {
    border-left: .25rem solid rgba(0, 0, 0, 0);
    border-bottom: 1px solid #999
}

.acer .account__menu-item:hover {
    border-left-color: #80c343
}

.conceptd .account__menu-item:hover {
    border-left-color: #ca4e21
}

.predator .account__menu-item:hover {
    border-left-color: #00aecd
}

.account__menu-item:last-child {
    border-bottom: none
}

.account__menu-link {
    font-size: 16px;
    display: flex;
    align-items: center
}

@media(min-width: 900px) {
    .account__menu-link {
        font-size: 18px
    }
}

.account__menu-link .material-icons {
    font-size: 2rem;
    padding: .75rem 1.5rem
}

.account__menu-link:hover {
    text-decoration: none;
    font-weight: 700
}

.acer .account__menu-item.is-active {
    border-left-color: #80c343
}

.conceptd .account__menu-item.is-active {
    border-left-color: #ca4e21
}

.predator .account__menu-item.is-active {
    border-left-color: #00aecd
}

.account__menu-item.is-active .account__menu-link {
    font-weight: 700
}

.account__content {
    flex-grow: 1;
    margin: 0 1.5rem
}

@media(min-width: 900px) {
    .account__content {
        margin: 0 auto 0 0
    }
}

.account__content .input__text+.input__label {
    top: 17px;
    left: 0;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    transform: translateY(var(--label-y, 0)) scale(var(--label-scale, 1)) translateZ(0);
    transition: color .3s, -webkit-transform .3s;
    transition: transform .3s, color .3s;
    transition: transform .3s, color .3s, -webkit-transform .3s;
    -webkit-transition: transform .3s, color .3s;
    -moz-transition: transform .3s, color .3s;
    -ms-transition: transform .3s, color .3s;
    -o-transition: transform .3s, color .3s;
    font-size: 16px;
    color: #474747;
    -webkit-transform: translateY(var(--label-y, 0)) scale(var(--label-scale, 1)) translateZ(0);
    -moz-transform: translateY(var(--label-y, 0)) scale(var(--label-scale, 1)) translateZ(0);
    -ms-transform: translateY(var(--label-y, 0)) scale(var(--label-scale, 1)) translateZ(0);
    -o-transform: translateY(var(--label-y, 0)) scale(var(--label-scale, 1)) translateZ(0)
}

.account__content .input__text:not(:-moz-placeholder-shown)+label {
    --label-y: -22px;
    --label-scale: .8
}

.account__content .input__text:not(:-ms-input-placeholder)+label {
    --label-y: -22px;
    --label-scale: .8
}

.account__content .input__text:not(:placeholder-shown)+label,
.account__content .input__text:focus+label {
    --label-y: -22px;
    --label-scale: .8
}

.account__content .input__select {
    padding-bottom: 0
}

.account__content .input__select+.input__label {
    top: -3px
}

.form__save-changes--bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fafafa;
    color: #222;
    height: 120px;
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, .0980392157);
    z-index: 50
}

.predator .form__save-changes--bar {
    background-color: #000
}

.form__save-changes--buttons {
    padding: 1rem 1.5rem
}

@media(max-width: 676px) {
    .form__save-changes--buttons {
        padding-right: 24px
    }

    .form__save-changes--bar {
        height: 73px
    }
}

.cookie-bar {
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 65;
    width: 100%;
    padding: 20px 24px
}

@media(min-width: 900px) {
    .cookie-bar {
        padding: 30px 24px
    }
}

.cookie-bar__inner {
    display: flex;
    flex-direction: column;
    align-items: center
}

@media(min-width: 900px) {
    .cookie-bar__inner {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1320px;
        margin: 0 auto
    }
}

.cookie-bar__text {
    font-size: .813rem;
    margin-bottom: 10px
}

@media(min-width: 900px) {
    .cookie-bar__text {
        font-size: 16px
    }
}

@media(min-width: 900px) {
    .cookie-bar__text {
        width: 80%;
        margin-bottom: 0
    }
}

.cookie-bar__action {
    align-self: flex-end
}

.language-selector {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%
}

@media(min-width: 900px) {
    .language-selector {
        align-items: center
    }
}

.language-selector__region {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem
}

@media(min-width: 640px) {
    .language-selector__region {
        width: 85%
    }
}

@media(min-width: 1366px) {
    .language-selector__region {
        left: 3rem;
        width: 75%
    }
}

.language-selector__list {
    margin: 0;
    padding: 0;
    list-style: none
}

@media(min-width: 640px) {
    .language-selector__list {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 3em;
        -moz-column-gap: 3em;
        column-gap: 3em
    }
}

@media(min-width: 900px) {
    .language-selector__list {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 3em;
        -moz-column-gap: 3em;
        column-gap: 3em
    }
}

.language-selector__item {
    line-height: 2.6;
    white-space: nowrap
}

.language-selector__heading {
    display: inline-block
}

.language-selector__link {
    display: inline-block;
    text-decoration: none;
    font-size: 16px
}

@media(min-width: 900px) {
    .language-selector__link {
        font-size: 18px
    }
}

.language-selector__link:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #80c343
}

.predator .language-selector__link:hover {
    color: #11dfc3
}

.conceptd .language-selector__link:hover {
    color: #bf9474
}

.media-list {
    list-style-type: none;
    padding: 0
}

.predator .media-list {
    background-color: #000;
    color: #fff
}

.media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    margin: 0 30px;
    border-bottom: 1px solid #c9c9c9
}

.media:last-of-type {
    border: none
}

@media(min-width: 900px) {
    .media {
        flex-direction: row
    }
}

.media--promo {
    padding: 30px;
    margin: 0 0 1rem 0;
    border: none;
    background-color: #fafafa
}

.predator .media--promo {
    background-color: #1a1a1a
}

.media__visual {
    flex: 1 0 20%
}

@media(min-width: 900px) {
    .media__visual {
        direction: column;
        margin: 0 30px 0 0
    }
}

.media__content {
    flex: 0 1 80%
}

.media__content--search {
    flex: 0 1 80%;
    width: 100%
}

.media__text {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

@media(min-width: 900px) {
    .media__text {
        font-size: 18px
    }
}

.no-image {
    justify-content: left
}

@media screen and (max-width: 900px) {
    .media__visual {
        margin-bottom: 16px
    }
}

.awards-fe__list {
    list-style-type: none;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    padding: 0 10px
}

@media(min-width: 25em) {
    .awards-fe__list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center
    }
}

.awards-fe__item {
    padding: 10px;
    justify-content: center;
    display: flex;
    display: -webkit-flex;
    align-items: center
}

.awards-fe__item img {
    max-width: 100%;
    max-height: 120px
}

@media(min-width: 900px) {
    .awards-fe__container {
        margin: auto;
        display: flex;
        justify-content: center
    }
}

.awards-wpl__link {
    font-size: 16px;
    line-height: 36px;
    text-decoration: underline;
    display: block
}

.awards-wpl__label {
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 10px
}

@media(min-width: 900px) {
    .awards-wpl__link {
        font-size: 18px;
        line-height: 26px
    }

    .awards-wpl__label {
        font-size: 16px;
        line-height: 24px
    }
}

.support-vertical-article__list__item {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 100%;
    max-width: 317px;
    min-width: 317px;
    margin-right: 16px;
    margin-bottom: 36px;
    padding: 15px 14px 30px 15px;
    background-color: #f9f9f9;
    list-style: none
}

.predator .support-vertical-article__list__item {
    background-color: #25282a;
    color: #fff
}

.support-vertical-article__list__item p {
    font-size: 18px
}

@media(max-width: 899px) {
    .support-vertical-article__list__item p {
        font-size: 16px
    }
}

.support-vertical-article__img {
    align-self: center;
    flex-shrink: 0;
    max-width: 288px;
    max-height: 182px;
    margin-bottom: 10px
}

.event-details {
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .event-details {
        flex-direction: row
    }
}

.event-details__left {
    padding: 0 1rem 1rem
}

@media(min-width: 900px) {
    .event-details__left {
        flex-grow: 1;
        flex-basis: 50%;
        width: 50%
    }
}

@media(min-width: 1366px) {
    .event-details__left {
        padding-left: 8.3333333333%;
        padding-right: 2rem
    }
}

.event-details__right {
    display: flex;
    align-items: center;
    overflow-y: hidden;
    padding: 0 1rem;
    width: 100vw;
    max-width: 100vw
}

@media(min-width: 900px) {
    .event-details__right {
        flex-grow: 1;
        flex-basis: 50%;
        width: 50%
    }
}

.event-details__title {
    margin-bottom: 10px
}

.event-details__cards {
    display: flex;
    flex-direction: row;
    margin-bottom: 1.5rem
}

.event-details__card {
    flex-shrink: 0;
    flex-grow: 1;
    min-width: 240px;
    padding: 20px;
    margin-right: 20px
}

@media(min-width: 900px) {
    .event-details__card {
        max-width: 317px
    }
}

.event-details__list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0
}

.event-details__list li {
    font-size: .813rem;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px
}

@media(min-width: 900px) {
    .event-details__list li {
        font-size: 16px
    }
}

.event-details__list li .material-icons {
    margin-right: 10px
}

.event-details__list li:last-child {
    margin-bottom: 0
}

@media(min-width: 2900px) {
    .event-details__list li {
        margin-bottom: 16px
    }

    .event-details__list li .material-icons {
        font-size: 32px
    }
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
    color: #474747;
    margin: 30px 0
}

.pagination p {
    margin: 0
}

.pagination select {
    border: none;
    outline: none;
    font-weight: bold;
    cursor: pointer
}

.predator .pagination select {
    color: #fff;
    background-color: #1a1a1a
}

.pagination select:focus {
    border: none;
    outline: none
}

.pagination .pagination__dropdown:before {
    content: "Sort by: ";
    font-size: 16px;
    color: #474747
}

.predator .pagination .pagination__dropdown:before {
    color: #fff
}

@media(max-width: 676px) {
    .pagination__dropdown {
        display: none
    }
}

.article {
    box-sizing: border-box
}

@media(min-width: 900px) {
    .article {
        flex-direction: row;
        margin-bottom: 50px
    }
}

.article__header {
    justify-content: center;
    padding: 0 24px
}

@media(min-width: 900px) {
    .article__header {
        padding: 0 16.6666666667%
    }
}

.article__title {
    font-size: 1.875rem;
    width: 100%;
    font-size: 30px;
    margin-bottom: 20px
}

@media(min-width: 900px) {
    .article__title {
        font-size: 38px
    }
}

@media(min-width: 900px) {
    .article__title {
        margin-bottom: 30px
    }
}

.article__meta {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap
}

.article__meta .article__mobile_categories {
    display: none
}

.article__meta .article__desktop_categories {
    display: inline-flex
}

.article__meta:last-child {
    margin-bottom: 10px
}

@media(min-width: 900px) {
    .article__meta {
        display: inline-block
    }
}

.article__attribute {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin: 0 20px 10px 0;
    font-size: .8125rem;
    line-height: 17px
}

@media(min-width: 900px) {
    .article__attribute {
        font-size: .875rem
    }
}

.article__attribute .material-icons {
    font-size: 24px;
    margin-right: 10px
}

@media(min-width: 900px) {
    .article__attribute {
        margin: 0 40px 32px 0;
        line-height: 22px
    }
}

@media(min-width: 2900px) {
    .article__attribute .material-icons {
        font-size: 32px
    }
}

.article__overview {
    display: flex;
    flex-direction: column-reverse
}

@media(min-width: 900px) {
    .article__overview {
        flex-direction: row;
        padding: 0 16.6666666667%
    }
}

.article__actions {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 30px 24px
}

@media(min-width: 900px) {
    .article__actions {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        min-width: 16.6666666667vw;
        width: 16.6666666667vw;
        padding-right: 40px;
        padding-top: 0;
        position: absolute;
        left: 0
    }
}

.article__action {
    display: flex;
    flex-direction: row-reverse;
    align-items: center
}

.article__action:hover {
    text-decoration: none
}

.article__action button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #80c343;
    padding: 0;
    width: 35px;
    height: 35px;
    transition: all .15s ease-in-out;
    cursor: pointer;
    outline: none;
    outline-color: rgba(0, 0, 0, 0)
}

.article__action button .material-icons {
    font-size: 24px;
    color: #80c343;
    transition: all .15s ease-in-out
}

.article__action button:hover {
    background-color: #80c343;
    box-shadow: 0px 3px 3px rgba(34, 34, 34, .2)
}

.article__action button:hover .material-icons {
    color: #fff
}

.conceptd .article__action button {
    border: 1px solid #ca4e21
}

.conceptd .article__action button .material-icons {
    color: #ca4e21
}

.conceptd .article__action button:hover {
    background-color: #ca4e21
}

.conceptd .article__action button:hover .material-icons {
    color: #fff
}

.predator .article__action button {
    border: 1px solid #00aecd
}

.predator .article__action button .material-icons {
    color: #00aecd
}

.predator .article__action button:hover {
    background-color: #00aecd
}

.predator .article__action button:hover .material-icons {
    color: #fff
}

@media(min-width: 2900px) {
    .article__action button {
        width: 45px;
        height: 45px
    }

    .article__action button .material-icons {
        font-size: 32px
    }
}

@media(min-width: 900px) {
    .article__action {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-bottom: 8px
    }
}

.article__action-label {
    display: inline-block;
    font-size: .625rem;
    color: #474747;
    letter-spacing: .12;
    margin-left: 8px
}

@media(min-width: 900px) {
    .article__action-label {
        font-size: .75rem
    }
}

@media(min-width: 900px) {
    .article__action-label {
        margin-left: 0
    }
}

@media(min-width: 900px) {
    .article__action-label {
        margin-left: 0
    }
}

.predator .article__action-label {
    color: #fff
}

@media(min-width: 2900px) {
    .article__action-label {
        margin-bottom: .25rem
    }
}

.article__summary {
    padding: 20px 24px;
    background-color: #fafafa;
    width: 100%
}

@media(min-width: 900px) {
    .article__summary {
        margin-left: 0;
        margin-bottom: 30px;
        padding: 30px 40px
    }
}

.predator .article__summary {
    background-color: #1a1a1a
}

.article__summary-title {
    font-size: .813rem;
    line-height: 18px;
    margin-bottom: 20px;
    font-weight: 400
}

@media(min-width: 900px) {
    .article__summary-title {
        font-size: 16px
    }
}

@media(min-width: 900px) {
    .article__summary-title {
        line-height: 22px
    }
}

.article__summary-text {
    line-height: 24px
}

.article__summary-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #222
}

@media(min-width: 900px) {
    .article__summary-text p {
        font-size: 18px
    }
}

.conceptd .article__summary-text p {
    color: #25282a
}

.predator .article__summary-text p {
    color: #fff
}

.article__summary-text p:last-child {
    margin-bottom: 0
}

.article__gallery {
    max-width: 100%;
    padding: 0 24px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    box-sizing: border-box
}

@media(min-width: 900px) {
    .article__gallery {
        padding-left: 16.6666666667vw;
        padding-right: 16.6666666667vw
    }
}

.article__gallery-asset {
    flex-shrink: 0;
    cursor: pointer;
    width: 100%
}

.article__gallery-asset video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.article__gallery--1up .article__gallery-asset {
    width: 100%
}

@media(min-width: 900px) {
    .article__gallery--2up {
        flex-wrap: wrap
    }

    .article__gallery--2up .article__gallery-asset {
        width: 50%
    }
}

@media(min-width: 900px) {
    .article__gallery--3up .article__gallery-asset {
        width: 33%
    }
}

.article__paragraph {
    padding: 0 24px;
    margin-bottom: 30px
}

@media(min-width: 900px) {
    .article__paragraph {
        padding: 0 16.6666666667%;
        margin-bottom: 50px
    }
}

.article__paragraph-title {
    margin-bottom: .75rem
}

.article__paragraph-body p {
    font-size: .813rem;
    margin: 0;
    margin-bottom: 20px;
    line-height: 1.35
}

@media(min-width: 900px) {
    .article__paragraph-body p {
        font-size: 16px
    }
}

.article__paragraph-body a {
    color: #007bff;
    text-decoration: underline
}

.article__paragraph-body a:active,
.article__paragraph-body a:visited {
    color: #6f42c1
}

.article__paragraph-body a:hover {
    color: #6f42c1;
    text-decoration: none
}

.article__paragraph-body td,
.article__paragraph-body tfoot,
.article__paragraph-body th,
.article__paragraph-body thead,
.article__paragraph-body tr {
    border-width: 1px
}

.article__quote {
    padding: 0 24px;
    text-align: center;
    margin-bottom: 30px
}

@media(min-width: 900px) {
    .article__quote {
        padding: 0 16.6666666667%;
        margin-bottom: 50px
    }
}

.article__quote-cite {
    font-size: .8125rem;
    font-style: normal
}

@media(min-width: 900px) {
    .article__quote-cite {
        font-size: .875rem
    }
}

.article__footer {
    margin: 50px 0 60px;
    padding: 0 24px
}

@media(min-width: 900px) {
    .article__footer {
        margin: 60px 0 70px;
        padding-left: 16.6666666667vw;
        padding-right: 16.6666666667vw
    }
}

.article__footer .footnote {
    padding: 0 !important
}

@media screen and (max-width: 900px) {
    .article__meta .article__mobile_categories {
        display: inline-flex
    }

    .article__meta .article__desktop_categories {
        display: none
    }
}

@media(max-width: 900px) {
    .article__action-label {
        margin-right: 20px
    }
}

.auth-container {
    width: 100%;
    padding: 0 0 60px;
    background-color: #fafafa
}

@media(min-width: 900px) {
    .auth-container {
        padding: 60px 0 70px
    }
}

.predator .auth-container {
    background-color: #000
}

.auth {
    background-color: #fff;
    margin: 0 auto 20px
}

@media(min-width: 900px) {
    .auth {
        box-shadow: 0 1px 4px rgba(0, 0, 0, .33)
    }
}

.predator .auth {
    background-color: #1a1a1a
}

.auth--login {
    padding: 30px 24px 0
}

@media(min-width: 900px) {
    .auth--login {
        padding: 40px 30px 0px;
        max-width: 400px
    }
}

.auth--register {
    padding: 30px 24px
}

@media(min-width: 900px) {
    .auth--register {
        padding: 40px 0 60px;
        max-width: 989px
    }
}

.auth--register .password__strong__warning {
    display: flex
}

.auth--register .password__strong__warning .password__strong__warning__line {
    width: 28%;
    height: 4px;
    background-color: #c00;
    margin: 5px 3px 1px 0px;
    display: inline-block
}

.auth--register .password__strong__warning.error__color .password__strong__warning__line {
    background-color: #c00
}

.auth--register .password__strong__warning.warning__color .password__strong__warning__line {
    background-color: #ffd800
}

.auth--register .password__strong__warning.approval__color .password__strong__warning__line {
    background-color: #80c343
}

.auth__columns {
    display: flex;
    flex-direction: row;
    margin-top: 20px
}

@media(min-width: 900px) {
    .auth__columns {
        margin-top: 50px
    }
}

.auth__col {
    width: 100%
}

@media(min-width: 900px) {
    .auth__col {
        padding: 0 80px;
        width: 50%
    }
}

.auth__col--info {
    display: none;
    border-left: 1px solid #c9c9c9
}

@media(min-width: 900px) {
    .auth__col--info {
        display: block
    }
}

.auth__subtitle {
    font-size: .813rem;
    text-align: center;
    font-weight: 400;
    padding: 0;
    margin: 20px 0px;
    line-height: 22px;
    position: relative
}

@media(min-width: 900px) {
    .auth__subtitle {
        font-size: 16px
    }
}

.conceptd .auth__subtitle {
    font-weight: 400
}

.auth__subtitle span {
    padding: 0 10px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    word-break: keep-all;
    white-space: nowrap;
    background-color: #fff
}

.auth__subtitle:first-child {
    margin-top: 0
}

.auth__subtitle::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #c9c9c9;
    display: inline-block;
    vertical-align: middle
}

.auth__social-icons {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
    margin: 0 -5px
}

.auth__social-icons li {
    width: 50%;
    padding: 3px 5px
}

.auth__social-icons li a:hover {
    text-decoration: none
}

.auth__social-icons li:last-child {
    margin-right: 0px
}

.auth__choice {
    font-size: .813rem;
    display: inline-block;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-items: center
}

@media(min-width: 900px) {
    .auth__choice {
        font-size: 16px
    }
}

.auth__choice:before,
.auth__choice:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #c9c9c9;
    display: block
}

.auth__choice:before {
    margin-right: 20px
}

.auth__choice:after {
    margin-left: 20px
}

.conceptd .auth__choice {
    font-weight: 400
}

.auth__checks {
    margin-top: 10px;
    padding-left: 3px
}

.auth__forgot {
    font-size: .75rem;
    text-decoration: underline;
    padding-top: 12px;
    text-align: right;
    margin-left: auto;
    color: #474747
}

.conceptd .auth__forgot {
    color: #25282a
}

.predator .auth__forgot {
    color: #fff
}

.auth__forgot:hover {
    color: #474747
}

.conceptd .auth__forgot:hover {
    color: #25282a
}

.predator .auth__forgot:hover {
    color: #fff
}

.auth__actions {
    padding-top: 30px
}

.auth__actions .g-recaptcha div {
    margin: auto
}

.auth__register {
    font-size: .8125rem;
    text-align: center;
    margin: 0
}

@media(min-width: 900px) {
    .auth__register {
        font-size: .875rem
    }
}

.auth__privacy,
.auth__register-link {
    text-decoration: underline;
    color: #474747
}

.conceptd .auth__privacy,
.conceptd .auth__register-link {
    color: #25282a
}

.predator .auth__privacy,
.predator .auth__register-link {
    color: #fff
}

.auth__privacy:hover,
.auth__register-link:hover {
    color: #474747
}

.conceptd .auth__privacy:hover,
.conceptd .auth__register-link:hover {
    color: #25282a
}

.predator .auth__privacy:hover,
.predator .auth__register-link:hover {
    color: #fff
}

.auth__note p {
    text-align: center;
    padding: 20px 0;
    margin: 0
}

.auth__note .field-success,
.auth__note .field-validation-error {
    padding: 0;
    margin: 0
}

.auth-info__header h5 {
    line-height: 32px
}

.auth-info__header p {
    font-size: 16px;
    line-height: 26px
}

@media(min-width: 900px) {
    .auth-info__header p {
        font-size: 18px
    }
}

.auth-info__list {
    padding: 0;
    list-style-type: none
}

.auth-info__item {
    display: flex;
    flex-direction: row
}

.auth-info__bullet {
    padding: 2px 12px 0 0;
    color: #224449
}

.conceptd .auth-info__bullet {
    color: #bf9474
}

.predator .auth-info__bullet {
    color: #11dfc3
}

.auth-info__bullet .material-icons {
    font-size: 22px
}

.auth-info__text h6 {
    margin: 0
}

.auth-info__text p {
    line-height: 24px
}

#main-form button,
#main-form a {
    cursor: pointer
}

.field-validation-error {
    color: #c00;
    font-size: .875rem
}

.field-validation-error a {
    text-decoration: underline;
    color: #c00
}

.field-success {
    font-size: 14px;
    color: #80c343
}

.lb-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 99
}

.validemail-lb,
.pwd-expire-lb {
    position: relative;
    max-width: 720px;
    width: 100%;
    background-color: #fff;
    padding: 48px 24px
}

.validemail-lb .lb-title,
.pwd-expire-lb .lb-title {
    margin-bottom: 48px;
    color: #222;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem
}

.validemail-lb .lb-title p,
.pwd-expire-lb .lb-title p {
    font-weight: 700;
    font-size: 1.5rem
}

.validemail-lb .lb-desc,
.pwd-expire-lb .lb-desc {
    text-align: center;
    font-weight: 400
}

.validemail-lb .lb-desc p,
.pwd-expire-lb .lb-desc p {
    margin: 0;
    font-size: 18px
}

.validemail-lb .lb-verification-area,
.pwd-expire-lb .lb-verification-area {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 30px auto 0 auto
}

.validemail-lb .lb-verification-area .verification-code,
.pwd-expire-lb .lb-verification-area .verification-code {
    padding: 0 7px
}

.validemail-lb .lb-verification-area input,
.pwd-expire-lb .lb-verification-area input {
    font-size: 1.5em;
    width: 100%;
    height: 50px;
    text-align: center;
    padding: 3px;
    border-radius: 4px;
    color: #fff;
    background: #2c323a;
    border: 0;
    border: 4px solid rgba(0, 0, 0, 0);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px
}

.validemail-lb .lb-verification-area.validemail-lb .lb-verification-area input:focus,
.pwd-expire-lb .lb-verification-area.validemail-lb .lb-verification-area input:focus {
    outline: none;
    border: 4px solid #ebb447;
    background: #0b0d0f
}

.validemail-lb .verification-msg,
.pwd-expire-lb .verification-msg {
    display: block;
    margin-top: 20px;
    text-align: center
}

.validemail-lb .lb-verification-expired,
.pwd-expire-lb .lb-verification-expired {
    margin: 20px 0px;
    text-align: center
}

.validemail-lb .lb-verification-expired p,
.pwd-expire-lb .lb-verification-expired p {
    font-size: 18px
}

.validemail-lb .lb-verification-btns,
.pwd-expire-lb .lb-verification-btns {
    display: flex;
    justify-content: center;
    margin: 10px 0px;
    text-align: center
}

.validemail-lb .lb-verification-btns button,
.pwd-expire-lb .lb-verification-btns button {
    margin: 0 8px
}

.validemail-lb .lb-resend,
.pwd-expire-lb .lb-resend {
    margin: 55px 0;
    text-align: center
}

.validemail-lb .lb-resend p,
.pwd-expire-lb .lb-resend p {
    margin: 0;
    font-size: 18px
}

.validemail-lb .lb-resend p a,
.pwd-expire-lb .lb-resend p a {
    text-decoration: underline
}

.validemail-lb>.validemail-lb>.lb-resend>.validemail-lb>.lb-resend>p>.resend-lb-wrapper .lb-title p {
    color: #222;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem
}

.verifyemail-lb-wrapper .lb-title {
    margin: 70px 0px
}

.verifyemail-lb-wrapper .lb-title p {
    color: #222;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem
}

.loader-wrapper {
    z-index: 1030;
    position: fixed;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, .2) 0% 0% no-repeat padding-box;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center
}

.email-changing-info-wrapper {
    display: none;
    position: relative
}

.email-changing-info-wrapper:hover {
    display: block
}

.email-changing-info {
    position: absolute;
    width: 250px;
    background-color: #fff;
    z-index: 85;
    left: 78px;
    bottom: -29px;
    border: 1px solid #000;
    padding: 10px
}

.email-changing-info p {
    font-size: 14px;
    margin: 0px
}

.email-label:hover .email-changing-info-wrapper {
    display: block !important
}

.email-changing-info::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -14px;
    border-left: 20px solid rgba(0, 0, 0, 0);
    border-bottom: 20px solid rgba(0, 0, 0, 0);
    border-right: 20px solid #000;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg)
}

.email-changing-info::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -12px;
    border-left: 20px solid rgba(0, 0, 0, 0);
    border-bottom: 20px solid rgba(0, 0, 0, 0);
    border-right: 20px solid #fff;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg)
}

.pwd-expire-lb .lb-pwd-expire-btns {
    text-align: center
}

.pwd-expire-inputs {
    margin: 48px auto;
    max-width: 600px
}

.pwd-expire-inputs .input {
    margin: 16px 0
}

.footer-bottom__sso {
    padding: 2rem 1.5rem;
    background-color: #1a1a1a;
    color: #fafafa
}

.footer-bottom__sso.footer--fixed {
    position: fixed;
    bottom: 0;
    width: 100%
}

.footer-bottom__sso .nav-legal {
    width: 100%;
    text-align: center
}

.footer-bottom__sso .nav-legal .menu--legal {
    display: block;
    margin: 1rem 0;
    padding: 0;
    width: 100%
}

.footer-bottom__sso .nav-legal .menu--legal li {
    display: inline-flex;
    font-size: .8125rem;
    border-right: 1px solid #89898b;
    padding: 0 .5rem
}

@media(min-width: 900px) {
    .footer-bottom__sso .nav-legal .menu--legal li {
        font-size: .875rem
    }
}

.footer-bottom__sso .nav-legal .menu--legal li:last-child {
    border: 0 none;
    padding-right: 0
}

.footer-bottom__sso .nav-legal .menu--legal li:first-child {
    padding-left: 0
}

.footer-bottom__sso .nav-legal .menu--legal a {
    padding: 1px;
    color: #fafafa;
    font-size: .75rem
}

@media(min-width: 900px) {
    .footer-bottom__sso .nav-legal .menu--legal a {
        font-size: .875rem
    }
}

.footer-bottom__sso .nav-legal .menu--legal a:hover {
    color: #fff
}

.footer-bottom__sso .locale {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.footer-bottom__sso .locale .material-icons {
    color: #767676;
    margin-right: .5rem;
    font-size: 18px
}

.footer-bottom__sso .locale:hover .material-icons {
    text-decoration: none
}

.footer-bottom__sso .locale .locale__text {
    font-size: .75rem;
    color: #fafafa
}

@media(min-width: 900px) {
    .footer-bottom__sso .locale .locale__text {
        font-size: .875rem
    }
}

.footer-bottom__sso .locale .locale__select {
    height: 45px;
    border-radius: 4px;
    padding: 0 10px;
    cursor: pointer;
    color: #89898b;
    outline-color: rgba(0, 0, 0, 0)
}

.footer-bottom__sso .copyright {
    text-align: center;
    width: 100%
}

.footer-bottom__sso .copyright .copyright__text {
    font-size: 12px;
    color: #fff;
    margin: 0
}

@media(min-width: 900px) {
    .footer-bottom__sso .copyright .copyright__text {
        font-size: 14px
    }
}

.predator .footer-bottom__sso {
    background-color: #000
}

.conceptd .footer-bottom__sso {
    background-color: #25282a
}

.btn--login {
    color: #80c343
}

.btn--login:hover {
    color: #80c343
}

.conceptd .btn--login {
    color: #ca4e21
}

.conceptd .btn--login:hover {
    color: #ca4e21
}

.predator .btn--login {
    color: #00aecd
}

.predator .btn--login:hover {
    color: #00aecd
}

.thankyou-content {
    margin-top: 48px;
    font-size: .813rem;
    color: #89898b
}

@media(min-width: 900px) {
    .thankyou-content {
        font-size: 16px
    }
}

.lightbox {
    display: none;
    box-sizing: border-box;
    position: fixed;
    -ms-grid-columns: 1fr;
    -ms-grid-rows: 80px 1fr 80px;
    grid-template-columns: 1fr;
    grid-template-rows: 80px 1fr 80px;
    gap: 0px 0px;
    grid-template-areas: "." "." ".";
    justify-items: center;
    align-items: center;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    background-color: rgba(0, 0, 0, .9);
    z-index: 10000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.lightbox.is-active {
    display: -ms-grid;
    display: grid
}

.lightbox__actions {
    width: 100%;
    padding: 14px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end
}

.lightbox__actions .lightbox__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    outline: none;
    outline-color: rgba(0, 0, 0, 0)
}

.lightbox__actions .lightbox__action:hover {
    text-decoration: none
}

.lightbox__actions .lightbox__action .lightbox__action-label {
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    color: #474747;
    letter-spacing: .12;
    color: #fff
}

.lightbox__actions .lightbox__action button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: none;
    padding: 0;
    width: 35px;
    height: 35px;
    outline: none;
    cursor: pointer;
    background-color: #fff;
    color: #80c343
}

.lightbox__actions .lightbox__action button:hover {
    color: #fff;
    background-color: #80c343
}

.lightbox__actions .lightbox__action button .material-icons {
    font-size: 24px
}

@media(min-width: 900px) {
    .lightbox__actions .lightbox__action button {
        width: 50px;
        height: 50px
    }
}

.lightbox__container {
    position: relative;
    align-self: stretch;
    justify-self: stretch;
    padding: 0 10%;
    box-sizing: border-box
}

.lightbox__previous,
.lightbox__next {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    outline: none;
    outline-color: rgba(0, 0, 0, 0);
    background-color: #fff;
    color: #80c343
}

.lightbox__previous:hover,
.lightbox__next:hover {
    color: #fff;
    background-color: #80c343
}

.lightbox__previous .material-icons,
.lightbox__next .material-icons {
    font-size: 24px
}

@media(min-width: 85.375em) {

    .lightbox__previous,
    .lightbox__next {
        position: absolute;
        width: 64px;
        height: 64px
    }

    .lightbox__previous .material-icons,
    .lightbox__next .material-icons {
        font-size: 42px
    }
}

.lightbox__previous {
    left: 5px
}

@media(min-width: 85.375em) {
    .lightbox__previous {
        left: 28px
    }
}

.lightbox__next {
    right: 5px
}

@media(min-width: 85.375em) {
    .lightbox__next {
        right: 28px
    }
}

.lightbox__subject {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.predator .lightbox__subject {
    background: #242424
}

.lightbox__subject picture {
    margin: auto
}

.lightbox__subject img {
    height: 100%;
    max-height: calc(100vh - 160px);
    max-width: 100%;
    display: block;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

.lightbox__subject img.no-max-height {
    max-height: none
}

@media(min-width: 2900px) {
    .lightbox__subject img {
        max-width: 2900px
    }
}

.lightbox__subject iframe,
.lightbox__subject video {
    height: auto;
    width: 100%;
    max-height: calc(100vh - 160px);
    max-width: 100%;
    display: block;
    margin: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    background-color: #000
}

@media(min-width: 1920px) {

    .lightbox__subject iframe,
    .lightbox__subject video {
        max-width: 1920px
    }
}

.lightbox__subject iframe {
    height: 100%
}

.lightbox__content {
    background: #fafafa;
    width: 90%;
    border-top: 1px solid #707070;
    text-align: left;
    padding: 1rem
}

.predator .lightbox__content {
    background: #242424
}

.lightbox__footer {
    height: 87px;
    flex-shrink: 0
}

.lightbox[data-ubound="0"] .lightbox__previous,
.lightbox[data-ubound="0"] .lightbox__next {
    display: none
}

.conceptd .lightbox {
    background-color: rgba(37, 40, 42, .76)
}

.conceptd .lightbox__actions .lightbox__action button {
    color: #ca4e21;
    background-color: #fff
}

.conceptd .lightbox__actions .lightbox__action button:hover {
    background-color: #ca4e21;
    color: #fff
}

.conceptd .lightbox__previous,
.conceptd .lightbox__next {
    color: #ca4e21;
    background-color: #fff
}

.conceptd .lightbox__previous:hover,
.conceptd .lightbox__next:hover {
    background-color: #ca4e21;
    color: #fff
}

.predator .lightbox__actions .lightbox__action button {
    background-color: #222;
    color: #00aecd
}

.predator .lightbox__actions .lightbox__action button:hover {
    color: #474747;
    background-color: #00aecd
}

.predator .lightbox__previous,
.predator .lightbox__next {
    background-color: #474747;
    color: #00aecd
}

.predator .lightbox__previous:hover,
.predator .lightbox__next:hover {
    color: #474747;
    background-color: #00aecd
}

.tab-bar {
    max-width: 100%;
    margin: 16px 0;
    overflow: auto;
    overflow-y: hidden;
    background-image: linear-gradient(#c9c9c9, #c9c9c9), linear-gradient(#ffffff, #ffffff), linear-gradient(#c9c9c9, #c9c9c9), linear-gradient(#ffffff, #ffffff);
    background-size: 100% 2px, 100% calc(100% - 3px), 100% calc(100% - 1px), 100% 100%;
    background-repeat: no-repeat
}

.conceptd .tab-bar {
    background-image: linear-gradient(#e4e4e4, #e4e4e4), linear-gradient(#fafafa, #fafafa), linear-gradient(#e4e4e4, #e4e4e4), linear-gradient(#fafafa, #fafafa)
}

.predator .tab-bar {
    background-image: linear-gradient(#474747, #474747), linear-gradient(#000000, #000000), linear-gradient(#474747, #474747), linear-gradient(#000000, #000000)
}

@media(min-width: 900px) {
    .tab-bar {
        margin: 0;
        background-size: 0 0, 100% calc(100% - 3px), 100% calc(100% - 1px), 100% 100%
    }
}

.tab-bar.tab-bar--embed {
    margin: 0
}

@media(min-width: 900px) {
    .tab-bar.tab-bar--embed {
        margin: 0 0 1.5rem
    }
}

.tabs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start
}

.tabs .tab__item:first-child {
    margin-left: 0
}

@media(min-width: 640px) {
    .tabs {
        justify-content: flex-start
    }
}

@media(min-width: 640px) {
    .tabs.tabs--center {
        justify-content: center
    }
}

@media(min-width: 640px) {
    .tabs.tabs--right {
        justify-content: flex-end
    }
}

.conceptd .tabs {
    border-color: #e4e4e4
}

.predator .tabs {
    border-color: #474747
}

.tabs__item {
    position: relative;
    margin: 0 15px;
    padding: 24px 0;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    color: #474747;
    white-space: nowrap
}

@media(min-width: 640px) {
    .tabs__item:first-child {
        margin-left: 16px
    }
}

.tabs__item:last-child {
    margin-right: 0
}

.tabs__item:last-child::after {
    content: " ";
    margin-right: 1.5rem
}

.tabs__item:hover {
    text-decoration: none;
    color: #222
}

.conceptd .tabs__item:hover {
    color: #25282a;
    border-color: #ca4e21
}

.predator .tabs__item:hover {
    color: #fff;
    border-color: #00aecd
}

.tabs__item:hover::after {
    content: "";
    border-bottom: 4px solid #80c343;
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100%;
    z-index: 1
}

.conceptd .tabs__item:hover::after {
    border-color: #ca4e21
}

.predator .tabs__item:hover::after {
    border-color: #00aecd
}

.tabs__item.is-active {
    font-weight: 700;
    color: #474747
}

.conceptd .tabs__item.is-active {
    color: #25282a;
    font-weight: 600
}

.predator .tabs__item.is-active {
    color: #fff
}

.tabs__item.is-active::after {
    content: "";
    border-bottom: 4px solid #80c343;
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100%;
    z-index: 1
}

.conceptd .tabs__item.is-active::after {
    border-color: #ca4e21
}

.predator .tabs__item.is-active::after {
    border-color: #00aecd
}

.predator .tabs__item {
    color: #fff
}

@media(min-width: 900px) {
    .tabs__item {
        margin: 0 25px;
        padding: 0 0 10px
    }

    .tabs__item:last-child::after {
        content: "";
        width: 0;
        margin: 0
    }
}

.tab-pane {
    display: none
}

.tab-pane.is-active {
    display: block
}

.tab-bar--tall {
    padding: 2.5rem 0
}

.auth-tab-bar {
    max-width: 100%;
    margin: 20px 0 0;
    overflow: auto;
    overflow-y: hidden;
    background-size: 100% calc(100% - 3px), 100% calc(100% - 1px), 100% 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(#e4e4e4, #e4e4e4), linear-gradient(#ffffff, #ffffff)
}

.conceptd .auth-tab-bar {
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(#e4e4e4, #e4e4e4), linear-gradient(#ffffff, #ffffff)
}

.predator .auth-tab-bar {
    background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(#707070, #707070), linear-gradient(#1a1a1a, #1a1a1a)
}

@media(min-width: 900px) {
    .auth-tab-bar {
        display: none
    }
}

.auth-tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-around
}

.conceptd .auth-tabs {
    border-color: #e4e4e4
}

.predator .auth-tabs {
    border-color: #707070
}

.auth-tabs__item {
    position: relative;
    padding: 0 0 .5rem;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 24px;
    color: #474747;
    white-space: nowrap
}

.auth-tabs__item.is-active {
    font-weight: 700;
    color: #474747
}

.conceptd .auth-tabs__item.is-active {
    color: #25282a;
    font-weight: 600
}

.predator .auth-tabs__item.is-active {
    color: #fff
}

.auth-tabs__item.is-active::after {
    content: "";
    border-bottom: 4px solid #80c343;
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100%;
    z-index: 1
}

.conceptd .auth-tabs__item.is-active::after {
    border-color: #ca4e21
}

.predator .auth-tabs__item.is-active::after {
    border-color: #00aecd
}

.auth-tabs__item:hover {
    text-decoration: none;
    color: #474747
}

.conceptd .auth-tabs__item:hover {
    color: #25282a;
    border-color: #ca4e21
}

.predator .auth-tabs__item:hover {
    color: #fff;
    border-color: #00aecd
}

.auth-tabs__item:hover::after {
    content: "";
    border-bottom: 4px solid #80c343;
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100%;
    z-index: 1
}

.conceptd .auth-tabs__item:hover::after {
    border-color: #ca4e21
}

.predator .auth-tabs__item:hover::after {
    border-color: #00aecd
}

.predator .auth-tabs__item {
    color: #fff
}

@media(min-width: 900px) {
    .auth-tabs__item {
        margin: 0 25px;
        padding: 0 0 10px
    }

    .auth-tabs__item:last-child::after {
        content: "";
        width: 0;
        margin: 0
    }
}

.newsroom-list {
    margin-top: 1rem;
    display: flex
}

.newsroom-list__filter {
    flex-shrink: 0
}

@media(min-width: 56.25em) {
    .newsroom-list__filter {
        display: block;
        margin-right: 1rem;
        width: 25%
    }
}

.newsroom-list__cards {
    width: 100%
}

@media(min-width: 56.25em) {
    .newsroom-list__results {
        width: 75%
    }
}

.rail-filter__heading,
.rail-filter__control {
    background-color: #fafafa
}

.predator .rail-filter__heading,
.predator .rail-filter__control {
    background-color: #1a1a1a
}

.rail-filter__heading {
    padding: 1rem;
    font-weight: 700
}

.rail-filter__control {
    border-top: 1px solid #c9c9c9;
    background-color: #fafafa;
    display: flex
}

.rail-filter__control label {
    cursor: pointer;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.rail-filter__control label .rail-filter__toggle {
    transition: all 300ms;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: #888;
    border-radius: 10px;
    width: 37px;
    min-width: 37px;
    height: 18px;
    padding: 2px 3px
}

.rail-filter__control label .rail-filter__toggle>span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #fafafa
}

.rail-filter__control input[type=checkbox] {
    visibility: hidden;
    width: 0;
    height: 0;
    display: inline-block
}

.rail-filter__control input[type=checkbox]:checked~label .rail-filter__toggle {
    background-color: #80c343;
    justify-content: flex-end
}

.conceptd .rail-filter__control {
    border-color: #c9c9c9
}

.conceptd .rail-filter__control input[type=checkbox]:checked~label .rail-filter__toggle {
    background-color: #ca4e21
}

.predator .rail-filter__control {
    border-color: #474747
}

.predator .rail-filter__control label .rail-filter__toggle>span {
    background-color: #000
}

.predator .rail-filter__control input[type=checkbox]:checked~label .rail-filter__toggle {
    background-color: #00aecd
}

.sort-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 30px 0
}

.sort-control {
    position: relative;
    width: 100%;
    height: 44px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #222;
    border-radius: 0
}

.predator .sort-control {
    border-color: #fff
}

.sort-control label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fafafa;
    z-index: 3
}

.predator .sort-control label {
    background-color: #1a1a1a
}

@media(min-width: 900px) {
    .sort-control label {
        background-color: rgba(0, 0, 0, 0);
        position: relative;
        width: auto;
        height: auto
    }

    .sort-control label::after {
        content: ":"
    }
}

.sort-control select {
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: center
}

@media(min-width: 900px) {
    .sort-control select {
        position: relative;
        width: auto;
        height: auto
    }
}

.predator .sort-control select {
    color: #fff;
    background-color: #333;
    border-radius: 3px
}

.predator .sort-control select {
    color: #fff
}

@media(min-width: 900px) {
    .sort-control {
        border: 0
    }
}

.pagination-component {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem
}

@media(min-width: 900px) {
    .pagination-component {
        padding: 0;
        flex-direction: row;
        justify-content: space-between
    }
}

.pagination-component__stats,
.pagination-component__links {
    margin: 0;
    display: flex;
    align-items: center
}

.pagination-component__stats {
    font-size: .813rem;
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 36px
}

@media(min-width: 900px) {
    .pagination-component__stats {
        font-size: 16px
    }
}

@media(min-width: 900px) {
    .pagination-component__stats {
        text-align: left;
        margin-bottom: 0
    }
}

.pagination-component__links {
    justify-content: center;
    text-align: center
}

@media(min-width: 900px) {
    .pagination-component__links {
        text-align: right
    }
}

.pagination-component__link,
.pagination-component__text {
    font-size: .813rem;
    font-size: .7rem;
    display: inline-block;
    padding: 0 9px
}

@media(min-width: 900px) {

    .pagination-component__link,
    .pagination-component__text {
        font-size: 16px
    }
}

.pagination-component__link:hover,
.pagination-component__text:hover {
    text-decoration: none
}

.pagination-component__link.is-active,
.pagination-component__text.is-active {
    font-weight: 700
}

.pagination-component__link--icon {
    padding: 0
}

.pagination-component__link--icon .material-icons {
    line-height: 36px
}

.pagination-component__link--md {
    display: none
}

@media(min-width: 900px) {
    .pagination-component__link--md {
        display: inline-block
    }
}

.case-study {
    list-style: none;
    direction: ltr;
    text-align: left;
    display: flex;
    flex-flow: row wrap;
    -ms-flex-grow: 1;
    flex-grow: 1;
    margin-right: 0;
    margin-left: -8px;
    padding-right: 0;
    padding-left: 0;
    margin: 0
}

@media(min-width: 37.5em) {
    .case-study {
        margin-left: -16px
    }
}

@media(min-width: 1920px) {
    .case-study {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto
    }
}

.case-study__aside {
    width: 100%;
    display: inline-block;
    padding-left: 8px;
    text-align: left;
    vertical-align: top;
    box-sizing: border-box
}

@media(min-width: 37.5em) {
    .case-study__aside {
        padding-left: 16px
    }
}

@media(min-width: 56.25em) {
    .case-study__aside {
        width: 25%
    }
}

.case-study__main {
    width: 100%;
    display: inline-block;
    padding-left: 8px;
    text-align: left;
    vertical-align: top;
    box-sizing: border-box
}

@media(min-width: 37.5em) {
    .case-study__main {
        padding-left: 16px
    }
}

@media(min-width: 56.25em) {
    .case-study__main {
        width: 75%
    }
}

.case-study__img {
    display: flex;
    justify-content: center;
    margin: 0 1rem 30px
}

@media(min-width: 1366px) {
    .case-study__img {
        margin-bottom: 40px
    }
}

.case-study__img img {
    max-width: 164px;
    width: 100%
}

@media(min-width: 1920px) {
    .case-study__img img {
        max-width: 350px
    }
}

.case-study__heading {
    line-height: 1
}

.case-study__by {
    font-size: 18px;
    line-height: 1;
    margin-bottom: .625rem
}

@media(min-width: 900px) {
    .case-study__by {
        font-size: 1.5rem
    }
}

.case-study__tag {
    font-size: .8125rem
}

@media(min-width: 900px) {
    .case-study__tag {
        font-size: .875rem
    }
}

.social-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0
}

.social-list--center {
    justify-content: center
}

.social-list--right {
    justify-self: flex-end
}

.social-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    overflow: hidden;
    margin-right: 28px
}

@media(min-width: 900px) {
    .social-list__item {
        margin: 0 3px 15px 0
    }
}

.social-list__item:last-child {
    margin-right: 0
}

.social-list__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none
}

.social-list__link:hover {
    color: #80c343;
    text-decoration: none
}

.gallery {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    overflow: hidden
}

.gallery__slide {
    width: 240px;
    min-width: 288px;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

@media(min-width: 640px) {
    .gallery__slide {
        min-width: 240px
    }
}

@media(min-width: 900px) {
    .gallery__slide {
        min-width: 364px
    }
}

@media(min-width: 1366px) {
    .gallery__slide {
        min-width: 562px
    }
}

@media(min-width: 1920px) {
    .gallery__slide {
        min-width: 773px
    }
}

.gallery__container {
    padding-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden
}

.gallery__prev,
.gallery__next {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #fff;
    color: #80c343
}

.gallery__prev .material-icons,
.gallery__next .material-icons {
    font-size: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.conceptd .gallery__prev,
.conceptd .gallery__next {
    color: #ca4e21
}

.predator .gallery__prev,
.predator .gallery__next {
    color: #00aecd;
    background-color: #474747
}

.gallery__prev:hover,
.gallery__next:hover {
    opacity: 1;
    background-color: #80c343;
    color: #fff
}

.conceptd .gallery__prev:hover,
.conceptd .gallery__next:hover {
    background-color: #ca4e21
}

.predator .gallery__prev:hover,
.predator .gallery__next:hover {
    background-color: #00aecd;
    color: #474747
}

@media(min-width: 900px) {
    .gallery__prev {
        left: 16px
    }
}

@media(min-width: 1366px) {
    .gallery__prev {
        left: 24px
    }
}

@media(min-width: 900px) {
    .gallery__next {
        right: 16px
    }
}

@media(min-width: 1366px) {
    .gallery__next {
        right: 24px
    }
}

[data-lb] {
    cursor: pointer
}

.ksp-specs__img-container {
    width: 100%;
    max-width: 100%
}

.ksp-specs__img {
    width: 100%;
    max-width: 100%
}

#toast {
    position: fixed;
    top: 40px;
    right: 40px;
    display: inline-block;
    z-index: 1070
}

.card-toast {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 379px
}

.card-toast a {
    text-decoration: none
}

.card-toast a:hover {
    text-decoration: none
}

.predator .card-toast {
    background-color: #1a1a1a
}

.card-toast__head {
    display: flex;
    align-content: center;
    justify-content: space-between;
    padding-bottom: 24px
}

.card-toast__head p {
    margin: 0;
    padding: 0
}

.card-toast__body {
    display: flex;
    max-width: 100%
}

.card-toast__img {
    width: 107px;
    min-width: 107px;
    max-width: 107px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card-toast__text {
    padding: 0 20px
}

.card-toast__text h3,
.card-toast__text h4,
.card-toast__text p {
    margin: 0
}

.card-toast__model {
    font-size: .625rem
}

@media(min-width: 900px) {
    .card-toast__model {
        font-size: .75rem
    }
}

.card-toast__price {
    font-size: 18px;
    color: #243f43
}

@media(min-width: 900px) {
    .card-toast__price {
        font-size: 1.5rem
    }
}

.card-toast__footer {
    padding-top: 30px
}

.card-toast__footer p {
    margin-bottom: 0
}

.card-toast__check::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.acer .card-toast__check {
    color: #80c343
}

.predator .card-toast__check {
    color: #00aecd
}

.conceptd .card-toast__check {
    color: #ca4e21
}

.card-toast__add-to-cart {
    color: #474747;
    font-size: 16px
}

.predator .card-toast__add-to-cart {
    color: #fff
}

.card-toast--panel {
    background-color: #fff;
    box-shadow: 0 0 .9rem rgba(0, 0, 0, .2);
    margin: .5rem;
    padding: 1rem
}

.card-toast--panel:hover {
    box-shadow: 0 0 1.2rem rgba(0, 0, 0, .3);
    text-decoration: none
}

.intro-section {
    padding: 30px 0;
    border-bottom: 1px solid #c9c9c9
}

.intro-section:last-of-type {
    border: none
}

@media(min-width: 900px) {
    .intro-section {
        padding: 40px 0
    }
}

.intro-section__title {
    margin-bottom: 10px
}

.intro-section__title a,
.intro-section__title a:hover {
    text-decoration: none
}

.intro-section__text {
    font-size: 16px
}

@media(min-width: 900px) {
    .intro-section__text {
        font-size: 18px
    }
}

.menu-filter {
    margin: 0;
    padding: 0
}

[data-collapsed]>.menu-filter {
    display: none
}

.menu-filter__item {
    list-style: none;
    padding: .5rem 0
}

.menu-filter__item--disabled {
    pointer-events: none
}

.menu-filter__item--disabled label {
    color: #c9c9c9
}

.menu-filter__item--disabled label .checkbox {
    border-color: #c9c9c9
}

.menu-filter--accordion {
    padding: 0 1.5rem
}

.menu-filter__link {
    color: #474747
}

.conceptd .menu-filter__link {
    color: #25282a
}

.predator .menu-filter__link {
    color: #fff
}

.menu-filter__link:hover {
    text-decoration: none;
    color: #474747
}

.conceptd .menu-filter__link:hover {
    color: #25282a
}

.predator .menu-filter__link:hover {
    color: #fff
}

.acer .menu-filter__link {
    color: #474747
}

.menu-filter__link:hover {
    text-decoration: none
}

.acer .menu-filter__link:hover {
    color: #474747
}

.filter__label-warranty input[type=checkbox]:checked {
    border: 2px solid #80c343;
    color: #80c343
}

.conceptd .filter__label-warranty input[type=checkbox]:checked {
    border: 2px solid #ca4e21;
    color: #ca4e21
}

.predator .filter__label-warranty input[type=checkbox]:checked {
    border: 2px solid #00aecd;
    color: #00aecd
}

.filter__label-warranty input[type=checkbox]:checked+span {
    font-weight: bold
}

.nav-rail {
    background-color: #f9f9f9;
    margin-bottom: 1.5rem
}

.nav-rail--slideout {
    margin-bottom: 0;
    height: 100vh
}

.nav-rail__header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #c9c9c9;
    display: flex;
    justify-content: space-between
}

.predator .nav-rail__header {
    background-color: #1a1a1a;
    border-color: #474747
}

.nav-rail__heading {
    margin: 0;
    font-size: 1.25rem
}

.nav-rail__heading__warranty {
    margin: 0;
    font-size: 18px
}

.nav-rail__body {
    padding: 0
}

.nav-rail__body #nav-filters-clear {
    display: none
}

.nav-rail__body .cfm-footer {
    display: none
}

@media screen and (max-width: 767px) {
    .nav-rail__body #nav-filters-clear {
        display: none
    }

    .nav-rail__body #toggleFilter {
        position: absolute;
        top: 3.5rem;
        bottom: 0;
        left: 0;
        right: 0;
        overflow: auto
    }

    .nav-rail__body .cfm-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        display: flex
    }

    .acer .nav-rail__body .cfm-footer {
        background: #fff
    }

    .conceptd .nav-rail__body .cfm-footer {
        background: #fff
    }

    .predator .nav-rail__body .cfm-footer {
        background: #757575
    }
}

.social-icon {
    width: 100%;
    height: 43px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a
}

.social-icon.facebook {
    background-color: #4267b2
}

.social-icon.google-plus {
    background-color: #fff;
    border: 1px solid #c9c9c9
}

.social-icon.google-plus span {
    color: #000
}

.social-icon.twitter {
    background-color: #00aced
}

.social-icon.wechat {
    background-color: #2dc100
}

.social-icon span {
    font-weight: bold;
    font-size: 14px;
    color: #fff
}

@media(max-width: 1099.98px) {
    .slideout-is-open {
        overflow: hidden;
        position: fixed
    }
}

.slideout {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    visibility: hidden;
    width: 100%;
    height: 100%;
    min-height: -webkit-fill-available;
    padding-right: 3rem;
    background-color: rgba(0, 0, 0, .9);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.slideout.is-open {
    display: block;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

@media(min-width: 900px) {
    .slideout.is-open {
        visibility: hidden
    }
}

.slideout--header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    width: 100%;
    height: 100%;
    min-height: -webkit-fill-available;
    padding-right: 3rem;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.slideout--header.is-open {
    display: block;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.slideout--background {
    width: 100%;
    background-color: rgba(0, 0, 0, .9);
    position: absolute;
    top: 60px;
    height: 100%;
    z-index: -1
}

@media(min-width: 56.25em) {
    .slideout--inline {
        position: static;
        visibility: visible;
        -webkit-transform: translate(0);
        transform: translate(0);
        padding: 0;
        background-color: #fff
    }
}

.slideout--nav {
    top: 60px
}

.slideout__inner {
    background-color: #f9f9f9;
    overflow: auto;
    height: 100%;
    transition: -webkit-transform .25s linear;
    transition: transform .25s linear;
    transition: transform .25s linear, -webkit-transform .25s linear;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.is-open .slideout__inner {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible
}

@media(min-width: 56.25em) {
    .slideout__inner {
        background-color: #fff
    }
}

.predator .slideout__inner {
    background-color: #000;
    color: #fff
}

@media(min-width: 56.25em) {
    .slideout__inner--inline {
        display: block;
        visibility: visible;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.predator .slideout__inner--newsroom {
    background-color: #1a1a1a
}

.accordion {
    margin: 0;
    padding: 0
}

.accordion__item {
    list-style: none;
    border-bottom: 1px solid #c9c9c9
}

.accordion__item:last-child {
    border: 0
}

.accordion__item.li-is-open {
    border-left: 4px solid #80c343
}

.accordion--bordered-item .accordion__item.is-open,
.accordion--bordered-item .accordion__item[data-collapse]:not([data-collapsed]) {
    border-left: 4px solid #80c343;
    padding-bottom: 1rem
}

.conceptd .accordion--bordered-item .accordion__item.is-open,
.conceptd .accordion--bordered-item .accordion__item[data-collapse]:not([data-collapsed]) {
    border-left-color: #ca4e21
}

.predator .accordion--bordered-item .accordion__item.is-open,
.predator .accordion--bordered-item .accordion__item[data-collapse]:not([data-collapsed]) {
    border-left-color: #00aecd
}

.predator .accordion__item {
    background-color: #1a1a1a
}

.predator .accordion__item.li-is-open {
    border-left: 4px solid #00aecd
}

.conceptd .accordion__item.li-is-open {
    border-left: 4px solid #ca4e21
}

.accordion__label {
    font-size: 16px
}

@media(min-width: 900px) {
    .accordion__label {
        font-size: 18px
    }
}

.accordion__link {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: #474747
}

@media(min-width: 900px) {
    .accordion__link {
        font-size: 18px
    }
}

.conceptd .accordion__link {
    color: #25282a
}

.predator .accordion__link {
    color: #fff
}

.accordion__link:hover {
    text-decoration: none;
    color: #474747
}

.conceptd .accordion__link:hover {
    color: #25282a
}

.predator .accordion__link:hover {
    color: #fff
}

@media(min-width: 2900px) {
    .accordion__link .material-icons {
        font-size: 32px;
        padding-top: 4px
    }
}

.is-open>.accordion__link,
[data-collapse]:not([data-collapsed])>.accordion__link,
[data-collapse]:not([data-collapsed])>div>.accordion__link {
    font-weight: 600
}

.accordion__link .li-is-open .material-icons,
.is-open>.accordion__link>.material-icons,
[data-collapse]:not([data-collapsed])>.accordion__link>.material-icons {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion__control {
    border-top: 1px solid #c9c9c9;
    background-color: #fafafa;
    display: flex
}

.accordion__control label {
    cursor: pointer;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.accordion__control label .accordion__toggle {
    transition: all 300ms;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: #888;
    border-radius: 10px;
    width: 37px;
    min-width: 37px;
    height: 18px;
    padding: 2px 3px
}

.accordion__control label .accordion__toggle>span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #fafafa
}

.accordion__control input[type=checkbox] {
    visibility: hidden;
    width: 0;
    height: 0;
    display: inline-block
}

.accordion__control input[type=checkbox]:checked~label .accordion__toggle {
    background-color: #80c343;
    justify-content: flex-end
}

.conceptd .accordion__control {
    border-color: #c9c9c9
}

.conceptd .accordion__control input[type=checkbox]:checked~label .accordion__toggle {
    background-color: #ca4e21
}

.predator .accordion__control {
    background-color: #1a1a1a;
    border-color: #474747
}

.predator .accordion__control label .accordion__toggle>span {
    background-color: #000
}

.predator .accordion__control input[type=checkbox]:checked~label .accordion__toggle {
    background-color: #00aecd
}

.accordion__control--disabled {
    pointer-events: none
}

.accordion__control--disabled label {
    color: #c9c9c9
}

.accordion__control--disabled label .accordion__toggle {
    background-color: #c9c9c9
}

.accordion-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px
}

@media(min-width: 640px) {
    .accordion-container {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.accordion_flex {
    display: flex;
    flex-wrap: wrap
}

.accordion_width {
    width: 100%
}

.accordion-margin {
    margin-bottom: 16px
}

.caption_img {
    align-self: center;
    max-width: 230px;
    width: 100%
}

.accordion-box {
    border: 1px solid #af9c9c;
    border-radius: 0px;
    margin: auto;
    margin-bottom: 16px;
    padding: 8px 24px
}

.conceptd .accordion-box {
    border-radius: 4px
}

.accordion-box h3 {
    padding: 16px 0
}

.title-padding {
    padding: 16px
}

.accordion_icon {
    color: #222;
    font-size: 40px
}

.dark .accordion_icon {
    color: #fff
}

.black .accordion_icon {
    color: #fff
}

.product_close {
    display: none
}

.product_justify-center {
    justify-content: center
}

.accordion_content {
    display: none;
    line-height: 1.4;
    padding-bottom: 1rem;
    -webkit-transform-origin: top;
    transform-origin: top;
    word-break: break-word
}

.li-is-open .material-icons,
.is-open .accordion_icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: -webkit-transform ease .2s;
    transition: transform ease .2s;
    transition: transform ease .2s, -webkit-transform ease .2s
}

.accordion_ImageContent {
    -webkit-transform-origin: top;
    transform-origin: top;
    display: none
}

.is-open .accordion_ImageContent {
    display: block
}

.is-open .accordion_content {
    display: block
}

.accordion__Title {
    margin: 0;
    color: rgba(0, 0, 0, .87);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

#accordion_with_img .accordion {
    padding-bottom: .5rem
}

#accordion_with_img .accordion__Title {
    margin: 0px 0px 8px 0px
}

#accordion_with_img .accordion__Title h4 {
    margin: 0;
    font-size: 1.15rem
}

.white #accordion_with_img .accordion__Title {
    background-color: #fafafa
}

.light #accordion_with_img .accordion__Title {
    background-color: #fff
}

.dark #accordion_with_img .accordion__Title {
    background-color: #000
}

.black #accordion_with_img .accordion__Title {
    background-color: #1a1a1a
}

#accordion_with_img .accordion_with_image_item {
    padding: .5rem
}

#accordion_with_img .accordion_with_image_title {
    padding: 0rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

#accordion_with_img .accordion_img {
    width: 100%
}

@media(min-width: 900px) {
    #accordion_with_img .accordion_img {
        width: 50%
    }
}

#accordion_with_img .productgrouphero {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding-bottom: 55.5556%
}

ul.accordion li>a.supportLink-checked {
    font-weight: 600
}

.item-img {
    width: 100%;
    height: 100%
}

.accordion_card {
    width: 100%;
    text-align: center
}

@media(min-width: 640px) {
    .accordion_card {
        width: 50%
    }
}

@media(min-width: 900px) {
    .accordion_card {
        width: 25%
    }
}

.card-padding {
    padding: 16px;
    height: 100%
}

.card-padding p {
    margin: 0
}

.white .card-padding {
    background-color: #fafafa
}

.light .card-padding {
    background-color: #fff
}

.dark .card-padding {
    background-color: #000
}

.black .card-padding {
    background-color: #1a1a1a
}

.card-img {
    width: 60px;
    height: 60px
}

.card_title {
    font-size: 1.117rem;
    margin: 16px 0
}

.product_box {
    text-align: center;
    width: 50%
}

@media(min-width: 900px) {
    .product_box {
        width: 25%
    }
}

@media(min-width: 900px) {
    .product_card {
        padding-left: 16px;
        padding-right: 16px
    }
}

.product_card:hover a {
    text-decoration: none
}

.product_card:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: .3s ease
}

.more_btn {
    border-radius: .25rem;
    padding: 12px 24px;
    margin: 16px auto;
    text-align: center;
    display: inline-block;
    font-size: .875rem
}

.accordion-wrapper {
    display: flex;
    flex-direction: column-reverse
}

@media(min-width: 1100px) {
    .accordion-wrapper {
        display: flex;
        flex-direction: row
    }
}

#leftAccordion .accordion_title {
    cursor: pointer
}

#leftAccordion.section__body {
    width: 100%
}

#leftAccordion .accordion-wrapper {
    display: flex;
    flex-direction: column-reverse
}

@media(min-width: 1100px) {
    #leftAccordion .accordion-wrapper {
        flex-direction: row
    }
}

#leftAccordion .accordion-column {
    width: 100%;
    overflow: hidden
}

@media(min-width: 1100px) {
    #leftAccordion .accordion-column {
        width: 50%;
        padding: 0 15px
    }
}

#leftAccordion .accordion-column .swiper-slide {
    width: 100%;
    height: 100%;
    max-width: 100%;
    height: auto
}

#leftAccordion .swiper-lazy-loaded {
    -o-object-fit: cover !important;
    object-fit: cover !important;
    width: 100% !important;
    max-width: none !important
}

#leftAccordion .accordion-container.is-open,
#leftAccordion .accordion-container:last-child {
    margin-bottom: 0
}

#leftAccordion .accordion-outline {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 60px
}

#leftAccordion .accordion_text {
    line-height: 1.4;
    display: none
}

#leftAccordion .accordion_text p {
    margin: 0
}

@media(min-width: 900px) {
    #accordion_text_only .accordion {
        max-width: 80%
    }
}

@media(min-width: 1366px) {
    #accordion_text_only .accordion {
        max-width: 60%
    }
}

.cd {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    padding: 10px 16px;
    box-shadow: -3px 3px 15px rgba(0, 0, 0, .15);
    background-color: #fff;
    z-index: 70
}

@media(min-width: 900px) {
    .cd {
        padding: 15px 16px
    }
}

.predator .cd {
    background-color: #1a1a1a
}

.cd__error {
    font-size: 16px;
    color: #c00;
    margin-bottom: 10px;
    text-align: center
}

@media(min-width: 900px) {
    .cd__error {
        font-size: 18px
    }
}

.cd__row {
    display: flex;
    flex-direction: column;
    align-items: stretch
}

@media(min-width: 1366px) {
    .cd__row {
        flex-direction: row
    }
}

.cd__cards {
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-bottom: 1rem;
    align-items: stretch;
    justify-content: flex-start;
    overflow: auto
}

@media(min-width: 1366px) {
    .cd__cards {
        margin-bottom: 0;
        margin-right: 1rem;
        overflow: hidden
    }
}

.cd__card {
    box-sizing: border-box;
    position: relative;
    width: 242px;
    min-width: calc((100% - 2.5rem)/3);
    padding: 10px;
    flex-shrink: 0;
    margin: 0 .5rem;
    background-color: #eef7e6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start
}

.cd__card:last-child {
    margin-right: 0
}

.conceptd .cd__card {
    background-color: #fafafa;
    border: 1px solid #c9c9c9;
    border-radius: 4px
}

.predator .cd__card {
    background-color: rgba(0, 174, 205, .15)
}

.cd__picture {
    flex-shrink: 0;
    display: none
}

@media(min-width: 1366px) {
    .cd__picture {
        display: block;
        margin-right: 10px;
        overflow: hidden
    }

    .cd__picture img {
        max-width: 76px;
        max-height: 56px
    }
}

@media(min-width: 1920px) {
    .cd__picture img {
        max-width: 162px;
        max-height: 119px
    }
}

.cd__content {
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
    padding: .5rem 1.5rem .5rem 0
}

.cd__title {
    margin-right: 34px;
    margin-bottom: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.cd__text {
    font-size: .625rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media(min-width: 900px) {
    .cd__text {
        font-size: .75rem
    }
}

.cd__remove {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 13px;
    right: 13px;
    padding: 0;
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    outline: none
}

.cd__remove:focus {
    outline: none
}

.cd__remove .material-icons {
    color: #474747;
    font-size: 24px;
    line-height: 24px;
    pointer-events: none
}

.conceptd .cd__remove .material-icons {
    color: #25282a
}

.predator .cd__remove .material-icons {
    color: #fff
}

.cd__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-left: 1rem
}

@media(min-width: 1366px) {
    .cd__actions {
        min-width: calc((100% - 1rem)/4);
        justify-content: center
    }
}

.cd__actions>button {
    margin-right: 1rem
}

.cd__actions>button:last-child {
    margin-right: 0
}

.btn--clear {
    color: #222
}

.conceptd .btn--clear {
    color: #25282a
}

.predator .btn--clear {
    color: #fff
}

.pksp {
    padding: 0;
    position: relative
}

.pksp__progress-bar {
    display: none;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 60;
    width: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0) linear-gradient(270deg, #80c143, #357b53 65%, #243f43) 0 0 no-repeat
}

.conceptd .pksp__progress-bar {
    background: rgba(0, 0, 0, 0) linear-gradient(270deg, #ca4e21 0%, #bf9474 100%) 0% 0% no-repeat
}

.predator .pksp__progress-bar {
    background: rgba(0, 0, 0, 0) linear-gradient(270deg, #1eff96 0%, #00b4ff 100%) 0% 0% no-repeat
}

.pksp__inner {
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .pksp__inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 4rem 2rem
    }

    .pksp__inner.pksp--reverse {
        flex-direction: row-reverse
    }
}

.pksp__visual {
    top: 0px;
    display: flex;
    flex-grow: 0;
    flex-shrink: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: -webkit-sticky;
    position: sticky;
    z-index: 20;
    height: 50%;
    max-height: 50%
}

@media(min-width: 900px) {
    .pksp__visual {
        width: 50%;
        height: 90vh;
        max-height: 90vh;
        top: 5vh;
        justify-content: center;
        flex-shrink: 0
    }
}

.pksp__visual div {
    width: 100%;
    display: none;
    overflow: hidden
}

.pksp__visual div.active-slide {
    display: block
}

.pksp__visual picture {
    width: 100%;
    overflow: hidden;
    display: block
}

.pksp__visual video {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

@media(min-width: 900px) {
    .pksp__visual video {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }
}

.pksp__visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.pksp__card-container {
    z-index: 10
}

@media(min-width: 900px) {
    .pksp__card-container {
        width: calc(50% - 1.5rem)
    }
}

.pksp__cards {
    position: relative
}

.pksp__card {
    margin: 34vh 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 2rem
}

.pksp__card p {
    width: 100%
}

.predator .white .pksp__card p {
    color: #000
}

.predator .light .pksp__card p {
    color: #000
}

.pksp__card:first-child {
    margin-top: 3em
}

@media(min-width: 900px) {
    .pksp__card:first-child {
        margin-top: 14vh
    }
}

@media(min-width: 900px) {
    .pksp__card:last-child {
        margin-bottom: 14vh
    }
}

.pksp__overline {
    font-size: .813rem
}

@media(min-width: 900px) {
    .pksp__overline {
        font-size: 16px
    }
}

@media(min-width: 900px) {
    .pksp__overline {
        text-align: center
    }
}

.pksp__reveal {
    display: none;
    position: -webkit-sticky;
    position: sticky;
    height: 20vh;
    z-index: 10
}

@media(min-width: 900px) {
    .pksp__reveal {
        display: block
    }
}

.pksp__reveal:before,
.pksp__reveal:after {
    content: "";
    display: table
}

.pksp__reveal--top {
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)
}

.light .pksp__reveal--top {
    background: linear-gradient(to bottom, rgb(250, 250, 250) 0%, rgba(250, 250, 250, 0) 100%)
}

.dark .pksp__reveal--top {
    background: linear-gradient(to bottom, rgb(26, 26, 26) 0%, rgba(26, 26, 26, 0) 100%)
}

.black .pksp__reveal--top {
    background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)
}

.pksp__reveal--bottom {
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)
}

.light .pksp__reveal--bottom {
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgb(250, 250, 250) 100%)
}

.dark .pksp__reveal--bottom {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, rgb(26, 26, 26) 100%)
}

.black .pksp__reveal--bottom {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)
}

.shop-now~.pksp .pksp__progress-bar {
    top: 64px
}

@media(min-width: 2900px) {
    .shop-now~.pksp .pksp__progress-bar {
        top: 86px
    }
}

#cart_desktop_container,
#cart_mobile_container {
    min-width: 100%
}

.cart-mini {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    min-width: 100%
}

.is-empty .cart-mini__header {
    padding: 1.5rem;
    text-align: center
}

.cart-mini__title {
    margin: 0
}

.cart-mini__body {
    padding: 1.5rem 0 0 0;
    position: relative
}

.cart-mini__footer {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0 0 0
}

.cart-mini__subtotal {
    margin: 0 0 .3rem;
    font-size: 16px;
    text-align: center
}

@media(min-width: 900px) {
    .cart-mini__subtotal {
        font-size: 18px
    }
}

.cart-mini__section {
    flex-basis: 40%;
    flex-shrink: 1;
    flex-grow: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.cart-mini__note {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: .8rem
}

.cart-mini__note .material-icons {
    margin-right: .3rem
}

@media(min-width: 2900px) {
    .cart-mini__note .material-icons {
        font-size: 30px
    }
}

.cart-mini__submit {
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1
}

.cart-mini__footer {
    display: flex
}

.cart-mini.is-empty {
    display: none
}

.cart-mini.is-empty h4 {
    text-align: center
}

[data-cart-empty] .cart-mini {
    display: none
}

[data-cart-empty] .cart-mini.is-empty {
    display: block
}

#minicartIcon {
    margin-right: -10px
}

[data-menu].active {
    overflow: initial;
    background-color: #f0f0f0;
    transition: all .3s ease-in-out
}

.predator [data-menu].active {
    background-color: #333
}

.mini-cart {
    display: none
}

.mini-cart[data-menu-open] {
    display: block
}

.mini-cart[data-menu-open] #cart_mobile_container {
    position: fixed;
    top: auto;
    left: 0;
    z-index: 100;
    background-color: #fff;
    height: 100%;
    transition: max-height .3s ease-in-out
}

.mini-cart.active {
    display: flex;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: #fff;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, .1019607843)
}

.cart-item {
    display: flex
}

.cart-item__image {
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.cart-item__image img {
    max-width: 120px
}

.cart-item__title {
    margin-bottom: 0
}

.cart-item__info {
    flex-basis: 35%;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    min-width: 25%;
    white-space: normal
}

.cart-item__model {
    font-size: .625rem;
    margin: 0
}

@media(min-width: 900px) {
    .cart-item__model {
        font-size: .75rem
    }
}

.cart-item__quantity {
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.cart-item__quantity input {
    max-width: 50%;
    padding: .5rem;
    border: 2px solid #e0e0e0
}

.cart-item__unit {
    flex-basis: 25%;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end
}

.cart-item__price {
    font-size: 16px;
    font-weight: 600;
    margin: 0
}

@media(min-width: 900px) {
    .cart-item__price {
        font-size: 1.25rem
    }
}

.cart-item__remove {
    cursor: pointer;
    font-size: .625rem;
    text-decoration: underline
}

@media(min-width: 900px) {
    .cart-item__remove {
        font-size: .75rem
    }
}

.cart-list {
    margin: 0;
    padding: 0 1.5rem 0 0;
    overflow-y: auto;
    max-height: 280px;
    width: 100%
}

@media(min-width: 2900px) {
    .cart-list {
        max-height: 420px
    }
}

.cart-list__item {
    list-style: none;
    margin-bottom: 1.6rem;
    text-align: center
}

.cart-list__item span.over__stock {
    display: none;
    color: #c00
}

.dropdown__item {
    display: none;
    position: absolute;
    right: 0;
    z-index: 50;
    background-color: #fff;
    box-shadow: 0px 0px .75rem rgba(0, 0, 0, .3)
}

.is-open>.dropdown__item {
    display: flex
}

.dropdown__item--large {
    width: 580px
}

.dropdown__item--small {
    width: 470px
}

.badge {
    position: relative
}

.badge::before {
    content: attr(data-count);
    position: absolute;
    top: -20%;
    right: 0;
    text-align: center;
    font-size: 7px;
    zoom: .6;
    color: #fff;
    background: #474747;
    border-radius: 99px;
    padding: 0px 6px;
    border: #fff 1px solid
}

.new-header-badge::before {
    top: 5%;
    font-size: 16px
}

.spec-table-container {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    max-width: 100vw
}

@media(min-width: 56.25em) {
    .spec-table-container {
        min-width: 100%;
        width: 100px
    }
}

.spec-table {
    margin-bottom: 1.5rem;
    width: 100%
}

@media(min-width: 56.25em) {
    .spec-table {
        display: flex;
        flex-direction: column
    }
}

.spec-table__header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer
}

@media(min-width: 56.25em) {
    .spec-table__header {
        cursor: default
    }
}

.spec-table__body {
    margin-bottom: 1rem
}

@media(min-width: 56.25em) {
    .spec-table__body {
        margin: 0
    }
}

.spec-table__title {
    margin-bottom: 0
}

@media(min-width: 56.25em) {
    .spec-table__icon {
        display: none
    }
}

.spec-table__items {
    margin: 0;
    padding: 0
}

.spec-table__item--nw {
    flex-wrap: nowrap
}

.spec-table__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    font-size: .813rem
}

@media(min-width: 900px) {
    .spec-table__item {
        font-size: 16px
    }
}

.spec-table__item span:nth-child(odd) {
    background-color: #fafafa
}

.predator .spec-table__item span:nth-child(odd) {
    background-color: #1a1a1a
}

@media(min-width: 56.25em) {
    .spec-table__item {
        flex-wrap: nowrap
    }

    .spec-table__item:nth-child(odd) {
        background-color: #fafafa
    }

    .predator .spec-table__item:nth-child(odd) {
        background-color: #1a1a1a
    }

    .spec-table__item>span:nth-child(odd) {
        background-color: rgba(0, 0, 0, 0)
    }

    .predator .spec-table__item>span:nth-child(odd) {
        background-color: rgba(0, 0, 0, 0)
    }
}

.spec-table__item ul {
    list-style: none
}

.spec-table__cells {
    flex-basis: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start
}

@media(min-width: 56.25em) {
    .spec-table__cells {
        flex-basis: 75%;
        flex-grow: 1;
        flex-shrink: 1;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start
    }
}

.spec-table__th,
.spec-table__td {
    padding: .5rem 1rem;
    margin: 0;
    width: 100%;
    min-width: 245px;
    border-right: 1px solid #ededed;
    font-size: .813rem
}

@media(min-width: 900px) {

    .spec-table__th,
    .spec-table__td {
        font-size: 16px
    }
}

.spec-table__th:last-child,
.spec-table__td:last-child {
    border: 0
}

.spec-table__th {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 100%
}

@media(min-width: 56.25em) {
    .spec-table__th {
        flex-shrink: 1;
        flex-basis: 25%
    }
}

.spec-table__td {
    flex-grow: 0;
    flex-shrink: 1
}

@media(min-width: 56.25em) {
    .spec-table__td {
        flex-grow: 1
    }
}

.spec-table__tr {
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 0
}

.spec-table__tr .spec-table__td {
    min-width: 242px
}

@media(min-width: 56.25em) {
    .spec-table__tr .spec-table__td {
        flex-grow: 1
    }
}

.spec-table[data-collapsed] {
    margin-bottom: 0
}

.spec-table[data-collapsed] .spec-table__body {
    display: none
}

@media(min-width: 56.25em) {
    .spec-table[data-collapsed] .spec-table__body {
        display: block
    }
}

.spec-table[data-collapsed] .spec-table__icon {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg)
}

.accent-bar {
    height: 8px;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(270deg, #80c143, #357b53 65%, #243f43) 0 0 no-repeat
}

.conceptd .accent-bar {
    display: none
}

.predator .accent-bar {
    background: rgba(0, 0, 0, 0) linear-gradient(270deg, #1eff96 0%, #00b4ff 100%) 0% 0% no-repeat
}

.accent-bar--sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0
}

.filter-control {
    display: flex;
    flex-wrap: wrap;
    min-width: 100%
}

@media(min-width: 56.25em) {
    .filter-control {
        justify-content: space-between;
        flex-direction: row-reverse;
        flex-wrap: nowrap
    }
}

.filter-controll--spaced {
    margin: 1.25rem 0
}

.filter-control__item {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex
}

.filter-control__item:hover {
    text-decoration: none;
    cursor: pointer
}

.filter-control__item:first-child {
    margin-right: 1rem
}

@media(min-width: 56.25em) {
    .filter-control__item {
        padding-left: 1rem
    }
}

@media(min-width: 56.25em) {
    .filter-control--hide\@md {
        display: none
    }
}

.filter-control__group {
    display: flex;
    flex-basis: 100%
}

@media(min-width: 56.25em) {
    .filter-control__group {
        justify-content: space-between
    }
}

.filter-control__btn {
    display: inline-block;
    font-weight: 600;
    color: #222;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 9px 24px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    min-width: 100px;
    width: 100%;
    justify-content: center;
    border-color: #222
}

.filter-control__btn+.filter-control__btn {
    margin: 0 0 0 .5rem
}

.predator .filter-control__btn {
    border-color: #fff;
    font-size: 15px
}

.conceptd .filter-control__btn {
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    color: #474747
}

.filter-control__btn:hover {
    text-decoration: none
}

.filter-control__count {
    display: flex;
    align-items: center
}

.filter-control__sort {
    position: relative;
    width: 100%;
    height: 44px;
    text-align: center;
    border-radius: 0
}

.predator .filter-control__sort {
    border-color: #fff
}

.filter-control__sort label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 9px 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 3;
    font-weight: 600;
    background-color: #fff;
    color: #222;
    border: 1px solid #222
}

.predator .filter-control__sort label {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    font-size: 15px
}

@media(min-width: 900px) {
    .predator .filter-control__sort label {
        border: none
    }
}

.conceptd .filter-control__sort label {
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    color: #474747
}

@media(min-width: 900px) {
    .filter-control__sort label {
        background-color: rgba(0, 0, 0, 0);
        position: relative;
        width: auto;
        height: auto;
        font-weight: normal;
        border: none
    }

    .filter-control__sort label::after {
        content: ":"
    }
}

.filter-control__sort label.label--disabled {
    color: #757575;
    border: 1px solid #757575
}

.filter-control__sort select {
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: center;
    color: #222
}

@media(min-width: 900px) {
    .filter-control__sort select {
        position: relative;
        width: auto;
        max-width: 115px;
        min-width: 85px;
        height: auto
    }
}

.predator .filter-control__sort select {
    color: #474747
}

@media(min-width: 900px) {
    .predator .filter-control__sort select {
        color: #fff
    }

    .predator .filter-control__sort select option {
        color: #474747
    }
}

.conceptd .filter-control__sort select {
    color: #474747
}

@media(min-width: 900px) {
    .filter-control__sort {
        border: 0
    }
}

@media(min-width: 900px) {
    .filter-control--right\@md {
        text-align: right
    }
}

.support.filter-control__item {
    margin: 0 0 30px 0;
    padding: 0 24px
}

.support.filter-control__item .filter-control__btn {
    text-align: left;
    padding: 9px 24px 9px 0
}

.support.filter-control__item .material-icons {
    vertical-align: middle;
    margin-right: 20px
}

@media screen and (max-width: 900px) {
    .filter-control__group {
        margin-bottom: 1rem
    }
}

.register__find-serial-link {
    color: #474747
}

.conceptd .register__find-serial-link {
    color: #25282a
}

.predator .register__find-serial-link {
    color: #fff
}

.register__find-serial-link:hover {
    color: #474747
}

.conceptd .register__find-serial-link:hover {
    color: #25282a
}

.predator .register__find-serial-link:hover {
    color: #fff
}

.register__product--item {
    position: relative;
    padding: 12px 0;
    margin: 8px 0
}

.register__product--item p {
    font-size: 18px
}

.register__product__item--purchase-date {
    display: flex
}

.register__product__item--purchase-date .date-picker {
    position: relative
}

.register__product__item--purchase-date .date-picker .material-icons {
    position: absolute;
    right: 0;
    cursor: pointer
}

.register__product__item--purchase-year {
    width: 80px
}

.register__product__item--purchase-year input {
    width: 100%
}

.register__product__item--purchase-year input:focus {
    outline: none
}

.register__product__item--purchase-mon-day {
    width: 50px
}

.register__product__item--purchase-mon-day input {
    width: 100%
}

.register__product__item--purchase-mon-day input:focus {
    outline: none
}

.register__product--footer {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    width: 70%;
    margin: auto
}

.register__product--btn {
    width: 160px
}

.register__product--btn .cancel-btn {
    background-color: rgba(0, 0, 0, 0)
}

.conceptd .register__product--btn .cancel-btn {
    font-weight: 400
}

.predator .register__product--btn .cancel-btn {
    color: #fff
}

@media(max-width: 900px) {
    .register__product--footer {
        justify-content: flex-start
    }

    .register__product--footer .register__product--btn+.register__product--btn {
        padding-left: 20px
    }
}

@media(max-width: 400px) {
    .register__product--footer {
        display: flex;
        flex-direction: column
    }

    .register__product--btn {
        width: 100%
    }

    .register__product--footer .register__product--btn+.register__product--btn {
        padding-top: 20px;
        padding-left: 0
    }
}

.reset-password__signin--btn {
    padding: 30px 0 40px 0;
    display: flex;
    justify-content: center
}

.reset-password__signin--btn a {
    font-weight: bold
}

.reset-password__btn-padding {
    padding-bottom: 40px
}

.padding-bottom-20 {
    padding-bottom: 20px
}

.dm__header {
    padding: 2rem 0
}

.predator .section.vf-wrapper {
    background-color: #000
}

.vf__inner {
    display: flex;
    flex-direction: column;
    margin-bottom: .5rem
}

@media(min-width: 640px) {
    .vf__inner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between
    }
}

.vf__visual {
    width: 100%;
    background-color: #fff;
    position: -webkit-sticky;
    position: sticky;
    margin-bottom: 1rem;
    z-index: 2
}

@media(min-width: 640px) {
    .vf__visual {
        width: calc(50% - .5rem);
        margin-bottom: 62px
    }
}

.predator .vf__visual {
    background-color: #000
}

.vf__visual>picture {
    width: 100%
}

.vf__form {
    position: relative;
    width: 100%;
    z-index: 1
}

@media(min-width: 640px) {
    .vf__form {
        width: calc(50% - .5rem)
    }
}

.vf__choice {
    padding: 20px 0 14px;
    border-bottom: 1px solid #c9c9c9
}

.vf__choice:first-child {
    padding-top: 0
}

.vf__choice:last-child {
    border: none
}

.predator .vf__choice {
    border-color: #474747
}

.vf__choice-title {
    margin-bottom: 10px
}

.vf__opts {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0;
    margin: 0;
    list-style-type: none
}

.vf__opt {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem
}

.vf__opt:last-child {
    margin-right: 0
}

.vf__opts .vf__opt {
    flex: 1
}

.vf__opts.vf__opts--wrap .vf__opt {
    flex: 0
}

@media(max-width: 639.98px) {
    .vf__opts.vf__opts--wrap .vf__opt {
        flex-basis: 100%;
        margin-right: 0
    }
}

@media(min-width: 640px)and (max-width: 899.98px) {
    .vf__opts.vf__opts--wrap .vf__opt {
        flex-basis: calc((100% - 1rem)/2)
    }

    .vf__opts.vf__opts--wrap .vf__opt:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px) {
    .vf__opts.vf__opts--wrap .vf__opt {
        flex-basis: calc((100% - 2rem)/3)
    }

    .vf__opts.vf__opts--wrap .vf__opt:nth-child(3n) {
        margin-right: 0
    }
}

.vf__radio {
    display: none
}

.vf__label {
    justify-content: center;
    align-items: center;
    border: 1px solid #474747;
    padding: 13px 23px;
    width: 100%;
    min-height: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700
}

@media(min-width: 900px) {
    .vf__label {
        font-size: 18px
    }
}

.conceptd .vf__label {
    border-radius: 9999px;
    border-color: #474747
}

.predator .vf__label {
    border-color: #474747
}

.vf__label ul,
.vf__label li {
    list-style: circle;
    list-style-position: inside;
    padding-left: 0;
    text-align: left
}

.vf__radio:checked+.vf__label {
    background-color: rgba(128, 195, 67, .1);
    border-color: #80c343
}

.conceptd .vf__radio:checked+.vf__label {
    background-color: rgba(202, 78, 33, .1);
    border-color: #ca4e21
}

.predator .vf__radio:checked+.vf__label {
    background-color: rgba(10, 174, 205, .1);
    border-color: #00aecd
}

.vf__radio:disabled+.vf__label {
    pointer-events: none;
    opacity: .25
}

.vf__reveal {
    display: none;
    position: -webkit-sticky;
    position: sticky;
    height: 2rem;
    z-index: 10
}

@media(min-width: 900px) {
    .vf__reveal {
        display: block
    }
}

.vf__reveal--bottom {
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)
}

.predator .vf__reveal--bottom {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)
}

.vf-result-stats {
    padding: 0 1rem 1rem
}

@media(min-width: 900px) {
    .vf-result-stats {
        padding: 0 1.5rem 1.5rem
    }
}

.shop-now~.vf .vf__visual {
    top: 64px
}

.vf-choose-color {
    border-radius: 50%;
    border: 2px solid #474747;
    width: 39px;
    height: 39px;
    margin-right: 15px
}

.hatch-modal {
    position: absolute;
    display: none;
    height: 0px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 80
}

.hatch {
    display: none;
    position: absolute;
    flex-direction: column;
    align-items: center;
    top: 0;
    left: 0;
    box-shadow: 0 3px 16px rgba(0, 0, 0, .2)
}

@supports((-webkit-filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.2))) or (filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.2)))) {
    .hatch {
        box-shadow: none;
        -webkit-filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.2));
        filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.2))
    }
}

.hatch::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    background-color: #fff;
    top: -12px;
    left: 100%;
    margin-left: calc(-50% - 12px);
    z-index: -1;
    box-shadow: 0px 3px 16px rgba(0, 0, 0, .2)
}

@supports((-webkit-filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.2))) or (filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.2)))) {
    .hatch::before {
        box-shadow: none
    }
}

.predator .hatch::before {
    background-color: #1a1a1a
}

.hatch__content {
    width: 350px;
    padding: 8px 16px;
    border-radius: 3px;
    background-color: #fff;
    z-index: 10
}

@media(max-width: 899.98px) {
    .hatch__content {
        padding: 8px;
        width: 250px
    }
}

.predator .hatch__content {
    background-color: #1a1a1a
}

.hatch__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.hatch__item {
    border-bottom: 1px solid #c9c9c9
}

.hatch__item:last-child {
    border: none
}

.predator .hatch__item {
    border-color: #474747
}

.hatch__link {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: #474747
}

.conceptd .hatch__link {
    color: #25282a
}

.predaor .hatch__link {
    color: #fff
}

.hatch__link:hover {
    text-decoration: none;
    color: #474747
}

.conceptd .hatch__link:hover {
    color: #25282a
}

.predaor .hatch__link:hover {
    color: #fff
}

.hatch__logo {
    width: 80px
}

@media(max-width: 899.98px) {
    .hatch__logo {
        width: 50px
    }
}

.hatch__price {
    margin: 0 15px 0 auto;
    font-size: 16px
}

@media(max-width: 899.98px) {
    .hatch__price {
        margin: 0 10px 0 auto;
        font-size: .813rem
    }
}

.hatch__none {
    margin: 0;
    padding: 2rem;
    text-align: center
}

.pdp-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0 16px
}

@media(min-width: 900px) {
    .pdp-main {
        padding: 0 24px;
        flex-direction: row
    }
}

.pdp-carousel {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem
}

@media(min-width: 900px) {
    .pdp-carousel {
        width: 100%;
        max-width: 55.71vw;
        margin-right: .5rem;
        margin-bottom: 0;
        height: 47.5841vw;
        max-height: 47.5841vw
    }
}

.pdp-media-carousel {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem
}

@media(min-width: 900px) {
    .pdp-media-carousel {
        width: 100%;
        max-width: 55.71vw;
        margin-right: .5rem;
        margin-bottom: 0;
        height: 47.5841vw;
        max-height: 47.5841vw
    }
}

.pdp-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 100%
}

.pdp-details span.over__stock {
    display: none;
    color: #c00
}

@media(min-width: 900px) {
    .pdp-details {
        margin-left: .5rem;
        width: 100%;
        max-width: 39.6vw
    }
}

.pdp-carousel {
    display: flex;
    flex-direction: column;
    margin: 50px 0 60px
}

@media(min-width: 900px) {
    .pdp-carousel {
        margin: 60px 0 70px;
        width: 55.71vw;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: flex-end
    }
}

.predator .pdp-carousel {
    background-color: #000
}

.pdp-media-carousel {
    display: flex;
    flex-direction: column;
    margin: 50px 0 60px
}

@media(min-width: 900px) {
    .pdp-media-carousel {
        margin: 60px 0 70px;
        width: 55.71vw;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: flex-end
    }
}

.predator .pdp-media-carousel {
    background-color: #000
}

.pdpv {
    margin-bottom: 1rem;
    flex-grow: 1
}

.pdpv figure {
    margin: 0
}

@media(min-width: 900px) {
    .pdpv {
        margin-bottom: 0;
        margin-left: 1rem
    }
}

.pdpv__container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 75%
}

@media(min-width: 900px) {
    .pdpv__container {
        max-width: 100%;
        width: 100%;
        padding-top: 90%
    }
}

.pdpv__inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.pdpv__inner picture,
.pdpv__inner img {
    width: 100%
}

.pdpv__inner video {
    width: 100%;
    height: 100%;
    background-color: #000
}

.pdpv__inner .s7container,
.pdpv__inner .s7spinview,
.pdpv__inner canvas {
    outline: rgba(0, 0, 0, 0);
    outline-width: 0
}

.pdpg {
    position: relative;
    height: 18.66vw;
    overflow: hidden
}

@media(min-width: 900px) {
    .pdpg {
        width: 7vw;
        height: 100%
    }
}

.pdpg__list {
    display: flex;
    flex-direction: row;
    height: 100%;
    padding: 0 24px;
    transition: -webkit-transform linear 300ms;
    transition: transform linear 300ms;
    transition: transform linear 300ms, -webkit-transform linear 300ms
}

@media(min-width: 900px) {
    .pdpg__list {
        flex-direction: column;
        height: 100%;
        padding: 24px 0
    }
}

.pdpg__prev,
.pdpg__next {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 24px;
    background-color: rgba(229, 229, 229, .75);
    z-index: 30;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media(min-width: 900px) {

    .pdpg__prev,
    .pdpg__next {
        width: 100%;
        height: 24px
    }

    .pdpg__prev .material-icons,
    .pdpg__next .material-icons {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transform-origin: center center;
        transform-origin: center center
    }
}

.predator .pdpg__prev,
.predator .pdpg__next {
    background-color: #474747
}

.pdpg__prev {
    left: 0
}

@media(min-width: 900px) {
    .pdpg__prev {
        top: 0
    }
}

.pdpg__next {
    right: 0;
    top: 0
}

@media(min-width: 900px) {
    .pdpg__next {
        top: auto;
        bottom: 0
    }
}

.pdpg__slide {
    position: relative;
    flex-shrink: 0;
    height: 18.66vw;
    width: 18.66vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    margin-right: 1rem
}

.pdpg__slide:last-child {
    margin-right: 0
}

@media(min-width: 900px) {
    .pdpg__slide {
        width: 7vw;
        height: 7vw;
        margin-right: 0;
        margin-bottom: 1rem
    }

    .pdpg__slide:last-child {
        margin-bottom: 0
    }
}

.predator .pdpg__slide {
    background-color: #000;
    border-color: #474747
}

.pdpg__icon {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.pdpg__icon .material-icons {
    font-size: 32px;
    color: rgba(255, 255, 255, .6)
}

.support-dm {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.support-dm__label {
    margin-bottom: .5rem
}

.support-dm__input {
    display: flex;
    align-items: center;
    margin-bottom: 1rem
}

.support-dm__input-text {
    min-width: 400px;
    padding: 8.5px;
    line-height: 1.5
}

.support-dm__search {
    padding-top: .5rem;
    max-width: 728px
}

.support-dm__input-btn {
    margin-left: .5rem
}

.support-dm__link {
    display: block;
    font-size: .8rem;
    margin-bottom: .1rem;
    text-decoration: underline
}

.download {
    padding: 1rem 0;
    border-bottom: 1px solid #eee
}

.download .displayNone,
.download .notLatest {
    display: none
}

.download.displayNone,
.download.notLatest {
    display: none
}

.download__heading {
    line-height: inherit
}

.download__heading span {
    background-color: #80c343;
    border-radius: 3px;
    color: #fff;
    margin-right: 10px;
    padding: .3rem
}

.conceptd .download__heading span {
    background-color: #ca4e21
}

.predator .download__heading span {
    background-color: #00aecd
}

.dl-table {
    margin: 0;
    padding: 1rem 0
}

@media(min-width: 56.25em) {
    .dl-table {
        display: flex;
        justify-content: space-evenly
    }
}

.dl-table__item {
    list-style: none;
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    padding: .5rem 0
}

@media(min-width: 56.25em) {
    .dl-table__item {
        flex-direction: column;
        justify-content: center
    }
}

.dl-table__header {
    font-weight: 600
}

.dl-table__link {
    font-weight: 600
}

.alert {
    position: relative;
    display: flex;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 5px
}

.alert__heading {
    color: inherit
}

.alert__link {
    font-weight: 700
}

.alert--dismissible {
    padding-right: 3rem
}

.alert--dismissible .btn--close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem
}

.alert--light {
    background-color: #fafafa;
    margin-bottom: 0
}

.predator .alert--light {
    background-color: #00aecd
}

.alert--red {
    background-color: #fbf7f9;
    margin-bottom: 0
}

.predator .alert--red {
    background-color: #00aecd
}

.support-product {
    padding: 1rem 0
}

.support-product .menu.menu--legal {
    display: block;
    padding: 1rem;
    width: 100%
}

.support-product .menu.menu--legal li {
    display: inline-flex;
    font-size: .8125rem;
    border-right: 1px solid #89898b;
    padding: 0 .5rem;
    font-size: 16px
}

@media(min-width: 900px) {
    .support-product .menu.menu--legal li {
        font-size: .875rem
    }
}

.support-product .menu.menu--legal li:last-child {
    border: 0 none;
    padding-right: 0
}

.support-product .menu.menu--legal li:first-child {
    padding-left: 0
}

.support-product .menu.menu--legal a {
    padding: 0;
    font-size: 16px
}

@media(min-width: 56.25em) {
    .support-product {
        padding: 1rem 1.5rem
    }
}

.results-header {
    margin: 2.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.results-box {
    padding: 1rem;
    background-color: #fafafa
}

.predator .results-box {
    color: #fff;
    background-color: #25282a
}

.results-links {
    padding: 0
}

.results-links a {
    display: block;
    margin: .5rem 0;
    text-decoration: underline
}

.results-sort {
    display: none
}

@media(min-width: 900px) {
    .results-sort {
        display: block
    }
}

.results-sort select {
    color: #474747
}

.conceptd .results-sort select {
    color: #222
}

.predator .results-sort select {
    color: #fff;
    background-color: #1a1a1a
}

.zi {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.zi-src {
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: zoom-in;
    touch-action: none
}

.zi-zoom {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-origin: top left
}

.zi.zi-zoomed .zi-src {
    cursor: zoom-out
}

.zi.zi-zoomed .zi-zoom {
    display: block
}

.video-modal {
    position: fixed;
    background-color: rgba(0, 0, 0, .65);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 95
}

.video-modal .video-content {
    width: 100%
}

@media(min-width: 900px) {
    .video-modal .video-content {
        width: 90%
    }
}

.video-modal .video-content video {
    width: 100%
}

@media(max-width: 899.98px) {
    .flex-item:nth-of-type(1) {
        order: 2
    }

    .flex-item:nth-of-type(2) {
        order: 1
    }
}

[data-lr-selected] #loadMore {
    display: none
}

#loadMore {
    margin-bottom: 2rem
}

@media(min-width: 1920px) {
    #lr {
        width: 1850px;
        max-width: 1850px;
        min-width: 1850px;
        margin-left: auto;
        margin-right: auto
    }
}

.lr__location {
    padding: 1.5rem 0 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start
}

@media(min-width: 900px) {
    .lr__location {
        padding: 2.5rem 0 2.5rem;
        flex-direction: row;
        width: 60%;
        margin: 0 auto;
        max-width: 900px
    }
}

.lr__address {
    padding: 13px;
    margin: 0px;
    margin-right: 1rem;
    height: 100%;
    border-width: 1px;
    -webkit-appearance: none;
    border-radius: 0;
    flex-grow: 1;
    flex-shrink: 0
}

.lr__address:focus {
    outline: none;
    outline-width: none
}

@media(min-width: 900px) {
    .lr__address {
        padding: 13px;
        margin-bottom: 0;
        margin-right: 1rem;
        height: 100%
    }
}

.conceptd .lr__address {
    border-radius: 999px
}

.lr__filter {
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    max-width: 1366px
}

@media(min-width: 900px) {
    .lr__filter {
        flex-direction: row;
        justify-content: space-between
    }
}

.lr__filter .lr__opt {
    margin-bottom: 1rem
}

@media(min-width: 900px) {
    .lr__filter .lr__opt {
        flex: 0;
        flex-basis: calc((100% - 2rem)/3);
        margin-right: 1rem;
        margin-bottom: 0
    }

    .lr__filter .lr__opt:nth-child(3n) {
        margin-right: 0
    }
}

.lr__radio {
    display: none
}

.lr__label {
    color: #222;
    display: inline-block;
    border: 1px solid #474747;
    padding: 15px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer
}

@media(min-width: 900px) {
    .lr__label {
        font-size: 18px
    }
}

.conceptd .lr__label {
    border-radius: 9999px;
    border-color: #474747
}

.predator .lr__label {
    border-color: #474747;
    color: #fff;
    border: 1px solid #fff
}

.lr__radio:checked+.lr__label {
    background-color: rgba(128, 195, 67, .1);
    border-color: #80c343
}

.conceptd .lr__radio:checked+.lr__label {
    background-color: rgba(202, 78, 33, .1);
    border-color: #ca4e21
}

.predator .lr__radio:checked+.lr__label {
    background-color: rgba(10, 174, 205, .1);
    border-color: #00aecd
}

.lr__output {
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .lr__output {
        height: 650px;
        flex-direction: row
    }
}

.lr__container {
    width: 100%;
    height: 30vh
}

@media(min-width: 900px) {
    .lr__container {
        width: 60%;
        flex-shrink: 0;
        max-width: 100%;
        height: 650px
    }
}

.lr__map {
    width: 100%;
    height: 100%
}

.lr__results {
    position: relative;
    overflow-y: auto;
    width: 100%
}

@media(min-width: 900px) {
    .lr__results {
        padding-left: 1rem
    }
}

.lr-result {
    position: relative;
    cursor: pointer;
    padding: 1rem;
    border-bottom: 1px soild #c9c9c9
}

@media(min-width: 900px) {
    .lr-result:hover {
        background-color: rgba(128, 193, 67, .15)
    }

    .conceptd .lr-result:hover {
        background-color: rgba(202, 78, 33, .15)
    }

    .predator .lr-result:hover {
        background-color: rgba(10, 174, 205, .2)
    }
}

.lr-result h6 {
    pointer-events: none
}

.lr-result p {
    pointer-events: none;
    font-size: 16px;
    margin: 0
}

@media(min-width: 900px) {
    .lr-result p {
        font-size: 18px
    }
}

.lr-result .btn--tertiary {
    margin: 16px 0px 4px 0px;
    padding: 0px
}

.lr-result__close {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0);
    border: 0
}

.lr-result__close:active,
.lr-result__close:focus {
    outline: none;
    outline-width: 0;
    outline-color: rgba(0, 0, 0, 0)
}

.acer .lr-result__close {
    color: #474747
}

.lr-result__close:hover {
    text-decoration: none
}

.lr-result__close .material-icons {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.predator .lr-result__close {
    color: #fff
}

.lr-result--current {
    background-color: rgba(128, 195, 67, .15)
}

.conceptd .lr-result--current {
    background-color: rgba(202, 78, 33, .15)
}

.predator .lr-result--current {
    background-color: rgba(10, 174, 205, .2)
}

.lr-result--current .lr-result__close {
    display: block
}

@media(min-width: 900px) {
    .lr-result--current .lr-result__close {
        display: none
    }
}

@media(max-width: 899.98px) {
    [data-lr-selected] .lr-result {
        display: none
    }

    [data-lr-selected] .lr-result.lr-result--current {
        display: block
    }
}

.cf {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 1rem
}

@media(min-width: 56.25em) {
    .cf {
        flex-direction: column;
        margin: 0 0 1rem
    }
}

.cf .select:first-child {
    margin-left: 0;
    padding-left: 0
}

.cf__top {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 0 0 .5rem;
    min-width: 100%;
    border-top: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    justify-content: space-between;
    padding: .7rem 1rem
}

@media(min-width: 900px) {
    .cf__top {
        display: flex
    }
}

.cf__bottom {
    padding: 1.5rem;
    margin: 0 0 .5rem;
    min-width: 100%;
    display: none;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.8rem
}

@media(min-width: 900px) {
    .cf__bottom {
        display: flex
    }
}

.cf__mobile {
    padding: 1.5rem;
    margin: 0 0 .5rem;
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.8rem
}

@media(min-width: 900px) {
    .cf__mobile {
        display: none
    }
}

.cf__mobile .filter-control {
    flex-grow: 1
}

.cf__group {
    display: none
}

@media(min-width: 56.25em) {
    .cf__group {
        display: flex;
        flex-grow: 1;
        flex-shrink: 1
    }
}

.cf-filters,
.cf-facets,
.cf-filter-actions {
    display: flex
}

.cf-facets {
    min-height: 44px
}

.cf-facets-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0
}

.cf-facet {
    margin: 0 .5rem .5rem 0
}

.cf-facets-clear {
    font-size: .625rem;
    padding: .5rem .8rem
}

@media(min-width: 900px) {
    .cf-facets-clear {
        font-size: .75rem
    }
}

.cf-more {
    font-size: .8125rem;
    color: #474747;
    cursor: pointer
}

@media(min-width: 900px) {
    .cf-more {
        font-size: .875rem
    }
}

.cf-more .material-icons {
    font-size: .8125rem
}

@media(min-width: 900px) {
    .cf-more .material-icons {
        font-size: .875rem
    }
}

.cf-more:hover {
    text-decoration: none
}

.conceptd .cf-more {
    color: #25282a
}

.predator .cf-more {
    color: #fff
}

.cf-filter-actions,
.cf-result-stats {
    flex-shrink: 0;
    align-items: center
}

.cf__results {
    font-size: .8125rem;
    display: flex;
    align-items: center
}

@media(min-width: 900px) {
    .cf__results {
        font-size: .875rem
    }
}

.cf__results strong {
    font-weight: 600;
    margin-left: .75rem
}

.cf-select {
    position: relative;
    margin: .5rem 1.5rem .5rem 0
}

.cf-select:first-of-type {
    margin-left: 0
}

.cf-select__trigger {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer
}

.cf-select__label {
    font-size: .8125rem
}

@media(min-width: 900px) {
    .cf-select__label {
        font-size: .875rem
    }
}

.cf-select__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    padding: 1.5rem;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 10;
    background-color: #fff;
    box-shadow: 0px 4px 20px rgba(34, 34, 34, .15)
}

.conceptd .cf-select__dropdown {
    border-radius: .25rem
}

.predator .cf-select__dropdown {
    background-color: #1a1a1a
}

.cf-select__options {
    list-style: none;
    padding: 0;
    margin: 0
}

.cf-select__option {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: .75rem;
    font-size: .813rem
}

@media(min-width: 900px) {
    .cf-select__option {
        font-size: 16px
    }
}

.cf-select__option label {
    white-space: nowrap;
    font-size: .813rem
}

@media(min-width: 900px) {
    .cf-select__option label {
        font-size: 16px
    }
}

.cf-select__option:last-child {
    margin: 0
}

.cf-select--open .cf-select__dropdown {
    display: block
}

.cf-select--open .cf-select__trigger .material-icons {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.cf-select:first-of-type .cf-select__dropdown {
    left: 0;
    -webkit-transform: none;
    transform: none
}

.cf-sort {
    height: 100%
}

@media(min-width: 900px) {
    .cf-sort {
        position: relative;
        margin: 0 0 0 1.5rem
    }
}

.cf-sort__trigger {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    height: 100%
}

.cf-sort__label {
    font-size: .8125rem
}

@media(min-width: 900px) {
    .cf-sort__label {
        font-size: .875rem
    }
}

.cf-sort__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1.5rem;
    z-index: 65;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 20px rgba(34, 34, 34, .15)
}

.conceptd .cf-sort__dropdown {
    border-radius: .25rem
}

.predator .cf-sort__dropdown {
    background-color: #1a1a1a
}

@media(min-width: 900px) {
    .cf-sort__dropdown {
        width: auto
    }
}

.cf-sort__options {
    list-style: none;
    padding: 0;
    margin: 0
}

.cf-sort__option {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: .75rem;
    font-size: .813rem;
    white-space: nowrap;
    cursor: pointer
}

@media(min-width: 900px) {
    .cf-sort__option {
        font-size: 16px
    }
}

.cf-sort__option:last-child {
    margin: 0
}

.cf-sort--open .cf-sort__dropdown {
    display: block
}

.cf-sort--open .cf-sort__trigger .material-icons {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.cf-filters {
    max-width: 75%;
    flex-wrap: wrap
}

.cf-filter-actions {
    max-width: 25%;
    margin: .5rem 0
}

.cfm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 55;
    background-color: rgba(36, 36, 36, .83);
    overflow: hidden
}

@media(min-width: 640px) {
    .cfm-modal {
        overflow: auto
    }
}

.cfm {
    margin: 0 auto;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch
}

@media(min-width: 640px) {
    .cfm {
        right: auto;
        position: relative;
        display: block;
        height: auto;
        margin: 40px
    }
}

.predator .cfm {
    background-color: #222
}

.cfm-header {
    flex-shrink: 0;
    border-bottom: 1px solid #c9c9c9;
    padding: 18px 26px;
    position: relative
}

@media(min-width: 900px) {
    .cfm-header {
        padding: 26px 0 26px 75px
    }
}

@media(min-width: 1366px) {
    .cfm-header {
        padding: 26px 0 26px 110px
    }
}

.predator .cfm-header {
    border-color: #474747
}

.cfm-header__title {
    font-size: 18px;
    margin: 0
}

@media(min-width: 900px) {
    .cfm-header__title {
        font-size: 1.5rem
    }
}

.cfm-header__close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 18px;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    cursor: pointer
}

.cfm-header__close:active,
.cfm-header__close:focus {
    outline: none;
    outline-width: 0;
    outline-color: rgba(0, 0, 0, 0)
}

.acer .cfm-header__close {
    color: #474747
}

.cfm-header__close:hover {
    text-decoration: none
}

.cfm-header__close .material-icons {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.predator .cfm-header__close {
    color: #fff
}

@media(min-width: 640px) {
    .cfm-header__close {
        display: block
    }
}

.cfm-filters {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex-basis: 0;
    padding: 0px 26px;
    overflow-y: auto
}

@media(min-width: 640px) {
    .cfm-filters {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 32px
    }
}

@media(min-width: 900px) {
    .cfm-filters {
        padding: 32px 75px
    }
}

@media(min-width: 1366px) {
    .cfm-filters {
        padding: 32px 110px
    }
}

.cfm-filter {
    width: 100%;
    border-bottom: 1px solid #c9c9c9
}

@media(min-width: 640px) {
    .cfm-filter {
        margin-right: 1rem;
        border: 0;
        width: auto;
        min-width: calc(25% - 1rem)
    }
}

@media(min-width: 640px)and (max-width: 899.98px) {
    .cfm-filter {
        width: calc((100% - 1rem)/2)
    }

    .cfm-filter:nth-child(2n) {
        margin-right: 0
    }
}

@media(min-width: 900px)and (max-width: 1099.98px) {
    .cfm-filter {
        width: calc((100% - 2rem)/3)
    }

    .cfm-filter:nth-child(3n) {
        margin-right: 0
    }
}

@media(min-width: 1366px) {
    .cfm-filter {
        width: calc((100% - 3rem)/4)
    }

    .cfm-filter:nth-child(4n) {
        margin-right: 0
    }
}

.predator .cfm-filter {
    border-color: #474747
}

.cfm-filter__title {
    cursor: pointer;
    font-size: 16px;
    padding: 35px 0;
    display: block;
    margin: 0
}

[data-has-filters]>.cfm-filter__title {
    font-weight: bold
}

@media(min-width: 640px) {
    .cfm-filter__title {
        cursor: default;
        margin-bottom: 10px;
        pointer-events: none;
        padding: 0
    }
}

.cfm-filter__inputs {
    padding-bottom: 1rem
}

.cfm-filter__input {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem
}

.cfm-filter__input label {
    font-size: 16px;
    padding-left: 3px
}

.cfm-filter__input label:before {
    margin-right: 5px
}

.cfm-footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 85px
}

.cfm-footer .btn--clear {
    font-size: 16px;
    margin-right: 1rem;
    font-weight: 400
}

@media(min-width: 900px) {
    .cfm-footer .btn--clear {
        font-size: 18px
    }
}

@media(max-width: 639.98px) {
    .cfm-footer {
        padding: 10px 16px;
        box-shadow: -3px 3px 15px rgba(0, 0, 0, .18)
    }
}

@media(max-width: 639.98px) {
    .cfm-filter[data-collapsed]>.cfm-filter__inputs {
        display: none
    }
}

section.compare {
    position: relative;
    max-width: 100%
}

.predator section.compare {
    background-color: #000
}

.compare-cards {
    position: relative;
    display: grid;
    max-width: 2900px;
    margin: 0 auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #fff;
    overflow-x: auto;
    transition: all 150ms ease-in-out;
    grid-template-columns: 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: ". a2 . a3 . a4 ."
}

@media(min-width: 900px) {
    .compare-cards {
        grid-template-columns: 1.5rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1.5rem;
        grid-template-rows: 1fr;
        grid-template-areas: ". a1 . a2 . a3 . a4 ."
    }
}

.predator .compare-cards {
    background-color: #000
}

.compare-cards>div:nth-child(1) {
    display: none
}

@media(min-width: 900px) {
    .compare-cards>div:nth-child(1) {
        grid-area: a1;
        display: flex
    }
}

.compare-cards>div:nth-child(2) {
    grid-area: a2
}

.compare-cards>div:nth-child(3) {
    grid-area: a3
}

.compare-cards>div:nth-child(4) {
    grid-area: a4
}

.compare-cards__actions {
    background-color: #fafafa;
    padding: 1rem;
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .compare-cards__actions {
        justify-content: space-between
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .compare-cards {
        display: -ms-grid;
        -ms-grid-columns: 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem;
        -ms-grid-rows: 1fr
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .compare-cards {
        display: -ms-grid;
        -ms-grid-columns: 1.5rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1.5rem;
        -ms-grid-rows: 1fr
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .compare-cards>div:nth-child(1) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .compare-cards>div:nth-child(2) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .compare-cards>div:nth-child(2) {
        -ms-grid-column: 4
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .compare-cards>div:nth-child(3) {
        -ms-grid-column: 4;
        -ms-grid-column-span: 1
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .compare-cards>div:nth-child(3) {
        -ms-grid-column: 6
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .compare-cards>div:nth-child(4) {
        -ms-grid-column: 6;
        -ms-grid-column-span: 1
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .compare-cards>div:nth-child(4) {
        -ms-grid-column: 8
    }
}

.card-compare {
    display: flex;
    flex-direction: column;
    min-width: 242px;
    background-color: #eef7e6;
    padding: 1rem 18px 0
}

.card-compare .card__body {
    width: 100%
}

.card-compare .card__title,
.card-compare .card__tags {
    text-align: center
}

.card-compare .card__tags {
    color: #474747
}

.card-compare .card__footer {
    padding-bottom: 1rem
}

.card-compare .card__footer .card-product__number {
    display: none
}

.card-compare.card-compare--empty {
    align-items: center;
    justify-content: center
}

.card-compare.card-compare--empty .material-icons {
    font-size: 4rem
}

.conceptd .card-compare {
    background-color: #fafafa;
    border: 1px solid #c9c9c9;
    border-radius: 4px
}

.predator .card-compare {
    background-color: rgba(0, 174, 205, .15)
}

.compare-toolbox {
    background-color: #fafafa;
    padding: 1rem;
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .compare-toolbox {
        justify-content: space-between
    }
}

.conceptd .compare-toolbox {
    background-color: #fafafa;
    border: 1px solid #c9c9c9;
    border-radius: 4px
}

.predator .compare-toolbox {
    background-color: #1a1a1a
}

.compare-toolbox--a {
    margin: 0 1rem
}

@media(min-width: 900px) {
    .compare-toolbox--a {
        display: none
    }
}

.compare-toolbox--b {
    display: none
}

@media(min-width: 900px) {
    .compare-toolbox--b {
        display: flex
    }
}

.compare-actions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row
}

@media(min-width: 900px) {
    .compare-actions {
        flex-direction: column
    }
}

.compare-actions__item {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0;
    margin-bottom: 2rem;
    justify-content: flex-end
}

.compare-actions__item .material-icons {
    background-color: #fff;
    border: 0;
    box-shadow: 0 0 3px rgba(34, 34, 34, .12)
}

@media(min-width: 900px) {
    .compare-actions__item {
        margin-bottom: 1rem
    }
}

.compare-actions__footer {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start
}

@media(min-width: 900px) {
    .compare-actions__footer {
        justify-content: space-between
    }
}

.compare-actions__footer .comp-clearall {
    font-weight: 700;
    padding: 0;
    margin-right: 1rem;
    min-width: auto
}

.compare-actions__footer .comp-clearall:hover {
    text-decoration: underline;
    color: #222
}

.conceptd .compare-actions__footer .comp-clearall {
    font-weight: 400
}

.compare-cards.comp-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    box-shadow: -3px 3px 15px rgba(0, 0, 0, .2)
}

.compare-cards.comp-stuck .compare-actions {
    flex-direction: row
}

.compare-cards.comp-stuck .card-compare {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start
}

.compare-cards.comp-stuck .card-compare picture {
    max-width: 30%;
    min-width: 30%;
    align-self: auto;
    margin-right: 1rem
}

.compare-cards.comp-stuck .card-compare .card__title,
.compare-cards.comp-stuck .card-compare .card__tags {
    text-align: left
}

.compare-cards.comp-stuck .card-compare .card__tags {
    margin-bottom: 14px
}

.compare-cards.comp-stuck .card-compare .card__body {
    width: 60%
}

.compare-cards.comp-stuck .card-compare .card__title {
    font-size: 16px
}

@media(min-width: 900px) {
    .compare-cards.comp-stuck .card-compare .card__title {
        font-size: 1.25rem
    }
}

.compare-cards.comp-stuck .card-compare .card__tags--model {
    display: none
}

.compare-cards.comp-stuck .card-compare .card-product__price {
    display: none
}

.compare-cards.comp-stuck .card-compare .card__footer {
    padding: 0 0 1rem
}

.compare-cards.comp-stuck .card-compare .card__footer .card-product__number {
    display: none
}

.compare-cards.comp-stuck .card-compare .card__footer .btn {
    padding: 9px 16px;
    margin-left: 0
}

@media(min-width: 640px) {
    .compare-cards.comp-stuck .card-compare .card__footer .btn {
        padding: 11px 23px
    }
}

.compare-cards.comp-stuck .card-compare.card-compare--empty {
    align-items: center;
    justify-content: center
}

.compare-cards.comp-stuck .card-compare.card-compare--empty .material-icons {
    font-size: 4rem
}

.compare-cards.comp-stuck .action {
    flex-direction: row
}

.compare-specs {
    overflow-x: auto;
    max-width: 2900px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.comp-stuck+.compare-specs {
    padding-top: 14rem
}

.comp-table {
    width: 100%
}

.comp-table__header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0
}

.comp-table__body {
    margin-bottom: 1rem
}

@media(min-width: 900px) {
    .comp-table__body {
        margin: 0
    }
}

.comp-table__title {
    margin-bottom: 0;
    margin: 0 1rem
}

@media(min-width: 900px) {
    .comp-table__title {
        margin: 0 1.5rem
    }
}

.comp-table__items {
    margin: 0;
    padding: 0;
    list-style: none
}

@media(min-width: 900px) {
    .comp-table__item:nth-child(odd) .comp-table__td {
        background-color: #fafafa
    }

    .predator .comp-table__item:nth-child(odd) .comp-table__td {
        background-color: #1a1a1a
    }
}

.comp-table__tr {
    display: grid;
    grid-template-columns: 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem;
    grid-template-rows: auto 1fr;
    gap: 0px 0px;
    grid-template-areas: ". a1 a1 a1 a1 a1 ." ". a2 a2 a3 a3 a4 ."
}

@media(min-width: 900px) {
    .comp-table__tr {
        grid-template-columns: 1.5rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1.5rem;
        grid-template-rows: 1fr;
        grid-template-areas: ". a1 a1 a2 a2 a3 a3 a4 ."
    }
}

.comp-table__td {
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    font-size: .813rem;
    border-left: 1px solid #ededed
}

@media(min-width: 900px) {
    .comp-table__td {
        font-size: 16px
    }
}

.comp-table__td:last-child {
    margin-right: 0
}

.predator .comp-table__td {
    border-color: #474747
}

.comp-table__td:nth-child(1) {
    background-color: #fafafa;
    border: 0;
    grid-area: a1
}

@media(min-width: 900px) {
    .comp-table__td:nth-child(1) {
        background-color: rgba(0, 0, 0, 0)
    }
}

@media(max-width: 899.98px) {
    .predator .comp-table__td:nth-child(1) {
        background-color: #1a1a1a
    }
}

.comp-table__td:nth-child(2) {
    grid-area: a2;
    padding-right: 2rem;
    border-width: 0
}

@media(min-width: 900px) {
    .comp-table__td:nth-child(2) {
        border-width: 1px
    }
}

.comp-table__td:nth-child(3) {
    grid-area: a3;
    padding-right: 2rem
}

.comp-table__td:nth-child(4) {
    grid-area: a4
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .comp-table__tr {
        display: -ms-grid;
        -ms-grid-columns: 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem;
        -ms-grid-rows: 1fr 1fr
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .comp-table__tr {
        display: -ms-grid;
        -ms-grid-columns: 1.5rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1rem minmax(242px, 1fr) 1.5rem;
        -ms-grid-rows: 1fr
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .comp-table__td:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 5
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .comp-table__td:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 2
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .comp-table__td:nth-child(2) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 2
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .comp-table__td:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 4
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .comp-table__td:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 4;
        -ms-grid-column-span: 2
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .comp-table__td:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 6
    }
}

@media screen and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .comp-table__td:nth-child(4) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 6;
        -ms-grid-column-span: 1
    }
}

@media screen and (-ms-high-contrast: none)and (min-width: 900px),
(-ms-high-contrast: active)and (min-width: 900px) {
    .comp-table__td:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 8
    }
}

.comp-dupes {
    margin-left: auto
}

@media(min-width: 900px) {
    .comp-dupes {
        position: absolute;
        right: 0;
        top: 1rem
    }
}

.comp-dupes__check {
    width: 0;
    height: 0;
    visibility: hidden
}

.comp-dupes__label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    font-size: .8125rem;
    color: #474747
}

@media(min-width: 900px) {
    .comp-dupes__label {
        display: inline-flex;
        padding-right: 1.5rem
    }
}

@media(min-width: 900px) {
    .comp-dupes__label {
        font-size: .875rem
    }
}

.conceptd .comp-dupes__label {
    color: #25282a
}

.predator .comp-dupes__label {
    color: #fff
}

.comp-dupes__toggle {
    display: flex;
    background-color: #89898b;
    border-radius: 2rem;
    height: 16px;
    width: 30px;
    padding: 3px;
    margin-right: .5rem;
    transition: all 150ms linear
}

.comp-dupes__nib {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 1rem;
    transition: all 150ms linear;
    margin-left: 0
}

.predator .comp-dupes__nib {
    background-color: #000
}

.comp-dupes__check:checked+.comp-dupes__label>.comp-dupes__toggle {
    background-color: #80c343
}

.conceptd .comp-dupes__check:checked+.comp-dupes__label>.comp-dupes__toggle {
    background-color: #ca4e21
}

.predator .comp-dupes__check:checked+.comp-dupes__label>.comp-dupes__toggle {
    background-color: #00aecd
}

.comp-dupes__check:checked+.comp-dupes__label>.comp-dupes__toggle .comp-dupes__nib {
    margin-left: auto
}

.comp-stuck+.compare-specs>.comp-dupes {
    top: 15rem
}

.hb,
.hb--icon1,
.hb--icon2,
.hb--icon3,
.hb--icon4 {
    width: 25px;
    height: 19px;
    position: relative;
    margin: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer
}

.hb span,
.hb--icon1 span,
.hb--icon3 span,
.hb--icon4 span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.predator .hb span,
.predator .hb--icon1 span,
.predator .hb--icon3 span,
.predator .hb--icon4 span {
    background: #fff
}

.hb--icon1 span:nth-child(1) {
    top: 0px
}

.hb--icon1 span:nth-child(2) {
    top: 18px
}

.hb--icon1 span:nth-child(3) {
    top: 36px
}

.hb--icon1.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.hb--icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px
}

.hb--icon1.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.hb--icon2 span {
    display: block;
    position: absolute;
    height: 9px;
    width: 50%;
    background: #d3531a;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: .25s ease-in-out
}

.hb--icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0
}

.hb--icon2 span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px
}

.hb--icon2 span:nth-child(1),
.hb--icon2 span:nth-child(2) {
    top: 0px
}

.hb--icon2 span:nth-child(3),
.hb--icon2 span:nth-child(4) {
    top: 18px
}

.hb--icon2 span:nth-child(5),
.hb--icon2 span:nth-child(6) {
    top: 36px
}

.hb--icon2.open span:nth-child(1),
.hb--icon2.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.hb--icon2.open span:nth-child(2),
.hb--icon2.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.hb--icon2.open span:nth-child(1) {
    left: 5px;
    top: 7px
}

.hb--icon2.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px
}

.hb--icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0
}

.hb--icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0
}

.hb--icon2.open span:nth-child(5) {
    left: 5px;
    top: 29px
}

.hb--icon2.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 29px
}

.hb--icon3 span:nth-child(1) {
    top: 0px
}

.hb--icon3 span:nth-child(2),
.hb--icon3 span:nth-child(3) {
    top: 18px
}

.hb--icon3 span:nth-child(4) {
    top: 36px
}

.hb--icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%
}

.hb--icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.hb--icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.hb--icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%
}

.hb--icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

.hb--icon4 span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

.hb--icon4 span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

.hb--icon4.open span:nth-child(1),
.slideout-is-open .hb--icon4 span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -1px;
    left: 5px
}

.hb--icon4.open span:nth-child(2),
.slideout-is-open .hb--icon4 span:nth-child(2) {
    width: 0%;
    opacity: 0
}

.hb--icon4.open span:nth-child(3),
.slideout-is-open .hb--icon4 span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 17px;
    left: 4px
}

.loading {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 55
}

.spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.spinner div {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-animation: spinner 1.2s linear infinite;
    animation: spinner 1.2s linear infinite;
    background-color: #80c343
}

.conceptd .spinner div {
    background-color: #ca4e21
}

.predator .spinner div {
    background-color: #00aecd
}

.spinner div:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    top: 37px;
    left: 66px
}

.spinner div:nth-child(2) {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
    top: 22px;
    left: 62px
}

.spinner div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
    top: 11px;
    left: 52px
}

.spinner div:nth-child(4) {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
    top: 7px;
    left: 37px
}

.spinner div:nth-child(5) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
    top: 11px;
    left: 22px
}

.spinner div:nth-child(6) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
    top: 22px;
    left: 11px
}

.spinner div:nth-child(7) {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
    top: 37px;
    left: 7px
}

.spinner div:nth-child(8) {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
    top: 52px;
    left: 11px
}

.spinner div:nth-child(9) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
    top: 62px;
    left: 22px
}

.spinner div:nth-child(10) {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
    top: 66px;
    left: 37px
}

.spinner div:nth-child(11) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    top: 62px;
    left: 52px
}

.spinner div:nth-child(12) {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
    top: 52px;
    left: 62px
}

@-webkit-keyframes spinner {

    0%,
    20%,
    80%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}

@keyframes spinner {

    0%,
    20%,
    80%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}

.anchor_container {
    height: 600px
}

.menu--fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1020
}

.sticky__menu--bg {
    background-color: #e0e0e0
}

.predator .sticky__menu--bg {
    background-color: #333
}

.sticky__menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding: 0 1.5rem;
    position: relative
}

.sticky__menu a {
    padding: 1rem
}

.sticky__menu a:hover {
    text-decoration: none
}

@media(min-width: 1080px) {
    .sticky__menu a:last-child {
        padding-right: 0
    }
}

@media(min-width: 1080px) {
    .sticky__item {
        display: flex;
        align-items: center;
        flex-direction: row;
        position: relative;
        width: auto
    }
}

.sticky__links {
    display: none
}

.sticky__links .sticky__link {
    display: block
}

.arrow {
    cursor: pointer
}

.sticky__links--open {
    z-index: 99;
    display: none;
    width: 100%;
    position: absolute;
    right: 0;
    top: 52px;
    text-align: center;
    background-color: #ededed
}

@media(min-width: 1080px) {
    .sticky__links--open {
        display: block !important;
        position: relative;
        top: 0;
        width: auto;
        background-color: rgba(0, 0, 0, 0)
    }
}

.predator .sticky__links--open {
    background-color: #333
}

.sticky__links--open .sticky__link {
    border-bottom: 1px solid #cfcece;
    display: block
}

.sticky__links--open .sticky__link:first-child {
    border-top: 1px solid #afaaaa
}

.sticky__links--open .sticky__link:hover {
    background-color: #afaaaa
}

@media(min-width: 1080px) {
    .sticky__links--open .sticky__link {
        border-bottom: none;
        display: block
    }

    .sticky__links--open .sticky__link:first-child {
        border-top: none
    }

    .sticky__links--open .sticky__link:hover {
        background-color: rgba(0, 0, 0, 0)
    }
}

.predator .sticky__links--open .sticky__link {
    opacity: .4
}

.predator .sticky__links--open .sticky__link:hover {
    opacity: 1
}

.arrow-up {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.arrow-down {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.sticky__link:hover {
    text-decoration: none
}

.versiontable {
    border: 1px solid #333
}

.predator .versiontable {
    border: 1px solid #fff
}

.version-row {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: flex-end
}

.versiontitle-col {
    width: 25%;
    padding: 1rem;
    color: #fff;
    word-break: break-word
}

@media(min-width: 640px) {
    .versiontitle-col {
        width: 20%
    }
}

.feature-col {
    padding: 8px 16px;
    width: 100%;
    border-top: 1px solid #333
}

.predator .feature-col {
    border-top: 1px solid #fff
}

@media(min-width: 640px) {
    .feature-col {
        width: 20%
    }
}

.version-col {
    padding: 8px 16px;
    width: 25%;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center
}

.predator .version-col {
    border-top: 1px solid #fff
}

@media(min-width: 640px) {
    .version-col {
        width: 20%
    }
}

.charttable {
    background-color: #f5f5f5
}

.predator .charttable {
    background-color: #1a1a1a
}

.charttable img {
    width: 100%;
    display: block
}

.chart-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff
}

.charttitle-col {
    width: 33.33%;
    padding: 15px 8px;
    color: #fff;
    text-align: left
}

.charttitle-col img:first-child {
    margin-bottom: 1rem
}

@media(min-width: 1100px) {
    .charttitle-col {
        width: 25%
    }
}

.chartfeature-col {
    padding: 8px 16px;
    width: 100%;
    border-bottom: 2px solid #fff;
    text-align: left;
    background-color: #eee
}

.predator .chartfeature-col {
    background-color: #333
}

@media(min-width: 1100px) {
    .chartfeature-col {
        width: 25%;
        border-bottom: none;
        background-color: rgba(0, 0, 0, 0)
    }
}

.chart-col {
    padding: 8px 16px;
    width: 33.33%;
    text-align: center
}

@media(min-width: 1100px) {
    .chart-col {
        width: 25%
    }
}

.chartcontent-col {
    padding: 1rem;
    width: 100%
}

@media(min-width: 1100px) {
    .chartcontent-col {
        width: 75%
    }
}

.textOverKsp {
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 40%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-top: 1px solid #5a676b
}

@media(min-width: 640px) {
    .textOverKsp {
        width: 35%;
        right: 0;
        height: 100%;
        max-width: 500px;
        border-top: none
    }
}

@media(min-width: 900px) {
    .textOverKsp {
        width: 30%
    }
}

.textOverKspPosition {
    position: absolute;
    width: 70%;
    top: 12%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    text-align: center
}

.textOverKspPosition p {
    color: #fff
}

@media(min-width: 640px) {
    .textOverKspPosition {
        width: 100%;
        top: 50%;
        left: 0;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        padding-left: 30px;
        padding-right: 30px;
        text-align: left
    }
}

@media(min-width: 900px) {
    .textOverKspPosition {
        padding-left: 10%
    }
}

.videoSize {
    width: 100%;
    margin: 0 auto;
    vertical-align: middle
}

.replayButton {
    position: absolute;
    right: 16px;
    bottom: 0;
    cursor: pointer;
    color: #fff
}

.replayButton:hover {
    color: #c9c9c9
}

.textArea {
    background-color: #1f1f1f;
    width: 100%
}

@media(min-width: 640px) {
    .textArea {
        background-color: rgba(0, 0, 0, 0)
    }
}

.textOverVideo {
    margin: 3rem auto;
    max-width: 300px;
    text-align: center
}

@media(min-width: 640px) {
    .textOverVideo {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 23%;
        min-width: 290px;
        max-width: none;
        padding-left: 4%;
        padding-bottom: 2%;
        margin: 0;
        text-align: left
    }
}

.textOverVideo p {
    color: #fff
}

.swiper__next,
.swiper__prev {
    visibility: visible
}

.swiper__next .material-icons,
.swiper__prev .material-icons {
    color: #c9c9c9;
    font-size: 64px
}

.swiper__next .material-icons:hover,
.swiper__prev .material-icons:hover {
    color: #89898b
}

.mySwiper {
    height: 600px;
    background-size: cover;
    transition: background-position .4s ease-out;
    position: relative
}

@media(min-width: 1366px) {
    .mySwiper {
        height: 800px
    }
}

.mySwiper .swiper-slide {
    visibility: hidden
}

.mySwiper .swiper-slide.swiper-slide-active {
    visibility: visible
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    transition: .4s ease
}

.slide0 {
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.slide2 {
    left: 100%;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0)
}

.text-box {
    margin: 0 60px;
    background-color: rgba(0, 0, 0, .5);
    padding: 1.5rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.text-box h2,
.text-box p {
    color: #fff
}

@media(min-width: 640px) {
    .text-box {
        margin: 0 80px;
        max-width: 480px;
        top: 80%;
        -webkit-transform: translate(0, -85%);
        transform: translate(0, -85%)
    }
}

@media(min-width: 1366px) {
    .text-box {
        max-width: 720px
    }
}

.swiper-slide-container>a:not([href]):not([class]) {
    background-color: #212121;
    border-radius: 4px;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    display: block;
    margin: 10px;
    outline: 0;
    padding: 16px 10px;
    position: relative;
    text-align: center;
    transition: color .3s
}

.swiper-slide-container>a:not([href]):not([class]):hover,
.swiper-slide-container>a:not([href]):not([class]) {
    color: #fff
}

.swiper-slide-container>a:not([href]):not([class]):after {
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    content: "";
    display: block;
    height: 0;
    left: 50%;
    position: absolute;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0
}

.swiper-slide-container>a:not([href]):not([class]):after {
    border-top-color: #212121
}

.slide-box {
    background: #ddd;
    padding: 3%
}

.predator .slide-box {
    background: #212121
}

.slide-content {
    font-size: 18px;
    height: 100%;
    max-width: 500px;
    margin: auto;
    padding: 0 16px;
    justify-content: center;
    align-items: center
}

.gallery-top {
    height: 80%;
    width: 100%
}

.gallery-thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
    position: relative
}

.gallery-thumbs .swiper__next,
.gallery-thumbs .swiper__prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px
}

.gallery-thumbs .swiper__next .material-icons,
.gallery-thumbs .swiper__prev .material-icons {
    font-size: 40px
}

.gallery-thumbs .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: .4
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1
}

.subsection__bg {
    overflow: hidden
}

.subsection__card .content-text {
    padding: 1.5rem;
    text-align: center
}

.subsection__card p {
    margin-bottom: 0
}

.subsection__card .content-img {
    z-index: 1
}

.subsection__card .content-img img {
    width: 100%
}

@media(min-width: 900px) {
    .subsection__card {
        position: relative
    }

    .subsection__card:not(:first-child) {
        margin-top: -154px
    }

    .subsection__card:not(:first-child) .content-text {
        top: calc(50% - 308px);
        -webkit-transform: translateY(calc(-50% + 308px));
        transform: translateY(calc(-50% + 308px))
    }

    .subsection__card:last-child .content-text {
        top: calc(50% - 154px);
        -webkit-transform: translateY(calc(-50% + 1.5*154px));
        transform: translateY(calc(-50% + 1.5*154px))
    }

    .subsection__card:nth-child(odd) .content-img {
        -webkit-transform: translateX(40%);
        transform: translateX(40%)
    }

    .subsection__card:nth-child(even) .content-img {
        -webkit-transform: translateX(-40%);
        transform: translateX(-40%)
    }

    .subsection__card:nth-child(even) .content-text {
        right: 0
    }

    .subsection__card .content-text {
        width: 40%;
        padding: 3rem;
        position: absolute;
        top: calc(50% + 154px);
        -webkit-transform: translateY(calc(-50% - 1.5*154px));
        transform: translateY(calc(-50% - 1.5*154px));
        text-align: left
    }

    .subsection__card .content-img img {
        max-width: 100%
    }
}

@media(max-width: 899.98px) {
    .content-img {
        -webkit-transform: translateX(0%) !important;
        transform: translateX(0%) !important
    }
}

.overlay__bg img {
    width: 100%
}

.overlay__content {
    position: relative;
    margin: -100px auto 0;
    padding-left: 32px;
    padding-right: 32px;
    max-width: 1430px
}

.overlay__content .overlay__box {
    background-color: rgba(255, 255, 255, .8);
    padding: 2rem
}

.overlay__content ol {
    line-height: 1.5;
    list-style: decimal;
    margin-left: 1rem;
    padding: 0
}

.overlay__content ol li {
    font-size: inherit;
    margin-bottom: 1rem
}

.overlay__col {
    padding-right: .75em;
    padding-left: .75em
}

@media(min-width: 640px) {
    .overlay__col {
        padding-right: 1rem;
        padding-left: 1rem
    }
}

@media(min-width: 1366px) {
    .overlay__col {
        padding-right: 1.25rem;
        padding-left: 1.25rem
    }
}

.threeBlockText-col {
    padding-right: .75rem;
    padding-left: .75rem
}

@media(min-width: 900px) {
    .threeBlockText-col {
        padding-right: 1.25rem;
        padding-left: 1.25rem
    }
}

@media(min-width: 1366px) {
    .threeBlockText-col {
        padding-right: 1.75rem;
        padding-left: 1.75rem
    }
}

.anchor_container-shrink {
    height: 600px
}

.chunk-padding {
    padding-top: 32px;
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 24px
}

@media(min-width: 1100px) {
    .chunk-padding {
        padding-top: 48px;
        padding-bottom: 48px
    }
}

#nav-area {
    background-color: #f5f5f5;
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
    position: relative
}

@media(min-width: 1100px) {
    #nav-area {
        background-color: unset;
        margin-right: auto;
        margin-left: auto;
        padding-right: 0;
        padding-left: 0
    }
}

#nav-area .arrow-icon {
    float: none;
    padding: 0;
    font-size: 24px;
    line-height: normal;
    margin: 0;
    cursor: pointer
}

@media(min-width: 1100px) {
    #nav-area .arrow-icon {
        display: none
    }
}

#nav-area .project-name {
    display: block;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem
}

#nav-area .project-name a:hover {
    text-decoration: none
}

@media(min-width: 1100px) {
    #nav-area .project-name {
        display: none
    }
}

#nav-area.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1010;
    background-color: #f5f5f5;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    transition: top .3s ease-in-out
}

@media(min-width: 1100px) {
    #nav-area.fixed {
        padding-right: 32px;
        padding-left: 32px
    }

    #nav-area.fixed .nav-container {
        width: auto
    }
}

#nav-area.fixed .project-name {
    display: block
}

#nav-area.fixed .project-name a:hover {
    text-decoration: none
}

#nav-area.fixed .nav-link {
    padding: 16px 32px
}

@media(min-width: 1100px) {
    #nav-area.fixed .nav-link {
        padding-right: 24px;
        padding-left: 24px;
        width: auto;
        cursor: pointer
    }
}

#nav-area.fixed .nav-link img {
    max-width: 0
}

#nav-area.fixed .nav-link p {
    font-weight: 400;
    font-size: 16px
}

.nav-container {
    margin-right: 0;
    margin-left: 0;
    display: block
}

@media(min-width: 1100px) {
    .nav-container {
        margin-right: -24px;
        margin-left: -24px;
        padding-top: 0;
        padding-bottom: 0;
        width: 100%
    }
}

.nav-container nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #f5f5f5;
    display: none;
    z-index: 20;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

@media(min-width: 1100px) {
    .nav-container nav {
        position: static;
        top: auto;
        right: auto;
        background-color: unset;
        display: flex;
        padding: 0;
        box-shadow: none;
        width: 100%;
        z-index: 0;
        justify-content: center
    }
}

.nav-container nav .nav-link {
    line-height: normal;
    white-space: nowrap;
    cursor: pointer;
    margin: 0;
    text-decoration: none;
    position: relative;
    transition: all .1s;
    padding: 16px 32px;
    opacity: .8;
    border-bottom: 1px solid #cfcece;
    display: block
}

.nav-container nav .nav-link:first-child {
    border-top: 1px solid #afaaaa
}

.nav-container nav .nav-link:hover {
    opacity: 1
}

.nav-container nav .nav-link.active {
    opacity: 1
}

@media(min-width: 1100px) {
    .nav-container nav .nav-link {
        padding: 0;
        width: 16.67%;
        border-bottom: none;
        display: block
    }

    .nav-container nav .nav-link:first-child {
        border-top: none
    }
}

.nav-container nav .nav-link img {
    max-width: 100%;
    transition: all .5s;
    margin-left: auto;
    display: none
}

@media(min-width: 1100px) {
    .nav-container nav .nav-link img {
        display: block
    }
}

.nav-container nav .nav-link p {
    font-weight: 600;
    font-size: 1.25rem
}

.videoTab::-webkit-scrollbar {
    display: none
}

#video-1,
#video-2,
#video-3 {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    text-align: center
}

#video-1 video,
#video-2 video,
#video-3 video {
    vertical-align: middle;
    width: 100%
}

.videoTab {
    overflow-x: auto;
    scrollbar-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    overflow-y: hidden;
    border: none
}

.videoTab .videoTab-li {
    border: none !important;
    background: none !important
}

.videoTab .videoTab-li a {
    background-color: inherit;
    float: initial;
    outline: none;
    padding: 14px 16px;
    transition: .3s;
    font-size: 17px;
    border-bottom: 1px solid gray;
    cursor: pointer !important
}

.videoTab .videoTab-li :hover {
    color: #ddd !important;
    border-bottom: 1px solid #ddd
}

.ui-tabs .ui-tabs-nav {
    display: flex;
    background: none;
    border: none;
    padding: 0
}

@media(min-width: 640px) {
    .ui-tabs .ui-tabs-nav {
        justify-content: center
    }
}

.ui-state-default a,
.ui-state-default a:link {
    color: gray !important
}

.ui-state-active a,
.ui-state-active a:link {
    color: #fff !important
}

#custom-handle {
    border: 1px solid #c5c5c5 !important;
    background: #fff !important
}

.ColorsContent {
    display: flex;
    flex-direction: column
}

@media(min-width: 900px) {
    .ColorsContent {
        justify-content: center
    }
}

.ColorsContent img {
    float: left;
    height: 50px;
    margin-right: 20px
}

.ColorsContent span {
    color: #e0e0e0
}

.ColorsContentImg {
    float: left;
    height: 50px;
    margin-right: 20px
}

.ColorDivImage {
    margin: 0 auto;
    background: #7bc1e5;
    width: 100%
}

.contProductSelect {
    position: relative;
    overflow: hidden;
    width: 100%
}

.DescriptionDivColor {
    display: none
}

@media(min-width: 900px) {
    .DescriptionDivColor {
        position: absolute;
        padding-left: 5%;
        width: 20%;
        height: 100%;
        color: #fff;
        z-index: 5;
        display: flex;
        justify-content: center;
        align-items: stretch
    }
}

.DescriptionTitle {
    opacity: 1;
    float: left;
    width: 90px
}

.Description {
    opacity: 1
}

.lineHeight {
    line-height: 25px
}

@media screen and (max-width: 400px) {
    .lineHeight {
        line-height: 20px
    }
}

.videoTab button {
    background-color: inherit;
    float: initial;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: .3s;
    font-size: 17px;
    color: gray;
    border-bottom: 1px solid gray
}

.videoTab button:hover {
    color: #fff;
    opacity: .8;
    border-bottom: 1px solid #ddd
}

.videoTab button.active {
    color: #fff;
    border-bottom: 1px solid #fff
}

.tabcontentColor {
    display: none;
    padding: 6px 12px;
    border-top: none;
    opacity: 0
}

.tabcontentColor.active {
    display: block;
    opacity: 1
}

.DescriptionDivBottomColor2 {
    display: block;
    background-color: #1f1f1f
}

@media(min-width: 900px) {
    .DescriptionDivBottomColor2 {
        display: none
    }
}

#slider {
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border: none
}

@media(min-width: 640px) {
    #slider {
        width: 40%
    }
}

#slider.ui-widget-content {
    background: linear-gradient(to right, #ff2733, #ff6d49, #ff7d3d, #feaa3b, #faf35d, #00a175, #a2dbd3, #7bc1e5, #009bd4, #007aaf, #4160ba, #0ea6e9, #433085, #a03278, #fa76a3, #ffffff)
}

#slider.ui-slider-horizontal {
    height: .4em
}

.category {
    position: relative;
    overflow: hidden
}

.category--img {
    position: absolute;
    max-width: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1
}

.category--link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    position: absolute;
    top: 0;
    width: 100%
}

.category--link a {
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 0
}

@media(min-width: 900px) {
    .category--link a {
        font-size: 18px
    }
}

.category--link a:hover {
    text-decoration: none
}

.filter-container {
    display: none
}

@media(min-width: 900px) {
    .filter-container {
        background-color: #f5f5f5;
        display: block
    }
}

.show {
    display: block
}

.filterBtn {
    padding: 12px 0;
    cursor: pointer;
    text-align: center
}

.filterBtn:hover {
    text-decoration: none;
    background-color: #fff
}

.filterBtn--clear {
    color: #80c343;
    cursor: pointer
}

.filterBtn--clear:hover {
    text-decoration: none;
    color: #224449
}

@media(min-width: 1366px) {
    .filter-image--zoom {
        padding: 0 1rem
    }
}

.filter-image--zoom img {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -ms-transition: transform .3s ease;
    -o-transition: transform .3s ease
}

.filter-image--zoom:hover img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1)
}

.series-bottom-border {
    border-bottom: 1px solid #eee;
    padding: 32px 0
}

.series-bottom-border:last-child {
    border-bottom: none
}

.filterActive {
    text-decoration: none;
    background-color: #fff
}

.sub-nav {
    background-color: #eee;
    min-height: 70px;
    overflow: auto
}

.sub-nav nav {
    display: flex;
    justify-content: center
}

.sub-nav .sub-nav__gutter {
    margin: 0 1rem;
    list-style: none
}

.sub-nav .sub-nav__gutter a {
    display: inline-block;
    padding: 24px 0 19px;
    text-decoration: none;
    color: #757575
}

.sub-nav .sub-nav__gutter a:hover {
    color: #474747;
    border-bottom: 3px solid #c9c9c9
}

.sub-nav .sub-nav__gutter a.active {
    color: #333
}

.other-countries__body {
    width: 85%;
    margin: 0 auto 16px
}

@media(min-width: 900px) {
    .other-countries__body {
        width: 75%
    }
}

.other-countries__body:last-child {
    margin-bottom: 0
}

.other-countries__body .other-countries__list {
    display: grid;
    grid-column-gap: 24px;
    grid-template-columns: repeat(1, 1fr)
}

@media(min-width: 900px) {
    .other-countries__body .other-countries__list {
        grid-template-columns: repeat(3, 1fr)
    }

    .other-countries__body .other-countries__list .other-countries__item {
        padding: 0
    }
}

.other-countries__body .other-countries__list .other-countries__item:not(:first-child) {
    padding-left: 1em;
    padding-bottom: 16px
}

.other-countries__body .other-countries__list .other-countries__item .other-countries__heading {
    display: inline-block
}

.other-countries__body .other-countries__list .other-countries__item .other-countries__link p {
    margin-bottom: 0
}

.pop-up__container {
    background-color: rgba(0, 0, 0, .8);
    width: 100vw;
    height: 100vh;
    z-index: 90;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center
}

.pop-up__container .pop-up__box {
    background-color: #fff;
    position: relative;
    padding: 3rem;
    width: 100%
}

@media(min-width: 900px) {
    .pop-up__container .pop-up__box {
        max-width: 1200px;
        width: 50%
    }
}

.pop-up__container .pop-up__box .pop-up__close {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 1.5rem;
    cursor: pointer
}

.pop-up__container .pop-up__box .pop-up__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%
}

.pop-up__container .pop-up__box .pop-up__content .pop-up__warning {
    font-size: 4.5rem;
    color: #c00
}

.pop-up__container .pop-up__box .pop-up__content .pop-up__text {
    margin: 2rem 0 1rem
}

.pop-up__container .pop-up__box .pop-up__content .pop-up__button {
    display: flex;
    justify-content: space-between
}

.pop-up__container .pop-up__box .pop-up__content .pop-up__button a {
    padding: 12px 18px;
    border-radius: 5px;
    width: 100px;
    text-align: center;
    cursor: pointer
}

.pop-up__container .pop-up__box .pop-up__content .pop-up__button a:hover {
    text-decoration: none
}

.pop-up__container .pop-up__box .pop-up__content .pop-up__button .pop-up__remove {
    border: #c00 1px solid;
    color: #c00;
    margin-right: 1rem
}

.pop-up__container .pop-up__box .pop-up__content .pop-up__button .pop-up__cancel {
    border: #474747 1px solid;
    color: #474747
}

[data-pop-up] {
    display: none
}

.page__body .page-body-title {
    font-size: 34px
}

.page__body .page-body-description {
    font-size: 18px
}

.newsletter-subscribe {
    display: flex;
    flex-direction: column
}

.newsletter-subscribe__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 43px 24px 48px;
    position: relative
}

@media(min-width: 900px) {
    .newsletter-subscribe__inner {
        flex-direction: row
    }
}

.newsletter-subscribe__inner.newsletter-subscribe__response {
    display: none
}

.newsletter-subscribe__inner.newsletter-subscribe__response .newsletter-subscribe__title {
    text-align: center;
    margin: 0 auto
}

.newsletter-subscribe__title {
    font-size: 16px;
    line-height: 22px;
    max-width: 80%;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: .15px
}

@media(min-width: 900px) {
    .newsletter-subscribe__title {
        font-size: 1.25rem
    }
}

@media(min-width: 900px) {
    .newsletter-subscribe__title {
        flex: 0 1 50%;
        max-width: auto;
        margin-right: 62px;
        margin-bottom: 0;
        line-height: 25px
    }
}

.newsletter-subscribe__form {
    display: flex;
    flex: 1 1 100%;
    align-items: center;
    min-width: 270px;
    max-width: 335px
}

@media(min-width: 900px) {
    .newsletter-subscribe__form {
        flex: 0 1 30%;
        align-items: flex-start
    }
}

.newsletter-subscribe__group {
    position: relative;
    width: 100%;
    height: 50px;
    overflow: visible
}

.newsletter-subscribe__field {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #224449
}

.newsletter-subscribe__label {
    position: absolute
}

.newsletter-subscribe__input {
    flex: 1 1 100%;
    border: none;
    padding: 13px 13px 13px 18px;
    width: 100%;
    height: 100%
}

.newsletter-subscribe__input:focus {
    outline-color: rgba(0, 0, 0, 0);
    border-color: #4d90fe
}

.newsletter-subscribe__submit {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    min-width: auto;
    width: 48px;
    padding: 0;
    border-left: 1px solid #224449
}

.newsletter-subscribe__submit:focus {
    outline: #224449
}

.newsletter-subscribe__submit:hover {
    border-left: inherit
}

.newsletter-subscribe__error {
    display: none;
    color: red;
    position: absolute;
    top: 100%;
    font-size: 12px;
    line-height: 17px;
    padding-top: 5px
}

.conceptd .newsletter-subscribe,
.conceptd.newsletter-subscribe {
    background-color: #f0f0f0
}

.conceptd .newsletter-subscribe .newsletter-subscribe__title,
.conceptd.newsletter-subscribe .newsletter-subscribe__title {
    font-weight: 500
}

.conceptd .newsletter-subscribe .newsletter-subscribe__field,
.conceptd.newsletter-subscribe .newsletter-subscribe__field {
    border-radius: 999px;
    overflow: hidden;
    background-color: #fff;
    border-color: #89898b
}

.conceptd .newsletter-subscribe .newsletter-subscribe__input,
.conceptd.newsletter-subscribe .newsletter-subscribe__input {
    border: none
}

.conceptd .newsletter-subscribe .newsletter-subscribe__submit,
.conceptd.newsletter-subscribe .newsletter-subscribe__submit {
    border: none;
    border-radius: 100%;
    border: 5px solid #fff
}

.predator .newsletter-subscribe,
.predator.newsletter-subscribe {
    background-color: #222;
    color: #fff
}

.predator .newsletter-subscribe .newsletter-subscribe__field,
.predator.newsletter-subscribe .newsletter-subscribe__field {
    border: 1px solid #474747
}

.predator .newsletter-subscribe .newsletter-subscribe__input,
.predator.newsletter-subscribe .newsletter-subscribe__input {
    background-color: inherit;
    color: inherit;
    width: 100%;
    height: 100%;
    padding-left: 10px
}

.predator .newsletter-subscribe .newsletter-subscribe__input:focus,
.predator.newsletter-subscribe .newsletter-subscribe__input:focus {
    outline-color: rgba(0, 0, 0, 0)
}

.predator .newsletter-subscribe .newsletter-subscribe__submit,
.predator.newsletter-subscribe .newsletter-subscribe__submit {
    border-color: #474747
}


.page {
    padding: 0 24px;
    margin-bottom: 30px
}

.page__bodyCopy {
    padding: 0 24px
}

.page__title {
    margin: auto;
    max-width: 1920px
}

.page__body {
    margin: 2rem auto;
    max-width: 960px
}

.page__body p {
    font-size: .813rem
}

@media(min-width: 900px) {
    .page__body p {
        font-size: 16px
    }
}

.page__body a {
    text-decoration: underline
}

.page__body th,
.page__body td {
    padding: .25rem .5rem;
    border: 1px solid #ddd
}

.predator .page__body th,
.predator .page__body td {
    border-color: #474747
}

.page__body th {
    font-size: 16px
}

@media(min-width: 900px) {
    .page__body th {
        font-size: 1.25rem
    }
}

.page__body th:empty {
    border: none
}

.page__body td {
    font-size: 16px
}

@media(min-width: 900px) {
    .page__body td {
        font-size: 18px
    }
}

.page__body td small {
    display: inline-block;
    line-height: 1.2 !important
}

.page__body td[rowspan] {
    text-align: center;
    font-size: .813rem
}

@media(min-width: 900px) {
    .page__body td[rowspan] {
        font-size: 16px
    }
}

@media(max-width: 899.98px) {
    .page__body tr {
        padding: 1rem 0 .5rem
    }

    .predator .page__body tr {
        border-color: #474747
    }

    .page__body th,
    .page__body td {
        padding: 0 0 .5rem
    }

    .page__body td[rowspan] {
        text-align: left
    }
}

.page__body table {
    border-collapse: collapse
}

.page__body table thead tr td:first-child {
    text-align: center;
    border-top: hidden;
    border-left: hidden;
    border-right: 1px solid #ddd
}

.page__body table thead td,
.page__body table thead td[rowspan] {
    font-size: 20px;
    text-align: left
}

.page__body table tbody {
    border-right: 1px solid #ddd
}

.page__body table tbody td,
.page__body table tbody td[rowspan] {
    font-size: 18px;
    text-align: left
}

.page__body table.col--width-2 td {
    width: 50%
}

.page__body table.col--width-3 td {
    width: 33.3333333333%
}

.page__body table.col--width-4 td {
    width: 25%
}

@media screen and (max-width: 899px) {
    .page__body .page-body-description {
        font-size: 16px
    }

    .page__body table {
        border: none
    }

    .page__body table thead {
        display: none
    }

    .page__body table tbody {
        border: none
    }

    .page__body table tbody tr {
        border-bottom: 1px solid #c9c9c9;
        margin-bottom: 30px
    }

    .page__body table tbody td,
    .page__body table tbody td[rowspan] {
        width: 100%;
        font-size: 16px;
        border: none
    }

    .page__body table tbody td:first-child strong {
        display: inline-block;
        margin-bottom: 20px
    }

    .page__body table tbody td:last-child {
        margin-bottom: 30px
    }

    .page__body .normal__table {
        overflow-x: scroll
    }

    .page__body .normal__table table tbody {
        border: none
    }

    .page__body .normal__table table tbody tr {
        padding: 0;
        flex-flow: row wrap;
        width: 100%;
        margin-bottom: 0;
        border-bottom: none
    }

    .page__body .normal__table table tbody td {
        width: 25%;
        padding: .25rem .5rem;
        border: 1px solid #ddd;
        margin: 0
    }

    .page__body .normal__table table tbody td strong {
        display: inline-block;
        margin-bottom: 0
    }

    .page__body .normal__table table tbody .td--none {
        display: none
    }

    .page__body .normal__table table.col--width-2 td,
    .page__body .normal__table table.col--width-3 td,
    .page__body .normal__table table.col--width-4 td {
        width: 25%
    }

    .page__body table.list__items {
        border: none
    }

    .page__body table.list__items thead {
        display: none
    }

    .page__body table.list__items tbody {
        display: block;
        border: none;
        font-size: 16px
    }

    .page__body table.list__items tbody tr {
        border-bottom: 1px solid #c9c9c9;
        margin-bottom: 30px
    }

    .page__body table.list__items tbody td,
    .page__body table.list__items tbody td[rowspan] {
        width: 100%;
        font-size: 16px;
        border: none;
        display: block
    }

    .page__body table.list__items tbody td:first-child strong {
        display: inline-block;
        margin-bottom: 20px
    }

    .page__body table.list__items tbody td:last-child {
        margin-bottom: 30px
    }

    .page__body table.table__style {
        border: none;
        display: grid
    }

    .page__body table.table__style tbody {
        border: none
    }

    .page__body table.table__style tbody tr {
        display: flex;
        padding: 0;
        flex-flow: row wrap;
        width: 100%;
        margin: 0;
        border-bottom: none
    }

    .page__body table.table__style tbody td {
        width: 50%;
        padding: .25rem .5rem;
        display: flex;
        border: 1px solid #ddd;
        margin: 0
    }

    .page__body table.table__style tbody .td--none {
        display: none
    }

    .page__body table.table__style.col--width-2 td,
    .page__body table.table__style.col--width-3 td,
    .page__body table.table__style.col--width-4 td {
        width: 50%
    }
}

#main {
    color: #474747;
    background-color: #fff
}

#main.conceptd {
    color: #474747
}

#main.predator {
    color: #fff;
    background-color: #000
}

.predator .hero {
    background-color: #1a1a1a
}

.white .hero {
    background-color: #fff
}

.light .hero {
    background-color: #fafafa
}

.dark .hero {
    background-color: #1a1a1a
}

.black .hero {
    background-color: #000
}

.hero--border::after {
    content: "";
    height: 7px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0) linear-gradient(270deg, #80c143, #357b53 65%, #243f43) 0 0 no-repeat
}

.conceptd .hero--border::after {
    content: "";
    height: 7px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0) linear-gradient(270deg, #bf9474, #ca4e21) 0 0 no-repeat
}

.predator .hero--border::after {
    content: "";
    height: 7px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0) linear-gradient(270deg, #11dfc3, #00aecd) 0 0 no-repeat
}

.dark .hero__caption,
.dark .hero__title,
.dark .hero__overline,
.dark .hero__text,
.dark .hero__info,
.dark .hero__info-text {
    color: #fff
}

.black .hero__caption,
.black .hero__title,
.black .hero__overline,
.black .hero__text,
.black .hero__info,
.black .hero__info-text {
    color: #fff
}

.hero--campaign {
    min-height: 512px
}

.hero__title--campaign {
    font-size: 30px;
    letter-spacing: -0.45px
}

@media(min-width: 900px) {
    .hero__title--campaign {
        font-size: 38px;
        letter-spacing: -0.57px
    }
}

.hero__BigTitle--campaign {
    font-size: 2.5rem;
    letter-spacing: -0.45px
}

@media(min-width: 900px) {
    .hero__BigTitle--campaign {
        font-size: 3.85rem;
        letter-spacing: -0.57px
    }
}

.hero__text--campaign {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 30px
}

@media(min-width: 900px) {
    .hero__text--campaign {
        font-size: 18px
    }
}

@media(min-width: 900px) {
    .hero__text--campaign {
        line-height: 28px;
        margin-bottom: 40px
    }
}

.hero__image--campaign {
    min-height: 512px
}

.hero__image--campaign img {
    min-height: 512px
}

.conceptd .section {
    background-color: #fff;
    color: #25282a
}

.predator .section {
    background-color: #000;
    color: #fff
}

.section.white {
    background-color: #fff
}

.predator .section.white {
    color: #000
}

.section.light {
    background-color: #fafafa
}

.predator .section.light {
    color: #000
}

.section.dark {
    background-color: #1a1a1a;
    color: #fff
}

.section.black {
    background-color: #000;
    color: #fff
}

.section--border-bottom {
    border-bottom: 1px solid #eee
}

.section--border-bottom:last-child {
    border-bottom: 0
}

.section--social a {
    text-decoration: underline
}

.predator .section--article {
    background-color: #000
}

/* 
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #222;
    font-weight: 700
}

.conceptd h1,
.conceptd h2,
.conceptd h3,
.conceptd h4,
.conceptd h5,
.conceptd h6,
.conceptd .h1,
.conceptd .h2,
.conceptd .h3,
.conceptd .h4,
.conceptd .h5,
.conceptd .h6 {
    color: #25282a;
    font-weight: 400
}

.predator h1,
.predator h2,
.predator h3,
.predator h4,
.predator h5,
.predator h6,
.predator .h1,
.predator .h2,
.predator .h3,
.predator .h4,
.predator .h5,
.predator .h6 {
    color: #fff
}

.predator .white h1,
.predator .white h2,
.predator .white h3,
.predator .white h4,
.predator .white h5,
.predator .white h6,
.predator .white .h1,
.predator .white .h2,
.predator .white .h3,
.predator .white .h4,
.predator .white .h5,
.predator .white .h6 {
    color: #000
}

.predator .light h1,
.predator .light h2,
.predator .light h3,
.predator .light h4,
.predator .light h5,
.predator .light h6,
.predator .light .h1,
.predator .light .h2,
.predator .light .h3,
.predator .light .h4,
.predator .light .h5,
.predator .light .h6 {
    color: #000
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark .h1,
.dark .h2,
.dark .h3,
.dark .h4,
.dark .h5,
.dark .h6 {
    color: #fff
}

.black h1,
.black h2,
.black h3,
.black h4,
.black h5,
.black h6,
.black .h1,
.black .h2,
.black .h3,
.black .h4,
.black .h5,
.black .h6 {
    color: #fff
}

h6,
.h6 {
    font-weight: 600
}

.conceptd h6,
.conceptd .h6 {
    font-weight: 400
}

.search-box__input::-webkit-input-placeholder {
    color: #474747
}

.search-box__input::-moz-placeholder {
    color: #474747
}

.search-box__input:-ms-input-placeholder {
    color: #474747
}

.b1,
.b2,
.p1,
.search-box__input,
.search-box__input::placeholder {
    color: #474747
}

.conceptd .search-box__input::-webkit-input-placeholder {
    color: #25282a
}

.conceptd .search-box__input::-moz-placeholder {
    color: #25282a
}

.conceptd .search-box__input:-ms-input-placeholder {
    color: #25282a
}

.conceptd .b1,
.conceptd .b2,
.conceptd .p1,
.conceptd .search-box__input,
.conceptd .search-box__input::placeholder {
    color: #25282a
}

.predator .search-box__input::-webkit-input-placeholder {
    color: #fff
}

.predator .search-box__input::-moz-placeholder {
    color: #fff
}

.predator .search-box__input:-ms-input-placeholder {
    color: #fff
}

.predator .b1,
.predator .b2,
.predator .p1,
.predator .search-box__input,
.predator .search-box__input::placeholder {
    color: #fff
}

.predator .white .search-box__input::-webkit-input-placeholder {
    color: #000
}

.predator .white .search-box__input::-moz-placeholder {
    color: #000
}

.predator .white .search-box__input:-ms-input-placeholder {
    color: #000
}

.predator .white .b1,
.predator .white .b2,
.predator .white .p1,
.predator .white .search-box__input,
.predator .white .search-box__input::placeholder {
    color: #000
}

.predator .light .search-box__input::-webkit-input-placeholder {
    color: #000
}

.predator .light .search-box__input::-moz-placeholder {
    color: #000
}

.predator .light .search-box__input:-ms-input-placeholder {
    color: #000
}

.predator .light .b1,
.predator .light .b2,
.predator .light .p1,
.predator .light .search-box__input,
.predator .light .search-box__input::placeholder {
    color: #000
}

.dark .search-box__input::-webkit-input-placeholder {
    color: #fff
}

.dark .search-box__input::-moz-placeholder {
    color: #fff
}

.dark .search-box__input:-ms-input-placeholder {
    color: #fff
}

.dark .b1,
.dark .b2,
.dark .p1,
.dark .search-box__input,
.dark .search-box__input::placeholder {
    color: #fff
}

.black .search-box__input::-webkit-input-placeholder {
    color: #fff
}

.black .search-box__input::-moz-placeholder {
    color: #fff
}

.black .search-box__input:-ms-input-placeholder {
    color: #fff
}

.black .b1,
.black .b2,
.black .p1,
.black .search-box__input,
.black .search-box__input::placeholder {
    color: #fff
}

.predator .white .t1,
.predator .white .c1,
.predator .white .l1 {
    color: #000
}

.predator .light .t1,
.predator .light .c1,
.predator .light .l1 {
    color: #000
}

a {
    color: #222
}

.conceptd a {
    color: #25282a
}

.predator a {
    color: #fff
}

a:hover {
    color: #222
}

.conceptd a:hover {
    color: #25282a
}

.predator a:hover {
    color: #fff
}

.predator .btn {
    color: #fff
}

.btn--disabled {
    color: #000;
    background-color: #fff;
    border-color: #89898b
}

.btn--disabled:hover {
    background-color: #c9c9c9;
    border-color: #89898b
}

.conceptd .btn--disabled {
    background-color: #fff;
    border-color: #89898b;
    border-radius: 100px;
    color: #89898b;
    font-weight: 500
}

.conceptd .btn--disabled:hover {
    background-color: #c9c9c9;
    border-color: #89898b;
    color: #fff
}

.predator .btn--disabled {
    background-color: #000;
    border-color: #89898b;
    border-radius: 0;
    color: #fff
}

.predator .btn--disabled:hover {
    color: #000;
    background-color: #c9c9c9;
    border-color: #89898b
}

.predator .white .btn--disabled {
    color: #fff
}

.predator .white .btn--disabled:hover {
    color: #fff
}

.predator .light .btn--disabled {
    color: #fff
}

.predator .light .btn--disabled:hover {
    color: #fff
}

.dark .btn--disabled {
    color: #000
}

.dark .btn--disabled:hover {
    color: #000
}

.conceptd .dark .btn--disabled {
    color: #89898b
}

.predator .dark .btn--disabled {
    color: #fff
}

.predator .dark .btn--disabled:hover {
    color: #000
}

.black .btn--disabled {
    color: #000
}

.black .btn--disabled:hover {
    color: #000
}

.conceptd .black .btn--disabled {
    color: #89898b
}

.predator .black .btn--disabled {
    color: #fff
}

.predator .black .btn--disabled:hover {
    color: #fff
}

.btn--disabled.neutral-black {
    background-color: #000;
    color: #fff;
    border-color: #fff
}

.btn--disabled.neutral-black:hover {
    background-color: #fff;
    color: #000;
    border-color: #000
}

.btn--disabled.neutral-white {
    background-color: #fff;
    color: #000;
    border-color: #000
}

.btn--disabled.neutral-white:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff
}

.btn--primary {
    background-color: #80c343
}

.btn--primary:hover {
    background-color: #fff;
    border-color: #80c343
}

.conceptd .btn--primary {
    background-color: #ca4e21;
    border-radius: 100px;
    color: #fff;
    font-weight: 500
}

.conceptd .btn--primary:hover {
    background-color: #fff;
    border-color: #ca4e21;
    color: #ca4e21
}

.predator .btn--primary {
    background-color: #00aecd;
    color: #000
}

.predator .btn--primary:hover {
    background-color: #000;
    border-color: #00aecd;
    color: #fff
}

.btn--primary.neutral-black {
    background-color: #000;
    color: #fff
}

.btn--primary.neutral-black:hover {
    background-color: #fff;
    color: #000;
    border-color: #000
}

.btn--primary.neutral-white {
    background-color: #fff;
    color: #000
}

.btn--primary.neutral-white:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff
}

.btn--secondary {
    color: #000;
    background-color: #fff;
    border-color: #80c343;
    border-radius: 0
}

.btn--secondary:hover {
    background-color: #80c343;
    border-color: #80c343
}

.conceptd .btn--secondary {
    background-color: #fff;
    border-color: #ca4e21;
    border-radius: 100px;
    color: #ca4e21;
    font-weight: 500
}

.conceptd .btn--secondary:hover {
    background-color: #ca4e21;
    border-color: #ca4e21;
    color: #fff
}

.predator .btn--secondary {
    background-color: #000;
    border-color: #00aecd;
    border-radius: 0;
    color: #fff
}

.predator .btn--secondary:hover {
    color: #000;
    background-color: #00aecd;
    border-color: #00aecd
}

.predator .white .btn--secondary {
    color: #fff
}

.predator .white .btn--secondary:hover {
    color: #fff
}

.predator .light .btn--secondary {
    color: #fff
}

.predator .light .btn--secondary:hover {
    color: #fff
}

.dark .btn--secondary {
    color: #000
}

.dark .btn--secondary:hover {
    color: #000
}

.conceptd .dark .btn--secondary {
    color: #ca4e21
}

.conceptd .dark .btn--secondary:hover {
    color: #fff
}

.predator .dark .btn--secondary {
    color: #fff
}

.predator .dark .btn--secondary:hover {
    color: #000
}

.black .btn--secondary {
    color: #000
}

.black .btn--secondary:hover {
    color: #000
}

.conceptd .black .btn--secondary {
    color: #ca4e21
}

.conceptd .black .btn--secondary:hover {
    color: #fff
}

.predator .black .btn--secondary {
    color: #fff
}

.predator .black .btn--secondary:hover {
    color: #fff
}

.btn--secondary.neutral-black {
    background-color: #000;
    color: #fff;
    border-color: #fff
}

.btn--secondary.neutral-black:hover {
    background-color: #fff;
    color: #000;
    border-color: #000
}

.btn--secondary.neutral-white {
    background-color: #fff;
    color: #000;
    border-color: #000
}

.btn--secondary.neutral-white:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff
}

.btn--tertiary {
    color: #474747;
    border: 0 none;
    border-bottom: 2px solid #80c343;
    padding: 14px 0 4px;
    min-width: auto
}

.btn--tertiary.acer {
    border-color: #80c343
}

.btn--tertiary.predator {
    border-color: #00aecd
}

.btn--tertiary.conceptd {
    border: 0 none;
    color: #ca4e21 !important;
    font-weight: 500
}

.btn--tertiary.conceptd::after {
    content: "";
    position: relative;
    left: 2px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
} */

.btn--tertiary.conceptd:hover {
    color: #bf9474
}

.btn--tertiary.conceptd:hover::after {
    content: "";
    position: relative;
    left: 2px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.btn--tertiary:hover {
    border-color: #224449;
    text-decoration: none
}

.conceptd .btn--tertiary {
    border: 0 none;
    color: #ca4e21;
    font-weight: 500
}

.conceptd .btn--tertiary::after {
    content: "";
    position: relative;
    left: 2px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.conceptd .btn--tertiary:hover {
    color: #ca4e21
}

.conceptd .btn--tertiary:hover::after {
    content: "";
    position: relative;
    left: 2px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.predator .btn--tertiary {
    color: #fff;
    border-color: #00aecd
}

.predator .btn--tertiary:hover {
    color: #fff;
    border-color: #11dfc3
}

.predator .white .btn--tertiary {
    color: #000
}

.predator .white .btn--tertiary:hover {
    color: #000
}

.predator .light .btn--tertiary {
    color: #000
}

.predator .light .btn--tertiary:hover {
    color: #000
}

.dark .btn--tertiary {
    color: #fff
}

.dark .btn--tertiary:hover {
    color: #fff
}

.conceptd .dark .btn--tertiary {
    color: #ca4e21
}

.black .btn--tertiary {
    color: #fff
}

.black .btn--tertiary:hover {
    color: #fff
}

.conceptd .black .btn--tertiary {
    color: #ca4e21
}

.btn--outline {
    display: inline-flex;
    border: 1px solid #80c343
}

.btn--outline:hover {
    border-color: #333
}

.conceptd .btn--outline {
    border-color: #ca4e21;
    font-weight: 500
}

.conceptd .btn--outline:hover {
    border-color: #fff
}

.predator .btn--outline {
    border-color: #00aecd
}

.predator .btn--outline:hover {
    border-color: #fff
}

.conceptd .btn--filter {
    background-color: rgba(202, 78, 33, .15);
    border-color: #ca4e21;
    border-radius: 100px;
    font-weight: 400
}

.predator .btn--filter {
    background-color: rgba(0, 174, 205, .15);
    border-color: #00aecd;
    color: #fff
}

.black .btn--filter {
    color: #fff
}

.btn--link {
    font-weight: 400;
    white-space: nowrap;
    align-items: center;
    color: #222
}

.btn--link .material-icons {
    font-size: inherit
}

.btn--link:hover {
    color: #80c343
}

.btn--link:disabled,
.btn--link.disabled {
    color: #89898b;
    pointer-events: none
}

.conceptd .btn--link {
    color: #25282a
}

.conceptd .btn--link:hover {
    color: #ca4e21
}

.predator .btn--link {
    color: #fff
}

.predator .btn--link:hover {
    color: #00aecd
}

.black .btn--link {
    color: #fff
}

.btn--video {
    font-weight: 400
}

.btn--video::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #80c343;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.btn--video:hover::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #80c343;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

@media(min-width: 2900px) {
    .btn--video:hover::before {
        font-size: 32px
    }
}

@media(min-width: 2900px) {
    .btn--video::before {
        font-size: 32px
    }
}

.conceptd .btn--video::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #ca4e21;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.conceptd .btn--video:hover::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #ca4e21;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

@media(min-width: 2900px) {
    .conceptd .btn--video:hover::before {
        font-size: 32px
    }
}

@media(min-width: 2900px) {
    .conceptd .btn--video::before {
        font-size: 32px
    }
}

.predator .btn--video::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #00aecd;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.predator .btn--video:hover::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: #00aecd;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

@media(min-width: 2900px) {
    .predator .btn--video:hover::before {
        font-size: 32px
    }
}

@media(min-width: 2900px) {
    .predator .btn--video::before {
        font-size: 32px
    }
}

.white .btn--video {
    color: #000
}

.white .btn--video:hover {
    color: #000
}

.light .btn--video {
    color: #000
}

.light .btn--video:hover {
    color: #000
}

.dark .btn--video {
    color: #fff
}

.dark .btn--video:hover {
    color: #fff
}

.black .btn--video {
    color: #fff
}

.black .btn--video:hover {
    color: #fff
}

.btn--video.neutral-white {
    color: #000
}

.btn--video.neutral-white::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.btn--video.neutral-white:hover {
    color: #000
}

.btn--video.neutral-white:hover::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.btn--video.neutral-black {
    color: #fff
}

.btn--video.neutral-black::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.btn--video.neutral-black:hover {
    color: #fff
}

.btn--video.neutral-black:hover::before {
    content: "";
    position: relative;
    right: 5px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

@media(min-width: 900px) {
    .conceptd .card-feature__btn {
        border-radius: 0
    }
}

.btn--media {
    color: #474747;
    border: 0 none;
    border-bottom: 2px solid #80c343;
    padding: 8px 0 4px;
    min-width: auto
}

.btn--media:hover {
    border-color: #224449;
    text-decoration: none
}

.conceptd .btn--media {
    border: 0 none;
    color: #ca4e21;
    font-weight: 500
}

.conceptd .btn--media::after {
    content: "";
    position: relative;
    left: 2px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.conceptd .btn--media:hover {
    color: #ca4e21
}

.conceptd .btn--media:hover::after {
    content: "";
    position: relative;
    left: 2px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga"
}

.predator .btn--media {
    color: #fff;
    border-color: #00aecd
}

.predator .btn--media:hover {
    color: #fff;
    border-color: #11dfc3
}

.predator .white .btn--media {
    color: #000
}

.predator .white .btn--media:hover {
    color: #000
}

.predator .light .btn--media {
    color: #000
}

.predator .light .btn--media:hover {
    color: #000
}

.dark .btn--media {
    color: #fff
}

.dark .btn--media:hover {
    color: #fff
}

.conceptd .dark .btn--media {
    color: #ca4e21
}

.black .btn--media {
    color: #fff
}

.black .btn--media:hover {
    color: #fff
}

.conceptd .black .btn--media {
    color: #ca4e21
}

.menu--global__link {
    color: #474747
}

.conceptd .menu--global__link {
    color: #474747
}

.predator .menu--global__link {
    color: #fff
}

.menu--global__link:hover {
    text-decoration: none;
    color: #474747
}

.conceptd .menu--global__link:hover {
    color: #25282a
}

.predator .menu--global__link:hover {
    color: #fff
}

.menu--global__link:hover::after,
.is-active>.menu--global__link::after,
.is-open>.menu--global__link::after,
li:hover>.menu--global__link::after {
    content: "";
    border-bottom: 3px solid #80c343;
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100%;
    z-index: 1
}

.conceptd .menu--global__link:hover::after,
.conceptd .is-active>.menu--global__link::after,
.conceptd .is-open>.menu--global__link::after,
.conceptd li:hover>.menu--global__link::after {
    border-color: #ca4e21
}

.predator .menu--global__link:hover::after,
.predator .is-active>.menu--global__link::after,
.predator .is-open>.menu--global__link::after,
.predator li:hover>.menu--global__link::after {
    border-color: #00aecd
}

.menu--local {
    text-align: left
}

.menu--local__link {
    text-decoration: none;
    color: #474747
}

.conceptd .menu--local__link {
    color: #25282a
}

.predator .menu--local__link {
    color: #fff
}

.menu--local__link:hover {
    text-decoration: none;
    color: #474747
}

.conceptd .menu--local__link:hover {
    color: #25282a
}

.predator .menu--local__link:hover {
    color: #fff
}

li:hover .menu--local__link::after,
.menu--local__link:hover::after,
.is-active>.menu--local__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    min-width: 100%;
    border-bottom: 3px solid #80c343
}

.conceptd li:hover .menu--local__link::after,
.conceptd .menu--local__link:hover::after,
.conceptd .is-active>.menu--local__link::after {
    border-color: #ca4e21
}

.predator li:hover .menu--local__link::after,
.predator .menu--local__link:hover::after,
.predator .is-active>.menu--local__link::after {
    border-color: #00aecd
}

.menu--local__icon {
    fill: #80c343
}

.conceptd .menu--local__icon {
    fill: #ca4e21
}

.predator .menu--local__icon {
    fill: #00aecd
}

.menu-mega {
    background-color: #e0e0e0
}

.conceptd .menu-mega {
    background-color: #f0f0f0
}

.predator .menu-mega {
    background-color: #222
}

.menu-mega__link {
    color: #474747
}

.conceptd .menu-mega__link {
    color: #25282a
}

.predator .menu-mega__link {
    color: #fff
}

.menu-mega__link:hover {
    font-weight: 600;
    text-decoration: none;
    color: #474747
}

.conceptd .menu-mega__link:hover {
    color: #25282a
}

.predator .menu-mega__link:hover {
    color: #fff
}

.menu--dropdown__list {
    background: #fff;
    box-shadow: 0px 0px .75rem rgba(0, 0, 0, .3)
}

.predator .menu--dropdown__list {
    background-color: #000
}

.menu--dropdown__item {
    border-bottom: 1px solid #c9c9c9
}

.conceptd .menu--dropdown__item {
    border-color: #c9c9c9
}

.predator .menu--dropdown__item {
    border-color: #c9c9c9
}

.menu--dropdown__item:last-child {
    border-bottom: 0
}

.menu--dropdown__link {
    text-decoration: none;
    color: #474747
}

.conceptd .menu--dropdown__link {
    color: #25282a
}

.predator .menu--dropdown__link {
    color: #fff
}

.menu--dropdown__link:hover {
    text-decoration: none;
    color: #474747;
    font-weight: 700
}

.conceptd .menu--dropdown__link:hover {
    color: #25282a
}

.predator .menu--dropdown__link:hover {
    color: #fff
}

.shop-now {
    background-color: #fafafa
}

.predator .shop-now {
    background-color: #1a1a1a
}

.nav-global {
    background-color: #f0f0f0
}

.predator .nav-global {
    background-color: #000
}

.promo-slot {
    background-color: #224449;
    color: #fff
}

.conceptd .promo-slot {
    background-color: #bf9474;
    color: #25282a
}

.predator .promo-slot {
    background-color: #11dfc3;
    color: #000
}

.promo-slot__text {
    font-weight: 700;
    text-align: center;
    color: #fff
}

.conceptd .promo-slot__text {
    color: #25282a
}

.predator .promo-slot__text {
    color: #000
}

.promo-slot__link {
    font-weight: 500;
    text-decoration: underline;
    text-underline-position: under;
    text-transform: none
}

.promo-slot__link,
.promo-slot__close .material-icons,
.promo-slot__previous .material-icons,
.promo-slot__next .material-icons {
    color: #fff
}

.conceptd .promo-slot__link,
.conceptd .promo-slot__close .material-icons,
.conceptd .promo-slot__previous .material-icons,
.conceptd .promo-slot__next .material-icons {
    color: #000
}

.predator .promo-slot__link,
.predator .promo-slot__close .material-icons,
.predator .promo-slot__previous .material-icons,
.predator .promo-slot__next .material-icons {
    color: #000
}

.promo-slot__link:hover,
.promo-slot__close .material-icons:hover,
.promo-slot__previous .material-icons:hover,
.promo-slot__next .material-icons:hover {
    color: #fff
}

.conceptd .promo-slot__link:hover,
.conceptd .promo-slot__close .material-icons:hover,
.conceptd .promo-slot__previous .material-icons:hover,
.conceptd .promo-slot__next .material-icons:hover {
    color: #25282a
}

.predator .promo-slot__link:hover,
.predator .promo-slot__close .material-icons:hover,
.predator .promo-slot__previous .material-icons:hover,
.predator .promo-slot__next .material-icons:hover {
    color: #000
}

.system-message {
    font-family: "Noto Sans", sans-serif;
    background-color: #ffd800
}

.system-message .system-message__text,
.system-message .material-icons {
    color: #474747
}

.conceptd .system-message .system-message__text,
.conceptd .system-message .material-icons {
    color: #25282a
}

.predator .system-message .system-message__text,
.predator .system-message .material-icons {
    color: #000
}

.system-message .system-message__text:hover,
.system-message .material-icons:hover {
    color: #474747
}

.conceptd .system-message .system-message__text:hover,
.conceptd .system-message .material-icons:hover {
    color: #25282a
}

.predator .system-message .system-message__text:hover,
.predator .system-message .material-icons:hover {
    color: #000
}

.system-message .system-message__text:hover {
    text-decoration: underline
}

.system-message .material-icons:hover {
    text-decoration: none
}

.system-message.error,
.system-message.error .system-message__text,
.system-message.error .material-icons {
    background-color: #c00;
    color: #fff
}

.system-message.error:hover,
.system-message.error .system-message__text:hover,
.system-message.error .material-icons:hover {
    color: #fff
}

.card__tags {
    color: #474747
}

.conceptd .card__tags {
    color: #25282a
}

.predator .card__tags {
    color: #fff
}

.dark .card__tags {
    color: #fff
}

.black .card__tags {
    color: #fff
}

.predator .white .card__text {
    color: #000
}

.predator .light .card__text {
    color: #000
}

.dark .card__text {
    color: #fff
}

.black .card__text {
    color: #fff
}

.card-overlay {
    background-color: rgba(0, 0, 0, 0)
}

.card-overlay--hover::after {
    content: "";
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 5;
    transition: background-color .15s ease-in-out
}

.card-overlay--hover:hover::after {
    background-color: #80c343
}

.conceptd .card-overlay--hover:hover::after {
    background-color: #ca4e21
}

.predator .card-overlay--hover:hover::after {
    background-color: #00aecd
}

.card-overlay__body {
    transition: background-color .15s ease-in-out;
    background-color: rgba(255, 255, 255, .8)
}

.card-overlay__body:hover {
    background-color: rgba(255, 255, 255, .9)
}

.predator .card-overlay__body {
    background-color: rgba(0, 0, 0, .6);
    color: #fff
}

.predator .card-overlay__body:hover {
    background-color: rgba(0, 0, 0, .7);
    color: #fff
}

.dark .card-overlay__body {
    background-color: rgba(0, 0, 0, .6);
    color: #fff
}

.dark .card-overlay__body:hover {
    background-color: rgba(0, 0, 0, .7);
    color: #fff
}

.black .card-overlay__body {
    background-color: rgba(0, 0, 0, .6);
    color: #fff
}

.black .card-overlay__body:hover {
    background-color: rgba(0, 0, 0, .7);
    color: #fff
}

.card-product__promo {
    background-color: #e2f8cd;
    border-left: 2px solid #80c343;
    color: #222
}

.card-product__promo strong {
    color: #224449
}

.conceptd .card-product__promo {
    color: #25282a;
    background-color: rgba(220, 88, 42, .05);
    border-color: #ca4e21
}

.conceptd .card-product__promo strong {
    color: #bf9474
}

.predator .card-product__promo {
    background-color: rgba(0, 174, 205, .2);
    border-color: #00aecd;
    color: #fff
}

.predator .card-product__promo strong {
    color: #11dfc3
}

@media(min-width: 85.375em) {
    .conceptd .card-feature:hover {
        border-top: 4px solid #ca4e21;
        box-shadow: 0 5px .8rem rgba(34, 34, 34, .3)
    }

    .predator .card-feature:hover {
        background-color: #000;
        border-top: 4px solid #00aecd;
        box-shadow: 0 5px .8rem rgba(34, 34, 34, .3)
    }

    .dark .card-feature:hover {
        background-color: #000;
        box-shadow: 0 5px .8rem rgba(34, 34, 34, .3)
    }
}

@media(min-width: 900px) {
    .card-feature__btn {
        background-color: #80c343;
        color: #000
    }

    .card-feature__btn:hover {
        background-color: #80c343
    }

    .conceptd .card-feature__btn {
        border-radius: 0
    }

    .conceptd .card-feature__btn:hover {
        background-color: #ca4e21;
        color: #fff
    }

    .predator .card-feature__btn:hover {
        background-color: #00aecd;
        color: #000
    }
}

@media(min-width: 900px) {
    .conceptd .card__btn--feature {
        border-radius: 0
    }
}

/* .footer-nav {
    background-color: #fafafa
}

.conceptd .footer-nav {
    background-color: #fff
}

.predator .footer-nav {
    background-color: #1a1a1a
}

.footer-nav__section {
    border-bottom: 1px solid #c9c9c9
}

.footer-nav__section:last-child {
    border: 0 none
}

@media(min-width: 900px) {
    .footer-nav__section {
        border: none
    }
}

.footer-nav__title {
    color: #222;
    font-weight: 600
}

.is-open>.footer-nav__title {
    border-bottom: 1px solid #c9c9c9
}

@media(min-width: 900px) {
    .is-open>.footer-nav__title {
        border: 0 none
    }
}

.conceptd .footer-nav__title {
    font-weight: 400
}

.footer-nav__caret {
    color: #80c343
}

.conceptd .footer-nav__caret {
    color: #ca4e21
}

.predator .footer-nav__caret {
    color: #00aecd
}

@media(min-width: 900px) {
    .footer-nav__caret {
        display: none
    }
}

.footer-nav__link {
    border-bottom: 1px solid #c9c9c9
}

@media(min-width: 900px) {
    .footer-nav__link {
        border: 0 none
    }
} */

/* .pagination-component__stats,
.pagination-component__link {
    color: #474747
}

.conceptd .pagination-component__stats,
.conceptd .pagination-component__link {
    color: #474747
}

.predator .pagination-component__stats,
.predator .pagination-component__link {
    color: #fff
}

.cookie-bar {
    background-color: #fff;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3)
}

.predator .cookie-bar {
    background-color: #1a1a1a
}

.cookie-bar__text {
    line-height: 19px
}

@media(min-width: 900px) {
    .cookie-bar__text {
        width: 80%;
        line-height: 24px
    }
}

.cookie-bar__text>a {
    text-decoration: underline
}

.conceptd .case-study__tag {
    color: #25282a
}

.dark .case-study__tag {
    color: #fff
}

.black .case-study__tag {
    color: #fff
}

.case-study__social-list {
    margin-bottom: 30px
}

.case-study__social-list .social-list__item {
    background-color: #474747
}

.predator .white .case-study__main p {
    color: #000
}

.predator .light .case-study__main p {
    color: #000
}

.conceptd .social-list__item {
    color: #fff
}

.conceptd .social-list__link {
    color: #fff
}

.conceptd .social-list__link:hover {
    color: #ca4e21
}

.predator .social-list__link {
    color: #fff
}

.predator .social-list__link:hover {
    color: #00aecd
}

.dark .social-media-feed__scrollbar {
    background-color: #363636
}

.dark .social-media-feed__scrollbar .swiper-scrollbar-drag {
    background-color: #747474
}

.black .social-media-feed__scrollbar {
    background-color: #363636
}

.black .social-media-feed__scrollbar .swiper-scrollbar-drag {
    background-color: #747474
}

.event-details__card {
    border: 1px solid #757575
}

.conceptd .event-details__card {
    border-radius: 4px
}

.dark .event-details__card {
    border-color: #fff;
    color: #fff
}

.predator .event-details__card {
    border-color: #474747
}

.black .event-details__card {
    border-color: #fff;
    color: #fff
}

.predator .classic-filter__top {
    background-image: linear-gradient(#757575, #757575), linear-gradient(#000000, #000000), linear-gradient(#757575, #757575), linear-gradient(#000000, #000000);
    background-size: 100% 1px, 100% calc(100% - 2px), 100% calc(100% - 1px), 100% 100%;
    background-repeat: no-repeat
}

.black .classic-filter__top {
    background-image: linear-gradient(#757575, #757575), linear-gradient(#000000, #000000), linear-gradient(#757575, #757575), linear-gradient(#000000, #000000);
    background-size: 100% 1px, 100% calc(100% - 2px), 100% calc(100% - 1px), 100% 100%;
    background-repeat: no-repeat
}

.conceptd .badge::after {
    background-color: #ca4e21
}

.predator .badge::after {
    border: 1px solid #000;
    background-color: #00aecd;
    color: #fff
}

.predator .dropdown__item {
    background-color: #000;
    box-shadow: 0px 0px .75rem rgba(0, 0, 0, .3)
}

.predator .cart-mini__body::after {
    background: linear-gradient(transparent, #000000)
}

.dark .breadcrumb__link {
    color: #fff
}

.light .breadcrumb__link {
    color: #000
}

.dark .breadcrumb__item {
    color: #fff
}

.light .breadcrumb__item {
    color: #000
}

.dark .breadcrumb__item--ellipsis {
    color: #fff
}

.light .breadcrumb__item--ellipsis {
    color: #000
} */

/* .u-1\/1 {
    width: 100% !important
}

.u-1\/2 {
    width: 50% !important
}

.u-1\/3 {
    width: 33.3333333333% !important
}

.u-2\/3 {
    width: 66.6666666667% !important
}

.u-1\/4 {
    width: 25% !important
}

.u-3\/4 {
    width: 75% !important
}

.u-1\/5 {
    width: 20% !important
}

.u-2\/5 {
    width: 40% !important
}

.u-3\/5 {
    width: 60% !important
}

.u-4\/5 {
    width: 80% !important
}

.u-1\/8 {
    width: 12.5% !important
}

.u-3\/8 {
    width: 37.5% !important
}

.u-5\/8 {
    width: 62.5% !important
}

.u-7\/8 {
    width: 87.5% !important
}

.u-1\/10 {
    width: 10% !important
}

.u-3\/10 {
    width: 30% !important
}

.u-7\/10 {
    width: 70% !important
}

.u-9\/10 {
    width: 90% !important
}

.u-1\/12 {
    width: 8.3333333333% !important
}

.u-2\/12 {
    width: 16.6666666667% !important
}

.u-5\/12 {
    width: 41.6666666667% !important
}

.u-7\/12 {
    width: 58.3333333333% !important
}

.u-10\/12 {
    width: 83.3333333333% !important
}

.u-11\/12 {
    width: 91.6666666667% !important
}

.u-1\/24 {
    width: 4.1666666667% !important
}

.u-5\/24 {
    width: 20.8333333333% !important
}

.u-7\/24 {
    width: 29.1666666667% !important
}

.u-11\/24 {
    width: 45.8333333333% !important
}

.u-13\/24 {
    width: 54.1666666667% !important
}

.u-17\/24 {
    width: 70.8333333333% !important
}

.u-19\/24 {
    width: 79.1666666667% !important
}

.u-23\/24 {
    width: 95.8333333333% !important
}

@media(min-width: 25em) {
    .u-1\/1\@s {
        width: 100% !important
    }

    .u-1\/2\@s {
        width: 50% !important
    }

    .u-1\/3\@s {
        width: 33.3333333333% !important
    }

    .u-2\/3\@s {
        width: 66.6666666667% !important
    }

    .u-1\/4\@s {
        width: 25% !important
    }

    .u-3\/4\@s {
        width: 75% !important
    }

    .u-1\/5\@s {
        width: 20% !important
    }

    .u-2\/5\@s {
        width: 40% !important
    }

    .u-3\/5\@s {
        width: 60% !important
    }

    .u-4\/5\@s {
        width: 80% !important
    }

    .u-1\/8\@s {
        width: 12.5% !important
    }

    .u-3\/8\@s {
        width: 37.5% !important
    }

    .u-5\/8\@s {
        width: 62.5% !important
    }

    .u-7\/8\@s {
        width: 87.5% !important
    }

    .u-1\/10\@s {
        width: 10% !important
    }

    .u-3\/10\@s {
        width: 30% !important
    }

    .u-7\/10\@s {
        width: 70% !important
    }

    .u-9\/10\@s {
        width: 90% !important
    }

    .u-1\/12\@s {
        width: 8.3333333333% !important
    }

    .u-2\/12\@s {
        width: 16.6666666667% !important
    }

    .u-5\/12\@s {
        width: 41.6666666667% !important
    }

    .u-7\/12\@s {
        width: 58.3333333333% !important
    }

    .u-10\/12\@s {
        width: 83.3333333333% !important
    }

    .u-11\/12\@s {
        width: 91.6666666667% !important
    }

    .u-1\/24\@s {
        width: 4.1666666667% !important
    }

    .u-5\/24\@s {
        width: 20.8333333333% !important
    }

    .u-7\/24\@s {
        width: 29.1666666667% !important
    }

    .u-11\/24\@s {
        width: 45.8333333333% !important
    }

    .u-13\/24\@s {
        width: 54.1666666667% !important
    }

    .u-17\/24\@s {
        width: 70.8333333333% !important
    }

    .u-19\/24\@s {
        width: 79.1666666667% !important
    }

    .u-23\/24\@s {
        width: 95.8333333333% !important
    }
}

@media(min-width: 56.25em) {
    .u-1\/1\@m {
        width: 100% !important
    }

    .u-1\/2\@m {
        width: 50% !important
    }

    .u-1\/3\@m {
        width: 33.3333333333% !important
    }

    .u-2\/3\@m {
        width: 66.6666666667% !important
    }

    .u-1\/4\@m {
        width: 25% !important
    }

    .u-3\/4\@m {
        width: 75% !important
    }

    .u-1\/5\@m {
        width: 20% !important
    }

    .u-2\/5\@m {
        width: 40% !important
    }

    .u-3\/5\@m {
        width: 60% !important
    }

    .u-4\/5\@m {
        width: 80% !important
    }

    .u-1\/8\@m {
        width: 12.5% !important
    }

    .u-3\/8\@m {
        width: 37.5% !important
    }

    .u-5\/8\@m {
        width: 62.5% !important
    }

    .u-7\/8\@m {
        width: 87.5% !important
    }

    .u-1\/10\@m {
        width: 10% !important
    }

    .u-3\/10\@m {
        width: 30% !important
    }

    .u-7\/10\@m {
        width: 70% !important
    }

    .u-9\/10\@m {
        width: 90% !important
    }

    .u-1\/12\@m {
        width: 8.3333333333% !important
    }

    .u-2\/12\@m {
        width: 16.6666666667% !important
    }

    .u-5\/12\@m {
        width: 41.6666666667% !important
    }

    .u-7\/12\@m {
        width: 58.3333333333% !important
    }

    .u-10\/12\@m {
        width: 83.3333333333% !important
    }

    .u-11\/12\@m {
        width: 91.6666666667% !important
    }

    .u-1\/24\@m {
        width: 4.1666666667% !important
    }

    .u-5\/24\@m {
        width: 20.8333333333% !important
    }

    .u-7\/24\@m {
        width: 29.1666666667% !important
    }

    .u-11\/24\@m {
        width: 45.8333333333% !important
    }

    .u-13\/24\@m {
        width: 54.1666666667% !important
    }

    .u-17\/24\@m {
        width: 70.8333333333% !important
    }

    .u-19\/24\@m {
        width: 79.1666666667% !important
    }

    .u-23\/24\@m {
        width: 95.8333333333% !important
    }
}

@media(min-width: 85.375em) {
    .u-1\/1\@l {
        width: 100% !important
    }

    .u-1\/2\@l {
        width: 50% !important
    }

    .u-1\/3\@l {
        width: 33.3333333333% !important
    }

    .u-2\/3\@l {
        width: 66.6666666667% !important
    }

    .u-1\/4\@l {
        width: 25% !important
    }

    .u-3\/4\@l {
        width: 75% !important
    }

    .u-1\/5\@l {
        width: 20% !important
    }

    .u-2\/5\@l {
        width: 40% !important
    }

    .u-3\/5\@l {
        width: 60% !important
    }

    .u-4\/5\@l {
        width: 80% !important
    }

    .u-1\/8\@l {
        width: 12.5% !important
    }

    .u-3\/8\@l {
        width: 37.5% !important
    }

    .u-5\/8\@l {
        width: 62.5% !important
    }

    .u-7\/8\@l {
        width: 87.5% !important
    }

    .u-1\/10\@l {
        width: 10% !important
    }

    .u-3\/10\@l {
        width: 30% !important
    }

    .u-7\/10\@l {
        width: 70% !important
    }

    .u-9\/10\@l {
        width: 90% !important
    }

    .u-1\/12\@l {
        width: 8.3333333333% !important
    }

    .u-2\/12\@l {
        width: 16.6666666667% !important
    }

    .u-5\/12\@l {
        width: 41.6666666667% !important
    }

    .u-7\/12\@l {
        width: 58.3333333333% !important
    }

    .u-10\/12\@l {
        width: 83.3333333333% !important
    }

    .u-11\/12\@l {
        width: 91.6666666667% !important
    }

    .u-1\/24\@l {
        width: 4.1666666667% !important
    }

    .u-5\/24\@l {
        width: 20.8333333333% !important
    }

    .u-7\/24\@l {
        width: 29.1666666667% !important
    }

    .u-11\/24\@l {
        width: 45.8333333333% !important
    }

    .u-13\/24\@l {
        width: 54.1666666667% !important
    }

    .u-17\/24\@l {
        width: 70.8333333333% !important
    }

    .u-19\/24\@l {
        width: 79.1666666667% !important
    }

    .u-23\/24\@l {
        width: 95.8333333333% !important
    }
}

@media(min-width: 120em) {
    .u-1\/1\@xl {
        width: 100% !important
    }

    .u-1\/2\@xl {
        width: 50% !important
    }

    .u-1\/3\@xl {
        width: 33.3333333333% !important
    }

    .u-2\/3\@xl {
        width: 66.6666666667% !important
    }

    .u-1\/4\@xl {
        width: 25% !important
    }

    .u-3\/4\@xl {
        width: 75% !important
    }

    .u-1\/5\@xl {
        width: 20% !important
    }

    .u-2\/5\@xl {
        width: 40% !important
    }

    .u-3\/5\@xl {
        width: 60% !important
    }

    .u-4\/5\@xl {
        width: 80% !important
    }

    .u-1\/8\@xl {
        width: 12.5% !important
    }

    .u-3\/8\@xl {
        width: 37.5% !important
    }

    .u-5\/8\@xl {
        width: 62.5% !important
    }

    .u-7\/8\@xl {
        width: 87.5% !important
    }

    .u-1\/10\@xl {
        width: 10% !important
    }

    .u-3\/10\@xl {
        width: 30% !important
    }

    .u-7\/10\@xl {
        width: 70% !important
    }

    .u-9\/10\@xl {
        width: 90% !important
    }

    .u-1\/12\@xl {
        width: 8.3333333333% !important
    }

    .u-2\/12\@xl {
        width: 16.6666666667% !important
    }

    .u-5\/12\@xl {
        width: 41.6666666667% !important
    }

    .u-7\/12\@xl {
        width: 58.3333333333% !important
    }

    .u-10\/12\@xl {
        width: 83.3333333333% !important
    }

    .u-11\/12\@xl {
        width: 91.6666666667% !important
    }

    .u-1\/24\@xl {
        width: 4.1666666667% !important
    }

    .u-5\/24\@xl {
        width: 20.8333333333% !important
    }

    .u-7\/24\@xl {
        width: 29.1666666667% !important
    }

    .u-11\/24\@xl {
        width: 45.8333333333% !important
    }

    .u-13\/24\@xl {
        width: 54.1666666667% !important
    }

    .u-17\/24\@xl {
        width: 70.8333333333% !important
    }

    .u-19\/24\@xl {
        width: 79.1666666667% !important
    }

    .u-23\/24\@xl {
        width: 95.8333333333% !important
    }
}

@media(min-width: 181.25em) {
    .u-1\/1\@xxl {
        width: 100% !important
    }

    .u-1\/2\@xxl {
        width: 50% !important
    }

    .u-1\/3\@xxl {
        width: 33.3333333333% !important
    }

    .u-2\/3\@xxl {
        width: 66.6666666667% !important
    }

    .u-1\/4\@xxl {
        width: 25% !important
    }

    .u-3\/4\@xxl {
        width: 75% !important
    }

    .u-1\/5\@xxl {
        width: 20% !important
    }

    .u-2\/5\@xxl {
        width: 40% !important
    }

    .u-3\/5\@xxl {
        width: 60% !important
    }

    .u-4\/5\@xxl {
        width: 80% !important
    }

    .u-1\/8\@xxl {
        width: 12.5% !important
    }

    .u-3\/8\@xxl {
        width: 37.5% !important
    }

    .u-5\/8\@xxl {
        width: 62.5% !important
    }

    .u-7\/8\@xxl {
        width: 87.5% !important
    }

    .u-1\/10\@xxl {
        width: 10% !important
    }

    .u-3\/10\@xxl {
        width: 30% !important
    }

    .u-7\/10\@xxl {
        width: 70% !important
    }

    .u-9\/10\@xxl {
        width: 90% !important
    }

    .u-1\/12\@xxl {
        width: 8.3333333333% !important
    }

    .u-2\/12\@xxl {
        width: 16.6666666667% !important
    }

    .u-5\/12\@xxl {
        width: 41.6666666667% !important
    }

    .u-7\/12\@xxl {
        width: 58.3333333333% !important
    }

    .u-10\/12\@xxl {
        width: 83.3333333333% !important
    }

    .u-11\/12\@xxl {
        width: 91.6666666667% !important
    }

    .u-1\/24\@xxl {
        width: 4.1666666667% !important
    }

    .u-5\/24\@xxl {
        width: 20.8333333333% !important
    }

    .u-7\/24\@xxl {
        width: 29.1666666667% !important
    }

    .u-11\/24\@xxl {
        width: 45.8333333333% !important
    }

    .u-13\/24\@xxl {
        width: 54.1666666667% !important
    }

    .u-17\/24\@xxl {
        width: 70.8333333333% !important
    }

    .u-19\/24\@xxl {
        width: 79.1666666667% !important
    }

    .u-23\/24\@xxl {
        width: 95.8333333333% !important
    }
} */

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

.max-width-1440 {
    max-width: 1440px
}

.max-width-1366 {
    max-width: 1366px
}

.max-width-700 {
    max-width: 700px
}

.max-width-600 {
    max-width: 600px
}

.skipnavigation {
    display: inline-block;
    text-indent: -9999px;
    outline: none
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: .4;
    z-index: 1
}

.overlay-white::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .4;
    z-index: 1
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZVadyB1Wk.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZVYNyB1Wk.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZVZdyB1Wk.woff2) format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZVaNyB1Wk.woff2) format("woff2");
    unicode-range: U+1F00-1FFF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZVZ9yB1Wk.woff2) format("woff2");
    unicode-range: U+0370-03FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZVa9yB1Wk.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZVatyB1Wk.woff2) format("woff2");
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjThZVZNyB.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr6DRAW_0.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr4TRAW_0.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr5DRAW_0.woff2) format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr6TRAW_0.woff2) format("woff2");
    unicode-range: U+1F00-1FFF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr5jRAW_0.woff2) format("woff2");
    unicode-range: U+0370-03FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr6jRAW_0.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr6zRAW_0.woff2) format("woff2");
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNr5TRA.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBVadyB1Wk.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBVYNyB1Wk.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBVZdyB1Wk.woff2) format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBVaNyB1Wk.woff2) format("woff2");
    unicode-range: U+1F00-1FFF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBVZ9yB1Wk.woff2) format("woff2");
    unicode-range: U+0370-03FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBVa9yB1Wk.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBVatyB1Wk.woff2) format("woff2");
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjOhBVZNyB.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFVadyB1Wk.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFVYNyB1Wk.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFVZdyB1Wk.woff2) format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFVaNyB1Wk.woff2) format("woff2");
    unicode-range: U+1F00-1FFF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFVZ9yB1Wk.woff2) format("woff2");
    unicode-range: U+0370-03FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFVa9yB1Wk.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFVatyB1Wk.woff2) format("woff2");
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFVZNyB.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #FF0080;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #ffffff;
    --bs-gray: #757575;
    --bs-gray-dark: #333333;
    --bs-acer-light: #d9edc7;
    --bs-acer-primary: #80c343;
    --bs-acer-dark: #4b8a29;
    --bs-acer-secondary: #224449;
    --bs-white: #ffffff;
    --bs-black: #000000;
    --bs-dark: #333333;
    --bs-general: #08559e;
    --bs-negative: #b92820;
    --bs-positive: #128228;
    --bs-warning: #ffc107;
    --bs-font-sans-serif: "Noto Sans", Arial, sans-serif;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}


@media(prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

#main {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    background-color: #222;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: #c8c8c8;
    border: 0;
    opacity: .25
}

hr:not([size]) {
    height: 1px
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: normal
}

abbr[title],
abbr[data-bs-original-title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul {
    padding-left: 2rem
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: 700
}

small {
    font-size: 0.875em
}

mark {
    padding: .2em;
    background-color: #fcf8e3
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a {
    transition: all .3s ease-in-out
}

a:hover {
    transition: all .3s ease-in-out
}

a:focus-visible {
    outline: #333 1px solid;
    outline-offset: -1px
}

.predator a:focus-visible {
    outline-color: #f0f0f0
}