/*-----------------------------------------------------------------------------------*/
/* FONTS
/*-----------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

/*-----------------------------------------------------------------------------------*/
/* VARIABLES
/*-----------------------------------------------------------------------------------*/
:root {
    --primary: #CD3232;
    --accent: #FF3C3C;
    --secondary: #444444;
    --default: #343434;
    --light-grey: #D9D9D9;

    --dark-grey: #2d2d2d;
    --dark-bg: #1C1C1C;

    --swiper-theme-color: #CD3232;
    --swiper-pagination-bullet-size: 13px;
    --swiper-pagination-bullet-inactive-color: #636363;
    --swiper-pagination-bullet-inactive-opacity: 1;

}

/*-----------------------------------------------------------------------------------*/
/* RESET CSS 
/*-----------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
.menu,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
input[type=button],
button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: "Montserrat", serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-weight: 400;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--light-grey) var(--dark-grey);
}

body {
    position: relative;
    font-weight: 400;
    color: var(--default);
    background: #F3F3F3;
    font-size: 16px;
    direction: ltr;
    overflow-x: hidden;
}

[dir="rtl"] *:not([class^="icon"]) {
    direction: rtl;
    font-family: "Alexandria", sans-serif;
}

[dir="rtl"] p {
    line-height: 1.8;
}

html {
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

a {
    outline: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
}

ol {
    list-style-position: inside;
}

p {
    line-height: 1.6;
}

select,
button,
input {
    outline: none;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background-color: var(--primary);
    color: #fff;
}

/* Global Style */
main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 400px);
}

.wrapper {
    min-height: calc(100vh - 520px);
}

.container {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.flex-row,
.center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.flex-row.between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

section {
    padding: 60px 0;
    position: relative;
}


.btn {
    display: block;
    background-color: var(--primary);
    font-family: "Source Sans 3", serif;
    font-weight: 700;
    padding: 5px 20px;
    text-align: center;
    transition: all .5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    border-radius: 26px;
    height: 52px;
    width: fit-content;
    line-height: 46px;
    min-width: 200px;
    text-transform: uppercase;
}

.btn-border {
    background: transparent;
    border: 1px solid #fff;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-weight: 500;
    height: 48px;
    line-height: 40px;
}

.btn-default {
    color: #fff;
    background-color: var(--dark-grey);
}

.btn-radius {
    border-radius: 10px;
}

.btn-small {
    margin-bottom: 10px;
    height: 43px;
    line-height: 37px;
    padding: 5px 20px;
    min-width: unset;
}

.btn.disabled,
.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn:hover {
    background-color: var(--accent);
    box-shadow: 0 0px 15px 3px #ff1c1c;
}

.btn-border:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}

.btn-icon {
    position: relative;
    font-weight: 400;
    font-size: 20px;

}

.btn-icon::after {
    content: "\e902";
    font-family: 'icomoon';
    position: absolute;
    right: 12px;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);

}

[dir="rtl"] .btn-icon::after {
    right: unset;
    left: 12px;
    transform: translateY(-50%) rotate(180deg);
}

.btn.loading::before {
    content: "";
    background-image: url(../images/spinner-w.svg);
    margin-right: 8px;
    background-size: contain;
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
}

.modal-btn {
    cursor: pointer;
}

.clear {
    clear: both;
    height: 0;
}

.center-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px 10px;
    flex-wrap: wrap;
}


/*-----------------------------------------------------------------------------------*/
/* ITEMS
/*-----------------------------------------------------------------------------------*/
.items-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    flex-grow: 1;
}

.item {
    position: relative;
    transition: all 0.5s ease;
}

.item-title {
    font-family: "Source Sans 3", serif;
    font-weight: 700;
    color: var(--light-grey);
    text-transform: capitalize;

}

/* HEADER */

header {
    padding: 15px 0;
    width: 100%;
    background: #1c1c1c;
}

.home header {
    position: absolute;
    z-index: 10;
    background: none;
    top: 0;
    left: 0;
}

.header-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: block;
}

