/* fonts */
@font-face {
    font-family: "poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "poppins_bold";
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* fonts */
@font-face {
    font-family: "droid";
    src: url("../fonts/DroidKufi-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "droid_bold";
    src: url("../fonts/DroidKufi-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --mainColor: #039046;
    --subColor: #cf1400;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "poppins";
}
a:hover {
    text-decoration: none;
}

/* start nav */
header nav {
    padding: 0.5rem 0;
}
.nav-item {
    width: 30%;
}
.nav-middle {
    width: 40%;
}
.nav-header .toggle-btn {
    font-size: 24px;
    color: var(--mainColor);
    cursor: pointer;
}
.nav-header .nav-brand img {
    width: 225px;
}
.nav-header ul.links {
    margin-bottom: 0;
    text-align: right;
}
.nav-header ul.links li {
    padding: 0 0.75rem;
    display: inline-block;
    border-right: 2px solid var(--mainColor);
}
.nav-header .lang_btn {
    font-size: 22px;
    font-weight: bold;
    color: var(--mainColor);
}
.lang_btn {
    font-family: "droid_bold";
}
.nav-header ul.links li:last-of-type {
    border-right: 0;
}
.nav-header li a.mobile-cart {
    position: relative;
}
.nav-header li a.mobile-cart .count {
    width: 22px;
    height: 22px;
    color: #fff;
    background-color: var(--mainColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -12px;
    right: -4px;
    z-index: 1;
}
.nav-header ul.links li a.active,
.nav-header ul.links li a:hover {
    color: var(--mainColor);
}
.nav-header ul.links .login_btn {
    color: #fff;
    display: block;
    font-weight: bold;
    font-size: 16px;
    border-radius: 20px;
    padding: 2.5px 15px;
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
}
.nav-header ul.links .login_btn:hover {
    background-color: #fff;
}
.nav-header .lists .list_dropdown {
    position: relative;
    color: var(--mainColor);
    cursor: pointer;
}
.nav-header .lists .list_dropdown .account_dropdown {
    position: absolute;
    top: 30px;
    right: 0;
    margin: 0;
    padding: 15px 30px;
    font-size: 16px;
    text-transform: capitalize;
    z-index: 1001;
    background: #fff;
    line-height: 28px;
    border: 1px solid hsla(0, 0%, 64%, 0.1);
    text-align: left;
    box-shadow: 0 5px 15px 5px hsl(0deg 0% 56% / 15%);
    white-space: nowrap;
    max-width: 300px;
    overflow: auto;
    display: none;
}
.nav-header .lists .list_dropdown .account_dropdown li {
    display: block;
    margin-right: 0;
    border-bottom: 1px solid #f5f5f5;
}
.nav-header .lists .list_dropdown .account_dropdown li:last-of-type {
    border-bottom: 0;
}
.nav-header .lists .list_dropdown .account_dropdown li a {
    color: #878787;
    padding: 1.5px 25px 1.5px 0px;
    font-size: 12px;
    display: block;
}
.nav-header .lists .list_dropdown .account_dropdown li a:hover {
    color: var(--subColor);
    top: 0;
}
.nav-header .cart-info {
    text-align: right;
}
.nav-header .lists {
    margin-bottom: 0;
    text-align: right;
    display: inline-block;
}
.nav-header .lists li {
    display: inline-block;
    margin-right: 20px;
}
.nav-header .lists li:last-child {
    margin-right: 0;
}
.nav-header .lists li.cart_count,
.nav-header .lists li.wishlist {
    position: relative;
}
.nav-header .lists li.cart_count .count,
.nav-header .lists li.wishlist .count {
    position: absolute;
    top: -10px;
    right: -15px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    display: inline-block;
    color: #fff;
    text-align: center;
    background: var(--subColor);
    border-radius: 50%;
    font-size: 10px;
}
.nav-header .lists a {
    position: relative;
    font-size: 20px;
    color: var(--mainColor);
    transition: all 0.25s ease-in-out;
    top: 0;
}
.nav-header .lists a:hover {
    top: -5px;
    color: var(--subColor);
}
/* new header code */
header {
    background-color: #fff;
}
header .social li {
    display: inline-block;
    padding: 0 0.25rem;
}
header .links_menu {
    margin-bottom: 0;
    text-align: center;
    padding: 0.75rem 0;
    background-color: var(--mainColor);
}
header .links_menu li {
    display: inline-block;
}
header .links_menu li a {
    color: #fff;
    display: block;
    padding: 0 15px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-right: 1px solid #fff;
}
header .links_menu li:last-of-type a {
    border-right: none;
}

.body-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: none;
}
.nav-search-mobile button i {
    color: #fff !important;
}
@media (min-width: 992px) {
    .mobile-menu-info {
        display: none;
    }
}
.cart-info .cart {
    cursor: pointer;
}
.mobile-menu-cart {
    position: fixed;
    top: 0;
    right: -360px;
    width: 360px;
    background-color: #fff;
    padding: 20px;
    height: 100%;
    z-index: 999;
}
.mobile-menu-cart .header {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 15px;
}
.mobile-menu-cart h3 {
    font-size: 20px;
    margin-bottom: 0;
}
.mobile-menu-cart .header .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #222;
    font-size: 13px;
    height: 30px;
    width: 30px;
    background-color: #ededed;
    text-align: center;
    border-radius: 100%;
    padding: 5px;
    cursor: pointer;
}

/* footer */
footer {
    background-color: #f5f5f5;
}
footer .logo {
    width: 175px;
}
footer .top_footer {
    padding: 2rem 0 1rem;
    border-bottom: 1px solid #ababab;
}
footer h3 {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
}
footer ul {
    margin-bottom: 0;
}
footer ul li {
    display: inline-block;
}
footer .top_footer ul.links {
    text-align: right;
}
footer .top_footer ul.links li a {
    display: block;
    font-size: 14px;
    padding: 0 1rem;
    font-weight: bold;
    width: max-content;
    text-transform: uppercase;
    color: #13261c !important;
    border-right: 2px solid #000;
}
footer ul.links li:last-of-type a {
    border-right: 0;
}
footer ul.social li {
    display: inline-block;
    margin-right: 0.5rem;
}

/* copyright */
.copyright {
    padding: 2rem 0;
}
.copyright p {
    font-size: 14px;
    color: #65736c;
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: capitalize;
}
.copyright ul.terms_links li a {
    font-size: 14px;
    color: #65736c;
    padding: 0 0.5rem;
    text-transform: capitalize;
    border-right: 1px solid #65736c;
}
.copyright ul.terms_links li:last-of-type a {
    border-right: none;
}

.navbar .nav-item.dropdown .dropdown-menu.dropdown-menu-left {
    padding: 0px;
    margin: 0px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: none;
    background-color: #fdfdfd;
    box-shadow: 0 13px 16px 1px rgba(0, 0, 0, 0.11);
    transition: all 0.4s ease;
    transform: rotateX(90deg);
    transform-origin: 0 0;
    display: block !important;
}
.navbar .nav-item.dropdown:hover .dropdown-menu.dropdown-menu-left {
    opacity: 1;
    visibility: visible;
    transition-delay: 200ms;
    transform: rotateX(0deg);
}
.navbar .nav-item .dropdown-menu.dropdown-menu-left li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: normal;
    background-color: #fdfdfd;
    border-bottom: 1px solid #f0f0f0 !important;
    color: #828282;
}
.navbar .nav-item .dropdown-menu.dropdown-menu-left li a:hover {
    background-color: #f8f9fa;
    color: #000;
}
.navbar .nav-item .dropdown-menu.dropdown-menu-left li:last-child a {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: 0 !important;
}
.mobile-menu-info .nav-item.dropdown .dropdown-menu {
    all: unset;
    width: 100%;
}
.mobile-menu-info .nav-item.dropdown .dropdown-menu li {
    margin-left: 30px;
}
.mobile-menu-info .nav-item.dropdown .dropdown-menu li a {
    all: unset;
    padding-left: 37px;
    display: block;
    padding: 10px;
    color: #fff;
    cursor: pointer;
}

/* registration */
#registration {
    height: 100vh;
}
#registration .login_container,
#registration .login_container .row {
    height: 100%;
}
#reg_nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 1rem 0;
}
#reg_nav .logo img {
    width: 150px;
}
#reg_nav .langs a {
    font-size: 18px;
    color: #13261c;
}
.login_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.login_container .first_col {
    padding-top: 10rem !important;
    background-image: url(../img/reg_back.png);
}
.login_container .first_col h3 {
    font-style: italic;
    font-size: 28px;
    font-weight: bold;
    padding: 0 10px;
}
.login_container .first_col h4 {
    font-size: 26px;
    padding: 0 10px;
}
.login_container .first_col img {
    width: 100%;
}
.login_container input,
.login_container select {
    height: 48px !important;
    font-size: 14px;
    border-radius: 0;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e4ede8;
}
.login_container input[type="checkbox"] {
    height: auto !important;
}
.login_container #register input,
.login_container #register select {
    border-radius: 0;
}
.login_container #register input[type="submit"] {
    border-radius: 170px;
}
.login_container input::placeholder {
    color: #99a39e;
}
.login_container input[type="checkbox"] {
    height: auto;
}
.login_container input[type="submit"] {
    background-color: var(--mainColor);
    border-radius: 8px;
    border: none;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    height: 52px;
}
.login_container .login_tabs a {
    color: var(--mainColor);
}
.login_container .login_tabs p {
    font-size: 14px;
}
.login_container .login_tabs {
    width: 450px;
    margin: 0 auto;
}
.login_container .login_tabs .details {
    display: none;
}
.login_container .login_tabs .details.active {
    display: block;
}
.login_container .login_tabs .tabs {
    text-align: center;
    margin-bottom: 2rem;
}
.login_container .login_tabs .tabs li {
    display: inline-block;
    margin: 0 2rem;
    font-size: 22px;
    cursor: pointer;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fff;
}
.login_container .login_tabs .tabs li:hover,
.login_container .login_tabs .tabs li.active {
    font-weight: bold;
    color: var(--mainColor);
    border-bottom: 2px solid #039046;
}
.login_container .sec_col {
    display: flex;
    align-items: center;
}
.reset_page h3 {
    color: #13261c;
    font-weight: bold;
    text-align: center;
    font-size: 28px;
}
.reset_page p {
    color: #65736c;
    margin-top: 6px;
    margin-bottom: 0;
    text-align: center;
}
.reset_page form {
    margin-top: 1.5rem;
}

