:root {
    --accent: 124, 58, 237;
    --accent-gradient: linear-gradient(45deg, rgb(var(--accent)), #da62c4 30%, white 60%);
}
* {
    font-display: swap;
}
html,
body {
    padding: 0;
    margin: 0;
}
html {
    overflow-x: hidden;
    font-family: system-ui, sans-serif;
    background-color: #f8f9ff;
    color: #13486A;
    scroll-behavior: smooth;
}
code {
    font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
    Bitstream Vera Sans Mono, Courier New, monospace;
}
h1 {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.15;
    margin: 0;
}

h1:not(.main-footer h1) {
    color: #002942;
}

h2 {
    font-size: 24px;
    line-height: 1.3;
}

@media only screen and (min-width: 0) and (max-width: 1160px) {
    h1 {
        font-size: 36px !important;
    }
    h2 {
        font-size: 20px !important;
    }
    .section:not(.hero, .testimonials) > .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .hero p {
        font-size: 15px !important;
    }
    .button {
        font-size: 15px !important;
    }
}

h2,
h3,
h4,
h5,
h6,
body {
    font-weight: 400;
    line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: pretty;
}

p {
    text-wrap: balance;
}

a,
button,
summary {
    cursor: pointer !important;
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.section > .container {
    max-width: 1400px;
    margin: 0 auto;
}
.button {
    padding: .67em 1.5em;
    display: inline-block;
    text-decoration: none;
    user-select: none;
    color: #13486A;
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
    border: none;
    white-space: nowrap;
}
.button.primary {
    background-color: #1CD8FF;
    box-shadow: 0 10px 20px rgba(0, 113, 186, 0.2);
}
.button.outline {
    border: 1px solid;
}
.rounded {
    border-radius: 2em;
}
.buttons {
    display: flex;
    gap: 16px;
}
.button-xs {
    font-size: 13px;
}

.section {
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0.5;
        transform: translateY(10px) rotate(5deg) scale(0.9);
        /*filter: blur(8px);*/
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0) scale(1);
        /*filter: blur(0);*/
    }
}

