/* Fonts
 ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;300;400;500;600;700;800;900&display=swap');

/* Defaults
 ==================================================== */

html,
body {
    overflow-x: hidden;
    font-family: 'Inter Tight', sans-serif;
    background: rgba(33,37,41, 1) !important;
}

:root {

    --color-0: #B2852F;

}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.text-yellow {
    color: var(--color-0);
}

/* Buttons
 ==================================================== */

.btn,
input[type="submit"],
input::file-selector-button {
    padding: 10px 30px !important;
    border: none !important;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer !important;
    transition: all .2s ease-in-out;
}

.btn--gold,
input[type="submit"] {
    background-color: var(--color-0) !important;
    color: #ffffff;
}

.btn--grey,
input::file-selector-button {
    background: #D8D8D8;
    color: #000;
}

.btn--gold:hover,
input[type="submit"]:hover {
    background-color: #b78f43 !important;
}

.btn--grey:hover,
input::file-selector-button:hover {
    color: #000;
    background: #fff;
}

.btn[disabled="disabled"],
input[disabled="disabled"],
.btn:disabled,
input:disabled {
    opacity: .5;
    pointer-events: none;
}

/* Login
 ==================================================== */

.login {
    background: url('../images/login.png') no-repeat 0 0;
    background-size: cover;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.login:after {
    content: '';
    background: linear-gradient(to left, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, .7) 30%, rgba(0, 0, 0, 1) 60%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.login-form {
    border-radius: 20px;
    background-color: #1f1f1f;
    padding: 30px;
    width: 100%;
    min-width: 500px;
    position: relative;
    z-index: 2;
}

.login-holder {
    padding: 0 250px;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
    background: #fff;
    border-radius: 50px;
    height: 40px;
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
}

.login-form:after {
    content: '';
    background: url(../images/logo.png) no-repeat 0 0;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
}

.login-form label {
    color: #ffffff;
    width: 100%;
}

.page-template-login-template #header,
.page-template-login-template #footer {
    display: none;
}

@media (max-width: 992px) {

    .login-holder {
        padding: 0 15px;
    }

    .login {
        justify-content: center;
    }

    .login-form {
        min-width: auto;
        max-width: 500px;
    }

}

/* Alert
 ==================================================== */

.alert {
    font-weight: 500;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    background-size: 18px;
    padding: 12px 15px 12px 50px;
    display: none;
    z-index: 999;
}

.error-open {
    display: block;
}

#login-form .alert {
    position: absolute;
    top: -100px;
    width: max-content;
}

.alert[role="error"] {
    color: #ff0000 !important;
    background: #ffb3b3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1.5em' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='%23ff0000' d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E") no-repeat 5% 50%;
}

.alert[role="succes"] {
    color: #298429 !important;
    background: #aaffaa url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.5em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="%23298429" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>') no-repeat 2% 50%;
}

/* Header
 ==================================================== */

#header {
    border-right: 2px solid var(--color-0);
    height: auto;
    width: 20%;
}

#header .main-logo {
    text-align: center;
}

#header .main-logo img {
    width: 160px;
    object-fit: contain;
    margin-bottom: 30px;
}

.header--sticky {
    position: fixed;
    left: 3rem;
    top: 0;
    height: 100%;
}

@media (max-width: 992px) {

    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 0 !important;
        height: 110px;
        padding: 10px !important;
        border-right: 0;
        border-bottom: 2px solid var(--color-0);
        z-index: 999;
    }

    .header--sticky {
        position: static;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #header .main-logo img {
        margin-bottom: 0;
        max-height: 90px;
    }

}

/* Menu
 ==================================================== */

#header ul.nav li {
    padding-bottom: 15px;
}

#header ul.nav li a,
.header-menu a {
    color: #fff;
    text-decoration: none;
}

#header ul.nav li.current-menu-item a {
    color: var(--color-0);
}

.header-menu .log-out {
    position: absolute;
    left: 0;
    bottom: 3rem;
}

@media (max-width: 992px) {

    .header-menu {
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        padding: 0 10px;
        background: #1c1c1c;
        z-index: 999;
        transition: all .3s ease-in-out;
        max-height: 0;
        overflow: hidden;
    }

    .header-menu .log-out {
        position: static;
    }

    .active-menu .header-menu {
        max-height: 1000px;
        padding: 10px;
    }

    .hamburger-toggle {
        position: relative;
        cursor: pointer;
    }

    .hamburger-toggle span {
        transition: all .3s ease-in-out;
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 50px;
        margin-bottom: 3px;
        display: block;
        position: relative;
    }

    .active-menu .hamburger-toggle span:first-child {
        top: 6px;
        transform: rotate(45deg);
    }

    .active-menu .hamburger-toggle span:last-child {
        bottom: 6px;
        transform: rotate(135deg);
    }

    .active-menu .hamburger-toggle span:nth-child(2) {
        opacity: 0;
    }

}

