@charset "utf-8";

/*-----------------------------------
#   Fonts
------------------------------------*/

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-regular-webfont.woff2") format("woff2"),
        url("../fonts/poppins-regular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-medium-webfont.woff2") format("woff2"),
        url("../fonts/poppins-medium-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2"),
        url("../fonts/poppins-semibold-webfont.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-bold-webfont.woff2") format("woff2"),
        url("../fonts/poppins-bold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

/*-----------------------------------
#   Common Variables
------------------------------------*/
:root {
    --selection-bg: #454545;
    --selection-text: #fff;
    --placeholder-text: #b3b3b3;
    --font-regular: "Poppins", sans-serif;
}

/*-----------------------------------
#   Common Css
------------------------------------*/

body {
    height: 100%;
    font-size: 14px;
    font-family: var(--font-regular);
    line-height: 1;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #222;
    background-color: #fff;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    outline: none !important;
    color: inherit;
    transition: 0.3s ease;
}

@media (hover: hover) {
    a:hover {
        color: inherit;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

/*---------------------------
# Selection
----------------------------*/

::selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-webkit-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-moz-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-o-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-ms-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

/*---------------------------
# PlaceHolder
----------------------------*/

::-webkit-input-placeholder {
    color: var(--placeholder-text) !important;
    opacity: 1;
}

::-moz-placeholder {
    color: var(--placeholder-text) !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--placeholder-text) !important;
    opacity: 1;
}

:-moz-placeholder {
    color: var(--placeholder-text) !important;
    opacity: 1;
}

/*---------------------------
# Fluid Width Layout CSS
----------------------------*/

.container{
    max-width: 100%;
}

/*---------------------------
# Button CSS
----------------------------*/
.button {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0;
    padding: 14px 15px;
    outline: none;
    border-radius: 8px;
    transition: all 500ms ease;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/*---------------------------
# Button Varients
----------------------------*/

.button-gradient {
    /* background: linear-gradient(270.15deg, #63ECC2 3.66%, #157FAD 96.78%); */
    background: #e5ccaf;
    box-shadow: 0px 11px 14.1px rgba(0, 0, 0, 0.11);
    /* color: #fff; */
    color: #bb2649;
    border: 1px solid #bb2649;
}

/*---------------------------
# Form CSS
----------------------------*/

.form-group {
    margin-bottom: 25px;
}

.form-control {
    font-size: 16px;
    font-family: var(--font-regular);
    line-height: 20px;
    padding: 16px 16px;
    height: 52px;
    border-radius: 8px;
    border-color: #ebebeb;
    color: #100f0f;
    background-color: #e3e3e3;
}

.form-control:focus {
    color: #100f0f;
    background-color: #fff;
    border-color: #1580ad;
    outline: 0;
    box-shadow: none !important;
}

.form-select {
    padding: 14px 16px;
    height: 52px;
    font-size: 16px;
    font-family: var(--font-regular);
    border-radius: 8px;
    border-color: #ebebeb;
    color: #100f0f;
    background-color: #e3e3e3;
    padding-right: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.form-select:focus {
    color: #100f0f;
    background-color: #e3e3e3;
    border-color: #1580ad;
    outline: 0;
    box-shadow: none;
}

textarea.form-control {
    height: 120px;
    resize: none;
}

/* .error-text{
    font-size: 14px;
    display: block;
    margin-top: 5px;
    color: #e53a34;
    padding: 5px;
} */

.error-text {
    font-size: 14px;
    display: block;
    margin-top: -17px;
    color: #e53a34;
    padding: 5px;
    margin-bottom: 10px;
}

.section-padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media only screen and (min-width: 1600px) {
    .container {
        /* max-width: 1410px; */
        max-width: 100%;
    }
}

/*---------------------------------
#   Header CSS Start Here
----------------------------------*/
.header {
    background-color: #d4cacd;
    padding: 10px 0;
}

.header .container {
    display: flex;
    align-items: center;
}

.header .brand-logo {
    display: inline-block;
    max-width: 125px;
}

.header .main-navigation {
    margin-left: auto;
}

.main-navigation-nav {
    display: flex;
    margin: 0 -5px;
}

.main-navigation-nav li {
    padding: 0 5px;
}

.main-navigation-nav li a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    /* width: 110px; */
    padding: 15px;

    background-color: transparent;
    border: 1px solid transparent;
}

.drop-menu li a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #bb2654 !important;
    text-align: center;
    border-radius: 10px;
    /* width: 110px; */
    /* padding: 10px;*/
    padding: 10px 10px;
    /* border-bottom: 1px solid #E6E6E6;  */
    background-color: transparent;
    border: 1px solid transparent;
}

.drop-menu li a:hover {
    background-color: hsl(15.35deg 54.43% 84.51%) !important;
    color: #fff !important;
}

.main-navigation-nav li a.login {
    background-color: #bb2649;
    border-color: #bb2649;
}

.main-navigation-nav li a.service {
    /* background-color: #e5ccaf; */
    /* border-color: #51D1B9; */
    background-color: #e5ccaf;
    border-color: #e5ccaf;
}

.main-navigation-nav li a.about {
    color: #bb2649;
    background-color: #fff;
    border-color: #bb2649;
}

.main-navigation-nav li a.about:hover {
    color: #fff;
    background-color: #e5ccaf;
    border-color: #e5ccaf;
}

.logged-in-user .dropdown-toggle {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #464255;
    display: inline-flex;
    align-items: center;
    padding-left: 15px;
    border-left: 1px solid #d0d6de;
    margin-left: 15px;
}
.logged-in-user .dropdown-toggle .user-img {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
}
.logged-in-user .dropdown-toggle .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.logged-in-user .header-dropdown {
    padding: 10px 10px;
    border-bottom: 1px solid #e6e6e6;
}

.logged-in-user .header-dropdown:last-child {
    border-bottom-color: transparent;
}

.logged-in-user .dropdown-item {
    font-size: 14px;
    cursor: pointer;
}

.logged-in-user .dropdown-item img {
    margin-right: 5px;
}

.logged-in-user .dropdown-menu {
    width: 220px;
}

.header .main-navigation .nav-close {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

.header .sidebar-toggler {
    display: inline-block;
    width: 28px;
}

@media only screen and (max-width: 991.99px) {
    .main-navigation {
        position: fixed;
        width: 250px;
        height: 100%;
        left: -250px;
        top: 0;
        background-color: #fff;
        z-index: 99;
        padding: 30px 15px;
        left: -250px;
        transition: 0.3s ease;
    }

    body.mobile--nav-open .main-navigation {
        left: 0;
    }
    .main-navigation-nav {
        flex-direction: column;
        margin: -10px 0;
    }
    .main-navigation-nav li {
        padding: 10px 0;
    }
    .main-navigation-nav li a {
        width: 100%;
    }

    .logged-in-user {
        margin-left: auto;
    }
    .header .brand-logo {
        max-width: 120px;
        margin-right: auto;
    }
    .logged-in-user .dropdown-toggle {
        border-left: 0;
    }
}

/*---------------------------------
#   Header CSS End Here
----------------------------------*/

/*--------------------------------------
#  Login and Signup Page CSS Start Here
--------------------------------------*/

.bg-light-blue {
    background-color: #d4cacd;
}

.auth-wrapper {
    padding: 60px 0;
    min-height: 100vh;
}

@media only screen and (min-width: 1800px) {
    .auth-wrapper .container {
        max-width: 1580px;
    }
}

.auth-content {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    min-height: calc(100vh - 120px);
    border-radius: 50px;
    overflow: hidden;
}

.auth-content .left-con {
    max-width: 30%;
    flex-basis: 30%;
    position: relative;
    z-index: 1;
    background: linear-gradient(189.72deg, #f7beaa 2.46%, #bb2649 48.34%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.auth-content .left-con::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url("../images/backgrounds/auth-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.auth-tabs {
    display: flex;
    flex-direction: column;
}

.auth-tabs li button {
    all: unset;
    box-sizing: border-box;
    display: block;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding: 15px;
    border-radius: 8px 0 0 8px;
    width: 120px;
}

.auth-tabs li button.active {
    background-color: #fff;
    color: #bb2649;
}

.auth-content .right-con {
    max-width: 70%;
    flex-basis: 70%;
    position: relative;
    z-index: 1;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-content .right-con::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url("../images/backgrounds/auth-bg-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.auth-form-wrapper {
    width: 480px;
    padding: 40px 12px;
    max-width: 100%;
    margin: 0 auto;
}

.auth-form-wrapper .auth-logo {
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.auth-form-title {
    padding-bottom: 20px;
}
.auth-form-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.c-input-group {
    position: relative;
    margin-bottom: 20px;
}

.c-input-group .c-input-group-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    padding: 0 10px;
}

.c-input-group .form-control {
    padding-left: 50px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: 16px;
    font-weight: 400;
    color: #1a202c;
    /* color: #999999; */
    background: #e3e3e3b3;
    border-radius: 8px;
}

.c-input-group .login-input {
    margin-bottom: -15px;
}

.c-input-group .form-select {
    height: 48px;
    padding: 14px 16px;
    padding-left: 50px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: 16px;
    font-weight: 400;
    color: #1a202c;
}

.goto-link {
    color: #bb2649;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .auth-content {
        flex-direction: column;
        border-radius: 25px;
    }

    .auth-content .left-con {
        max-width: 100%;
        flex-basis: 100%;
        display: block;
    }
    .auth-content .right-con {
        max-width: 100%;
        flex-basis: 100%;
    }
    .auth-tabs {
        flex-direction: row;
    }
    .auth-tabs li {
        max-width: 50%;
        flex-basis: 50%;
    }
    .auth-tabs li button {
        border-radius: 0;
        width: 100%;
    }
}

/*------------------------------
# Track Order Page CSS
-------------------------------*/

.image-overlay-bg {
    width: 100%;
    min-height: calc(100vh - 142px);
    /* background: linear-gradient(217.38deg, #f7beaa -10.39%, #BB2649 98.52%); */
    /* background: #edcdc2; */
    background: #D4CACD;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-overlay-bg::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    /*    background-image: url("../images/backgrounds/bg-3.png");*/
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.main-footer {
    padding: 10px 0;
    background-color: #d4cacd;
    height: 50px;
    display: flex;
    align-items: center;
}
.fw-600 {
    font-weight: 600;
}
.quick-track-order-content {
    text-align: center;
}

.quick-track-order-content .media {
    max-width: 250px;
    margin: 0 auto;
}

.quick-track-order .text-heading h4 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}
.quick-track-order .text-heading {
    margin-top: 30px;
    margin-bottom: 50px;
}
.quick-track-order .text-heading p {
    color: #fff;
}

.track-order-form-wrapper {
    width: 1080px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 10px solid #bb2649;
}

.track-order-form-wrapper .form-group {
    display: flex;
    margin: 0;
    align-items: center;
}

.track-order-form-wrapper .form-group .form-control-wrap {
    max-width: 72%;
    flex-basis: 72%;
    margin-right: 2%;
    position: relative;
}

.track-order-form-wrapper .form-group .form-control-wrap::before {
    content: url("../images/icons/ic-search.svg");
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.track-order-form-wrapper .form-group .form-control-wrap::after {
    content: "";
    display: block;
    width: 1px;
    height: 32px;
    background-color: #e5e5e5;
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.track-order-form-wrapper .form-group .form-control-wrap .form-control {
    padding-left: 65px;
}

.track-order-form-wrapper .form-group .button {
    max-width: 26%;
    flex-basis: 26%;
}

@media only screen and (max-width: 991px) {
    .quick-track-order-content .media {
        max-width: 180px;
        margin: 0 auto;
    }
    .quick-track-order .text-heading h4 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .image-overlay-bg {
        min-height: calc(100vh - 67px);
    }
}

@media only screen and (max-width: 575px) {
    .quick-track-order .text-heading h4 {
        font-size: 32px;
    }
    .track-order-form-wrapper {
        padding: 10px;
    }
    .track-order-form-wrapper .form-group .form-control-wrap .form-control {
        padding-left: 55px;
    }
    .track-order-form-wrapper .form-group .form-control-wrap::before {
        left: 10px;
    }
    .track-order-form-wrapper .form-group .form-control-wrap::after {
        left: 45px;
    }
}

/*-----------------------------------------
# Orders Details and Order Status Page CSS
-------------------------------------------*/

.ty-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
}
.ty-card-header {
    padding: 20px 20px;
    border-bottom: 1px solid #e6e6e6;
}
.ty-card-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: #464e5f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ty-card .ty-card-body {
    padding: 20px 20px;
}
.map-legend {
    padding: 0px 20px;
}
.map-filter-wrapper {
    padding: 0px 20px;
}

.ty-card-header-with-btn {
    position: relative;
    padding-right: 180px;
}

.ty-card-header-with-btn .btn,
.ty-card-header-with-btn .button {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.order-meta-data .meta-data {
    display: flex;
}

.order-meta-data .meta-data .icon {
    min-width: 30px;
    width: 30px;
}

.order-meta-data .meta-data .desc {
    flex: 1;
    padding-left: 10px;
}

.order-meta-data .meta-data .desc h4 {
    font-size: 20px;
    font-weight: 600;
    color: #464e5f;
}

.order-meta-data .meta-data .desc p {
    font-size: 14px;
    color: #464e5f;
}
.order-meta-data.style--one {
    margin-bottom: 70px;
}
.order-meta-data.style--one .meta-data {
    background-color: #f3f8fb;
    border-radius: 8px;
    padding: 15px;
}

.order-progress-wrapper {
    background-color: #d4cacd;
    padding: 50px 0;
    border-radius: 8px;
}

.order-progress-bar {
    display: flex;
    position: relative;
}

.order-progress-bar li {
    position: relative;
    flex: 1;
    text-align: center;
}

.order-progress-bar li .step {
    padding-top: 75px;
    position: relative;
    cursor: pointer;
}

.order-progress-bar li .step::before {
    content: "";
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #8d8d8d;
    background-image: url("../images/icons/icNextWhite.png");
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
}

.order-progress-bar li.completed .step::before {
    background-color: #bb2649;
}

.order-progress-bar li .step::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #8d8d8d;
    position: absolute;
    left: -50%;
    top: 95px;
    z-index: 0;
}

.order-progress-bar li.completed .step::after {
    background-color: #bb2649;
}

.order-progress-bar li:first-child .step::after {
    content: none;
}

.order-progress-bar li span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #464e5f;
    text-align: center;
}

.order-progress-bar li span.data-time {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px !important;
}

.order-progress-bar li span.status {
    font-size: 15px;
    margin-top: 10px;
}

.order-progress-bar li span.status .position-relative {
    display: inline-block;
    padding-right: 15px;
}

.box-shadow-one {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.15);
}

.shipping-detail h4 {
    font-size: 24px;
    font-weight: 600;
    color: #464e5f;
    padding-bottom: 15px;
}

.shipping-detail p {
    font-size: 18px;
    font-weight: 500;
    color: #464e5f;
    padding-bottom: 13px;
}

.hover-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.11);
    padding: 20px;
    position: absolute;
    display: none;
    top: 110px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    max-width: 380px;
    margin: 0 auto;
}

