/*

 ResenZ.com main css file
 
*/

html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #051922;
  overflow-x: hidden;
}

body img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #F28123;
  text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  /*margin: 0 0 1.25rem 0;*/
  color: #051922;
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
}

h1, .h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h2, .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}

@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.25rem;
}

@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75rem;
}

@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #051922;
  margin: 0 0 1.25rem 0;
}

p:last-child {
  margin: 0;
}


/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: #fff;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}

.circle:before {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}

.circle:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.mt-20 {
  margin-top: 20px;
}

@media only screen and (max-width: 767.96px) {
  .mt-20 {
    margin-top: 10px;
  }
}

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

@media only screen and (max-width: 767.96px) {
  .mt-50 {
    margin-top: 20px;
  }
}

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

@media only screen and (max-width: 767.96px) {
  .mb-50 {
    margin-bottom: 20px;
  }
}


.mt-80 {
  margin-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

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

@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

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

@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

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

@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.gray-bg {
  background-color: #f5f5f5;
}

.orange-text {
  color: #F28123;
  font-weight: 700;
}

.blue-bg {
  background-color: #162133;
}

a.boxed-btn {
  font-family: 'Poppins', sans-serif;
  background-color: #F28123;
  color: #fff;
  border: 2px solid #F28123;
  padding: 5px 25px 5px 25px;
  display: inline-block;
  align-items: center;
  justify-content: center;
}
a.boxed-empty-btn {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #000;
  border: 2px solid #F28123;
  padding: 5px 25px 5px 10px;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

a.bordered-btn {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  border: 2px solid #F28123;
  padding: 7px 20px;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

a.read-more-btn {
  margin-top: 15px;
  color: #051922;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

a.read-more-btn:hover {
  color: #F28123;
}

a.boxed-btn, a.bordered-btn, a.cart-btn {
  border-radius: 5px;
}

.section-title h3 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 10px;
  border-left: 10px solid #F28123;
  padding-left: 10px;
}

/*
.section-title h3:after {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 150px;
  height: 2px;
  background-color: #F28123;
  margin: 0 auto;
}
*/

.user_profile {
  width:20px;
  height:20px;
  border-radius: 5px;
  top: 10px;
  border: 1px solid #fff;
}

.section-title p {
  font-size: 15px;
  font-weight: 700px;
  width: 530px;
  margin: 0 auto;
  color: #555;
  margin-top: 5px;
  line-height: 1.5;
}

.section-title {
  margin-bottom: 5px;
}


.account-title h3 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 10px;
  border-left: 10px solid #000;
  padding-left: 10px;
}


.account-top h3{
  font-size: 2.2rem;
  position: relative;
  padding: 10px;
  width: 100%;
}

.account-top h3:after {
  position: absolute;
  content: '';
  left: 25%;
  right: 0px;
  bottom: 0px;
  width: 50%;
  height: 10px;
  background-color: #F28123;
  
}


.section-divider {
  text-align: center; 
  margin: 10px 0; 
}

.section-divider img {
  max-width: 100%; 
  height: 64px; 
}

.profile_content, .store_content {
  width:100%; 
  margin:5px; 
  padding:5px; 
  border-top:1px solid #666; 
  /*border-radius: 10px; */
}

/*
.store_content {
  background-color:rgb(250, 227, 193)
}*/

.breadcrumb-bg {
  background-image: url(../img/breadcrumb-bg.jpg);
}

.breadcrumb-text p {
  color: #F28123;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
}

.breadcrumb-text h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  margin-top: 20px;
}

.breadcrumb-section {
  padding: 10px 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 100px;
}

.breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  z-index: -1;
  opacity: 0.8;
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */
ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #051922;
}

.top-header-area {
  position: absolute;
  /*z-index: 999;*/
  width: 100%;
  padding: 25px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area.white ul.navbar-nav li.nav-item a.nav-link, .top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
}

ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
  font-weight: 700;
  margin-right: 14px;
}

a.navbar-brand img {
  max-width: 150px;
}

nav.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.main-menu ul li {
  display: inline-block;
}

nav.main-menu ul li a {
  color: #fff;
  font-weight: 700;
  display: block;
  padding: 15px;
}

nav.main-menu ul > li {
  position: relative;
}

nav.main-menu ul ul.sub-menu {
  position: absolute;
  background-color: #fff;
  min-width: 175px;
  padding: 15px 15px;
  margin: 0;
  left: 0;
  top: 50px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 0 20px #555555;
  box-shadow: 0 0 20px #555555;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
  text-align: left;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  font-weight: 600;
  padding: 7px 10px;
  font-size: 13px;
}

nav.main-menu ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}

nav.main-menu ul li:last-child a {
  display: inline-block;
}

nav.main-menu > ul li:last-child {
  float: right;
}

.site-logo {
  float: left;
  max-width:250px;
  max-height:56px;
}

ul.sub-menu li:last-child {
  float: none !important;
}

.mean-container .mean-bar {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: -30px;
}

.mean-bar a.meanmenu-reveal {
  background-color: #F28123;
}

.main-menu-wrap {
  position: relative;
}

.mean-container a.meanmenu-reveal {
  color: #051922;
}

.mean-container a.meanmenu-reveal span {
  background-color: #051922;
}

.mean-container .mean-nav ul li a {
  padding: 0.5em 5%;
}

.mean-container .mean-nav ul li li a {
  padding: 0.5em 10%;
}

.mean-container .mean-nav ul li a.mean-expand {
  font-size: 16px;
  height: 10px;
  line-height: 10px;
  width: 15px;
}

.mean-container a.meanmenu-reveal {
  padding: 8px 8px 6px;
}

nav.mean-nav > ul > li:first-child > a {
  border-top: none;
}

.header-icons a {
  color: #fff;
  display: inline-block;
  padding: 10px;
}

.site-logo {
  padding: 6px 0;
}

.top-header-area.sepherate-header ul li > a, .top-header-area.sepherate-header .header-icons a {
  color: #051922;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
}

nav.main-menu ul li.current-list-item > a {
  color: #F28123;
}

nav.main-menu li:hover > a {
  color: #F28123;
}

nav.main-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a:hover {
  color: #F28123;
}

.sticky-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999 !important;
}

.sticky-wrapper.is-sticky .top-header-area {
  background-color: #051922;
  padding: 15px 0;
}


ul.navbar-nav {
  margin: 0 auto;
}

.search-area {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5555;
  background-color: #051922;
  width: 100%;
  height: 100%;
  text-align: center;
}

span.close-btn {
  position: absolute;
  right: 0%;
  color: #fff;
  top: 5%;
  cursor: pointer;
}

.search-area {
  height: 100%;
}

.search-area div {
  height: 100%;
}

.search-bar {
  height: 100%;
  display: table;
  width: 100%;
}

a.mobile-show {
  display: none;
}
a.mobile-show-d {
  display: none;
}

.search-area .search-bar div.search-bar-tablecell {
  display: table-cell;
  vertical-align: middle;
  height: auto;
}

.search-bar-tablecell input {
  border: none;
  padding: 15px;
  width: 60%;
  background-color: transparent;
  border-bottom: 1px solid #F28123;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.search-bar-tablecell button[type=submit] {
  border: none;
  background-color: #F28123;
  padding: 15px 30px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
}

.search-bar-tablecell input::-webkit-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input:-ms-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input::-ms-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input::placeholder {
  color: #fff;
}

.search-bar-tablecell button[type=submit] i {
  margin-left: 5px;
}

.search-area {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-area.search-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.search-bar-tablecell h3 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
}

/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */
.single-logo-item img {
  max-width: 180px;
  margin: 0 auto;
}

.logo-carousel-section {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.footer-area {
  background-color: #051922;
  color: #fff;
  padding: 150px 0;
}

h2.widget-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
  color: #fff;
}

h2.widget-title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #F28123;
  content: "";
}

