@import "variables";

@mixin circle($size: 50px) {
    --size: #{$size};
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
}

html {
    scroll-behavior: smooth;
}
//body{font-size: var(--content-size); text-align: inherit; margin: 0; padding: 0;  background: #F6F7F8; color: var(--secondary-color); overflow-x: hidden;}
* {
    box-sizing: border-box;
}
.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
}

::-webkit-scrollbar {
    height: 5px;
    width: 10px;
    cursor: pointer;
}
::-webkit-scrollbar-track {
    background: transparent;
    cursor: pointer;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
    cursor: pointer;
}

.icon-rounded {
    @include circle(30px);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.color-white {
    color: var(--color-white);
}
.color-primary {
    color: var(--color-primary);
}

.bg-white {
    background-color: var(--color-white);
}

.link {
    color: var(--color-primary);
}

.btn {
    border: none;
    display: flex;
    font-weight: 500;
    color: #fff;
    padding: 10px 25px;
    min-height: 36px;
    background-color: var(--color-primary);
    border-radius: 4px;
    display: inline-flex;
    min-width: fit-content;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.btn:hover {
    background-color: var(--color-secondary);
}

.btn-white {
    border: none;
    display: flex;
    min-height: 36px;
    font-weight: 500;
    color: var(--color-bory);
    padding: 10px 25px;
    background-color: white;
    border-radius: 4px;
    display: inline-flex;
    min-width: fit-content;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.btn-white:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-outline {
    border: 1px solid var(--color-primary);
    display: flex;
    min-height: 36px;
    font-weight: 500;
    color: var(--color-primary);
    padding: 10px 25px;
    background-color: white;
    border-radius: 4px;
    display: inline-flex;
    min-width: fit-content;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.btn-outline:hover {
    background-color: none !important;
}
.btn-submit {
    font-weight: 600;
    padding: 10px 20px;
    height: 44px;
}

//.btn{--item-gap: 30px; --px: var(--item-gap); padding: 3px var(--px); outline: none !important; cursor: pointer; white-space: nowrap; min-height: var(--button-height); display: inline-flex; justify-content: center; align-items: center; font-size: var(--content-size); border: 0; }

.btn-primary {
    color: white;
    border-radius: 5px;
    background-color: var(--primary-color) !important;
    border: none !important;

    &:hover,
    &:active,
    &:active:hover,
    &:any-link,
    &:focus {
        background: #90b134;
    }
}
.btn-secondary {
    background: rgba(118, 160, 34, 0.15);
    color: #77a023;
    border-radius: 10px;
    font-size: 18px;
}

$data-gap-list: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, 35, 40, 45, 50,
    55, 60, 65, 70, 75, 80;
@each $item in $data-gap-list {
    [margin="#{$item}"] {
        --size: #{$item}px;
    }
    [data-gap="#{$item}"] {
        --item-gap: #{$item}px;
    }
    [data-gap-v="#{$item}"] {
        row-gap: #{$item}px !important;
    }

    @if ($item > 15) {
        [data-button-height="#{$item}"] {
            --button-height: #{$item}px;
        }
    }

    .left-#{$item} {
        left: #{$item}px;
    }
    .right-#{$item} {
        right: #{$item}px;
    }

    .border-radius-#{$item} {
        border-radius: #{$item}px;
    }
}

$grid-width: 50, 100, 150, 200, 250, 300, 350, 400, 450, 500;
@each $data-item in $grid-width {
    [grid-item-width="#{$data-item}"] {
        --grid-item-width: calc(#{$data-item}px - var(--item-gap));
    }
}

.h-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    grid-gap: var(--item-gap);
}
.flex-d-column {
    flex-direction: column;
}
.flex-d-row {
    flex-direction: row;
}
.grid {
    display: grid;
    grid-gap: var(--item-gap);
    grid-template-columns: repeat(
        auto-fill,
        minmax(var(--grid-item-width), 1fr)
    );
}
.auto-fr {
    display: grid;
    margin: 0;
    padding: 0;
    grid-gap: var(--item-gap);
    grid-template-columns: auto 1fr;
    align-items: center;
}
.fr-auto {
    display: grid;
    margin: 0;
    padding: 0;
    grid-gap: var(--item-gap);
    grid-template-columns: 1fr auto;
    align-items: center;
}
.fr-fr {
    display: grid;
    margin: 0;
    padding: 0;
    grid-gap: var(--item-gap);
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.d-none {
    display: none !important;
}

.mb {
    margin-bottom: var(--size);
}
.pointer-event-none {
    pointer-events: none;
}

// .font-weight-400{font-family: var(--primary-font);}
// .font-weight-500{font-family: var(--primary-font-500);}
// .font-weight-600{font-family: var(--primary-font-600);}
// .font-weight-700{font-family: var(--primary-font-700);}
.font-size-12 {
    font-size: 12px;
}
.font-size-13 {
    font-size: 13px;
}
.font-size-15 {
    font-size: 15px;
}
.font-size-18 {
    font-size: 18px;
}
.font-size-20 {
    font-size: 20px;
}
.font-size-22 {
    font-size: 22px;
}
.cursor-pointer {
    cursor: pointer;
}
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
}
.nowrap {
    white-space: nowrap !important;
}
.no-wrap {
    flex-wrap: nowrap;
}

.align-items-inherit {
    align-items: inherit;
}
.align-items-center {
    align-items: center;
}
.align-items-start {
    align-items: flex-start;
}
.align-content-start {
    align-content: flex-start;
}
.align-content-center {
    align-content: center;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-items-center {
    justify-items: center;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-end {
    justify-content: flex-end;
}

.position-relative {
    position: relative;
}

figure {
    margin: 0;
}
.image-responsive img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.overflow-hidden {
    overflow: hidden;
}
.section-title {
    font-size: 30px;
    color: var(--secondary-color);
    text-transform: capitalize;
}

.description-holder p {
    margin: 0;
    margin-bottom: 10px;
}
.description-holder p:last-child {
    margin-bottom: 0;
}
.help-block-error {
    margin: 0;
}
form,
button {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
}
.form-group {
    margin-bottom: 30px;
    input {
        text-align: left;
        padding-left: 10px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        //padding: 5px;
    }
}
.btn-pagination {
    padding: 0px 15px;
    width: 36px;
    height: 36px;
}

.avatar {
    border-radius: 100px;
    border: 1px solid #fefefe;
    overflow: hidden;
}
.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.width-100 {
    width: 100%;
}

h1,
.h1 {
    font-size: 60px;
    margin: 0;
}
h2,
.h2 {
    font-size: 48px;
    margin: 0;
}
h3,
.h3 {
    font-size: 30px;
    margin: 0;
}
h4,
.h4 {
    font-size: 20px;
    margin: 0;
}
h5,
.h5 {
    font-size: 18px;
    margin: 0;
}
h6,
.h6 {
    font-size: 14px;
    margin: 0;
}

.primary-color {
    color: var(--primary-color);
}
.secondary-color {
    color: var(--secondary-color);
}

.control-label {
    font-size: 18px;
    display: block;
    margin: 0 0 10px;
    line-height: 1.2;
}
.control-label.required:after {
    content: "*";
    color: var(--red);
    display: inline-flex;
    margin-left: 3px;
}
.form-control {
    font-family: "Outfit", sans-serif;
    height: 45px;
    padding: 0 15px;
    border-color: #ededed;
    background-color: #f9f9f9;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-body);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    // --item-gap: 15px; --px: var(--item-gap); --input-height: 45px; border-radius: 5px; padding-left: var(--px); padding-right: var(--px); color: var(--secondary-color); min-height: var(--input-height); border: solid 1px var(--secondary-color); font-size: var(--content-size);

    &:focus,
    &:focus-visible {
        border-color: var(--color-primary);
        box-shadow: none;
        outline: navajowhite;
        transition: 0.3s all;
    }
}
.input-field {
    position: relative;

    &::before {
        content: url("../images/search-icon.svg");
        height: 20px;
        width: 20px;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .form-control {
        --input-height: 37px;
        padding-left: 50px;
        border-color: #b0adad;
    }
    .form-control::placeholder {
        font-size: 14px;
    }
}
textarea.form-control {
    height: 120px;
    resize: vertical;
    width: 100%;
    padding: var(--px);
}
.content-size {
    font-size: var(--content-size);
}
.text-primary {
    color: var(--color-primary);
}
.text-secondary {
    color: var(--color-secondary);
}
.text-light-gray {
    color: var(--light-gray);
}

.error-message {
    color: red;
    font-size: 12px;
}
.error-alert {
    background-color: #f8d7d9;
    width: 100%;
    border-radius: 5px;
    border-color: #f6c6cb;
    padding: 10px 15px;
    p {
        color: #790f1a;
    }
}

.success-message {
    color: green;
    font-size: 12px;
}
.success-alert {
    background-color: #f8d7d9;
    width: 100%;
    border-radius: 5px;
    border-color: #f6c6cb;
    padding: 10px 15px;
    p {
        color: #0f793b;
    }
}

.dropdown-menu {
    margin: 10px 0;
}
.dropdown-menu > li > a {
    color: var(--secondary-color);
    padding: 5px 15px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.radio-select-group {
    display: flex;
    gap: 15px;

    .radio-item {
        position: relative;

        input {
            position: absolute;
            height: 100%;
            width: 100%;
            cursor: pointer;
            opacity: 0;
        }
        label {
            background: #efefef;
            padding: 5px 15px;
            min-height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
        }
        input:checked ~ label {
            background: #5b5d63;
            color: white;
        }
    }
}

.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    margin: 0;
    font-weight: var(--primary-font-500);

    input {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        z-index: 999;
    }
    .checkmark {
        position: relative;
        display: block;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        background: white;
        border-radius: 3px;
        outline: 1px solid #acacac;
        transition: all 0.2s ease;
    }
    input:checked ~ .checkmark {
        background: #76a120;
        outline: 1px solid #76a120;
    }
    .checkmark::after {
        position: absolute;
        content: "";
        left: 50%;
        top: 40%;
        width: 4px;
        height: 8px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: translate(-50%, -50%) rotate(45deg);
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -moz-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
        opacity: 0;
        transition: all 0.2s ease;
    }
    input:checked ~ .checkmark::after {
        opacity: 1;
        transition: all 0.2s ease;
    }
}

a {
    color: var(--color-body);
    transition: all 0.3s ease-in;
    text-decoration: none;
    font-weight: 500;
}
a:hover {
    color: var(--color-primary);
}

// a{text-decoration: none; color: #111111}
// a:hover, a:active, a:focus{color: var(--color-primary); text-decoration: none}

.progress-bar-wraper {
    display: grid;
    grid-template-columns: 4fr 1fr;
    margin-top: 20px;
    .progress-bar {
        position: relative;
        height: 20px;
        background: #d6d6d6;
        border-radius: 2px;
        width: 100%;
        text-align: left;
        box-shadow: none;
        &::before {
            content: attr(area-label);
            position: absolute;
            top: -25px;
            text-transform: capitalize;
            color: var(--secondary-color);
            font-size: var(--content-size);
        }
        .progress-val {
            height: 100%;
            background: #02a591;
            border-radius: 2px;
        }
    }
    span {
        text-align: right;
    }

    &.cumulative {
        margin-top: 25px;
        margin-bottom: 35px;

        .progress-bar .progress-val {
            background: var(--orange-color);
        }
        label {
            position: absolute;
            top: -32px;
            color: var(--secondary-color);
            font-size: var(--content-size);
            margin: 0;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        label > .icon-rounded {
            --size: 22px;
        }
        .progress-val {
            position: relative;

            &::before {
                content: url("../images/up-arrow-icon.svg");
                position: absolute;
                left: 100%;
                transform: translateX(-50%);
                top: calc(100% + 5px);
            }
            &::after {
                content: "BEST: " attr(total-score);
                position: absolute;
                left: 100%;
                transform: translateX(-50%);
                top: calc(100% + 25px);
                color: var(--secondary-color);
                font-size: 16px;
                white-space: nowrap;
            }
        }
    }
}
.progress-bars-holder.vertical {
    justify-content: space-between;
    border-bottom: 1px solid #d0d0d0;
    padding: 0 30px;
    margin-bottom: 60px !important;

    .progress-bar-wraper {
        grid-template-columns: 1fr;
        width: 35px;
        margin: 0;

        &.cumulative {
            margin: 0;
        }
        .progress-bar {
            height: 350px;
            background: rgba(2, 165, 145, 0.15);
            justify-content: flex-end;
            align-items: center;
        }
        .progress-bar::before {
            top: calc(100% + 10px);
        }
        .progress-val {
            width: 100%;
        }
        .progress-val::before,
        .progress-val::after {
            display: none;
        }
    }
}

/* Custom Range Slider */
.range-slider {
    --percent: 30%;
    background-color: var(--color-grey);
    background-image: linear-gradient(
        var(--color-primary),
        var(--color-primary)
    );
    background-size: var(--percent) 100%;
    background-repeat: no-repeat;
    border-radius: 0.25em;
    display: block;
    margin: 0.5em -0.75em;
    width: calc(100% + 1.5em);
    height: 0.5em;
    transition: background-color var(--trans-dur);
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.range-slider:focus {
    outline: transparent;
}

/* WebKit */
.range-slider::-webkit-slider-thumb {
    background-color: var(--color-primary);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0.125em 0.5em hsl(0, 0%, 0%, 0.3);
    width: 1.5em;
    height: 1.5em;
    transition: background-color 0.15s linear;
    -webkit-appearance: none;
    appearance: none;
}
.range-slider:focus::-webkit-slider-thumb,
.range-slider::-webkit-slider-thumb:hover {
    background-color: var(--color-secondary);
}

/* Firefox */
.range-slider::-moz-range-thumb {
    background-color: var(--color-primary);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 0.125em 0.5em hsl(0, 0%, 0%, 0.3);
    width: 1.5em;
    height: 1.5em;
    transition: background-color 0.15s linear;
}
.range-slider:focus::-moz-range-thumb,
.range-slider::-moz-range-thumb:hover {
    background-color: var(--color-secondary);
}
/* Continue main styles */
.range-slider-tooltip,
.range-slider-tooltip:after,
.range-slider-tooltip-value-track,
.range-slider-tooltip-values {
    position: absolute;
}
.range-slider-tooltip,
.range-slider-tooltip:after {
    transform: translateX(-50%);
}
.range-slider-tooltip {
    --percent: 30%;
    background-color: var(--color-primary);
    border-radius: 0.25em;
    color: var(--color-white);
    font-size: 0.7em;
    bottom: calc(100% + 0.3em);
    left: var(--percent);
    top: -15px;
    line-height: 16px;
    text-align: center;
    width: 2em;
    height: 1.5em;
    transition: background-color var(--trans-dur);
}
.range-slider-tooltip:after {
    border-top: 0.5em solid var(--color-primary);
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    content: "";
    display: block;
    top: calc(100% - 1px);
    left: 50%;
    width: 0;
    height: 0;
}
/* `:focus-visible` support */

@supports selector(:focus-visible) {
    .range-slider:focus::-webkit-slider-thumb {
        background-color: var(--color-primary);
    }
    .range-slider:focus-visible::-webkit-slider-thumb,
    .range-slider::-webkit-slider-thumb:hover {
        background-color: var(--color-secondary);
    }
    .range-slider:focus::-moz-range-thumb {
        background-color: var(--color-primary);
    }
    .range-slider:focus-visible::-moz-range-thumb,
    .range-slider::-moz-range-thumb:hover {
        background-color: var(--color-secondary);
    }
}

/* Hide the native checkbox */
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Create the custom checkbox */
.custom-checkbox span {
    display: inline-block;
    font-size: 12px;
    width: 20px; /* Set the width of the checkbox */
    height: 20px; /* Set the height of the checkbox */
    border: 1px solid #ffc3c7;
    border-radius: 4px; /* Add rounded corners */
    position: relative;
    background-color: #fff4f5;
    vertical-align: middle;
    margin-right: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Add a checkmark for checked state */
.custom-checkbox input[type="checkbox"]:checked + span {
    background-color: var(--color-primary);
    border: none;
}

.custom-checkbox input[type="checkbox"]:checked + span::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 4px 0px;
    background-color: #000;
    font-size: 15px;
    color: var(--color-grey);
    min-height: 38px;
    margin-bottom: 80px;
    .container {
        flex-direction: row;
    }
    #phone {
        display: flex;
        align-items: center;
    }
    #phone,
    #email {
        a {
            margin-left: 10px;
        }
    }
}
.topbar .dot {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #7e7e7e;
    display: inline-flex;
}
.topbar a {
    color: var(--color-grey);
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 400;
}
.topbar a:hover {
    color: var(--color-primary);
}

.main_header {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 110px;
    background-color: #ecf0ef;
    img {
        max-height: 110px;
        transition: all 0.3s ease;
    }
    //transition: all 0.3s ease;
}

.header-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.action-menu {
    padding: 15px 0px 0px 32px;
    display: block;
}

.action-menu ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 15px;
}

.action-menu .login-btn {
    color: var(--color-body);
}

.login-btn .login-icon {
    width: 40px;
    height: 40px;
    display: flex;
    color: var(--color-body);
    position: relative;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1.2px solid #4d4d4d;
}

.login-btn .login-icon::after {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    transform: scale(0);
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    background-color: var(--color-primary);
}

.login-btn:hover .login-icon::after {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    color: white;
}
.login-btn:hover .login-icon {
    color: white;
}

.page_header {
    position: absolute;
    z-index: 100;
    position: fixed;
    top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: white;
    height: 80px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px 0px;
    img {
        max-height: 80px;
    }
    #navigation-section {
        margin-top: 26px;
        display: flex;
        gap: 24px;
    }
    .action-menu {
        margin-top: 5px;
    }
}

.header_sticky {
    position: absolute;
    z-index: 100;
    position: fixed;
    background-color: white;
    height: 80px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px 0px;
    img {
        max-height: 80px;
    }
    #navigation-section {
        margin-top: 26px;
        display: flex;
        gap: 24px;
    }
    .action-menu {
        margin-top: 5px;
    }
    //transition: all 0.3s ease;
}

.main_header,
.page_header {
    #navigation-section {
        margin-top: 26px;
        display: flex;
        gap: 24px;
        a {
            white-space: nowrap;
        }
    }
}

