* ------------------------------------------------------------------------------------------------------------------ */
/* Core styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Gotham Rounded SSm A", "Gotham Rounded SSm B", sans-serif;
}

:focus {
    outline: auto;
}

.highlight :focus {
    border: 3px solid black;
    outline: none;
}

#root label {
    width: 100% !important;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Width utilities */
.mw-xs {
    max-width: 450px;
}

.mw-sm {
    max-width: 600px;
}

.mw-md {
    max-width: 960px;
}

.mw-lg {
    max-width: 1200px;
}

.mw-xl {
    max-width: 1536px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Flex containers */
.flex-fill {
    flex-grow: 1 !important;
    flex-basis: 0 !important;
}

.responsive-flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-grid-row {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 750px) {
    .flex-grid-row {
        flex-direction: column;
    }
}

@media only screen and (max-width: 900px) {
    .responsive-flex-row {
        flex-direction: column;
    }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Bootstrap overrides */
.form-control {
    border-radius: 0 !important;
}

.form-control:focus {
    border-color: #471BFF !important;
    box-shadow: 0 0 0 1px #471BFF !important;
}

.form-control-error,
.form-control-error:focus {
    border-color: #DC3545 !important;
    box-shadow: 0 0 0 1px #DC3545 !important;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Image styles */
.sp-img {
    width: auto;
    height: 128px;
}

.sp-logo-navbar {
    height: auto;
    width: 260px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Skip content style */
.skip-to-content {
    height: 1px;
    left: -1000px;
    overflow: hidden;
    position: absolute;
    text-align: left;
    top: -1000px;
    width: 1px
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Pane styles */

.sp-pane-primary {
    background-color: #FFFFFF;
}

.sp-pane-secondary {
    background-color: #ECF8FF;
}

.sp-pane-tertiary {
    background-color: #1E3C91;
}

.sp-pane-orange {
    background-color: #FFA52A;
    color: #0F0F0F !important;
}

.sp-pane-blue {
    background-color: #1E3C91;
    color: #FFFFFF !important;
}

.sp-pane-purple {
    background-color: #7265AA;
    color: #FFFFFF !important;
}

.sp-pane-pink {
    background-color: #D03D7F;
    color: #FFFFFF !important;
}

.sp-pane-light-blue {
    background-color: #027EB4;
    color: #FFFFFF !important;
}

.sp-pane-lighter-blue {
    background-color: #83D3E3;
    color: #0F0F0F !important;
}

.sp-pane-already-bought-sim,
.sp-pane-looking-to-buy-sim {
    display: flex;
    flex-direction: column;
}

.sp-pane-already-bought-sim * img,
.sp-pane-looking-to-buy-sim * img {
    width: 200px;
    position: relative;
    transition: transform 0.2s;
}

.sp-pane-already-bought-sim:hover * img,
.sp-pane-looking-to-buy-sim:hover * img {
    transform: scale(1.3);
}

.sp-pane-already-bought-sim {
    background-color: #83D3E3
}

.sp-pane-already-bought-sim img {
    margin-top: -160px;
}

.sp-pane-looking-to-buy-sim {
    background-color: #1E3C91
}

.sp-pane-looking-to-buy-sim img {
    margin-top: -150px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Text styles */
.sp-title {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
}

.sp-subtitle {
    font-size: 24px;
    font-weight: bold;
}

.sp-paragraph,
.sp-paragraph-bold {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
}

.sp-paragraph-bold {
    font-weight: 700;
}

.sp-caption {
    font-size: 0.9em;
    margin: 0;
}

.sp-text-primary {
    color: #1E3C91 !important;
}

.sp-text-secondary {
    color: #0F0F0F !important;
}

.sp-text-tertiary {
    color: #00A2C1 !important;
}

.sp-text-white {
    color: #FFFFFF !important;
}

.sp-text-black {
    color: #0F0F0F;
}

.sp-text-error {
    color: #DC3545 !important;
}

.sp-circle-number {
    background-color: #FFFFFF;
    color: #1E3C91;
    font-weight: bold;
    font-size: 34px;
    border-radius: 100%;
    padding: 10px;
    width: 72px;
}

.sp-text-strike {
    text-decoration: line-through;
}

.sp-text-bold {
    font-weight: bold;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* List styles */
.sp-list {
    list-style: none;
}

.sp-list li {
    padding: .5rem;
}

.sp-list-orange li::before,
.sp-list-blue li::before,
.sp-list-purple li::before,
.sp-list-pink li::before,
.sp-list-light-blue li::before {
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.sp-list-orange li::before {
    color: #FFA52A;
}

.sp-list-blue li::before {
    color: #1E3C91;
}

.sp-list-purple li::before {
    color: #7265AA;
}

.sp-list-pink li::before {
    color: #D03D7F;
}

.sp-list-light-blue li::before {
    color: #027EB4;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Card styles */
.sp-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem;
    border-radius: 0;
}

.sp-card-elevated {
    box-shadow: rgba(0, 0, 0, 0.3) 0 3px 6px 0;
}

.sp-card-white {
    background-color: #FFFFFF;
    color: #0F0F0F;
}

.sp-card-light-blue {
    background-color: #027EB4;
    color: #FFFFFF;
}

.sp-card-lighter-blue {
    background-color: #83D3E3;
    color: #0F0F0F;
}

.sp-card-primary {
    background-color: #FFFFFF;
}

.sp-card-secondary {
    border-style: solid;
    border-width: 1px;
    border-color: #471BFF;
}

.sp-card-hollow {
    border-style: solid;
    border-width: 2px;
    background-color: #FFFFFF;
}

.sp-card-hollow-orange {
    border-color: #FFA52A;
    color: #0F0F0F !important;
}

.sp-card-hollow-blue {
    border-color: #1E3C91;
    color: #0F0F0F !important;
}

.sp-card-hollow-purple {
    border-color: #7265AA;
    color: #0F0F0F !important;
}

.sp-card-hollow-pink {
    border-color: #D03D7F;
    color: #0F0F0F !important;
}

.sp-card-hollow-light-blue {
    border-color: #027EB4;
    color: #0F0F0F !important;
}

.sp-card-hollow-title {
    padding: 2rem;
}

.sp-card-hollow-title-orange {
    background-color: #FFA52A;
    color: #0F0F0F !important;
}

.sp-card-hollow-title-blue {
    background-color: #1E3C91;
    color: #FFFFFF;
}

.sp-card-hollow-title-purple {
    background-color: #7265AA;
    color: #FFFFFF;
}

.sp-card-hollow-title-pink {
    background-color: #D03D7F;
    color: #FFFFFF;
}

.sp-card-hollow-title-light-blue {
    background-color: #027EB4;
    color: #FFFFFF;
}

.sp-card-orange {
    background-color: #FFA52A;
    color: #0F0F0F !important;
}

.sp-card-purple {
    background-color: #7265AA;
    color: #FFFFFF !important;
}

.sp-card-blue {
    background-color: #1E3C91;
    color: #FFFFFF !important;
}

.sp-card-pink {
    background-color: #D03D7F;
    color: #FFFFFF !important;
}

.sp-card-text-title,
.sp-card-text-subtitle {
    font-weight: 700;
    text-align: left;
}

.sp-card-text-title {
    font-size: 1.5rem;
}

.sp-card-text-title-plan {
    font-size: 44px;
    font-weight: 700;
}

.sp-card-text-subtitle {
    font-size: 1.125rem;
}

.sp-card-text-paragraph {
    font-size: 1rem;
}

.sp-card-text-caption {
    font-size: .9rem;
}

.sp-card-button-link,
.sp-card-button-link:hover {
    color: #0F0F0F;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    border-style: solid;
    border-width: 2px;
    border-color: #027EB4;
    background-color: #FFFFFF;
    text-decoration: none;
    padding: .6rem 5rem;
}

.sp-card-splash {
    display: block;
    margin-top: 4rem;
}

.sp-card-splash img {
    position: relative;
    margin-top: -100px;
}

.sp-card-dot,
.sp-card-dot-selected {
    display: flex;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
}

.sp-card-dot {
    background-color: #FFFFFF;
    height: 32px;
    width: 32px;
}

.sp-card-dot-orange {
    border-color: #FFA52A;
}

.sp-card-dot-blue {
    border-color: #1E3C91;
}

.sp-card-dot-purple {
    border-color: #7265AA;
}

.sp-card-dot-pink {
    border-color: #D03D7F;
}

.sp-card-dot-light-blue {
    border-color: #027EB4;
}

.sp-card-dot-lighter-blue {
    border-color: #83D3E3;
}

.sp-card-dot-selected {
    height: 16px;
    width: 16px;
    border: none;
    position: relative;
}

.sp-card-dot-selected-orange {
    background-color: #FFA52A;
}

.sp-card-dot-selected-blue {
    background-color: #1E3C91;
}

.sp-card-dot-selected-purple {
    background-color: #7265AA;
}

.sp-card-dot-selected-pink {
    background-color: #D03D7F;
}

.sp-card-dot-selected-light-blue {
    background-color: #027EB4;
}

.sp-card-dot-selected-lighter-blue {
    background-color: #83D3E3;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Form styles */

.sp-form {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
}

.sp-form-white {
    background-color: #FFFFFF;
    color: #0F0F0F;
}

.sp-form-elevated {
    box-shadow: rgba(0, 0, 0, 0.3) 0 3px 6px 0;
}

.sp-form-text-title,
.sp-form-text-subtitle {
    text-align: start;
    font-weight: bold;
}

.sp-form-text-title {
    font-size: 1.5rem;
}

.sp-form-text-subtitle {
    font-size: 1.125rem;
}

.sp-form-text-paragraph {
    font-size: 1rem;
}

.sp-form-text-caption {
    font-size: .9rem;
}

.sp-form-text-error {
    font-size: .9rem;
    color: #FE5000 !important;
}

.sp-form-section-wrapper {
    display: flex;
    flex-direction: column;
    padding: 1.3rem;
    gap: 1rem;
}

.sp-form-fields {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sp-form-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.sp-form-field-wrapper label {
    font-size: 14px;
    font-weight: bold;
}

.sp-form-field-wrapper select {
    background-color: #FFFFFF;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.sp-form-field-wrapper input,
.sp-form-field-wrapper select {
    width: 100%;
}

.sp-form-field-wrapper input,
.sp-form-field-wrapper input:focus,
.sp-form-field-wrapper select,
.sp-form-field-wrapper select:focus {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: solid;
    border-bottom-width: 2px;
}

.sp-form-field-wrapper input:focus,
.sp-form-field-wrapper select:focus {
    border-bottom-color: #027EB4;
    outline: 0;
    transition: 150ms;
}

.sp-form-field-error-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sp-form-field-wrapper-checkbox {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: start;
}

.sp-form-field-wrapper-checkbox input {
    display: block;
    width: 22px;
    height: 22px;
    appearance: none;
    outline: 2px solid #027EB4;
    box-shadow: none;
    text-align: center;
    font-size: 22px;
    line-height: 22px;
    margin-top: 6px;
}

.sp-form-field-wrapper-checkbox input:hover {
    cursor: pointer;
}

.sp-form-field-wrapper-checkbox input:checked:after {
    content: "\2713";
    color: #027EB4;
}

.sp-form-field-tooltip-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.sp-form-field-tooltip-wrapper i {
    font-size: 16px;
}

.sp-form-field-tooltip-wrapper i:hover {
    cursor: pointer;
}

.sp-form-button-submit {
    width: 100%;
    font-weight: bold;
    text-align: center;
    color: #0F0F0F;
    border-style: solid;
    border-width: 2px;
    border-color: #027EB4;
    background-color: #FFFFFF;
    text-decoration: none;
    padding: .6rem 5rem;

&.disabled {
     border-color: #aaa;
     color: #777;
 }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Modal styles */

.sp-modal {
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.sp-modal-elevated {
    box-shadow: rgba(0, 0, 0, 0.3) 0 3px 6px 0;
}

.sp-modal-white {
    background-color: #FFFFFF;
    color: #0F0F0F;
}

.sp-modal-text-title,
.sp-model-text-paragraph {
    text-align: start;
}

.sp-modal-text-title {
    font-size: 32px;
    font-weight: bold;
}

.sp-model-text-paragraph {
    font-size: 16px;
}

.sp-modal-button-close {
    background-color: #FFFFFF;
    border: 0;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
}

/* Bootstrap overrides */
.modal-header {
    margin-top: 1rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    border-bottom: 0 !important;
}

.modal-body {
    margin-top: -1rem !important;
    margin-bottom: .5rem !important;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Link styles */
.sp-link,
.sp-link-white {
    font-size: 1em;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
}

.sp-link,
.sp-link:hover {
    color: #0F0F0F;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
}

.sp-link-white,
.sp-link-white:hover {
    color: #FFFFFF;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Button styles */
.sp-button,
.sp-link-button {
    font-weight: bold;
    text-align: center;
    color: #0F0F0F;
    border-style: solid;
    border-width: 2px;
    border-color: #0F0F0F;
    background-color: #FFFFFF;
    text-decoration: none;
    position: relative;
    padding: .6rem 5rem;
}

.sp-button:hover,
.sp-link-button:hover {
    text-decoration: none;
    box-shadow: 0 0;
    color: #0F0F0F;
    left: 4px;
    top: 4px;
}

.sp-link-button-orange {
    box-shadow: #FFA52A 4px 4px;
}

.sp-link-button-blue {
    box-shadow: #1E3C91 4px 4px;
}

.sp-link-button-purple {
    box-shadow: #7265AA 4px 4px;
}

.sp-link-button-pink {
    box-shadow: #D03D7F 4px 4px;
}

.sp-link-button-light-blue {
    box-shadow: #027EB4 4px 4px;
}

.sp-link-button-secondary {
    border-style: solid;
    border-width: 2px;
    border-color: #1E3C91;
    color: #0F0F0F;
    padding: .6rem;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.sp-link-button-secondary:hover {
    background-color: #1E3C91;
    color: #FFFFFF;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Accordion styles */
.accordion {
    box-shadow: #83D3E3 10px 10px;
    top: 10px !important;
    left: 10px !important;
}

.accordion-header {
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.accordion-body {
    border-top-style: solid !important;
    border-top-width: 1px !important;

    border-bottom-style: solid !important;
    border-bottom-width: 1px !important;
}

.accordion-body a,
.accordion-body a:hover {
    color: #0F0F0F;
}

.accordion-item button {
    font-size: .6em;
    font-weight: bolder;
    padding: 1.5rem;
    color: #1F1F1F !important;
    background: #FFFFFF !important;
}

.accordion-item button:focus,
.accordion-item button:active {
    outline: none !important;
    box-shadow: none !important;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Navbar styles */
.navbar-wrapper,
.navbar-wrapper-secondary,
.navbar-wrapper-tertiary {
    width: 100%;
}

.navbar-wrapper {
    background-color: #FFFFFF;
}

.navbar-wrapper-secondary,
.navbar-wrapper-tertiary {
    height: 68px;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar-wrapper-secondary {
    background-color: #027EB4;
}

.navbar-wrapper-secondary i {
    color: #FFFFFF;
}

.navbar-wrapper-tertiary {
    background-color: #83D3E3;
}

.navbar-wrapper-tertiary i {
    color: #0F0F0F;
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    width: 100%;
    gap: .5rem;
}

.navbar-link,
.navbar-link-button,
.navbar-link-alt,
.navbar-link-alt-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: bolder;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 0.6rem;
    margin-right: 0.6rem;
    padding-bottom: 0.5rem;
    padding-top: 0.9rem;
}

.navbar-link,
.navbar-link-button {
    color: #1E3C91;
}

.navbar-link-alt,
.navbar-link-alt-button {
    color: #FFFFFF;
}

.narbar-link:hover,
.navbar-link-alt:hover {
    font-weight: bolder;
    text-decoration: none;
    font-size: 0.9rem;
    border-style: solid;
}

.narbar-link:hover {
    color: #1E3C91;
}

.navbar-link-alt:hover {
    color: #FFFFFF;
}

.navbar-link i {
    font-size: 28px;
}

.navbar-link-button {
    background-color: #83D3E3;
    padding: .3rem .7rem;
    border-radius: 3px;
}

.navbar-link-button:hover {
    background-color: #027EB4;
    color: #FFFFFF;
}

.sp-navbar-toggle {
    background: none;
    border: none;
    font-size: 2rem;
}

.sp-navbar-expandable {
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: expandAnimation 400ms;
}

.sp-navbar-expandable a,
.sp-navbar-expandable a:hover {
    font-size: 1.3rem;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

.sp-navbar-expandable-light-blue {
    background-color: #027EB4;
}

.sp-navbar-expandable-light-blue a,
.sp-navbar-expandable-light-blue a:hover {
    color: #FFFFFF;
}

.sp-navbar-expandable-lighter-blue {
    background-color: #83D3E3;
}

.sp-navbar-expandable-lighter-blue a,
.sp-navbar-expandable-lighter-blue a:hover {
    color: #0F0F0F;
}

@keyframes expandAnimation {
    from {
        height: 0
    }
    to {
        height: 100%;
    }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Footer styles */
.sp-footer {
    display: flex;
    flex-direction: column;
    background-color: #83D3E3;
}

.sp-footer-line {
    width: 90%;
    border: 3px #1E3C91 solid;
    opacity: 1;
    border-radius: 50px;
    margin: 1rem 0;
}

.sp-footer-column {
    padding: 0;
}

.sp-footer-column li {
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.sp-footer-logo {
    height: auto;
    width: 170px;
    margin-top: 18px;
}

.sp-footer-link {
    text-decoration: none;
    color: #1E3C91;
    font-size: 1em;
    font-weight: bolder;
    text-align: left;
}

.sp-footer-link:hover {
    color: #1E3C91;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Icon styles */
.sp-icon-outlined {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px !important;
    font-weight: 700;
    height: 16px;
    width: 16px;
    font-style: normal;
}

.sp-icon-outlined-black {
    border: 2px solid #0F0F0F;
}

.sp-icon-outlined-black:after {
    color: #0F0F0F;
}

.sp-icon-outlined-red {
    border: 2px solid #FE5000;
}

.sp-icon-outlined-red:after {
    color: #FE5000;
}

.sp-icon-outlined-info:after {
    content: 'i';
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Blog post styles */
.blog-post-latest-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.blog-post-latest-wrapper > .blog-post-card-image {
    padding: 0 !important;
}

.blog-post-latest-wrapper > .blog-post-card-image img {
    width: 100% !important;
    padding: 0 !important;
}

.blog-post-latest-wrapper > .blog-post-card-image:hover {
    transform: none !important;
    transition: none !important;
}

.blog-post-latest-wrapper > * .sp-card-blog-link-title {
    font-size: 1.8rem !important;
    line-height: 1.1 !important;
    text-align: left !important;
}

.blog-post-latest-wrapper > * .sp-link-button-secondary {
    max-width: 200px;
}

.blog-post-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem;
}

.blog-post-card {
    flex: 0 0 23%;
    max-width: 23%;
}

.sp-card-blog-link {
    text-decoration: none;
}

.blog-post-card-image {
    background-position: center center;
    background-size: cover;
    display: block;
    padding-bottom: 70%;
}

.blog-post-card-image:hover {
    transform: scale(1.05);
    transition: transform 0.1s ease-in-out 0s;
}

.sp-card-blog-link-title {
    font-weight: bold;
}

.blog-banner {
    height: 480px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 4rem;
}

.blog-banner-shader {
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-banner-title-wrapper,
.blog-content-section {
    max-width: 700px;
}

.blog-banner-title,
.blog-banner-subtitle {
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}

.blog-banner-title {
    font-size: 2.8em;
    margin-bottom: 1rem;
}

.blog-banner-subtitle {
    font-size: 1.2em;
}

.blog-content-section {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.blog-content-paragraph,
.blog-content-title {
    color: #0F0F0F;
    text-align: left;
}

.blog-content-paragraph {
    font-size: 1em;
}

.blog-content-title {
    font-size: 1.3em;
    font-weight: bold;
}

.blog-content-link,
.blog-content-link:hover {
    color: #0F0F0F;
}

@media only screen and (min-width: 951px) and (max-width: 1267px) {
    .blog-post-wrapper {
        max-width: 900px;
    }

    .blog-post-card {
        max-width: 48%;
        flex: 0 0 48%;
    }

    .blog-post-latest-wrapper > .blog-post-card-image img {
        width: 500px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 950px) {
    .blog-post-wrapper {
        max-width: 550px;
    }

    .blog-post-card {
        max-width: 90%;
        flex: 0 0 90%;
    }

    .blog-post-latest-wrapper {
        flex-direction: column;
        width: 495px;
    }

    .blog-post-latest-wrapper > .blog-post-card-image img {
        width: 100%;
    }

    .blog-post-latest-wrapper > * .sp-link-button-secondary {
        max-width: none;
    }
}

@media only screen and (max-width: 600px) {
    .blog-post-wrapper {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .blog-post-card {
        max-width: 100%;
        flex: 0 0 100%;
        padding-bottom: 1rem;
    }

    .blog-post-latest-wrapper {
        flex-direction: column;
    }

    .blog-post-latest-wrapper > .blog-post-card-image img {
        width: 90%;
    }

    .blog-post-latest-wrapper > * .sp-link-button-secondary {
        max-width: none;
    }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Health & beauty styles */
.health-and-beauty {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem 1rem;
}

.health-and-beauty img {
    width: 200px;
    height: auto;
}

.health-and-beauty > * .sp-paragraph {
    font-size: 1em !important;
}

.health-and-beauty a,
.health-and-beauty a:hover {
    color: #0F0F0F;
}

@media only screen and (max-width: 950px) {
    .health-and-beauty {
        flex-direction: column;
        align-items: center;
    }

    .health-and-beauty img {
        width: 400px;
        height: auto;
    }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Purchase & Delivery styles */
.purchase-and-delivery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.purchase-and-delivery img {
    width: 90px;
}

@media only screen and (max-width: 950px) {
    .purchase-and-delivery {
        flex-direction: column;
        align-items: center;
    }

    .purchase-and-delivery img {
        width: 70px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* Gnatta bot style*/

.snackbar-container {
    align-items: flex-start;
    background-color: #1f3c90;
    bottom: 0;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    height: auto;
    left: 0;
    opacity: 0;
    padding: 20px 45px 20px 16px;
    position: fixed;
    transition: all 0.3s ease-in-out;
    right: 0;
    width: 100%;
    z-index: 9;
}

@media (min-width: 575px) {
    .snackbar-container {
        left: inherit;
        width: 302px;
    }
}

.snackbar-text {
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    margin: 0 0 16px 0;
}

.snackbar-dismiss-button {
    align-items: center;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    margin: 20px 16px;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.snackbar-button {
    background-color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px 10px 10px;
    width: auto;
}

.button-img {
    height: 24px;
    margin-right: 12px;
}

.gnatta-inline-webchat-host-fullscreen {
    overflow-y: hidden;
    position: fixed;
    width: 100%;
}

.gnatta-webchat-hidden {
    display: none;
}

.gnatta-inline-webchat {
    max-width: 400px;
    max-height: 600px;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0px;
    right: 0px;
    overflow: hidden;
    visibility: visible;
    z-index: 99999;
    border: 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.gnatta-inline-webchat iframe {
    max-width: 400px;
    max-height: 600px;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0px;
    right: 0px;
    overflow: hidden;
    visibility: visible;
    z-index: 99999;
    border: 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.gnatta-inline-webchat-collapse {
    max-width: 400px;
    max-height: 42px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 9999;
    overflow: hidden;
}

.gnatta-inline-webchat.fullscreen {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 0;
    padding: 0;
    margin: 0;
    float: none;
    z-index: 9999;
    border: none;
}

.gnatta__btn {
    align-items: center;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    height: 48px;
    justify-content: center;
    margin: 30px;
    padding: 12px 20px 12px 16px;
    z-index: 9999;
}

@media screen and (min-width: 992px) {
    .gnatta__btn {
        margin: 30px 60px 30px 30px;
    }
}

.gnatta__btn__icon {
    display: flex;
    margin-right: 12px;
    transform: scale(0.8);
}

.gnatta__btn__text {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: white;
}

.gnatta-button-container {
    align-items: center;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    height: 48px;
    justify-content: center;
    margin: 30px;
    padding: 12px 16px;
}

.gnatta-icon-container {
    display: flex;
    margin-right: 12px;
    transform: scale(0.8);
}

.gnatta-button-text {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
}

.footer__gnatta {
    position: fixed;
    bottom: 0%;
    right: 0%;
    opacity: 0;
}

.footer__gnatta * {
    font-family: 'Gotham Rounded SSm A', 'Gotham Rounded SSm B', sans-serif;
}

.intro-anim {
    animation: 0.6s ease 0s normal forwards 1 introAnim;
    animation-delay: 6s;
}

@keyframes introAnim {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes introAnim {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* Hybris login */
.hybris-wrapper {
    min-height: 100%;
    background-color: #eef6fc;
}

.hybris-iframe-wrapper {
    height: 100%;
    min-height: 300px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