.footer-box p {
  color: #fff;
  opacity: 0.7;
  line-height: 1.8;
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box ul li {
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-box ul li:last-child {
  margin-bottom: 0;
}

.footer-box.subscribe form input[type=email] {
  border: none;
  background-color: #012738;
  width: 78%;
  padding: 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
}

.footer-box.subscribe form button {
  width: 20%;
  border: none;
  background-color: #012738;
  color: #F28123;
  padding: 14px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

.footer-box.subscribe form button:focus {
  outline: none;
}

.copyright {
  background-color: #051922;
  border-top: 1px solid #232a35;
}

.copyright p {
  margin: 0;
  color: #fff;
  opacity: 0.7;
  padding: 16px 0;
  font-size: 15px;
}

.copyright a {
  color: #F28123;
  font-weight: 700;
}

.copyright a:hover {
  color: #f59d53;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  padding: 16px 10px;
  display: block;
}

.footer-box ul li a {
  color: #fff;
}

.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
}

.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #F28123;
}

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.navbar-brand:hover {
  opacity: 0.7;
}

a.boxed-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.boxed-btn:hover {
  background-color: #051922;
  color: #F28123;
}
a.boxed-empty-btn:hover {
  background-color: #F28123;
  color: #fff;
}


a.bordered-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.bordered-btn:hover {
  background-color: #F28123;
  color: #fff;
}

ul.sub-menu a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #F28123;
}

.single-tof-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-tof-box:hover {
  -webkit-box-shadow: 0 0 80px #353535;
  box-shadow: 0 0 80px #353535;
}

a.video-play-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.video-play-btn:hover {
  background-color: #333;
  color: #F28123;
}

.latest-news-bg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover .latest-news-bg {
  opacity: 0.8;
}

a.tof-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn:hover {
  color: #F28123;
}

a.tof-btn:hover i {
  margin-left: 10px;
}

.single-latest-news {
  -webkit-box-shadow: 0 0 20px #dddddd;
  box-shadow: 0 0 20px #dddddd;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.single-logo-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-logo-item:hover {
  opacity: 0.7;
}

.footer-box.pages ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.pages ul li:hover a {
  color: #F28123;
}

.footer-box.subscribe form button {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.subscribe form button:hover {
  background-color: #F28123;
  color: #051922;
}

.social-icons ul li:hover a {
  color: #F28123;
}

.social-icons ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a:hover {
  background-color: #051922;
  color: #F28123;
}

.counter-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.counter-box:hover {
  -webkit-box-shadow: 0 0 80px #6f6f6f;
  box-shadow: 0 0 80px #6f6f6f;
}

input[type="submit"] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px !important;
}

input[type="submit"]:hover {
  background-color: #051922;
  color: #F28123;
}

div.owl-controls, .owl-controls div {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
  opacity: 0.7;
}

.pagination-wrap ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pagination-wrap ul li:hover a {
  background-color: #F28123;
}

.icons a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.icons a:hover i {
  color: #F28123;
}

.tof-text a.tof-btn {
  margin-top: 15px;
  display: inline-block;
}

.single-pricing-table {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-pricing-table:hover {
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.product-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.product-image img:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.cart-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.cart-btn:hover {
  background-color: #051922;
  color: #F28123;
}

.recent-posts ul li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.recent-posts ul li:hover {
  opacity: 0.7;
}

ul.sub-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #F28123 !important;
}

.sidebar-section ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-section ul li a:hover {
  opacity: 0.7;
}

.comment-text-body h4 a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.comment-text-body h4 a:hover {
  color: #F28123;
}

ul.product-share li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.product-share li:hover a {
  color: #F28123;
}

.service-menu ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-menu ul li a.active {
  font-weight: 600;
  color: #ffe200;
}

.service-menu ul li a:hover {
  color: #ffe200;
}

.single-product-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #666;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px #e4e4e4;
  box-shadow: 0 0 20px #e4e4e4;
  margin-bottom: 10px;
}

.single-product-item:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.single-product-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.search-bar-tablecell button[type=submit] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-bar-tablecell button[type=submit]:hover {
  background-color: #fff;
  color: #000;
}

span.close-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span.close-btn:hover {
  color: #fff;
}

a.mobile-show.user-profile {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a.mobile-show.user-profile:hover {
  color: #F28123;
}
a.mobile-show-d.user-profile-d {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a.mobile-show-d.user-profile-d:hover {
  color: #F28123;
}



/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */
.hero-bg {
  background-image: url(../img/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-text {
  display: table;
  height: 100%;
}

.hero-text-tablecell {
  display: table-cell;
}

.hero-area {
  height: 100%;
  position: relative;
  z-index: 1;
}

html, body {
  height: 100%;
}

.hero-area:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  z-index: -1;
  opacity: 0.6;
}

.hero-text p.subtitle {
  color: #F28123;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 15px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.hero-area div {
  height: 100%;
}

.hero-area div.hero-text {
  height: 100%;
  width: 100%;
}

.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.hero-area div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}

.hero-btns {
  margin-top: 35px;
}

.hero-btns a.bordered-btn {
  margin-left: 15px;
}

.hero-area div.hero-form {
  background-color: #fff;
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px #2d2d2d;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}

input[type="submit"] {
  background-color: #F28123;
  color: #051922;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  border: none !important;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 3px;
}

.homepage-bg-1 {
  background-image: url(../img/hero-bg.png);
}

.homepage-bg-2 {
  background-image: url(../img/hero-bg-2.png);
}

.homepage-bg-3 {
  background-image: url(../img/hero-bg-3.png);
}

.homepage-bg-4 {
  background-image: url(../img/hero-bg-4.png);
}

.homepage-bg-5 {
  background-image: url(../img/hero-bg-5.png);
}

.homepage-slider {
  height: 100%;
}

.homepage-slider div {
  height: 100%;
}

.homepage-slider div.hero-text {
  display: table;
  width: 100%;
}

.homepage-slider div.hero-text-tablecell {
  height: auto;
  /*vertical-align: middle;*/
  padding-top: 150px;
  display: table-cell;
}

.homepage-slider div.hero-text-tablecell div {
  height: auto;
}

.single-homepage-slider {
  background-size: cover;
  background-position: center;
  background-color: #020C0E;
  position: relative;
  z-index: 1;
}

.single-homepage-slider:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #051922;
  content: "";
  z-index: -1;
  opacity: 0.7;
}

div.owl-controls, .owl-controls div {
  height: auto;
  top: 200px;
  color: #F28123;
  font-size: 48px;
}

.homepage-slider {
  position: relative;
}

.owl-prev {
  position: absolute;
  left: 60px;
  margin-top: -30px;
}

.owl-next {
  position: absolute;
  right: 60px;
  margin-top: -30px;
}

/* -----------------------------------------------------------------------------

# List Styles

----------------------------------------------------------------------------- */
.list-section {
  background-color: #f5f5f5;
}

.list-box {
  overflow: hidden;
  letter-spacing: 0.5px;
}

.list-box .content h3 {
  display: block;
  line-height: 22px;
  font-size: 18px;
  margin-bottom: 4px;
}

.list-box .content p {
  margin-bottom: 0px;
  opacity: 0.75;
}

.list-box .list-icon i {
  display: block;
  font-size: 24px;
  margin-right: 15px;
  color: #F28123;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 60px;
  border: 2px #F28123 dotted;
  border-radius: 999px;
}

/* -----------------------------------------------------------------------------

# News Styles

----------------------------------------------------------------------------- */
.latest-news {
  background-color: #ddd;
}
.latest-news-bg {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #ddd;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.single-latest-news h3 {
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 600;
}

.single-latest-news h3 a {
  color: #051922;
}

p.blog-meta span {
  margin-right: 15px;
  opacity: 0.6;
  color: #051922;
  font-size: 0.85em;
}

p.blog-meta span:last-child {
  margin-right: 0;
}

p.blog-meta span i {
  margin-right: 5px;
}

p.excerpt {
  line-height: 1.8;
  color: #555;
}

.latest-news a.boxed-btn {
  margin-top: 10px;
}

.news-text-box {
  padding: 25px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.single-latest-news {
  margin-bottom: 30px;
}

.single-artcile-bg {
  background-image: url(../img/latest-news/news-bg-3.jpg);
  height: 450px;
}

.pagination-wrap {
  margin-top: 40px;
}

.pagination-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-wrap ul li {
  display: inline-block;
}

.pagination-wrap ul li a {
  color: #6f6f6f;
  font-size: 15px;
  background-color: #f3f3f3;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  margin: 3px;
  font-weight: 600;
  border-radius: 50px;
}

.pagination-wrap ul li a.active {
  background-color: #F28123;
}

.single-artcile-bg {
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-article-text h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.single-article-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #051922;
}

.comments-list-wrap {
  margin: 100px 0;
}

.comments-list-wrap h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.comment-template h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.single-comment-body {
  position: relative;
}

.comment-user-avater {
  position: absolute;
  left: 0;
  top: 0;
}

.comment-user-avater img {
  width: 60px;
  max-width: 60px;
  border-radius: 50%;
}

.comment-text-body {
  padding-left: 80px;
  margin-bottom: 40px;
}

.comment-text-body h4 {
  font-size: 18px;
  font-weight: 600;
}

span.comment-date {
  opacity: 0.5;
  font-size: 80%;
  font-weight: 700;
  margin-left: 5px;
}

.comment-text-body h4 a {
  color: #051922;
  font-size: 80%;
  margin-left: 10px;
  border-bottom: 1px solid #aaa;
}

.single-comment-body.child {
  margin-left: 75px;
}

.comment-text-body p {
  color: #888;
  line-height: 2;
  margin: 0;
}

.comment-template h4 {
  margin-bottom: 10px;
}

.comment-template > p {
  opacity: 0.7;
  margin-bottom: 30px;
}

.comment-template form p input[type=text] {
  border: 1px solid #ddd;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  color: #051922;
}

.comment-template form p input[type=email] {
  border: 1px solid #ddd;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  color: #051922;
  margin-left: 10px;
}

.comment-template form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 15px;
  color: #051922;
  border-radius: 5px;
  height: 250px;
  resize: none;
  width: 100%;
}

.sidebar-section {
  margin-left: 30px;
}

.sidebar-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sidebar-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-section ul li {
  line-height: 1.5;
}

.sidebar-section ul li a {
  color: #555;
  font-size: 15px;
}

.sidebar-section > div {
  margin-bottom: 60px;
}

.sidebar-section > div:last-child {
  margin-bottom: 0;
}

.recent-posts ul li, .archive-posts ul li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 10px;
}

.recent-posts ul li:before, .archive-posts ul li:before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.tag-section ul li {
  display: inline-block;
}

.tag-section ul li a {
  background-color: #ddd;
  padding: 3px 10px;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 5px;
}

/* -----------------------------------------------------------------------------

# Cart Banner Styles

----------------------------------------------------------------------------- */
.cart-banner {
  background-color: #f5f5f5;
}

.cart-banner .image-column {
  position: relative;
  margin-top: 40px;
}

.cart-banner .image-column .price-box {
  position: absolute;
  left: 15%;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(242, 129, 35, 0.75);
}

.cart-banner .image-column .price-box .inner-price {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: #F28123;
}

.cart-banner .image-column .price-box .inner-price .price {
  color: #051922;
  padding-top: 27px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  font-weight: 400;
}

.cart-banner .image-column .price-box .inner-price .price strong {
  color: #051922;
  font-size: 24px;
}

.cart-banner .content-column {
  position: relative;
  padding-top: 40px;
}

.cart-banner .content-column h3 {
  font-size: 40px;
}

.cart-banner .content-column h4 {
  position: relative;
  font-weight: 300;
  text-transform: uppercase;
}

.cart-banner .content-column .text {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 25px;
  margin-bottom: 25px;
}

.time-counter {
  position: relative;
  margin-bottom: 25px;
}

.time-counter .time-countdown {
  position: relative;
}

.time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
  font-size: 13px;
  line-height: 1em;
  padding: 8px 20px 14px;
  text-transform: capitalize;
  text-align: center;
  border: 2px solid #F28123;
}

