﻿html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    html *,
    body * {
        box-sizing: inherit;
    }

    html .sics-padding,
    body .sics-padding {
        padding: 0 30px;
    }

    html .left-14,
    body .left-14 {
        margin-left: -14px;
    }

    html .right-14,
    body .right-14 {
        margin-right: -14px;
    }

    html .mt-32,
    body .mt-32 {
        margin-top: 32px;
    }

    html .mb-32,
    body .mb-32 {
        margin-bottom: 32px;
    }

    html .mt-12,
    body .mt-12 {
        margin-top: 12px;
    }

    html .mb-12,
    body .mb-12 {
        margin-bottom: 12px;
    }

    html .mt-18,
    body .mt-18 {
        margin-top: 18px;
    }

    html .mb-18,
    body .mb-18 {
        margin-bottom: 18px;
    }

    html .bg-standard-dark,
    body .bg-standard-dark {
        background: #272643;
    }

    html .br-8px,
    body .br-8px {
        border-radius: 8px;
    }

    html .br-16px,
    body .br-16px {
        border-radius: 16px;
    }

body {
    font-family: "Heebo", sans-serif, sans-serif;
    color: #272643;
}

h1, .h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

h2, .h2 {
    font-size: 18px;
    font-weight: 700;
}

h3, .h3 {
    font-size: 16px;
    font-weight: 700;
}

h4, .h4 {
    font-size: 14px;
    font-weight: 700;
}

a {
    color: #272643;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* turn off MS Edge's password eye */
::-ms-reveal {
    display: none;
}

/* turn off the built-in calendar picker */
::-webkit-calendar-picker-indicator {
    display: none;
}

.fs-12px {
    font-size: 12px;
    margin-bottom: 0;
}

.fs-14px {
    font-size: 14px;
    margin-bottom: 0;
}

.fs-18px {
    font-size: 18px;
    margin-bottom: 0;
}

.mobile-overlay {
    z-index: 5;
    background: #e6e6e6;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    padding: 30px 30px 0 30px;
    font-size: 18px;
    overflow-y: scroll;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
}

.mobile-overlay__exit {
    position: fixed;
    top: 0px;
    left: 14px;
    background: white;
    padding: 16px 0;
    width: calc(100% - 28px);
    cursor: pointer;
    z-index: 3;
}

.mobile-overlay__heading {
    margin-top: 42px;
    margin-bottom: 6px;
}

.mobile-navigation-wrapper {
    height: calc(100% - 106px);
}

.mobile-navigation {
    list-style: none;
}

    .mobile-navigation .navigation__nav-item {
        border-bottom: 1px solid #272643;
        transform: translateX(30px);
        opacity: 0;
    }

        .mobile-navigation .navigation__nav-item:last-child {
            margin-bottom: 24px;
        }

    .mobile-navigation .navigation__nav-link {
        display: flex;
        justify-content: space-between;
        color: #272643;
        padding: 18px 0;
        font-size: 18px;
        text-decoration: none;
    }

.mobile-navigation__copyright {
    display: block;
    text-align: center;
    margin: 18px auto 0 auto;
    font-size: 14px;
}

.header__mobile-menu-button {
    margin-right: -14px;
    cursor: pointer;
}

.desktop-navigation {
    font-size: 16px;
}

    .desktop-navigation .navigation__nav-item {
        margin-left: 1.5rem;
    }

    .desktop-navigation .navigation__nav-link {
        border-radius: 50px;
        transition: 0.3s opacity ease;
    }

        .desktop-navigation .navigation__nav-link:hover {
            opacity: 0.8;
        }

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group__input {
    font-size: 14px;
    padding: 20px;
    border: 1px solid rgba(39, 38, 67, 0.25);
    border-radius: 6px;
}

.form-group__input--campaign {
    padding: 18px 100px 18px 24px;
    border-radius: 50px;
}

.form-group .campaign-button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: none;
    background: var(--bs-primary);
    padding: 18px 24px;
    border-radius: 50px;
    color: var(--main-btn-text-color);
}

    .form-group .campaign-button:disabled {
        background: var(--ss-buttondisabled) !important;
    }

.iti {
    width: 100%;
}

#membership-type label, #membership-addon label, .summary-membership label {
    display: block;
}

    #membership-type label > input, #membership-addon label > input, .summary-membership label > input {
        visibility: hidden;
        position: absolute;
    }

        #membership-type label > input:checked + div .checkmark,
        #membership-addon label > input:checked + div .checkmark,
        .summary-membership label > input:checked + div .checkmark {
            display: block;
        }

        #membership-type label > input:checked + div .membership-card__bottom,
        #membership-addon label > input:checked + div .membership-card__bottom,
        .summary-membership label > input:checked + div .membership-card__bottom {
            display: block;
        }

        #membership-type label > input:checked + div .membership-card__top,
        #membership-addon label > input:checked + div .membership-card__top,
        .summary-membership label > input:checked + div .membership-card__top {
            align-items: flex-start;
        }

