@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Dancing+Script:wght@400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sedan:ital@0;1&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #222021;
  --secondary-color: #066cfa;
  --bg-color: #a8a8a8e9;
  --text-color: #555;
  --black-color: #000;
  --white-color: #fff;
  --primary-font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  font-weight: 400;
}

/* ************* Header ***************** */
#header .container a img {
  width: 164px;
}

#header .collapse a {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .collapse button {
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  font-weight: 500;
  font-size: 14px;
  padding: 0px 18px;
}

#header .collapse button:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  transition: all 0.5s ease;
}

#header button span i {
  font-size: 30px;
  color: var(--primary-color);
}

#header .btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

#hero .carousel-inner {
  border-radius: 14px;
}

/* ************ Profile Offcanvas CSS ************** */
.offcanvas-header {
  display: block;
  align-items: center;
  justify-content: end;
  padding: 1rem 1.5rem 0.5rem;
}

.profile-img {
  object-fit: cover;
  height: 35px;
  width: 35px;
  border-radius: 100%;
}

.btn-offcanvas {
  width: 41px;
  height: 41px;
  border: none !important;
  background: #ffffff00;
}

.btn-offcanvas:hover {
  border: none !important;
  background: #ffffff00 !important;
}

.account .account_text {
  padding-left: 20px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.font15 {
  font-size: 15px;
}

.fw500 {
  font-weight: 500;
}

.color111 {
  color: #111;
}

.account .account_cateanchor {
  display: inline-flex;
  align-items: center;
  padding: 10px 0 10px 10px;
  width: 100%;
  transition: all 0.8s;
  height: 48px;
  border-radius: 6px;
}

.bluefill_animate:hover,
.grayfill_animate:hover,
.anchor:hover,
.pointer,
a {
  cursor: pointer;
}

.account .account_cateitem {
  padding: 0;
}

li,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: 0 0;
}

.account .account_cateanchor:hover {
  background-color: #ebebeb;
}

.account .account_catebox {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
}

.account .account_icon img {
  max-width: 100%;
}

.userouter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
  width: 100%;
}

.mt-20 {
  margin-top: 20px;
}

.user {
  text-transform: capitalize;
}

.font24 {
  font-size: 24px;
}

.userimage {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #f2f2f2;
}

.userimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  object-position: center;
}

/* ************* Footer ***************** */
footer {
  background-color: #3a3a3a;
  color: #fff;
  padding: 60px 0;
  padding-bottom: 0px;
}

#footer p {
  font-size: 14px;
}

#footer h5 {
  font-size: 17px;
}

#footer a {
  font-size: 14px;
}

.footer-logo {
  max-width: 173px;
}

#footer .row .logo {
  text-align: left;
}

#footer .col-md-3 {
  text-align: left;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links li {
  margin-top: 13px;
}

#footer .row .link {
  padding-left: 50px;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* *************** Responsive css ********************* */
@media (max-width: 992px) {
  body a {
    color: #000;
    text-decoration: none;
  }

  #header .container a img {
    width: 58%;
  }

  #header .container .navbar-brand {
    width: 40%;
  }

  #header .collapse a {
    font-size: 18px;
  }

  #header .collapse button {
    font-size: 16px;
    padding: 6px 16px;
  }

  #header button span i {
    font-size: 25px;
  }

  .col-md-3 {
    width: 50%;
    padding: 0 10px;
  }

  .view-all-btn {
    width: 100%;
  }

  #footer .logo {
    padding: 0;
    width: 75%;
  }

  #footer .row .link {
    padding: 0;
    margin-top: 20px;
    width: 75%;
  }

  #footer .contact {
    width: 75%;
    padding: 0;
    margin-top: 20px;
  }

  #footer .col-md-3 {
    padding: 0;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #header .container a img {
    width: auto;
    height: 35px;
  }

  #header .collapse a {
    font-size: 16px;
  }

  #header .collapse button {
    font-size: 14px;
    padding: 6px 14px;
  }

  #header button span i {
    font-size: 20px;
  }

  footer {
    width: 100%;
    padding: 50px 22px;
    padding-bottom: 0px;
  }

  /* ****************** Mobile Off-canvas ********************** */
  .menublock {
    display: inline-block;
    margin: 0;
    /* padding: 10px 20px; */
    width: 100%;
    white-space: nowrap;
    box-sizing: border-box;
    overflow: hidden;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .menublock::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
  }

  .profile-img {
    object-fit: cover;
    height: 35px;
    width: 35px;
  }

  .offcanvas-end {
    width: 100%;
  }

  .menublock li {
    list-style-type: none;
    display: inline-block;
    margin: 0 5px;
    text-align: center;
    border: 1px solid #ddecf2;
    border-radius: 36px;
    padding: 0 15px;
  }

  .menublock li span {
    text-decoration: none;
    color: #111;
    font-weight: 400;
    line-height: 34px;
    height: 34px;
    display: block;
  }

  .font13 {
    font-size: 13px;
  }

  .navlist {
    background: #fff;
    box-sizing: border-box;
    padding: 0 20px;
  }

  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }

  li,
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  li,
  ol,
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
  }

  .navlist li {
    display: table;
    width: 100%;
    table-layout: fixed;
    color: #111;
    padding: 12px 0;
    box-sizing: border-box;
    font-weight: 400;
  }

  .font14 {
    font-size: 14px;
  }

  .languageicon {
    background-image: url(https://akam.cdn.jdmagicbox.com/images/icontent/newwap/newprot_w/Languageicn.svg);
  }

  .jdsidemenu {
    width: 36px;
    height: 36px;
    display: table-cell;
    vertical-align: middle;
    background-position: 50%;
    background-repeat: no-repeat;
  }

  .navlist li span + span {
    padding-left: 15px;
    font-weight: 500;
  }

  .tdspan {
    display: table-cell;
    vertical-align: middle;
  }

  .tdspan.lastspace {
    width: 38%;
    text-align: right;
    color: #717171;
  }

  .tdspan:last-child {
    width: 15px;
    padding-right: 0;
  }

  .user-name-hd {
    font-size: 18px;
    font-weight: 600;
  }

  .sub-heading {
    margin-top: 5px;
    font-weight: 400;
    font-size: 14px;
  }

  .jdlogout {
    background-image: url(../img/SVGs/logout-mob.svg);
  }

  .jdmytransactions {
    background-image: url(../img/SVGs/my-orders-mob.svg);
  }

  .jdeditprofile {
    background-image: url(../img/SVGs/edit-profile-mob.svg);
  }

  .rewards {
    background-image: url(../img/SVGs/rewards-mob.svg);
  }

  .jdlistyourbusiness img {
    width: 100%;
  }
}

/* **************************** */
@media screen and (max-width: 768px) {
  .desktop-view {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .mobile-view {
    display: none;
  }
}

/* **************************** */

@media (max-width: 576px) {
  #header .container {
    margin: 0px 5px;
  }

  #header .container a img {
    width: auto;
    height: 35px;
  }

  #header .collapse a {
    font-size: 14px;
    text-align: center;
  }

  #header .collapse button {
    font-size: 12px;
    padding: 4px 10px;
  }

  #header button span i {
    font-size: 18px;
  }
}