//.header-wrapper #navigation-section{margin-top: 20px; display: flex; gap: 24px;}

.header_sticky #navigation-section {
    margin-top: 0px;
}
.header_sticky .action-menu {
    padding-top: 0px;
}

.header_sticky .header-wrapper {
    align-items: center;
}
.drawer-overlay {
    display: none;
}

// .page_header{
// 	position: relative;
// }

main {
    background-color: var(--color-page);
}
.page {
    display: flex;
    justify-content: center;
    background-color: var(--color-page);
}
// .top-banner-cont{margin-top: 80px}
.top-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
    background-image: url("../../images/banner/banner-listing.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-heading {
    font-size: 42px;
    text-align: center;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 20px;
}

.widget {
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 25px;
    background-color: white;

    .widget-title {
        position: relative;
        display: flex;
        justify-content: space-between;
        font-size: 20px;
        line-height: 26px;
        font-weight: 600;
        margin-bottom: 35px;
        &::before {
            content: "";
            width: 100%;
            height: 2px;
            background-color: var(--color-page);
            left: 0;
            bottom: -10;
            position: absolute;
            z-index: 1;
            display: inline-block;
        }
        &::after {
            content: "";
            width: 45px;
            height: 2px;
            background-color: var(--color-primary);
            left: 0;
            bottom: -10;
            position: absolute;
            z-index: 1;
            display: inline-block;
        }
    }

    .widget-cat {
        position: relative;
        font-size: 16px;
        padding: 5px 0px;
    }
    .widget-sub-heading {
        font-size: 18px;
        color: var(--color-heading);
        font-weight: 500;
        padding: 15px 0px;
    }
}

