:root {
    --Green: #207A6A;
    --White: #FFF;
    --Black: #2A2A2A;
    --Light-Grey: #DFDFDF;
    --Grey: #B5B5B5;
    --red-error: #E57373;
    --yellow-warning: #ffc107;
}

* {
    /*transition: all 0.2s ease;*/
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--Black) !important;
    font-weight: 400;
}

.container {
    max-width: 1224px !important;
}

.container, .row {
    --bs-gutter-x: 40px;
}

.section {
    padding: 80px 0;
}

.overlay {
    background-color: transparent;
    position: fixed;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 0;
    z-index: -10;
    transition: all 0.2s ease;
}

.menu-open .overlay {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.flex-1 {
    flex: 1;
}

.gap-20 {
    gap: 20px;
}

.w-24 {width: 24px;}
.h-24 {height: 24px;}
.max-h-340 {max-height: 340px;}
.nowrap {white-space: nowrap;}

/* BUTTONS */
.primary-btn {
    border: 0;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    background: var(--Green);
    height: 44px;
    padding: 0 20px;
    color: var(--White);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.primary-btn .btn-icon {
    display: none;
}

.primary-btn--with-icon .btn-icon,
.secondary-btn--with-icon .btn-icon {
    display: block;
    margin-left: 4px;
}

button.primary-btn {
    outline: none;
    border: none;
}

.primary-btn:hover,
.round-btn--filled:hover {
    background: rgba(32, 122, 106, 0.80);
}

.primary-btn.disabled,
.primary-btn:disabled {
    background: var(--Grey);
}

.transparent-btn {
    background-color: transparent;
    border: 0;
}
.transparent-btn.disabled:not(.loading) {
    opacity: 0.5;
}
.transparent-btn.loading img {
    opacity: 0;
}
.transparent-btn.loading {
    background: url(../images/loader.svg) no-repeat center;
    background-size: contain;
}

.round-btn {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    border: 1px solid var(--Green);
    transition: all .2s ease;
}

.round-btn:hover {
    border: 1px solid rgba(32, 122, 106, 0.50);
}

.round-btn--filled {
    background-color: var(--Green);
    transition: all .2s ease;
}

button.round-btn {
    outline: none;
    background-color: transparent;
}

.secondary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    border: 1px solid var(--Green);
    color: var(--Green);
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    height: 44px;
    padding: 0 20px;
    text-decoration: none;
}

.secondary-btn:hover {
    border: 1px solid rgba(32, 122, 106, 0.50);
}

button.secondary-btn {
    outline: none;
    background-color: transparent;
}
.secondary-btn.disabled {
    border-color: var(--Grey);
    color: var(--Grey);
}
.secondary-btn.loading:before {
    content: url(../images/loader-gray.svg);
    margin-right: 10px;
}

/* LINK */
a.link {
    color: var(--Black);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

a.link:hover {
    text-decoration: underline;
}

.button-link {
    color: var(--Green);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.button-link:hover {
    text-decoration: underline;
}

/* HEADER */
header {
    /*padding: 17px 0;*/
    z-index: 3;
    position: relative;
}

.adaptive-menu {
    background-color: #FFFFFF;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    transition: top 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

.adaptive-menu.active {
    top: 100px;
    visibility: visible;
    opacity: 1;
}

/* FOOTER */
footer {
    padding: 32px 0 40px 0;
    border-top: 1px solid var(--Light-Grey);
}

.footer-menu {
    flex-wrap: wrap;
}

/* ACCORDION */
.accordion__header {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--Light-Grey);
    cursor: pointer;
}

.accordion__content {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}

.accordion__header.active + .accordion__content {
    opacity: 1;
    visibility: visible;
    padding: 16px 0;
    max-height: 100%;
}

/* TITLES + CONTENT */
.large-title {
    color: var(--Black);
    font-size: 52px;
    font-weight: 700;
    line-height: 60px;
}

.large-title__highlighted-part,
.section-title__highlighted-part {
    color: var(--Green);
}

.section-title {
    color: var(--Black);
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
}

@media all and (max-width: 1140px) {
    .large-title {
        font-size: 42px;
        line-height: 50px;
    }
}

@media all and (max-width: 991px) {
    .large-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media all and (max-width: 767px) {
    .large-title {
        font-size: 22px;
        line-height: 30px;
    }
}

/* CARD */
.main-card {
    display: flex;
    width: 100%;
    min-height: 230px;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 24px;
    border: 1px solid var(--Light-Grey);
    background: var(--White);
}
@media all and (max-width: 575px){
    .main-card {
        max-width: 269px;
    }
}

.main-card__img {
    width: 48px !important;
    height: 48px;
}

.main-card__title {
    color: var(--Black);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
}

.main-card__number {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: var(--Green);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--White);
    font-weight: 400;
    margin: 0;
}

.card-wrapper {
    padding: 0 1px;
}

/* CHIPS */
.chip {
    height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--White);
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    border-radius: 32px;
    border: 1px solid var(--White);
    background-color: transparent;
}

.chip-icon {
    width: 16px !important;
    height: 16px;
}

/* SLIDER */
.owl-dots {
    padding-top: 32px;
    display: flex !important;
    gap: 16px;
    justify-content: center;
}

.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--Light-Grey) !important;
}

