html, body {
    max-width: 100vw;
}
@media all and (min-width: 1440px) {
    html {
        font-size: 125%;
   }
    html .breakdance {
        --bde-body-font-size: 1rem;
        font-size: var(--bde-body-font-size);
   }
}
@media all and (max-width: 1439px) {
    html {
        font-size: 115%;
   }
    html .breakdance {
        --bde-body-font-size: 1rem;
        font-size: var(--bde-body-font-size);
   }
}
@media all and (max-width: 1024px) {
    html {
        font-size: 100%;
   }
    html .breakdance {
        --bde-body-font-size: 1rem;
        font-size: var(--bde-body-font-size);
   }
}
video, embed, iframe, object {
    width: 100%;
    max-width: 100%;
}
img {
    height: auto;
    max-width: 100%;
}
.dd-section, .dd-row, .dd-col, .dd-module {
    position: relative;
}
.dd-container {
    width: 90%;
    max-width: 60rem;
    margin: 0 auto;
}
.dd-col_1-1 {
    width: 100%;
}
.dd-col_1-2 {
    width: 50%;
}
.dd-col_1-3 {
    width: calc(100% / 3);
}
.dd-col_2-3 {
    width: calc(100% * 2 / 3);
}
.dd-col_1-4 {
    width: 25%;
}
.dd-col_3-4 {
    width: 75%;
}
@media all and (max-width: 650px) {
    .dd-col_1-2 {
        width: 100%;
   }
    .dd-col_1-3 {
        width: calc(100% / 3);
   }
    .dd-col_2-3 {
        width: calc(100% * 2 / 3);
   }
    .dd-col_1-4 {
        width: 50%;
   }
    .dd-col_3-4 {
        width: 100%;
   }
}
.dd-flex, .dd-flex_0-0, .dd-flex_0-12, .dd-flex_3-0, .dd-flex_3-6, .dd-flex_3-12, .dd-flex_6-0, .dd-flex_9-0, .dd-flex_9-6, .dd-flex_9-9, .dd-flex_9-12, .dd-flex_12-0, .dd-flex_12-6, .dd-flex_12-9, .dd-flex_12-12 {
    display: flex;
}
.dd-flex_0-0 {
    justify-content: center;
    align-items: center;
}
.dd-flex_0-12 {
    justify-content: center;
    align-items: flex-start;
}
.dd-flex_3-0 {
    justify-content: flex-end;
    align-items: center;
}
.dd-flex_3-6 {
    justify-content: flex-end;
    align-items: flex-end;
}
.dd-flex_3-12 {
    justify-content: flex-end;
    align-items: flex-start;
}
.dd-flex_6-0 {
    justify-content: space-around;
    align-items: center;
}
.dd-flex_9-0 {
    justify-content: flex-start;
    align-items: center;
}
.dd-flex_9-6 {
    justify-content: flex-start;
    align-items: flex-end;
}
.dd-flex_9-9 {
    justify-content: flex-start;
    align-items: stretch;
}
.dd-flex_9-12 {
    justify-content: flex-start;
    align-items: flex-start;
}
.dd-flex_12-0 {
    justify-content: space-between;
    align-items: center;
}
.dd-flex_12-6 {
    justify-content: space-between;
    align-items: flex-end;
}
.dd-flex_12-9 {
    justify-content: space-between;
    align-items: stretch;
}
.dd-flex_12-12 {
    justify-content: space-between;
    align-items: flex-start;
}
.dd-flex_wrap {
    flex-wrap: wrap;
}
@media all and (max-width: 767px) {
    .dd-flex_wrap-tablet {
        flex-wrap: wrap;
   }
}
@media all and (max-width: 650px) {
    .dd-flex_wrap-mobile {
        flex-wrap: wrap;
   }
}
.dd-grid, .dd-grid_0-0, .dd-grid_0-12, .dd-grid_3-0, .dd-grid_3-6, .dd-grid_3-12, .dd-grid_6-9, .dd-grid_stretchall, .dd-grid_9-0, .dd-grid_9-6, .dd-grid_9-9, .dd-grid_9-12, .dd-grid_12-0, .dd-grid_12-6, .dd-grid_12-9, .dd-grid_12-12 {
    display: grid;
}
.dd-grid_0-0 {
    justify-items: center;
    align-items: center;
}
.dd-grid_0-12 {
    justify-items: center;
    align-items: start;
}
.dd-grid_3-0 {
    justify-items: end;
    align-items: center;
}
.dd-grid_3-6 {
    justify-items: end;
    align-items: end;
}
.dd-grid_3-12 {
    justify-items: end;
    align-items: start;
}
.dd-grid_6-9 {
    justify-items: stretch;
    align-items: stretch;
}
.dd-grid_stretchall {
    justify-items: stretch;
    align-items: stretch;
}
.dd-grid_9-0 {
    justify-items: start;
    align-items: center;
}
.dd-grid_9-6 {
    justify-items: start;
    align-items: end;
}
.dd-grid_9-9 {
    justify-items: start;
    align-items: stretch;
}
.dd-grid_9-12 {
    justify-items: start;
    align-items: start;
}
.dd-grid_12-0 {
    justify-items: stretch;
    align-items: center;
}
.dd-grid_12-6 {
    justify-items: stretch;
    align-items: end;
}
.dd-grid_12-9 {
    justify-items: stretch;
    align-items: stretch;
}
.dd-grid_12-12 {
    justify-items: stretch;
    align-items: start;
}
.dd-grid_2-gap-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-gap: 0.5rem;
}
.dd-grid_3-gap-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-gap: 0.5rem;
}
.dd-padding_none {
    padding: 0;
}
.dd-padding_v-11 {
    padding: 6rem 0;
}
.dd-padding_v-12 {
    padding: 3rem 0;
}
.dd-padding_v-13 {
    padding: 2rem 0;
}
.dd-padding_v-none, .breakdance .bde-section.dd-section_padding-none .section-container, .breakdance .bde-section.bonnie-tyler .section-container, .breakdance .bde-section.foo-fighters .section-container {
    padding-top: 0;
    padding-bottom: 0;
}
.dd-padding_h-11 {
    padding: 6rem 0;
}
.dd-padding_h-12 {
    padding: 3rem 0;
}
.dd-padding_a-11 {
    padding: 6rem;
}
.dd-padding_a-12 {
    padding: 3rem;
}
.dd-padding_b-11 {
    padding-bottom: 6rem;
}
.dd-padding_b-12 {
    padding-bottom: 3rem;
}
.dd-padding_t-11 {
    padding-top: 6rem;
}
.dd-padding_t-12 {
    padding-top: 3rem;
}
.dd-margin_none {
    margin: 0;
}
.dd-margin_v-11 {
    margin: 6rem 0;
}
.dd-margin_v-12 {
    margin: 3rem 0;
}
.dd-margin_a-11 {
    margin: 6rem;
}
.dd-margin_a-12 {
    margin: 3rem;
}
.dd-margin_b-11 {
    margin-bottom: 6rem;
}
.dd-margin_b-12 {
    margin-bottom: 3rem;
}
.dd-margin_t-11 {
    margin-top: 6rem;
}
.dd-margin_t-12 {
    margin-top: 3rem;
}
@media all and (min-width: 991px) {
    .show-on-mainbp {
        display: none;
   }
}
@media all and (max-width: 991px) {
    .show-on-mainbp {
        display: block;
   }
}
@media all and (min-width: 650px) {
    .show-on-mobile {
        display: none;
   }
}
@media all and (max-width: 650px) {
    .show-on-mobile {
        display: block;
   }
}
@media all and (min-width: 991px) {
    .hide-on-mainbp {
        display: block;
   }
}
@media all and (max-width: 991px) {
    .hide-on-mainbp {
        display: none !important;
   }
}
@media all and (min-width: 650px) {
    .hide-on-mobile {
        display: block;
   }
}
@media all and (max-width: 650px) {
    .hide-on-mobile {
        display: none !important;
   }
}
.bodyfont, body.breakdance, body.breakdance p, body.breakdance li, body.breakdance blockquote {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.bodyfont-bold, body.breakdance strong, body.breakdance b {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.bodyfont-mono, .breakdance .bde-productbuilder h3 {
    font-family: "IBM Plex Mono", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.headingfont, body.breakdance h1, body.breakdance h2, body.breakdance h3, body.breakdance h4, body.breakdance h5, body.breakdance h6, .breakdance .bde-productbuilder h4 {
    font-family: "Prompt", serif;
    font-weight: 700;
    font-style: normal;
}
.eq-h1, body.breakdance h1 {
    font-size: calc(4.72222vw + .953rem);
    font-size: clamp(2.5rem, calc(4.9vw + 13.05px), 4.2rem);
}
.eq-h2, body.breakdance h2 {
    font-size: calc(3.33333vw + .8854rem);
    font-size: clamp(1.9rem, calc(3.8vw + 9.5px), 3.2rem);
}
.eq-h3, body.breakdance h3, .breakdance .dd-post_col-text .dd-module_post h2, .breakdance .bde-post-loop .ee-posts-grid h1, .breakdance .dd-card_post .dd-card_post-text h1, .breakdance .dd-shop_main.bde-post-loop .ee-posts-grid article:nth-child(n+2) h1, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h2 {
    font-size: calc(1.11111vw + 1.0131rem);
    font-size: clamp(1.4rem, calc(1.1vw + 16.35px), 1.6rem);
}
.eq-h4, body.breakdance h4, .breakdance .dd-post_col-text .dd-module_post h3, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h3 {
    font-size: calc(.625vw + .8232rem);
    font-size: clamp(1rem, calc(1vw + 10.5px), 1.25rem);
}
.eq-h5, body.breakdance h5 {
    font-size: 0.8rem;
}
.eq-h6, body.breakdance h6 {
    font-size: 0.9rem;
}
.eq-p, body.breakdance li {
    font-size: 0.9rem;
    line-height: 1.4;
}
.fs-170 {
    font-size: calc(10.69444vw + 1.0692rem);
    font-size: clamp(5rem, calc(10.1vw + 24.45px), 8.5rem);
}
.fs-48, .breakdance .dd-shop_main.bde-post-loop .ee-posts-grid article:first-child h1 {
    font-size: calc(2.22222vw + .8504rem);
    font-size: clamp(1.5rem, calc(2.7vw + 9.15px), 2.4rem);
}
.fs-16, header .breakdance-menu .breakdance-menu-link, footer .breakdance-menu .breakdance-menu-link {
    font-size: 0.8rem;
}
.fs-14 {
    font-size: 0.7rem;
}
.fs-12 {
    font-size: 12px;
}
body.breakdance h1, body.breakdance h2, body.breakdance h3, body.breakdance h4, body.breakdance h5, body.breakdance h6, body.breakdance blockquote {
    line-height: 0.85;
}
body.breakdance p {
    margin: 1rem 0;
}
body.breakdance p:first-child {
    margin-top: 0;
}
body.breakdance p:last-child {
    margin-bottom: 0;
}
body.breakdance blockquote {
    font-size: 1.5em;
}
body.breakdance section .bde-dual-heading {
    line-height: 0.85;
}
body.breakdance section .bde-dual-heading .dual-heading--secondary {
    color: white;
}
body.breakdance section .bde-dual-heading .rough-annotation {
    z-index: -1;
}
body.breakdance section h1 + .bde-rich-text, body.breakdance section h2 + .bde-rich-text {
    margin-top: 2rem;
}
body.breakdance section .bde-rich-text + .bde-button {
    margin-top: 1rem;
}
.hidden-text, .breakdance .bde-form-builder .breakdance-form-field__label {
    height: 0;
    width: 0;
    overflow: hidden;
    visibility: none;
}
.back-in-black {
    background-color: #000;
}
.back-in-black * {
    color: #fff;
}
.back-in-white {
    background-color: #fff;
}
.back-in-white * {
    color: #000;
}
.text-black {
    color: #000;
}
.absolut-00, .breakdance .dd-section_img-bg .bde-image, .breakdance .dd-section_img-bg .bde-image *, .breakdance .dd-section_img-bg .bde-image:after, .videovideo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.absolut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.height100 {
    height: 100vmin;
    width: 100%;
}
.img-center, .breakdance .dd-section_img-bg .bde-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.hover-transition, .breakdance header.bde-header-builder.bde-header-builder--sticky .bde-code-block svg > g > g g:not(#Logo), header .breakdance-menu .breakdance-menu-link, footer .breakdance-menu .breakdance-menu-link, header .breakdance-menu .breakdance-menu-link:before, footer .breakdance-menu .breakdance-menu-link:before, .breakdance section .button-atom--primary span, .breakdance section .button-atom--primary:before {
    transition: all 0.3s ease-in-out;
}
.hover-transition-long {
    transition: all 0.6s ease-in-out;
}
.basic-transition {
    transition: all 0.3s ease-in-out;
}
.basic-transition_1 {
    transition: all 0.3s ease-in-out;
}
.basic-transition_2 {
    transition: all 0.6s ease-in-out;
}
.basic-transition_3 {
    transition: all 0.9s ease-in-out;
}
.breakdance .breakdance-rich-text-styles ul li p {
    margin: 0.5rem 0;
}
.breakdance .breakdance-rich-text-styles ul li:nth-child(n+2) {
    margin-top: 1.5rem;
}
.breakdance header + section {
    margin-top: 5rem;
}
@media all and (max-width: 767px) {
    .breakdance header .bde-code-block {
        max-width: 200px;
   }
}
.breakdance header.bde-header-builder.bde-header-builder--sticky {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.3s ease-in-out;
}
.breakdance header.bde-header-builder.bde-header-builder--sticky .bde-header-builder__container {
    transition: all 0.3s ease-in-out;
}
.breakdance header.bde-header-builder.bde-header-builder--sticky .bde-code-block svg > g > g g:not(#Logo) {
    opacity: 1;
}
.breakdance header.bde-header-builder.bde-header-builder--sticky.bde-header-builder--sticky-styles {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}
.breakdance header.bde-header-builder.bde-header-builder--sticky.bde-header-builder--sticky-styles .bde-header-builder__container {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}
.breakdance header.bde-header-builder.bde-header-builder--sticky.bde-header-builder--sticky-styles .bde-code-block svg > g > g g:not(#Logo) {
    opacity: 0;
}
header .breakdance-menu .breakdance-menu-link, footer .breakdance-menu .breakdance-menu-link {
    display: inline-block;
    position: relative;
}
header .breakdance-menu .breakdance-menu-link:before, footer .breakdance-menu .breakdance-menu-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    z-index: -1;
}
header .breakdance-menu .breakdance-menu-link:hover, footer .breakdance-menu .breakdance-menu-link:hover {
    color: #fff;
}
header .breakdance-menu .breakdance-menu-link:hover:before, footer .breakdance-menu .breakdance-menu-link:hover:before {
    height: 100%;
}
.breakdance footer .breakdance-menu-list {
    display: block;
}
.breakdance footer .breakdance-menu-list .breakdance-menu-link {
    padding: 0.3rem 0;
}
.breakdance footer .dd-footer_row-1 {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.breakdance footer .dd-footer_row-2 {
    padding: 1rem 0;
}
.breakdance footer .dd-footer_row-2-wrapper a {
    text-decoration: none;
    color: #646464;
}
.breakdance footer .dd-footer_row-2-wrapper a:hover {
    text-decoration: underline;
}
.breakdance .bde-section.bonnie-tyler {
    min-height: 30rem;
    padding-top: 3rem;
}
.breakdance .bde-section.foo-fighters {
    min-height: 30rem;
    padding-top: 3rem;
}
.breakdance .dd-section_img-bg {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.breakdance .dd-section_img-bg .section-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
}
.breakdance .dd-section_img-bg .bde-columns {
    position: relative;
    z-index: 2;
}
.breakdance .dd-section_img-bg .bde-columns .bde-column:first-child {
    padding-left: 1.5rem;
}
.breakdance .dd-section_img-bg h1, .breakdance .dd-section_img-bg h2, .breakdance .dd-section_img-bg h3 {
    color: white;
}
.breakdance .dd-section_img-bg .bde-image:after {
    content: "";
    background: linear-gradient(113deg, rgba(0, 0, 0, 0.421989) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 100%);
}
@media all and (max-width: 767px) {
    body.breakdance .bde-section .section-container {
        padding-top: 4rem;
        padding-bottom: 4rem;
   }
}
.breakdance .dd-column_reg.bde-columns {
    gap: 3rem;
}
@media all and (max-width: 767px) {
    .breakdance .bde-section .bde-columns.dd-column_reg {
        flex-direction: column;
   }
}
@media all and (max-width: 767px) {
    .breakdance .bde-section .bde-columns.dd-column_rev {
        flex-direction: column-reverse;
   }
}
.breakdance section .button-atom--primary {
    padding-left: 0;
    padding-right: 0;
    position: relative;
}
.breakdance section .button-atom--primary span {
    color: #000;
}
.breakdance section .button-atom--primary:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    z-index: -1;
}
.breakdance section .button-atom--primary:hover span {
    color: #fff;
}
.breakdance section .button-atom--primary:hover:before {
    height: 100%;
}
.breakdance .dd-post_col-text .dd-module_post *:first-child {
    margin-top: 0;
}
.breakdance .dd-post_col-text .dd-module_post h2 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.breakdance .dd-post_col-text .dd-module_post h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.breakdance .bde-post-loop .ee-posts-grid .ee-post {
    padding: 0;
}
.breakdance .bde-post-loop .ee-posts-grid h1 {
    text-decoration: none;
}
.breakdance .dd-card_post .dd-card_post-text {
    margin-top: 1.5rem;
}
.breakdance .dd-card_post .dd-card_post-text .bde-text-link {
    text-decoration: none;
}
.breakdance .dd-card_post .dd-card_post-text h1 {
    text-decoration: none;
}
.breakdance .dd-card_post .dd-card_post-text .bde-text {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.breakdance .dd-loop_alt {
    margin-top: 2rem;
}
.breakdance .dd-shop_main.bde-post-loop .ee-posts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.breakdance .dd-shop_main.bde-post-loop .ee-posts-grid article:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
}
.breakdance .dd-shop_main.bde-post-loop .ee-posts-grid article:first-child .dd-card_product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.breakdance .dd-shop_main.bde-post-loop .ee-posts-grid article:first-child h1 {
    text-decoration: none;
}
.breakdance .dd-card_product .dd-card_product-text {
    margin-top: 1.5rem;
}
.breakdance .dd-card_product .dd-card_product-text > .bde-text-link {
    text-decoration: none;
}
.breakdance .dd-card_product .dd-card_product-text .bde-text {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs__tabslist-container {
    border-bottom: 1px solid #eee;
}
.breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs__tabslist {
    max-width: 28.5rem;
    width: 100%;
    margin-left: auto;
    border-bottom: 0;
}
.breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h2 {
    margin-top: 1em;
    margin-bottom: 0.5em;
}
.breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h3 {
    margin-bottom: 0.5em;
    margin-bottom: 0.25em;
}
.breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h2, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h3, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h4 {
    line-height: 0.8;
}
.breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h2:first-child {
    display: none;
}
.breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h2, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h3, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel h4, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel p, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel ul, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel li, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel .left, .breakdance .bde-productbuilder .bde-wooproducttabs .bde-tabs-content-container .bde-tabs__panel .woocommerce-Reviews {
    max-width: 28.5rem;
    width: 100%;
    margin-left: auto;
}
.videovideo {
    height: 0;
    width: 100%;
    position: relative;
    padding-bottom: 56%;
}
.animate-in {
    opacity: 0;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.animate-in.inview {
    opacity: 1;
}
.animate-in.move-up {
    top: 3rem;
}
.animate-in.move-up.inview {
    top: 0;
}
.animate-in.wipe-left {
    opacity: 1;
    z-index: 0;
    transition: all 0.3s ease-in-out;
}
.animate-in.wipe-left:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2;
    transition: all 0.6s ease-in-out;
}
.animate-in.wipe-left.inview:after {
    width: 0;
}
.animate-in.delay-0 {
    transition-delay: 0s;
}
.animate-in.delay-1 {
    transition-delay: 0.3s;
}
.animate-in.delay-2 {
    transition-delay: 0.6s;
}
.animate-in.delay-3 {
    transition-delay: 1.2s;
}
.acf-repeater,
a.acf-button {
    font-size: 13px;
}
body.single-next-client header#masthead,
body.single-next-client footer#colophon,
body.single-next-client div#wpadminbar {
    display: none;
}
body.single-next-client .entry.single-entry.next-client {
    min-height: calc(100vh - 32px);
}