.left-nav {
    display: grid;
    grid-gap: 10px;
    align-content: flex-start;

    .nav-item a {
        min-height: 43px;
        padding: 2px 15px;
        display: flex;
        align-items: center;
        color: var(--secondary-color);
        border-radius: 5px;
    }
    .nav-item a:hover,
    .nav-item a:focus,
    .nav-item a.active {
        background: #ebf1de;
    }
}
.left-nav-fixed .navbar {
    position: fixed;
    top: 40px;
}

.reviews {
    .avatar img {
        width: 45px;
        height: 45px;
    }
    .fa-star {
        font-size: 11px;
        background-color: #f9d849;
        padding: 4px;
        color: white;
        border-radius: 3px;
    }
    .fa-star[disabled] {
        background-color: #cccccc;
    }
    .rating-value {
        margin-left: 10px;
        font-size: 12px;
    }

    .reviews-item {
        margin-bottom: 40px;
    }

    .name {
        margin-top: 20px;
    }
    .detail {
        .reviewed {
            color: #999999;
            font-size: 14px;
        }

        .review_name {
            color: var(--color-primary);
        }

        .review {
            font-size: 18px;
            color: var(--color-heading);
            line-height: 18px;
            margin-bottom: 20px;
        }

        p {
            // white-space: nowrap;
            // overflow: hidden;
            // text-overflow: ellipsis;
            margin-bottom: 30px;
        }
    }
}

#categoriesModal {
    ul li {
        cursor: pointer;
    }
}