.membership-card {
    overflow: hidden;
    position: relative;
    padding: 16px 26px;
    margin-bottom: 12px;
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.16);
    font-size: 18px;
    cursor: pointer;
}

    .membership-card:hover {
        box-shadow: 0 10px 60px rgba(0, 0, 0, 0.26);
    }

    .membership-card small, .membership-card .small {
        font-size: 12px;
    }

.membership-card__bottom {
    display: none;
    font-size: 16px;
}

    .membership-card__bottom ul li {
        margin-bottom: 6px;
    }

.membership-card .checkmark {
    transition: opacity 0.3s ease-in-out;
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 40px solid var(--bs-primary);
    border-left: 40px solid transparent;
}

    .membership-card .checkmark svg {
        position: absolute;
        bottom: -30px;
        right: 6px;
        z-index: 4;
    }

.radio-button label > input {
    visibility: hidden;
    /* Makes input not-clickable */
    position: absolute;
    /* Remove input from document flow */
}

    .radio-button label > input:checked + * {
        background: #00B60B;
        border: 1px solid #00B60B;
    }

        .radio-button label > input:checked + * svg {
            opacity: 1;
        }

.radio-button__custom {
    height: 32px;
    width: 32px;
    min-width: 32px;
    border-radius: 50%;
    border: 1px solid rgba(39, 38, 67, 0.25);
    margin-right: 8px;
}

    .radio-button__custom svg {
        opacity: 0;
    }

.iti--container {
    width: calc(100% - 60px);
}

.iti__selected-flag {
    padding: 0 6px 0 18px !important;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-left: 64px !important;
}

.long-pill-button {
    border: none;
    width: 100%;
    border-radius: 50px;
    padding: 19px 0;
    transition: transform 0.3s ease-in-out;
    background: var(--bs-primary);
    color: var(--ss-buttontextcolor);
}

    .long-pill-button:hover {
        transform: scale(1.025);
    }

    .long-pill-button:disabled {
        background: var(--ss-buttondisabled) !important;
    }

        .long-pill-button:disabled:hover,
        .long-pill-button:disabled:hover * {
            transform: none !important;
        }

    .long-pill-button p {
        color: var(--main-btn-text-color) !important;
    }
@media screen and (min-width: 992px) {
    .long-pill-button {
        max-width: 500px;
    }
}

.forgot-password {
    max-width: 500px;
}

.passwordtoggle {
    position: absolute;
    right: 0;
    padding: calc(1.5em - 1px);
}

.constrained-width {
    max-width: 500px;
}

.join-button {
    margin-top: 60px;
    font-weight: 700;
    padding: 19px 0;
    background: var(--ss-buttondisabled);
}

@media screen and (min-width: 500px) {
    .join-button {
        border-radius: 50px;
        width: 100%;
        margin-left: 0px;
    }
}

.selection__button {
    background: none;
    font-weight: bold;
    border: none;
    margin-bottom: -5px;
    color: #272643;
}

.hover-std {
    transition: transform 0.3s ease-in-out;
}

    .hover-std:hover {
        transform: scale(1.025);
    }

.cursor-pointer {
    cursor: pointer;
}

.active-item {
    font-weight: 700;
}

.std-btn {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.3s ease;
}

    .std-btn .std-btn:hover {
        opacity: 0.85;
    }

.std-btn--m100t {
    margin-top: 100px;
}

.float-left {
    transition: transform 0.3s ease-in-out;
}

    .float-left:hover {
        transform: translateX(-15%);
    }

.float-right svg {
    transition: transform 0.3s ease-in-out;
}

.float-right:hover svg {
    transform: translateX(50%);
}

.gym-card {
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.16);
    font-size: 18px;
    cursor: pointer;
}

    .gym-card svg {
        transition: transform 0.3s ease-in-out;
    }

    .gym-card:hover {
        box-shadow: 0 10px 60px rgba(0, 0, 0, 0.26);
    }

        .gym-card:hover svg {
            transform: translateX(50%);
        }

.gym-card--no-pointer {
    cursor: auto;
}

.gym-card--workout-history {
    cursor: auto;
}

    .gym-card--workout-history:hover {
        box-shadow: 0 10px 60px rgba(0, 0, 0, 0.16);
    }

.traffic-card {
    display: flex;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.16);
}

.sics-card {
    position: relative;
}

    .sics-card .sics-logo {
        margin-left: auto;
        margin-right: auto;
        max-width: 50%;
    }

    .sics-card a {
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translateY(50%);
        box-shadow: 0 10px 60px rgba(0, 0, 0, 0.16);
    }

.m-correction {
    margin-top: 6px;
}

.top-and-bottom-border {
    border-top: 1px solid #a19fc9;
    border-bottom: 1px solid #a19fc9;
    padding: 18px 0;
}

    .top-and-bottom-border p {
        margin-bottom: 0;
    }

