*{
    padding: 0;
    margin: 0;
}
::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
    transition: .5s;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: #b3b3b3;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #f5f5f5;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
}

a, a:hover, a:active {
    color: #18a0fb;
    text-decoration: none !important;
}
.main_title {
    font-size: 32px;
    font-weight: bold;
}
.title_1 {
    font-size: 20px;
    font-weight: bold;
}
.sub_title_2 {
    font-size: 18px;
    font-weight: bold;
}
.sub_title_3 {
    font-size: 16px;
    font-weight: bold;
    line-height: 36px;
}
.f-header {
    background-color: #ffff;
    padding: 1rem;
    /* box-shadow: 0px -6px 12px 2px hsla(0, 0%, 0%, 0.8); */
    position: sticky;
    top: 0;
    z-index: 112 !important;
    /* border-bottom: 1px solid #dfdfdf; */
    margin-left: 72px;
    transition: .3s;
}
.f-logo {
    display: inline-block;
    padding: 13px 20px;
}

.f-logo img {
    width: 100px;
}
.f-content {
    position: relative;
}

.f-login {
    padding: 20px;
}

.f-container-li {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.f-form-login {
    /* max-width: 500px; */
    margin: 0 auto;
    position: relative;
}

.main_title {
    font-size: 32px;
    line-height: 72px; 
    text-align: center;
    letter-spacing: -0.015em;
    font-weight: 700;
}
.sub_title {
    font-size: 16px;
    margin-top: 10px;
}
.l-box {
    padding: 1rem 4rem;
    background: #f5f5f5;
    border-radius: 4px;
    position: relative;
    max-width: 500px;
    margin: 50px auto 0;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.title_1 {
    font-weight: bold;
    font-size: 20px;
    line-height: 72px;
/* identical to box height, or 360% */
    text-align: center;
    letter-spacing: -0.015em;
}

.label-input {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 400;
    color: #000;
}

.mb-20 {
     margin-bottom: 20px; 
}

.f-input {
    background: #FFFFFF;
    border: 1px solid #dcdcdc;
    box-sizing: border-box;
    border-radius: 5px;
    height: 42px;
    box-shadow: none !important;
    width: 100%;
    padding: 0 10px;
}

.mb-0 {
    margin-bottom: 5px;
}
.center {
    text-align: center;
}

.p-15 {
    padding: 15px;
}

.btn-login {
    background: #18A0FB;
    border-radius: 4px;
    border: 1px solid #18A0FB;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.015em;
    height: 50px;
    width: 200px;
    outline: none;
    transition: .3s;
}

.btn-login:hover {
    background: #1a91e0;
}
footer {
    position: relative;
    background: #F2F2F2;
    height: 70px;
}





/* = Checkbox , radio css*/

 .pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

/* Input */
.pure-material-checkbox > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -7px;
    top: -5px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    box-shadow: none;
    outline: none !important;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
    border: 0;
}

/* Span */
.pure-material-checkbox > span, .pure-material-radio > span  {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    outline: none;
    font-weight: 400;
    color: #000;
    line-height: 32px;
    font-size: 14px;
}

/* Box */
.pure-material-checkbox > span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 3px 11px 3px 1px;
    border: solid 1px; /* Safari */
    border-radius: 4px;
    width: 24px;
    height: 24px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
    outline: none;
    background: #fff;
    border-color: #C7C7C7;
}

/* Checkmark */
.pure-material-checkbox > span::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 3px;
    width: 14px;
    height: 7px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

/* Checked, Indeterminate */
.pure-material-checkbox > input:checked,
.pure-material-checkbox > input:indeterminate {
    background-color: #a9c13b;
}

.pure-material-checkbox > input:checked + span::before,
.pure-material-checkbox > input:indeterminate + span::before {
    border-color: #a9c13b;
    background-color: #a9c13b;
}

.pure-material-checkbox > input:checked + span::after,
.pure-material-checkbox > input:indeterminate + span::after {
    border-color: #fff;
    outline: none;
}

.pure-material-checkbox > input:indeterminate + span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

/* Hover, Focus */
.pure-material-checkbox:hover > input {
    opacity: 0.04;
}

.pure-material-checkbox > input:focus {
    opacity: 0.12;
}

.pure-material-checkbox:hover > input:focus {
    opacity: 0.16;
}

/* Active */
.pure-material-checkbox > input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.pure-material-checkbox > input:active + span::before {
    border-color: #fff;
}

.pure-material-checkbox > input:checked:active + span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}

/* Disabled */
.pure-material-checkbox > input:disabled {
    opacity: 0;
}

.pure-material-checkbox > input:disabled + span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.pure-material-checkbox > input:disabled + span::before {
    border-color: currentColor;
}

.pure-material-checkbox > input:checked:disabled + span::before,
.pure-material-checkbox > input:indeterminate:disabled + span::before {
    border-color: transparent;
    background-color: currentColor;
}

.pure-material-radio {
    z-index: 0;
    position: relative;
    display: inline-flex;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    /* font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system); */
    font-size: 16px;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
}

/* Input */
.pure-material-radio > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -4px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    outline: none !important;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}
 
/* Circle */
.pure-material-radio > span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 6px 10px 2px 0;
    border: solid 1px #bdbdbd; /* Safari */
    /* border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6); */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    vertical-align: top;
    transition: border-color 0.2s;
}

/* Check */
.pure-material-radio > span::after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #a9c13b;
    transform: translate(5px, 5px) scale(0);
    transition: transform 0.2s;
}

/* Checked */
.pure-material-radio > input:checked {
    background-color: #a9c13b;
}

.pure-material-radio > input:checked + span::before {
    border-color: #a9c13b;
}

.pure-material-radio > input:checked + span::after {
    transform: translate(5px, 5px) scale(1);
}

/* Hover, Focus */
.pure-material-radio:hover > input {
    opacity: 0.04;
}

.pure-material-radio > input:focus {
    opacity: 0.12;
}

.pure-material-radio:hover > input:focus {
    opacity: 0.16;
}

/* Active */
.pure-material-radio > input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.pure-material-radio > input:active + span::before {
    /* border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243)); */
}

/* Disabled */
.pure-material-radio > input:disabled {
    opacity: 0;
}

.pure-material-radio > input:disabled + span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.pure-material-radio > input:disabled + span::before {
    border-color: currentColor;
}

.pure-material-radio > input:disabled + span::after {
    background-color: currentColor;
}

/*Toggle Switch*/

.toggle {
  cursor: pointer;
  display: inline-block;
}

.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 54px;
  height: 26px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #a9c13b;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}