/* profile */
#profile {
    position: relative;
    height: 100vh;
}
#profile > .row {
    height: 100%;
}
#profile #sidebar {
    border-right: 1px solid #e4ede8;
    background-color: #fafaf5;
    height: 100%;
    width: 230px;
    position: fixed;
    top: 0;
    left: 0;
}
#profile #sidebar .logo img {
    width: 125px;
    padding: 1rem;
}
#profile #sidebar .links li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #13261c;
    padding: 0.8rem 1.25rem;
}
#profile #sidebar .links.settings {
    position: absolute;
    width: 100%;
    bottom: 0;
}
#profile #sidebar .links.settings li a {
    border-top: 1px solid #e4ede8;
    justify-content: space-between;
}
#profile #sidebar .links li a img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}
#profile #sidebar .links li a.active {
    color: var(--mainColor);
    background-color: #fff;
    font-weight: bold;
    border-right: 4px solid var(--mainColor);
}
#profile #sidebar .links li.disabled a {
    cursor: not-allowed;
    opacity: 0.5;
}
#profile #sidebar .links.settings li .open_acc_menu {
    cursor: pointer;
}
#profile #sidebar .links.settings li .acc_menu {
    display: none;
    background-color: #fff;
}
#profile #sidebar .links.settings li .acc_menu li a {
    border-top: 0;
    font-size: 15px;
    color: #13261c;
    justify-content: unset;
}
#profile .content-wrap {
    margin-left: 230px;
    width: calc(100% - 230px);
    position: relative;
    padding: 2rem;
    height: 100vh;
}
#profile .content-wrap .top_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#profile .content-wrap .top_content h3 {
    color: #13261c;
    font-size: 30px;
    font-weight: bold;
}
#profile .content-wrap .top_content p {
    color: #65736c;
    margin-bottom: 0;
}
#profile .content-wrap .top_content a {
    border-radius: 8px;
    padding: 14px 24px 13px;
    display: block;
    color: #fff;
    font-size: 14px;
    width: max-content;
    background-color: var(--mainColor);
}

/* requests */
#profile .inner_top_page .edit_btn,
#profile .back_btn {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    color: #13261c;
    align-items: center;
    margin-bottom: 2rem;
}
#profile .inner_top_page {
    display: flex;
    justify-content: space-between;
}
#profile .inner_top_page .edit_btn img,
#profile .back_btn img {
    margin-right: 0.5rem;
}
#profile .create_details {
    width: 725px;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid #e4ede8;
}
#profile .create_details input,
#profile .create_details textarea {
    height: 48px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #e4ede8;
}
#profile .create_details input::placeholder {
    color: #99a39e;
}
#profile .create_details textarea {
    height: 150px;
}
#profile .create_details label {
    color: #13261c;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0.75rem;
}
#profile .create_details label span {
    color: #99a39e;
    font-weight: normal;
}
#profile .address_container .payment_btn,
#profile .create_details input[type="submit"] {
    width: 100%;
    height: 52px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    background-color: var(--mainColor);
}
#profile .address_container .payment_btn {
    margin-top: 1.5rem;
}
#profile .profile_tabs {
    margin-bottom: 1.75rem;
}
#profile .profile_tabs li {
    font-size: 22px;
    color: #13261c;
    cursor: pointer;
    display: inline-block;
    padding: 0 0.5rem 0.5rem;
    border-bottom: 2px solid #fff;
}
#profile .profile_tabs li:hover,
#profile .profile_tabs li.active {
    font-weight: bold;
    color: var(--mainColor);
    border-bottom: 2px solid var(--mainColor);
}
#profile .profile_tabs li:first-of-type {
    margin-right: 2rem;
}
#profile .shipments_container h4 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 1rem;
    color: #13261c;
}
#profile .details {
    display: none;
}
#profile .details.active {
    display: block;
}
/* custom input */
#profile .create_details .img_box {
    height: 140px;
    overflow: hidden;
    border-radius: 12px;
}
#profile .create_details .img_box img {
    width: 100%;
}
#profile .custom_input {
    position: relative;
    width: 200px;
    height: 140px;
}
#profile .custom_input input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}
#profile .custom_input .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #f9fcfa;
    border-radius: 12px;
    border: 1px dashed #d5e0da;
    cursor: pointer;
}
#profile .custom_input .overlay p {
    font-size: 14px;
    color: #1c3327;
    margin-top: 0.6rem;
    margin-bottom: 0;
}
#profile .custom_input .overlay p span {
    color: var(--mainColor);
}
#profile .shipment_list li {
    width: 90px;
    height: 33px;
    font-size: 14px;
    color: #65736c;
    line-height: 30px;
    text-align: center;
    border-radius: 22px;
    display: inline-block;
    border: 1px solid #65736c;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
#profile .shipment_list li:first-of-type {
    margin-right: 1rem;
}
#profile .shipment_list li:hover,
#profile .shipment_list li.active {
    color: #fff;
    background-color: var(--mainColor);
}