.hover-content .media {
    text-align: right;
    margin-top: 10px;
}
.hover-content .media a {
    color: #1f7da6;
    font-weight: 600;
    font-size: 17px;
    text-decoration: underline;
}

.order-progress-bar li:hover .hover-content {
    display: block;
}

/*.hover-content::before{
    content: url("../images/icons/ic-triangle.svg");
    position: absolute;
    left: 100px;
    top: -15px;
}*/

.images-list {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
}

.images-list .img-box {
    cursor: pointer;
    width: 45px;
    min-width: 45px;
    height: 45px;
    overflow: hidden;
    margin-right: 20px;
    position: relative;
    transition: 0.25s ease;
}
.images-list .img-box::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
}
.images-list .img-box::after {
    content: url("../images/icons/ic-plus.svg");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.images-list .img-box:hover::before,
.images-list .img-box:hover::after {
    opacity: 1;
    visibility: visible;
}

.images-list .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hover-content .texts p {
    color: #464e5f;
    text-align: left;
}

.additioanl-order-progress-table--main > tbody > tr > td {
    padding: 0 !important;
    border-bottom: 0 !important;
}

.additioanl-order-progress .ty-table {
    border-radius: 0;
}

.additioanl-order-progress .ty-table td:first-child {
    width: 150px;
}

@media only screen and (max-width: 1199px) {
    .order-meta-data.style--one {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .order-progress-bar li span {
        font-size: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .order-meta-data .meta-data .desc h4 {
        font-size: 18px;
    }
    /* .ty-card .ty-card-body {
        padding: 20px 0px;
    } */
    .shipping-detail h4 {
        font-size: 20px;
    }
    .shipping-detail p {
        font-size: 16px;
    }
    .order-progress-wrapper {
        padding: 0;
    }
    .order-progress-bar {
        flex-direction: column;
    }
    .order-progress-bar li .step {
        display: flex;
        flex-direction: column-reverse;
        padding: 25px 0;
        padding-left: 40px;
    }
    .order-progress-bar li .step::before {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        width: 36px;
        height: 36px;
    }
    .order-progress-bar li .step::after {
        width: 1px;
        height: 100%;
        left: 30px;
        top: -50%;
    }
    .order-progress-bar li span.status {
        margin-top: 0;
    }
    .order-progress-bar li span.data-time {
        position: static;
        transform: translate(0);
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px) {
    .ty-card-header h4 {
        display: block;
    }
    .ty-card-header h4 button {
        margin-top: 10px;
    }
}

/*------------------------------
# Orders List Page CSS
-------------------------------*/

.ty-table {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.ty-table th {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    /* background-color: #157FAD; */
    background-color: #edcdc2;
    padding: 15px;
    vertical-align: middle;
}

.ty-table td {
    font-size: 16px;
    font-weight: 400;
    color: #464e5f;
    padding: 15px;
    box-shadow: none;
    vertical-align: middle;
}

.ty-table .heading-row td {
    background-color: #d4cacd99 !important;
}

.ty-table.table > :not(caption) > * > * {
    border-bottom: 0;
    /* white-space: nowrap; */
    overflow: hidden;
}

.ty-table.table-hover > tbody > tr > * {
    background-color: #d4cacd;
}
/* Override for rows with .at-risk class */
.ty-table.table-hover > tbody > tr.at-risk > * {
    background-color: #ffa700 !important;
    color: rgb(7, 7, 7) !important;
}
.ty-table.table-hover > tbody > tr:hover > * {
    background-color: #fff;
}

.inprogress {
    color: #c5a226;
}

.pagination {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    flex-wrap: wrap;
}

.pagination li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    font-size: 12px;
    font-weight: 600;
    /* color: #157FAD; */
    /* color: #bb2649; */
    color: #bb2649;
}

.pagination li a.active {
    /* background-color: #157FAD; */
    background-color: #bb2649;
    color: #fff;
}

.ty-table-pagination {
    background-color: #d4cacd;
    border-radius: 0 0 8px 8px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.order-n-inventory-tabs .button {
    color: #bb2649;
    border: 1px solid #bb2649;
}

.order-n-inventory-tabs .button.active {
    color: #fff;
    /* background: linear-gradient(270.15deg, #63ECC2 3.66%, #157FAD 96.78%);  */
    background: #e5ccaf;
    border-color: #e5ccaf;
}

@media only screen and (max-width: 767px) {
    .ty-card-header {
        padding: 15px 20px;
    }
    .ty-card-header h4 {
        font-size: 20px;
    }
    /* .ty-card .ty-card-body {
        padding: 30px 0px;
    } */

    .ty-card-header-with-btn {
        padding: 20px 20px;
        padding-right: 170px;
    }

    .ty-card-header-with-btn .btn,
    .ty-card-header-with-btn .button {
        right: 20px;
    }
}

td a {
    /* background: #157FAD; */
    background: #bb2649;
    padding: 6px 10px;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
}

td a:hover {
    color: #fff;
}

/* .search_btn {
   background:#bb2649;
    padding: 10px;
    border-radius: 7px;
    color: white;
    border-color: #bb2649;
    height: -webkit-fill-available;
} */
.search_btn {
    background: #ffffff;
    padding: 10px;
    border-radius: 7px;
    color: #bb2649;
    border-color: #bb2649;
}

.search_btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #bb2649;
    border-color: #bb2649;
}

.search_btn:active,
.search_btn:focus {
    color: #fff !important;
    background-color: #bb2649 !important;
    border-color: #bb2649 !important;
}

.card-header.with-border.d-flex.justify-content-start.align-items-center.media_card_header {
    padding: 10px;
}

span.done {
    background: #66d366b3;
    padding: 10px;
    color: white;
    border-radius: 7px;
}

span.cancel {
    background: #ed9090c4;
    padding: 10px;
    color: white;
    border-radius: 7px;
}

.shipping-status {
    padding: 10px;
    margin-bottom: -30px;
}

.shipping-status span {
    /* color: #51d1b9; */
    color: #e5ccaf;
    font-size: 21px;
}

.eye-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.download-btn {
    border: 1px #e5ccaf solid !important;
    color: #e5ccaf !important;
}
.download-btn:hover {
    background-color: #e5ccaf !important;
    color: white !important;
}

.exist-alert {
    color: #842029;
    width: 72%;
    background: #f8d7da;
    padding: 10px;
    border-radius: 7px;
    text-align: left;
    border-color: #f5c2c7;
    margin-bottom: 15px;
}

a.media {
    background: #eff6f9;
}

a.media:hover {
    background: #fff;
}

button.button.button-gradient.w-100.loading:hover {
    background: #d0021b;
}

.button-gradient:hover {
    background: #d0021b;
    color: #fff;
}

.submit:hover {
    background: #d0021b;
}

.filter-wrapper .form-control {
    height: 46px;
    padding: 10px 16px;
}

button.button.button-gradient.model {
    padding: 9px 10px;
}

span.button.button-gradient.btn-sm.float-right {
    float: right;
    margin-left: 5px;
}

.float-right {
    float: right;
}

.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.close-btn:hover {
    border: 2px solid #d0021b;
}

.pencil {
    color: #d0021b;
    cursor: pointer;
}

.order-progress-bar li span.status .pencil {
    position: absolute;
    top: 2px;
    width: 14px;
    right: 0;
}

.toast-success {
    background-color: #38c85a;
    color: #ffffff;
}

.toast-error {
    background-color: #a12d0a;
    color: #ffffff;
}

.accordion-body {
    border: 1px solid #d0021b;
    background: #e1e0e0;
}

span.button.button-gradient.btn-sm {
    border: 1px solid #d0021b;
    padding: 7px 11px;
}

.accordion {
    margin-bottom: 10px;
}
.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #bb2649;
}

.accordion-body {
    border-color: #bb2649;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.sale {
    color: #4caf50 !important;
    font-weight: 700 !important;
}

.cancel {
    color: #bb2649 !important;
    font-weight: 700 !important;
}

.draft {
    font-weight: 700 !important;
}
#status_value {
    color: #bb2649;
}

.custom-drop {
    border: 1px solid #bb2649;
    border-radius: 10px;
    background-color: #fff;
    border-color: #bb2649;
}

.f-color {
    color: #bb2649 !important;
}

#preview {
    max-width: 200px;
    max-height: 100px;
    margin: 10px;
}

/* Basic styling for demonstration */
.selected-values {
    margin-top: 10px;
}
.selected-value {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.selected-value span {
    margin-right: 10px;
}
.remove-icon {
    cursor: pointer;
    color: red;
    font-weight: bold;
    margin-left: 10px;
}

.first-column {
    width: 30% !important;
}
.second-column {
    width: 25%;
}
.third-column {
    width: 45%;
    text-align: justify;
}

/*-------------------------------------
Sample Module CSS Statt Here
----------------------------------------*/

.meta-details-list li {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding-top: 10px;
}

@media only screen and (max-width: 1030px) {
    .meta-details-list li {
        font-size: 14px;
    }
    .meta-details-list li .key {
        max-width: 26% !important;
    }
    .meta-details-list li .value {
        text-align: left !important;
        font-size: 12.5px;
    }
}

.meta-details-list li .key {
    max-width: 30%;
    flex: 0 0 30%;
    padding-right: 15px;
}

.meta-details-list li .value {
    flex: 1;
    text-align: right;
}

.td-img-wrap {
    display: inline-block;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 4px;
}

.td-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.custom-select-2 .select2-container--default .select2-selection--single,
.custom-select-2 .select2-container--default .select2-selection--multiple {
    background-color: #ebebeb;
    border: 1px solid #ebebeb;
    border-radius: 8px;
}
.custom-select-2 .select2-container .select2-selection--single {
    height: 52px;
    font-size: 16px;
    font-weight: 400;
}

.custom-select-2 .select2-container .select2-selection--multiple {
    min-height: 52px;
    font-size: 16px;
    font-weight: 400;
}

.custom-select-2
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 52px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.custom-select-2
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 13px;
    right: 6px;
    display: none;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #edcdc2 !important;
}

.custom-select-2
    .select2-container
    .select2-search--inline
    .select2-search__field {
    /* height: 52px;
    line-height: 52px; */
    margin-top: 17px;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 400;
}

.custom-select-2
    .select2-container
    .select2-search--inline
    .select2-search__field {
    font-family: "Poppins";
}

.custom-select-2
    .select2-container
    .select2-search--inline
    .select2-search__field::placeholder {
    color: #100f0f !important;
}

.selectedUsers {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
}

.emailBadge {
    display: inline-flex;
    align-items: center;
    background-color: #e3e3e3;
    color: #100f0f;
    padding: 7px 10px;
    margin: 5px;
    border-radius: 7px;
    font-size: 14px;
    border: 1px solid #0a0909;
}

.emailBadge span {
    cursor: pointer;
    margin-left: 5px;
    font-weight: bold;
}

/*
.chip {
    color: #bb2659;
    display: block;
    padding: 5px 10px;
    background-color: #edcdc2;
    border-radius: 7px;
    font-size: 14px;
    position: relative;
    margin: 5px;
    padding-right: 25px;
    border: 1px solid #bb2649;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chip .close {
    position: absolute;
    right: 5px;
    top: 2px;
    font-size: 21px;
    cursor: pointer;
}

.chip .close:hover {
    color: #f00;
} */
.ty-table hr {
    margin: 0;
}
.email-status {
    color: #464e5f;
    border: 2px solid #985665;
    padding: 5px;
    border-radius: 7px;
    background: white;
}

.email-value {
    color: #8b4253db;
}
.list-unstyled {
    display: flex;
}
@media only screen and (max-width: 1030px) {
    .list-unstyled {
        font-size: 10px;
        display: grid;
    }
    .list-unstyled h5 {
        font-size: 15px;
    }
    .list-unstyled li {
        margin-top: 10px;
        margin-left: 0%;
    }
}

.map-search {
    border-color: #f4a8bc;
}

#map .mapboxgl-popup-content{
    padding: 0 !important;
}

