:root {
    --dark: rgba(51, 51, 51, 1);
    --dark-hover: rgba(51, 51, 51, 0.85);
    --neon: rgba(255, 0, 106, 1);
    --neon-light: rgba(255, 0, 106, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    text-align: center;
    position: relative;
    scroll-behavior: smooth;
    color: var(--dark);
}

/* Remove arrows in Chrome, Edge, Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    background-color: transparent;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-nav-wrapper {
    background-color: black;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 59px 20px 21px 20px;
}
.header-bottom-row-wrapper {
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
    background-color: white;
}

.form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
}

.header-nav-middle {
    display: none;
}

.logo-wrapper {
    width: 142px;
}

.logo-wrapper {
    position: relative;
    z-index: 20;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.2s ease,
        width 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    width: 23px;
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    width: 23px;
    transform: translateY(0px) rotate(-45deg);
}

.hamburger.active .bar:nth-child(3) {
    opacity: 0;
    width: 0;
}

.lang-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.lang-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 20;
}

.program-block {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 10px;
}

.program-block .sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.people-icon {
    width: 22px;
}

.calendar-icon {
    width: 21px;
}

.camera-icon {
    width: 20px;
}

.program-text {
    font-family: "Barlow condensed", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.auth-buttons {
    display: flex;
    gap: 11px;
    align-items: center;
    padding: 10px 10px 0 10px;
}

.auth-buttons form {
    flex: 1;
}

.logged-panel-left-wrapper {
    display: inline-flex;
}

.auth-btn {
    width: 100%;
    background-color: var(--neon);
    border: none;
    border-radius: 6px;
    color: white;
    padding: 10px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.auth-btn span {
    white-space: nowrap;
}

.register-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
}

.login-button {
    font-size: 14px;
    height: 51px;
}

.submenu-item {
    text-align: left;
}

.footer-top-icons {
    margin: auto;
    width: 275px;
    margin-bottom: 25px;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    color: white;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 140px;
    padding-left: 20px;
    background-color: black;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.nav-list.show {
    transform: translateX(0);
}

.nav-item {
    text-transform: uppercase;
    font-family: "Barlow condensed", sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding-left: 10px;
    position: relative;
    text-align: left;
}

.nav-item-arrow {
    width: 12px;
}

.nav-item.active {
    border-left: 3px solid var(--neon);
}

.submenu-wrapper {
    max-height: 0;
    overflow: hidden;
}

.submenu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
    padding-left: 20px;
}

.submenu-lang {
    padding-top: 8px;
    padding-bottom: 8px;
}

.submenu-lang .submenu-item {
    padding-top: 6px;
    padding-bottom: 6px;
}

.sublang-wrapper {
    position: absolute;
    top: calc(100% + 19px);
    right: 0;
    min-width: 150px;
    padding: 0;
    max-height: unset;
    background: white;
    border-radius: 6px;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity 150ms ease,
        transform 150ms ease,
        visibility 150ms ease;
    z-index: 50;
    overflow: visible;
}

.lang-wrapper:hover > .sublang-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-wrapper:hover > .sublang-wrapper::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.nav-item.is-open > .submenu-wrapper {
    max-height: 500px;
}

.submenu-item {
    font-weight: 300;
    font-size: 16px;
}

.login-icon {
    display: none;
}

.logged-panel {
    display: grid;
    grid-template-areas: "a b c";

    grid-template-columns: 1fr 1fr 27px;
}

.live-icon {
    width: 65px;
    color: #dddddd;
    display: inline-block;
    margin-left: 22px;
}

.logged-panel-left {
    grid-area: a;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 12px 0;
}

.logged-panel-middle {
    grid-area: b;
    display: flex;
    align-items: center;
    position: relative;
    left: 7px;
    min-width: 0;
    padding: 12px 0;
    justify-content: center;
}

.logged-panel-right {
    grid-area: c;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.logout-icon {
    color: var(--neon);
    width: 27px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
}

.user-name {
    text-align: left;
    color: var(--neon);
    font-weight: 700;
    width: 75%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    white-space: nowrap;
}

.user-avatar {
    margin-right: 15px;
    border-radius: 50%;
}

.credit-label {
    font-weight: 500;
    font-size: 14px;
    color: #a8a8a8;
    font-family: "Inter", sans-serif;
    padding-right: 4px;
}

.credit-value {
    color: var(--neon);
    font-size: 14px;
    font-family: "Inter", sans-serif;
}

.user-credit {
    text-align: left;
}

.status-circle {
    width: 36px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: inherit;
    border: 5px solid #a8a8a8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-value {
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.user-details {
    width: 100%;
}

.auth-logged-wrapper {
    padding-left: 20px;
    padding-right: 20px;
}

.logout-text {
    display: none;
}

.credit-arrow,
.current-events {
    display: none;
}

.main {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.footer-wrapper {
    background-image: url("../img/footer.jpg");
    background-position: center;
    background-size: cover;
    padding: 80px 10px 50px 10px;
}

.footer-title {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
}

.news-loader {
    font-weight: bold;
    font-size: 16px;
    padding: 10px 24px;
    border: 1px solid#ea1a6c;
    background-color: white;
    color: #ea1a6c;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.news-loader:hover {
    background-color: #ea1a6c;
    color: white;
}

.news-loader-container {
    margin-top: 24px;
}

.selector-fields-wrapper {
    padding: 20px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dt-locations-wrapper {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-wrapper {
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.uppercase {
    text-transform: uppercase;
}

.text-left {
    text-align: left;
}

.dropdown-trigger {
    cursor: pointer;
}

.credit-topup-pm {
    font-weight: 600;
    text-align: left;
    font-size: 16px;
    margin-bottom: 6px;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 16px 11px;
    border: 2px solid rgba(229, 229, 229, 1);
    border-radius: 6px;
}

.dropdown-trigger.border-bottom-fix {
    border: none;
    border-bottom: 1px solid #c4c4c4;
    border-radius: 0;
    box-shadow: none!important;
}

.dropdown-option {
    width: 100%;
    text-align: left;
    padding: 6px 16px;
    position: relative;
}

.dropdown-option:hover,
.dropdown-option.selected {
    font-weight: 600;
    cursor: pointer;
}

.dropdown-selected-value {
    margin-top: 4px;
    font-weight: 700;
}

.credit-topup-pm-icon {
    width: 100%;
    margin-top: 6px;
}

.credit-total-text {
    font-weight: 600;
    font-size: 14px;
}

.credits-topup-content-price-wrapper {
    display: flex;

    flex-direction: column;
    justify-content: flex-end;
}

.dropdown-label {
    text-align: left;
    font-size: 15px;
}

.dropdown-option.selected::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--neon);
}

.dropdown-option:not(.selected):hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--neon-light);
}

.dropdown-menu {
    max-height: 385px;
    overflow-y: auto;
    padding-bottom: 16px;
    position: absolute;
    background-color: #fff;
    z-index: 10;
    border: 2px solid rgba(229, 229, 229, 1);
    border-top: none;
    border-radius: 0 0 6px 6px;
    width: 100%;
    top: 95%;
    padding-top: 20px;
}

.tr-row {
    padding: 0px 10px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.tr-row__inner {
    padding: 15px 0px;
    position: relative;
}

.tr-row__inner--visible {
    display: grid;
    position: relative;
    grid-template-columns: 18% 1fr 42%;
}

.tr-row__inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: rgba(230, 230, 230, 1);
}

.tr-container .tr-row:first-child .tr-row__inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background-color: rgba(230, 230, 230, 1);
}

.tr-row.tr-row--signed .tr-row__inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #d3ffd8;
}

.tr-row.tr-row--signed .tr-row__inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 1px;
    background-color: #d3ffd8;
}

.tr-row__time {
    position: relative;
    align-content: center;
}

.tr-row__title--dt {
    display: none;
}

.tr-row__main {
    text-align: left;
    padding-left: 11px;
    align-content: center;
}
.tr-row__signed-up {
    font-size: 12px;
    color: rgba(0, 138, 44, 1);
    font-weight: 700;
}

.tr-row__bar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 6px;
}

.tr-row__start {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}
.tr-row__dur {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.tr-row__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    line-height: 1;
}
.tr-row__chevron-wrapper {
    display: none;
}
.tr-row__meta,
.tr-row__note--mb {
    font-size: 12px;
    line-height: 1;
}
.tr-row__note,
.tr-row__discount {
    display: none;
}

.tr-row__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.tr-row__price-wrapper {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.tr-row__price {
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.tr-btn {
    width: 97px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 0px;
    border: 2px solid transparent;
}

.tr-btn--primary {
    background: #fff;
    border-color: var(--neon);
    color: var(--neon);
}
.tr-btn--danger {
    background: var(--neon);
    color: #fff;
}

.tr-row--signed {
    background-color: rgba(211, 255, 216, 1);
}

.tr-row__instructor-wrapper {
    display: none;
}

.tr-row__inner--expandable {
    overflow: hidden;
    height: 0;
    transition: height 0.25s ease;
}

.tr-table__header {
    padding: 0 10px;
}

.tr-table__header-item {
    display: flex;
    align-items: baseline;
    gap: 21px;
    padding-left: 17px;
    padding-bottom: 15px;
}

.tr-table__header-day {
    font-weight: 600;
    font-size: 20px;
    color: var(--neon);
}

.tr-table__header-date {
    font-weight: 400;
    font-size: 15px;
}

.tr-table__weekdays {
    display: none;
}

.tr-row__title--mb {
    margin-bottom: 2px;
}

.dropdown-trigger--active {
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.25);
}

.dropdown-menu--open {
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25);
}

.date-picker-all-days {
    text-align: left;
    margin-bottom: 26px;
    padding: 6px 16px;
    position: relative;
}

.date-picker-all-days.selected {
    font-weight: 600;
}

.date-picker-all-days.selected::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--neon);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 993px;
    gap: 10px;
    margin: 0 auto;
    max-width: 500px;
}

.footer-content-block {
    width: 100%;
    flex: 1;
    flex-basis: auto;
    text-align: center;
    padding: 10px 30px;
    color: white;
}

.footer-content-block h3 {
    font-size: 20px;
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-content-block p {
    opacity: 0.7;
    font-size: 14px;
}
.footer-register {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.footer-register .register-button {
    width: 80%;
    max-width: 300px;
    padding: 18px 50px;
    transition: all 0.3s ease;
}

.footer-register .register-button:hover {
    background-color: #ff2980;
    color: white;
}

.footer-register .register-button-text {
    font-size: 20px;
}

.footer-icons-list {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-icon {
    width: 42px;
    height: 42px;
    display: flex;
}

.footer-icon img {
    height: 20px;
    margin: auto;
}
.footer-icon-facebook {
    background-color: #456cd0;
}

.footer-icon-instagram {
    background-color: #31a3d8;
}

.footer-icon-youtube {
    background-color: #f90e1b;
}

.footer-bottom {
    padding: 40px 0;
}

.footer-copyright {
    margin-top: 24px;
}

.site-by {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    font-size: 13px;
    gap: 10px;
}

.site-by-link {
    text-decoration: underline;
}

.training-schedule {
    padding: 60px 0;
}

.landing-page {
    padding: 60px 0px 120px 0;
}

.news-section {
    margin-top: 60px;
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--dark);
}

.news-title-emph {
    color: var(--neon);
}

.news-cards {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 0 10px;
}

.news-card {
    background: #e8e9ea;
    padding: 16px;
    border: none;
    justify-content: space-between;
    text-align: left;
    display: grid;
}

.news-card-title {
    margin-bottom: 5px;
    font-size: 18px;
}

.news-card-date {
    font-size: 14px;
    margin-bottom: 14px;
    opacity: 0.8;
}

.btn-news {
    background-color: inherit;
    cursor: pointer;
    color: var(--dark);
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 0px;
    width: 100%;
    border: 1px solid var(--dark);
    text-transform: uppercase;
    margin-top: 35px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.btn-news:hover {
    background-color: var(--dark);
    color: white;
}

.footer-links {
    display: inline-block;
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-direction: column;
}

.footer-link {
    display: inline-block;

    padding: 0 10px;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-slogan-wrapper,
.footer-lesmills-wrapper {
    display: none;
}

.slogan-lesmills-row-mb {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-top: 24px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-slogan,
.footer-lesmills {
    width: 160px;
}

.footer-logo {
    width: 200px;
}

.footer-logo-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.carousel-item-content {
    max-width: 350px;
    margin: auto;
    width: 100%;
    text-align: center;
}

.profile-page {
    padding-top: 50px;
    margin: 0 20px;
}

.profile-tabs-list {
    display: none;
}

.profile-current-info {
    display: none;
}

.profile-current-info-item {
    width: 50%;
}

.credits-topup-stepper {
    display: none;
}

.profile-tab-item {
    padding: 0 15px;
    font-size: 16px;
    position: relative;
    text-align: left;
}

.credits-topup-count {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.credit-add-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.credits-topup-subtitle {
    font-size: 18px;
    font-weight: 600;
}

.credits-topup-subtext {
    margin-top: 6px;
}

.credit-add-input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: auto;
    font-size: 36px;
    font-weight: bold;
    max-width: 150px;
    text-align: center;
    padding: 0 6px;
    color: var(--dark);
}

.credit-add-btn {
    background-color: #e2e2e2;
    border-radius: 4px;
    height: 60px;
    width: 60px;
    font-size: 20px;
    font-weight: bold;
    color: black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.profile-current-info-item {
    padding: 16px;
}

.credits-topup-content {
    padding: 40px 0;
}

.credits-topup-content .price-value {
    color: var(--neon);
    font-size: 24px;
    font-weight: 600;
    margin-top: 16px;
}

.credits-topup-content-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.credits-topup-content-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
}

.credits-topup-content-top > div {
    flex: 1;
}

.dropdown-chevron {
    transition: transform 0.3s ease;
}

.dropdown-chevron--open {
    transform: rotate(180deg);
}
.profile-current-info-item-first {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: flex-start;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

.profile-current-info-item-second {
    background-color: var(--dark);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-credit-amount {
    font-size: 32px;
    font-weight: 700;
}

.profile-avatar {
    width: 100px;
    border-radius: 50%;
}

.profile-user-info {
    text-align: left;
}

.profile-user-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--neon);
}

.dashboard-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
}

.fee-wrapper {
    margin-bottom: 20px;
}

.btn-credit-topup {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 30px;
    max-width: 293px;
    width: 100%;
    background-color: var(--neon);
    border-radius: 6px;
    margin: 0 auto;
    color: white;
    transition: all 0.3s ease;
}

.btn-credit-topup:hover {
    background-color: rgba(255, 0, 106, 0.75);
}

.credits-topup-content-middle,
.credits-topup-content-bottom {
    margin-top: 64px;
    display: flex;
}

.credits-topup-content-middle > div,
.credits-topup-content-bottom > div {
    flex: 1;
}

.credit-voucher-input-wrap {
    margin: 0 auto;
    max-width: 290px;
}

.credit-voucher-input {
    text-align: center;
}

.btn-credit-voucher {
    color: white;
    background-color: var(--dark);
    width: 100%;
    padding: 14px 0;
    margin-top: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-credit-voucher:hover {
    background-color: var(--dark-hover);
}

.credits-topup-link {
    border-radius: 6px;
    border: 1px solid var(--dark);
    padding: 14px 0;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
    max-width: 290px;
    width: 100%;
    margin-top: 12px;
}

.credits-topup-link:hover {
    background-color: var(--dark);
    color: white;
}

.div-filler {
    display: none;
}

.floating-field {
    position: relative;
    width: 100%;
}

.floating-field input {
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-bottom: 1px solid #c4c4c4;
    font-size: 16px;
    outline: none;
    background: #fff;
}

/* animated active line */
.floating-field::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--neon);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
    pointer-events: none;
}