.form-wizard .form-wizard-steps {
  margin: 50px 0;
}
.form-wizard .form-wizard-steps li {
  width: 25%;
  float: left;
  position: relative;
}
.form-wizard .form-wizard-home li {
    width: 50%;
}
.form-wizard .form-wizard-steps li::after {
  /* background-color: #000000; */
  content: "";
  height: 2px;
  /* left: 0; */
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  border-bottom: 1px solid #000000;
  /* border-top: 1px solid #000000; */
}
.form-wizard .form-wizard-steps li span {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  position: relative;
  text-align: center;
  width: 40px;
  z-index: 1;
}
.form-wizard .form-wizard-steps li:last-child::after {
  /* width: 50%; */
}
.form-wizard .form-wizard-steps li.active span, .form-wizard .form-wizard-steps li.activated span {
  background-color: #a9c13b;
  color: #ffffff;
  border-color: #a9c13b;
}
.form-wizard .form-wizard-steps li.active::after, .form-wizard .form-wizard-steps li.activated::after {
  background-color: #a9c13b;
  right: 50%;
  width: 100%;
  border-color: #a9c13b;
  z-index: 1;
}
.form-wizard .form-wizard-steps li.activated::after {
  width: 100%;
  border-color: #a9c13b;
}
.form-wizard .form-wizard-steps li:first-child::after {
  width: 0;
}
.form-wizard .form-wizard-steps li span.step1:after {content: "Step 1";position: absolute;top: -45px;left: -15px;color: #000;width: 75px;font-size: 16px;}
.form-wizard .form-wizard-steps li span.step2:after {content: "Step 2";position: absolute;top: -45px;left: -15px;color: #000;width: 75px;font-size: 16px;}
.form-wizard .form-wizard-steps li span.step3:after {content: "Step 3";position: absolute;top: -45px;left: -15px;color: #000;width: 75px;font-size: 16px;}
.form-wizard .form-wizard-steps li span.step4:after {content: "Step 4";position: absolute;top: -45px;left: -15px;color: #000;width: 75px;font-size: 16px;}
.w-100 {
    width: 100%;
    max-width: 100%;
}
.p-2-7 {
    padding: 2rem 7rem;
}
.d-flex-3 {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.col-3 {
    width: 33.333%;
    /* flex: 1 1 33.333%; */
    padding: 0 15px;
}
.col-4 {
    width: calc(25% - 15px);
}
.button-selection {
    height: 42px;
    background: #FFFFFF;
    border: 1px solid #A9C13B;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 14px;
    width: auto;
    padding: 0 20px;
    outline: none;
    transition: .3s;
    width: 100%;
}

.button-selection:hover, .button-selection:focus, .button-selection:active {
    background: #a9c13b;
    color: #fff;
}
.typeBusiness li.active .button-selection {
   background: #a9c13b;
   color: #fff;
}
.mt-70 {
    margin-top: 70px;
}
.bootstrap-select .dropdown-menu {
    top: 40px;
    padding: 10px 0;
}

.bootstrap-select>.dropdown-toggle {
    height: 42px;
    line-height: 42px;
    padding: 0 15px;
}
.bootstrap-select .dropdown-menu li a {
    line-height: 30px;
}
.d-flex-3 button {
    width: 100%;
}
.sub_title_300 {
    display: block;
    font-weight: 300;
    font-size: 12px;
    margin-top: 5px;
}
.e-add-member {
    display: block;
    margin: 30px 0;
    position: relative;
}

.e-add-member i {
    font-size: 25px;
    color: #a9c13b;
    margin-right: 15px;
}

.e-add-member a {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.b-priamry {
    display: inline-block;
    height: 45px;
    font-size: 15px;
    color: #fff !important;
    background: #18a0fb;
    line-height: 45px;
    padding: 0 20px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    max-width: 180px;
    border: 0;
    outline: none;
    font-weight: 500;
}
.b-cancel {
    display: inline-block;
    height: 45px;
    font-size: 15px;
    color: #fff !important;
    background: #C0C0C0;
    line-height: 45px;
    padding: 0 20px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    max-width: 180px;
    border: 0;
    outline: none;
}
.n-step {
    text-align: right;
}

.mb-100 {
    margin-bottom: 100px;
}
.d-flex-gr {
    display: flex;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    /* background: #fff; */
    /* border-radius: 3px; */
}
.d-flex-gr .form-group {
    width: 50%;
    padding: 0 15px;
}
.f-info {
    display: block;
    position: relative;
}

.f-info .nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #a5a5a5;
}

.f-info .nav li {
    width: 33%;
}

.f-info .nav li a {
    line-height: 35px;
    padding: 0;
    text-align: center;
    color: #999;
    transition: .3s;
    border-radius: 0;
}

.f-info .nav li.active a {
    background: transparent;
    color: #000;
    font-weight: 500;
    border-bottom: 3px solid #a9c13b;
    margin-bottom: -2px;
}

.mb-50 {
    margin-bottom: 50px;
}
.flex-wrap {
    flex-wrap: wrap;
}
.f-500 {
    font-weight: 500;
}
.mb-10 {
    margin-bottom: 10px;
}
.ab-input {
    position: absolute;
    top: 8px;
    font-size: 25px;
    color: #a9c13b;
    right: 8px;
    cursor: pointer;
    z-index: 11;
}
.input-icon {
    position: absolute;
    top: 11px;
    font-size: 20px;
    color: #333;
    right: 8px;
    cursor: pointer;
    z-index: 11;    
}
.relative {
    position: relative;
}

.f-tags {
    display: flex;
    margin-top: 5px;
    position: relative;
    flex-wrap: wrap;
}

.i-tag {
    display: inline-flex;
    margin-right: 10px;
    margin-bottom: 10px;
    background: #a9c13b;
    color: #fff;
    font-size: 12px;
    padding: 0 30px;
    line-height: 25px;
    border-radius: 3px;
    position: relative;
}

.i-tag i {
    font-size: 25px;
    position: relative;
    cursor: pointer;
    font-style: normal;
}
textarea {
    width: 100%;
    border-radius: 4px;
    height: 170px;
    padding: 15px;
    font-size: 14px;
    outline: none;
    resize: none;
}
.mega-button {
    width: 100%;
    height: 50px;
    background: #a9c13b;
    color: #fff !important;
    outline: none;
}

.l-25 {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    margin: 10px 0;
}
.f-address label.pure-material-checkbox {
    font-size: 14px;
}
.dropdown-menu {
    padding: 5px 10px;
    text-align: center;
}
.datepicker td, .datepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: none;
}
.datepicker.dropdown-menu th, .datepicker.dropdown-menu td {
    padding: 6px 8px;
}
.datepicker table tr td.day:hover {
    background: #eeeeee;
    cursor: pointer;
}
.datepicker table tr td.active.active, .datepicker table tr td.active:hover.active {
    background: #a9c13b;
    color: #fff;
}
.f-nav-right {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    padding-right: 15px;
}

.li-cart a {
    font-size: 16px;
    color: #000;
    position: relative;
    display: flex;
}
.li-cart a svg {
    width: 17px;
    height: 17px;
    fill: #333333;
}
.li-cart i {color: #9a9a9a;}

.li-settings {
    display: flex;
    align-items: center;
    position: relative;
}

.li-cart {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: #f2f2f2; */
    border-radius: 4px;
    transition: .3s;
    margin-right: 15px;
}

.br-eee {
    /* border-left: 1px solid #DFDFDF; */
}

.li-users a {
    display: flex;
    align-items: center;
    padding: 0;
    color: #44475a !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.li-cart:hover, .li-notifications:hover, .li-users:hover {
    background: #F3F6F9;
} 
.li-users img {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    object-fit: cover;
}

.li-users span {
    line-height: 22px;
    text-transform: capitalize;
    padding: 0 1rem 0 1rem;
}
.li-notifications {
    margin: 0px 15px 0 15px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: #f2f2f2; */
    border-radius: 4px;
    transition: .3s;
}

.li-notifications a {
    color: #1f1f1f;
    font-size: 18px;
}

.li-notifications a svg {
    width: 16px;
    height: 16px;
    margin-top: 8px;
    fill: #636363;
}
.li-users {
    position: relative;
    transition: .3s;
    padding: 5px 5px 5px 10px;
    border-radius: 4px;
}
.menu-user {
    position: absolute;
    top: 130%;
    background: #fff;
    right: 0px;
    width: 170px;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    opacity: 0;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    z-index: -1;
    visibility: hidden;
    border-radius: 6px;
}
.menu-user.in {
    top: 50px;
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
ul {
    list-style-type: none;
}

.menu-user ul {
    margin: 0;
    padding: 15px 0;
}

.menu-user ul li a {
    padding: 1.25rem;
    font-weight: 400;
}
.bg-fff {
    background: #FFF;
    z-index: 1;
}
.wrapper-full {
    position: relative;
    background: #f2f2f2;
    overflow: hidden;
}

.aside {
    width: 260px;
    float: left;
    position: sticky;
    top: 50px;
    transition: .3s;
    top: 60px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 112;
    background: #fff;
    box-shadow: 0 0 2rem 0 rgba(136,152,170,.15);
}
.site-not-login .aside {
    display: none;
}
.nav_categories {
    padding-top: 30px;
}
.nav_categories nav li {
    margin-bottom: 10px;
}
.nav_categories nav li a {
    width: 100%;
    display: block;
    line-height: 18px;
    font-family: Montserrat;
    font-style: normal;
    font-size: 14px;
    text-transform: capitalize;
    color: #828282;
    padding: 1.2em;
    /* border-left: 3px solid #f2f2f2; */
    position: relative;
    transition: 0.3s ease 0.1s;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 6px;
}

.nav_categories nav li.active a {
    background: #f2f2f2;
    /* font-weight: bold; */
    /* border-left: 3px solid #a9c13b; */
}
.nav_categories nav li a img {
    width: 18px;
    transition: 0.3s ease 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5em;
}
.nav_categories nav li a svg {
    width: 18px;
    height: 18px;
    position: absolute;
    left: 25px;
    transition: 0.3s ease 0.1s;
    fill: #636363;
}
.nav_categories nav li a:hover {
    background: #f9f9f9;
}

.nav_categories nav li.active a:hover img {
    animation: none;
}
.body-container {
    width: calc(100% - 260px);
    float: right;
    /* border-left: 1px solid #e6e6e6; */
    /* margin-left: auto; */
    min-height: 100vh;
    background: #f2f2f2;
    padding: 20px 0;
    z-index: 111;
    position: relative;
    transition: .3s;
}

.b-content {
    position: relative;
}

.pd-15 {
    padding: 45px 0px 0;
}

.title_heading {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
}
.heading-categories {
    padding: 0 2rem;
    position: relative;
    margin-bottom: 20px;
}

.uppercase {
    text-transform: uppercase;
}

.navigations_heading {
    position: relative;
}

.navigations_heading .d-flex-gr .li-item {width: auto;position: relative;padding: 0;}

.navigations_heading .d-flex-gr .li-item a {
    color: #4c4c4c;
    font-weight: 400;
    line-height: 30px;
    display: flex;
    position: relative;
    align-items: center;
    padding: 7px 10px;
    font-size: 14px;
}

.navigations_heading .d-flex-gr .li-item a i {
    margin-left: 15px;
    font-size: 12px;
}

.navigations_heading .d-flex-gr .li-item .sub_menu-2 a {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    padding: 10px 25px;
}
.navigations_heading .d-flex-gr .li-item a:hover {
    color: #18a0fb;
}
.sub_menu-2 {
    background: #ffffff;
    box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.15);
    padding-bottom: 20px;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    z-index: -1;
    visibility: hidden;
    top: 130%;
    position: absolute;
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
    width: 250px;
}

.navigations_heading .d-flex-gr .li-item:hover .sub_menu-2 {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
    z-index: 11;
}
.navigations_heading .d-flex-gr .li-item:last-child .sub_menu-2 {
    right: 0;
    overflow: inherit;
}
.s-ct-fw {
    position: relative;
    min-height: 80vh;
    background: #f2f2f2;
}

.pd-1rem {
    padding: 2rem;
}


.s-flt-rs {
    background: #FFFFFF;
    /* box-shadow: 0px 4px 18px rgba(53, 53, 53, 0.25); */
    border-radius: 4px;
    box-sizing: border-box;
}
.rec-01 {
    padding: 2rem 3rem;
}
.advance-box {
    display: none;
}
.advance-div {
    padding: 2rem 3rem;
}
.inp-box {
    width: 60%;
}
.inp-box input {
    background: #F3F3F3;
    border-radius: 4px;
    border-color: #f3f3f3;
    padding: 0 2rem;
}
.inp-box input::placeholder {
    font-style: italic;
}
.s-gr {
    align-items: center;
    flex-wrap: nowrap;
}

.box-view {
    width: 20%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.s-bt-adv {
    /* width: 20%; */
    text-align: right;
    padding: 0 2rem;
    position: relative;
    box-sizing: content-box;
}

.box-view a {
    font-size: 13px;
    line-height: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    margin: 2px;
    background: #f5f5f5;
    color: #808080;
    border-radius: 4px;
}
.box-view a.active {
    color: #fff;
    background: #18a0fb;
}
.btn-advance {
    background: #18A0FB;
    color: #fff !important;
    height: 42px;
    padding: 0 2rem;
    border-radius: 4px;
    font-weight: 500;
    outline: none !important;
}
.setPriceRange  .input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
}

.setPriceRange .input-group input {
    height: 40px;
    max-width: 145px;
    border: 0;
}

.setPriceRange .input-group .input-group-prepend button, .setPriceRange .input-group .input-group-append button {
    background: #fff;
    font-size: 20px;
    box-shadow: none;
}
.t-1 {
    display: block;
}

.t-2 {
    display: none;
}

.btn-advance.open .t-1 {
    display: none;
}

.btn-advance.open .t-2 {
    display: block;
}
.s-all.pr-content {
    position: relative;
    margin-top: 10px;
}

.mt-50 {
    margin-top: 50px;
} 
.p-container {
    position: relative;
    padding-bottom: 100px;
}
.all-items {
    position: relative;
}

.d-flex-start {
    display: flex;
    justify-content: flex-start;
    position: relative;
    align-items: flex-start;
}
.p-item {
    width: 100%;
    max-width: 250px;
    position: relative;
}

.p-group {max-width: 235px;margin-bottom: 15px;padding-bottom: 20px;/* box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 16px; */border-radius: 4px;background: #fff;min-height: 390px;position: relative;}

.p-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.p-image .thumbnail-pr {
    width: 235px;
    height: 235px;
    object-fit: contain;
}
.new-product-banner {
    position: absolute;
    left: 5px;
    top: 5px;
}

.new-product-banner span {
    background: #a9c13b;
    padding: 2px 7px;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.new-product-banner img, .sale-product-banner img {
    width: 60px;
}

.sale-product-banner {
    position: absolute;
    top: 5px;
    right: 5px;
}
.sale-product-banner span {
    background: #E86825;
    padding: 2px 7px;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.p-caption {
    padding: 0 1rem;
}
.sub_title_2 a {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
    display: block;
}

.sub_price {
    line-height: 20px;
    margin-bottom: 5px;
    font-weight: 400;
    color: #5d5d5d;
    width: 100% !important;
    font-size: 13px;
}

.sub_seller a {
    font-size: 13px;
    display: inline-block;
    color: #757575;
}

.sub_seller {
    margin-bottom: 10px;
}

.p-footer .btn-add-cart {
    width: 100%;
    border: 1px solid #eaf1c6;
    /* background: #fff; */
    /* color: #a9c03a; */
    text-transform: capitalize;
    outline: none;
    transition: .3s;
    padding: 6px 25px;
    font-size: 14px;
    height: 38px;
    border-radius: 4px;
    background: #f0f4db;
    color: #a9c03a;
    font-weight: 500;
}

.p-footer {
    position: relative;
    padding: 0 1rem;
}

.p-footer button:hover {
    color: #fff;
    background: #a9c03a;
    border: 1px solid #a9c03a;
}
.b-load-more {
    background: #18A0FB;
    border-radius: 4px;
    color: #fff !important;
    padding: 0 5rem;
    line-height: 48px;
}
.default-search {
    border: 1px solid #CDCDCD;
    box-sizing: border-box;
    border-radius: 7px;
    padding: 11px 18px;
}

.df-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.df-l {
    width: 50%;
    display: flex;
}

.df-l .sub_title_2 {
    margin-right: 15px;
}

.df-l .i-tag {
    margin: 0;
}

.ex-date {
    color: #18a0fb;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    margin-right: 50px;
}
.flex-end {justify-content: flex-end;align-items: center;}
.del-results {
    color: #000 !important;
    display: inline-block;
    background: #C4C4C4;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 20px;
    font-size: 30px;
    transition: .3s;
}
.del-results:hover {
    color: #fff !important;
    background: #a9c13b;
}
.df-bd {
    font-size: 14px;
    position: relative;
    color: #656565;
}

.d-span-bold {
    font-weight: 600;
}

.d-span span:first-child, .d-span-bold span:first-child {
    width: 100%;
    display: inline-block;
    max-width: 150px;
}

.d-span {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}
.border-top {
    border-top: 1px solid #CDCDCD;
}
.mt-20 {
    margin-top: 20px;
}
.w-50 {
    width: 50%;
    display: flex;
}

.dropdown.bootstrap-select.form-control {
    height: auto;
}

.a-location {
    margin-left: 20px;
}

.a-location a {
    font-size: 14px;
    color: #000;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.a-location i {
    font-size: 25px;
    color: #a9c13b;
    margin-right: 15px;
}
.ch-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.ch-items {
    margin-right: 30px;
    /* margin-bottom: 15px; */
}
.mw-50 {
    max-width: 50%;
}
.btn-mega-second {
    background: #18A0FB;
    border-radius: 4px;
    height: 45px;
    padding: 0 5rem;
    color: #fff !important;
    outline: none;
    font-size: 16px;
    font-weight: 500;
}

.mr-30 {
    margin-right: 30px;
}
.mw-250 {
    min-width: 250px;
}
.f-modal {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.f-modal-content {
    display: flex;
    /* height: 100%; */
    align-items: center;
    justify-content: center;
    padding: 50px;
    max-width: 800px;
    margin: 50px auto;
}

.f-modal-body {
    background: #fff;
    width: 100%;
    border-radius: 16px;
    position: relative;
}
.closeModal {
    font-size: 45px;
    font-weight: 300;
    color: #000 !important;
    position: absolute;
    right: 15px;
    top: 0px;
    z-index: 1;
}
.sv-s-parameter-c {
    position: relative;
}

.p-3rem {
    padding: 3rem;
}

.sv-s-parameter-c .close-modal {
    position: absolute;
    font-size: 30px;
    width: 35px;
    height: 35px;
    color: #000;
    right: 15px;
    font-weight: 500;
    top: 15px;
    z-index: 1111;
    background: #dadada;
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
}

.title_2 {
    font-size: 24px;
    font-weight: 600;
}

.t-capiter {
    text-transform: capitalize;
}

.field-title {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 10px;
}

.mt-30 {
    margin-top: 50px;
}

.btn-primary {
    background: #18A0FB;
    border-radius: 4px;
    color: #fff;
    border-color: #18a0fb;
    height: 45px;
    width: 250px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background: #2dabff !important;
    border-color: #18a0fb !important;
}
.mw-600 {
    max-width: 600px;
}
.h-50 {
    height: 50px;
}
.ls-item {
    width: 100%;
    margin-bottom: 10px;
    background: #FFFFFF;
    /* box-shadow: 0px 0px 9px rgba(100, 100, 100, 0.25); */
    border-radius: 4px;
    padding: 10px;
    /* border: 1px solid #eee; */
    /* margin-top: -1px; */
    border-left: 0;
    border-right: 0;
    position: relative;
}

.ls-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.ls-group .p-image .thumbnail-pr {
    width: 100px;
    height: 70px;
    /* border: 1px solid #ccc; */
    /* border-radius: 10px; */
    margin-right: 15px;
    object-fit: cover;
    border-radius: 6px;
}
.ls-group .p-image {
    display: flex;
    align-items: center;
    width: 40%;
}

.ls-group .p-image .sub_seller {
    margin: 0;
}

.rec-banner {
    position: relative; 
    z-index: 1; 
    display: flex;
    justify-content: flex-start;
    width: 150px; 
}

.rec-banner span {
    display: inline-block;
    margin: 10px;
    font-size: 11px;
    background: #a9c13b;
    border: 1px solid #a9c13b;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    line-height: 17px;
    padding: 0px 10px;
    color: #ffffff;
}

.rec-banner span:last-child {
    background: #E86825;
    border: 1px solid #e86825;
    color: #fff;
}
.shop_details_template .rec-banner {
    position: absolute;
    width: 100%;
    justify-content: space-between;
}
.gird-item .rec-banner {display: flex;align-items: flex-start;justify-content: space-between;position: absolute;z-index: 2;flex-direction: row;width: 100%;}


.gird-item .rec-banner span {
    margin-bottom: 0;
}

.rec-price {
    width: 30%;
    text-align: right;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rec-price.sub_price.gird-var {
    flex-direction: column;
    align-items: flex-end;
}
.rec-price .sub_price {
    margin: 0;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}
.rec-price .dropdown.bootstrap-select {
    max-width: 200px;
}

.price {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
}
.rec-price .selectpicker {
    box-shadow: none;
    max-width: 200px;
    margin-left: auto;
    background: #ffffff;
    border: 1px solid #777;
    cursor: pointer;
    outline: none;
}
.elipse-1 {
    width: 35px;
    height: 35px;
    background: #18a0fb;
    color: #fff;
    box-sizing: border-box;
    font-size: 8px;
    text-transform: uppercase;
    text-align: center;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
}
.s-map-view {
    position: relative;
    margin: 0;
    display: block;
}

.map-iframe {
    width: 58%;
}

.map-list-delivery {
    width: 40%;
}

.l-map-result {
    display: block;
    position: relative;
    margin-top: 10px;
    max-height: 900px;
    overflow: auto;
}

.i-result {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.result-number {
    padding: 0 15px;
}

.result-number span {
    width: 28px;
    height: 28px;
    display: inline-block;
    background: #a9c13b;
    text-align: center;
    line-height: 28px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
}

.title-supplier a {
    color: #a9c13b;
    line-height: 25px;
    margin-bottom: 10px;
    display:block;
}

.result-if span {
    display: block;
    font-size: 14px;
    color: #979797;
    line-height: 20px;
    margin-bottom: 5px;
    font-weight: 500;
}

.underline {
    text-decoration: underline;
}
#map {
    width: 100%;
    height: 900px;
}

/*=======Your Cart========*/

.aside-your-cart {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -600px;
    bottom: 0;
    width: 500px;
    background: #f2f2f2;
    transition: .5s;
}
.aside-your-cart.in {
    right: 0;
}
.sidenav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 115;
    height: 120vh;
    background-color: rgba(0,0,0,0.5);
    will-change: opacity;
     opacity: 0; 
     visibility: hidden; 
    transition: .5s;
}
.sidenav-overlay.in {
  opacity:1;
  visibility:visible;
}
.f-yc-container {
    display: block;
    position: relative;
    height: 100%;
}

.f-yc-wall {
    position: relative;
    top: 0;
}

.f-yc-heading {
    background: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.f-yc-heading a {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.f-yc-heading a i {
    margin-right: 15px;
    font-size: 25px;
}
.CkOvlScrll {
    position: relative;
    max-height: calc(100vh - 185px);
    overflow: auto;
}
.f-yc-cart-item {
    padding: 15px;
    position: relative;
    text-align: center;
    width: 100%;
}

.table-cart {
    width: 100%;
    position: relative;
    max-height: 500px;
    overflow: auto;
}

.heading-tb {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    align-items: center;
    color: #8A8A8A;
    display: flex;
    justify-content: space-between;
}
.l-i-row {
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-top: 15px;
}
.col-6 {
    width: 50%;
    padding: 0 15px;
}

.col-3 {
    /* width: 25%; */
    padding: 0 10px;
    margin-bottom: 10px;
}
 
.i-item-cart {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.d-items {
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    color: #9c9c9c;
    cursor: pointer;
    transition: .3s;
}
.d-items:hover {
    color: #a9c13b;
}
.c-item {
    display: flex;
}

.thumbnail-i {
    width: auto;
    margin-right: 10px;
}

.thumbnail-i img {
    width: 75px;
    height: 60px;
    object-fit: contain;
} 
.thumbnail-title {
    font-size: 13px;
    text-align: left;
}

.thumbnail-title label, .thumbnail-title span {
    display: block;
    margin: 0;
    line-height: 20px;
}

.sub-table-c {
    width: 100%;
}

.thumbnail-title span {
    color: #979797;
    font-size: 12px;
}
.me-txt {
    font-weight: bold;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    text-decoration-line: underline;
    color: #18A0FB;
}
.td-price span {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    align-items: center;
    text-align: right;
    color: #A9C13B;
}
.col-60 {
    width: 60%;
}

.col-2 {
    width: 20%;
    padding: 0 10px;
}

.col-40 {
    width: 40%;
    padding: 0 10px;
}
.al-center {
    align-items: center;
}
.input-c {
    font-size: 12px;
    border: 0;
    height: 35px;
    padding: 0;
}
.c-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 30px;
}

.c-footer a {
    background: #a9c13b;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0.3px;
    width: 100%;
}
.font-bold {
    font-weight: 600;
}
.SelChk-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
}

.SelChk-label label {
    font-weight: 400;
    display: block;
}

.SelChk-label a {
    text-decoration: underline;
    color: #18a0fb;
}

.SelChk-Pay {
    position: relative;
}

.SelChk-Pay .bootstrap-select>.dropdown-toggle {
    padding-left: 65px;
    border: 0;
}
.SelChk-Pay .form-control {
    height: 42px;
}
.visa-icon {
    position: absolute;
    top: 8px;
    z-index: 1;
    left: 10px;
}

.visa-icon img {
    width: 40px;
}
.pd-50 {
    padding: 50px 15px;
    border-bottom: 1px solid #ccc;
}
.pd-30 {
    padding: 30px;
    border-bottom: 1px solid #ccc;
}
.SelChk-Pay.pl-15 .bootstrap-select>.dropdown-toggle {
    padding-left: 15px;
    border: 0;
}
.border-fff {
    /* border: 0; */
}

.SelChk-label label span {
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 15px;
    color: #4D7CFE;
}
.SelChk-label span {
    font-weight: bold;
}
.pb-15 { 
    padding-bottom: 15px;
}
.pb-30 { 
    padding-bottom: 30px;
}
.border-bottom {
    border-bottom: 1px solid #ccc;
}
.text-dark a {
    color: #000;
    text-transform: capitalize;
    font-size: 15px;
}

.text-hover-primary a:hover {
    color: #18a0fb;
}
.supplier-brand {
    width: 50px;
    margin-right: 10px;
    height: 50px;
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
    border-radius: 4px;
    padding: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.supplier-brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.mr-5 {
    margin-top: 5px;
}
.mb-5 {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 5px;
}

.mb-5 label {
    margin-right: 15px;
}
.fl-column {
    flex-direction: column;
}
.SelChk-label label.pure-material-checkbox span {
    margin: 0;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
    color: #000;
}
.border-0 {
    border: 0 !important;
}
.e-b.return-site a {
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 500;
}
.e-b.return-site i {
    font-size: 25px;
    color: #000;
    margin-right: 20px;
}
.p-details-content {
    display: block;
    position: relative;
}

.thumbnail-classic-title {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: -0.015em;
}

.thumbnail-classic-price {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
}

.thumbnail-classic {
    margin-top: 10px;
}
#supplier_info {
    background: #fff;
    border-radius: 4px;
}
.thumbnail-classic-gallery {
    /* width: 40%; */
    padding: 0;
}

.thumbnail-classic-info {
    width: 55%;
    padding-right: 50px;
    padding-left: 50px;
    background: #fff;
    border-radius: 4px;
}
.thumbnail-addcart {
    position: relative;
    margin-bottom: 40px;
    margin-top: 30px;
}

.add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
}

.c-pull-left {
    /* width: 50%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-pull-left button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background: #a9c13b;
    color: #fff;
    text-align: center;
    padding: 0;
    line-height: 50px;
    outline: none;
}

.c-pull-left input {
    height: 50px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #979797;
    font-size: 24px;
    width: 120px;
    margin: 0 20px;
    outline: none;
    font-weight: 600;
}

.add-to-cart button.button.btn-cart {
    height: 50px;
    width: 200px;
    border: 0;
    background: #18A0FB;
    border-radius: 4px;
    color: #fff;
    outline: none;
    font-weight: 600;
}
.thumbnail-desc {
    position: relative;
    margin-bottom: 40px;
}

.thumbnail-desc-title {
    font-weight: 600;
    line-height: 30px;
}

.thumbnail-desc p {
    font-size: 14px;
}

.thumbail-categories {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
}

.cat-box {
    width: 50%;
    margin-bottom: 15px;
}

.cat-box label {
    display: block;
}

.cat-box span {
    font-size: 14px;
    color: #777;
}
.thumbnail-img .slides li img {
    /*width: 65px;*/
    height: 55px;
    object-fit: cover;
    cursor: pointer;
}
.meet-your-maker {
    position: relative;
}

.thumbnail-classic-Subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}

.f-16 {
    font-size: 16px;
}

.thumbnail-classic-Subtitle span {
    font-size: 12px;
    font-weight: 400;
    align-items: center;
    letter-spacing: -0.015em;
    text-decoration-line: underline;
    color: #18A0FB;
    margin-left: 10px;
}

.meet-your-maker p {
    font-size: 14px;
}

.popular-item {
    display: flex;
    position: relative;
    align-items: center;
}

.popular-item-img {
    width: 60px;
    margin-right: 15px;
    border: 1px solid #a7a7a7;
}

.popular-item-img img {
    width: 100%;
}

.popular-item-case {
    font-size: 14px;
}

.popular-item-title {
    font-size: 14px;
    font-weight: 500;
}
.popular-item-title a {
    color: #292929;
    text-transform: capitalize;
}
.popular-location {
    font-family: Montserrat;
    font-style: italic;
    font-weight: normal;
    font-size: 18px;
    line-height: 36px;
}
.popular-location a { 
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px; 
    align-items: center;
    text-align: center;
    letter-spacing: -0.015em;
    text-decoration: underline;
    color: #A9C13B;
    margin-left: 15px;
}
.popular-maps #map {
    height: 500px;
}
.pt-50 {
    padding-top: 50px;
}

.p-credits-content {
    position: relative;
}

.credit-title {
    text-align: center;
    margin-bottom: 45px;
}

.credit-title h2 {
    font-size: 36px;
}

.rows {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.credit-thumbnail {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 16px;
    border-radius: 0;
    position: relative;
    padding: 2rem;
    text-align: center;
    min-height: 252px;
}

.credit-thumbnail-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 15px;
    display: block;
}

.credit-thumbnail-subtite {
    margin-bottom: 15px;
}

.credit-thumbnail-subtite p {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
}

.credit-thumbnail-form {
    margin-bottom: 20px;
    display: block;
}

.credit-thumbnail-form input {
    background: #FFFFFF;
    border: 1px solid #BEBEBE;
    box-sizing: border-box;
    border-radius: 8px;
    height: 50px;
    outline: none;
}

.credit-thumbnail-form input::placeholder {
    font-style: italic;
}

.credit-thumbnail-discount {
    text-align: center;
    letter-spacing: -0.015em;
    color: #A9C13B;
    font-weight: 600;
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
}
.sub-p {
    max-width: 60%;
}
.sub-p p {
    font-size: 14px;
    line-height: 23px; 
    letter-spacing: -0.015em; 
    color: rgba(80, 80, 80, 0.8);
}
.total-credit {
    display: flex;
    align-items: center;
}

.total-credit-title {
    position: relative;
    margin-right: 20px;
}

.total-credit-title .bold {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.total-credit-title .f-14 {
    font-size: 14px;
    text-align: right;
    font-weight: 600;
    font-style: italic;
}

.c-18A0FB {
    color: #18A0FB;
}

.total-credit-per {
    width: 175px;
    height: 80px;
    background: #a9c13b;
    color: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
}


.cr-available {
    position: relative; 
}
.ways-to-earn {
    display: none;
}

.f-95 {
    font-size: 95px;
    letter-spacing: -0.015em;
    font-weight: 500;
}

.c-primary {
    color: #a9c13b;
}

.open-ways {
    color: #a9c13b !important;
    font-weight: 500;
    letter-spacing: -0.015em;
    text-decoration-line: underline !important;
    font-size: 24px;
    line-height: 25px;
    position: relative;
    display: block;
}
.open-ways:before {content: "Other Ways to Earn";}
.open-ways.other:before {content: "Close";}
.t-ordered {
    padding: 0 20px;
}
.tabs-orders {
    display: flex;
    justify-content: space-around;
    padding: 0 15px;
    position: relative;
    margin: 0;
    background: #ffffff;
    border-radius: 4px;
    /* border: 1px solid #e2e2e2; */
}

.tabs-orders .tab-link {
    text-align: center;
    width: 20%;
}
.tabs-orders .tab-link a {
    display: block;
    line-height: 50px;
    color: #a2a2a2;
    font-size: 14px;
    font-weight: 400;
}
.tabs-orders .tab-link.active a {
    font-weight: 500;
    /* background: #a9c13b; */
    /* color: #fff; */
}
.tabs-orders .tab-link.current a, .tabs-orders .tab-link.active a {
    font-weight: 600;
    color: #000;
}
.o-search-heading {
    justify-content: flex-start;
    align-items: center;
}

.o-search-form {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}
.o-search-form select {
    height: 42px;
    box-shadow: none;
    cursor: pointer;
}
.o-search-form i {
    position: absolute;
    top: 14px;
    left: 25px;
}

.o-search-form input {
    padding-left: 35px;
}

.o-search-form label {
    width: 115px;
    font-weight: 400;
    color: #777;
    margin: 0;
    font-size: 14px;
}
.th-title-orders {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
    background: #ffffff;
    border-radius: 4px;
    /* border: 1px solid #e2e2e2; */
}

.th-item {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #696969;
    width: calc(100%/7);
    padding: 0 15px;
}

.o-listed {
    position: relative;
}
.tr-ordered {
    background: #fff;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 16px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: #353535 !important;
    border: 1px solid #eee;
    border-left: 0;
    border-right: 0;
    margin-top: -1px;
    margin-bottom: 0;
}

.td-ordered {
    padding: 20px 15px;
    width: calc(100%/7);
    display: flex;
    justify-content: space-between;
    position: relative;
}
.td-ordered span {
    font-size: 14px;
    position: relative;
    text-transform: capitalize;
    word-break: break-all;
}
.th-addr, .td-addr {
    width: calc(100%/7*2);
    align-items: center;
}
.droppdown-item {
    cursor: pointer;
}
.dropdown-ul {
    position: absolute;
    background: #Fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 16px;
    width: 125px;
    top: 25px;
    display: none;
    z-index: 1;
}

.dropdown-ul ul {
    margin: 0;
}

.dropdown-ul ul li a {
    display: block;
    color: #000;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}
.dropdown-ul ul li a:hover {
    background: #f9f9f9;
}
.dropdown-ul ul li a span {
    display: block;
    font-size: 10px;
}

span.due-unpaid, .c-4D7CFE {
    color: #4D7CFE;
}

span.due-soon {
    color: #FEAD4D;
}

span.due-Overdue {
    color: #FE4D4D;
}
.td-ordered span.s-status {
    background: #8BC34A;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    padding: 4px 8px;
    word-break: break-word;
}

.td-ordered span.s-status.Processed, .td-ordered span.s-status.Driver, .td-ordered span.s-status.Available.Delivery, .td-ordered span.s-status.Available.Pickup {
    background: #03A9F4;
}

.td-ordered span.s-status.Cancelled, .td-ordered span.s-status.Refund, .td-ordered span.s-status.Approved {
    background: #F44336;
}

.td-ordered span.s-status.Cancel {
    background: #FFC107;
}
.td-ordered span.s-status.Delivery {
    font-size: 10px;
}
.order-link {
    position: absolute;
    right: 10px;
}
.order-setting {
    right:100%;
}
.order-link.show .order-setting {
  display:block;
}
.paid-link.show .paid-ul {
  display:block;
  right: 0;
}
.back-link {
    color: #000 !important;
    font-weight: 600;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}

.back-link i {
    font-size: 25px;
    margin-right: 10px;
}
.o-l.d-flex-gr {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.o-l.d-flex-gr span {
    font-size: 14px;
    line-height: 36px;
    font-weight: 300;
}
.th-img {
    width: 150px;
    padding: 10px 15px;
}

.th-p-name {
    width: 25%;
}

.th-noi {
    width: calc(55% - 150px);
}

.th-tt {
    width: 20%;
    text-align: center;
    justify-content: center;
} 

.thumbnail-pr img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}
.td-ordered.th-tt span {
    font-weight: 600;
}
.bold {
    font-weight: bold;
}
.e-site-container {
    padding: 30px 15px 100px;
}
.e-profile-content {
    max-width: 90%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 4px;
    padding: 0;
    position: relative;
}
.e-profile-content .tabs-orders .tab-link a {
    font-weight: 400;
}

.e-profile-content .tabs-orders .tab-link.current a {
    font-weight: 600;
}
.o-hidden {
    position: relative;
    overflow: hidden;
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 100%;
}
.o-hidden img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.bs-upload {
    text-align: center;
}

.o-hidden i {
    position: relative;
    line-height: 120px;
    font-size: 35px;
}

.o-hidden input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.bs-upload span {
    font-size: 14px;
    font-weight: 600;
}
.e-profile-content .tabs-orders .tab-link {
    width: 25%;
}

.e-profile-content .tabs-orders {
    padding: 0;
    border-bottom: 1px solid #ccc;
}

.e-profile-content .tabs-orders .tab-link.current {
    margin-bottom: -1px;
}
.padding-15 {
    padding: 15px 25px;
} 

.profile-container {
    padding: 3rem;
    max-width: 90%;
    margin: 0 auto;
}
.flex-start {
    justify-content: flex-start;
}
.f-address-group {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
.facility-list {
    border: 0;
    padding: 30px 20px;
}
.pb-0 {
    padding-bottom: 0 !important;
} 
.two-column {
    width: calc(50% - 10px);
    position: relative;
}
.sub_title_2 span i {
    margin-right: 10px;
}
.sub_title_2 a.f-14 {
    font-weight: 500;
    font-size: 14px;
    color: #03A9F4;
    text-decoration: underline !important;
    margin-bottom: 0;
}
.mDone-content {
    padding: 50px;
    text-align: center;
    position: relative;
}

.mDone-content h5 {
    font-size: 30px;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
}
.f-12 {
    font-size: 12px;
}

.mDone-content p {
    color: #777;
    margin-bottom: 20px;
}
.local-goodness .pure-material-radio {
    margin-right: 30px;
    font-family: "Montserrat";
    outline: none;
}
.local-goodness .pure-material-radio > span {
    color: #fff;
}

.local-goodness .pure-material-radio input {
    background-color: rgba(var(--pure-material-onsurface-rgb, 255, 255, 255), 0.6);
    outline: none !important;
}

.local-goodness .pure-material-radio input:checked + span::before {
    border-color: #fff;
}

.local-goodness .pure-material-radio > span::after {
    background: #fff;
}

.local-goodness .pure-material-radio > span::before {
    border-color: #fff;
}
.pure-local-cb .pure-material-radio input {
    height: auto;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.pure-local-cb .pure-material-radio span:after {
    top: 7px !important;
    left: 1px !important;
    height: 6px;
    width: 6px;
}

.pure-local-cb .pure-material-radio span {
    line-height: 32px;
}
.local-goodness .alert-nt p {
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
}

.alert-nt {
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: red;
}
.childSub-item {
    background: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.25);
    padding-bottom: 20px;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    z-index: -1;
    visibility: hidden;
    top: 0;
    right: 130%;
    position: absolute;
    width: 100%;
    border-radius: 4px;
}

.sub_menu-2 li {
    position: relative;
}

.sub_menu-2 li.sub_li_item:hover .childSub-item {
    opacity: 1;
    visibility: visible;
    right: 100%;
}
.c11 {
    display: block;
    padding: 0;
    margin-bottom: 20px;
}
.c12 {
    font-size: 16px;
}
.c12 .i-tag {
    align-items: flex-start;
    min-width: 100px;
    font-size: 14px;
    margin: 0 5px;
    justify-content: space-between;
    padding: 0 10px;
}
.c12 .i-tag span {
    display: inline-block;
    padding: 0 10px;
}
.d-flex-gr.show {
    display: flex !important;
}
#map_view {
    align-items: flex-start;
}
.product-loading {
    text-align: center;
    padding: 50px;
    background: transparent;
}
.ss-container {
    position: relative;
    padding: 15px;
    margin-bottom: 50px;
}

.ss-header {
    display: block;
    position: relative;
}

.ss-head-shop {
    height: 315px;
    width: 100%;
    display: flex;
    position: relative;
}
.ss-bg {
    background-size: cover !important;
}
.ss-overlay {
    height: 80px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.ss-shop-info {
    position: absolute;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-left: 185px;
    color: #fff;
    justify-content: space-between;
    padding-right: 20px;
}

.basic-banner {
    padding-left: 20px;
}
.ss-logo {
    position: absolute;
    left: 15px;
    bottom: 15px;
    border: 2px solid #fff;
    border-radius: 2px;
    background: #fff;
}
.thumbnail-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
}
.ss-logo a {
    display: block;
    width: 150px;
    height: 150px;
    background-size: cover !important;
}
.ss-text {
    display: block;
    position: relative;
}
.ss-title-shop {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}
.ss-addr-shop {
    font-size: 12px;
    margin-bottom: 5px;
}
.ss-min-price {
    font-size: 12px;
}
.ss-min-price p {
    font-size: 12px;
    display: inline;
    margin-right: 20px;
}
.ss-btn-right {
    display: block;
    position: relative;
}
.ss-btn {
    height: 35px;
    border: 0;
    background: #a9c13b;
    padding: 0 10px;
    border-radius: 2px;
    font-size: 15px;
    outline: none;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}
.ss-btn i {
    font-size: 20px;
    padding-left: 5px;
    vertical-align: text-bottom;
}
.ss-body {
    position: relative;
    padding: 0;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 16px; */
    border-radius: 0;
}

.ss-review {
    display: block;
    background: #fff;
}

.ss-body .s-all.pr-content {
    /* background: #fff; */
    padding: 50px 15px;
}
.ss-videos {
    position: relative;
    padding: 70px;
    background-color: #ededed;
}
.ss-vdieo-container {
    display: block;
    position: relative;
    text-align: center;
}
.ss-review {
    position: relative;
    display: block;
    width: 100%;
    padding: 50px;
}
.ss-detail {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ss-detail-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}
.ss-detail-content {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
}
.detail-text {
    margin-bottom: 15px;
}
.ss-detail-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}
.ss-certificate {
    width: 65% !important;
    margin: auto !important;
}
.ss-certificate img {
    height: 70px;
    width: auto !important;
    margin: 0 auto;
}
.s6 {
    width: 50%;
    padding: 0 15px;
}
.maps-shop #map {
    height: 500px;
}
.shop-report {
    padding: 30px 0 30px 0;
}
.report-this-shop {
    text-align: center;
}
.report-this-shop a {
    color: #fff;
    background: #a9c13b;
    padding: 15px 25px;
    border: 1px solid #a9c13b;
    border-radius: 2px;
    font-weight: bold;
    display: inline-block;
    font-size: 14px;
}
.modal-reportSupplier .f-modal-content {
    margin: 50px 0;
}

.field-report p {
    font-size: 15px;
}

.field-report ul li {
    font-size: 15px;
    margin-bottom: 10px;
}

.field-report ul li label.pure-material-radio {}

.l-1 {
    margin-top: 10px;
}
.chatbox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.asideChatbox {
    width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    overflow: auto;
}

.asideHeader {
    position: sticky;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 15px;
    top: 0;
    z-index: 1;
    background: #fff;
}

.asideHeaderTitle {
    font-size: 18px;
    position: relative;
    font-weight: 600;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.searchChatbox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.searchChatbox input[type="text"] {
    border-radius: 40px;
    height: 40px;
    padding: 5px 10px 5px 35px;
    font-size: 14px;
    outline: none;
    transition: .3s;
    width: 100%;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
}
.searchChatbox input[type="text"]::placeholder {
    font-style: italic;
}
.searchChatbox span {
    position: absolute;
    left: 10px;
    font-size: 15px;
    color: #777;
    cursor: pointer;
} 
.asideChatbox-left {
    padding: 0;
}

.chatGroup {
    border: 0;
    /* border-radius: 6px; */
    position: relative;
    border-top: 1px solid #eee;
}
.chatGroup:last-child {
    border-bottom: 1px solid #eee;
}
.chatCollapseGr {
    display: flex;
}

.chatCollapseGr a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    color: #000;
    font-size: 14px;
    transition: .3s;
}

.chatCollapseGr a i {
    transition: .3s;
}

.chatGroup .card {
    border-top: 1px solid #eee;
    padding: 10px;
}
.fss157 {
    display: flex;
    position: relative;
}

.fss158 {
    display: flex;
    margin-bottom: 0;
    flex-direction: column;
    width: 100%;
}

.fss158 li {
    margin-bottom: 10px;
    position: relative;
}

.fss159 {
    display: flex;
    width: 100%;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    transition: .3s;
    position: relative;
}
.fss159:hover {
    background: #f9f9f9;
}

.fss158 li.active .fss159 {
    background: #f9f9f9;
}
.fss160 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.fss161 {
    width: 55px;
    margin-right: 15px;
    position: relative;
}

.fss161 img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 100px;
}
.fss161 .fss158-status {
    width: 11px;
    height: 11px;
    position: absolute;
    background: #000;
    border-radius: 10px;
    bottom: 5px;
    right: 5px;
    background: #fff;
}
.fss158 li.active .fss159 {
    background: #f6f6f6;
}

.fss162 {
    width: calc(100% - 60px);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #000;
}

.fss162-C {
    position: relative;
}

.fss162-name {
    font-weight: 500;
    line-height: 25px;
}

.fss162-bs {
    color: #98A9BC;
    font-size: 13px;
}

span.fss162-min {
    font-size: 11px;
    line-height: 25px;
    font-weight: 500;
    color: #98A9BC;
}

.fss161 .fss158-status.online {
    border: 3px solid #8BC34A;
}

.fss161 .fss158-status.offline {
    border: 3px solid #f96156;
}

.fss161 .fss158-status.busy {
    border: 3px solid #ffce39;
}

/*Chat box*/
.heading-nav {
    background: #f2f2f2;
    padding: 25px;
    position: relative;
}

.title-heading {
    font-weight: bold;
    text-transform: uppercase;
}
.contentChatbox {
    width: calc(100% - 400px);
    position: relative;
    border-left: 1px solid #eee;
}
.contentChatHeading {
    border-bottom: 1px solid #eee;
    padding: 11px;
    position: relative;
}

.contentChatHeading .fss162-C {
    display: flex;
    align-items: center;
}

.contentChatHeading .fss162-C .fss162-name {
    margin-right: 15px;
}

.contentChatHeading .fss162-C .fss162-bs {
    padding-left: 15px;
    line-height: 25px;
    position: relative;
}

.contentChatHeading .fss162-C .fss162-bs:before {content: "";width: 4px;height: 4px;background: #98A9BC;position: absolute;top: 10px;left: 0;border-radius: 10px;}
.chatBoxBody {
    position: relative;
    max-height: calc(100vh - 72px);
    overflow: auto;
}
.js-chatbox-display {
    padding: 25px 15px;
    position: relative;
}

.chatbox__notification {
    text-align: center;
    font-size: 14px;
    color: #98A9BC;
    line-height: 25px;
    margin-bottom: 20px;
}
.chatbox__notification span {
    display: block;
}
.comment__dp {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.dp-avt {
    position: relative;
}

.dp-avt img {
    width: 25px;
    height: 25px;
    border-radius: 100px;
    object-fit: cover;
}

.dp-cmt {
    background: #F2F4F6;
    border-radius: 30px;
    font-size: 14px;
    padding: 10px 15px;
    color: #252631;
    margin: 0 10px;
}

.cmt__k {
    flex-direction: row;
}

.dp-dtimes {
    font-size: 12px;
    color: #98A9BC;
}

.cmt__me {
    flex-direction: row-reverse;
}

.cmt__me .dp-cmt {
    background: #4D7CFE;
    color: #fff;
}
.chatbox__form {
    display: block;
    position: relative;
    padding: 15px;
}

.chatbox__form-input {
    height: 70px;
    border: 0;
}

.chatbox__form-submit {
    border: 0;
    background: transparent;
    position: absolute;
    right: 35px;
    padding: 10px;
    font-size: 22px;
}

.bl-001 {
    position: relative;
    padding: 15px 20px;
}

.r-001 {
    background: #ffffff;
    border-radius: 4px;
    padding: 15px 30px;
    margin-bottom: 30px;
    position: relative;
}

.c-001 {
    font-weight: 600;
    font-size: 18px;
}
.c-001 i {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 4px;
    font-size: 14px;
    color: #939393;
    margin-right: 10px;
}
.r-002 {
    margin-bottom: 20px;
}
.bt-001 {
    background: #d5eeff;
    border-radius: 4px;
    color: #18A0FB;
    border: 1px solid #18a0fb;
    height: 38px;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    padding: 0 30px;
    text-transform: capitalize;
}

.bt-001:hover {
    color: #fff;
    background: #2baaff;
}
.addAddress {
    margin-top: 15px;
}
.c-003 {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.r-003 {
    max-width: 500px;
}

.r-004 {
    margin-bottom: 15px;
}

.r-004 label {
    margin: 0;
}

.r-004 a {
    font-size: 15px;
    margin-right: 10px;
}
.loading-upload {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(255, 255, 255);
}
.loading-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}


.loading-upload img {
    width: 16px;
    height: 16px;
    display: inline-block;
}
.bage {
    display: inline-block;
    font-size: 11px;
    color: #ffffff;
    font-weight: 600;
    background: #a9c13b;
    padding: 1px 5px;
    border-radius: 4px;
    transform: translateY(-5px);
    font-family: monospace;
    position: absolute;
    top: -5px;
    right: -10px;
}

.d-your-cart {
    position: relative;
    display: block;
    padding: 0 20px;
}
.f-yc-cart-item .empty_img {
    width: 285px;
    display: inline-block;
    margin-bottom: 10px;
}

.f-yc-cart-item p {
    font-size: 20px;
}
.shopping-btn {
    margin-top: 15px;
    display: block;
}

.shopping-btn a {
    display: inline-block;
}

.shopping-btn img {
    width: auto;
}
.d-001 {
    align-items: flex-start;
}

.ss-001 {
    width: 70%;
    padding: 0;
    position: relative;
}

.as-001 {
    width: 30%;
    padding: 0 15px;
    position: sticky;
    top: 75px;
}

.d-002 {
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.r-005 {
    position: relative;
    background: #fff;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.s-cart-bl-header {
    margin-bottom: 15px;
    align-items: center;
}

.tt-h2 {
    font-weight: 500;
}

.seller_businessname {
    color: #a9c13b;
}

.cart_icons {display: inline-block;}

.cart_icons a {
    font-weight: 300;
    font-size: 40px;
    line-height: 18px;
    color: #000;
    display: inline-block;
}

.shop_table {
    text-align: left;
    width: 100%;
    border-collapse: separate;
}
.shop_table thead tr {
    border-bottom: 2px solid #23232c;
}
.shop_table th {
    font-weight: 500;
    color: #3e3e3e;
    text-transform: uppercase;
    border-top: 0;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1f2f4;
}
.shop_table .product-thumbnail {
    width: 110px;
}
.shop_table .product-price {
    /* direction: rtl; */
    width: 25%;
} 
.shop_table .product-remove {
    width: 60px;
    text-align: right;
}

.product-thumbnail img {
    width: 100px;
    object-fit: contain;
    height: 70px;
}

.shop_table td {
    font-size: 13px;
    color: #23232c;
    padding: 20px 0;
    border-bottom: 1px solid #f1f2f4;
}
.quantity-label {
    color: #909097;
    margin-right: 20px;
}
.shop_table .quantity {
    display: inline-block;
    transition: 0.5s;
    padding: 0;
    border: 1px solid #e4e6eb;
}
.shop_table .quantity .input-group button {
    background: transparent;
    border: 0;
    font-size: 20px;
    line-height: 35px;
    outline: none;
    padding: 0;
}
.quantity .qty {
    -moz-appearance: textfield;
    border-width: 0;
    width: 66px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #23232c;
    text-align: center;
}
.quantity .input-group {
    display: flex;
}

.quantity .input-group input {
    -moz-appearance: textfield;
    border-width: 0;
    width: 60px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #23232c;
    text-align: center;
}
.cart_totals td {
    text-align: right;
    font-size: 13px;
}
.shop_table .quantity .input-group button strong {
    font-weight: 500;
}
.shop_table a.remove {
    display: inline-block;
    font-size: 1.5em;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: red!important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
}
.shop_table .product-thumbnail a {
    display: block;
}

.shop_table td.product-name a {
    color: #000;
    font-weight: 500;
}

.shop_table td.product-subtotal {
    font-weight: 500;
    text-align: center;
}
.shop_table th.product-subtotal {
    text-align: center;
}
table.shop_table svg {
    width: 12px;
    height: 12px;
    transition: 0.5s;
    stroke: #909097;
    fill: #909097;
}
.cart_coupon {
    display: block;
    margin-top: 15px;
}

.coupon label {
    font-weight: 500;
    font-size: 14px;
    display: block;
}

.coupon_button {
    display: flex;
    align-items: center;
    position: relative;
}

.coupon_button input {
    border: 1px solid #a5a9ac;
    height: 35px;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

.coupon_button button {
    height: 35px;
    border: 0;
    margin-left: 15px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
    background: #000;
    color: #fff;
    line-height: 35px;
    min-width: 100px;
    outline: none;
} 
.cart-collaterals {
    position: relative;
    background: #fff;
    border-radius: 4px;
    padding: 15px;
}

.cart_totals h2 {
    font-size: 22px;
    margin: 0 0 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.shop_table .cart-subtotal th {
    text-transform: capitalize;
    color: #000;
    font-weight: 600;
}
.wc-proceed-to-checkout {
    display: block;
    margin: 50px 0 0;
    position: relative;
}

.checkout-button {
    display: block;
    background: #a9c13b;
    color: #fff !important;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
    width: 100%;
    border: 1px solid #a9c13b;
}
.checkout-page {
    width: 100%;
}

.chekcout-method {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.address-method, .checkout-wc {
    background: #ffffff;
    border-radius: 4px;
    margin-bottom: 30px;
}

.address-method .f-yc-cart-item:last-child {
    border: 0;
}

.checkout-wc .SelChk-label {
    align-items: flex-start;
}
.qty-amount .input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
}

.qty-amount .input-group button {
    background: transparent;
    width: 20px !important;
    min-width: 10px !important;
    padding: 0;
    font-weight: 300;
}
.module-wrapper {
    padding: 12px 20px;
    margin: 20px 10px 10px;
    background: #f6f6f6;
    align-items: center;
    border-radius: 5px;
}
.shop-item .sub_price {
    font-size: 13px;
}

.shop-item .sub_title_2 a {
    font-size: 15px;
    font-weight: 500;
}
@media screen and (max-height: 768px) {
    .table-cart {
    max-height: 390px;
    }
}
@media screen and (max-height:650px) {
    .table-cart {
      max-height: 340px;
    }
}
@media screen and (max-height:600px) {
    .table-cart {
      max-height: 290px;
    }
}
.empty_product {
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 70px;
}

.empty_product_i, .empty_order_i {
    display: inline-block;
    background-image: url(../../images-UI/front/ui/empty.png);
    background-position: 0 0;
    width: 101px;
    height: 75px;
}

.empty_product h2 {
    font-size: 13px;
}
.empty_order_i {
    background-image: url(https://freshspoke.com/images-UI/front/ui/empty-order.png);
    background-position: 0 0;
    width: 100px;
    height: 110px;
    background-size: contain;
    background-repeat: no-repeat;
}

.cart_loading, .loading_product, .updateCart, .loading_table {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #222;
    font-size: 13px;
    font-weight: 600;
}
.loader, .add-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-right-color: transparent;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    top: 0;
}
.cart_loading .loader, .loading_product .loader, .updateCart .loader, .loading_table .loader {
    width: 70px;
    height: 70px;
    border: 2px solid #222;
    border-right-color: transparent;
}
.cart_loading span, .loading_product span, .loading_table span {
    display: block;
}
.loading_table {
    z-index: 113;
    top: 0;
    position: fixed;
}
.loading_product {
    min-height: 100px;
    z-index: 100;
    background: transparent;
}
.added-items {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #a9c13b;
    border-radius: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2;
}
.add-loader {
    border: 2px solid #000000;
    border-right-color: transparent;
    width: 22px;
    height: 22px;
}
.reponsive-table {
    position: relative;
}
@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.freshspoke-item-link {
    position: relative;
    background: #fff;
}

.item-incart {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 6px 6px 0 0;
}
.incart_ {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    height: 100%;
    align-items: center;
    justify-content: center;
} 
.gird-item .p-caption {
    padding-top: 10px;
    min-height: 125px;
    padding-bottom: 5px;
}
.sub_price .selectpicker {
    max-width: 100%;
    font-size: 13px;
    padding: 5px 10px;
    height: auto;
}
.variations_pr {
    font-size: 13px;
    color: #a2a2a2;
    font-weight: 400;
    width: 100%;
    line-height: 34px;
}
.freshspoke-item-link .thumbnail-pr {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 6px 6px 0 0;
}
.subTotalOrder-1 {
    font-size: 14px;
}

.subTotalOrder-1 .bold {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 30px;
}

.subTotalOrder-1 .bold span {
    display: inline-block;
    min-width: 100px;
    font-weight: 500;
}
.p-footer .input-group {
    display: flex;
    align-items: center;
    /* background: #f2f2f2; */
    justify-content: space-between;
}

.p-footer .input-group input {
    width: 70px;
    margin: 0 10px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #777;
    border-radius: 4px !important;
}
.gird-item .p-footer .input-group input {
    width: 100%; 
}
.p-footer .input-group .btn-outline-secondary {
    box-shadow: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    background: #a9c13b;
    color: #fff !important;
    text-align: center;
    padding: 0;
    line-height: 30px;
    outline: none;
    font-size: 16px;
}
.loading-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
}

.loading-item-c {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-group {
    position: relative;
}
.paid_status i {
    display: none;
}
.paid_status.Unpaid, .paid_status.Overdue {
    display: flex;
    margin-right: 10px;
    align-items: center;
    cursor: pointer;
}

.paid_status.Unpaid span, .paid_status.Overdue span {
    margin: 0;
}
.paid_status.Unpaid i, .paid_status.Overdue i {
    display: inline-block;
    font-size: 10px;
    margin-left: 2px;
}
.total-payment.open .paid-ul {
    display: block;
}

.help-block {
    font-size: 13px;
    color: #fd2c2c;
}

.alert {
    font-size: 14px;
 /*   background: #d1e3bc;
    color: #4CAF50;
    border-color: #4CAF50;*/
}
span.woocs_special_price_code {
    font-size: 13px;
    font-weight: 500;
}

.shop_table td.product-name {
    min-width: 170px;
    word-break: break-all;
    flex-wrap: wrap;
    padding: 0 20px;
}
.updateCart {
    top: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}
.success_alert {
    position: relative;
    text-align: center;
    padding-top: 50px;
}

.success_alert p {
    font-size: 14px;
}
#showNotification .modal-notification {
    display: block;
}
#emptyMethod, #emptyAddress {
    text-align: center; 
}
#emptyMethod p, #emptyAddress p {
    font-size: 14px;
    color: #797979;
}
.emptymethod-icon {
    display: inline-block;
    background-image: url(https://freshspoke.com/images-UI/front/ui/empty-method.png);
    background-position: 0 0;
    width: 110px;
    height: 85px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
.emptyAddress-icon {
    display: inline-block;
    background-image: url(https://freshspoke.com/images-UI/front/ui/emptyAddress.png);
    background-position: 0 0;
    width: 150px;
    height: 95px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
.modal-header {
    border-bottom: 0;
}

.title_header_main {
    font-weight: 600;
    font-size: 20px;
}
.input-fields {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 15px;
  position: relative;
}
 
.input-fields label {
  display: block;
  margin-bottom: 10px;
  color: #909090;
  font-weight: 400;
  font-size: 14px;
}
 
.info {
  font-size: 12px;
  font-weight: 300;
  display: block;
  margin-top: 50px;
  opacity: .5;
  color: #2e2e2e;
}

.column-1, .column-2 {
  width: 50%;
  padding: 0 15px;
} 
 
 
.column-1 input, .column-2 input {
  font-size: 14px;
  width: 100%;
  height: 40px;
  padding-right: 40px;
  padding-left: 16px;
  color: rgba(46, 46, 46, .8);
  border: 1px solid rgb(225, 225, 225);
  border-radius: 4px;
  outline: none;
}

.column-1 textarea {
    width: 100%;
    height: 100px;
    border: 1px solid rgb(225, 225, 225);
    padding-right: 40px;
    padding-left: 16px;
    border-radius: 4px;
    padding-top: 10px;
}
.column-1 input:focus,
.column-2 input:focus, 
.column-1 textarea:focus {
  border-color: #adadad;
} 
 
.small-inputs {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
 
.small-inputs div {
  width: calc(50% - 5px);
}
.dropdown.bootstrap-select {
    width: 100% !important;
}
.bootstrap-select .dropdown-menu {
    padding: 0;
    top: 45px;
    /* box-shadow: none; */
    border: 0;
}
.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}
.bootstrap-select .dropdown-menu li a {
    position: relative;
    font-size: 14px;
    padding: 5px;
    top: auto;
    right: auto;
}

.bootstrap-select .dropdown-menu li a.selected.active {
    background: #a9c13b;
}


.ic {
    position: absolute;
    width: 17px;
    height: 17px;
    left: 25px;
}

.ic-shop {
    background: url(https://freshspoke.com/images-UI/front/ui/ic-shop.png) no-repeat center;
    background-size: contain;
}
.ic-order {
    background: url(https://freshspoke.com/images-UI/front/ui/ic-order.png) no-repeat center;
    background-size: contain;
}
.ic-cart {
    background: url(https://freshspoke.com/images-UI/front/ui/ic-cart.png) no-repeat center;
    background-size: contain;
}
.ic-creditcard {
    background: url(https://freshspoke.com/images-UI/front/ui/ic-creditcard.png) no-repeat center;
    background-size: contain;
}


.removeLocation {
    cursor: pointer;
}
.removeLocation svg {
    width: 16px;
    height: 16px;
}

.show-delivery-wr {
    position: relative;
    padding: 0 25px;
}
.panel-group .panel {
    margin-bottom: 15px;
    border: 0;
    background: #fff;
    /* box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.1), 0 9px 10px -5px rgba(0, 0, 0, 0.04); */
    border-radius: 6px;
    /* border-color: #ababab; */
}

.panel-default>.panel-heading {
    background: #fff;
    border: 0;
    padding: 10px 15px;
    border-radius: 4px;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-title a {
    font-size: 14px;
}

.panel-title a:hover {
    color: #000000;
}

.panel-content {
    position: relative;
}

.panel-content p {
    font-size: 14px;
    color: #8a8a8a;
}

.updateAddress {
    position: absolute;
    right: 0;
    top: calc(50% - 14px);
    font-size: 14px;
    transition: .3s;
    opacity: 0;
}

.adr-001 {
    position: relative;
}

.address-i:hover .updateAddress {
    opacity: 1;
}
.form-method {
    position: relative;
}

.form-method form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    margin-top: 20px;
}

.rec-price .bootstrap-select>.dropdown-toggle {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
}
.setPriceRange {
    align-items: center;
}
.c-002 {
    padding: 0 15px;
    margin-bottom: 10px;
}
.nav_categories li a:hover img, .nav_categories li a:hover svg
{
    -webkit-animation: movedown 0.3s ease 0.1s forwards;
    animation: movedown 0.3s ease 0.1s forwards;
}

@-webkit-keyframes moveup
{
    0%{ transform: translateY(-3em); opacity: 0;}
    100%{ transform: translateY(0); opacity: 1;}
}

@keyframes moveup
{
    0%{ transform: translateY(-3em); opacity: 0;}
    100%{ transform: translateY(0); opacity: 1;}
}

@-webkit-keyframes movedown
{
    0%{ transform: translateY(-3em); opacity: 0;}
    100%{ transform: translateY(0); opacity: 1;}
}

@keyframes movedown
{
    0%{ transform: translateY(-3em); opacity: 0;}
    100%{ transform: translateY(0); opacity: 1;}
}
.action-ic span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 11;
    background: #f2f2f2;
    border-radius: 4px;
    font-size: 11px;
    color: #777;
    transition: .3s;
}
.action-ic span.removeLocation:hover {
    background: #ff4d4d;
    color: #fff;
}
.action-ic span.editLocation:hover {
    background: #d5eeff;
    color: #18a0fb;
}
   
.editLocation {
    cursor: pointer;
    margin-right: 10px;
}
.editLocation svg {
    width: 14px;
    height: 14px;
}
.flexslider .slides img {
    width: 100%;
    height: 320px;
    object-fit: contain;
}
.flexslider .slides > li {
    position: relative;
}
.cer_Img {
    display: flex;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.cer_Img img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
}
.pd-slider {
    padding: 0;
}
.variations_selectPrice {
    width: 45%;
    font-weight: 600;
}
.variations_selectPrice select {
    box-shadow: none;
    width: 100%;
    height: 50px;
    padding: 0 10px;
}

.thumbnail-addcart .input-group {
    display: flex;
    justify-content: space-between;
    max-width: 260px;
    margin-left: auto;
    background: transparent;
}

.add-to-cart .p-footer {
    width: 50%;
    text-align: right;
}

.thumbnail-addcart .input-group .input-group-prepend button, .thumbnail-addcart .input-group .input-group-append button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background: #a9c13b;
    color: #fff !important;
    text-align: center;
    padding: 0;
    line-height: 50px;
    outline: none;
    font-size: 25px;
}

.thumbnail-addcart .input-group input.input-c {
    background: #fff;
    height: 50px;
    text-align: center;
    border: 1px solid #979797;
    font-size: 24px;
    width: 120px;
    margin: 0 20px;
    outline: none;
    font-weight: 600;
    border-radius: 4px !important;
}
.nav_store {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a0a0c;
}

.nav_store ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.nav_store ul li a {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    font-weight: 400;
    padding: 0 25px;
    display: flex;
    height: 60px;
    align-items: center;
}
.nav_store ul li.active a {
    color: #fff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
}
.modal-footer .btn-secondary {
    height: 45px;
    min-width: 120px;
}
.selected-viewer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.selected-viewer a {
    font-size: 17px;
    margin-left: 10px;
    color: #565656;
}
.selected-viewer a.active {
    color: #03A9F4;  
}
 
.toolbar-control .product-size svg {
    fill: #bfbfc8;
    stroke: #bfbfc8;
    width: 16px;
    height: 16px;
}
.toolbar-control {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}

.toolbar-control .woocommerce-result-count {
    font-size: 13px;
    font-weight: 500;
    color: #777;
    margin: 0;
    line-height: 25px;
    margin-bottom: 4px;
}

.product-size {
    display: flex;
    align-items: center;
}

.product-size a {
    margin-left: 10px; 
}
.align-start {
    align-items: flex-start;
}
.two-column em.error {
    font-size: 12px;
    margin-top: 2px;
    display: block;
    color: #ff1d1d; 
}
.faq--area {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.faq--item {
    background: #ffffff;
    padding: 26px 30px;
    position: relative;
    border: 1px solid #dee2f1;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    /* width: calc(50% - 10px); */
    width: 100%;
}

.faq--item:last-child {
    margin-bottom: 0;
}

.faq--item .faq-title {
    cursor: pointer;
}

.faq--item .faq-title .title {
    margin: 0;
    padding-right: 15px;
    font-weight: 600;
    font-size: 18px;
}

.faq--item .faq-title .icon {
    width: 12px;
    height: 12px;
    border-top: 1px solid #372c7a;
    border-left: 1px solid #372c7a;
    position: absolute;
    right: 30px;
    top: 35px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.faq--item .faq-content {
    padding-top: 30px;
    padding-bottom: 10px;
    display: none;
    font-size: 16px;
}

.faq--item.open .icon {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.faq--item.active .faq-content {
    display: block;
}

@media (max-width: 575px) {
    .faq--item {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }

    .faq--item .faq-title .title {
        font-size: 20px;
    }

    .faq--item .faq-title .icon {
        right: 15px;
        top: 32px;
    }
}


.modal-custom {
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
}
.modal_cs-body {
    max-width: 1024px;
    margin: 70px auto 50px;
    position: relative;
}
.modal_cs-body .modal-content {
    border-radius: 6px;
    box-shadow: none;
}
.close_modal_ct {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #333;
}
.term-of-use-content {
    padding: 2rem;
}
.term-of-use-content h4 {
    font-size: 16px;
    font-weight: 600;
}
.tou-ctr p {
    font-size: 14px;
    margin-bottom: 15px;
}
#wrapper_payment_template form {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
}

#wrapper_payment_template form label {
    display: block;
    margin-bottom: 10px;
    color: #909090;
    font-weight: 400;
    font-size: 14px;
}

.jconfirm-content {
    font-size: 14px;
}
em.error {
    font-size: 14px;
    color: #F44336;
    font-style: normal;
}
.form-control.selectpicker {
    height: 34px;
}
.n-member {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.n-member-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    line-height: 30px;
}

.n-member-title span {
    font-weight: 600;
}

.n-member-title span.removeMember {
    padding: 2px 5px;
    line-height: 15px;
    cursor: pointer;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 11;
    background: #f2f2f2;
    border-radius: 4px;
    font-size: 11px;
    color: #777;
    transition: .3s;
}
.n-member-title span.removeMember:hover {
    background: #ff675c;
    color: #fff;
}
.breadcrumb {
    font-size: 14px;
}
.row.d-flex-gr:before, .row.d-flex-gr:after {
    content: none;
}
.main-nav {
    background: #fff;
    border-radius: 4px;
}
hr { 
    border-top: 1px solid #e0e0e0;
}

.ui-timepicker-wrapper {
    overflow-y: auto;
    max-height: 300px;
    width: 100%;
    max-width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    -webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);
    -moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);
    box-shadow:0 5px 10px rgba(0,0,0,0.2);
    outline: none;
    z-index: 10052;
    margin: 0;
}

.ui-timepicker-wrapper.ui-timepicker-with-duration {
    width: 13em;
}

.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-30,
.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-60 {
    width: 11em;
}

.ui-timepicker-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ui-timepicker-duration {
    margin-left: 5px; color: #888;
}

.ui-timepicker-list:hover .ui-timepicker-duration {
    color: #888;
}

.ui-timepicker-list li {
    padding: 10px 0px 10px 10px;
    cursor: pointer;
    white-space: nowrap;
    color: #000;
    list-style: none;
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
}

.ui-timepicker-list:hover .ui-timepicker-selected {
    background: #fff; color: #000;
}

li.ui-timepicker-selected,
.ui-timepicker-list li:hover,
.ui-timepicker-list .ui-timepicker-selected:hover {
    background: #18a0fb;
    color: #fff;
}

li.ui-timepicker-selected .ui-timepicker-duration,
.ui-timepicker-list li:hover .ui-timepicker-duration {
    color: #ccc;
}

.ui-timepicker-list li.ui-timepicker-disabled,
.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
    color: #888;
    cursor: default;
}

.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
    background: #f2f2f2;
}

.f-nav-left {
    position: relative;
    display: flex;
    align-items: center;
}

.f-nav-left a {
    color: #999 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    display: inline-flex;
    padding: 0 15px;
    border-radius: 4px;
    /* background: #f8f8f8; */
    transition: .3s;
    margin: 0;
}

.f-nav-left a.logo-transparent {
    background: transparent !important;
    padding: 0;
    margin: 0;
    display: none;
}

.f-nav-left a:hover {
    background: #F3F6F9;
}
.navigation-header {
    display: flex;
    margin: 0;
    position: relative;
}

.navigation-header li a {
    display: inline-flex;
    padding: 0 10px !important;
}

.navigation-header li a:hover {
    background: rgb(245, 248, 231) !important;
    color: #a9c13b !important;
}
.li-users-nLogin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}
.freshspoke-svg-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
    stroke: #636363;
}
.icon-headshot {
    border: 1px solid #363636;
    display: inline-flex;
    border-radius: 20px;
    padding: 3px;
    margin: 0 20px 0 10px;
}

.link-group {
    font-size: 14px;
}

.link-group a {
    padding: 0 10px;
    display: inline-flex;
    line-height: 30px;
    border-radius: 4px;
    transition: .3s;
    font-size: 12px;
    font-weight: 500;
}

.link-group a.c-primary {
    color: #18a0fb;
    background-color: #d5eeff;
    border-color: transparent;
}

.link-group a.c-success {
    color: #a9c13b;
    background-color: #f5f8e7;
    border-color: transparent;
}

.liReserve {
    display: inline-flex;
}

.liReserve a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
    background: #a9c13b;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 30px;
    transition: .3s;
}
.liReserve a:hover {
    background: #97ad33;
    color: #fff;
}
.footer {
    position: relative;
}
.footer .container {
    width: 100%;
    padding-left: 275px;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.d-flex {
    display: flex;
    width: 100%;
}

.justify-content-between {
    justify-content: space-between;
}

.order-md-1 {
    width: 30%;
    padding-left: 70px;
}

.order-md-2 {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer a {
    font-size: 13px;
    color: #7E8299;
    font-weight: 500;
}

.nav-dark a {
    display: inline-block;
    margin: 0 10px;
}
.mr-2 {
    margin-right: 1rem;
}
.font-weight-bold {
    font-weight: 500;
}
.text-muted {
    color: #777;
    font-size: 14px;
}
.subheader {
    position: relative;
    padding: 2rem;
}

.flex-column {
    flex-direction: column;
}

.text-white {
    font-family: Montserrat;
    font-style: normal;
    font-size: 24px;
    line-height: 36px;
    color: #444444;
    text-transform: uppercase;
    font-weight: bold;
}
.alert-white {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 1.5rem 2rem;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    border-radius: 0.42rem;
}

.gutter-b {
    margin-bottom: 25px;
}

.alert-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.25rem 0 0;
}
.svg-icon svg {
    width: 40px;
    height: 40px;
}
.svg-icon.svg-icon-primary svg g [fill] {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: #18a0fb;
}
.alert-text {
    color: #3F4254;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 14px;
}
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 1px solid #EBEDF3;
    border-radius: 6px;  
}
.card.card-custom {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    border: 0;
}

.card.card-custom > .card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 70px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}

.card-media {
    width: 100%;
    height: 300px;
}
.card-media img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}
.card-media iframe {
    height: 300px;
    width: 100%;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem 2rem;
}

p.text-dark-50 {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #777;
}
.card-filter {
    padding: 2.25rem;
} 
.f-filter-search {
    padding-top: 20px;
    border-top: 1px solid #ececec;
}
.selectControl {
    height: 42px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 14px;
    padding: 0 10px;
    width: 100%;
    max-width: 245px;
}

.expriDate {
    position: relative;
}

.expriDate input.f-input {
    padding: 0 35px 0 15px;
    font-size: 14px;
    outline: none;
    width: 100%;
    max-width: 245px;
}

.expriDate span {
    position: absolute;
    top: 12px;
    font-size: 20px;
    color: #9a9a9a;
    right: 10px;
}
.st-date {
    width: 50%;
    padding: 0 15px;
}
.fl-bx span {
    font-size: 14px;
}

.st-date span {
    font-size: 14px;
}
.f-filter-search .d-flex {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.fl-bx {
    width: 48%;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: space-between;
}

.fl-bx input {
    width: 125px;
    padding: 0 10px;
    font-size: 14px;
}
.ui-timepicker-standard {
    font-size: 14px  !important;
    font-family: "Montserrat" !important; 
}
.d-flex-gr.fl-column {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.d-flex-gr label, .st-date label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}
.e-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: capitalize;
    border-radius: 4px;
    color: #525252;
    font-weight: 500;
    background-color: #F3F6F9;
    border-color: #F3F6F9;
}

.e-item input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
}
.fb-list .table {
    font-weight: 400;
    font-size: 14px;
}

.fb-list .table thead th {
    font-weight: 500;
    border-bottom: 1px solid #e8e8e8;
}

span.status-td {
    text-transform: lowercase;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    padding: 1px 10px;
    background: #e1f3ff;
    border-radius: 4px;
    color: #18a0fb;
    border: 1px solid #a2daff;
    line-height: 17px;
}
.fb-list .table td {
    padding: 10px 8px;
    border-top-color: #f3f3f3;
}

.card-view {
    margin-bottom: 20px;
    position: relative;
}

.card-view .box-view {
    width: 100%;
    padding: 0;
}

.card-view .box-view a {
    margin-left: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
}

.site-not-login .body-container {
    width: 100%;
}

.site-not-login .body-container .b-content {
    width: 100%;
    margin: 0 auto;
    max-width: 1170px;
}

.footer .container .footer-row {
    border: 0;
    padding: 0;
    justify-content: space-between;
    /* width: 100%; */
}

.footer-left {
    /* width: 60%; */
    display: flex;
    align-items: center;
}

.footer-nav {
    display: flex;
    margin: 0 30px;
}

.footer-nav .footer-list {
    display: flex;
}

.footer-nav .footer-list a {
    margin: 0 10px;
    font-size: 14px;
}

.footer-nav .footer-list a:hover {
    color: #18a0fb;
}

.card-heading {
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.filter-ic {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-ic svg {
    width: 14px;
    height: 14px;
    fill: #5a5a5a;
}

.filter-ic span {
    margin: 0 10px;
    font-weight: 600;
    font-size: 20px;
}

.filter-ic span.title-icon {
    margin: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 4px;
}
.scroll-ft {
    cursor: pointer;
}
.scroll-ft .scrollDown svg {
    width: 12px;
    height: 12px;
    fill: #7d7d7d;
    transition: .3s;
    transform: rotate(-90deg);
}
.scroll-ft.open .scrollDown svg {
    transform: rotate(0);
}
.equiment_checked label.active .e-item {
    background: #a9c13b;
    color: #fff;
}
 
.facility-list .panel-group .panel {
    /* margin: 0; */
    border: 1px solid #cacaca;
    box-shadow: none;
    border-radius: 4px;
}
.panel-collapse {
    display: none;
}
.btn-add {background: #18a0fb;color: #fff;box-shadow: none;min-width: 100px;}

.btn-add:hover, .btn-add:focus {
    background: #1591e4;
    color: #fff;
    box-shadow: none;
}
.profile-facility-information .h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.profile-facility-information label {
    font-weight: 500;
    font-size: 14px;
}

.list-style {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list-style p {
    width: 48%;
}
.white-bg {
    background: #fff;
}

.radius-6 {
    border-radius: 4px;
}

.p-3 {
    padding: 3rem;
}
.justify-bettween {
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}

.modal-dialog {
    margin-top: 100px;
}

.modal-content {
    box-shadow: none;
    border: 0;
}
.header-reverse {
    background: #efefef;
    border-radius: 6px 6px 0 0;
    padding: 10px 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.reverse-location-title {
    display: inline-flex;
    align-items: center;
}

.reverse-location-title span {
    font-size: 12px;
    margin: 0 10px;
    cursor: pointer;
    color: #18a0fb;
}

.m-reverse-1 .modal-header .close-modal {
    top: 10px;
    right: 10px;
}
.reverse-location-content {
    text-align: center;
    position: relative;
    padding: 20px 0px 50px;
}

.reverse-location-content .h5 {}

.justify-center {
    justify-content: space-around;
}

.gr-content {
    position: relative;
}

.icon-delivery {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.icon-delivery img {
    width: 100%;
    max-width: 140px;
}

.info-delivery {
    position: relative;
}

.info-delivery h4 {
    font-size: 15px;
}

.info-delivery p {
    font-size: 14px;
}

.info-delivery p span {
    color: #18a0fb;
}

.info-delivery a {
    position: relative;
    top: auto;
    right: auto;
    font-size: 14px;
    display: inline-flex;
    border-radius: 4px;
    line-height: 34px;
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: .3s;
    margin-top: 15px;
    background: #c9e9fe;
    color: #18a0fb;
}

.title-picktimes {
    left: calc(50% - 40px);
    font-size: 16px;
    font-weight: 500;
    position: absolute;
}


.back-reverse-1 {
    font-size: 18px;
    display: inline-flex;
    width: 35px;
    height: 35px;
    color: #000 !important;
    font-weight: 500;
    z-index: 1111;
    background: #dadada;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
}
.back-reverse-1 {
    font-size: 18px;
    display: inline-flex;
    width: 35px;
    height: 35px;
    color: #000 !important;
    font-weight: 500;
    z-index: 1111;
    background: #dadada;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
}

.m-reverse-2 .reverse-location-title {
    margin: 0 20px;
}

.modal-body.body-reverse-2 {
    padding: 0;
}

.reverse-pickuptimes-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.aside-times {
    width: 30%;
    position: relative;
    height: 400px;
    overflow: auto;
}

.day-item {
    background: #1e1e2d;
    border-bottom: 1px solid #0e0e19;
    color: #fff;
    line-height: 56px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding-left: 30px;
    transition: .3s;
}
.day-disable {
    background: rgba(30, 30, 45, 0.9);
    color: #777;
    cursor: not-allowed;
    pointer-events: none;
}
.day-active  {
    background: #18a0fb;
    color: #fff;
}
.day-item:hover {
    background: #181823;
}

.day-active:hover {
    background: #18a0fb;
}
.contentTimes {
    width: 70%;
    height: 400px;
    overflow: auto;
}

.loadContentTime {
    position: relative;
    padding: 15px;
}

.titleSetDay {
    font-weight: 500;
    color: #18a0fb;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
}

.pickupTime-list {
    position: relative;
}

.i-pickup {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.selected-time {
    color: #f73131;
    font-size: 20px;
    line-height: 34px;
}

.time-selected {
    font-size: 14px;
    color: #777;
}

.action-selected {
    width: 100px;
    text-align: center;
}

.btn-success {
    width: 100%;
    color: #4cae4c;
    background-color: #d8eed8;
    border-color: transparent;
    font-weight: 500;
    transition: .3s;
    outline: none;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
    color: #fff;
    background-color: #8BC34A;
    border-color: #449d44;
}
.btn-light {
    width: 100%;
    font-weight: 500;
    outline: none;
}
.mb-0 {
    margin-bottom: 0;
}
.reverse-confirm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(191, 191, 191, 0.85);
    z-index: 1111;
    border-radius: 6px;
    display: none;
}

.reverse-confirm .fieldset {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fieldset-custom {
    background: #fff;
    padding: 30px 15px;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
}

.fieldset-custom legend {
    padding-top: 0px;
    border: 0;
    background: #fff;
    display: inline-block;
    width: auto;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.confirm-Content {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.confirm-Content h3 {
    margin: 0 0 20px;
}

.confirm-Content p {
    font-size: 14px;
}

.confirm-Content p span {
    display: block;
    color: #18a0fb;
}
.panel-sliding {
    position: relative;
    cursor: pointer;
}
.flex-center .form-wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-center.form-wizard .form-wizard-steps li.active::after {
    background: transparent;
    border-color: #a9c13b;
    z-index: 0;
}
.searchPostalCode {
    position: relative;
    padding: 0 30px;
}

.searchPostalCode input {
    background: #f2f2f2;
}

.searchPostalCode .bt-001 {
    height: 50px;
    text-transform: uppercase;
    font-weight: 600;
}

.searchPostalCode .geo-location {
    width: calc(100% - 150px);
}

.postal_code_in_no {
    position: relative;
    padding: 10px 30px;
    margin-top: 15px;
    display: block;
}

.postal_code_in_no p {
    text-align: center;
} 


.ui-timepicker-container {
    position: absolute;
    overflow: hidden;
    box-sizing: border-box;
}
.ui-timepicker,
.ui-timepicker-viewport {
    box-sizing: content-box;
    height: 205px;
    display: block;
    margin: 0;
}
.ui-timepicker {
    list-style: none;
    padding: 0;
    text-align: center;
}
.ui-timepicker-viewport {
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
}
.ui-timepicker-standard {
    background-color: #fff;
    border: 1px solid #dfdfdf;
    color: #222;
    margin: 0;
    padding: 0;
    z-index: 1111 !important;
}
.ui-timepicker-standard a {
    border: 1px solid transparent;
    color: #222;
    display: block;
    padding: 5px 10px;
    text-decoration: none;
}
.ui-timepicker-standard .ui-state-hover {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    font-weight: 400;
    color: #212121;
}
.ui-timepicker-standard .ui-menu-item {
    margin: 0;
    padding: 0;
}
.ui-timepicker-corners,
.ui-timepicker-corners .ui-corner-all {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.ui-timepicker-hidden {
    display: none;
}
.ui-timepicker-no-scrollbar .ui-timepicker {
    border: none;
} /*# sourceMappingURL=jquery.timepicker.min.css.map */

.ui-timepicker-input {
    text-transform: uppercase;
}


.wrapper_billing {
    width: 100%;
    display: block;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}
.align-right {
    text-align: right;
}

#btnPrint {
    width: auto;
    padding: 0 20px;
}
.billing-wpb {
    background: #fff;
    padding: 12px;
    border-radius: 6px;
/*     box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.35); */
    box-sizing: border-box;
    width: 100%;
    margin: 0;
}
.header_invoice {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    padding: 20px 55px;
    align-items: center;
}
.freshspoke {
    width: 60%;
    float: left;
}
.freshspoke img {
    height: 80px;
    margin-right: 10px;
    float: left;
}
.freshspoke .info {
    font-size: 12px;
    font-weight: 600;
    width: 220px;
    float: left;
}

.header-content {
    width: 90%;
    margin: 0 auto 20px;
    display: flex;
}
.header-content table {
    border: none;
    color: #030002;
    line-height: 18px;
    text-transform: capitalize;
    margin-left: 5px;
    margin-top: 5px;
}
.header-content table tr:first-child {
    border-bottom: 1px solid #919191;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
.header-content table tbody tr {
    border-bottom: none !important;
}
.header-content .tr-first td {
    width: 33.333%;
}
.header-content table tbody tr td {
    padding: 5px 0 !important;
    text-align: left;
    font-size: 12px;
    vertical-align: top;
}
.header-content table td {
    line-height: 20px;
}
.header-content table td span, .seller-info td span {
    display: block;
    line-height: 20px;
}

.header-content .tr-first span {
    font-size: 20px;
    font-weight: bold;
}

.main-content {
    padding: 0px 55px;
}
.main-content table {
    border: 1px solid #919191;
    width: 100%;
    page-break-inside: avoid;
    font-size: 14px;
}
.seller-info tr:first-child, .product-list thead tr:first-child {
    border-bottom: 1px solid #919191;
}
.product-list td, .product-list th {
    text-align: center;
    border: 1px solid #919191;
} 

.product-list th {
    background: #e0e0e0;
    padding: 5px 10px;
    font-size: 11px;
} 
.header-content table td, .seller-info td, .product-list td {
    padding: 5px 10px;
    font-size: 11px;
}
.order-total tr td:first-child, .invoice-total tr td:first-child {
    width: 70%;
}

.invoice-total tbody tr td {
    font-weight: 600;
    text-align: center;
    font-size: 11px;
}
.order-total td, .invoice-total td {
    border: 1px solid #919191;
    padding: 5px 10px;
}
.shop_table_responsive .order-total td, .invoice-total td {
    border: 0;
    border-bottom: 1px solid #f1f2f4;
    padding: 5px 10px;
}
.thank-div {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}
.invoice-footer ul {
    width: 100%;
    margin: 0px;
    padding: 0;
    list-style: none;
    float: none;
    text-align: center;
    font-weight: normal;
    line-height: 20px;
    color: #000;
    margin-bottom: 30px;
}
.invoice-footer ul li {
    font-size: 12px;
}
.printDiv { 
    padding: 20px;
}
.head-table td {
    font-size: 12px;
    line-height: 20px;
    padding: 5px;
    vertical-align: top;
}
table.table-item-iv {
    font-size: 11px;
}
.paid_status {
    margin-right: 20px;
}
.btn-info {
    color: #5bc0de;
    border-color: #d1f4ff;
    transition: .5s;
    background: #d5eeff;
    border-radius: 4px;
    height: 38px;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    padding: 0 30px;
    text-transform: capitalize;
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
    color: #fff;
    background-color: #31b0d5 !important;
    border-color: #31b0d5;
    outline: none !important;
}
.btn-danger {
    color: #F44336;
    transition: .5s;
    background: #ffe2e5;
    border-radius: 4px;
    height: 38px;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    padding: 0 30px;
    text-transform: capitalize;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    color: #ffffff;
    background-color: #F64E60 !important;
    border-color: transparent;
    outline: none !important;
}
.btn-success, .btn-default {
    color: #1BC5BD;
    transition: .5s;
    background: #c9f7f5;
    border-radius: 4px;
    height: 38px;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    padding: 0 30px;
    text-transform: capitalize;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
    color: #fff;
    background-color: #1BC5BD !important;
    border-color: #1BC5BD !important;
    outline: none !important;
}
.btn-default {
    background: #f1f1f1;
    color: #6d6d6d;
}
.modal-header button.close {
    position: absolute;
    font-size: 30px;
    width: 35px;
    height: 35px;
    color: #000;
    right: 10px;
    font-weight: 500;
    top: 10px;
    z-index: 1111;
    background: #dadada;
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
}

.dispute_images_preview {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.dispute_images_preview li {
    position: relative;
    margin-right: 5px;
}

.dispute_images_item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dispute_images_remove {
    position: absolute;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.dispute_images_item:before {content: "";position: absolute;top: 0;bottom: 0;left: 0;right: 0;background: rgba(0, 0, 0, 0.6);transition: .3s;opacity: 0;visibility: hidden;}

.dispute_images_remove:hover {
    background: #ff4a4a;
    color: #fff;
}

.dispute_images_item:hover:before, .dispute_images_item:hover .dispute_images_remove {
    opacity: 1;
    visibility: visible;
}
.error {
    font-size: 14px;
    color: red;
}
.n-member-title span.white-bg {
    background: #757575;
    color: #fff;
}
.aside-brand-toggle {
    display: none;
}

#changeOrderModal .th-item.th-img {
    width: 100px;
}

#changeOrderModal .td-ordered.th-img {
    width: 100px;
}

#changeOrderModal .th-item.th-p-price, #changeOrderModal .th-item.th-noi, #changeOrderModal .th-item.th-tt {
    width: 18%;
}

#changeOrderModal .td-ordered.th-img img.thumbnail-pr {
    height: 50px;
}

#changeOrderModal .td-ordered.th-p-price, #changeOrderModal .td-ordered.th-noi, #changeOrderModal .td-ordered.th-tt {
    width: 18%;
}

#changeOrderModal .th-tt {
    text-align: right;
    justify-content: flex-end;
}

#changeOrderModal .th-noi input {
    border: 0;
    background: #f2f2f2;
    border-radius: 4px;
    font-size: 13px;
    height: 30px;
    outline: none;
    font-weight: 600;
}
.career-site {
    position: relative;
    padding: 0;
    margin-bottom: 70px;
}

.with-career-header {
    width: 100%;
    position: relative;
    height: 250px;
    background: url(../../images-UI/v2/banner-home-02.jpg) no-repeat;
    border-radius: 4px;
    background-position: 0px -225px;
    display: block;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-bottom: 35px;
}

.sixteen.columns {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.46);
    border-radius: 4px;
}

.search-container h2 {
    position: relative;
    color: #fff;
    font-weight: 700;
}
.career-categories {
    position: relative;
}

.career-categories h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    display: block;
    background: #ffffff;
    padding: 10px;
    border-radius: 4px;
}
.career-categories h3 .icon-title {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    background: #18a0fb26;
    font-size: 15px;
    border-radius: 4px;
    margin-right: 10px;
    color: #18a0fb;
}
.categories-boxes-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.all-jobs {
    position: relative;
}
.job-title {
    min-width: 150px;
    background-color: #ffffff;
    border-top: 3px solid #111;
    left: -48px;
    padding: 5px 30px;
    position: absolute;
    text-align: center;
    top: 51px;
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    border-top-color: #18a0fb !important;
}
.job-tab { 
    position: relative;
    padding: 30px;
    background-color: #ffffff;
}
.job-listing .job-tab {
    border-bottom: 1px solid #e9ecef;
}
.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #f3f6f9;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.post-media img {
    width: 100%;
    opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.freelancer-badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px;
    border-radius: 3px;
    padding: 4px 16px;
    margin-top: 20px;
}
.freelancer-badge {
    color: #ffffff !important;
    background-color: #18a0fb !important;
    border-color: #18a0fb !important;
}
.job-tab h3 {
    font-size: 18px;
    padding: 13px 0 5px;
    margin: 0;
}
.job-tab h3 a {
    color: #000;
    font-weight: 500;
    line-height: 25px;
}
.small, small {
    font-size: 85%;
}
.job-tab small span {
    padding-right: 10px;
}
.job-tab small span span {
    font-weight: 500;
    color: #18a0fb;
}
.job-meta p {
    /* padding: 35px 0 0; */
    margin: 0;
    color: #18293b;
    font-size: 16px;
}

.job-meta {
    text-align: right;
    padding-right: 30px;
}
.job-tab h4 {
    padding: 20px 0 10px;
    margin: 10px 0 0;
    line-height: 1;
    font-size: 18px;
}
.job-meta .btn {
    background: #F64E60 !important;
    font-size: 13px;
    line-height: 1;
    padding: 6px;
    width: 100%;
    text-transform: capitalize;
    color: #fff;
    max-width: 150px;
}
.wp_teamshowcase_grid.design-3 {
    margin: 0px -15px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.site-not-login .press-site {
    background: #f2f2f2;
    padding: 50px 20px;
}
.container-title {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.container-title .title {
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    color: #5a5a5a;
}

.breadcrumb-heading {
    display: inline-flex;
    margin-bottom: 30px;
    position: relative;
    margin-top: 10px;
}
.breadcrumb-heading li {
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
    padding-right: 0;
    padding-right: 10px;
}
.breadcrumb-heading li a {
    color: #a7a7a7;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
}
.breadcrumb-item.fff::before {
    color: #fff;
}
.container-title .fff {
    color: #fff;
}

.bg-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
}
.team-grid {
    width: 25%;
}

.wp-tsas-medium-3 {
    padding: 0;
    margin-bottom: 30px;
}

.card-col {
    position: relative;
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 0px;
    display: flex;
    align-items: stretch;
    min-height: 310px;
}

.mh-300 {
    min-height: 300px;
}

.mentor-card {
    background-color: #ffffff;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    box-shadow: 0 3px 7px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    overflow: hidden;
} 

.mentor-card .details {
    padding-top: 21px;
    padding-bottom: 21px;
    padding-left: 21px;
    padding-right: 21px;
    text-align: center;
    flex: 1;
}
.avatar {
    border: 1px solid #E6E6E6;
    border-radius: 100%;
    margin-bottom: 14px;
    transition: all 0.33s ease-in-out;
}
.mentor-card .name-team {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
    padding-top: 0;
}
.position {
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 300;
    padding-top: 0;
    margin-bottom: 21px;
    text-transform: capitalize;
}

.card-footer {
    background-color: #ffffff;
    border-top: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 21px;
    padding-right: 21px;
    width: 100%;
    height: auto;
}

.social-share {
    display: flex;
}
.social-share a {
    border: 1px solid #a9c13b;
    border-radius: 100%;
    font-size: 11px;
    color: #a9c13b;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 28px;
    height: 28px;
    transition: all 0.2s ease-in-out;
    margin-right: 10px;
}
.card:hover .animated-footer {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.logo-press {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-press img {
    max-height: 100px;
    max-width: 100%;
}
.title-press {
    font-size: 15px;
    line-height: 22px;
    display: block;
    text-align: center;
    color: #333;
}

.date-press {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.visit-site a {
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    color: #18a0fb;
    display: inline-flex;
    background: #e4f4ff;
    border-radius: 3px;
    line-height: 28px;
    padding: 0 15px;
}
.relative {
    position: relative;
    top:0;
}
.jconfirm .jconfirm-box {
    padding: 30px;
}

.input-group .form-control {
    box-shadow: none;
    height: 42px;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    padding: 0 20px;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-blue {
    background: #18A0FB;
    color: #fff;
}

.form-check {
    display: flex;
    position: relative;
    line-height: 25px;
    margin-bottom: 10px;
    align-items: center;
    background: #f8f8f8;
    border-radius: 3px;
    padding: 5px 10px;
}

.form-check label {
    font-weight: 400;
    margin-left: 10px;
    margin-bottom: 0;
}

.form-check input {
    margin: 0;
}
.res-pr {
    margin: 0 -7px;
}
.menu-bar {
    display: none;
}
.fluid-width-video-wrapper iframe {
    height: 300px;
    border-radius: 4px;
}
.section-contact {
    padding: 55px 10px;
    background: #fff;
    border-radius: 4px;
    margin: 30px 0;
}
.container-elemetor {
    width: 100%;
    margin: 0 auto;
    max-width: 1170px;
}
.site-not-login .container-elemetor {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}
.centered {
    text-align: center !important;
}
.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
.sec-title .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #a9c13b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 0;
}
.sec-title h2 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 1.2em;
    color: #222222;
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 70px;
    padding-right: 70px;
    display: inline-block;
    margin-bottom: 0;
    text-transform: capitalize;
}
.sec-title h2:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 22px;
    width: 50px;
    height: 1px;
    background-color: #a9c13b;
}
.sec-title h2:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 22px;
    width: 50px;
    height: 1px;
    background-color: #a9c13b;
}
.justify-content-center {
    display:flex;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.content-box-column {
    position: relative;
    background: #fff;
    padding: 20px 10px;
    border-radius: 4px;
    min-height: 200px;
    transition: .3s;
}

.content-box-column:hover {
    -webkit-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 40px 60px 0 rgba(0, 0, 0, 0.14);
}
.icon-hover-animation-pulsate {
    position: relative;
}
.heading-with-icon {
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.heading-with-icon i {
    border-color: transparent;
    border-width: 0px;
    background-color: #a9c13b;
    box-sizing: content-box;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.heading-with-icon h2.content-box-heading {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
}
.icon-hover-animation-pulsate .content-container {
    padding-left: 80px;
}
.icon-hover-animation-pulsate .content-container p {
    font-size: 14px;
    color: #777;
}
.info-right p {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.icon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.info-right {
    text-align: center;
}
.fusion-fullwidth.fullwidth-box {
    width: 100%;
    position: relative;
}
.form-sendmail .popup_login li {
    margin-bottom: 15px;
}
.form-sendmail {
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px;
}
.form-sendmail .form-control {
    height: 57px;
    background-color: #ffffff;
    font-size: 13px;
    color: #707070;
    border-width: 1px;
    border-color: #e2e2e2;
    border-radius: 0px;
}
.form-sendmail button {
    height: 50px;
    background: #a9c13b;
    border: 1px solid #a9c13b;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}
.not-login-show {
    display: none;
}
.site-not-login .not-login-show {
    display: block;
}
.fusion-button-wrapper {
    display: block;
    margin: 30px 0;
    text-align: center;
}
.fusion-button-default-shape {
    padding: 17px 40px;
    line-height: 21px;
    font-size: 15px;
    display: inline-block;
    background: #a9c13b;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}
.fusion-button-default-shape i {
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin-left: 5px;
}
.toggleMenu {
    display: none;
}
.footer-list li a i {
    margin: 0;
}