.owl-dot.active {
    background-color: var(--Green) !important;
}

.instagram-slider img {
    max-width: 272px;
    border-radius: 24px;
}

/* VIDEO SCREENS */
.video-screen {
    position: relative;
    padding: 16px;
    border-radius: 24px;
    background-color: rgba(245, 245, 245, 0.80);
}

.video-screen__img {
    border-radius: 16px;
    width: 100%;
    max-width: 194px;
    max-height: 155px;
}

.play-video-icon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.20) url(../images/play-icon.svg) no-repeat center;
    backdrop-filter: blur(2px);
}

.video-screen:hover .video-screen__img {
    filter: grayscale(70%) brightness(1.1);
}

.no-filter .video-screen:hover .video-screen__img {
    filter: none;
}

.video-screen:hover .play-video-icon {
    width: 50px;
    height: 50px;
}

@media all and (max-width: 991px) {
    .video-screen {
        padding: 14px;
        border-radius: 20px;
    }
    .video-screen__img {
        border-radius: 10px;
        max-width: 144px;
    }
}

@media all and (max-width: 991px) {
    .video-screen {
        padding: 14px;
        border-radius: 20px;
    }
    .video-screen__img {
        border-radius: 10px;
        max-width: 144px;
    }
}

/* CHALLENGE CARD */

.challenge-card {
    position: relative;
    background: #2A2A2A;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    overflow: hidden;
}
@media all and (max-width: 679px){
    .challenge-card {
        max-width: 310px;
    }
}

.challenge-card__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    padding: 24px;
}

.challenge-card__img {
    height: auto;
}

.challenge-card .complete-chip {
    display: none;
}

.challenge-card.completed:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.80);
    border-radius: 24px;
    z-index: 3;
}

.challenge-card.completed .complete-chip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    z-index: 3;
}

.challenge-card .challenge-card__active {
    border-color: var(--Green);
    background: var(--Green);
}
.challenge-card:not(.active) .challenge-card__active {
    display: none;
}

.challenge-card__label {
    top: 24px;
}

.challenge-card__title {
    color: var(--White);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    width: 40%;
}

/* TABLE */
.table-container {
    border: 1px var(--Light-Grey) solid;
    border-radius: 15px;
    overflow: hidden;
}

.custom-table {
    font-size: 14px;
    /*border: 1px var(--Light-Grey) solid;
    border-radius: 15px;*/
    border-collapse: collapse;
}

.table-row {
    width: 100%;
    display: flex;
    border-bottom: 1px var(--Light-Grey) solid;
}

.table-row:last-child {
    border: none;
}

.table-col {
    width: 100%;
    min-width: 134px;
}
.table-cell {
    padding: 14px 23px;
}
@media all and (min-width: 768px) {
    .table-col {
        border-right: 0;
        border-bottom: 1px var(--Light-Grey) solid;
    }
    .table-cell {
        min-width: 150px;
    }
}
.table-cell.mw-auto {
    min-width: unset;
}

tbody .table-col:last-child {
    border: 0;
}


.table-head {
    color: var(--Green);
    font-weight: 600;
}