/* requests details */
#profile .order_details,
#profile .details_info {
    position: relative;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e4ede8;
    margin-bottom: 1rem;
    overflow: hidden;
}
#profile .details_info .img_box {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 1px solid #f6f6f6;
    overflow: hidden;
}
#profile .details_info .img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#profile .details_info .main_box {
    width: 70%;
}
#profile .details_info .main_box .title {
    font-size: 18px;
    color: #13261c;
    font-weight: bold;
}
#profile .details_info .main_box .description {
    font-size: 14px;
    color: #13261c;
    margin-top: 0.5rem;
}
#profile .details_info .main_box .date {
    color: #65736c;
    font-size: 14px;
    display: block;
}
#profile .details_info .main_box .link {
    font-size: 14px;
    color: var(--mainColor);
    display: block;
    margin: 0.25rem 0 0.75rem;
    word-break: break-all;
}
#profile .details_info .main_box .icon img {
    top: 2px;
    float: left;
    position: relative;
    margin-right: 0.5rem;
}
#profile .details_info .main_box .icon span {
    display: block;
    color: #13261c;
    font-size: 14px;
}
#profile .details_info .main_box .icon h5 {
    font-weight: bold;
    font-size: 14px;
}
#profile .details_info .inner_note {
    border-top: 1px solid #e4ede8;
    margin-top: 1rem;
    padding-top: 1rem;
}
#profile .details_info .inner_note h6 {
    font-size: 14px;
    color: #65736c;
    margin-bottom: 0.25rem;
}
#profile .details_info .btns {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    justify-content: space-between;
    margin-top: 2rem;
}
#profile .details_info .btns .details_btn {
    display: flex;
    align-items: center;
    color: var(--mainColor);
}
#profile .details_info .btns .details_btn img {
    margin-left: 0.5rem;
}
#profile .details_info .btns .edit_btn {
    color: #13261c;
    margin-right: 1rem;
}
#profile .details_info .btns .edit_btn img {
    margin-right: 0.5rem;
}
#profile .details_info .btns .delete_btn {
    background: none;
    border: none;
    cursor: pointer;
}
#profile .details_info .btns .delete_btn:focus {
    outline: none;
}
#profile .details_info .btns .left_box {
    display: flex;
    align-items: center;
}
#profile .details_info .btns .go_cart {
    height: 48px;
    width: max-content;
    display: inline-block;
    color: #fff;
    background-color: var(--mainColor);
    border-radius: 8px;
    line-height: 16px;
    padding: 1rem;
    font-size: 14px;
    margin-right: 1.5rem;
    border: none;
    cursor: pointer;
}
#profile .details_info .status span {
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    width: 90px;
    height: 27px;
    display: block;
    text-align: center;
    line-height: 27px;
    margin-bottom: 0.75rem;
}
#profile .details_info .status span.accepted {
    background-color: #78d0a2;
}
#profile .details_info .status span.pending {
    background-color: #ffce00;
}
#profile .profile_container .profile_tabs {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
}
#profile .profile_container .profile_tabs li:first-of-type {
    margin-right: 1.25rem;
}
#profile .cart_container {
    margin-top: 2rem;
}
#profile .cart_container h6 {
    font-size: 18px;
    color: #13261c;
    margin-bottom: 1rem;
}
#profile .cart_container .price {
    background: #f2f7f4;
    color: #13261c;
    font-size: 14px;
    width: max-content;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    margin-right: 0.75rem;
}
#profile .cart_container .price .value {
    font-weight: bold;
}
#profile .profile_container .summary_card {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e4ede8;
}
#profile .profile_container .summary_card h4 {
    color: #13261c;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1rem;
}
#profile .profile_container .summary_card p {
    font-size: 14px;
    color: #13261c;
}
#profile .profile_container .summary_card p span {
    float: right;
}
#profile .profile_container .summary_card p.total {
    border-top: 1px solid #e4ede8;
    padding-top: 0.85rem;
}
#profile .profile_container .summary_card p.total span {
    font-weight: bold;
}
#profile .profile_container .summary_card a {
    color: #fff;
    border-radius: 8px;
    display: block;
    padding: 14px 24px 13px 24px;
    background-color: var(--mainColor);
    text-align: center;
    font-weight: bold;
}
#profile .profile_container .summary_card .requests_total,
#profile .profile_container .summary_card .requests_ship_total,
#profile .profile_container .summary_card .shipments_total,
#profile .profile_container .summary_card .products_total,
#profile .profile_container .summary_card .commission {
    float: left;
    margin-right: 0.35rem;
}
#profile .cart_container .create_details {
    width: 100%;
}
#profile .cart_container .create_details .profile_tabs {
    margin-top: 0;
}
#profile .cart_container .create_details .bank_details {
    margin-bottom: 1rem;
}
#profile .cart_container .create_details span {
    color: #65736c;
}
#profile .cart_container .create_details p {
    color: #13261c;
    font-size: 14px;
}
#profile .user_deleting_modal h3 {
    font-size: 22px;
    color: #13261c;
    font-weight: bold;
}
#profile .user_deleting_modal p {
    color: #65736c;
    font-size: 18px;
    font-weight: normal;
}
#profile .user_deleting_modal .delete {
    background-color: #ee1c25;
    font-size: 14px;
    border: none;
    height: 45px;
    width: 107px;
    border-radius: 8px;
    font-weight: 600;
}
#profile .user_deleting_modal .cancel {
    color: #13261c;
    background: none;
    border: none;
    font-size: 14px;
    height: 45px;
    width: 107px;
    font-weight: 600;
}
#profile .user_deleting_modal .modal-footer {
    border-top: none;
}
#profile .user_deleting_modal .modal-content {
    border-radius: 12px;
    padding: 0.5rem;
}
#profile .empty_state {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
#profile .empty_state img {
    margin-bottom: 1.5rem;
}
#profile .empty_state h3 {
    color: #13261c;
    font-size: 28px;
    font-weight: bold;
}
#profile .empty_state p {
    font-size: 16px;
    color: #65736c;
    margin: 0 auto 1.5rem;
}
#profile .empty_state a {
    border-radius: 8px;
    padding: 14px 24px 13px;
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 14px;
    width: max-content;
    background-color: var(--mainColor);
}
#profile .empty_state .links li {
    display: inline-block;
}
#profile .empty_state .links li a {
    background: none;
    color: #039046;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0;
    padding: 10px 20px;
    border-right: 1px solid #e4ede8;
}
#profile .empty_state .links li:last-of-type a {
    border-right: 0;
}
#profile .empty_state .links li a img {
    margin-bottom: 0;
    margin-right: 0.5rem;
}
#profile .empty_state.order {
    margin-bottom: 2rem;
}
#profile .empty_state.order h3 {
    font-size: 32px;
    margin-bottom: 0.75rem;
}
#profile .empty_state.order a {
    margin-top: 2rem;
    width: 70%;
}

/* order details */
#profile .order_details .head_details {
    display: flex;
    align-items: center;
}
#profile .order_details .head_details .status {
    color: #fff;
    border-radius: 30px;
    padding: 3px 12px;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 14px;
}
#profile .order_details .head_details .status.pending {
    background-color: #65736c;
}
#profile .order_details .head_details .status.accepted {
    background-color: var(--mainColor);
}
#profile .order_details .head_details .status.shipment {
    background-color: var(--subColor);
}
#profile .order_details .head_details .status.delivered {
    background-color: var(--mainColor);
}
#profile .order_details .head_details .tracking {
    color: #65736c;
    font-size: 14px;
}
#profile .order_details .order_num {
    color: #13261c;
    font-weight: bold;
    font-size: 18px;
    margin: 0.5rem 0;
}
#profile .order_details .date {
    font-size: 14px;
    color: #65736c;
}
#profile .order_details .price {
    background-color: #f2f7f4;
    border-radius: 8px;
    padding: 10px 12px;
    width: max-content;
    font-size: 14px;
    color: #13261c;
    margin: 0.5rem 0;
    position: absolute;
    top: 0.2rem;
    right: 0.65rem;
}
#profile .order_details .price .value {
    font-weight: bold;
}
#profile .order_details .details_btn {
    font-size: 14px;
    font-weight: bold;
    color: var(--mainColor);
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0.65rem;
    right: 0.65rem;
}
#profile .order_details .details_btn img {
    margin-left: 0.5rem;
}
#profile .single_order .address_card,
#profile .single_order .payment_card {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e4ede8;
    margin: 1rem 0;
}
#profile .single_order .address_card h4,
#profile .single_order .payment_card h4 {
    color: #13261c;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1rem;
}
#profile .single_order .address_card h5,
#profile .single_order .payment_card h5 {
    font-size: 14px;
    font-weight: bold;
    color: #13261c;
}
#profile .single_order .address_card p,
#profile .single_order .payment_card p {
    color: #13261c;
    font-size: 14px;
    margin-bottom: 0.5rem;
}
#profile .single_order .payment_card p span {
    float: right;
}
#profile .single_order .address_card span {
    font-size: 13px;
    color: #65736c;
}
/* order bill */
#order_bill .logo img {
    width: 175px;
    margin: 0 auto 1rem;
    display: block;
}
#order_bill .bill_content {
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 1rem;
}
#order_bill .bill_content .head {
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}
#order_bill .bill_content .head div,
#order_bill .bill_content .body div {
    width: 50%;
}
#order_bill .bill_content .head p {
    color: #000;
    margin-bottom: 0;
    font-weight: bold;
}
#order_bill .bill_content .body {
    padding: 1rem;
    display: flex;
}
#order_bill .bill_content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1rem;
    width: max-content;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #000;
}
#order_bill .bill_content .body p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
#order_bill .bill_content .body p span {
    float: right;
}
#order_bill .bill_content .table {
    width: 100%;
}
#order_bill .bill_content .table th {
    font-size: 14px;
    text-align: left;
    font-weight: bold;
    padding: 1rem;
    background-color: #f4f6f8;
    border-bottom: 1px solid #ccc;
}
#order_bill .bill_content .table td {
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
}
#order_bill .bill_content .table .title {
    display: flex;
    align-items: center;
}
#order_bill .bill_content .table .title img {
    float: left;
    width: 70px;
    height: 70px;
    margin-right: 0.5rem;
}
#order_bill .bill_content .main_title {
    margin-left: 1rem;
}
#order_bill .bill_content .table .carton_size span {
    display: inline-block;
}
#order_bill .bill_content .finanical {
    padding: 0 1rem;
}
#order_bill .bill_content .finanical span.value {
    float: right;
    font-weight: bold;
}
#profile .single_order .details_info .img_box {
    width: 100px;
    height: 100px;
}