/* Dashboard
 ==================================================== */

main.bg-dark {
    max-width: calc(80% - 12px);
}

.page-template-login-template main.bg-dark {
    max-width: 100%;
}

.box-container {
    background: #1c1c1c;
    border-radius: 12px;
    box-shadow: 0 0 5px 0 #b2852f24;
    height: 100%;
}

.box-container table {
    border-color: var(--color-0);
}

.text-container,
.chart-container {
    padding: 50px;
}

.chart-container {
    margin: 0;
    height: fit-content;
}

#legend ul {
    flex-wrap: wrap;
}

#legend ul li {
    margin-bottom: 7px;
}

.video-container {
    padding: 0;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

#line-chart {
    width: 100%;
    max-height: 325px !important;
}

@media screen and (max-width: 992px) {

    .text-container {
        padding: 24px;
    }

    .box-container {
        margin: 0;
    }

    .video-container {
        height: 360px;
    }

    .page-template-dashboard-template .video-container {
        margin-top: 1rem;
    }

    main {
        max-width: 100% !important;
        margin-top: 110px !important;
    }

    html, body, body > .row, main.bg-dark {
        min-height: 100%;
    }

    .page-template-login-template main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    #legend ul li p {
        font-size: 14px !important;
    }

    #legend ul li span {
        width: 15px !important;
        height: 15px !important;
    }

}

/* Popup
 ==================================================== */

.modal-content {
    background: #202529;
    color: #fff;
    border: 2px solid var(--color-0);
    border-radius: 12px;
    padding: 20px;
}

.modal-header {
    padding: 0 0 20px;
}

.modal-footer {
    padding: 20px 0 0;
}

.modal-content button {
    border: none;
    padding: 0;
    background: transparent;
}

.modal-content button span {
    color: #fff;
    font-size: 18px;
}

.modal-content form label {
    width: 100%;
}

.modal-body {
    padding: 0 !important;
}

.modal-footer {
    margin-top: 20px;
}

#progressionModal form input {
    width: 100%;
}

#progressTabs {
    border-bottom: none;
}

#progressTabs .nav-link {
    background: transparent;
    border: none;
    border-bottom: 2px solid #202529;
    color: #fff;
}

#progressTabs .nav-link.active {
    border-bottom: 2px solid var(--color-0);
}

#progressionModal span.label {
    font-size: 14px;
}

/* Form elements
 ==================================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    background: #e3bd7b;
    color: var(--color-0);
    padding: 10px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--color-0);
    font-weight: 500;
}

input::placeholder {
    color: var(--color-0);
    font-weight: 500;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background: #e3bd7b;
    border-radius: 4px;
    border: 1px solid var(--color-0);
    transform: translateY(4px);
    cursor: pointer;
}

.fat-percentage {
    position: relative;
}

.fat-percentage:after {
    content: '%';
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 12px 12px 0;
    background: var(--color-0);
    color: #e3bd7b;
    font-weight: 700;
    height: 46px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Archive page
 ==================================================== */

.hero {
    background-size: cover !important;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 5px 0 #b2852f24;
    padding: 30px 0;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.cta-icons .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid var(--color-0);
    cursor: pointer;
    margin: auto;
}

.exercise-box {
    height: 250px;
    position: relative;
    background-size: cover !important;
}

.exercise-box h4 {
    position: relative;
    z-index: 2;
    transition: all .2s ease-in-out;
}

.exercise-box:hover h4 {
    color: var(--color-0);
}

.exercise-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    border-radius: 12px;
}

.locked {
    pointer-events: none;
}

.locked:after {
    z-index: 3;
    background: rgba(0, 0, 0, .7);
}

/* Account
 ==================================================== */

.account-form input[type="password"] {
    color: var(--color-0);
    background-color: #e3bd7b;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid var(--color-0);
    font-weight: 500;
}

.account-form input {
    width: 100%;
}

@media screen and (max-width: 768px) {
    
    .popup-responsive {
        margin-right:9em;
    }

}

/* Feedback
 ==================================================== */

.error {
    color: #ff3434;
}