.time-countdown .counter-column .count {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0px 0px;
  color: #F28123;
  font-weight: 700;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------------------------

# Testimonial Styles

----------------------------------------------------------------------------- */
.client-avater {
  margin-bottom: 20px;
}

.client-meta h3 {
  font-size: 20px;
  font-weight: 600;
}

.client-meta h3 span {
  display: block;
  font-size: 70%;
  margin-top: 10px;
  color: #051922;
  font-weight: 600;
  opacity: 0.5;
}

p.testimonial-body {
  font-size: 17px;
  font-style: italic;
  width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  color: #999999;
  margin-top: 20px;
}

.last-icon {
  margin-top: 20px;
  font-size: 25px;
  opacity: 0.3;
}

.client-avater img {
  max-width: 100px;
  border-radius: 50%;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------

# About Styles

----------------------------------------------------------------------------- */
a.video-play-btn {
  position: absolute;
  background-color: #F28123;
  color: #051922;
  width: 90px;
  height: 90px;
  text-align: center;
  line-height: 92px;
  border-radius: 50%;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  z-index: 2;
  top: 50%;
  margin-top: -45px;
  -webkit-box-shadow: 0 0 20px #adadad;
  box-shadow: 0 0 20px #adadad;
  left: 50%;
  margin-left: -45px;
}

.abt-bg {
  background-image: url(../img/abt.jpg);
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.abt-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #051922;
  opacity: 0.3;
}

.abt-section .abt-text {
  padding: 50px;
  padding-left: 30px;
}

.abt-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.abt-text p.top-sub {
  opacity: 0.8;
  margin-bottom: 10px;
}

.abt-text p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------

# Shop Banner Styles

----------------------------------------------------------------------------- */
.shop-banner {
  position: relative;
  background-color: #f5f5f5;
  background-image: url(../img/4.png);
  background-size: cover;
  padding: 110px 0px 115px;
  background-color: rgba(255, 255, 255, 0.6);
  /*background-blend-mode: lighten;*/
}

.shop-banner h3 {
  position: relative;
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 0px;
  color:#000;
  /*text-shadow: 
  0 0 10px rgb(190, 102, 0),  
  0 0 20px rgb(190, 102, 0), 
  0 0 30px rgb(190, 102, 0), 
  0 0 40px rgb(238, 127, 0), 
  0 0 50px rgb(255, 136, 0), 
  0 0 60px rgb(255, 166, 64); */
}

.shop-banner .explain {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #F28123;
}

.shop-banner .explain span {
  position: relative;
  font-size: 30px;
  line-height: 1.1em;
  color: #000000;
  font-weight: 600;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
  /*text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8), 
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 0, 0, 0.2);*/
}


.card-banner {
  position: relative;
  background-color: #f5f5f5;
  background-image: url(../img/1.png);
  background-size: cover;
  padding: 110px 0px 115px;
  background-color: rgba(255, 255, 255, 0.6);
  /*background-blend-mode: lighten;*/
}

.card-banner h3 {
  position: relative;
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 0px;
  color:#000;
  /*text-shadow: 
  0 0 10px rgb(190, 102, 0),  
  0 0 20px rgb(190, 102, 0), 
  0 0 30px rgb(190, 102, 0), 
  0 0 40px rgb(238, 127, 0), 
  0 0 50px rgb(255, 136, 0), 
  0 0 60px rgb(255, 166, 64); */
}

.card-banner .explain {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #F28123;
}

.card-banner .explain span {
  position: relative;
  font-size: 30px;
  line-height: 1.1em;
  color: #000000;
  font-weight: 600;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
  /*text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8), 
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 0, 0, 0.2);*/
}




/* -----------------------------------------------------------------------------

# About Page Styles

----------------------------------------------------------------------------- */
.feature-bg {
  position: relative;
  margin: 150px 0;
}

.feature-bg:after {
  background-image: url(../img/feature-bg.jpg);
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  content: "";
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  -webkit-box-shadow: 0 0 20px #cacaca;
  box-shadow: 0 0 20px #cacaca;
  border-bottom-left-radius: 5px;
}

.team-bg-1 {
  background-image: url(../img/team/team-1.jpg);
}

.team-bg-2 {
  background-image: url(../img/team/team-2.jpg);
}

.team-bg-3 {
  background-image: url(../img/team/team-3.jpg);
}

.team-bg-4 {
  background-image: url(../img/team/team-4.jpg);
}

.team-bg {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  background-color: #ddd;
}

.single-team-item {
  position: relative;
}

.single-team-item h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.single-team-item h4 span {
  font-size: 70%;
  display: block;
  margin-top: 10px;
  opacity: 0.7;
}

ul.social-link-team {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

ul.social-link-team li {
  display: inline-block;
}

ul.social-link-team li a {
  color: #fff;
  background-color: #F28123;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 5px;
}

/* -----------------------------------------------------------------------------

# Contact Page Styles

----------------------------------------------------------------------------- */
.form-title {
  margin-bottom: 25px;
}

.form-title h2 {
  font-size: 25px;
}

.form-title p {
  font-size: 15px;
  line-height: 1.8;
}

.contact-form form p input[type=text], .contact-form form p input[type=tel], .contact-form form p input[type=email] {
  width: 49%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.contact-form form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  height: 200px;
  border-radius: 3px;
  width: 100%;
  resize: none;
}

.contact-form-wrap {
  background-color: #FBFBFB;
  padding: 45px 30px;
  border-radius: 5px;
}

.contact-form-box {
  padding-left: 40px;
  margin-bottom: 30px;
}

.contact-form-box h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.contact-form-box h4 i {
  position: absolute;
  left: -13%;
  color: #F28123;
  top: 2px;
}

.contact-form-box p {
  line-height: 1.8;
  opacity: 0.8;
}

.contact-form-wrap .contact-form-box:last-child {
  margin: 0;
}

.find-location p {
  color: #fff;
  font-size: 40px;
  margin: 0;
  font-weight: 600;
  padding: 95px 0;
}

.find-location p i {
  margin-right: 10px;
  color: #F28123;
}

#form_status span {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background: #E74C3C;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 3px;
  margin-bottom: 18px;
}

#form_status span.loading {
  color: #333;
  background: #eee;
  border-radius: 3px;
  padding: 18px 0px;
}

#form_status span.notice {
  color: yellow;
}