/* 404 page */
#error_page {
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
#error_page img {
    width: 90%;
    margin-bottom: 2rem;
}
#error_page h1 {
    font-size: 52px;
    color: #13261c;
    font-weight: bold;
    margin-bottom: 1rem;
}
#error_page p {
    font-size: 24px;
    color: #13261c;
}
#error_page a {
    color: #fff;
    border-radius: 8px;
    padding: 16px 30px;
    background-color: var(--mainColor);
    display: block;
    width: max-content;
    margin: 2rem auto;
}

/* blogs */
.blogs_container {
    margin: 2rem;
}
.main_title {
    color: #13261c;
    font-size: 45px;
    font-family: "poppins_bold";
}
.blogs_container .main_post {
    margin-bottom: 1.5rem;
}
.blogs_container .img_box {
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.blogs_container .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogs_container .post_title {
    font-size: 24px;
    color: #13261c;
}
.blogs_container .date {
    display: block;
    font-size: 18px;
    color: #65736c;
}
.blogs_container .single_blog_details {
    position: relative;
}
.blogs_container .single_blog_details .main_img {
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    width: 70%;
}
.blogs_container .single_blog_details .main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogs_container .single_blog_details .title_date {
    padding: 2rem;
    border-radius: 18px;
    background-color: #fafaf5;
    position: absolute;
    width: 40%;
    top: 2rem;
    right: 0;
}
.blogs_container .single_blog_details .title_date h5 {
    color: #65736c;
    font-size: 18px;
    margin-bottom: 1rem;
}
.blogs_container .single_blog_details .title_date h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 0;
}
.blogs_container .recent_posts {
    margin-top: 2rem;
}

/* services */
.services_container {
    margin: 2rem;
    padding: 3rem 0;
}
.services_container img {
    width: 100%;
}
.services_container h1 {
    font-size: 42px;
    font-weight: bold;
    color: #13261c;
    margin-bottom: 1rem;
}
.services_container h2 {
    font-size: 32px;
    color: #13261c;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.services_container p {
    font-size: 18px;
    color: #13261c;
}

/* contact */
.contact_container {
    margin: 2rem;
    position: relative;
    padding: 0 2rem 4rem;
}
.contact_container .plane_shape {
    position: absolute;
    bottom: -44%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url(../img/contact_shape.png);
}
.contact_container .contact_details {
    padding: 1rem;
    position: relative;
    border-radius: 12px;
    border: 1px solid #e4ede8;
    background-color: #fff;
}
.contact_container .contact_details .shape {
    position: absolute;
    width: 55%;
    height: 90%;
    border-radius: 18px;
    z-index: -1;
    background-color: #dcf5e8;
    bottom: -1.5rem;
    right: -1.5rem;
}
.contact_container .contact_details ul li {
    color: #13261c;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 2.5rem;
}
.contact_container .contact_details ul li a {
    color: #13261c;
}
.contact_container .contact_details ul li span {
    display: block;
    font-size: 14px;
    font-weight: normal;
}
.contact_container .form_details {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e4ede8;
    background-color: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.contact_container .form_details h2 {
    color: #13261c;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.contact_container .form_details input {
    height: 48px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #e4ede8;
}
.contact_container .form_details textarea {
    height: 130px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #e4ede8;
}
.contact_container .form_details input[type="submit"] {
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    padding: 5px 30px;
    height: 52px;
    cursor: pointer;
    background-color: var(--mainColor);
}
.how_preform_home h1 {
    padding: 3rem 0 1.5rem;
}
.preform_back {
    color: #fff;
    padding: 5rem 0;
    font-family: poppins_bold;
    background-size: cover;
    background-position: center;
    background-image: url(../img/preform_back.png);
}
.preform_back h3 {
    font-size: 32px;
    margin-top: 1rem;
    margin-bottom: 0;
}
.preform_back p {
    margin-bottom: 0;
}
.preform_back .col-lg-3 {
    border-right: 1px solid #fff;
}
.preform_back .col-lg-3:last-of-type {
    border-right: none;
}

/* about */
#about_page .about_back {
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/about.png);
}
#about_page .about_back .inner_box {
    margin: -6rem 3rem 0;
}
#about_page .about_back .inner_box h1 {
    color: #13261c;
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
#about_page .about_back .inner_box p {
    color: #13261c;
    font-size: 20px;
}
#about_page .about_back img {
    width: 100%;
}
.what_make_us_unique {
    overflow: hidden;
    position: relative;
    padding-bottom: 3rem;
    background-color: #f5f5f5;
}
.what_make_us_unique .first_col {
    padding: 1.5rem 3rem;
}
.what_make_us_unique h1:after {
    content: "";
    position: absolute;
    top: -1rem;
    left: 0;
    height: 4px;
    width: 90px;
    background-color: var(--mainColor);
}
.what_make_us_unique h1 {
    position: relative;
    font-weight: bold;
    font-family: unset;
    margin-bottom: 2rem;
}
.what_make_us_unique h3 {
    font-size: 20px;
    font-weight: bold;
}
.what_make_us_unique .slick-dots li {
    height: auto;
}
.what_make_us_unique .slick-dots {
    bottom: 1rem;
    z-index: 1;
    display: flex;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-around;
}
.what_make_us_unique .slick-dots::before {
    position: absolute;
    content: "";
    top: 24px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #c0c0c0;
}
.what_make_us_unique .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c0c0c0;
}
.what_make_us_unique .slick-dots .slick-active button {
    width: 17px;
    height: 17px;
    background-color: var(--mainColor);
}
.what_make_us_unique .slick-dots li button::before {
    display: none;
}
.what_make_us_unique a {
    display: block;
    margin-top: 2rem;
    color: var(--mainColor);
    text-transform: capitalize;
}
.what_make_us_unique a i {
    margin-left: 0.5rem;
}
.what_make_us_unique .img_box {
    height: 500px;
    overflow: hidden;
}
.what_make_us_unique .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#unique_section {
    margin: 0 2rem;
    text-align: center;
}
#unique_section h1 {
    margin-bottom: 4rem;
}
#unique_section img {
    margin-bottom: 2rem;
}
#unique_section h2 {
    color: #13261c;
    font-size: 32px;
    font-family: "poppins_bold";
    margin-bottom: 1rem;
}
#unique_section p {
    font-size: 24px;
    color: #65736c;
}
#unique_section .inner_box {
    padding: 1rem;
    margin-bottom: 2rem;
}
#about_page #why_us {
    border-radius: 60px;
    background-color: #13261c;
    margin: 2rem;
    padding: 3.5rem;
}
#about_page #why_us h2 {
    color: #fff;
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 2rem;
}
#about_page #why_us p {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
#about_page #why_us img {
    width: 100%;
    border-radius: 16px;
}
#how_preform {
    margin: 2rem;
    padding: 3rem 2rem 5rem;
}
#how_preform h1 {
    margin: 3rem 0 5rem;
    text-align: center;
}
#how_preform .inner_box {
    padding: 1.5rem;
    position: relative;
    border-radius: 12px;
    width: 95%;
    margin: 0 auto;
    background-color: #dcf5e8;
}
#how_preform .inner_box:before {
    position: absolute;
    content: "";
    width: 250px;
    height: 250px;
    z-index: -1;
    left: -35px;
    top: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/vector.png);
}
#how_preform .inner_box h3 {
    font-size: 42px;
    font-weight: bold;
    color: #13261c;
    margin: 1rem 0;
}
#how_preform .inner_box p {
    color: #13261c;
    font-size: 24px;
    margin-bottom: 0;
}
#home_page #home_services {
    padding: 3rem 0;
}
#home_page #home_services .img_box {
    border-radius: 35px;
    overflow: hidden;
}
#home_page #home_services img {
    width: 100%;
}
#home_page #home_services h3 {
    font-size: 32px;
    color: #13261c;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