.warning {
    color: #ff8934;
}

.succes {
    color: var(--color-0);
}

.goalsText {
    display: none;
}

.active-goals-no textarea[name="goal_no"],
.active-goals-yes textarea[name="goal_yes"] {
    display: block;
}

/* Calendar
 ==================================================== */

.calendar {
    display: none !important;
    position: absolute;
    background: #202529;
    width: 320px;
    list-style: none;
    padding: 5px 10px 10px;
    border-radius: 8px;
    border: 2px solid var(--color-0);
    border-collapse: collapse;
    right: 0;
    top: 80px;
    z-index: 99;
}

.active-calendar .calendar {
    display: flex !important;
}

.calendar li {
    width: 20%;
    border: 1px solid var(--color-0);
    border-right: 0;
    border-top: 0 !important;
    transition: all .3s ease-in-out;
}

.calendar li:not(.disabled):hover,
.calendar li.active {
    background: #fff;
}

.calendar li:not(.disabled):hover a,
.calendar li.active a {
    color: var(--color-0);
}

.calendar li.disabled {
    opacity: .5;
}

.calendar li.disabled a {
    pointer-events: none;
}

.calendar li:last-child,
.calendar li:nth-child(5n + 1) {
    border-right: 1px solid var(--color-0);
}

.calendar li a {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    display: block;
    text-align: center;
    padding: 5px 0;
}

.calendar-head {
    display: block;
    width: 100%;
    padding: 5px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid var(--color-0);
}

:disabled {
    opacity: .8;
}

@media (max-width: 992px) {

    .calendar {
        right: auto;
        top: 150px;
        left: 0px;
    }

    .text-container, .chart-container {
        padding: 20px !important;
    }

    .chart-container {
        padding: 20px 0 !important;
    }

}

@media (max-width: 767px) {

    .last-icon {
        margin-top: 3rem;
    }

    .table.table-striped.table-bordered.text-white.rounded td strong {
        min-width: 170px !important;
    }

}

/* Downloads
 ==================================================== */

.download-item img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.hide-meeting #menu-item-93 {
	display: none;
}

.show-meeting #menu-item-93 {
	display: block;
}

#progressionModal .tab-content>.active {
    display: flex !important;
    flex-wrap: wrap;
}

#progressionModal .tab-content .mb-5 {
    width: 100%;
}

#progressionModal .tab-content .mb-5:nth-child(1) {
    order: 5;
}

#progressionModal .tab-content .mb-5:nth-child(2) {
    order: 1;
}

#progressionModal .tab-content .mb-5:nth-child(3) {
    order: 3;
}

#progressionModal .tab-content .mb-5:nth-child(4) {
    order: 2;
}

#progressionModal .tab-content .mb-5:nth-child(5) {
    order: 4;
}

/* Quiz - Header & Progress
 ==================================================== */

.quiz-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.quiz-header h4 {
    margin: 0;
}

.quiz-header--completed {
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #373737;
}

.quiz-header__title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quiz-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(178, 133, 47, 0.2);
    color: var(--color-0);
}

.quiz-progress {
    text-align: right;
    min-width: 140px;
}

.quiz-progress__text {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 6px;
}

.quiz-progress__bar {
    height: 4px;
    background: #373737;
    border-radius: 4px;
    overflow: hidden;
}

.quiz-progress__fill {
    height: 100%;
    background: var(--color-0);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Quiz - Score circle (completed) */

.quiz-header .quiz-score {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: var(--color-0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-header .quiz-score span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f7f7f7;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quiz - Questions (open state)
 ==================================================== */

.questions {
    padding: 0;
    margin: 0;
}

.questions .step:not(.active-step) {
    display: none;
}

.questions input[type="submit"] {
    display: none;
}

.show-submit input[type="submit"] {
    display: inline-block;
}

.show-submit .quiz-nav__next {
    display: none;
}

.quiz-question-card {
    padding: 0;
    margin-bottom: 20px;
}

.quiz-question-card__number {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-0);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.quiz-question-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Quiz - Answer options */

.quiz-answer-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-answer-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 0;
    position: relative;
}

.quiz-answer-option:last-child {
    border-bottom: none;
}

.quiz-answer-option:hover {
    background: transparent;
}

.quiz-answer-option input[type="checkbox"],
.quiz-answer-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Checkbox styling (meerdere antwoorden) */
.quiz-answer-option__check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 4px;
    border: 2px solid #555;
    transition: all 0.15s ease;
    position: relative;
}

.quiz-answer-option input[type="checkbox"]:checked ~ .quiz-answer-option__check {
    border-color: var(--color-0);
    background: var(--color-0);
}

.quiz-answer-option input[type="checkbox"]:checked ~ .quiz-answer-option__check::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.quiz-answer-option input[type="checkbox"]:checked ~ .quiz-answer-option__text {
    color: #fff;
}

/* Radio styling (enkel antwoord) */
.quiz-answer-option__radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid #555;
    transition: all 0.15s ease;
    position: relative;
}