#form_status .success {
  color: #fff;
  text-align: center;
  background: #2ecc71;
  border-radius: 3px;
  padding: 30px 0px;
}

#form_status .success i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 14px;
}

#form_status .success h3 {
  color: #fff;
  margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
.product-filters {
  margin-bottom: 80px;
}

.product-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.product-filters ul li {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  margin: 15px;
  border: 2px solid #051922;
  color: #323232;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 25px;
}

.product-filters ul li.active {
  border: 2px solid #F28123;
  background-color: #F28123;
  color: #fff;
}


.product-image {
  padding: 10px;
  padding-bottom: 0;
  min-height: 175px;
  min-width: 175px;
  width:200px;
  height:200px;
  max-height: 225px;
  max-width: 225px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center; 
}

.product-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
  object-fit: cover; 
  object-position: center; 
}



p.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

p.product-price span {
  display: block;
  opacity: 0.8;
  font-size: 15px;
  font-weight: 400;
}

a.cart-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #F28123;
  color: #fff;
  padding: 10px 20px;
}

a.cart-btn i {
  margin-right: 5px;
}

.single-product-img img {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.single-product-content h3 {
  font-size: 22px;
  font-weight: 600;
}

p.single-product-pricing span {
  font-size: 18px;
  display: block;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 400;
}

.single-product-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.single-product-content p.single-product-pricing {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #051922;
  line-height: inherit;
}

input[type="number"] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  width: 100px;
  margin-bottom: 15px;
}

.single-product-form a.cart-btn {
  margin-bottom: 15px;
}

.single-product-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
}