.custom-table th,
.custom-table td {
    border-color: var(--Light-Grey);
    border-width: 0 1px;
    border-style: solid;
}

.custom-table th:first-child,
.custom-table td:first-child,
.custom-table th:last-child,
.custom-table td:last-child {
    border-width: 0;
}


/* ALERT */
.custom-alert {
    display: flex;
    align-items: center;
    padding: 13px;
    border-radius: 12px;
    border: 1px solid var(--Light-Grey);
}

.custom-alert img {
    margin-right: 10px;
}

.form-alert {
    border-radius: 12px;
    background: rgba(32, 122, 106, 0.20);
    font-size: 12px;
    padding: 4px 12px;
}

/* MODAL */
.modal-content {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    border: none;
    font-size: 14px;
}

.modal-dialog {
    /*max-width: 480px;*/
}

.modal-title {
    color: var(--Black);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.modal-close-icon {
    position: absolute;
    right: 24px;
    top: 24px;
    cursor: pointer;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.4;
}

/* INPUTS */
.input, .textarea {
    border-radius: 32px;
    border: 1px solid var(--Light-Grey);
    padding: 12px 16px;
    margin: 0;
    width: 100%;
}

.input:focus, .textarea:focus {
    border: 1px solid var(--Green);
    outline: none;
}

.textarea {
    min-height: 120px;
    border-radius: 12px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon img,
.input-with-icon .input-right-text {
    position: absolute;
    right: 16px;
    top: 14px;
    width: 16px;
    height: 16px;
}

.input-with-icon .input-right-text {
    top: 10px;
}

.input-with-icon input {
    width: 100%;
    padding-right: 37px;
}

.password-field img {
    cursor: pointer;
}

input::-webkit-calendar-picker-indicator {
    opacity: 0;
}

input::-webkit-inner-spin-button {
    opacity: 0;
    display: none;
}

.input-container {
    position: relative;
}

.input-container .error-message {
    position: absolute;
    z-index: 3;
    padding: 0 4px;
    left: 13px;
    background: var(--White);
    top: -8px;
    color: var(--red-error);
    font-size: 12px;
}

.input-container.invalid .input {
    border: 1px solid var(--red-error);
}

.input-container.invalid .input:not([type="password"]) {
    color: var(--red-error);
}

.promo-code-input .input-icon {
    cursor: pointer;
}

/* MEDIA QUERIES */
@media screen and (max-width: 768px) {
    .container {
        --bs-gutter-x: 40px;
    }

    .large-title {
        font-size: 32px;
        line-height: 36px;
    }

    .section {
        padding: 40px 0;
    }

    .primary-btn {
        height: 50px;
        font-size: 16px;
        padding: 0 24px;
    }

    .secondary-btn {
        height: 50px;
        font-size: 16px;
        padding: 0 24px;
    }

    .round-btn {
        width: 50px;
        height: 50px;
    }

    .subscription .main-card {
        max-width: 100%;
    }

    .modal-content {
        padding: 32px 24px;
    }
}

.instagram-gallery-feed a {
    display: none;
}
.instagram-gallery-item__media-wrap {
    border-radius: 24px;
}
.instagram-gallery-item__media-card {
    opacity: 0;
}
.instagram-gallery__alert {
    background-color: var(--Green);
    border-radius: 24px;
    font-size: 13px;
}
.radius-24 {
    border-radius: 24px;
}

.accordion * {
    transition: all 0.2s ease-in-out;
}

.loader {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.8) url(../images/loader.svg) no-repeat center;
    width: 100%;
    height: 100%;
}
form:not(.disabled) .loader {
    display: none;
}

.wpcf7-spinner {
    position: absolute;
    bottom: 50px;
}
.wpcf7-not-valid-tip {
    padding: 1px 15px 0;
    font-size: 12px;
}

.notice {
    border-radius: 24px;
    font-size: 13px;
    padding: 15px;
    color: #fff;
    margin: 10px auto;
    display: block;
    max-width: 1184px;
}
.notice.success {
    background-color: var(--Green);
}
.notice.error {
    background-color: var(--red-error);
}
.notice.warning {
    background-color: var(--yellow-warning);
}

.empty-box {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid #DFDFDF;
}