.hidden {
    opacity: 0;
    will-change: opacity;
}
.show {
    opacity: 1;
    animation: fadeInUp .5s ease-in-out forwards;
    will-change: transform;
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

@media only screen and (min-width: 0) and (max-width: 1160px) {
    .hero .media:nth-child(1n+1),
    .mediatext .media {
        height: 360px !important;
        width: 260px !important;
    }
}


.main-content {
    margin: 0;
    padding: 40px 0;
    padding: 0 0 40px;
    max-width: 100%;
    background-image: linear-gradient(to bottom, #ffffff 40%, #eaf7ff, #e8f9ff, #d7efff);
    /*background-image: linear-gradient(to bottom, #ddf2ff 40%, #c4eaff, #b9eaff, #d3ecff);*/
    position: relative;
}
.main-footer {
    background-color: #0071BA;
    background-color: #005A94;
    color: #D0F7FF;
    color: #F5FDFF;
    min-height: 200px;
    margin: 0;
    padding: 40px 0;
}

.hero h1 {
    font-size: 56px;
}
.hero h2 {
    font-size: 32px;
}
.hero p {
    font-size: 18px;
    line-height: 1.5;
}
.hero.section {
    overflow: visible;
}
.hero.section > .container {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1440px;
    justify-content: space-between;
    padding-bottom: 80px;
}
.hero .content {
    padding: 40px;
    align-self: center;
    box-sizing: border-box;
}
.hero .medias {
    width: 50%;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
}
.hero .media {
    background-color: #fff;
    width: 440px;
    height: 560px;
    border-radius: 25px;
    box-shadow: 0 14px 32px rgba(0,113,186,.2), 0 28px 72px rgba(0,113,186,.2);
    flex-grow: 0;
    flex-shrink: 0;
    overflow: hidden;
    display: block;
}
.hero .media > img {
    display: block;
    width: 100%;
    height: auto;
}
.hero .media:nth-child(1),
.hero .media:nth-child(3) {
    z-index: 1;
    position: absolute;
    height: 500px;
    width: 385px;
}
.hero .media:nth-child(1) {
    top: 40px;
    left: 0;
}
.hero .media:nth-child(3) {
    top: 0;
    right: -10vw;
}
.hero .media:nth-child(2) {
    position: relative;
    z-index: 2;
    margin-left: 220px;
    top: 180px;
}
.hero .buttons {
    margin-top: 60px;
}

@media only screen and (min-width: 0) and (max-width: 1024px) {
    .hero.section > .container {
        flex-direction: column-reverse;
        padding-bottom: 0;
    }

    .hero .medias {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow: visible;
        width: 100%;
        height: auto;
        position: relative;
        justify-content: space-between !important;
    }

    .hero .medias > .media {
        position: relative;
        top: initial;
        left: initial;
        right: initial;
        bottom: initial;
        margin: 0 !important;
        right: 0 !important;
    }

    .hero .medias > .media + .media {
        margin-left: 0px;
    }
    .hero .media:first-child,
    .hero .media:last-child {
        z-index: 1;
    }
    .hero .media:first-child {
        transform: scale(.8) rotate(-8deg) translate(30%, 10%) !important;
    }
    .hero .media:last-child {
        transform: scale(.8) rotate(8deg) translate(-30%, 10%) !important;
    }
    .hero .media:nth-child(2) {
        z-index: 2;
    }
}

@media only screen and (min-width: 0) and (max-width: 768px) {
    .hero .medias {
        justify-content: space-around !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1160px) {
    .hero .media:nth-child(3) {
        right: -5vw;
    }

}

.section.logo > .container {
    padding: 0 0 60px !important;
}
.logo h1 {
    position: relative;
    display: inline-block;
    color: #0071BA;
    padding-top: 40px;
    overflow: visible;
}
.logo h1::before {
    content: '';
    display: block;
    height: 4px;
    background-color: #0071BA;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    overflow: hidden;
}
.logo h1 > span {
    position: absolute;
    left: -50vw;
}
.logo h1 > svg {
    height: 44px;
}

.highlights {
    padding-bottom: 120px !important;
    padding-top: 120px !important;
}

@media only screen and (min-width: 992px) {
    .highlights > .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.highlights .container > header {
    margin: 0 0 90px;
    text-align: center;
}
.highlights-slider {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 40px;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.highlight {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 14px 32px rgba(0,113,186,.2), 0 28px 72px rgba(0,113,186,.2);
    padding: 30px;
    max-width: 560px;
    flex-basis: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    position: relative;
}
.highlight-media {
    height: 128px;
    width: 128px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #FFF;
    margin: -48px auto -8px;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.highlight-media > img {
    display: block;
    height: 64px;
    width: auto;
}
.highlight-body {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}
.highlight .title {
    font-size: 30px;
}

@media only screen and (min-width: 0) and (max-width: 1024px) {
    .highlights-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}
@media only screen and (min-width: 0) and (max-width: 767px) {
    .highlights-slider {
        flex-direction: column;
        overflow: visible;
        padding: 0 40px 40px;
        box-sizing: border-box;

        display: block;
    }
    .highlight {
        flex-direction: column;
        flex-grow: 1;
        flex-basis: unset;
        padding: 20px 20px 30px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .highlight:not(:first-child) {
        margin-top: 60px;
    }
    .highlight h1 {
        font-size: 28px !important;
    }
    .highlight-media {
        margin-top: -40px;
        border: 12px solid #fff;
        /*box-shadow: 0 -14px 18px rgba(0,113,186,.2);*/
    }
    .highlight-body {
        padding-top: 20px;
        padding-left: 0;
    }
}

@media only screen and (min-width: 0) and (max-width: 680px) {
    .highlights-slider {
        padding: 0;
    }
}

.mediatext.section {
    padding-bottom: 60px;
    padding-top: 60px;
}
.mediatext > .container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}
.mediatext.media-right > .container {
    flex-direction: row-reverse;
}
@media only screen and (min-width: 0) and (max-width: 1160px) {
    .mediatext > .container,
    .mediatext.media-right > .container{
        flex-direction: column;
    }
    .mediatext h1 {
        font-size: 30px !important;
    }
    .mediatext h2 {
        font-size: 20px !important;
    }
}
.mediatext .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
}
.mediatext .medias {
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
}
.mediatext .media {
    background-color: #fff;
    width: 440px;
    height: 560px;
    border-radius: 25px;
    box-shadow: 0 14px 32px rgba(0,113,186,.2), 0 28px 72px rgba(0,113,186,.2);
    overflow: hidden;
    display: block;
}
.mediatext .media > img {
    display: block;
    width: 100%;
    height: auto;
}
.mediatext .medias-fan {
    position: relative;
}
.mediatext .medias-fan .media:nth-child(1) {
    position: relative;
    z-index: 5;
}
.mediatext .medias-fan .media:nth-child(1n+2) {
    position: absolute;
}
.mediatext .medias-fan .media:nth-child(2) {
    top: 40px;
    left: 20px;
    z-index: 4;
    transform: rotate(20deg) scale(0.8);
}
.mediatext .medias-fan .media:nth-child(3) {
    position: absolute;
    top: 100px;
    left: 60px;
    transform: rotate(40deg) scale(0.6);
    z-index: 3;
}
.mediatext aside {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}
.mediatext .techfeature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    width: calc(50% - 40px);
}
@media only screen and (min-width: 0) and (max-width: 767px) {
    .mediatext aside {
        flex-direction: column;
    }
    .mediatext .techfeature {
        width: 100%;
    }
}
.mediatext .techfeature-media {
    border-radius: 20%;
    height: 64px;
    width: 64px;
    flex-grow: 0;
    flex-shrink: 0;
    background-color: #fff;
    box-shadow: 0 8px 21px rgba(0,113,186,.2);
    border: 2px solid rgba(0,113,186, 1);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mediatext .techfeature-media img {
    height: 44px;
    width: auto;
    opacity: .9;
}

.techfeature h3 {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}
.techfeature p {
    font-size: 14px;
    margin: 0;
}

.curve-arrow-container {
    width: 140px;
    position: absolute;
    top: -160px;
    right: 200px;
    transition: all .2s ease-in-out;
}
@media screen and (max-width: 1160px) {
    .curve-arrow-container {
        left: 20px;
        transform: rotate(120deg) scale(-1) scaleY(-1);
        transform-origin: center;
        right: initial
    }
}
@media screen and (max-width: 768px) {
    .curve-arrow-container {
        left: -40px;
        transform: rotate(90deg) scale(-1) scaleY(-1);
    }
}
.media-right .curve-arrow-container {
    right: initial;
    left: 0;
    transform: scaleX(-1) rotate(-45deg);
}
@media screen and (max-width: 1160px) {
    .media-right .curve-arrow-container {
        transform: scaleX(-1) rotate(-95deg);
    }
}
@media screen and (max-width: 768px) {
    .media-right .curve-arrow-container {
        transform: scaleX(-1) rotate(-85deg);
        left: -40px;
    }
}
.curve-arrow-container > svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 2s linear forwards;
}
.curve-arrow-container svg .arrow {
    opacity: 0;
    animation: .3s ease-in-out .2s forwards fadeInArrow;
}
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes fadeInArrow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.y-carousel > .container > header {
    margin-top: 60px;
}

.y-slide {
    padding-bottom: 60px;
    text-align: center;
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1024px) {
    .y-slide h1 {
        font-size: 26px;
    }
}

.y-slide .button {
    margin: 20px auto 0;
    display: inline-block;
    font-size: 13px !important;
    letter-spacing: .1em;
}

.y-slide figure {
    box-sizing: border-box;
    width: 100%;
    height: 0;
    padding: 0 0 66.667% 0;
    overflow: auto;
    scroll-behavior: smooth;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 14px 32px rgba(0,113,186,.2), 0 18px 42px rgba(0,113,186,.2);
    flex-grow: 0;
    flex-shrink: 0;
    display: block;
    border: 12px solid;
    margin: 0 auto;
    position: relative;
}

.y-slide figure > img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}
.active > .y-slide > figure {
    box-shadow: 0 14px 32px rgba(0,113,186,.4), 0 38px 72px rgba(0,113,186,.25);
}

@media only screen and (min-width: 0) and (max-width: 1024px) {
    .y-slide figure {
        border-width: 6px;
        padding-bottom: 60%;
    }
}

.y-carousel .owl-carousel .owl-stage-outer {
    padding-top: 30px;
    overflow: visible;
}
.y-carousel .owl-stage {
    /*display: flex;*/
}
.y-carousel .owl-item {
    /*display: flex;*/
}
.y-carousel .owl-item .y-slide {
    flex-grow: 1;
}
.y-carousel .owl-dots {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
    z-index: 1;
    position: relative;
    gap: 20px;
}

.y-carousel .owl-dots .owl-dot {
    height: 0;
    width: 0;
    border: 4px solid #0272bb;
    border-radius: 100%;
    opacity: .5;
}

.y-carousel .owl-dots .owl-dot.active {
    opacity: 1;
}

.y-carousel .y-slide {
    transform: scale(.9) !important;
    opacity: .5;
    transform-origin: center;
    transition: all .2s ease-in-out;
}

.y-carousel .owl-item.active.center .y-slide {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.y-carousel .owl-item a.primary {
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.y-carousel .owl-item.center a.primary {
    opacity: 1;
}

.y-carousel .center .y-slide > figure {
    overflow: auto !important;
}

.testimonials {
    padding-bottom: 120px;
}
.testimonials > .container {
    max-width: initial;
}
.testimonials .container > header {
    margin: 60px 0;
    text-align: center;
}

.use-spring-carousel-track-wrapper {
    cursor: grab;
}

.testimonial {
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px 5px 25px 25px;
    box-shadow: 0 14px 32px rgba(0,113,186,.2), 0 28px 72px rgba(0,113,186,.2);
    border-top: 4px solid #9cc6da;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    position: relative;
    width: 100%;
    user-select: none;
    cursor: grab;
}
.testimonial-media {
    height: 48px;
    width: 48px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #B0DAF5;
    margin: 0;
    flex-grow: 0;
    flex-shrink: 0;
}
.testimonial-media > img {
    display: block;
    width: 100%;
    height: auto;
}
.testimonial-body {
    font-size: 16px;
    line-height: 1.5;
}
.overlay-block-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-indent: 110%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
}
.testimonial-author {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
}

.testimonial-author_body .person {
    font-size: 12px;
}
.testimonial-author_body .person b {
    font-size: 14px;
}

.testimonials .owl-carousel .owl-stage-outer {
    padding-top: 30px;
    overflow: visible;
}
.testimonials .owl-stage {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /*display: block;*/
}
.testimonials .owl-item {
    display: flex;
    /*display: block;*/
}
.testimonials .owl-item .testimonial {
    flex-grow: 1;
    height: 100%;
    width: 100%;
}
.testimonials .owl-dots {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
    z-index: 1;
    position: relative;
    gap: 20px;
}

.testimonials .owl-dots .owl-dot {
    height: 0;
    width: 0;
    border: 4px solid #0272bb;
    border-radius: 100%;
    opacity: .5;
}

.owl-item.center .testimonial {
    border-top-color: #0071BA;
}

.testimonials .owl-dots .owl-dot.active {
    opacity: 1;
}

.testimonials .owl-item {
    transform: scale(.9) !important;
    transform-origin: center;
    transition: all .2s ease-in-out;
}

.testimonials .owl-item.active.center {
    transform: scale(1) !important;
    opacity: 1;
    transform-origin: center;
}

.testimonials-slider.translating-left .owl-item.active,
.testimonials-slider.translating-left .owl-item {
    transform: rotateZ(-5deg) scale(0.9) !important;
}

.testimonials-slider.translating-right .owl-item.active,
.testimonials-slider.translating-right .owl-item {
    transform: rotateZ(5deg) scale(0.9) !important;
}

#lets-talk > .container {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}
#lets-talk header {
    text-align: center;
    max-width: 70%;
    margin: 0 auto 40px;
}
#lets-talk form {
    padding: 40px;
    padding: 40px 0px;
    border-radius: 25px;
    max-width: 680px;
    margin-bottom: 60px;
}
.lets-talk label {
    display: block;
    margin-left: 18px;
    font-weight: bold;
}
.lets-talk label[for=privacy] {
    font-weight: normal;
}
.lets-talk [type=text],
.lets-talk [type=email],
.lets-talk textarea {
    padding: 12px 16px;
    border-radius: 20px;
    border: 1px solid #B0DAF5;
    box-shadow: inset 0 2px 7px rgba(0,0,0,.1), 0 1px 0 #fff;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
}
.lets-talk textarea {
    min-height: 100px;
}
.lets-talk .error-block {
    font-size: 12px;
    color: #961111;
    margin-left: 18px;
}
.form-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.form-group {
    margin-bottom: 20px;
}
.form-row > .form-group {
    flex-grow: 1;
}

@media only screen and (min-width: 0) and (max-width: 992px) {
    #lets-talk > .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.faqs {
    max-width: 680px;
    margin: 90px auto;
}
.faq {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #5bade3;
    border-bottom: 1px solid #1a76b4;
}
summary {
    padding: 12px 0;
    font-size: 18px;
    font-weight: bold;
}
.faq-body {
    padding-left: 1em;
    font-size: 15px;
}

.media-text-simple-advantages .layered-pop-up-media {
    position: absolute;
    bottom: -20px;
    max-width: 180px;
    width: 40%;
    background-color: transparent;
    border-radius: 14%/9%;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(5, 24, 37, .48), 0 14px 32px rgba(0,113,186,.2), 0 28px 72px rgba(0,113,186,.2);
}

.layered-pop-up-media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.alert {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #9a9ea9;
    color: #525762;
    line-height: 1.25;
    margin: 0;
    border-radius: 0 8px 8px 0;
    border-left-width: 4px;
    position: relative;
}

.alert-danger {
    background-color: #fbeeee;
    border-color: #852f2f;
    color: #961111;
}

.alert-success {
    background-color: #f6fbf5;
    border-color: #85b170;
    color: #2e4f0f;
}

.btn-dismiss-message {
    padding: 0;
    border: none;
    background-color: #9a9ea9;
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    color: #f7f7f8;
    position: absolute;
    top: -6px;
    right: -6px;
    height: 14px;
    width: 14px;
    border-radius: 14px
}

.alert-danger .btn-dismiss-message {
    background-color: #852f2f;
    color: #fbeeee;
}

.alert-success .btn-dismiss-message {
    background-color: #506b43;
    color: #f6fbf5;
}

.owl-nav {
    position: static;
}
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.75) !important;
    font-size: 40px !important;
    line-height: 1 !important;
}
.owl-prev > span,
.owl-next > span {
    position: relative;
    top: -5px;
    display: none;
}
.owl-prev {
    left: 0;
    border-radius: 0 50% 50% 0;
}
.owl-next {
    right: 0;
    border-radius: 50% 0 0 50%;
}
.owl-next {
    background-image: url('/assets/chevron-right.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 18px 18px !important;
}
.owl-prev {
    background-image: url('/assets/chevron-left.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 18px 18px !important;
}
#main-content {
    overflow: hidden !important;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #fff;
    font-size: 13px;
    box-shadow: 0 -14px 32px rgba(0,113,186,.3), 0 -28px 72px rgba(0,113,186,.3);
}

.cookie-consent-inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    display: none;
    z-index: 2;
    box-sizing: border-box;
    will-change: height;
}