/* animate from center to sides */
.floating-field:focus-within::after {
    transform: scaleX(1);
}
.floating-field label {
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    background: #fff;
    padding: 0 4px;
    pointer-events: none;
    transition: all 0.18s ease;
}

/* Move label up when focused or when input has content */
.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--neon);
}

.credit-topup-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 375px;
    margin: auto;
    margin-bottom: 30px;
}

.bonus-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 40px;
}

.bonus-wrapper > div {
    flex: 1;
}

.bonus-title {
    margin-bottom: 20px;
}

.bonus-list-item {
    list-style: disc;
    margin-left: 20px;
}

.bonus-link-wrapper {
    margin-top: 10px;
    position: relative;
}

.input-group-addon {
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    background: #fff;
    padding: 0 10px;
    height: 27px;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.bg-neon {
    background-color: var(--neon);
}

.bg-success {
    background-color: #028612;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
}

.settings-wrapper {
    display: flex;
    gap: 30px;
    flex-direction: column;
    margin: 40px 0;
    text-align: left;
}

.settings-wrapper > div {
    flex: 1;
}

.settings-file-upload {
    margin-top: 15px;
}

.settings-title-google,
.settings-title-notifications {
    margin-top: 30px;
}

.settings-form,
.password-change-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.settings-title {
    margin-bottom: 24px;
}

.btn-settings {
    border-radius: 6px;
    border: 1px solid var(--neon);
    padding: 14px 0;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    color: var(--neon);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 12px;
}

.btn-settings:hover {
    background-color: var(--neon);
    color: white;
}

.settings-select-title {
    color: var(--neon);
    font-size: 14px;
    margin-bottom: 6px;
}

.settings-btn-save {
    background-color: var(--neon);
    color: white;
    border-radius: 6px;
    padding: 14px 0;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.settings-btn-save:hover {
    background-color: rgba(255, 0, 106, 0.75);
}

.switch-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.switch-toggle .switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch-toggle .switch input {
    display: none;
}

.switch-toggle .slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background-color: #c4c4c4;
    border-radius: 999px;
    transition: 0.2s ease;
}

.switch-toggle .slider::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: 0.2s ease;
}