.logo img {
    max-width: 240px;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

header .container {
    max-width: 1250px;
}

.logged-user {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    color: #fff;
    background: #FFFFFF1A;
    padding: 3px 5px 3px 3px;
    font-size: 14px;
    transition: all 0.3s ease;
    height: 35px;
}

.logged-user:hover {
    background-color: var(--primary);
}

.user-image {
    display: block;
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Forms*/
.form-head {
    margin-bottom: 20px !important;
}

.form-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 30px;
    text-transform: capitalize;

}

.group-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.group-flex .form-group {
    flex: 47%;
}

.group-flex.group-4 .form-group,
.group-flex.group-sm .form-group:not(.flex-100) {
    flex: 23%;
    flex-grow: 0;
    margin-bottom: 25px;
}

.group-flex.group-3 .form-group {
    flex: 30%;
    flex-grow: 0;
}

.flex-100 {
    flex: 100% !important;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
}

[dir="rtl"] .form-group label {
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 10px;

}

[dir="rtl"] .form-title {
    font-size: 28px;
    margin-bottom: 10px;
}

label.checkbox-label {
    display: flex;
    gap: 5px;
    align-items: center;
}

label.checkbox-label .form-control {
    width: 20px;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.radio-group label {
    cursor: pointer;
}

input[type='radio'] {
    visibility: hidden;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
}

input[type='radio']:after {
    content: '';
    position: relative;
    visibility: visible;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: block;
    box-sizing: border-box;
    top: -2px;
}

input[type='radio']:checked:after {
    content: "\e916";
    font-family: 'icomoon';
    color: var(--secondary);
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    width: 100%;
    border-radius: 10px;
    color: #fff;
    background-color: var(--default);
    border: none;
    outline: none;
    padding: 10px 15px;
    font: inherit;
}

.form-control:not(textarea) {
    height: 40px;
}

textarea.form-control {
    resize: none;
    max-height: 150px;
}

.error-msg {
    color: var(--primary);
    font-size: 14px;
    display: block;
    margin-top: 5px;
}


/* Alert*/

.response-message {
    position: fixed;
    right: 50px;
    bottom: 30px;
    display: none;
    z-index: 1000;
}

.alert:empty {
    display: none;
}

.alert {
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    color: #20a26d;
    background-color: #e3f5ed;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert::before {
    font-family: 'icomoon';
    font-size: 26px;
}

.alert.success::before {
    content: "\e90b";
}

.alert.error::before {
    content: "\e917";
}

.alert.warning::before {
    content: "\e917";
}

.alert.info::before {
    content: "\e936";
}

.alert.error,
.status.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.alert.success,
.status.active {
    color: #155724;
    background-color: #d4edda;
}

.alert.warning {
    color: #856404;
    background-color: #fff3cd;
}

.alert.info {
    color: #fff;
    background-color: #ff3c3c66;
}



/* CUSTOMIZE SELECT2 */
.select2-dropdown {
    box-shadow: 0 2px 5px #00000033;
    border-radius: 10px;
    overflow: auto;
}

.select2-container--default .select2-selection {
    background-color: #f6f6f8;
    border: none !important;
    min-height: 40px;
    border-radius: 10px;
}

.select2-container--default .select2-selection--multiple {
    padding: 2px 10px;
}

.select2-container--default .select2-selection--single {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--secondary);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--secondary);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    padding: 5px 25px 5px 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none;
    right: 5px;
    left: auto;
    top: 5px;
    height: 17px;
    width: 17px;
    line-height: 17px;
    font-size: 15px;
    background: var(--default);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background: var(--primary);
    color: #fff;
}

/* Programs List */


.program-list {
    display: flex;
    gap: 20px 4%;
    flex-wrap: wrap;
}

.program {
    background-color: #272727;
    padding: 20px 15px;
    border-radius: 15px;
    color: #fff;
    width: 23%;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    position: relative;
}

.program-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.program:hover,
.program:has(input:checked),
.program.Y,
.match-program .program {
    box-shadow: 0px 0px 7px 0px #FB3939;

}

.program:hover .program-icon i {
    color: #fff;
}

.program input {
    position: absolute;
    right: 0;
    top: 24px;
}

.program input[type='radio']:after {
    background: transparent;
    border-color: #FFFFFFE5;
}

.program input[type='radio']:checked:after {
    background-color: var(--primary);
    content: "\e916";
    color: #FFFFFFE5;
    font-size: 8px;
    line-height: unset;
}

/* .program:has(input:checked),
.program.Y {
    background-color: var(--primary);
} */

.program-title {
    font-size: 24px;
    font-weight: 600;
    display: block;
    width: calc(100% - 30px);
}

.program-desc {
    color: #FFFFFFBF;
    font-size: 14px;
    font-weight: 400;
}