@media screen and (max-height: 640px) {
    .cookie-consent-inner {
        max-height: 320px;
        overflow: auto;
    }
}

.cookie-consent-inner.show {
    display: block;
    transition: none;
    animation: none;
}

.cookie-consent details {
    margin-bottom: 5px;
}

.cookie-consent details + div {
    margin-bottom: 15px;
}

#cookie-consent-settings-toggle {
    position: absolute;
    top: -40px;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border: none;
    background: #fff url("/assets/cookie.svg") no-repeat center;
    background-size: 24px 24px;
    border-radius: 50% 0 0 0;
    text-indent: 130%;
    white-space: nowrap;
    z-index: 1;
    box-shadow: 0 -3px 5px rgba(0,113,186,.3);
}

.cookie-consent h2,
.cookie-consent h3 {
    font-weight: bold;
}

.cookie-consent h2 {
    font-size: 1.3em;
}

.cookie-consent h3 {
    font-size: 1em;
}

.cookie-consent p {
    font-size: 12px;
    text-wrap: initial;
}

.cookie-consent label.button-xs {
    font-size: 12px;
    padding: .1em 1em .6em .2em;
}

.cookie-consent .button[disabled] {
    color: #9ba6ad;
    border-color: #9ba6ad;
}

.cookie-consent-messages {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

@media screen and (max-width: 640px) {
    .cookie-consent-messages {
        flex-direction: column;
        gap: 10px;
    }
}

.cookie-consent-group {
    flex-grow: 1;
    min-width: 50%;
}

.cookie-consent-group > details p:last-child {
    margin-bottom: 20px;
}

.cookie-consent [type=radio] {
    position: relative;
    top: 2px;
}
.cookie-consent label[for="analytics-yes"] {
    margin-right: 20px;
}

.cookie-consent-actions {
    margin-top: 20px;
}