.switch-toggle input:checked + .slider {
    background-color: var(--neon);
}

.switch-toggle input:checked + .slider::before {
    transform: translateX(20px);
}

.switch-toggle .switch-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    top: 2px;
}

.settings-notification {
    display: flex;
    align-items: center;
}

.settings-toggle-wrapper {
    width: 100px;
    flex-shrink: 0;
}

.switch-label--on {
    color: var(--neon);
}

.switch-label--off {
    color: #c4c4c4;
}

.settings-notifications-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credits-table-wrapper,
.profile-trainings-wrapper {
    margin: 40px 0;
}

.profile-trainings-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.credits-title {
    text-align: left;
    margin-bottom: 24px;
}

.table {
    border-collapse: collapse;
}

.credits-table {
    width: 100%;
    text-align: left;
    font-size: 14px;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
    border-top: 0;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.credits-table .circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: var(--neon);
}

.training-table-title {
    text-align: left;
    margin-bottom: 24px;
}

.motivation-wrapper {
    margin: 40px 0;
}

.current-level-circle {
    margin: auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 15px solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.current-level {
    font-size: 32px;
    font-weight: 700;
    color: var(--neon);
}

.motivation-title {
    color: var(--neon);
    font-size: 30px;
    margin-bottom: 12px;
}

.current-level-wrapper {
    margin-top: 50px;
}

.motivation-level-wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
    padding: 40px 0;
}