.program-desc:empty {
    display: none;
}

.program-details {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    color: #FFFFFFBF;
    font-size: 16px;
}

.program-details .program-info {
    min-width: 70px;
    padding: 8px;
    background-color: var(--default);
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFFE5;
}

.program-details .program-info small {
    display: block;
    font-size: 12px;
    color: inherit;
    margin-top: 3px;
    font-weight: 400;
}

.program .btn {
    text-transform: capitalize;
    width: 100%;
    line-height: 31px;
    font-size: 16px;
    background: var(--default);
    border: 2px solid var(--primary);
    min-width: unset;
}

.program:has(input:checked) .btn {
    background-color: var(--primary);
}


.program-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-icon i {
    color: var(--primary);
}

.scroll-x {
    overflow-x: auto;
    white-space: nowrap;
}

.mob-menu {
    display: none;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-logos img {
    max-width: 45px;
    display: block;
}

footer .payment-logos {
    margin-top: 30px;

}

/*-----------------------------------------------------------------------------------*/
/* PRICING
/*-----------------------------------------------------------------------------------*/

.pricing-container>div,
.pricing-container>form {
    display: flex;
    gap: 30px 70px;
}

.pricing-features p {
    font-size: 16px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 10px;
    margin-bottom: 20px;

}

.pricing-features li {
    list-style: none;
    font-family: "Source Sans 3", serif;
    font-size: 17px;
    line-height: 48px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2px;
}

.pricing-features li::before {
    font-family: 'icomoon';
    content: "\e901";
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    font-size: 20px;
}

.pricing-tabs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 40%;
}

.pricing-tabs .btn {
    width: 100%;
}

.tabs {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #00000075;
    border-radius: 50px;
    padding: 7px;
    position: relative;
}

.tabs .tab-button {
    color: inherit;
    cursor: pointer;
    font-family: "Source Sans 3", serif;
    font-size: 18px;
    text-transform: capitalize;
    padding: 4px 15px;
    border-radius: 24px;
    min-width: 50%;
    display: block;
    text-align: center;
    z-index: 1;
}


.tab-panel {
    display: none !important;
}

.tab-panel.active {
    display: flex !important;
}

.btn-bg {
    display: block;
    position: absolute;
    right: 5px;
    top: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background-color: var(--primary);
    transition: all 0.5s ease;
}

.tabs .btn-bg {
    border-radius: 24px;
    background: #444444A6;
    right: unset;
    left: 7px;
    width: calc(50% - 7px);
    height: calc(100% - 13px);
    top: 6px;
}

[dir="rtl"] .tabs .btn-bg {
    left: unset;
    right: 7px;
    ;
}


.pricing-amount s,
.pricing-amount small {
    display: block;
    font-family: "Source Sans 3", serif;
    font-size: 20px;
    line-height: 20px;
}

.pricing-amount strong {
    display: block;
    font-weight: 600;
    font-family: "Source Sans 3", serif;
    font-size: 50px;
    line-height: 60px;
}

[dir="rtl"] .pricing-amount strong {
    line-height: 70px;
}

.pricing-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


.badge {
    background-color: var(--primary);
    font-family: "Source Sans 3", serif;
    font-size: 20px;
    line-height: 28px;
    padding: 5px 10px;
    border-radius: 24px;
    text-transform: uppercase;
    min-width: 120px;
    text-align: center;
}

.badge:empty {
    display: none;
}

/*-----------------------------------------------------------------------------------*/
/* MODAL
/*-----------------------------------------------------------------------------------*/
.dim::before {
    content: "";
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 10;
    transition: all 0.5s ease;
}

.modal {
    width: 50%;
    max-width: 1000px;
    background-color: var(--dark-bg);
    position: fixed;
    top: 50%;
    transform: scale(0.8) translateY(-50%);
    left: 0;
    margin: 0 auto;
    right: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-radius: 18px;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 30%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    overflow: hidden;
}

.modal-sm {
    max-width: 600px;
}

.modal#login {
    max-width: 600px;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(-50%);
}

.modal .inline-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.modal .inline-buttons .btn {
    width: 47%;
    flex-grow: 1;
    margin: 0 !important;
}

.form-link a {
    font-weight: 600;
    color: var(--light-grey);
}

.form-link a:hover {
    text-decoration: underline;
}