.quiz-answer-option input[type="radio"]:checked ~ .quiz-answer-option__radio {
    border-color: var(--color-0);
}

.quiz-answer-option input[type="radio"]:checked ~ .quiz-answer-option__radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: var(--color-0);
    border-radius: 50%;
}

.quiz-answer-option input[type="radio"]:checked ~ .quiz-answer-option__text {
    color: #fff;
}

.quiz-answer-option__text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}

/* Quiz - Navigation */

.quiz-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 5px;
}

.quiz-nav .btn {
    min-width: 100px;
    text-align: center;
}

/* Quiz - Results (completed state)
 ==================================================== */

.quiz-results-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.quiz-result-item {
    display: flex;
    gap: 15px;
    padding: 16px;
    margin-bottom: 12px;
    background: #252525;
    border-radius: 10px;
    border-left: 4px solid #555;
}

.quiz-result-item--correct {
    border-left-color: #2ecc40;
}

.quiz-result-item--wrong {
    border-left-color: #e74c3c;
}

.quiz-result-item__indicator {
    padding-top: 2px;
}

.quiz-icon {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.quiz-icon--correct {
    background: #2ecc40 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z"/></svg>') no-repeat center;
    background-size: 14px;
}

.quiz-icon--wrong {
    background: #e74c3c url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M11.9997 10.5865L16.9495 5.63672L18.3637 7.05093L13.4139 12.0007L18.3637 16.9504L16.9495 18.3646L11.9997 13.4149L7.04996 18.3646L5.63574 16.9504L10.5855 12.0007L5.63574 7.05093L7.04996 5.63672L11.9997 10.5865Z"/></svg>') no-repeat center;
    background-size: 14px;
}

.quiz-result-item__content {
    flex: 1;
    min-width: 0;
}

.quiz-result-item__question {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.quiz-result-item__answer,
.quiz-result-item__correct-answer {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 4px;
}

.text-correct {
    color: #2ecc40;
    font-weight: 600;
}

.text-wrong {
    color: #e74c3c;
    font-weight: 600;
}

.quiz-result-item__explanation {
    margin-top: 10px;
    padding: 10px 14px;
    background: #1c1c1c;
    border-radius: 6px;
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
}

#quiz-content .box-container {
    position: relative;
}

@media (max-width: 767px) {

    .quiz-header {
        flex-direction: column;
    }

    .quiz-header--completed {
        flex-direction: row;
    }

    .quiz-progress {
        text-align: left;
        min-width: 0;
        width: 100%;
    }

    .quiz-answer-option {
        padding: 10px 0;
    }

    .quiz-result-item {
        padding: 12px;
    }

    .quiz-result-item__question {
        font-size: 13px;
    }

    .quiz-nav {
        flex-wrap: wrap;
    }
}

/* Compare table
 ==================================================== */

.compare-table table,
.compare-table td,
.compare-table th {
    border: none !important;
}

.compare-table th {
    color: white !important;
    background-color: transparent !important;
}

.compare-table .table-striped > tbody > tr > td {
    background-color: transparent !important;
    color: white !important;
}

.compare-table th,
.compare-table td {
    overflow-wrap: break-word;
    min-width: 140px;
}

.compare-table td strong {
    display: inline-block;
    min-width: 280px;
}

.compare-table th.start-week,
.compare-table td.start-week {
    background-color: #d6d6d638 !important;
    border-left: 3px solid #d6d6d6 !important;
    border-right: 3px solid #d6d6d6 !important;
}

.compare-table th.current-week,
.compare-table td.current-week {
    background-color: #dbad3c33 !important;
    border-left: 3px solid #dbad3c !important;
    border-right: 3px solid #dbad3c !important;
}

.week-label {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 5px;
}

.start-label {
    background-color: #d6d6d638;
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
}

.current-label {
    background-color: #dbad3c;
    color: #000000;
    font-size: 14px;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .compare-table th,
    .compare-table td {
        min-width: 125px !important;
    }
}