.motivation-alert {
    margin-top: 20px;
}

.motivation-level-description {
    width: 100%;
    text-align: left;
}
.quiz-medal-wrapper {
    width: 40%;
    display: flex;
    justify-content: center;
}

.quiz-medal {
    position: relative;
}

.quiz-medal__circle {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    font-weight: 500;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    color: #000;
    text-align: center;
    line-height: 70px;
    vertical-align: middle;
    position: relative;
    border-width: 0.2em;
    border-style: solid;
    z-index: 1;
    box-shadow:
        inset 0 0 0 #a7b2b8,
        2px 2px 0 rgba(0, 0, 0, 0.08);
    border-color: #edeff1;
    position: relative;
    box-shadow:
        inset 0 0 0 #b67d05,
        2px 2px 0 rgba(0, 0, 0, 0.08);
}

.quiz-medal__circle.quiz-medal__circle--1 {
    box-shadow:
        inset 0 0 0 #b67d05,
        2px 2px 0 rgba(0, 0, 0, 0.08);
    border-color: #a7a9ac;
}

.quiz-medal__ribbon {
    content: "";
    display: block;
    position: absolute;
    border-style: solid;
    border-width: 6px 10px;
    width: 0;
    height: 20px;
    top: 74px;
}

.quiz-medal__ribbon--left {
    border-color: #d0d0d0 #d0d0d0 transparent #d0d0d0;
    left: 13px;
    transform: rotate(20deg) translateZ(-32px);
}