#home_page #home_services p {
    font-size: 14px;
    line-height: 1.8;
    color: #13261c;
}
#home_page #home_services a {
    font-size: 14px;
    font-weight: bold;
    color: var(--mainColor);
    text-transform: uppercase;
    margin-top: 2rem;
    display: block;
    width: max-content;
}
#home_page #home_services a img {
    width: auto;
    margin-left: 0.5rem;
}
#home_page #unique_section {
    margin: 0;
    padding: 8rem 2rem;
    background: #fcfcf9;
}
#partners {
    padding: 0 !important;
}
.products_slider,
.partners_slider {
    width: 90%;
    margin: 0 auto;
}
#partners .partners_title {
    padding: 1rem 0;
    background-color: var(--mainColor);
}
#partners .parent {
    padding: 2rem 0;
}
#partners h1 {
    color: #fff;
    margin-bottom: 0;
}
#partners .img_box {
    height: 100px;
    padding: 0 0.5rem;
}
#partners .img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#home_page #banner {
    height: calc(100vh - 135px);
    position: relative;
    padding: 8rem 3rem;
    background-size: cover;
    background-position: center right;
    background-image: url(../img/main-image.jpg);
    display: flex;
    align-items: flex-end;
}
#home_page #banner div {
    width: 50%;
}
#home_page #banner p {
    position: relative;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
#home_page #banner p:after {
    content: "";
    position: absolute;
    top: -1rem;
    left: 0;
    height: 4px;
    width: 90px;
    background-color: var(--mainColor);
}
#home_page #banner h1 {
    color: #fff;
    font-size: 50px;
    font-family: "poppins_bold";
}
#home_page #banner a {
    margin-top: 2rem;
    width: 150px;
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    padding: 8px 15px;
    text-align: center;
    margin-right: 0.75rem;
    display: inline-block;
    font-weight: bold;
    background-color: var(--mainColor);
}
#partners,
#stock_products {
    padding: 3rem;
}
#partners .parent,
#stock_products .parent {
    position: relative;
}
#partners .parent .arrows li,
#stock_products .parent .arrows li {
    position: absolute;
    top: 50%;
    cursor: pointer;
    margin-top: -21px;
    font-size: 26px;
    color: var(--mainColor);
}
#partners .parent .arrows li.prev,
#stock_products .parent .arrows li.prev {
    left: 0;
}
#partners .parent .arrows li.next,
#stock_products .parent .arrows li.next {
    right: 0;
}
#stock_products h1 {
    margin-bottom: 0;
}
#stock_products .products_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}
#stock_products .products_head a {
    font-size: 14px;
    color: var(--mainColor);
    width: max-content;
    white-space: nowrap;
}
#stock_products h3 a img {
    padding-left: 0.5rem;
}
#stock_products .product_box {
    margin-bottom: 2rem;
}
#stock_products .img_box {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 15px;
}
#stock_products .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#stock_products .img_box .product_status {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    padding: 0.5rem;
}
#stock_products .img_box .product_status img {
    width: 20px;
    height: 20px;
    margin-right: 0.25rem;
}
#stock_products .img_box .product_status.stock {
    background-color: #dcf5e8;
    color: var(--mainColor);
}
#stock_products .img_box .product_status.date {
    background-color: #fae7e5;
    color: var(--subColor);
}
#stock_products .product_box h5 {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
#stock_products .product_box h6 {
    color: var(--mainColor);
    font-size: 16px;
    font-weight: bold;
}

/* faqs */
#faqs {
    padding: 3rem 0;
}
#faqs .faq_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
#faqs .faqs_tabs {
    text-align: center;
    margin-bottom: 0;
}
#faqs .faqs_tabs li {
    color: #000;
    font-size: 16px;
    margin: 0 0.35rem;
    padding: 6px 15px;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid #e8ebf2;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    font-family: "poppins_bold";
}
#faqs .faqs_tabs li:hover,
#faqs .faqs_tabs li.active {
    color: #fff;
    background-color: var(--mainColor);
}
#faqs .card {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}
#faqs .card.active {
    background-color: #f5f5f5;
}
#faqs .card.active h2 button {
    font-weight: bold;
    border-bottom: none;
}
#faqs .card-header {
    padding: 0;
    background: none;
    border-bottom: none;
}
#faqs .card-header h2 button {
    color: #13261c;
    font-size: 16px;
    padding: 1rem 0;
    border-radius: 0;
    font-weight: bold;
    border-bottom: 1px solid #000;
}
#faqs .card-header h2 button i {
    float: right;
    font-size: 24px;
    color: #292d32;
}
#faqs .card-header h2 button:hover {
    text-decoration: none;
}
#faqs .card-body {
    padding: 1rem;
    padding-top: 0;
}
#faqs .faqs_content {
    display: none;
}
#faqs .faqs_content.active {
    display: block;
}
#faqs .card-header h2 button.collapsed i:before {
    content: "\f107";
}
#faqs .card-header h2 button i:before {
    content: "\f106";
}

.slick-list {
    margin: 0 -15px;
}
.slick-slide > div {
    padding: 0 15px;
}

/* single product */
#single_product {
    padding: 3rem;
}
#single_product .img_box {
    height: 500px;
    padding: 1rem;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e4ede8;
}
#single_product .img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#single_product .title {
    font-size: 20px;
    color: #13261c;
}
#single_product .price {
    font-weight: bold;
    font-size: 24px;
    color: #13261c;
    margin: 0.85rem 0;
}
#single_product .stock {
    color: var(--subColor);
    font-size: 14px;
}
#single_product .product_status {
    border-radius: 8px;
    font-size: 16px;
    padding: 1rem;
    display: block;
    margin-bottom: 1rem;
    width: 50%;
}
#single_product .product_status p {
    margin-bottom: 0;
}
#single_product .product_status img {
    width: 20px;
    height: 20px;
    margin-right: 0.25rem;
}
#single_product .product_status.stock {
    background-color: #dcf5e8;
    color: var(--mainColor);
}
#single_product .product_status.date {
    background-color: #fae7e5;
    color: var(--subColor);
}
#single_product .description {
    margin-top: 1.5rem;
    border: 1px solid #e4ede8;
    border-radius: 12px;
    padding: 1rem;
    overflow: hidden;
}
#single_product .input-group {
    border: 1px solid #e4ede8;
    border-radius: 8px;
    display: inline-block;
    width: 80px;
    height: 48px;
    overflow: hidden;
    margin-right: 1rem;
}
#single_product .input-group input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0.5rem;
}
#single_product .input-group input:focus {
    outline: none;
}
#single_product .input-group a {
    position: absolute;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    color: #777;
    border: 1px solid #e4ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    right: 0.5rem;
    z-index: 2;
}
#single_product .input-group #plusQty {
    top: 0.2rem;
}
#single_product .input-group #minusQty {
    bottom: 0.2rem;
}
#single_product .add_cart,
#single_product input[type="submit"] {
    border-radius: 8px;
    height: 48px;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#single_product .add_cart {
    background-color: var(--mainColor);
}
#single_product .remove_cart {
    background-color: var(--subColor);
}
#single_product .parent {
    display: flex;
    align-items: center;
}

/* profile */
.profile_stats {
    margin-top: 2rem;
}
.profile_stats .stat_box {
    border: 1px solid var(--mainColor);
    border-radius: 8px;
    padding: 1.25rem;
}
.profile_stats .stat_box h3 {
    font-size: 35px;
    font-weight: 600;
    margin: 1.25rem 0;
}
.profile_stats .stat_box h4 {
    font-size: 22px;
    margin: 0;
}