.close-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: #FFFFFFE5;
    text-align: center;
    border-radius: 50%;
    line-height: 40px;
    z-index: 10;
    transition: all 0.3s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);
}

.close-icon i {
    position: relative;
    top: -1px;
}

[dir="rtl"] .close-icon {
    left: 10px;
    right: unset;
}

.close-icon:hover {
    transform: scale(2.5);
}

.modal-content {
    padding: 30px;
    box-sizing: border-box;
    max-height: 86vh;
    overflow-y: auto;
    position: relative;
    background: var(--dark-bg);
    color: #FFFFFFE5;
    border-radius: 0 0 18px 18px;
    transition: all 0.3s ease;
}

.modal-content .modal-btn {
    color: var(--light-grey);
    text-decoration: underline;
}

.modal .btn {
    width: 100%;
}

form .btn {
    margin-top: 20px;

}

.form-link {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}

.modal#forgot_password,
.modal#reset_password {
    max-width: 600px;
}

.modal .response-message.success {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--dark-bg);
    display: flex !important;
    align-items: center;
    justify-content: center;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal .response-message.success.show {
    opacity: 1;
}

.modal .response-message.success .alert.success {
    background: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    color: #fff;
    max-width: 600px;
}

.modal .response-message.success .alert.success::before {
    color: var(--primary);
    border-radius: 50%;
    font-size: 65px;
    margin-bottom: 15px;
    transform: scale(0.5);
    opacity: 0;
}

.modal .response-message.success.show .alert.success::before {
    animation: grow 0.8s ease forwards;
}

@keyframes grow {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.modal .response-message {
    left: unset;
    right: 50px;
}



.days-list {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0 15px;
}

.days-list a {
    display: block;
    padding: 5px 15px;
    background: var(--default);
    border-radius: 10px 10px 0 0;
    color: #FFFFFFE5;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.days-list a:hover,
.days-list li.active a {
    background-color: var(--primary);
    color: #fff;
}

.rows-list {
    background: #D9D9D90F;
    padding: 6px;
    border-radius: 15px;
}

.row-item {
    background: var(--default);
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: inherit;
    transition: all 0.3s ease;
}
.row-name {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.row-name i {
    font-size: 40px;
    opacity: 0.6;
    font-style: normal;
}

.label-title small,
.exercise-info small,
.row-name small,
.add-food-wrapper label {
    color: #FFFFFFBF;
    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-size: 14px;
    min-height: 20px;
}
.label-title h3 {
    font-size: 21px;
    font-weight: 600;
    color: #FFFFFFE5;
    text-transform: capitalize;
    line-height: 27px;
}
@media only screen and (max-width: 840px) {


    .mob-menu .profile-img i::before,
    .mob-menu .profile-img span,
    .menu-item.btn i,
    .menu-item span:empty,
    .profile-btn {
        display: none;
    }

    .mob-menu .btn {
        min-width: unset;
        font-size: 16px;
    }

    .menu-item .icon {
        font-size: 20px;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border-radius: 50%;
        border: 2px solid transparent;
    }

    .menu-item.profile-img .icon {
        width: 43px;
        height: 43px;
        background-size: cover;
        background-position: center;
    }

    .menu-item:not(.btn) {
        color: #fff !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        font-size: 10px;
        min-width: 40px;
    }

    .menu-item:hover .icon,
    .menu-item.active .icon,
    .menu-item.btn:hover {
        border-color: #fff;
        background-color: var(--primary) !important;
        color: #fff;
    }

}

@media only screen and (max-width: 680px) {


    .pricing-tabs,
    .pricing-features {
        width: 100%;
    }

    .pricing-tabs .tabs {
        width: fit-content;
        margin: 0 auto;
    }

    .pricing-amount {
        justify-content: space-around;
    }

    .pricing-content h3 {
        line-height: 50px !important;
        font-size: 45px !important;
    }

    .pricing-content h4 {
        font-size: 26px;
        line-height: 30px;
        margin-top: 15px;
    }


    .pricing-container>div,
    .pricing-container>form {
        flex-wrap: wrap;
    }

    #chatbase-bubble-button {
        bottom: 65px !important;
    }

    .group-flex.group-4 .form-group,
    .group-flex.group-3 .form-group,
    .group-flex.group-sm .form-group:not(.flex-100) {
        flex: 47%
    }

    .group-flex .form-group {
        flex: 100%;
    }

    .flex-end {
        justify-content: center;
    }
}