:root {
    --heading-color: 223 100% 17%;
}

.cat_headings {
    font-size: 1.25rem;
    font-weight: 500;
}

.title_headings {
    font-size: 1rem;
    font-weight: 500;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-primary {
    background-color: #000 !important;
    border: none;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.1;
}

.product-desc img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.blog-details img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.btn-danger {
    color: #fff !important;
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.support-btn {
    height: 39px;
}

.support-input-group {
    margin-top: 15px;
}

.error {
    color: #dc3545;
}

.input-group label.error {
    top: 100%;
    position: absolute;
}

.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: #ff7000;
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}

.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1e2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all 0.5s;
    background: #d1d1d1;
    border-radius: 5px;
}

.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: "";
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}

.show-filter {
    display: none;
}

.maintenance-page {
    min-height: 100vh;
}

.btn-outline--base {
    background-color: hsl(var(--base)) !important;
    border: 1px solid hsl(var(--base)) !important;
    color: #f9ff0b !important;
}

.btn-outline--base:hover {
    background-color: hsl(var(--base)) !important;
    color: #fff !important;
}

.btn--sm {
    padding: 8px 10px;
    font-size: 0.875rem;
}

.catalog-item-wrapper {
    position: relative;
    margin-bottom: 35px;
}
.category_block {
    background: #ebf3fe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}
.category_header {
    background: hsl(var(--primary));
    border-bottom: 1px solid #e0e0e0;
    padding: 0.9375rem 1.5625rem;
}

.category_header_title {
    color: #fff;
    margin: 0;
}

.category_header_title a {
    color: #fff;
    text-decoration: none;
}

.category_body {
    padding: 5px;
}

.catalog-item-wrapper__header .title {
    color: var(--black);
}

.catalog-item {
    position: relative;
    background: hsl(var(--white));
    padding: 0.25rem;
    border-radius: 8px;
    margin-bottom: 5px;
    border: 1px solid #e0e0e0;
    display: flex;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.catalog-item-header {
    display: flex;
}

.catalog-item:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1.002);
}

.catalog-item__thumb {
    display: inline-block;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #f8f8fa;
}

.catalog-item__thumb img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-item__content {
    width: calc(100% - 20px);
    padding-left: 16px;
}

.catalog-item__title {
    font-size: 1rem;
    margin-bottom: 2px;
    color: hsl(var(--heading-color));
    text-decoration: none;
}

.catalog-item__title a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: bold;
}

.catalog-item__info {
    flex-wrap: wrap;
    gap: 16px;
}

.catalog-item__instock {
    font-size: 0.8125rem;
}

.catalog-item__instock .pcs {
    color: hsl(var(--heading-color));
    font-weight: 600;
}

.catalog-item__price {
    font-size: 0.8125rem;
}

.catalog-item__price .amount {
    color: hsl(var(--heading-color));
    font-weight: 600;
}

.catalog-item .btn {
    margin-left: auto;
}

.custom--card {
    border-radius: 5px;
    background-color: #fff;
    border: transparent;
}

.custom--card .card-body {
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.flex-align,
.contact-info,
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blog-details__share {
    position: relative;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    gap: 0px;
}

.blog-details__share .social-list__link {
    width: 30px;
    height: 30px;
    color: hsl(var(--heading-color));
    text-decoration: none;
}

.flex-center,
.account-form__content .btn,
.blog-details__share .social-list__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

/* switch btn */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: hsl(247 97% 26%);
}

input:focus + .slider {
    box-shadow: 0 0 1px hsl(247 97% 26%);
}

input:checked + .slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* profile photo */