/* packages */
#packages {
    background: #f2f2f2;
}
#packages .packages_head {
    color: #fff;
    padding: 4rem 0 10rem;
    background-size: cover;
    background-position: center;
    background-image: url(../img/plans-bg.jpg);
}
#packages h1 {
    color: #fff;
    margin-bottom: 1rem;
    font-family: "poppins";
}
#packages p {
    font-size: 18px;
    width: 60%;
    margin: 0 auto;
}
#packages .tabs {
    padding: 0.5rem;
    width: max-content;
    border-radius: 8px;
    margin: 2rem auto 3rem;
}
#packages .tabs {
    display: flex;
    gap: 15px;
}
#packages .tabs li {
    font-size: 18px;
    padding: 5px 25px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 25px;
}
#packages .tabs li.active {
    color: #000;
    background-color: #fff;
}
#packages .packages_body {
    overflow: hidden;
    margin-top: -10rem;
}
#packages .package_box {
    padding: 1rem 2rem;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #ddd;
}
#packages .package_box.recommended {
    z-index: 2;
}
#packages .package_box .package_title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
#packages .package_box h3,
#packages .package_box h4 {
    font-size: 30px;
    color: var(--mainColor);
    text-align: center;
    font-weight: bold;
}
#packages .package_box .price {
    display: none;
}
#packages .package_box .price.active {
    display: block;
}
#packages .package_content {
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #dbdbdb;
}
#packages .package_content ul {
    list-style-type: none;
    padding-left: 0.5rem;
    margin: 1.5rem 0;
}
#packages .package_content ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}
#packages .package_content ul li:before {
    content: "";
    color: var(--mainColor);
    font-size: 14px;
    position: absolute;
    top: 5px;
    left: 0;
    width: 7px;
    height: 12px;
    border: solid var(--mainColor);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
#packages .package_content ul li span {
    font-size: 14px !important;
    color: unset !important;
    background-color: unset !important;
}
#packages .package_box .btn_box {
    position: absolute;
    bottom: 0rem;
    left: 0;
    width: 100%;
}
#packages .package_box a,
#packages .package_box .current_plan,
#packages .package_box input[type="submit"].subscribe_btn,
#packages .package_box .trail_end {
    padding: 13px;
    font-size: 16px;
    color: #fff;
    background-color: var(--mainColor);
    border: none;
    display: block;
    text-align: center;
    cursor: pointer;
    width: 75%;
    margin: 1rem auto;
    font-weight: bold;
}
#packages .package_box .current_plan {
    color: var(--mainColor);
    background-color: #fff;
    border: 1px solid var(--mainColor);
}
#packages .package_box .trail_end {
    color: #fff;
    background-color: var(--subColor);
}

/* trail */
.trail_div {
    position: relative;
    border-radius: 12px;
    padding: 1.5rem;
    background-color: #dcf5e8;
    margin: 1rem 0;
    overflow: hidden;
}
.trail_div h2 {
    position: relative;
    z-index: 2;
    color: #13261c;
    font-size: 22px;
    font-family: "poppins_bold";
}
.trail_div p {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #13261c;
    width: 50%;
}
.trail_div a,
.subscribtion_div a,
.subscribtion_div input[type="submit"] {
    color: #fff;
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 8px;
    display: block;
    width: max-content;
    background-color: var(--mainColor);
    position: relative;
    z-index: 2;
    border: none;
}
.subscribtion_div a,
.subscribtion_div input[type="submit"] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}
.trail_div .img_box {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
}
.trail_div .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.subscribtion_div {
    position: relative;
    border-radius: 12px;
    padding: 1.5rem;
    background-color: #fafaf5;
    margin: 1rem 0;
}
.subscribtion_div h3 {
    font-size: 24px;
    color: #13261c;
    margin-bottom: 1rem;
}
.subscribtion_div h4 {
    font-size: 22px;
    color: #13261c;
    font-weight: bold;
}
.subscribtion_div h4 span {
    font-weight: normal;
}
.subscribtion_div h5 {
    font-size: 18px;
    color: #13261c;
}
.subscribtion_div h6 {
    font-size: 16px;
    display: flex;
    align-items: center;
}
.subscribtion_div h6 img {
    margin-right: 0.35rem;
}
.subscribtion_div h6.pending span {
    background-color: #ffce00;
    color: #fff;
    border-radius: 5px;
    padding: 0.25rem;
    font-size: 12px;
    margin-right: 0.5rem;
}
.subscribtion_div h6.active {
    color: var(--mainColor);
}
.subscribtion_div h6.deactive {
    color: var(--subColor);
}
.subscribtion_div h6 span {
    margin: 0 0.25rem;
}

/* locations */
.location_container h5 {
    font-size: 18px;
    color: #13261c;
    margin-top: 1rem;
}
.location_container .location_box {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e4ede8;
    width: 60%;
    display: flex;
    margin-bottom: 2rem;
}
.location_container .location_box ul {
    display: inline-block;
    width: 48%;
}
.location_container .location_box ul li {
    color: #13261c;
    font-size: 14px;
    margin-bottom: 1rem;
}
.location_container .location_box ul li span {
    display: block;
    color: #65736c;
    margin-top: 0.5rem;
}
.location_container .location_box ul li:last-of-type {
    margin-bottom: 0;
}
#profile .single_order .options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
#profile .single_order .options .back_btn {
    margin-bottom: 0;
}
#profile .single_order .options ul {
    margin-bottom: 0;
}
#profile .single_order .options ul li {
    display: inline-block;
    cursor: pointer;
}
#profile .single_order .options ul li:first-of-type {
    margin-right: 2rem;
}
#profile .single_order .options ul li img {
    font-size: 14px;
    margin-right: 0.25rem;
}
#profile .single_order .options ul li a {
    color: #13261c;
}

/* address */
.address_container {
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid #e4ede8;
    width: 60%;
}
.address_container h3 {
    font-size: 22px;
    font-family: "poppins_bold";
    margin-bottom: 1rem;
}
.address_container h3 a {
    font-size: 14px;
    float: right;
    color: var(--mainColor);
}
.address_container h3 a img {
    margin-right: 0.25rem;
}
.address_container .address_box {
    position: relative;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e4ede8;
    margin-bottom: 1rem;
}
.address_container .address_box.active {
    border: 1px solid var(--mainColor);
}
.address_container .address_box:last-of-type {
    margin-bottom: 0;
}
.address_container .address_box h4 {
    font-size: 18px;
    color: #13261c;
    margin-top: 0;
}
.address_container .address_box h5 {
    color: #13261c;
    font-size: 14px;
}
.address_container .address_box h6 {
    color: #65736c;
    font-size: 13px;
    margin-bottom: 0;
}
.address_container .address_box .btns {
    position: absolute;
    margin-bottom: 0;
    bottom: 1rem;
    right: 1rem;
}
.address_container .address_box .btns li {
    display: inline-block;
    cursor: pointer;
}
.address_container .address_box .btns li:first-of-type {
    margin-right: 0.5rem;
}
.address_container .address_box .btns li button {
    border: none;
    cursor: pointer;
    background: none;
}
.address_container .address_box .btns li button:focus {
    outline: none;
}
.address_container .address_box .choose_address {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 1px solid #d5e0da;
    border-radius: 50%;
    width: 22.5px;
    height: 22.5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}
.address_container .address_box:hover .choose_address,
.address_container .address_box.active .choose_address {
    color: #fff;
    background-color: var(--mainColor);
}
#create_address {
    display: none;
}

/* edit account */
.account_edit {
    padding: 1rem 0;
}
.account_edit .main_info {
    position: relative;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #e4ede8;
}
.account_edit .main_info label {
    color: #99a39e;
    font-size: 14px;
}
.account_edit .main_info h4 {
    color: #13261c;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0.25rem;
}
.account_edit .main_info button.edit_btn {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    margin-top: -13.5px;
}
.account_edit .main_info button.edit_btn:focus {
    outline: none;
}
.account_edit .input_info {
    display: none;
}
.account_edit .input_info input,
.account_edit .input_info select {
    height: 67px !important;
    width: 100%;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    color: #13261c;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #e4ede8;
}
.account_edit .input_info input:focus {
    outline: none;
}
.account_edit .input_info .btns {
    text-align: right;
    margin-top: 1rem;
}
.account_edit .input_info .btns button {
    height: 48px;
    width: 80px;
    font-size: 14px;
    color: var(--mainColor);
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
}
.account_edit .input_info .btns button:focus {
    outline: none;
}
.account_edit .input_info .btns .submit {
    color: #fff;
    background-color: var(--mainColor);
}

