:root {
  --theme-color: #222224;
}

@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: normal;
  src: local("Muli Regular"),
    url("../web-fonts/muli/Muli-Regular.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: italic;
  font-weight: normal;
  src: local("Muli Italic"),
    url("../web-fonts/muli/Muli-Italic.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 200;
  src: local("Muli ExtraLight"),
    url("../web-fonts/muli/Muli-ExtraLight.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: italic;
  font-weight: 200;
  src: local("Muli ExtraLight Italic"),
    url("../web-fonts/muli/Muli-ExtraLightItalic.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 300;
  src: local("Muli Light"),
    url("../web-fonts/muli/Muli-Light.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: italic;
  font-weight: 300;
  src: local("Muli Light Italic"),
    url("../web-fonts/muli/Muli-LightItalic.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 600;
  src: local("Muli SemiBold"),
    url("../web-fonts/muli/Muli-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: italic;
  font-weight: 600;
  src: local("Muli SemiBold Italic"),
    url("../web-fonts/muli/Muli-SemiBoldItalic.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: bold;
  src: local("Muli Bold"),
    url("../web-fonts/muli/Muli-Bold.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: italic;
  font-weight: bold;
  src: local("Muli Bold Italic"),
    url("../web-fonts/muli/Muli-BoldItalic.woff") format("woff");
}

@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 800;
  src: local("Muli ExtraBold"),
    url("../web-fonts/muli/Muli-ExtraBold.woff") format("woff");
}

@font-face {
  font-family: "Muli ExtraBold Italic";
  font-style: italic;
  font-weight: 800;
  src: local("Muli ExtraBold Italic"),
    url("../web-fonts/muli/Muli-ExtraBoldItalic.woff") format("woff");
}

body {
  font-size: 16px;
  /* background-color: #EFE5DB; */
  font-family: Muli, sans-serif;
}

.no-copy {
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");

h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
section,
img,
input,
button,
i,
ul,
li,
span,
a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

input,
input:focus,
button,
button:focus {
  outline: none;
}

.lazy_blur {
  background-color: #c1bebe;
  filter: blur(10px);
  transition: 1s;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
}

.theme-container {
  max-width: 1500px;
  padding: 0 80px;
  margin-left: auto;
  margin-right: auto;
}

.btn-theme {
  background-color: #cead5d;
  color: #212529;
}

.form-group {
  margin-bottom: 15px;
}

.theme-title-bx {
  text-align: center;
}

.theme-title-bx .tt {
  font-size: 30px;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 5px;
}

select.arrow {
  background-image: url(../../assets/img/icon/down-arrow.png);
  background-repeat: no-repeat;
  background-position: right;
}

div.showPasswordInputBox {
  position: relative;
}

div.showPasswordInputBox::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f070";
  position: absolute;
  top: 8px;
  right: 11px;
  background-color: white;
  cursor: pointer;
  color: gray;
}

div.showPasswordInputBox.show::after {
  color: #000 !important;
  content: "\f06e" !important;
}

.ui-autocomplete-loading {
  background: white url("../../assets/img/icon/loader-16x16.gif")
    calc(100% - 10px) center no-repeat;
}

.ui-menu-item .location-suggestion {
  padding: 0px 0px 0px 32px !important;
  transition: none !important;
  font-size: 16px !important;
  background-image: url(../../assets/img/icon/location-marker-black.png) !important;
  background-repeat: no-repeat !important;
  background-position: left !important;
  background-position-x: 8px !important;
  background-size: 16px !important;
  border-bottom: 1px solid #c5c5c5 !important;
}

.ui-menu-item .location-suggestion:hover {
  background-image: url(../../assets/img/icon/location-marker-white.png) !important;
  background-color: var(--theme-color) !important;
  color: #fff !important;
}

.ui-menu-item .location-suggestion > span {
  transition: none !important;
  font-size: 14px !important;
  display: block !important;
  margin-top: -3px !important;
}

.ui-menu-item:last-child .location-suggestion {
  border-bottom: none !important;
}

/* HEADER */
.main-header .top-header {
  background-color: #9b725c;
}

.main-header .top-header .tbox {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  padding: 7px;
  color: #000;
}

.main-header .top-header .tbox.mid {
  background: white;
  box-shadow: grey 0px 0px 20px;
}

.main-header .top-header .tbox > span {
  font-weight: bold;
}

.main-header-menu {
  padding: 10px 0;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}

.main-header-menu .top-box {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.main-header-menu .top-box .open-menu {
  display: none;
}

.main-header-menu .top-box .brand-box {
  display: inline-block;
  width: 46%;
}

.main-header-menu .top-box .brand-box .link {
  display: block;
  height: 47px;
  line-height: 47px;
  width: fit-content;
}

.main-header-menu .top-box .brand-box .link > img {
  height: 47px;
}

.main-header-menu .top-box .search-box {
  display: inline-block;
  width: 30%;
  position: relative;
}

.main-header-menu .top-box .search-box .input-box {
  border: 1px solid #000;
  padding: 6px 49px 5px 10px;
  width: 100%;
}

.main-header-menu .top-box .search-box .searchbtn {
  background-color: #000;
  color: #fff;
  font-size: 17px;
  padding: 5px 10px;
  border: 1px solid #000;
  position: absolute;
  right: 0;
}

.main-header-menu .currency-box {
  position: relative;
}

.main-header-menu .currency-box .active-currency {
  cursor: pointer;
  position: relative;
  border: 1px solid var(--theme-color);
  padding: 3px 20px 3px 8px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
}

.main-header-menu .currency-box .active-currency::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  font-size: 18px;
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.main-header-menu .currency-box .currency-list {
  display: none;
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  width: 100%;
  max-width: 200px;
  min-width: 150px;
  border: 1px solid var(--theme-color);
  z-index: 2;
  overflow: hidden;
  border-radius: 5px;
}

.main-header-menu .currency-box .currency-list > li {
  border-bottom: 1px dashed var(--theme-color);
  padding: 5px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

.main-header-menu .currency-box .currency-list > li:last-child {
  border: 0;
}

.main-header-menu .currency-box .active-currency:hover,
.main-header-menu .currency-box .currency-list > li.active,
.main-header-menu .currency-box .currency-list > li:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.main-header-menu .currency-box .currency-list.vsble {
  display: block;
}

.main-header-menu .top-box .contact-box {
  display: inline-block;
  width: 15%;
  text-align: center;
}

.main-header-menu .top-box .contact-box .link {
  text-decoration: none;
  outline: none;
  color: var(--theme-color);
  font-weight: bold;
  font-size: 14px;
  display: block;
  height: 47px;
  line-height: 47px;
  width: fit-content;
  margin: 0 auto;
}

.main-header-menu .top-box .shopicons {
  display: inline-block;
  width: 7%;
  text-align: right;
}

.main-header-menu .top-box .shopicons .login {
  text-decoration: none;
  outline: none;
  color: #000;
  margin-right: 10px;
  display: inline-block;
  height: 47px;
  line-height: 47px;
}

.main-header-menu .top-box .shopicons .cart {
  text-decoration: none;
  outline: none;
  color: #000;
  position: relative;
  display: inline-block;
  height: 47px;
  line-height: 47px;
}

.main-header-menu .top-box .shopicons .cart > .badge {
  position: absolute;
  right: -9px;
  top: 5px;
  background-color: var(--theme-color);
  font-size: 9px;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  color: #fff;
  text-align: center;
  padding: 0;
  line-height: 15px;
}

.main-header-menu .top-box .shopicons .cart > .view-cart-items {
  position: absolute;
  top: 35px;
  width: 330px;
  right: 0;
  background-color: #fff;
  border: 1px solid var(--theme-color);
  padding: 10px;
  line-height: 20px;
  box-shadow: 0 0 5px var(--theme-color);
  z-index: 2;
  display: none;
}

.main-header-menu .top-box .shopicons .cart > .view-cart-items::before {
  content: " ";
  position: absolute;
  top: -10px;
  right: -1px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--theme-color);
}

.main-header-menu .top-box .shopicons .cart > .view-cart-items .no-items {
  line-height: 20px;
  font-size: 13px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  margin-top: 10px;
}

.main-header-menu .top-box .shopicons .cart > .view-cart-items .cinueshop {
  text-decoration: none;
  outline: none;
  width: 100%;
  display: block;
  padding: 8px 10px;
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
}

.main-header-menu .top-box .shopicons .cart > .view-cart-items .itemscount {
  width: 100%;
  background-color: #e0e0e0;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  padding: 5px;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .itemscount
  > span {
  color: var(--theme-color);
}

.main-header-menu .top-box .shopicons .cart > .view-cart-items .ciitemslist {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li {
  display: block;
  border-bottom: 1px dashed #adadad;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li:last-child {
  border-bottom: none;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li
  > .cimgbox {
  float: left;
  width: 30%;
  text-align: center;
  padding: 5px;
  padding-left: 0;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li
  > .cimgbox
  > img {
  width: 100%;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li
  > .cidbox {
  float: right;
  text-align: left;
  width: 70%;
  padding: 5px;
  padding-right: 0;
  position: relative;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li
  > .cidbox
  > .cin {
  font-size: 13px;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 5px;
  overflow: hidden;
  height: 47px;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li
  > .cidbox
  > .ciprice {
  line-height: 20px;
  font-size: 11px;
  font-weight: bold;
  margin: 0;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li
  > .cidbox
  > .remove-item-cart {
  font-size: 14px;
  color: #000;
  position: absolute;
  background: transparent;
  bottom: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  border: 0;
  padding: 5px 9px;
  text-align: center;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .ciitemslist
  > li
  > .cidbox
  > .remove-item-cart:hover {
  color: red;
}

.main-header-menu .top-box .shopicons .cart > .view-cart-items .actionbtn {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  margin-top: 5px;
  text-align: left;
}

.main-header-menu .top-box .shopicons .cart > .view-cart-items .actionbtn > li {
  display: inline-block;
  width: 49%;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .actionbtn
  > li
  > a {
  text-decoration: none;
  outline: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  display: block;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 1px;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .actionbtn
  > li
  > a.c {
  background-color: var(--theme-color);
  color: #fff;
}

.main-header-menu
  .top-box
  .shopicons
  .cart
  > .view-cart-items
  .actionbtn
  > li
  > a.v {
  color: var(--theme-color);
  background-color: #fff;
}

.main-header-menu .top-box .shopicons .cart:hover > .view-cart-items {
  display: block;
}

.main-header-menu .bottom-box {
  margin-top: 16px;
}

.main-header-menu .bottom-box .close-menu {
  display: none;
}

.main-header-menu .bottom-box .search-box {
  display: none;
}

.main-header-menu .bottom-box .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.main-header-menu .bottom-box .menu > li {
  display: inline-block;
  margin-right: 7px;
}

.main-header-menu .bottom-box .menu > li > .link {
  border: 1px solid var(--theme-color);
  font-size: 13px;
  color: #292929;
  text-decoration: none;
  outline: none;
  padding: 5px 15px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  display: block;
  cursor: pointer;
}

.main-header-menu .bottom-box .menu > li > .link.highlight {
  color: var(--theme-color);
}

.main-header-menu .bottom-box .menu > li.has-menu > .link {
  padding-right: 30px;
}

.main-header-menu .bottom-box .menu > li.has-menu > .link::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  font-size: 18px;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.main-header-menu .bottom-box .menu > li.has-menu > .submenu {
  display: none;
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0px;
  border-radius: 20px;
  border: 6px solid #9b725c;
  border-top: 0;
}

.main-header-menu .bottom-box .menu > li > .link:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.main-header-menu .bottom-box .menu > li.has-menu:hover > .submenu {
  display: block;
}

.main-header-menu .bottom-box .menu > li.has-menu > .submenu . {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 16% 16% 16% 16% 16% 16%;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  padding: 10px;
}

.main-header-menu .bottom-box .menu > li.has-menu > .submenu . > li {
  display: inline-block;
}

.main-header-menu .bottom-box .menu > li.has-menu > .submenu . > li > a {
  text-decoration: none;
  outline: none;
  display: block;
  font-size: 11px;
  border-bottom: 2px solid #9b725c;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  overflow: hidden;
}

.main-header-menu
  .bottom-box
  .menu
  > li.has-menu
  > .submenu
  .
  > li
  > a
  > img {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;

  width: 150px;
  height: 150px;
  object-fit: cover;
}

.main-header-menu
  .bottom-box
  .menu
  > li.has-menu
  > .submenu
  .
  > li
  > a
  > span {
  color: #000;
  display: block;
  padding: 4px 0;
}

.main-header-menu
  .bottom-box
  .menu
  > li.has-menu
  > .submenu
  .
  > li
  > a:hover {
  color: var(--theme-color);
}

.main-header-menu
  .bottom-box
  .menu
  > li.has-menu
  > .submenu
  .
  > li
  > a:hover
  > img {
  transform: scale(1.05);
}

.main-header-menu
  .bottom-box
  .menu
  > li.has-menu
  > .submenu
  .
  > li
  > a:hover
  > span {
  color: #fff;
  background-color: var(--theme-color);
}

.main-header-menu .bottom-box .menu > li.has-menu > .submenu .sub {
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 16% 16% 16% 16% 16% 16%;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  padding: 10px;
}

.main-header-menu .bottom-box .menu > li.has-menu > .submenu .sub > li {
  display: inline-block;
}

.main-header-menu .bottom-box .menu > li.has-menu > .submenu .sub > li > a {
  text-decoration: none;
  outline: none;
  display: block;
  background-color: #f5f5f5;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-header-menu
  .bottom-box
  .menu
  > li.has-menu
  > .submenu
  .sub
  > li
  > a
  > span {
  color: #000;
}

.main-header-menu
  .bottom-box
  .menu
  > li.has-menu
  > .submenu
  .sub
  > li
  > a:hover {
  background-color: var(--theme-color);
}

.main-header-menu
  .bottom-box
  .menu
  > li.has-menu
  > .submenu
  .sub
  > li
  > a:hover
  > span {
  color: #fff;
}

/* END HEADER */

/* HOMEPAGE */
.homepage-banner {
  position: relative;
}

.homepage-banner .slide .link {
  text-decoration: none;
  outline: none;
}

.homepage-banner .slide .image {
  width: 100%;
}

.homepage-banner .nav-container .navbtn {
  position: absolute;
  z-index: 1000;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.homepage-banner .nav-container .navbtn > i {
  background-color: #0000003b;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 29px;
  color: #fff;
}

.homepage-banner .nav-container .navbtn.left {
  left: 0;
}

.homepage-banner .nav-container .navbtn.right {
  right: 0;
}

.homepage-safety {
  background-color: #f5f5f5;
  padding: 10px 0;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}

.homepage-safety .safetybox {
  position: relative;
}

.homepage-safety .safetybox .icon {
  width: 35px;
  height: 35px;
  position: absolute;
}

.homepage-safety .safetybox .text {
  font-size: 14px;
  font-weight: bold;
  padding: 11px 0 0 40px;
  margin: 0;
  height: 40px;
}

.homepage-about {
  padding: 30px 0;
}

.homepage-about .row {
  -webkit-box-align: center !important;
  align-items: center !important;
}

.homepage-about .img-box {
  text-align: center;
}

.homepage-about .img-box > img {
  width: 100%;
  max-width: 400px;
}

.homepage-about .cbox .desc {
  text-align: justify;
}

.homepage-affiliations {
  padding: 50px 0;
  background-color: oldlace;
}

.homepage-affiliations .affiliates-cntr .affilitate-bx .img-bx {
  max-width: 200px;
  margin: 0 auto;
}

.homepage-affiliations .affiliates-cntr .affilitate-bx .img-bx .img {
  width: 100%;
}

.certified-tone {
  padding: 50px 0;
}

.certified-tone .head {
  text-align: center;
}

.certified-tone .head .text {
  font-size: 30px;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 5px;
}

.certified-tone .content .gembox {
  margin-top: 25px;
  border: 2px solid var(--theme-color);
  overflow: hidden;
}

.certified-tone .content .gembox > .link {
  text-decoration: none;
  outline: none;
}

.certified-tone .content .gembox > .link > .img {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  margin: 0;
}

.certified-tone .content .gembox:hover {
  box-shadow: 0 5px 5px var(--theme-color);
}

.certified-tone .content .gembox:hover > .link > .img {
  transform: scale(1.1);
}

.certified-tone .content .gembox > .link > .text {
  font-size: 14px;
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  padding: 7px 0;
  font-weight: bold;
  margin-bottom: 0;
}

.about-me {
  padding: 30px 0;
  background-color: #f2f8ff;
}

.about-me .row {
  -webkit-box-align: center !important;
  align-items: center !important;
}

.about-me .image-box {
  text-align: center;
}

.about-me .image-box .img {
  width: 100%;
  max-width: 400px;
}

.about-me .cbox .desc {
  text-align: justify;
  font-weight: 500;
  font-size: 18px;
}

.homepage-client-testimonial {
  padding: 30px 0;
}

.homepage-client-testimonial .head {
  text-align: center;
}

.homepage-client-testimonial .head .text {
  font-size: 30px;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 5px;
}

.homepage-client-testimonial .testibox {
  padding: 16px;
  border: 1px solid #dbdbdb;
  margin-top: 25px;
}

.homepage-client-testimonial .testibox .img-box {
  overflow: hidden;
}

.homepage-client-testimonial .testibox .img-box > .img {
  width: 100%;
}

.homepage-client-testimonial .testibox .img-box > .img:hover {
  transform: scale(1.2);
}

.homepage-client-testimonial .testibox .dbox {
  margin-top: 20px;
}

.homepage-client-testimonial .testibox .dbox > .date {
  font-size: 14px;
}

.homepage-client-testimonial .testibox .dbox > .date > i {
  color: var(--theme-color);
}

.homepage-client-testimonial .testibox .dbox > .desc {
  text-align: justify;
  font-size: 16px;
}

.homepage-client-testimonial .testibox .dbox > .name {
  font-size: 19px;
  font-weight: bold;
  margin: 0;
}

.homepage-contact {
  background-color: #f2f8ff;
  background-image: url("../img/bg/gg.png");
  padding: 30px 0;
  background-repeat: no-repeat;
  background-size: 350px;
  background-position: 0 100%;
}

.homepage-contact .form-box .t1 {
  font-size: 23px;
  font-weight: bold;
}

.homepage-contact .form-box .desc {
  font-size: 18px;
  color: gray;
}

.homepage-contact .form-box .form-group {
  margin-bottom: 20px;
}

.homepage-contact .form-box .btn {
  background-color: #020227;
  color: #fff;
  font-weight: bold;
  width: 100%;
  border-radius: 10px;
}

/* END HOMEPAGE */

/* FOOTER */
.main-footer {
  padding: 8px 0;
}

.main-footer .footer-link {
  margin-bottom: 20px;
}

.main-footer .footer-link .link-heading {
  font-size: 15px;
  text-transform: uppercase;
  color: #1e1d1d;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
}

.main-footer .footer-link .link-heading::before {
  position: absolute;
  content: "";
  background: #020228;
  width: 40px;
  height: 2px;
  bottom: -5px;
}

.main-footer .footer-link ul.links {
  margin: 0;
  padding: 20px 0px 0px 0px;
  list-style: none !important;
}

.main-footer .footer-link ul.links > li {
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 6px;
}

.main-footer .footer-link ul.links > li > a {
  font-size: 14px;
  color: #1e1d1d;
  text-decoration: none;
  outline: none;
  padding-left: 10px;
  position: relative;
}

.main-footer .footer-link ul.links > li > a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-footer .footer-link ul.links > li > a:hover {
  color: var(--theme-color);
  font-weight: bold;
  margin-left: 5px;
}

.main-footer .footer-link .adr {
  margin-bottom: 7px;
  margin-top: 10px;
}

.main-footer .footer-link .adr > i {
  float: left;
  color: gray;
  padding: 3px 5px 1px;
  font-size: 14px;
}

.main-footer .footer-link .adr > p {
  font-size: 13px;
  color: #1e1d1d;
  text-align: justify;
  margin: 0;
}

.main-footer .footer-link .phn,
.main-footer .footer-link .email {
  margin-bottom: 7px;
}

.main-footer .footer-link .phn > a,
.main-footer .footer-link .email > a {
  text-decoration: none;
  outline: none;
  color: #1e1d1d;
  font-weight: bold;
  font-size: 13px;
}

.main-footer .footer-link .phn > a > i,
.main-footer .footer-link .email > a > i {
  font-size: 15px;
}

.main-footer .footer-link .getintouch {
  padding-top: 8px;
}

.main-footer .footer-link .getintouch .he {
  font-size: 13px;
  color: #1e1d1d;
  float: left;
  padding-top: 7px;
  margin-right: 10px;
}

.main-footer .footer-link .getintouch .social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-footer .footer-link .getintouch .social-links > li {
  display: inline-block;
}

.main-footer .footer-link .getintouch .social-links > li > a {
  text-decoration: none;
  outline: none;
  display: block;
}

.main-footer .footer-link .getintouch .social-links > li > a > i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: var(--theme-color);
}

.main-footer .footer-link .getintouch .social-links > li > a > i.fb {
  color: #3b5998;
}

.main-footer .footer-link .getintouch .social-links > li > a > i.whatsapp {
  color: #6bb448;
}

.main-footer .footer-link .getintouch .social-links > li > a > i.twitter {
  color: #1da1f2;
}

.main-footer .footer-link .getintouch .social-links > li > a > i.yt {
  color: #ff0000;
}

.main-footer .footer-link .getintouch .social-links > li > a > i.insta {
  color: #8a3ab9;
  background: -webkit-linear-gradient(#8a3ab9, red);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-footer .footer-link .getintouch .social-links > li > a > i.linkedin {
  color: #0e76a8;
}

.main-footer .footer-link .gmap {
  margin-top: 15px;
}

.main-footer .footer-link .gmap > iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

.footer-copyright {
  padding: 15px 0;
  background: #cead5d;
}

.footer-copyright .copyright {
  text-align: center;
  font-size: 14px;
  margin: 0;
  color: #1e1d1d;
}

.footer-copyright .copyright > a {
  text-decoration: none;
  outline: none;
  color: black;
}

.foot-support {
  position: fixed;
  bottom: 70px;
  right: 15px;
  z-index: 1;
}

.foot-support > a {
  --this-size: 45px;
  text-decoration: none;
  outline: none;
  background-color: green;
  color: #fff;
  border-radius: 100%;
  width: var(--this-size);
  height: var(--this-size);
  display: block;
  text-align: center;
  line-height: var(--this-size);
  font-size: 32px;
  z-index: 1;
  box-shadow: 0 0 10px #000;
}

.foot-support.pandit {
  bottom: 130px;
}

.foot-support.pandit > a {
  background-color: var(--theme-color);
}

.foot-support.pandit > a > img {
  width: 100%;
}

.foot-support > a:hover {
  box-shadow: 0 0 10px var(--theme-color);
  transform: scale(1.1);
}

.foot-support.call {
  bottom: 15px;
}

.foot-support.call > a {
  font-size: 20px;
  background-color: var(--theme-color);
}

.footer-link .address-cntr {
}

.footer-link .address-cntr .address-info {
  display: none;
}

.footer-link .address-cntr .address-info p {
  position: relative;
  padding-left: 30px;
  margin-bottom: 7px;
  font-size: 14px;
  color: #1e1d1d;
}

.footer-link .address-cntr .address-info p > i {
  position: absolute;
  left: 0;
  --tsize: 25px;
  width: var(--tsize);
  height: var(--tsize);
  line-height: var(--tsize);
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  font-size: 16px;
}

.footer-link .address-cntr .address-info p > a {
  text-decoration: none;
  color: inherit;
}

.footer-link .address-cntr .address-info.active {
  display: block;
}

.footer-link .address-cntr .flag-cntr {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
  margin-top: 15px;
  border-top: 2px solid var(--theme-color);
}

.footer-link .address-cntr .flag-cntr > li {
  cursor: pointer;
  width: 50px;
  position: relative;
  padding: 5px;
  background-color: var(--theme-color);
}

.footer-link .address-cntr .flag-cntr > li > img {
  width: 100%;
}

.footer-link .address-cntr .flag-cntr > li.active::before {
  content: " ";
  position: absolute;
  --tsize: 10px;
  border-left: var(--tsize) transparent solid;
  border-right: var(--tsize) #ff000000 solid;
  border-bottom: var(--tsize) var(--theme-color) solid;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* END FOOTER */

/* OTHER PAGES */
.information-pages {
  padding: 30px 0;
}

.information-pages .head {
  text-align: center;
  background-color: #c7c7c7;
  padding: 5px;
  margin-bottom: 20px;
}

.information-pages .head .text {
  margin: 0;
  border: 1px dashed #fff;
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  text-transform: uppercase;
  font-weight: bold;
}

.information-pages .content .desc {
  text-align: justify;
}

.information-pages .contactus-box .row {
  -webkit-box-align: center !important;
  align-items: center !important;
}

.information-pages .contactus-box .form-box .form-group {
  margin-bottom: 15px;
}

.information-pages .contactus-box .form-box .form-group .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}

.information-pages .contactus-box .form-box .form-group .form-control:focus {
  border: none;
  border-bottom: 1px solid var(--theme-color);
  border-radius: 0;
  box-shadow: unset;
}

.information-pages .contactus-box .form-box .btn {
  width: 100%;
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 0;
}

.information-pages .contactus-box .details-box {
  margin-bottom: 25px;
}

.information-pages .contactus-box .details-box .tit {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
}

.information-pages .contactus-box .details-box .adr {
  max-width: 259px;
  font-size: 15px;
}

.information-pages .contactus-box .details-box .phn,
.information-pages .contactus-box .details-box .mail {
  margin-bottom: 10px;
}

.information-pages .contactus-box .details-box .phn > a,
.information-pages .contactus-box .details-box .mail > a {
  text-decoration: none;
  outline: none;
  color: #000;
}

.carat-ratti-container .info-box > .t {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  background-color: #f3f3f3;
  padding: 10px;
  color: var(--theme-color);
  margin-bottom: 20px;
}

.carat-ratti-container .info-box .table tr > td {
  border: 1px solid #a7a7a7;
  font-weight: bold;
  padding: 12px 7px;
}

.carat-ratti-container .info-box .table tr:hover > td {
  background-color: #e5e5e5;
}

.carat-ratti-container .conversion-box > .t {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  background-color: #f3f3f3;
  padding: 10px;
  color: var(--theme-color);
  margin-bottom: 20px;
}

.carat-ratti-container .conversion-box .input-group > .input-group-text {
  font-size: 16px;
  font-weight: bold;
  width: 111px;
  background-color: var(--theme-color);
  color: #fff;
}

/* END OTHER PAGES */

/*  RECOMMENDATION */
.-suggestion-container .row.m {
  align-items: center;
  -webkit-box-align: center;
}

.-suggestion-container .image-box {
  overflow: hidden;
  margin-bottom: 25px;
}

.-suggestion-container .image-box > img {
  width: 100%;
}

.-suggestion-container .image-box:hover > img {
  transform: scale(1.2);
}

.-suggestion-container .form-box .form-group {
  margin-bottom: 15px;
}

.-suggestion-container .form-box .form-group > label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.-suggestion-container .form-box .form-group > .form-control {
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}

.-suggestion-container .form-box .form-group > .form-control:focus {
  border: none;
  border-bottom: 1px solid var(--theme-color);
  border-radius: 0;
  box-shadow: unset;
}

.-suggestion-container .form-box .form-group:hover > label {
  color: var(--theme-color);
}

.-suggestion-container .form-box .btn {
  width: 100%;
  background-color: var(--theme-color);
  color: #fff;
  font-weight: bold;
  border-radius: 0;
}

.-suggestion-container .gemresult-box {
  margin-bottom: 25px;
  border: 1px solid var(--theme-color);
}

.-suggestion-container .gemresult-box .gemtitle {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  padding: 8px 0;
}

.-suggestion-container .gemresult-box .img-box {
  margin: 0 auto;
  padding: 20px 0;
  width: 200px;
  height: 150px;
  text-align: center;
}

.-suggestion-container .gemresult-box .img-box > img {
  height: 100%;
}

.-suggestion-container .gemresult-box .details .name {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.-suggestion-container .gemresult-box .details .name > a {
  text-decoration: none;
  outline: none;
  color: inherit;
  text-transform: uppercase;
}

.-suggestion-container .gemresult-box .details .name > a:hover {
  color: var(--theme-color);
}

.-suggestion-container .gemresult-box .details .details-table {
  width: 100%;
}

.-suggestion-container .gemresult-box .details .details-table tr td {
  font-size: 14px;
  padding: 7px 10px;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid var(--theme-color);
}

.-suggestion-container
  .gemresult-box
  .details
  .details-table
  tr
  td:first-child {
  font-weight: bold;
  border-right: 1px solid var(--theme-color);
}

.kundli-chart-container {
  margin-bottom: 25px;
}

.kundli-chart-container .tit {
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #ededed;
  padding: 10px 5px;
}

.kundli-chart-container .details {
  font-size: 16px;
  text-align: justify;
}

.kundli-chart-container .chart-box > svg {
  width: 100%;
  height: 100%;
  max-width: 400px;
}

.kundli-chart-container .chart-box {
  text-align: center;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 15px;
  background-color: #fe7c0524;
  border: 2px solid var(--theme-color);
}

.rudraksh-suggestions-container .tit {
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #ededed;
  padding: 10px 5px;
}

.rudraksh-suggestions-container .image-box {
  text-align: center;
  margin-bottom: 20px;
}

.rudraksh-suggestions-container .image-box > img {
  width: 100%;
  max-width: 350px;
}

.rudraksh-suggestions-container .image-box > .h {
  font-weight: bold;
}

.rudraksh-suggestions-container .details-box {
  text-align: center;
  border-top: 1px dashed #c2c2c2;
  padding-top: 20px;
}

.rudraksh-suggestions-container .details-box .adv {
  font-weight: bold;
  font-size: 20px;
}

.rudraksh-suggestions-container .details-box .sum {
  font-size: 16px;
  text-align: justify;
}

/* END  RECOMMENDATION */

/* PAYMENT */

.black_color {
  color: #242421 !important;
}
.stripe-form-cntr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000070;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stripe-form-cntr > .stripe-form {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  padding: 15px;
  border-radius: 0px;
  position: relative;
}

.stripe-form-cntr > .stripe-form > .title {
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
  padding-bottom: 10px;
}

.stripe-form-cntr > .stripe-form > .cls-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: red;
  color: #fff;
  --crsize: 30px;
  width: var(--crsize);
  height: var(--crsize);
  line-height: var(--crsize);
  text-align: center;
  border-radius: 100%;
  cursor: pointer;
}

.stripe-form-cntr > .stripe-form > .pay-btn {
  margin: 15px auto 0;
  display: block;
}

/* /PAYMENT */

/* AUTHENTICATION PAGE */
.login-page {
  padding: 50px 0;
}

.login-page .form-box {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f5f5f5;
  padding: 50px 30px;
}

.login-page .form-box .t1 {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}

.login-page .form-box .form-group {
  margin-bottom: 20px;
}

.login-page .form-box .form-group .form-control {
  border-radius: 0;
}

.login-page .form-box .btn {
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
  color: #fff;
  border-radius: 0;
  display: block;
  width: fit-content;
}

.login-page .form-box .other-links > .l {
  text-align: right;
  margin-bottom: 5px;
  font-size: 13px;
  white-space: nowrap;
  background-color: #dbe1e1;
  padding: 8px;
}

.login-page .form-box .other-links > .l:last-child {
  margin: 0;
}

.login-page .form-box .other-links > .l > a {
  font-weight: bold;
  outline: none;
  color: #000;
}

.login-page .form-box .other-links > .l > a:hover {
  color: var(--theme-color);
}

/* AUTHENTICATION PAGE */

/* PRODUCT CATEGORY */
.prdct-cat-page {
  padding: 10px 0 10px;
}

.prdct-cat-page .cathead {
  text-align: center;
}

.prdct-cat-page .cathead > .n {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  color: var(--theme-color);
  max-width: 700px;
  font-size: 30px;
  margin: 0 auto 50px;
}

.prdct-cat-page .cathead > .n::after {
  content: "";
  background: linear-gradient(
    90deg,
    #efe5db 0%,
    #272421 28%,
    #0c0b0a 72%,
    #efe5db 100%
  );
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 100%;
  height: 4px;
  transform: translate(-50%, 0);
}

.prdct-cat-page .scat-container .scat-box {
  padding: 10px;
  text-align: center;
  margin-bottom: 30px;
  border: 1px dashed #e2e2e2;
  border-radius: 5px;
}

.prdct-cat-page .scat-container .scat-box:hover {
  border-color: var(--theme-color);
}

.prdct-cat-page .scat-container .scat-box .lnk {
  text-decoration: none;
  outline: none;
}

.prdct-cat-page .scat-container .scat-box .img-box {
  overflow: hidden;
  padding: 20px 0;
}

.prdct-cat-page .scat-container .scat-box .img-box > img {
  width: auto;
  max-width: 150px;
  transform: scale(0.9);
}

.prdct-cat-page .scat-container .scat-box .img-box:hover > img {
  transform: scale(1.3);
}

.prdct-cat-page .scat-container .scat-box .det-box > .n {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--theme-color);
  height: 32px;
  overflow: hidden;
}

/* END PRODUCT CATEGORY */

/* PRODUCT SUB CATEGORY */
.product-scat-page {
  padding: 50px 0;
}

.product-scat-page .head .image-box > img {
  width: 100%;
}

.product-scat-page .head .details-box > .name {
  font-size: 25px;
  font-weight: bold;
}

.product-scat-page .head .details-box > .desc {
  font-size: 16px;
  text-align: justify;
}

.product-scat-page .head .searchresult-box {
  padding-bottom: 50px;
}

.product-scat-page .head .searchresult-box .sht {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: var(--theme-color);
  margin: 0;
}

/* END PRODUCT SUB CATEGORY */

/* PRODUCT FILTER */
.filter-box-container .head {
  background-color: var(--theme-color);
  padding: 10px 0;
}

.filter-box-container .nt {
  text-align: left;
  font-size: 15px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
}

.filter-box-container .dt {
  position: relative;
  text-align: right;
  font-size: 15px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  padding-right: 20px;
  cursor: pointer;
}

.filter-box-container .dt::after,
.filter-box-container .dt::before {
  content: " ";
  position: absolute;
  width: 16px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-color: #fff;
}

.filter-box-container .dt::before {
  transform: rotate(90deg);
  top: 8px;
}

.filter-box-container .filter-sett-container {
  padding: 10px 0;
  height: 0px;
  opacity: 0;
  overflow: hidden;
  background-color: #f6f6f6;
}

.filter-box-container .filter-sett-container.show {
  opacity: 1;
  height: auto;
}

.filter-box-container .dt.show::before {
  display: none;
}

.filter-box-container .filter-sett-container .price-range .t {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: var(--theme-color);
  text-transform: uppercase;
}

.filter-box-container .filter-sett-container .price-range .ui-slider-handle {
  border-radius: 100%;
  outline: none;
  background-color: var(--theme-color);
  border: none;
  cursor: pointer;
}

.filter-box-container
  .filter-sett-container
  .price-range
  .ui-slider-handle.ui-state-active {
  background-color: var(--theme-color);
  border: none;
}

.filter-box-container .filter-sett-container .priceRangeShow {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 14px;
}

/* END PRODUCT FILTER */

/* PRODUCT */
.products-container .product-box {
  background-color: #f2f2f2;
  padding: 10px;
  position: relative;
  margin-bottom: 25px;
  margin: 0 auto 15px;
  border-radius: 0px;
}

.products-container .product-box .image-box {
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}

.products-container .product-box .image-box a {
  text-decoration: none;
  outline: none;
}

.products-container .product-box .image-box img {
  width: 100%;
  margin: 0 auto 15px;
}

.products-container .product-box .details-box {
  text-align: center;
}

.products-container .product-box .details-box a {
  text-decoration: none;
  outline: none;
}

.products-container .product-box .details-box .name {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.products-container .product-box .details-box .details {
  font-size: 12px;
  font-weight: normal;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.products-container .product-box .details-box .price {
  font-size: 16px;
  margin-bottom: 0;
  color: #000;
}

.products-container .product-box .wishlist {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.products-container .product-box .wishlist::after {
  font-family: "Font Awesome 5 Free";
  content: "\f004";
  font-size: 20px;
  color: red;
}

.products-container .product-box .wishlist.l::after {
  font-weight: 900;
}

.products-container .product-box .out-of-stock {
  position: absolute;
  top: 15px;
  left: 20px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: red;
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
}

.products-container .product-box:hover {
  box-shadow: 0 3px 5px var(--theme-color);
  border-color: var(--theme-color);
}

.products-container .product-box .image-box img:hover {
  transform: scale(1.1);
}

.products-container .product-box .wishlist:hover {
  transform: scale(1.5);
}

.products-container .load-more-btn {
  border: 2px solid #000000;
  font-weight: bold;
  color: #000;
  padding: 10px 30px;
  border-radius: 50px;
  text-transform: uppercase;
}

.products-container .load-more-btn:hover {
  background-color: var(--theme-color);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 5px #000;
}

.products-container .pchead .row {
  align-items: center;
  -webkit-box-align: center;
}

.products-container .pchead .tbox {
  text-align: left;
  font-weight: bold;
  margin-bottom: 20px;
}

.products-container .pchead .product-sort-box {
  text-align: right;
  margin-bottom: 20px;
}

.products-container .pchead .product-sort-box > label {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  font-weight: bold;
}

.products-container .pchead .product-sort-box > select {
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  padding-right: 30px;
  font-size: 14px;
  border-radius: 0;
  background-color: #e2e2e2;
  color: var(--theme-color);
  border-color: var(--theme-color);
}

.products-container .pchead .product-sort-box > select:focus {
  box-shadow: none;
}

/* END PRODUCT */

/* VIEW PRODUCT */
#productVideoModal .modal-body {
  border: 2px solid var(--theme-color);
  padding: 10px;
  box-shadow: 0 0 9px 1px #000;
}

#productVideoModal .modal-body .modal-close-btn {
  position: absolute;
  font-size: 23px;
  background-color: var(--theme-color);
  border-radius: 100%;
  color: #fff;
  padding: 0;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: -20px;
  right: -20px;
  box-shadow: 0 0 9px 1px #000;
}

.view-product-page {
  padding: 50px 0;
}

.view-product-page .vphead .image-box {
  max-width: 400px;
  margin: 0 auto;
  position: sticky;
  top: 25px;
  margin-bottom: 30px;
}

.view-product-page .vphead .image-box .viewProductImgScroll .swiper-wrapper {
  align-items: center;
  -webkit-box-align: center;
}

.view-product-page .vphead .image-box .p-image {
  width: 100%;
  cursor: pointer;
}

.view-product-page .vphead .image-box .p-video {
  width: 100%;
  cursor: pointer;
}

.view-product-page .vphead .image-box .slide {
  position: relative;
}

.view-product-page .vphead .image-box .thumbnail-slide-box .p-video-icon,
.view-product-page .vphead .image-box .image-slide-box .p-video-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f86b;
  color: var(--theme-color);
  text-align: center;
  font-size: 29px;
  cursor: pointer;
}

.view-product-page .vphead .image-box .image-slide-box .p-video-icon {
  font-size: 80px;
}

.view-product-page .vphead .image-box .thumbnail-slide-box .p-video-icon > i,
.view-product-page .vphead .image-box .image-slide-box .p-video-icon > i {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.view-product-page .vphead .image-box .viewProductThumbImgScroll {
  margin-top: 20px;
}

.view-product-page
  .vphead
  .image-box
  .viewProductThumbImgScroll
  .swiper-wrapper {
  align-items: center;
  -webkit-box-align: center;
}

.view-product-page
  .vphead
  .image-box
  .viewProductThumbImgScroll
  .swiper-slide-thumb-active {
  border: 2px solid var(--theme-color);
}

.view-product-page .vphead form {
  position: sticky;
  top: 25px;
  margin-bottom: 30px;
}

.view-product-page .vphead .pdetails-box > .pname {
  font-size: 20px;
  font-weight: bold;
}

.view-product-page .vphead .pdetails-box > .pprice {
  font-size: 22px;
  font-weight: bold;
  color: var(--theme-color);
}

.view-product-page .vphead .pdetails-box > .skuandstock {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}

.view-product-page .vphead .pdetails-box > .skuandstock > li {
  display: inline-block;
  padding: 0px 10px;
  font-size: 15px;
}

.view-product-page .vphead .pdetails-box > .skuandstock > li.sku {
  border-right: 2px solid var(--theme-color);
  padding-left: 0;
}

.view-product-page .vphead .pdetails-box > .skuandstock > li.sku > span {
  font-weight: bold;
}

.view-product-page .vphead .pdetails-box > .skuandstock > li.stock {
  font-weight: bold;
}

.view-product-page .vphead .pdetails-box > .skuandstock > li.stock > span.in {
  color: green;
}

.view-product-page .vphead .pdetails-box > .skuandstock > li.stock > span.out {
  color: red;
}

.view-product-page .vphead .pdetails-box > .quantity-box {
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  column-gap: 10px;
}

.view-product-page .vphead .pdetails-box > .quantity-box > .lbl {
  font-size: 16px;
  font-weight: bold;
  padding-right: 6px;
  margin: 0;
}

.view-product-page .vphead .pdetails-box > .quantity-box > input {
  width: 50px;
  text-align: center;
  background-image: unset;
  padding: 3px 0;
  -moz-appearance: textfield;
}

.view-product-page
  .vphead
  .pdetails-box
  > .quantity-box
  > input::-webkit-outer-spin-button,
.view-product-page
  .vphead
  .pdetails-box
  > .quantity-box
  > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.view-product-page .vphead .pdetails-box > .quantity-box > i {
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #ececec;
  color: var(--theme-color);
  font-size: 18px;
  border-radius: 0px;
  cursor: pointer;
}

.view-product-page .vphead .pdetails-box > .quantity-box > i:hover {
  color: #ececec;
  background-color: var(--theme-color);
}

.view-product-page .vphead .pdetails-box > .quantity-box > .invalid-feedback {
  font-size: 13px;
  max-width: 200px;
}

.view-product-page .vphead .pdetails-box > .pselect-type-box {
  margin-top: 20px;
}

.view-product-page .vphead .pdetails-box > .pselect-type-box .pss-tt {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.view-product-page .vphead .pdetails-box > .pselect-type-box > .pst-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  column-gap: 30px;
}

.view-product-page .vphead .pdetails-box > .pselect-type-box > .pst-list > li {
  cursor: pointer;
  text-align: center;
  margin-bottom: 15px;
}

.view-product-page
  .vphead
  .pdetails-box
  > .pselect-type-box
  > .pst-list
  > li
  > img {
  display: block;
  width: 90px;
  height: 90px;
  padding: 5px;
  border: 2px solid #d8d8d8;
  border-radius: 0px;
  object-fit: contain;
}

.view-product-page
  .vphead
  .pdetails-box
  > .pselect-type-box
  > .pst-list
  > li
  > span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 5px;
}

.view-product-page
  .vphead
  .pdetails-box
  > .pselect-type-box
  > .pst-list
  > li:hover
  > img,
.view-product-page
  .vphead
  .pdetails-box
  > .pselect-type-box
  > .pst-list
  > li.active
  > img {
  border-color: var(--theme-color);
}

.view-product-page
  .vphead
  .pdetails-box
  > .pselect-type-box
  > .pst-list
  > li:hover
  > span,
.view-product-page
  .vphead
  .pdetails-box
  > .pselect-type-box
  > .pst-list
  > li.active
  > span {
  color: var(--theme-color);
}

.view-product-page .vphead .pdetails-box .pselect-metal-box .pm-name {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 15px;
}

.view-product-page .vphead .pdetails-box .pselect-metal-box .row {
  align-items: center;
  -webkit-box-align: center;
}

.view-product-page .vphead .pdetails-box .pselect-metal-box .pm-metal-select {
  border: 1px solid #b4b4b4;
  margin-bottom: 15px;
}

.view-product-page
  .vphead
  .pdetails-box
  .pselect-metal-box
  .pm-metal-select:focus {
  box-shadow: unset;
  border-color: var(--theme-color);
}

.view-product-page .vphead .pdetails-box .pselect-design-box .psd-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  column-gap: 30px;
}

.view-product-page .vphead .pdetails-box .pselect-design-box .psd-list > li {
  cursor: pointer;
  text-align: center;
  margin-bottom: 15px;
}

.view-product-page
  .vphead
  .pdetails-box
  .pselect-design-box
  .psd-list
  > li
  > img {
  display: block;
  width: 90px;
  height: 90px;
  border: 2px solid #d8d8d8;
  border-radius: 0px;
  object-fit: contain;
  margin-bottom: 5px;
}

.view-product-page
  .vphead
  .pdetails-box
  .pselect-design-box
  .psd-list
  > li
  > img:hover {
  transform: scale(2);
}

.view-product-page
  .vphead
  .pdetails-box
  .pselect-design-box
  .psd-list
  > li
  > span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

.view-product-page
  .vphead
  .pdetails-box
  .pselect-design-box
  .psd-list
  > li.active
  > img {
  border-color: var(--theme-color);
}

.view-product-page
  .vphead
  .pdetails-box
  .pselect-design-box
  .psd-list
  > li.active
  > span {
  color: var(--theme-color);
}

.view-product-page .vphead .pdetails-box .pselect-design-size-box .pm-name {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 15px;
}

.view-product-page .vphead .pdetails-box .pselect-design-size-box .row {
  align-items: center;
  -webkit-box-align: center;
}

.view-product-page
  .vphead
  .pdetails-box
  .pselect-design-size-box
  .pm-metal-select {
  border: 1px solid #b4b4b4;
  margin-bottom: 15px;
}

.view-product-page
  .vphead
  .pdetails-box
  .pselect-design-size-box
  .pm-metal-select:focus {
  box-shadow: unset;
  border-color: var(--theme-color);
}
.lvl1.dropdown > a::after {
  content: " ▼"; /* Unicode caret */
  font-size: 0.9em;
  margin-left: 5px;
}

.view-product-page .vphead .pdetails-box .add-to-cart-btn {
  /*  width: 100%;*/
  border-radius: 0px;
  font-size: 14px;
  padding: 12px 30px;
  background-color: #171717;
  color: white;
  margin-top: 20px;
  text-transform: uppercase;
}

.view-product-page .vphead .pdetails-box .our-other-details {
  background-color: #efe5db;
  margin-top: 20px;
  padding: 20px;
}

.view-product-page .vphead .pdetails-box .our-other-details > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.view-product-page .vphead .pdetails-box .our-other-details > ul > li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  margin-bottom: 8px;
}

.view-product-page .vphead .pdetails-box .our-other-details > ul > li > i {
  color: var(--theme-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  text-align: left;
  line-height: 21px;
  font-size: 16px;
}

.view-product-page
  .vphead
  .pdetails-box
  .our-other-details
  > ul
  > li:last-child {
  margin-bottom: 0;
}

.view-product-page .pdescription-box {
  background-color: #f6f6f6;
  padding: 20px;
  border-top: 5px solid var(--theme-color);
  text-align: center;
  border-radius: 0px;
  margin-bottom: 30px;
}

.view-product-page .pdescription-box > .pdname {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
}

.view-product-page .pdescription-box > .pddesc {
  font-size: 16px;
  margin: 0;
}

.view-product-page .pbenefits-box {
  background-color: #f6f6f6;
  padding: 20px;
  border-top: 5px solid var(--theme-color);
  text-align: center;
  border-radius: 0px;
  margin-bottom: 30px;
}

.view-product-page .pbenefits-box > .pbname {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
}

.view-product-page .pbenefits-box > .pbdesc {
  font-size: 16px;
  margin: 0;
}

.view-product-page .pspecs-box {
  background-color: #f6f6f6;
  padding: 20px;
  border-bottom: 5px solid var(--theme-color);
  border-radius: 0px;
}

.view-product-page .pspecs-box > .psname {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  font-size: 20px;
  background-color: #f6f6f6;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 0 15px;
}

.view-product-page .pspecs-box > .hrline {
  margin-bottom: -13px;
  background-color: var(--theme-color);
  opacity: 1;
  height: 2px;
}

.view-product-page .pspecs-box .psdetails {
  margin-bottom: 5px;
}

.view-product-page .pspecs-box .psdetails .pshea {
  font-weight: bold;
}

/* END VIEW PRODUCT */

/* VIEW CART */
.view-card-page {
  padding-top: 50px;
  padding-bottom: 20px;
}

.view-card-page .chead > .cname {
  text-align: center;
  font-weight: bold;
  color: var(--theme-color);
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.view-card-page .empty-cart {
  margin-bottom: 30px;
}

.view-card-page .empty-cart > .desc {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.view-card-page .empty-cart > .btn {
  background-color: #000000;
  color: #ffffff;
  width: fit-content;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  outline: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 30px;
}

.view-card-page .cartitems-container {
  margin-bottom: 30px;
}

.view-card-page .cartitems-container .top-row {
  background-color: #f6f6f6;
}

.view-card-page .cartitems-container .top-row .uptext {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--theme-color);
  padding: 10px 10px;
  font-size: 14px;
}

.view-card-page .cartitems-container .top-row .uptext.c {
  text-align: center;
}

.cart-item-box {
  border-bottom: 1px dashed #b8b8b8;
  padding: 10px;
}

.cart-item-box .row {
  align-items: center;
  -webkit-box-align: center;
}

.cart-item-box .img-box > img {
  width: 100%;
}

.cart-item-box .pdetails-box > .pname {
  font-size: 16px;
  font-weight: bold;
}

.cart-item-box .pdetails-box > .pname > a {
  text-decoration: none;
  outline: none;
  color: inherit;
}

.cart-item-box .pdetails-box > .potherset {
  font-size: 12px;
  margin-bottom: 2px;
}

.cart-item-box .pdetails-box > .potherset > span {
  font-weight: bold;
}

.cart-item-box .pdetails-box > .potherset:last-child {
  margin-bottom: 0;
}

.cart-item-box .podetails > .upper {
  color: #000;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  display: none;
}

.cart-item-box .podetails > .bottom {
  display: block;
  color: var(--theme-color);
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.cart-item-box .actionbox {
  text-align: center;
}

.cart-item-box .actionbox > .btn {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--theme-color);
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  outline: none;
  opacity: 0.8;
  padding: 0;
}

.cart-item-box:hover {
  background-color: #0000ff0a;
}

.cart-item-box .img-box:hover {
  transform: scale(1.3);
}

.cart-item-box .actionbox > .btn:hover {
  opacity: 1;
}

.view-card-page .summary-container {
  position: sticky;
  top: 30px;
  background-color: #f7f7f7;
  border: 1px solid #ececec;
  margin-bottom: 30px;
}

.view-card-page .summary-container > .sn {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #f6f6f6;
  text-align: center;
  font-size: 20px;
  padding: 15px 0;
}

.view-card-page .summary-container > .btn {
  width: 100%;
  background-color: #2f415d;
  color: #fff;
  border: 1px solid #2f415d;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
}

.view-card-page .summary-container > .pricetable {
  width: 100%;
}

.view-card-page .summary-container > .pricetable tr td {
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
}

.view-card-page .summary-container > .pricetable tr td:last-child {
  color: var(--theme-color);
  text-align: right;
}

/* END VIEW CART */

/* CHECKOUT PAGE */
.checkout-page {
  padding: 50px 0 20px;
}

.checkout-page .top-head {
  margin-bottom: 30px;
}

.checkout-page .top-head > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
}

.checkout-page .top-head > ul > li {
  display: inline-block;
  position: relative;
  width: 50%;
  text-align: center;
  cursor: pointer;
}

.checkout-page .top-head > ul > li::before {
  content: " ";
  width: 100%;
  height: 8px;
  background-color: #e4e4e4;
  position: absolute;
  left: 0;
  top: 22px;
  z-index: -1;
}

.checkout-page .top-head > ul > li > div {
  margin: 0 auto;
  border: 6px solid #e4e4e4;
  width: 50px;
  height: 50px;
  line-height: 36px;
  border-radius: 100%;
  font-weight: bold;
  background-color: #fff;
  font-size: 20px;
  color: var(--theme-color);
}

.checkout-page .top-head > ul > li > span {
  display: block;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--theme-color);
  margin-top: 8px;
  white-space: nowrap;
}

.checkout-page .top-head > ul > li.active::before {
  background-color: var(--theme-color);
}

.checkout-page .top-head > ul > li.active > div {
  border-color: var(--theme-color);
}

.checkout-page .summary-container {
  position: sticky;
  top: 30px;
  margin-bottom: 30px;
}

.checkout-page .summary-container > .sn {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #f6f6f6;
  text-align: center;
  font-size: 20px;
  padding: 10px 0;
}

.checkout-page .summary-container > .btn {
  width: 100%;
  background-color: var(--theme-color);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
}

.checkout-page .summary-container > .pricetable {
  width: 100%;
}

.checkout-page .summary-container > .pricetable tr td {
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
}

.checkout-page .summary-container > .pricetable tr td:last-child {
  color: var(--theme-color);
  text-align: right;
}

.checkout-page .summary-container .discount-coupon-box {
  text-align: center;
}

.checkout-page .summary-container .discount-coupon-box > .dcbtglr {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #f6f6f6;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  cursor: pointer;
}

.checkout-page .summary-container .discount-coupon-box > .dcbtglr::after,
.checkout-page .summary-container .discount-coupon-box > .dcbtglr::before {
  content: " ";
  width: 10px;
  height: 2px;
  background-color: black;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

.checkout-page .summary-container .discount-coupon-box > .dcbtglr::after {
  transform: rotate(45deg);
  right: 27px;
}

.checkout-page .summary-container .discount-coupon-box > .dcbtglr::before {
  transform: rotate(-45deg);
}

.checkout-page .summary-container .discount-coupon-box > .dcbtglr.sh::after {
  transform: rotate(-45deg);
}

.checkout-page .summary-container .discount-coupon-box > .dcbtglr.sh::before {
  transform: rotate(45deg);
}

.checkout-page .summary-container .discount-coupon-box > .dcbitem {
  padding: 10px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

.checkout-page .summary-container .discount-coupon-box > .dcbitem.sh {
  height: auto;
  opacity: 1;
}

.checkout-page .summary-container .discount-coupon-box > .dcbitem .inpbox {
  margin-bottom: 15px;
}

.checkout-page
  .summary-container
  .discount-coupon-box
  > .dcbitem
  .inpbox
  > .form-control {
  text-align: center;
}

.checkout-page .summary-container .discount-coupon-box > .dcbitem .btn.aply {
  display: block;
  margin: 0 auto;
  background-color: var(--bs-blue);
  padding: 5px 10px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.checkout-page .summary-container .discount-coupon-box > .btn.rmv {
  margin: 0 auto 10px;
  background-color: #ff3939;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 12px;
  display: none;
}

.checkout-page .summary-container > .cart-items-list > .tgler {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #f6f6f6;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  cursor: pointer;
}

.checkout-page .summary-container > .cart-items-list > .tgler::after,
.checkout-page .summary-container > .cart-items-list > .tgler::before {
  content: " ";
  width: 10px;
  height: 2px;
  background-color: black;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

.checkout-page .summary-container > .cart-items-list > .tgler::after {
  transform: rotate(45deg);
  right: 27px;
}

.checkout-page .summary-container > .cart-items-list > .tgler::before {
  transform: rotate(-45deg);
}

.checkout-page .summary-container > .cart-items-list > .tgler.sh::after {
  transform: rotate(-45deg);
}

.checkout-page .summary-container > .cart-items-list > .tgler.sh::before {
  transform: rotate(45deg);
}

.checkout-page .summary-container > .cart-items-list > .content-item {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

.checkout-page .summary-container > .cart-items-list > .content-item.sh {
  height: auto;
  opacity: 1;
}

.checkout-page .summary-container > .cart-items-list > .content-item .citem {
  padding: 5px;
  border-bottom: 1px dashed gray;
}

.checkout-page
  .summary-container
  > .cart-items-list
  > .content-item
  .citem
  .row {
  align-items: center;
  -webkit-box-align: center;
}

.checkout-page
  .summary-container
  > .cart-items-list
  > .content-item
  .citem
  .image-box
  > img {
  width: 100%;
}

.checkout-page
  .summary-container
  > .cart-items-list
  > .content-item
  .citem
  .pdetailsbox
  > .pdname {
  font-size: 13px;
  font-weight: bold;
}

.checkout-page
  .summary-container
  > .cart-items-list
  > .content-item
  .citem
  .pdetailsbox
  > .potherd {
  font-size: 12px;
  margin-bottom: 2px;
}

.checkout-page
  .summary-container
  > .cart-items-list
  > .content-item
  .citem
  .pdetailsbox
  > .potherd
  > span {
  font-weight: bold;
}

.checkout-page
  .summary-container
  > .cart-items-list
  > .content-item
  .citem
  .pdetailsbox
  > .qty {
  font-size: 12px;
  color: var(--theme-color);
}

.checkout-page
  .summary-container
  > .cart-items-list
  > .content-item
  .citem
  .pdetailsbox
  > .qty
  > span {
  font-weight: bold;
}

.checkout-page
  .summary-container
  > .cart-items-list
  > .content-item
  .citem
  .pdprice {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 13px;
}

.checkout-page .address-box {
  position: sticky;
  top: 30px;
  margin-bottom: 30px;
}

.checkout-page .address-box > .adrs-top {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #f6f6f6;
  text-align: center;
  font-size: 20px;
  padding: 10px 0;
}

.address-box .address-container {
  margin-top: 20px;
}

.address-box .address-container .adrsc-box {
  border: 2px solid var(--theme-color);
  cursor: pointer;
  padding: 10px;
  position: relative;
  margin-bottom: 20px;
}

.address-box .address-container .adrsc-box > .t {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 3px;
}

.address-box .address-container .adrsc-box > .d {
  font-size: 14px;
  margin: 0;
  color: #494949;
}

.address-box .address-container .adrsc-box.active::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 14px;
}

.address-box .add-address {
  text-transform: uppercase;
  font-weight: bold;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 12px;
}

.address-box .checkout-action .select-addr {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.address-box .checkout-action .btn {
  background-color: var(--theme-color);
  font-weight: bold;
  color: #fff;
  width: 100%;
}

.checkout-page .payments-box {
  position: sticky;
  top: 30px;
  margin-bottom: 30px;
}

.checkout-page .payments-box .delivery-address {
  margin-bottom: 10px;
}

.checkout-page .payments-box .delivery-address > .thh {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #f6f6f6;
  text-align: center;
  font-size: 20px;
  padding: 10px 0;
}

.checkout-page .payments-box .delivery-address > .cc {
  padding: 10px;
}

.checkout-page .payments-box .delivery-address > .cc > .nnn {
  font-size: 16px;
  font-weight: bold;
}

.checkout-page .payments-box .delivery-address > .cc > .ppaa {
  font-size: 14px;
  margin-bottom: 3px;
}

.checkout-page .payments-box .delivery-address > .cc > .change-add-btn {
  font-size: 14px;
  background-color: #48cbe3;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
}

.checkout-page .payments-box .payment-method-box > .thh {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--theme-color);
  background-color: #f6f6f6;
  text-align: center;
  font-size: 20px;
  padding: 10px 0;
}

.checkout-page .payments-box .payment-method-box .pm-box {
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  outline: none;
  padding: 10px;
}

.checkout-page .payments-box .payment-method-box .pm-box .checkoutPaymentBtn {
  text-transform: uppercase;
  font-weight: bold;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 20px;
}

.checkout-page
  .payments-box
  .payment-method-box
  .pm-box
  .checkoutPaymentBtn:hover {
  box-shadow: 0 3px 5px #848484;
}

/* END CHECKOUT PAGE */

/* PAYMENT STATUS */
.payment-success-page {
  padding: 50px 0;
}

.payment-success-page .box {
  max-width: 500px;
  margin: 0 auto;
  background-color: #f6f6f6;
  padding: 30px 10px;
}

.payment-success-page .box .icon-box {
  text-align: center;
}

.payment-success-page .box .icon-box i {
  --size: 100px;
  width: var(--size);
  height: var(--size);
  border-radius: 100px;
  line-height: var(--size);
  font-size: 50px;
  color: green;
  border: 5px solid green;
  margin-bottom: 20px;
}

.payment-success-page .box.pending .icon-box i {
  color: orange;
  border-color: orange;
}

.payment-success-page .box.failed .icon-box i {
  color: red;
  border-color: red;
}

.payment-success-page .box .ttitle {
  color: green;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.payment-success-page .box.pending .ttitle {
  color: orange;
}

.payment-success-page .box.failed .ttitle {
  color: red;
}

.payment-success-page .order-details {
  margin-top: 30px;
}

.payment-success-page .order-details .oid {
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 20px;
}

.payment-success-page .order-details .od-table {
  vertical-align: middle;
}

.payment-success-page .order-details .od-table tr th,
.payment-success-page .order-details .od-table tr td {
  border-bottom: 1px solid #a2a2a2;
}

.payment-success-page .order-details .od-table thead tr th {
  border-top: 1px solid #a2a2a2;
}

.payment-success-page .order-details .od-table tr td .pn {
  font-weight: bold;
}

.payment-success-page .order-details .gotobtn {
  display: block;
  margin: 0 auto;
  font-weight: bold;
  text-transform: uppercase;
  background-color: var(--theme-color);
  color: #fff;
  width: fit-content;
  padding: 8px 28px;
  font-size: 20px;
  margin-top: 30px;
}

.payment-success-page .order-details .gotobtn:hover {
  box-shadow: 0 5px 5px #969696;
}

.payment-failed-page {
  padding: 50px 0;
}

.payment-failed-page .box {
  max-width: 500px;
  margin: 0 auto;
  background-color: #f6f6f6;
  padding: 30px 10px;
}

.payment-failed-page .box .icon-box {
  text-align: center;
}

.payment-failed-page .box .icon-box i {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  line-height: 70px;
  font-size: 50px;
  color: red;
  box-shadow: 0 0 0px 5px red;
  margin-bottom: 20px;
}

.payment-failed-page .box .ttitle {
  color: red;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.payment-failed-page .box .terror {
  text-align: center;
}

/* ERROR PAGE */
.error-page .error-box {
  text-align: center;
  max-width: 700px;
  margin: 50px auto;
  background-color: #f0f0f0;
  padding: 50px 20px;
}

.error-page .error-box > .t {
  font-size: 100px;
  color: var(--theme-color);
  margin: 0;
  font-weight: bold;
}

.error-page .error-box > .error {
  font-size: 33px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--theme-color);
}

.error-page .error-box > .desc {
  font-size: 16px;
  margin: 0;
}

.error-page .error-box > .desc > a {
  text-decoration: none;
  outline: none;
  font-weight: bold;
}

/* END ERROR PAGE */

/* RESPONSIVE */

/* XL */
@media (min-width: 1400px) {
}

@media (max-width: 1200px) {
  .theme-container {
    padding: 0 20px;
  }
}

/* TAB */
@media (max-width: 990px) {
  .main-header-menu.top-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 2;
    width: 100%;
    padding: 5px 0px;
    border-bottom: 1px dashed #757373;
  }

  .main-header-menu .top-box .open-menu {
    display: inline-block;
    width: 5%;
  }

  .main-header-menu .top-box .open-menu > a {
    text-decoration: none;
    outline: none;
    color: #000;
    display: block;
    height: 47px;
    line-height: 47px;
    position: relative;
    font-size: 28px;
  }

  .main-header-menu .bottom-box .search-box {
    display: block;
    position: relative;
    margin: 10px;
  }

  .main-header-menu .bottom-box .search-box .input-box {
    border: 1px solid #000;
    padding: 6px 49px 5px 10px;
    width: 100%;
  }

  .main-header-menu .bottom-box .search-box .searchbtn {
    background-color: #000;
    color: #fff;
    font-size: 17px;
    padding: 5px 10px;
    border: 1px solid #000;
    position: absolute;
    right: 0;
  }

  .main-header-menu .top-box .brand-box {
    width: 53%;
  }

  .main-header-menu .top-box .contact-box {
    width: 20%;
  }

  .main-header-menu .top-box .shopicons {
    width: 15%;
  }

  .main-header-menu .top-box .search-box {
    display: none;
  }

  .main-header-menu .bottom-box {
    margin-top: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 100;
    background-color: #9b725c;
    overflow: auto;
  }

  .main-header-menu .bottom-box.clp {
    left: -300px;
  }

  .main-header-menu .bottom-box.exp {
    left: 0px;
  }

  .main-header-menu .bottom-box .close-menu {
    background-color: var(--theme-color);
    margin: 10px auto;
    width: 40px;
    height: 40px;
    position: relative;
    display: block;
  }

  .main-header-menu .bottom-box .close-menu::after,
  .main-header-menu .bottom-box .close-menu::before {
    content: " ";
    background-color: #fff;
    height: 3px;
    width: 32px;
    position: absolute;
    top: 50%;
  }

  .main-header-menu .bottom-box .close-menu::after {
    transform: rotate(-43deg);
    left: 3px;
  }

  .main-header-menu .bottom-box .close-menu::before {
    transform: rotate(43deg);
    right: 4px;
  }

  .main-header-menu .bottom-box .menu > li {
    display: block;
    margin-right: 0;
    position: relative;
  }

  .main-header-menu .bottom-box .menu > li > .link {
    border-radius: 0;
    background-color: var(--theme-color);
    color: #fff !important;
    padding: 10px;
    border: none;
    border-bottom: 1px dashed #ffff;
    text-align: left;
    padding-right: 0 !important;
    font-size: 15px;
  }

  .main-header-menu .bottom-box .menu > li.has-menu > .link::after {
    right: 2px;
    top: 0;
    line-height: 40px;
    transform: translateY(0);
  }

  .main-header-menu .bottom-box .menu > li.has-menu > .link.cs::after {
    content: "\f106";
  }

  .main-header-menu .bottom-box .menu > li.has-menu > .submenu {
    position: unset;
    left: unset;
    width: 100%;
    transform: unset;
    border-radius: 0;
    border: none;
    background-color: var(--theme-color);
  }

  .main-header-menu .bottom-box .menu > li.has-menu > .submenu .,
  .main-header-menu .bottom-box .menu > li.has-menu > .submenu .sub {
    display: block;
    padding: 0;
  }

  .main-header-menu .bottom-box .menu > li.has-menu > .submenu . > li,
  .main-header-menu .bottom-box .menu > li.has-menu > .submenu .sub > li {
    display: block;
  }

  .main-header-menu .bottom-box .menu > li.has-menu > .submenu . > li > a,
  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .sub
    > li
    > a {
    text-align: left;
    padding: 10px 5px 10px 25px;
    border-bottom: 1px dashed #fff;
    color: #fff;
    background-color: unset;
    font-size: 14px;
  }

  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .
    > li
    > a
    > img,
  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .sub
    > li
    > a
    > img {
    display: none;
  }

  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .
    > li
    > a
    > span,
  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .sub
    > li
    > a
    > span {
    padding: unset;
    color: #fff;
    text-transform: capitalize;
  }

  .main-header-menu .bottom-box .menu > li.has-menu:hover > .submenu {
    display: none;
  }

  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .
    > li:hover
    > a,
  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .
    > li:hover
    > a
    > span,
  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .sub
    > li:hover
    > a,
  .main-header-menu
    .bottom-box
    .menu
    > li.has-menu
    > .submenu
    .sub
    > li:hover
    > a
    > span {
    background-color: var(--theme-color);
  }
}

/* SMALL */
@media (max-width: 767px) {
  .main-header-menu .top-box .open-menu {
    width: 8%;
  }

  .main-header-menu .top-box .brand-box {
    width: 65%;
  }

  .main-header-menu .top-box .brand-box .link > img {
    height: 35px;
    margin-left: 5px;
  }

  .main-header-menu .top-box .contact-box {
    display: none;
  }

  .main-header-menu .top-box .shopicons {
    width: 24%;
  }

  .homepage-contact {
    background-image: unset;
  }

  .view-card-page .cartitems-container .top-row .uptext.c {
    display: none;
  }

  .cart-item-box .podetails > .upper {
    display: block;
  }

  .view-card-page .summary-container {
    margin-bottom: 30px;
    position: fixed;
    top: 100%;
    transform: translateY(-100%);
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 1;
    border-top: 3px solid var(--theme-color);
  }
}

/* EXTRA SMALL */
@media (max-width: 575px) {
  .filter-box-container .filter-sett-container .price-range .ui-slider-handle {
    width: 15px;
    height: 30px;
    border-radius: 0;
    margin-top: -4px;
  }

  .products-container .pchead .product-sort-box {
    text-align: center;
  }

  .products-container .pchead .tbox {
    text-align: center;
  }
}

.test-justify {
  text-align: justify;
}

.buy-button {
  background-color: #9b725c !important;
}

/* BLOGS */
.blog-page .top-banner {
  text-align: center;
  color: #fff;
  background-color: var(--pk-blue-gradient-color);
  background-image: linear-gradient(to right, var(--pk-blue-gradient));
  padding: 35px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.blog-page .top-banner .b-banner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
  opacity: 0.15;
  object-fit: cover;
}
.blog-page .top-banner .title {
  font-weight: bold;
  text-shadow: 0 0 10px black;
}
.blog-page .top-banner .desc {
  margin: 0;
  text-shadow: 0 0 10px black;
}
.blog-page .editors-pick-box {
  background-color: #ebebeb;
  padding: 40px 0;
  position: relative;
}
.blog-page .editors-pick-box .theme-container {
  max-width: 1200px;
}
.blog-page .editors-pick-box .ep-box {
  position: relative;
}
.blog-page .editors-pick-box .ep-title {
  font-weight: bold;
}
.blog-page .editors-pick-box .ep-blog-box {
  background-color: #fff4ee;
  padding: 30px;
  margin: 30px 20px 20px 20px;
}
.blog-page .editors-pick-box .ep-blog-box .content-box {
  height: 290px;
  overflow: hidden;
}
.blog-page .editors-pick-box .ep-blog-box .content-box .details {
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}
.blog-page .editors-pick-box .ep-blog-box .content-box .details > li {
  display: inline-block;
}
.blog-page .editors-pick-box .ep-blog-box .content-box .details > li.b-cat > a {
  text-decoration: none;
  outline: none;
  display: block;
  color: #000;
  background-color: #ffca9a;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
}
.blog-page .editors-pick-box .ep-blog-box .content-box .details > li.b-date {
  padding: 5px 10px;
  font-size: 14px;
  color: #767676;
  font-weight: bold;
}
.blog-page .editors-pick-box .ep-blog-box .content-box .b-link {
  text-decoration: none;
  outline: none;
  color: inherit;
}
.blog-page .editors-pick-box .ep-blog-box .content-box .b-title {
  font-weight: bold;
}
.blog-page .editors-pick-box .ep-blog-box .content-box .b-desc {
  color: #767676;
  font-size: 18px;
  max-height: 200px;
  overflow: hidden;
}
.blog-page .editors-pick-box .ep-blog-box .image-box {
  margin-top: -60px;
}
.blog-page .editors-pick-box .ep-blog-box .image-box .b-link {
  display: block;
  text-decoration: none;
  outline: none;
}
.blog-page .editors-pick-box .ep-blog-box .image-box .img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: -5px 5px 10px rgb(0 0 0 / 20%);
}
.blog-page .editors-pick-box .ep-nav {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  z-index: 1;
}
.blog-page .editors-pick-box .ep-nav .nav-blog {
  cursor: pointer;
  display: inline-block;
}
.blog-page .editors-pick-box .ep-nav .nav-blog .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #999999;
  color: #fff;
  border-radius: 100px;
  margin-left: 10px;
}
.blog-page .editors-pick-box .ep-nav .nav-blog:hover .icon {
  background-color: var(--pk-link-color);
  color: #ffff;
}
.blog-page .editors-pick-box .ep-blog-box:hover {
  box-shadow: var(--pk-box-shadow);
}

.blog-page .main-content-container {
  padding: 50px 0 25px;
}
.blog-page .main-content-container .blogs-container .no-blogs-found-box {
  text-align: center;
  font-weight: bold;
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.blog-page .main-content-container .blogs-container .blog-cat {
  text-align: center;
  font-weight: bold;
}
.blog-page .main-content-container .blogs-container .blog-cat-border {
  opacity: 1;
  width: 200px;
  margin: 0 auto;
  background-color: var(--pk-link-color);
  height: 5px;
  margin-bottom: 25px;
}
.blog-page .main-content-container .blogs-container .blog-box {
  border: 1px solid var(--pk-border-color);
  overflow: hidden;
  padding-bottom: 15px;
  margin-bottom: 25px;
  background-color: #fff;
}
.blog-page .main-content-container .blogs-container .blog-box .image-box {
  position: relative;
  overflow: hidden;
}
.blog-page
  .main-content-container
  .blogs-container
  .blog-box
  .image-box
  .b-link {
  text-decoration: none;
  outline: none;
  display: block;
}
.blog-page .main-content-container .blogs-container .blog-box .image-box .img {
  width: 100%;
}
.blog-page
  .main-content-container
  .blogs-container
  .blog-box
  .image-box
  .cat-box {
  position: absolute;
  top: 5px;
  left: 10px;
}
.blog-page
  .main-content-container
  .blogs-container
  .blog-box
  .image-box
  .cat-box
  > a {
  text-decoration: none;
  outline: none;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 10px;
  width: fit-content;
  background-color: var(--pk-link-color);
  color: #fff;
  opacity: 0.8;
}
.blog-page
  .main-content-container
  .blogs-container
  .blog-box
  .image-box
  .date-box {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  background-color: #ededed;
  padding: 3px 8px;
  font-weight: bold;
  opacity: 0.8;
}
.blog-page .main-content-container .blogs-container .blog-box .content-box {
  padding: 15px;
  height: 216px;
  overflow: hidden;
}
.blog-page
  .main-content-container
  .blogs-container
  .blog-box
  .content-box
  .b-link {
  text-decoration: none;
  outline: none;
  color: inherit;
}
.blog-page
  .main-content-container
  .blogs-container
  .blog-box
  .content-box
  .b-title {
  font-weight: bold;
}
.blog-page .main-content-container .blogs-container .blog-box:hover {
  box-shadow: var(--pk-box-shadow);
}
.blog-page
  .main-content-container
  .blogs-container
  .blog-box
  .image-box
  .cat-box
  > a:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.blog-page .main-content-container .blogs-container .pagination-box {
  background: #fff;
  padding: 10px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 25px;
}
.blog-page
  .main-content-container
  .blogs-container
  .pagination-box
  .pagination {
  margin: 0;
}
.blog-page
  .main-content-container
  .blogs-container
  .pagination-box
  .pagination
  .page-item
  .page-link {
  margin: 2px;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 7px;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  color: #525252;
  font-size: 16px;
  border: none;
  box-shadow: 0 0 5px rgb(0 0 0 / 22%);
}

.blog-page
  .main-content-container
  .blogs-container
  .pagination-box
  .pagination
  .page-item.active
  .page-link,
.blog-page
  .main-content-container
  .blogs-container
  .pagination-box
  .pagination
  .page-item
  .page-link:hover {
  background-color: var(--pk-link-color);
  color: #fff;
}
.blog-page .main-content-container .blogs-container .pagination-box:hover {
  box-shadow: var(--pk-box-shadow);
}

.blog-page .main-content-container .blog-sidebar .search-box {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 10px;
}
.blog-page .main-content-container .blog-sidebar .search-box .form-group {
  display: flex;
  box-shadow: 0 0 5px rgb(0 0 0 / 22%);
  border-radius: 10px;
  width: 100%;
}
.blog-page .main-content-container .blog-sidebar .search-box .form-control {
  display: inline-block;
  border-color: var(--pk-link-color);
  border-right: 0;
  border-radius: 10px 0 0 10px;
}
.blog-page
  .main-content-container
  .blog-sidebar
  .search-box
  .form-control:focus {
  box-shadow: none;
}
.blog-page .main-content-container .blog-sidebar .search-box .btn {
  display: inline-block;
  border-radius: 0 10px 10px 0;
  border: 2px solid var(--pk-link-color);
  background-color: var(--pk-link-color);
  color: #fff;
  font-size: 20px;
}

.blog-page .main-content-container .blog-sidebar .blog-category-box {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 10px;
}
.blog-page .main-content-container .blog-sidebar .blog-category-box .title {
  text-align: center;
  font-weight: bold;
}
.blog-page
  .main-content-container
  .blog-sidebar
  .blog-category-box
  .line-seprator {
  opacity: 1;
  width: 100px;
  margin: 0 auto;
  background-color: var(--pk-link-color);
  height: 3px;
  margin-bottom: 15px;
  border-radius: 100px;
}
.blog-page .main-content-container .blog-sidebar .blog-category-box .category {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-page
  .main-content-container
  .blog-sidebar
  .blog-category-box
  .category
  > li
  > a {
  text-decoration: none;
  outline: none;
  display: block;
  position: relative;
  color: #000000;
  padding: 5px;
  border-top: 1px solid var(--pk-border-color);
}
.blog-page
  .main-content-container
  .blog-sidebar
  .blog-category-box
  .category
  > li:last-child
  > a {
  border-bottom: 1px solid var(--pk-border-color);
}

.blog-page
  .main-content-container
  .blog-sidebar
  .blog-category-box
  .category
  > li
  > a
  > .name {
  display: block;
}
.blog-page
  .main-content-container
  .blog-sidebar
  .blog-category-box
  .category
  > li
  > a
  > .count {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.blog-page
  .main-content-container
  .blog-sidebar
  .blog-category-box
  .category
  > li
  > a:hover,
.blog-page
  .main-content-container
  .blog-sidebar
  .blog-category-box
  .category
  > li.active
  > a {
  background-color: var(--pk-link-color);
  color: #fff;
}

.blog-page .main-content-container .blog-sidebar .panchang-box {
  text-align: center;
  background-color: #fff;
  padding-top: 15px;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}
.blog-page .main-content-container .blog-sidebar .panchang-box .title {
  font-weight: bold;
  text-align: center;
}
.blog-page .main-content-container .blog-sidebar .panchang-box .line-seprator {
  opacity: 1;
  width: 100px;
  margin: 0 auto;
  background-color: var(--pk-link-color);
  height: 3px;
  margin-bottom: 15px;
  border-radius: 100px;
}
.blog-page .main-content-container .blog-sidebar .panchang-box .img {
  width: 100%;
  max-width: 350px;
  padding: 0 15px 15px;
}
.blog-page .main-content-container .blog-sidebar .panchang-box .desc {
  padding: 0 15px;
}
.blog-page .main-content-container .blog-sidebar .panchang-box .view-btn {
  text-decoration: none;
  outline: none;
  font-weight: bold;
  background-color: var(--pk-link-color);
  color: #fff;
  padding: 10px 20px;
  display: block;
  margin: 0 auto;
  font-size: 16px;
}

.blog-page .main-content-container .blog-sidebar .search-box:hover,
.blog-page .main-content-container .blog-sidebar .blog-category-box:hover,
.blog-page .main-content-container .blog-sidebar .panchang-box:hover {
  box-shadow: var(--pk-box-shadow);
}
.blog-page .main-content-container .single-blog-container .blog-box {
  background-color: #fff;
  margin-bottom: 25px;
  border-radius: 10px;
}
.blog-page .main-content-container .single-blog-container .blog-box .b-title {
  font-weight: bold;
  margin-bottom: 0px;
  padding: 15px;
  line-height: 40px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-banner-box {
  overflow: hidden;
}
.blog-page .main-content-container .single-blog-container .blog-box .b-banner {
  width: 100%;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-content-box {
  padding: 15px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-content-box
  p,
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-content-box
  ul,
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-content-box
  ol {
  font-size: calc(1rem + 0.2vw);
}
.blog-page .main-content-container .single-blog-container .blog-box:hover {
  box-shadow: var(--pk-box-shadow);
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-banner:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box {
  text-decoration: none;
  outline: none;
  display: block;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  color: inherit;
  margin-bottom: 25px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box
  .top {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box
  .top
  .arrow-icon {
  width: 30px;
  margin-right: 10px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box
  .top
  .text {
  font-weight: bold;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box
  .cont {
  display: flex;
  align-items: center;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box
  .cont
  .b-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 10px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box
  .cont
  .b-title {
  margin-bottom: 0;
  line-height: 25px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box.right
  .top {
  flex-direction: row-reverse;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box.right
  .arrow-icon {
  margin-left: 0;
  margin-left: 10px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box.right
  .cont {
  flex-direction: row-reverse;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box.right
  .b-thumb {
  margin-right: 0;
  margin-left: 10px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box.right
  .cont
  .b-title {
  text-align: right;
}

.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box:hover {
  box-shadow: var(--pk-box-shadow);
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box:hover
  .top
  .arrow-icon {
  transform: translateX(-7px);
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-nav
  .b-nav-link-box.right:hover
  .top
  .arrow-icon {
  transform: translateX(7px);
}

.blog-page .main-content-container .single-blog-container .blog-sharer-box {
  width: fit-content;
  margin: 0 auto 25px;
  text-align: center;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-sharer-box
  .list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
  align-items: center;
  justify-content: center;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-sharer-box
  .list
  > li
  > a {
  text-decoration: none;
  outline: none;
  background-color: #fff;
  color: var(--pk-link-color);
  display: block;
  border-radius: 15px 0 15px 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  font-size: 23px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-sharer-box
  .list
  > li
  > a:hover {
  background-color: var(--pk-link-color);
  color: #fff;
  box-shadow: var(--pk-box-shadow);
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-details-box {
  display: flex;
  padding: 15px 15px 0;
  column-gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-details-box
  .details {
  margin: 0;
  font-size: 14px;
  border: 1px solid var(--pk-border-color);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-details-box
  .cat {
  margin: 0;
  margin-bottom: 10px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-details-box
  .cat
  > a {
  text-decoration: none;
  outline: none;
  color: black;
  display: block;
  font-size: 14px;
  border: 1px solid var(--pk-border-color);
  padding: 7px 15px;
  border-radius: 100px;
}
.blog-page
  .main-content-container
  .single-blog-container
  .blog-box
  .b-details-box
  .cat
  > a:hover {
  box-shadow: var(--pk-box-shadow);
  color: #fff;
  background-color: var(--pk-link-color);
}
/* /BLOGS */