.profile_photo {
    height: 160px;
    border-radius: 50%;
    object-fit: fill;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.profile_photo img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.messageBtn.primary-menu__link {
    padding: 6px 4px !important;
    border-radius: 4px;
}

.messageBtn.primary-menu__link::after {
    display: none !important;
}

.primary-menu__sub.messageBox {
    min-width: 320px !important;
    max-height: 320px;
    overflow-y: auto;
}

.messageBox .messageBox__link {
    padding: 6px;
    border-radius: 5px;
    display: block;
    background: transparent;
    margin-bottom: 6px;
    font-size: 14px;
    text-decoration: none;
    color: #1e2337;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.messageBox .messageBox__link:hover {
    background: #f4f4f5;
}

/* message */
.message-section {
    display: flex;
    width: 100%;
    height: 80vh;
    border: 1px solid #f1f5f9;
}

.message-section .user-part {
    width: 240px;
    height: 100%;
    border-right: 1px solid #d1d5db;
}

.message-section .user-part .headerUser {
    width: 100%;
    border-bottom: 1px solid #d1d5db;
    padding: 12px;
    font-size: 28px;
    height: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user_list ul {
    list-style: none;
}

.message-section .user-part .user_list {
    height: calc(100% - 65px);
    overflow: hidden;
    overflow-y: auto;
    padding: 12px;
}

/* width */
.message-section .user-part .user_list::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.message-section .user-part .user_list::-webkit-scrollbar-track {
    background: #d1d5db;
}

/* Handle */
.message-section .user-part .user_list::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 10px;
}

/* Handle on hover */
.message-section .user-part .user_list::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

.message-section .user-part .user_list .user_list_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid #d1d5db;
}

.message-section .user-part .user_list .user_list_item:hover,
.message-section .user-part .user_list .user_list_item.active {
    background: #f4f4f5;
}