.quiz-medal__ribbon--right {
    left: 44px;
    border-color: #d9d9d9 #d9d9d9 transparent #d9d9d9;
    transform: rotate(-20deg) translateZ(-48px);
}

.motivation-levels-wrapper {
    margin-top: 60px;
}

.motivation-levels-container {
    margin-top: 20px;
}

.motivation-desc-title {
    margin-bottom: 12px;
}

.quiz-medal__circle.quiz-medal__circle--3 {
    border-color: #283891;
}

.quiz-medal__circle.quiz-medal__circle--5 {
    border-color: #00aeef;
}

.quiz-medal__circle.quiz-medal__circle--10 {
    border-color: #2bb673;
}

.quiz-medal__circle.quiz-medal__circle--15 {
    border-color: #ffd503;
}

.quiz-medal__circle.quiz-medal__circle--30 {
    border-color: #f7941e;
}

.quiz-medal__circle.quiz-medal__circle--90 {
    border-color: #ed1c24;
}

.quiz-medal__circle.quiz-medal__circle--180 {
    border-color: #ed0c6e;
}

.motivation-level-wrapper--border {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dataTables_wrapper .dataTables_paginate span .paginate_button.current {
    background: var(--neon) !important;
    color: white !important;
    border: 1px solid var(--neon) !important;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button {
    padding: 8px 16px;
    border: 1px solid #efefef;
    font-weight: bold;
    color: var(--neon) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous {
    padding: 8px 16px;
    border: 1px solid #efefef;
    font-weight: bold;
    color: var(--neon) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled,
.dataTables_wrapper
    .dataTables_paginate
    .paginate_button.previous.disabled:hover {
    padding: 8px 16px;
    border: 1px solid #efefef;
    font-weight: bold;
}
.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover {
    background: var(--neon) !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button:hover,
.dataTables_wrapper
    .dataTables_paginate
    .paginate_button.next:not(.disabled):hover,
.dataTables_wrapper
    .dataTables_paginate
    .paginate_button.previous:not(.disabled):hover {
    background: transparent !important;
    color: var(--neon) !important;
    border: 1px solid var(--neon-light) !important;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.motivation-container {
    margin-top: 50px;
}
.motivation-state {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 300px;
    margin: auto;
}

.motivation-state .left {
    width: 200px;
    text-align: left;
}

.dropdown-menu-simple.dropdown-menu--open {
    box-shadow: none;
    border: 1px solid #c4c4c4;
}