.circle-step {
    border-radius: 50%;
    min-height: 48px;
    min-width: 48px;
    height: 48px;
    width: 48px;
    background: #ffcecf;
}

.selection__line {
    transition: margin 0.3s ease;
    height: 5px;
    border-radius: 50px;
    background: var(--bs-primary);
}

.selection__line-bg {
    height: 5px;
    border-radius: 50px;
    background: #f8f9fa;
}

.selection__item .active {
    color: var(--bs-primary);
}

.selection__button {
    transition: color 0.3s ease;
}

.label {
    padding: 1px 7px;
    border-radius: 3px;
}

.label--active {
    background: rgba(0, 242, 8, 0.35);
}

.label--inactive {
    background: rgba(231, 0, 8, 0.35);
}

.label--on-hold {
    background: rgba(255, 255, 51, 1);
}

.custom-card {
    background: white;
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

    .custom-card svg {
        transition: transform 0.3s ease-in-out;
    }

.custom-card--shadow {
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.16);
}

    .custom-card--shadow:hover {
        box-shadow: 0 10px 60px rgba(0, 0, 0, 0.26);
    }

.custom-card__payment {
    background: rgba(48, 79, 170, 0.1);
    padding: 24px 18px;
}

    .custom-card__payment p {
        color: #a19fc9;
    }

.custom-card__invoice {
    background: white;
}

.status-circle {
    bottom: 0px;
    right: -8px;
}

.booking-card {
    background: #272643;
    color: white;
}

    .booking-card svg {
        fill: white;
        color: white;
    }

.booking-card__buttons {
    padding: 0 8px;
}

    .booking-card__buttons .booking__button {
        padding: 9px 0;
        text-align: center;
        border-radius: 50px;
        display: block;
        background: #272643;
        color: white;
        transition: transform 0.3s ease-in-out;
    }

        .booking-card__buttons .booking__button:hover {
            transform: scale(1.025);
        }

    .booking-card__buttons .booking__button--ghost {
        color: #272643;
        background: white;
        border: 1px solid #272643;
    }

.instructor {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #d1d0e4;
}

.instructor__image {
    width: 65px;
    height: 65px;
}

    .instructor__image img {
        border-radius: 50%;
        object-fit: cover;
        object-position: top center;
        width: 65px;
        height: 65px;
    }

@media screen and (min-width: 768px) {
    .payment-card-section {
        margin-top: 0px;
    }
}

@media screen and (min-width: 992px) {
    .payment-card-section {
        margin-top: -110px;
    }
}

@media screen and (min-width: 768px) {
    .campaign-card-section {
        margin-top: 0px;
    }
}

@media screen and (min-width: 992px) {
    .campaign-card-section {
        margin-top: -85px !important;
    }
}

.no-brks {
    white-space: nowrap;
}

.payment-item {
    border-bottom: 1px solid #272643;
    margin-bottom: 18px;
}

    .payment-item:last-child {
        border: none;
    }

.footer {
    position: absolute;
    bottom: 0;
    width: calc(100% - 60px);
    border-top: 1px solid #d1d0e4;
    padding-top: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-item {
    margin-right: 24px;
}

    .footer-item:last-child {
        margin-right: 0;
    }

main {
    padding-bottom: 140px;
}

@media screen and (min-width: 768px) {
    main {
        padding-bottom: 100px;
    }
}

.progress {
    height: 75px;
}

    .progress > svg {
        max-height: 75px;
        max-width: 75px;
        stroke-width: 35px;
        display: block;
        stroke: var(--bs-primary) !important;
    }

.image-for-membership-card {
    height: 250px;
    width: 250px;
    margin: 2rem auto;
}

    .image-for-membership-card img {
        border-radius: 50%;
    }

.restrict-and-center {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

ul.addon-group > li {
    transition: box-shadow .5s ease-in-out;
    overflow: hidden;
}

    ul.addon-group > li:hover {
        z-index: 1;
        box-shadow: 10px 10px 60px 60px rgba(0, 0, 0, 0.08);
    }

    ul.addon-group > li :is(a, button, input[type=button]) {
        transition: transform .3s ease-in-out;
    }

        ul.addon-group > li :is(a, button, input[type=button]):hover {
            z-index: 1;
            transform: scale(1.2);
        }

/* .invalid-feedback rule for International Telepnone Input
 * (aka intlTelInput, https://github.com/jackocnr/intl-tel-input)
 *
 * NOTE: Firefox does not (per version 117) support the :has() pseudo class out
 * of the box, but it can be enabled.  See
 * https://developer.mozilla.org/en-US/docs/Web/CSS/:has#browser_compatibility
*/
.was-validated .iti:has(:invalid) ~ .invalid-feedback {
    display: block;
}

.header__logo img {
    max-height: 52px;
    max-width: 152px;
}