.ind-info-box{
    padding: 8px;
}

.ind-info-box + .ind-info-box{
    border-top: 2px solid #EBEDF4;
}

.ind-info-box-inner{
    background-color: #E6F0F4;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    padding: 6px;
    overflow: hidden;
}

.ind-info-box .title{
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #000000;
}

.ind-info-box .desc{
    font-family: "Poppins";
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #5C6062;
}

.data-box{
    padding: 15px;
    border: 1px solid #eba790;
        border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.data-box-title{
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #919191;
    padding-bottom: 10px;
}

.data-box .value{
    font-size: 26px;
    font-weight: 600;
    line-height: 28px;
    color: #464e5f;
}


@media only screen and (max-width: 767px){
    .data-box-title{
        font-size: 14px;
    }

    .data-box .value{
        font-size: 22px;
    }
}

.w-20{
        width: 20% !important;
}



/*------------------------------------
Story Month Page CSS Start
-------------------------------------*/

.hero-story-banner{
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-story-banner::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: rgba(0,0,0,0.4);
}

.hero-story-banner-content h1{
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.hero-story-banner-content h1::after{
    content: "";
    display: inline-block;
    width: 100px;
    height: 8px;
    background-color: #D0021B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.month-story-content{
    padding: 40px 0;
}

.month-story-content h2{
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 15px;
}

.month-story-content p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.month-story-content p + h2{
    margin-top: 40px;
}

@media only screen and (max-width: 767px){
    .hero-story-banner{
        height: 300px;
    }

    .hero-story-banner-content h1{
        font-size: 32px;
    }
    .month-story-content h2{
        font-size: 20px;
    }
}

.edit-shipment-notes:hover {
    color: white;
}

.edit-shipment-notes:hover svg {
    color: white;
    fill: white;
}
/*------------------------------------
Story Month Page CSS End
-------------------------------------*/
.ship-det-card {
  
    border: 1px dotted #bb2649;
 
}

.ship-det-card .card-header{
    background-color: #EDCDC2;
}

.eta-con {
    min-width: 140px;
}

.custom-padding {
    padding: 7px;
}

.data-list li{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
    line-height: 24px;
}

.data-list li + li{
    border-top: 1px solid #ccc;
}

.edit-bl-data-btn{
    color: #BB2649;
    display: inline-block;
    margin-left: 5px;
}

.text-red-1,
.text-red-1:hover{
    color: #BB2649;
}

.order-progress-bar li span.upload-text + a{
    margin-top: 0 !important;
    margin-left: 8px;
    display: inline-flex;
}

.status small{
    font-size: 11px;
}

.update_date{
    width: 13px;
    height: 13px;
    margin-left: 5px;
}

@media only screen and (max-width: 767px){
    .custom-file-label{
        margin-top: 0.15rem !important;
    }

}

@media only screen and (max-width: 479px){
    .data-list li{
        font-size: 13px;
    }   
}


.shipment-details-wrap{
    background: #d4cacd;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    max-height: 750px;
    overflow-y: auto;
}

.no-shipment-available h5{
    color: #bb2649;
}


@media only screen and (max-width: 767px){
    .shipment-details-wrap{
        max-width: 500px;
    }   
}