/* news letter */
.news_form {
    position: relative;
}
.news_form input {
    font-size: 14px;
    border: none;
    width: 100%;
    height: 45px;
    padding: 0.5rem 1rem;
}
.news_form input::placeholder {
    color: #99a39e;
}
.news_form input:focus {
    outline: none;
}
.news_form button {
    position: absolute;
    z-index: 1;
    height: 45px;
    color: #fff;
    right: 0;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 14px;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    background-color: var(--mainColor);
}
.news_form button:focus {
    outline: none;
}

/* main alert */
.main_alert {
    position: absolute;
    top: -5rem;
    right: 1rem;
    border-radius: 4px;
    z-index: 999;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}
.main_alert h5 {
    color: #fff;
    font-size: 14px;
}
.main_alert.success {
    background-color: #4bcd65;
}
.main_alert.danger {
    background-color: #ff544a;
}
.main_alert_errors {
    position: absolute;
    top: -5rem;
    right: 1rem;
    background-color: #ff544a;
    border-radius: 4px;
    z-index: 999;
    padding: 0.5rem 1rem;
}
.main_alert_errors li {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 0.5rem;
}
.main_alert_errors li:last-of-type {
    margin-bottom: 0;
}
.main_alert img,
.main_alert_errors li img {
    margin-right: 0.5rem;
}

/* mini cart */
.mini_cart {
    position: relative;
    list-style-type: none;
    text-align: right;
}
.mini_cart .cart_popup {
    text-align: left;
    width: 380px;
    padding: 15px 20px;
    border: 1px solid #f2eee8;
    background: #fff;
    position: absolute;
    color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-transform: translateY(20px) !important;
    transform: translateY(20px) !important;
    z-index: 10001;
    left: auto !important;
    right: -12px !important;
    top: 45px !important;
    will-change: unset !important;
    box-shadow: 0 5px 5px 0 rgb(50 50 50 / 20%);
    border-radius: 12px;
}
.mini_cart .cart_popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}
.mini_cart .cart_popup.show .cart_list {
    list-style: none;
    padding: 0;
    padding-bottom: 10px;
    max-height: 335px;
    overflow-y: auto;
}
.mini_cart .cart_popup .mini_cart_item {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    width: 100%;
    margin-right: 0;
}
.mini_cart .cart_popup .mini_cart_item .product_image {
    width: 87px;
    height: 89px;
    float: left;
    margin-right: 12px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e4ede8;
    padding: 0.5rem;
}
.mini_cart .cart_popup .mini_cart_item .product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mini_cart .cart_popup .mini_cart_item a.product_name {
    color: #262626 !important;
    padding-right: 20px;
    width: calc(100% - 20px);
    display: block;
    line-height: 1.1;
    margin-bottom: 7px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 0.5rem;
}
.mini_cart .cart_popup .mini_cart_item .quantity {
    font-weight: 500;
    color: #262626;
    font-size: 14px;
    margin: -2px 0 5px;
}
.mini_cart .cart_popup .mini_cart_item .price {
    line-height: 24px;
    font-size: 18px;
    color: #262626;
    font-weight: bold;
}
.mini_cart .cart_popup .mini_cart_item .remove:hover,
.mini_cart .cart_popup .mini_cart_item a:hover {
    top: 0;
    color: var(--subColor);
}
.mini_cart .cart_popup .total-cart {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 26px;
    position: relative;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}
.mini_cart .cart_popup .buttons {
    display: flex;
    margin-bottom: 10px;
    margin-top: 13px;
    width: 100%;
}
.mini_cart .cart_popup .buttons a {
    width: calc(50% - 4px);
    display: block;
    padding: 12.5px 10px;
    overflow: hidden;
    position: relative;
    font-size: 14px;
    color: #fff;
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
    -webkit-transition: unset;
    transition: unset;
    display: inline-block;
    margin: 0 5px;
    border-radius: 8px;
    font-weight: 600;
}
.mini_cart .cart_popup .buttons a:first-of-type {
    margin-left: 0;
    color: var(--mainColor);
    background-color: #fff;
}
.mini_cart .cart_popup .buttons a:last-of-type {
    margin-right: 0;
}
.mini_cart .cart_popup .buttons a:hover {
    top: 0;
    color: var(--mainColor);
}
.mini_cart .cart_popup_empty {
    text-align: center;
}
.mini_cart .cart_popup_empty img {
    width: 50px;
}
.mini_cart .cart_popup_empty p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--mainColor);
    font-size: 18px;
}
.mini_cart .cart_popup_empty a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    color: #474747;
    border-bottom: 2px solid;
    margin: 0 auto 1rem;
    display: block;
    width: max-content;
    padding-bottom: 0.25rem;
}
.mini_cart .cart_popup_empty a i {
    margin-left: 0.5rem;
}
.mini_cart .cart_popup_empty a:hover {
    top: 0;
}
.mini_cart .cart_popup .total-cart .title-total {
    font-weight: normal;
}
.mini_cart .cart_popup .buttons a.checkout:hover {
    color: #fff;
}
.user_deleting_request form {
    width: 100%;
}
.user_deleting_request form textarea {
    height: 150px;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.user_deleting_request form button {
    display: block;
    margin: 0 auto;
}
#profile .user_deleting_modal.user_deleting_request p {
    margin-bottom: 0;
}

.profile_container .input_info .form-group {
    position: relative;
}
.profile_container .input_info .form-group .wrong_icon,
.profile_container .input_info .form-group .success_icon {
    position: absolute;
    right: 15px;
    top: 27px;
    color: red;
    display: none;
}
.profile_container .input_info .form-group .success_icon {
    color: #58c256;
}

/* privacy */
.privacy_container p {
    font-size: 18px;
    color: #777;
    line-height: 2;
}
.shipment_prices_cover {
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-image: url(../img/prices_main_img.jpg);
}
.shipment_prices_cover h1 {
    font-size: 35px;
    font-family: "poppins_bold";
}
.shipment_prices_cover p {
    font-size: 18px;
}
.shipment_prices_cover ul {
    margin-top: 1.5rem;
}
.shipment_prices_cover ul li {
    display: inline-block;
    font-weight: bold;
    border-radius: 25px;
    padding: 0.35rem 1rem;
    color: var(--mainColor);
    background-color: #fff;
}
.shipment_prices_cover ul li:nth-child(2) {
    all: unset;
    margin: 0 10px;
    font-size: 20px;
}
#shipment_calculation ul {
    margin: 1rem 0 0;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #a0a0a0;
}
#shipment_calculation ul li {
    cursor: pointer;
    width: 50%;
    height: 60px;
    font-size: 22px;
    text-align: center;
    color: #b4b4b4;
    line-height: 58px;
    font-weight: bold;
}
#shipment_calculation ul li.active {
    color: #fff;
    background-color: var(--mainColor);
}
.calc_parent {
    padding-bottom: 2rem;
}
.calc_parent.sea {
    background-color: #f7f7f7;
}
.calc_inputs {
    gap: 10px;
}
#shipment_calculation input {
    width: 150px;
    height: 60px;
    font-size: 18px;
    margin-bottom: 0;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid #e4ede8;
}
#shipment_calculation input::placeholder {
    color: #99a39e;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.sea_parent {
    display: none;
}
#shipment_calculation span {
    font-size: 22px;
}
#shipment_calculation h1.weight_total span {
    font-size: 50px;
    font-weight: normal;
    font-family: "poppins";
    color: var(--mainColor);
}
#shipment_calculation .categories {
    max-height: 450px;
    overflow-y: auto;
}
#shipment_calculation .subtitle {
    font-size: 30px;
    padding-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: "poppins_bold";
}
#shipment_calculation .categories .row {
    border-top: 1px solid #eaeaea;
}
#shipment_calculation .categories .inner_col {
    padding: 1rem;
    border-bottom: 1px solid #eaeaea;
}
#shipment_calculation .categories .inner_col:nth-child(odd) {
    border-right: 1px solid #eaeaea;
}
#shipment_calculation .categories h5 {
    color: #13261c;
    font-size: 18px;
    margin-bottom: 0.5rem;
}
#shipment_calculation .categories h6 {
    color: #13261c;
    font-size: 16px;
    font-family: "poppins_bold";
}
#shipment_calculation .categories h6 span {
    font-size: 16px;
}
#shipment_calculation .categories span.subtotal {
    background-color: var(--mainColor);
    color: #fff;
    font-size: 14px;
    border-radius: 15px;
    margin-left: 0.5rem;
    padding: 0.35rem 0.75rem;
}
#shipment_calculation .categories span.subtotal .value {
    font-size: 14px;
}
#shipment_calculation .categories .inner_box:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
#shipment_calculation .cities {
    margin: 2rem 0;
    overflow-y: auto;
    max-height: 375px;
    border-bottom: 1px solid #eaeaea;
}
#shipment_calculation .cities .inner_box {
    padding: 1rem;
    gap: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eaeaea;
}
#shipment_calculation .cities .inner_box .line {
    display: flex;
    justify-content: space-between;
}
#shipment_calculation .cities .inner_box .line span {
    font-size: 20px;
}
#shipment_calculation .cities .inner_box .price {
    color: var(--mainColor);
    background-color: #dcf5e8;
    text-align: center;
    width: max-content;
    border-radius: 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 600;
    margin: 0.5rem auto 0;
    padding: 0.25rem 0.5rem;
}
#shipment_calculation .cities .inner_box .price img {
    margin-right: 0.5rem;
}
#shipment_calculation .ship_type,
#shipment_calculation .weight_unit,
#shipment_calculation .categories h6,
#shipment_calculation .cities .inner_box .price {
    display: none;
}
#shipment_calculation .weight_unit.active,
#shipment_calculation .ship_type.active,
#shipment_calculation .categories h6.active {
    display: inline-block;
}
#shipment_calculation .cities .price.active {
    display: block;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* chat */