.user-part .user_list .user_list_item .user_profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.user-part .user_list .user_list_item .user_profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user_profile .status {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.user_profile .status.online {
    background: #28c76f;
}

.user_profile .status.offline {
    background: #ffba5a;
}

.user-part .user_list .user_list_item .message {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-part .user_list .user_list_item .message .date {
    font-size: 14px;
    margin: 0;
    text-align: right;
    color: #a1a1aa;
}

.user-part .user_list .user_list_item .message .last_message {
    white-space: nowrap;
    font-size: 14px;
    margin: 0;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
}

.message-section .message-part {
    flex-grow: 1;
    overflow: hidden;
}

.message-part .message-header {
    width: 100%;
    border-bottom: 1px solid #d1d5db;
    padding: 12px;
    font-size: 28px;
    height: 65px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.message-part .message-header .user-info {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    overflow: hidden;
}

.message-part .message-header .photo,
.message-conversation .convertion .message-item .photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.message-part .message-header .photo img,
.message-conversation .convertion .message-item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: baseline;
}

.message-part .message-header .info,
.message-conversation .convertion .message-item .info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.message-part .message-header .info .name,
.message-conversation .convertion .message-item .info .name {
    white-space: nowrap;
    margin: 0;
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.message-part .message-header .info .time {
    white-space: nowrap;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #6b7280;
    text-overflow: ellipsis;
    overflow: hidden;
}

.message-part .empty-message {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
}

.message-part .empty-message .icon {
    font-size: 52px;
    color: #d1d5db;
}

.message-part .empty-message .text {
    font-size: 20px;
    color: #000;
}

.message-part .empty-message .short-text {
    font-size: 14px;
    color: #000;
}

.message-part .message-conversation {
    display: flex;
    flex-direction: column;
    height: calc(100% - 65px);
}

.message-part .message-conversation .convertion {
    flex-grow: 1;
    height: calc(100% - 65px);
    padding: 12px;
    overflow-y: auto;
}

.message-conversation .convertion .message-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
    max-width: 80%;
}

.message-conversation .convertion .message-item .info .name {
    font-size: 14px !important;
    font-weight: 500;
}

.message-conversation .convertion .message-item .info .message {
    color: #000;
    margin: 0;
}

.message-conversation .send-message {
    padding: 12px;
    background: #f3f4f6;
}

.message-conversation .send-message .inputMessage {
    border-radius: 25px;
    padding-right: 60px;
}

.message-conversation .send-message .sendBtn {
    width: 40px;
    height: 40px;
    right: 4px;
    border-radius: 50%;
    font-size: 18px;
}

.empty-message-item {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.empty-message-item .photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.empty-message-item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: baseline;
}

.empty-message-item .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.empty-message-item .info .text-muted {
    line-height: 10px;
    font-size: 12px;
    letter-spacing: 1px;
}

.empty-message-item .info .name,
.empty-message-item .info .userName {
    line-height: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.headerMessageBtn {
    font-size: 16px;
    color: #000;
    padding: 2px 5px;
    border: none;
    background: transparent;
}

.headerMessageBtn::after,
.headerMessageBtn::before {
    display: none;
}

.dropdown .dropdown-menu.messageBox {
    width: 262px;
    min-height: 180px;
    overflow-y: auto;
    max-height: 260px;
    padding-top: 0 !important;
    padding-bottom: 24px !important;
}

.dropdown .dropdown-menu.messageBox .messageBox__link {
    border-radius: 0;
    margin-bottom: 0;
    font-size: 12px;
    border-bottom: 1px solid #d1d5db40;
}

.ads_content {
    object-fit: contain !important;
    overflow: hidden !important;
    text-align: center;
}

.topProduct {
    position: relative;
    border: 2px solid transparent;
    background: #f8f9fa;
    z-index: 1;
}

.topProduct::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        red,
        orange,
        green,
        indigo,
        blue,
        violet
    );
    background-size: 200% 100%;
    animation: borderMove 6s ease-in-out infinite;
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderMove {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.messageBox .messageBox__text {
    font-size: 14px;
    color: #1e2337;
    line-height: 1;
}

.messageBox .viewAllNotification {
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 2px;
}

.product-top-category {
    padding: 0.0625rem 0.325rem;
    background-color: #ffb88021;
    border: 1px solid #e0e0e0;
    color: #565656;
    font-size: 0.75rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: inline-block;
}
.product_details {
    display: flex;
    gap: 12px;
}

.product_details .user_profile {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.product_details .user_profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.product_details .user_name {
    margin: 0;
    line-height: normal;
}

.product_details .user_name a {
    font-size: 1.125rem;
    color: #373e4a;
    font-weight: 600;
}
.product_details .profile-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: #565656;
}
.product_details .profile-info .icon {
    font-size: 13px;
    color: #565656;
}
.facebook {
    background: #3b5998 !important;
    color: #fff !important;
}
.whatsapp {
    background: #25d366 !important;
    color: #fff !important;
}
.twitter {
    background: #1da1f2;
    color: #fff;
}
.instagram {
    background: #c13584;
    color: #fff;
}
.favorite {
    color: #ff0000 !important;
}
.hasFavorite {
    background: #ff0000;
    color: #fff !important;
}

@media (max-width: 768px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }

    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }

    .userProfile {
        min-width: 200px;
        max-width: max-content !important;
        margin: auto;
    }

    .userProfile .title {
        max-width: 480px;
    }
}

@media (max-width: 575px) {
    .catalog-item {
        padding: 5px;
        border-radius: 6px;
    }

    .catalog-item__thumb {
        width: 44px;
        height: 44px;
    }

    .catalog-item__content {
        width: 100%;
        padding-left: 8px;
    }

    .catalog-item__title {
        font-size: 14px;
    }

    .message-section .user-part {
        width: 75px;
    }

    .message-section .user-part .user_list {
        padding: 0;
    }

    .user-part .user_list .user_list_item .message {
        display: none;
    }

    .message-section .user-part .user_list .user_list_item {
        padding: 12px;
    }

    .message-conversation .convertion .message-item {
        max-width: 100%;
    }
}


@media screen and (max-width: 424px) {
    p{
        line-height: normal;
    }
    .catalog-item__info {
        gap: 10px;
    }
    .catalog-item .btn {
        margin-left: auto;
        width: auto;
    }
}

@media screen and (max-width: 374px) {
    .catalog-item__thumb {
        margin-bottom: 10px;
    }
}