ul.product-share {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.product-share li {
  display: inline-block;
}

ul.product-share li a {
  display: block;
  color: #051922;
  margin-right: 10px;
}

.single-product-content {
  margin-left: 30px;
}

table.cart-table {
  border: 1px solid #f9f9f9;
  width: 100%;
}

thead {
  border-bottom: 1px solid #eee;
}

tr.table-head-row th {
  border-right: 1px solid #efefef;
  padding: 15px;
  font-weight: 500;
  text-align: center;
}

tr.table-head-row th:last-child {
  border-right: none;
}

.cart-table-wrap tbody tr td {
  text-align: center;
}

td.product-image img {
  max-width: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
  border: 1px solid #efefef;
  padding: 20px 0;
  color: #051922;
}

thead.cart-table-head tr {
  background-color: #efefef;
}

td.product-quantity input {
  margin-bottom: 0;
}

td.product-remove a {
  color: #051922;
}

.total-section table.total-table {
  border: 1px solid #efefef;
  width: 100%;
}

tr.table-total-row {
  background-color: #efefef;
}

tr.table-total-row th {
  font-weight: 500;
  font-size: 15px;
  padding: 15px;
}

table.total-table tbody tr.total-data td {
  border: 1px solid #efefef;
  padding: 19px 15px;
}

tr.total-data td strong {
  margin-right: 32px;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-buttons a:first-child {
  margin-right: 20px;
}

.coupon-section {
  margin-top: 50px;
}

.coupon-section h3 {
  font-size: 20px;
  font-weight: 500;
}

.coupon-form-wrap form p input[type=text] {
  border: 1px solid #ddd;
  color: #051922;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
}

.card.single-accordion {
  margin-bottom: 15px;
  border-bottom: 1px solid #EFEFEF !important;
}

.card.single-accordion .card-header {
  background-color: #fff;
  border: none;
  padding: 0;
}

.card.single-accordion:last-child {
  margin-bottom: 0;
}

.card.single-accordion .card-header h5 button {
  color: #051922;
  font-size: 15px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  text-decoration: none;
  border: none;
  background-color: #EFEFEF;
  position: relative;
  padding-left: 50px;
  font-weight: 600;
}

.card.single-accordion {
  border: 1px solid #F9F9F9;
}

.billing-address-form {
  padding: 20px;
}

.billing-address-form form p input {
  border: 1px solid #ddd;
  padding: 15px;
  width: 100%;
  border-radius: 3px;
}

.billing-address-form form p textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 15px;
  height: 120px;
  resize: none;
}

.shipping-address-form p, .card-details p {
  margin: 0;
}

.card.single-accordion .card-header h5 button:before {
  position: absolute;
  left: 20px;
  top: 50%;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: #F28123;
}

.billing-address-form form p:last-child {
  margin-bottom: 0;
}

table.order-details {
  border: 1px solid #efefef;
}

table.order-details thead tr th {
  background-color: #efefef;
  padding: 18px;
  font-size: 15px;
  font-weight: 500;
}

table.order-details tbody td {
  border: 1px solid #efefef;
  padding: 15px;
}

.order-details-wrap > a {
  margin-top: 30px;
}

.card.single-accordion {
  border: 1px solid #eeeeee;
}



/* -----------------------------------------------------------------------------

# 404 Page Styles

----------------------------------------------------------------------------- */
.error-text i {
  font-size: 90px;
  margin-bottom: 30px;
}

.error-text h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.error-text p {
  font-size: 15px;
  margin-bottom: 30px;
}

.full-height-section {
  height: 100%;
  display: table;
  width: 100%;
}

.full-height-tablecell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

/* -----------------------------------------------------------------------------

# Store Hero Styles

----------------------------------------------------------------------------- */
.store-hero-bg {
  background-image: url(../img/avatars/avatar3.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.store-hero-text {
  display: table;
  height: 100%;
}

.store-hero-text-tablecell {
  display: table-cell;
}

.store-hero-area {
  height: 35%;
  position: relative;
  z-index: 1;
}
.store-hero-area:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  z-index: -1;
  opacity: 0.6;
}

.sharea1 div.store-hero-text {
  text-align: center;
  height: 100%;
  width: 100%;
}




.store-hero-text p.subtitle {
  color: #F28123;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 15px;
}



.store-hero-text-h1{
  font-size: clamp(6px, 3vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  padding: 1em 0 1em 0;
  float: none;
  color: #000;
  margin-top: 2px;
  text-shadow: 
  0 0 5px  rgba(255, 255, 255, 1.0), /* Small, near glow */
  0 0 10px rgba(255, 255, 255, 0.9), /* Larger, diffused glow */
  0 0 15px rgba(255, 255, 255, 0.8), /* Even larger glow */
  0 0 20px rgba(255, 255, 255, 0.7), /* Bigger glow */
  0 0 25px rgba(255, 255, 255, 0.6), /* Maximum glow effect */
  0 0 30px rgba(255, 255, 255, 0.5); /* Final glow layer */;
}

.store-hero-text h1{
  font-size: clamp(6px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin-top: 50px;
  text-shadow: 
  0 0 5px  rgba(255, 255, 255, 1.0), /* Small, near glow */
  0 0 10px rgba(255, 255, 255, 0.9), /* Larger, diffused glow */
  0 0 15px rgba(255, 255, 255, 0.8), /* Even larger glow */
  0 0 20px rgba(255, 255, 255, 0.7), /* Bigger glow */
  0 0 25px rgba(255, 255, 255, 0.6), /* Maximum glow effect */
  0 0 30px rgba(255, 255, 255, 0.5); /* Final glow layer */;
}

.store-hero-text h2 {
  font-size: clamp(2px, 2vw, 18px);
  font-weight: 200;
  line-height: 1;
  color: #fff;
  margin-top: 10px;
  text-shadow: 
  0 0 5px  rgba(255, 255, 255, 0), /* Small, near glow */
  0 0 10px rgba(255, 255, 255, 0.2), /* Larger, diffused glow */
  0 0 15px rgba(255, 255, 255, 0.4), /* Even larger glow */
  0 0 20px rgba(255, 255, 255, 0.6), /* Bigger glow */
  0 0 25px rgba(255, 255, 255, 0.8), /* Maximum glow effect */
  0 0 30px rgba(255, 255, 255, 1.0); /* Final glow layer */;
}




.store-hero-area div {
  height: 100%;
}

.store-hero-area div.store-hero-text {
  height: 100%;
  width: 100%;
}

.store-hero-area div.store-hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.store-hero-area div.store-hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}

.store-hero-btns {
  margin-top: 35px;
}

.store-hero-btns a.bordered-btn {
  margin-left: 15px;
}

.store-hero-area div.store-hero-form {
  background-color: #fff;
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px #2d2d2d;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}



/*  START this is for the sign up / sign in part  */
.tab-area{
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  padding: 5px;
}
.nav-pills{
  /*min-width:450px;*/
  max-width:700px;
  margin:auto;
}
.nav-item{
  width: 25%;
}
.nav-pills .nav-link{
  font-weight: bold;
  padding: 5px 14px 5px;
  text-align: center;
  background: #999999;
  color: #5e5e5e;
  border-radius: 10px;
  /*border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 50px;*/
  margin-right:3px;
}
.nav-pills .nav-link.active{
  background: #fff;
  border: 1px solid #343436;
  /*border-top: 1px solid #343436;
  border-right: 1px solid #343436;*/
  color: #000;
  margin-right:3px;
}
.tab-content{
  position:relative;
  max-width: 700px;
  height: auto;
  margin-top:5px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  /*border-bottom-right-radius: 10px;
  z-index: 1000;*/
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
  padding: 20px;
  margin-bottom: 50px;
  border:1px solid #343436; 

  /*border-bottom: 1px solid #343436;
  border-right: 1px solid #343436;*/
}
.tab-content button{
  border-radius: 10px;
  width: 100px;
  margin: 0 auto;
  /*float: right;*/
}
/*  END this is for the sign up / sign in part  */



.collapsing {
  background-color: transparent;
  opacity: 0.3;
  border:0px;
  padding:5px;
}
.collapsing:hover {
  background-color: transparent;
  opacity: 0.5;
  border:0px;
  padding:5px;
}





/* chat related 
.chatcard {
  position: absolute;
  width: 95%;
  height: 80%;
  box-shadow: 0px 0px 5px gray;
  left: 2.5%;
  top: 5%;
}
#user-form {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
#user-form input {
  width: 400px;
  padding-right: 30%;
}
#user-form button {
  position: absolute;
  left: 75%;
  margin-left: 2px;
}
#chat-form {
  position: absolute;
  top: 90%;
  transform: translateY(-90%);
  left: 50%;
  transform: translateX(-50%);
}
#messages {
  padding-bottom: 10%;
  padding-left: 20px;
  padding-top: 20px;
  max-height: 80%;
  overflow: auto;
}
#chat-form input {
  width: 400px;
  padding-right: 20%;
}
#chat-form button {
  position: absolute;
  left: 85%;
}
#profile {
  position: absolute;
  top: 20px;
  left: 20px;
}
*/


/**
 * Tabs
 */
 .tabs {
	display: flex;
	flex-wrap: wrap;
	margin:auto;
  text-align: center;
  width: 95%;
  
}
.tabs label {
	order: 1; 
	display: inline-block;
	padding: 13px 14px 13px;
	margin-right: 3px;
	cursor: pointer;
  background-color: #000;
  color: #f28123;
  font-weight: bold;
  transition: background ease 0.2s;
	border-radius:10px;
}
.tabs .tab {
  order: 99; 
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background: #fff;
  border-top:1px solid;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background-color: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius:10px;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: inline-block;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}


.hbtn {
	order: 1; 
	display: inline-block !important;
	padding: 10px 20px 10px  !important;
	margin-right:3px;
  margin-bottom:2px;
	cursor: pointer;
  background-color: #999999 !important;
  color: #5e5e5e !important;
  font-weight: bold;
  transition: background ease 0.2s;
	border-radius:10px;
}
.hbtnsel {
  order: 1; 
	display: inline-block !important;
	padding: 10px 20px 10px  !important;
	margin-right:3px;
  margin-bottom:2px;
	cursor: pointer;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000;
  font-weight: bold;
  transition: background ease 0.2s;
	border-radius:10px;
}

@media only screen and (max-width: 991px)  {
/*@media (max-width: 45em) {*/
  .hbtn, .hbtnsel {
    order: initial;
  
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

.hbtnleft {
	order: 1; 
	display: inline-block !important;
	padding: 10px 10px 10px !important;
	margin-right:0px;
  margin-bottom:1px;
	cursor: pointer;
  background-color: #000 !important;
  color: #f28123 !important;
  font-weight: bold;
  transition: background ease 0.2s;
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;

}
.hbtnselleft {
  order: 1; 
	display: inline-block !important;
	padding: 10px 10px 10px  !important;
	margin-right:0px;
  margin-bottom:1px;
	cursor: pointer;
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000;
  font-weight: bold;
  transition: background ease 0.2s;
  border-top-left-radius:10px;
	border-bottom-left-radius:10px;}

@media only screen and (max-width: 14000px)  {
  .hbtnleft, .hbtnselleft {
    order: initial;
    width: 50%;
    margin-right: 0;
  }
}













/* -------multi select drop down------------------------------- */
.container2 {
  max-width: 50vw;
  margin: 0 auto;
  text-align: -webkit-center;
  text-align: -moz-center;
}

@media (max-width: 60em) {
  .container2 {
    order: initial;
    max-width:100vw;
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}


select[data-multi-select-plugin] {
  display: none !important;
}

.multi-select-component {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
  max-width:700px;
  padding: 5px 8px;
  font-size: 14px;
  line-height: 1.42857143;
  /*padding-bottom: 3px;*/
  color: #000;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.autocomplete-list {
  border-radius: 5px 0px 0px 5px;
}

.multi-select-component:focus-within {
  box-shadow: inset 0px 0px 0px 2px #78ABFE;
}

.multi-select-component .btn-group {
  display: none !important;
}

.multiselect-native-select .multiselect-container {
  width: 100%;
}

.selected-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #15553a;
  background-color: #b8f5a8;
  white-space: nowrap;
  margin: 1px 5px 5px 0;
  height: 22px;
  vertical-align: top;
  cursor: default;
}

.selected-wrapper .selected-label {
  max-width: 514px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 5px;
  vertical-align: top;
}

.selected-wrapper .selected-close {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.49em;
  margin-left: 5px;
  padding-bottom: 10px;
  height: 100%;
  vertical-align: top;
  padding-right: 4px;
  opacity: 0.2;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  font-weight: 700;
}

.search-container {
  display: flex;
  flex-direction: row;
  /*width:90%*/
}

.search-container .selected-input {
  background: none;
  border: 0;
  height: 20px;
  width: 90%;
  padding: 0;
  margin-bottom: 6px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-container .selected-input:focus {
  outline: none;
}

.dropdown-icon.active {
  transform: rotateX(180deg)
}

.search-container .dropdown-icon {
  display: inline-block;
  padding: 10px 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  border: 0 !important;
  /* needed */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* SVG background image */
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.search-container ul {
  position: absolute;
  list-style: none;
  padding: 0;
  z-index: 3;
  margin-top: 29px;
  width: 100%;
  right: 0px;
  background: #fff;
  border: 1px solid #333;
  border-top: none;
  border-bottom: none;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.search-container ul :focus {
  outline: none;
}

.search-container ul li {
  display: block;
  text-align: left;
  padding: 8px 29px 2px 12px;
  border-bottom: 1px solid #333;
  font-size: 14px;
  min-height: 31px;
}

.search-container ul li:first-child {
  border-top: 1px solid #333;
  border-radius: 4px 0px 0 0;
}

.search-container ul li:last-child {
  border-radius: 4px 0px 0 0;
}


.search-container ul li:hover.not-cursor {
  cursor: default;
}

.search-container ul li:hover {
  color: #333;
  background-color: rgb(251, 242, 152);
  ;
  border-color: #333;
  cursor: pointer;
}

/* Adding scrool to select options */
.autocomplete-list {
  max-height: 130px;
  overflow-y: auto;
}



/* -------------------- mini tab (used in store address inut part) --------------------*/
.minitab input{ position: Absolute; display:none;}
.minitab label{
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  background-color: #000;
  color: #ff9900;
  display: inline-block;
  border: 1px solid #333;
  border-radius: 5px;
  }
.minitab input:checked + label{
  background: #fff;
  color: #000;
}
.minitab  div{display: none;}
.minitab  input:checked + {
  .tab-1 ~ .tab-1-content,
  .tab-2 ~ .tab-2-content,
  .tab-3 ~ .tab-3-content,
  .tab-4 ~ .tab-4-content{
      display: inline-block;
      border: 1px solid #999;
      border-radius: 5px;
      margin-top: 5px;
      padding: 5px;
  }
}


/* ----------------    tabset -----------------  */
/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #000;
  background-color: #000;
  color: #ff9900;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

/*
.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}*/

input:focus-visible + label {
  outline: 2px solid rgba(0,102,204,1);
  border-radius: 5px;
}

/*
.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
  color: #06c;
}


.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}*/

.tabset > input:checked + label {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.tab-panel {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius:5px;
  margin-bottom: 5px;
}

.pfl-form {
  max-width:50vw;
  margin:0 auto;
}

@media (max-width: 60em) {
  .pfl-form {
    order: initial;
    max-width:100vw;
    width: 100%;
    margin-right: 0;
  }
}

.pfl-form-border {
  border:1px solid #333;
}

.border-5px {
  border-radius: 5px;
}
.pad-5px {
  padding:5px;
}
.mar-bot-5px {
  margin-bottom:5px;
}

.check-btn {
  border-top-right-radius:5px;
  border-bottom-right-radius:5px;
  background-color:#F28123;
  color:#fff;
  padding:5px 25px 1px 10px;
}
a.check-btn:hover {
  background-color: #051922;
  color: #F28123;
}

.boxed-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #F28123;
  color: #fff;
  padding: 5px 25px 5px 25px;
  border: 2px solid #F28123;
  border-radius: 5px;
  margin:1px;
}

.boxed-lbl {
  font-family: 'Poppins', sans-serif;
  display: block;
  background-color: #051922;
  color: #fff;
  padding: 5px 25px 5px 10px;
  border: 2px solid #051922;
  border-radius: 5px;
  margin:1px;

  width:100%;
  box-sizing:border-box;
}



.boxed-lbl a {
  text-decoration: none;
}



.boxed-empty-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 5px 25px 5px 10px;
  border: 2px solid #F28123;
  border-radius: 5px;
}



.input-group-prepend {
  width : 50%; /*adjust as needed*/
  text-align: right;
}

.input-group-prepend label {
  width: 100%;
  overflow: hidden;
}

.left_label_border {
  border:1px solid #999;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding-right: 10px;
  font-weight: bold;
}

/* ---------------- calendar ------------------*/
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  max-width: 425px;
  margin: 0 auto;
border: 1px solid #666666;
border-radius:5px;
}
.calendar .day {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  text-align: center;
  font-size: 1rem;
}
.calendar .day.empty {
  border: none;
}
.calendar .header {
  font-weight: bold;
  text-align: center;
background-color: #000;
color: #fff;
}
.calendar .day.weekend {
  background-color: #F28123;
}
.month-header {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* ---------  store related -----------  */

.prodimage {
  object-fit: cover;
  max-height: 225px;
  max-width: 225px;
  min-height: 175px;
  min-width: 175px;

}
.mapstep {
  margin: 2px;
  padding: 2px;
  border: 1px solid #666666;
  border-radius: 3px;
  background-color: lemonchiffon;
}


/* ----------------------  STORE SITE ----------------------   */
#controls {
  position:relative;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.maximize-btn {
  position: relative;
  top: 10px;
  right: 10px;
  z-index: 5;
  padding: 10px;
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 4px;
}
.mobile-open {
  position: relative;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
}
@media (max-width: 768px) {
  .maximize-btn {
      display: none;
  }
  .mobile-open {
      display: block;
  }
}
@media (min-width: 769px) {
  .maximize-btn {
      display: block;
  }
  .mobile-open {
      display: none;
  }
}

.profile {
  display: flex;
  align-items: center;
}

.profile-pic {
  float:left;
  position:relative;
  width: 50px; /* Adjust the size as needed */
  height: 50px; /* Adjust the size as needed */
  border-radius: 25%; /* Makes the image a circle */
  object-fit: cover; /* Ensures the image covers the area */
  margin-right: 20px; /* Adds space between the image and the name */
  background-color: #000;
}

.profile-name {
  font-size: 1.5em; /* Adjust the font size as needed */
  font-weight: 700;
  color: #000; /* Adjust the text color as needed */
  text-shadow: 
  0 0 5px  rgba(255, 255, 255, 1.0), /* Small, near glow */
  0 0 10px rgba(255, 255, 255, 0.9), /* Larger, diffused glow */
  0 0 15px rgba(255, 255, 255, 0.8), /* Even larger glow */
  0 0 20px rgba(255, 255, 255, 0.7), /* Bigger glow */
  0 0 25px rgba(255, 255, 255, 0.6), /* Maximum glow effect */
  0 0 30px rgba(255, 255, 255, 0.5); /* Final glow layer */;
}









/* ---------------------------------------------------- Messaging / Chat  -------------------------------------------------------- */


/*************** 2.Mixins ***************/


/************************************************
    ************************************************
										Search Box
	************************************************
************************************************/

.chat-search-box {
  -webkit-border-radius: 3px 0 0 0;
  -moz-border-radius: 3px 0 0 0;
  border-radius: 3px 0 0 0;
  padding: .75rem 1rem;
}

.chat-search-box .input-group .form-control {
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
  border-right: 0;
}

.chat-search-box .input-group .form-control:focus {
  border-right: 0;
}

.chat-search-box .input-group .input-group-btn .btn {
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  margin: 0;
}

.chat-search-box .input-group .input-group-btn .btn i {
  font-size: 1.2rem;
  line-height: 100%;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .chat-search-box {
      display: none;
  }
}


/************************************************
************************************************
                Users Container
************************************************
************************************************/

.users-container {
  position: relative;
  /*padding: 1rem 0;*/
  border-right: 1px solid #e6ecf3;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}


/************************************************
************************************************
                    Users
************************************************
************************************************/

.users {
  padding: 0;
}

.users .person {
  position: relative;
  width: 100%;
  padding: 2px;
  cursor: pointer;
  border-bottom: 1px solid #999;
}

.users .person:hover {
  background-color: #ffffff;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e9eff5), to(#ffffff));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(right, #e9eff5, #ffffff);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, #e9eff5, #ffffff);
  /* FF3.6 */
  background-image: -ms-linear-gradient(right, #e9eff5, #ffffff);
  /* IE10 */
  background-image: -o-linear-gradient(right, #e9eff5, #ffffff);
  /* Opera 11.10+ */
  background-image: linear-gradient(right, #e9eff5, #ffffff);
}

.users .person.active-user {
  background-color: #ffffff;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f9fb), to(#ffffff));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(right, #f7f9fb, #ffffff);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, #f7f9fb, #ffffff);
  /* FF3.6 */
  background-image: -ms-linear-gradient(right, #f7f9fb, #ffffff);
  /* IE10 */
  background-image: -o-linear-gradient(right, #f7f9fb, #ffffff);
  /* Opera 11.10+ */
  background-image: linear-gradient(right, #f7f9fb, #ffffff);
}

.users .person:last-child {
  border-bottom: 0;
}

.users .person .user {
  display: inline-block;
  position: relative;
  margin-right: 10px;
}
.users .person .user_w {
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.users .person .user img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.users .person .user_w img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.users .person .user .status {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #e6ecf3;
  position: absolute;
  top: 0;
  right: 0;
}

.users .person .user .status.online {
  background: #9ec94a;
}

.users .person .user .status.offline {
  background: #c4d2e2;
}

.users .person .user .status.away {
  background: #f9be52;
}

.users .person .user .status.busy {
  background: #fd7274;
}

.users .person .user span.name-time {
  font-weight: 600;
  font-size: .85rem;
  display: inline-block;
}
.users .person .user_w span.name-time_w {
  font-weight: 600;
  font-size: 1.4rem;
  /*display: flex;*/
  width:100%;
}

.users .person .user span.name-time .time {
  font-weight: 400;
  font-size: .7rem;
  text-align: right;
  color: #8796af;
}
.users .person .user_w span.name-time_w .time_w {
  font-weight: 400;
  font-size: .7rem;
  padding-top: 10px;
  text-align: right;
  color: #8796af;
}

.users .person .user span.name-time .cnum {
  font-weight: 400;
  font-size: .7rem;
  text-align: right;
  color: #fff;
  background-color: #029c02;
  border-radius: 5px;
  padding:1px 5px 1px 5px;
}
.users .person .user_w span.name-time_w .cnum_w {
  font-weight: 400;
  font-size: .9rem;
  text-align: right;
  color: #fff;
  background-color: #029c02;
  border-radius: 5px;
  padding:1px 5px 1px 5px;
  margin-left:auto;
}


@media (max-width: 767px) {
  .users .person .user img {
      width: 24px;
      height: 24px;
  }
  .users .person .user_w img {
    width: 32px;
    height: 32px;
}

  .users .person .user span.name-time {
      display: none;
      font-weight: 300;
      font-size: .7rem;
  }
  .users .person .user_w span.name-time_w {
    font-weight: 300;
    font-size: 1.2rem;
  }

  .users .person .user span.name-time .time, .name {
      display: none;
  }
  .users .person .user_w span.name-time_w .time_w, .name_w {
    padding-left: 20px;
  }

  .selected-user span.name {
    font-weight: 400;
    font-size: 0.9rem;
    display: inline;
  }
}


/************************************************
************************************************
                Chat right side
************************************************
************************************************/

.selected-user {
  width: 100%;
  padding: 10px 15px;
  min-height: 70px;
  border-bottom: 1px solid #e6ecf3;
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 10px 10px 0 0;
  background-color: #ffc494;
}

.selected-user span {
  line-height: 90%;
}

.selected-user span.name {
  font-weight: 700;
}

.chat-container {
  position: relative;
  padding: 1rem;
}

.chat-container li.chat-left,
.chat-container li.chat-right {
  display: flex;
  flex: 1;
  flex-direction: row;
  /*margin-bottom: 40px;*/
}

.chat-container li img {
  width: 32px;
  height: 32px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.chat-container li .chat-avatar {
  margin-right: 5px;
}

.chat-container li.chat-right {
  justify-content: flex-end;
}

.chat-container li.chat-right > .chat-avatar {
  margin-left: 5px;
  margin-right: 0;
}

.chat-container li .chat-name {
  font-size: .75rem;
  color: #999999;
  text-align: center;
}

.chat-container li .chat-text {
  padding: .4rem 1rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #999;
  background: #9fffa3;
  font-weight: 600;
  line-height: 150%;
  position: relative;
  margin-bottom: 5px;
}

.deleted {
  color: #ff1919;
}

.chat-container li.chat-left > .chat-text {
  background: #9fd4ff;
}


.chat-container li .chat-text:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0px;
  left: -10px;
  border: 5px solid;
  border-color: transparent #666 transparent transparent;
}

.chat-container li.chat-right > .chat-text {
  text-align: right;
}

.chat-container li.chat-right > .chat-text:before {
  right: -10px;
  border-color: transparent transparent transparent #666;
  left: inherit;
}

/* <i class="fa-solid fa-circle-xmark"></i> 
.chat-container li .chat-text:after {*/
.close-link-left {
  /*font-family: FontAwesome;
  content: '\f057';*/
  position: absolute;
  bottom: 0px;
  top: -10px;
  right: -10px;
  color: #f00
}
.close-link-left:hover i {
  color: #ff0000; /* Change color on hover */
}

.close-link-right {
  /*font-family: FontAwesome;
  content: '\f057';*/
  position: absolute;
  bottom: 0px;
  top: -10px;
  left: -10px;
  color: #f00
}
.close-link-right:hover i {
  color: #ff0000; /* Change color on hover */
}


/*
.chat-container li.chat-right > .chat-text:after {
  right: -10px;
}
*/




/*
.chat-container li .chat-hour {
  padding: 0;
  margin-bottom: 10px;
  font-size: .75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 15px;
}
.chat-container li .chat-hour > span {
  font-size: 16px;
  color: #9ec94a;
}
.chat-container li.chat-right > .chat-hour {
  margin: 0 15px 0 0;
}*/


.refresh-panel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 2px;
  min-height: 70px;
  font-weight: 700;
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 10px 10px 0 0;
  background-color: #ffc494;
}

.refresh {
  display:flex;
  justify-content: right;
  min-height: 62px;
  width:100%
}
.refresh-panel img {
  justify-content: right;
  align-items: right;
}

.chat_body, .users_panel {
  max-height:400px; 
  overflow-y:scroll;
  overflow-x:clip;
  padding:10px;
}







.chat_hour {
  font-size: .5rem;
  margin: 1px
}

@media (max-width: 767px) {
  .chat-container li.chat-left,
  .chat-container li.chat-right {
      flex-direction: column;
      /*margin-bottom: 30px;*/
  }
  .chat-container li img {
      width: 24px;
      height: 24px;
      margin-bottom: 15px;
  }
  .chat-container li.chat-left .chat-avatar {
      order: +1;
      margin: 0 0 5px 0;
      display: flex;
      align-items: center;
  }
  /*
  .chat-container li.chat-left .chat-hour {
      justify-content: flex-end;
  }*/
  .chat-container li.chat-left .chat-name {
      margin-left: 5px;
  }
  .chat-container li.chat-right .chat-avatar {
      /*order: -1;*/
      margin: 0 0 5px 0;
      align-items: center;
      display: flex;
      justify-content: right;
      flex-direction: row-reverse;
  }
  /*
  .chat-container li.chat-right .chat-hour {
      justify-content: flex-start;
      order: 2;
  }*/
  .chat-container li.chat-right .chat-name {
      margin-right: 5px;
  }
  .chat-container li.chat-left .chat-text {
      font-size: .9rem;
      width:90%;
  }
  .chat-container li.chat-right .chat-text {
    font-size: .9rem;
    width:90%;
    margin-left:30px;
  }
  .refresh-panel span.refresh-text {
    display: none;
  }

  /* WebKit browsers (e.g., Chrome, Safari) */
  .chat_body::-webkit-scrollbar, .users_panel::-webkit-scrollbar {
    width: 8px; /* Width of the vertical scrollbar */
  }

  .chat_body::-webkit-scrollbar-track, .users_panel::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
  }

  .chat_body::-webkit-scrollbar-thumb, .users_panel::-webkit-scrollbar-thumb {
    background: #888; /* Background of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
  }

  .chat_body::-webkit-scrollbar-thumb:hover, .users_panel::-webkit-scrollbar-thumb:hover {
    background: #555; /* Background of the scrollbar thumb on hover */
  }

  /* Firefox */
  .chat_body, .users_panel {
    scrollbar-width: thin; /* Set the scrollbar width */
    scrollbar-color: #888 #f1f1f1; /* Scrollbar thumb and track colors */
  }

}

.chat-form {
  padding: 15px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-top: 1px solid white;
}

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

.bulleted-list {
  list-style: disc; /* Adds bullets only for this class */
  margin-left: 20px; /* Ensures proper indentation */
  padding:10px;
}

.card {
  border: 0;
  background: #f4f5fb;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: none;
}

.store_owner {
  align-content: space-around;
}
@media (max-width: 767px) {
  .store_owner {
    text-align: center;
  }
}


/* ----- carousel related ------- */
.carou_indi {
  background-color:#9c4600; 
  border-radius:10px;
}

.carou_arrow {
  background-color:#9c4600; 
  padding:12px; 
  border-radius:5px;
}

.carou_inner {
  border:1px solid #333; 
  border-radius:15px;
}

.carou_item {
  border-radius:15px;
}



/*
.table-responsive {
  width: 100%;
  overflow-x: auto;
  font-size: 12px;
}
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 235px; 
}*/

.table-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.table-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  align-items: flex-start;
}
.table-row:last-child {
  border-bottom: none;
}
.table-cell {
  padding: 8px;
  /*white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
  align-self: flex-start;
}
.table-header {
  font-weight: bold;
  background-color: #f8f9fa;
}
.first-column {
  flex: 0 0 65%; /* 65% width */
}
.other-column {
  flex: 1 1 17.5%; /* 17.5% width each for remaining columns */
}
.inf-column {
  flex: 0 0 20%; /* 35% width */
  font-weight: 600;
}
.tit-column {
  flex: 0 0 15%; /* 35% width */
  font-weight: 600;
}
.img-column {
  flex: 0 0 20%; /* 35% width */
}
.txt-column {
  flex: 0 0 60%; /* 65% width */
  text-align:left;
  border-left: 1px solid #bbb;
  border-top: 0px;
}
.last-column {
  flex: 0 0 10%;
}
.btn-column {
  flex: 0 0 80%;
  text-align:right;
}
@media (max-width: 768px) {
  .first-column {
      flex: 0 0 100%; /* 100% width on medium screens */
  }
  .other-column {
      flex: 0 0 50%; /* 50% width each for remaining columns */
  }
}
/*@media (max-width: 576px) {*/
@media (max-width: 1080px) {
  .first-column,
  .other-column,
  .inf-column,
  .tit-column,
  .img-column,
  .txt-column,
  .last-column,
  .btn-column
  {
    flex: 0 0 100%; /* 100% width on small screens */
    text-align: center;
  }

  .txt-column {
    border-top: 1px solid #bbb;
    border-left: 0px;
  }

}



.annsampletext {
  color:rgb(41, 79, 248)
}

.annsectionhead {
  display: block !important;
  width:100%;
  padding:5px; 
  border:2px solid #291301;
  border-radius:5px; 
  color:#000;
  background-color:#c8ff9c;
  box-sizing:border-box;
}

.tag {
  border: 1px solid rgb(0, 0, 0); 
  border-radius: 5px; 
  background-color: rgb(184, 245, 168); 
  margin: 2px;
}


.sale-content{
  position:relative;
  height: auto;
  max-width:800px;
  margin-top:5px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  /*border-bottom-right-radius: 10px;
  z-index: 1000;*/
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
  padding: 20px;
  margin-bottom: 50px;
  border:1px solid #343436; 

  /*border-bottom: 1px solid #343436;
  border-right: 1px solid #343436;*/
}


.review {
  margin: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  /*max-width: 600px;*/
  background-color: #f9f9f9;
  flex: 0 0 100%;
  text-align: center;
}
.review h3 {
  margin: 0 0 10px;
}
.stars {
  color: #f28123; /* Yellow color */
}
.review-text {
  margin-top: 10px;
}


.rating {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  margin:10px;
}
.rating i {
  cursor: pointer;
}
.rating input[type="hidden"] {
  display: none;
}
.description {
  display: flex;
  height: 100%;
  margin-top: 10px;
  margin:10px;
}
.description label {
  display: inline-block;
  vertical-align: top;
  align-items: left;
}

.star {
  cursor: pointer;
  font-size: 1rem;
  color: gray;
}

.star.checked {
  color: #f28123;
}

.review-by {
  font-size: 1.25rem;
  font-weight: 700;
}
.review-date {
  font-size: .75rem;
  color: #999999;
}
.review-rank {
  font-size: 1rem;
  font-weight: 700;
}

/* <span class="alert-circle"> </span> */
.alert-circle {
  position: absolute;
  top: 10px;  
  right: -10px; /* Adjust to position the alert inside the image */
  background-color: red;
  color: white;
  border-radius: 5px;
  padding: 2px 5px; /* Adjust size of the circle */
  font-size: 10px; /* Adjust font size */
  line-height: 1;
  min-width: 14px; /* Minimum width for single-digit numbers */
  text-align: center;
  border: 2px solid white; /* Optional: Adds a border to make it look cleaner */
}

/* <span class="alert-circle"> </span> */
.inline-alert-circle {
  position: relative;
  top: -10px;  
  right: 10px; /* Adjust to position the alert inside the image */
  background-color: red;
  color: white;
  border-radius: 5px;
  padding: 2px 5px; /* Adjust size of the circle */
  font-size: 10px; /* Adjust font size */
  line-height: 1;
  min-width: 14px; /* Minimum width for single-digit numbers */
  text-align: center;
  border: 2px solid white; /* Optional: Adds a border to make it look cleaner */
}

/* profile related */
.thumbnail-container {
  margin-top:10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  min-width: 300px;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  height: 130px;  /* Set a fixed height */
  overflow-y: auto; /* Add vertical scrollbar when content overflows */
  border: 1px solid #ccc; /* Optional border for visibility */
}

/* Thumbnail button styling */
.thumbnail {
  border: 2px solid #ccc;
  border-radius:5px;
  margin: 10px;
  padding: 5px;
  cursor: pointer;
  flex: 0 0 30%; /* Each thumbnail takes 30% of the row */
  max-width: 100px; /* Limit max width of each thumbnail */
  max-height: 100px;
}

.thumbnail img {
  width: 100%;
  height: auto;
}

/* Selected thumbnail */
.thumbnail.selected {
  border-color: green;
}



/* Google map */
.custom-marker {
  width: 32px;  /* Width of the marker */
  height: 32px; /* Height of the marker */
  background-image: url(../img/sale.png); /* URL of the PNG */
  background-size: cover; /* Scale the PNG to fit the div */
  border-radius: 5px; /* Optional: Make it circular */
  border: 2px solid red; /* Optional: Add a white border */
}

/* Google map */
.custom-marker-store {
  width: 32px;  /* Width of the marker */
  height: 32px; /* Height of the marker */
  background-image: url(../img/store.png); /* URL of the PNG */
  background-size: cover; /* Scale the PNG to fit the div */
  border-radius: 5px; /* Optional: Make it circular */
  border: 2px solid red; /* Optional: Add a white border */
}

/* Google map */
.custom-marker-org {
  width: 32px;  /* Width of the marker */
  height: 32px; /* Height of the marker */
  background-image: url(../img/org.png); /* URL of the PNG */
  background-size: cover; /* Scale the PNG to fit the div */
  border-radius: 5px; /* Optional: Make it circular */
  border: 2px solid rgb(0, 0, 0); /* Optional: Add a white border */
}

/* Google map */
.custom-marker-event {
  width: 32px;  /* Width of the marker */
  height: 32px; /* Height of the marker */
  background-image: url(../img/event.png); /* URL of the PNG */
  background-size: cover; /* Scale the PNG to fit the div */
  border-radius: 5px; /* Optional: Make it circular */
  border: 2px solid rgb(0, 0, 0); /* Optional: Add a white border */
}


.search_result {
  padding:5px; margin:5px; 
  border: 1px solid #999; 
  border-radius:10px;
}

.center_aligned {
  justify-content:center;
  align-items:center;
  text-align:center;
  margin:auto;
  width:100%
}

.table-rounded {
  border-radius: 15px;
  overflow: hidden;
}
.table-rounded th, .table-rounded td {
  border: 1px solid #ccc;
}
.table-rounded th {
  background-color: #ffc265;
}
.table-wrapper {
  border-radius: 15px;
  overflow: hidden; 
  border: 1px solid #ccc;
}




.tree {
  left:35px;
}
.tree, .tree ul {
  list-style-type: none;
  position: relative;
}
.tree ul {
  margin-left: 30px;
}
.tree li {
  margin: 0;
  padding: 10px 5px 0 0px;
  position: relative;
}
.tree li::before, .tree li::after {
  content: '';
  left: -20px;
  position: absolute;
  right: auto;
}
.tree li::before {
  border-left: 1px solid #000;
  bottom: 50px;
  height: 100%;
  top: 0;
  width: 1px;
}
.tree li::after {
  border-top: 1px solid #000;
  height: 20px;
  top: 25px;
  width: 25px;
}
.tree li:last-child::before {
  height: 25px;
}


/* events calendar related.................   */
#calendar {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #5f5f5f;
  border-radius: 5px;
}
#eventList {
  max-width: 900px;
  margin: 20px auto;
  padding: 10px;
  background: #f8f9fa;
  border: 2px solid #5f5f5f;
  border-radius: 5px;
}
/* making colored calendar */
/* Make grid lines darker */
.fc .fc-scrollgrid {
  border-color: #8b8b8b !important;
}

.fc .fc-scrollgrid-line {
  border-color: #8b8b8b !important;
}

/* Customize header background and text */
.fc .fc-col-header-cell {
  background-color: #f0f0f0 !important;
  color: #2e2e2e !important;
  border-bottom: 2px solid #8b8b8b !important;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(212, 178, 5, 0.61) !important;
  background-color: var(--fc-today-bg-color,rgba(69, 121, 0, 0.733)) !important;
}

/* Customize events: change background, border, and text color */
.fc-event {
  background-color: #007bff !important;
  border: none !important;
  color: #fff !important;
}

/* Optionally, style the date cells */
.fc-daygrid-day-frame {
  border: 1px solid #8b8b8b !important;
}
@media (max-width: 768px) {
  .fc-header-toolbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .fc-header-toolbar .fc-left,
  .fc-header-toolbar .fc-center,
  .fc-header-toolbar .fc-right {
    flex: 1;
    text-align: center;
  }
  .fc-header-toolbar .fc-left {
    text-align: left;
  }
  .fc-header-toolbar .fc-right {
    text-align: right;
  }
}