.chat-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 35;
}
.chat-container #chat_icon {
    position: relative;
    top: 0rem;
    right: 0rem;
    color: var(--mainColor);
    font-size: 45px;
    cursor: pointer;
}
.chat-container .chat_box {
    height: 450px;
    width: 335px;
    position: absolute;
    right: 1rem;
    bottom: -2rem;
    background-color: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    box-shadow: 0 12px 28px 0 rgb(0 0 0 / 20%), 0 2px 4px 0 rgb(0 0 0 / 10%);
    display: none;
}
.chat-container .chat_box .message_head {
    padding: 8px;
    padding-left: 10px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(0, 0, 0, 0.1) inset,
        0 2px 1px -1px rgba(255, 255, 255, 0.5) inset;
}
.chat-container .chat_box .message_head i {
    margin-right: 0.5rem;
    color: var(--mainColor);
}
.chat-container .chat_box .message_head .close_chat {
    position: absolute;
    top: 0.75rem;
    right: 0.5rem;
    cursor: pointer;
}
.chat-container .chat_box .message_body {
    max-height: 350px;
    overflow-y: auto;
    padding: 1rem;
}
.chat-container .chat_box .message_body .date {
    font-size: 12px;
    color: #777;
    margin-top: 0.25rem;
    padding-left: 0.5rem;
}
.chat-container .chat_box .message_body .single_msg {
    background-color: #e4e6eb;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    width: max-content;
    font-size: 14px;
    max-width: 95%;
}
.chat-container .chat_box .message_body .from_agent {
    direction: rtl;
    text-align: right;
}
.chat-container .chat_box .message_body .from_agent .single_msg {
    background-color: var(--mainColor);
    color: #fff;
}
.chat-container .chat_box .empty_message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 100px);
}
.chat-container .chat_box .message_foot {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
}
.chat-container .chat_box .message_foot input {
    background-color: #f0f2f5;
    border: none;
    border-radius: 0;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin: 0.75rem;
    margin-right: 0;
    font-size: 14px;
}
.chat-container .chat_box .message_foot input:focus {
    box-shadow: none;
}
.chat-container .chat_box .message_foot button {
    background: none;
    color: var(--mainColor);
    border: none;
    width: 15%;
    font-size: 20px;
    cursor: pointer;
}
.chat-container .chat_box .message_foot button:focus {
    outline: none;
}
.chat-container .notification_count {
    background-color: var(--subColor);
    color: #fff;
    position: absolute;
    width: 20px;
    height: 20px;
    font-size: 14px;
    text-align: center;
    border-radius: 50%;
    right: -15px;
}
.chat-container .single_notifi {
    float: right;
    background-color: var(--mainColor);
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 14px;
    text-align: center;
    border-radius: 50%;
}
#single_product .description img {
    width: 50%;
    height: 300px;
    object-fit: contain;
}
#single_product .description video {
    width: 100%;
    height: 350px;
}
.cart_container .success_msg,
.cart_container .warning_msg {
    display: none;
    margin-bottom: 1rem;
    font-size: 13px;
}

.home-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    height: auto;
    overflow: auto;
    background-color: rgb(0, 0, 0, 0.75);
    z-index: 999;
}
.home-banner .inner_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}
.home-banner .img_box,
.home-banner .content_box {
    height: 100%;
}
.home-banner .img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-banner .close_popup {
    position: fixed;
    top: 2rem;
    right: 3rem;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}
.home-banner .content_box {
    display: flex;
    padding: 0 3rem;
    position: relative;
    align-items: center;
    justify-content: center;
}
.home-banner .content_box h1 {
    color: var(--mainColor);
    margin-bottom: 1rem;
    font-family: "poppins_bold";
    text-transform: uppercase;
}
.home-banner .content_box p {
    color: #6f6f6f;
    font-size: 14px;
    margin-bottom: 3rem;
}
.home-banner .content_box h2 {
    color: #6f6f6f;
    font-size: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.home-banner .content_box form {
    width: 400px;
}
.home-banner .content_box form input {
    max-width: 100%;
    border-radius: 0;
    border-color: #d6d6d6;
}
.home-banner .content_box form button {
    color: #fff;
    right: 0;
    padding: 0.5rem 1rem;
    font-size: 14px;
    transform: unset;
    font-weight: bold;
    background-color: var(--mainColor);
}

/* tracking page */
#track_form h1 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--mainColor);
}
#track_form input {
    text-transform: capitalize;
    font-size: 14px;
    padding: 1rem;
    border-radius: 0;
}
#track_form button {
    color: #fff;
    border-radius: 0;
    padding: 0.5rem 2rem;
    background-color: var(--mainColor);
}
#trackingData ul {
    width: max-content;
    margin: 2rem auto 0;
}
#trackingData li {
    font-size: 14px;
    font-weight: bold;
    color: var(--mainColor);
}
#trackingData li span {
    color: #000;
}

/* coupon details */
.coupon_details {
    margin: 2rem -2rem;
}
.coupon_details img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.coupon_details .img_box {
    height: 100%;
}
.coupon_details .content_box {
    height: 100%;
    display: flex;
    padding: 1rem 3rem;
    align-items: center;
    background-color: #fafaf5;
}
.coupon_details .content_box h3 {
    font-weight: bold;
    text-transform: uppercase;
}
.coupon_details .content_box p {
    width: 80%;
    margin-bottom: 0;
}
.coupon_details .content_box p span {
    font-weight: bold;
}
.coupon_details .date_limit {
    gap: 15px;
    display: flex;
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.coupon_details .date_limit div {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    color: var(--mainColor);
    border: 1px solid var(--mainColor);
}
.checkout_coupon {
    padding: 1rem 2rem;
    margin: -1.5rem -1.5rem 1rem;
    background-color: #f9fcfa;
}
#profile .checkout_coupon h6 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0;
}
#profile .checkout_coupon h6 span {
    color: #000 !important;
    font-size: 14px;
    font-weight: bold;
}
#profile .checkout_coupon .input-group {
    position: relative;
}
#profile .checkout_coupon input {
    width: 100%;
    height: 45px;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#profile .checkout_coupon input:focus {
    outline: none;
}
#profile .checkout_coupon button {
    position: absolute;
    right: 0;
    height: 45px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    padding: 0.5rem 1rem;
    background: var(--mainColor);
}
.summary_card .discount {
    display: none;
}
.ajax_alert {
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    display: none;
}
.success {
    background-color: #4bcd65;
}
.danger {
    background-color: #ff544a;
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.status-bar i{
    color: #039046;
    cursor: pointer;
}

@keyframes load-bar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    direction: ltr;
    align-self: center;
    animation: load-bar 1s 1;
}
.progress-bar {
    position: relative;
    width: 100%;
    height: 15px;
    background-color: #c7c7c7;
    border-radius: 5px;
}



.progress {
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
}
.node {
    position: absolute;
    top: -10px;
    width: 30px;
    height: 30px;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    transform: translateX(-50%);
}
.stages-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: start;
}

.stages-table td {
    padding: 10px;
    border: 1px solid #ddd;

}

.stages-table i{
    color: #039046;
    font-size: larger;
}
