@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes sonar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

body {
  font-size: 16px;
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand>a,
.sidebar-wrapper .sidebar-dropdown>a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
  margin-bottom: 10px;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
/* 
  font-family: 'Roboto', sans-serif;
   font-family: "bookman, sans-serif";
  */

@font-face {
  font-family: "bookman";
  src: url("../webfonts/BookmanStd-Medium.otf");
}


/*----------------page-wrapper----------------*/

.page-wrapper {
  min-height: 100vh;
}

.page-wrapper .theme {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 4px;
  margin: 2px;
}

.page-wrapper .theme.chiller-theme {
  background: #1e2229;
}

/*----------------toggeled sidebar----------------*/

/* .page-wrapper.toggled .sidebar-wrapper {
  left: 20px;
  top: 66px;
} */

@media screen and (min-width:991px) {
  .page-wrapper.toggled .page-content {
    padding-left: 260px;
    min-height: 91vh;
  }
}

/*----------------show sidebar button----------------*/

#show-sidebar {
  position: fixed;
  left: -1px;
  top: 90px;
  border-radius: 0 4px 4px 0px;
  width: 40px;
  transition-delay: 0.3s;
  z-index: 10;
  background: white;
  color: black;
}

.page-wrapper.toggled #show-sidebar {
  left: -40px;
}

/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
  width: 260px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 64px;
  /* left: 20px; */
  z-index: 999;
}

.sidebar-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-wrapper a {
  text-decoration: none;
}

/*----------------sidebar-content----------------*/

.sidebar-content {
  max-height: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow-y: auto;
  position: relative;
}

.sidebar-content.desktop {
  overflow-y: hidden;
}

/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.sidebar-wrapper .sidebar-brand>a {
  text-transform: uppercase;
  font-weight: bold;
  flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
  cursor: pointer;
  font-size: 20px;
  color: #FFF;
}

/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
  padding: 20px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic {
  float: left;
  width: 60px;
  padding: 2px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
  float: left;
}

.sidebar-wrapper .sidebar-header .user-info>span {
  display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
  font-size: 12px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
  font-size: 11px;
  margin-top: 4px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
  font-size: 8px;
  margin-right: 4px;
  color: #5cb85c;
}

/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search>div {
  padding: 10px 20px;
}

/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
  padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 8px 30px 8px 20px;
}

.sidebar-wrapper .sidebar-menu ul li a i {
  margin-right: 10px;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu ul li a:hover>i::before {
  display: inline-block;
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 14px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu ul li a {
  padding-left: 50px;
}

.sidebar-menu ul li a {}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a:after {
  transform: rotate(90deg);
  right: 17px;
}

/*--------------------------side-footer------------------------------*/

.sidebar-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
}

.sidebar-footer>a {
  flex-grow: 1;
  text-align: center;
  height: 30px;
  line-height: 30px;
  position: relative;
}

.sidebar-footer>a .notification {
  position: absolute;
  top: 0;
}

.badge-sonar {
  display: inline-block;
  background: #980303;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}

.badge-sonar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #980303;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}

/*--------------------------page-content-----------------------------*/

.page-wrapper .page-content {
  /* display: inline-block; */
  width: 100%;
  padding-left: 0px;
  /* padding-top: 20px; */
}

/* .page-wrapper .page-content>div {
  padding: 20px 40px;
} */

.page-wrapper .page-content {
  overflow-x: hidden;
}

/*------scroll bar---------------------*/

::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #525965;
}

::-webkit-scrollbar-thumb:active {
  background: #525965;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}


/*-----------------------------chiller-theme-------------------------------------------------*/

/* nav#sidebar {
  border-radius: 1.1rem;
} */

.chiller-theme .sidebar-wrapper {
  background: #65A8EC;
  padding: 0px 4px;
}

/* .chiller-theme .sidebar-wrapper .sidebar-header,
.chiller-theme .sidebar-wrapper .sidebar-search,
.chiller-theme .sidebar-wrapper .sidebar-menu {
  border-top: 1px solid #3a3f48;
} */

.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
  border-color: transparent;
  box-shadow: none;
}

.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
.chiller-theme .sidebar-wrapper .sidebar-brand>a,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
.chiller-theme .sidebar-footer>a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i {
  color: #fff !important;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a:hover i {
  color: #00838f !important;
}


.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover>a,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info,
.chiller-theme .sidebar-wrapper .sidebar-brand>a:hover,
.chiller-theme .sidebar-footer>a:hover i {
  color: #00838f;
  /* background-color: #000060; */
}



.page-wrapper.chiller-theme.toggled #close-sidebar {
  color: #bdbdbd;
}

.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
  color: #ffffff;
}

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus+span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
  color: #29323d;
  text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}

/* .chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown li.active {
    border-bottom: 1px solid gray;
  } */

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
  background: transparent;
}

/* .chiller-theme .sidebar-wrapper .sidebar-menu ul li {
  border-bottom: 1px solid #FFFFFF;
} */

.chiller-theme .sidebar-wrapper .sidebar-dropdown li {
  border-bottom: 1px solid rgb(59, 46, 46) !important;
}

.chiller-theme .sidebar-wrapper .sidebar-dropdown li:last-child {
  border-bottom: none !important;
}

.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
  color: #6c7b88;
}

.chiller-theme .sidebar-footer {
  background: #3a3f48;
  box-shadow: 0px -1px 5px #282c33;
  border-top: 1px solid #464a52;
}

.chiller-theme .sidebar-footer>a:first-child {
  border-left: none;
}

.chiller-theme .sidebar-footer>a:last-child {
  border-right: none;
}

/* start:: site header
  =============================== */
.site-header {
  padding: 7px 0px;
  background-color: #65A8EC;
}

/* .site-header-logo img {
  width: 150px;
  height: 50px;
  object-fit: cover;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
} */


.header-user-profile-img span {
  color: #fff;
}

.home-page-card-item-left {
  /* background: #cff4fc; */
  /* color: #222; */
  padding: 15px;
}

.home-page-card-item-left p {
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 16px;
}

.home-page-card-item-right {
  /* background-color: #0dcaf0; */
  padding: 10px;
}

.home-page-card-item-right span i {
  /* background-color: #7258db; */
  padding: 15px;
  font-size: 26px;
  color: #FFFFFF;
}

.home-page-table-section table thead tr {
  background: linear-gradient(90deg, rgba(0, 99, 209, 1) 6%, rgb(97 118 255) 100%);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500 !important;
}

.home-page-table-section table tbody tr {
  font-size: 16px;
}

.footer-copyright-section {
  margin-top: 50px;
}

.footer-copyright-section p {
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
}

/* start:: login page */
.login-body,
.registration-body {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 30px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  margin: 50px 0px;
}

.login-section {
  height: 100vh;

}

.login-title {}

.login-title img {
  width: 200px;
  margin-bottom: 20px;

}

.login-title h2 {}

.login-item label {
  font-weight: 600;
  padding-bottom: 5px;
}

.login-item input {
  padding: 10px;
}

.registration-body {}

.registration-footer-section {
  background-color: #7258db;
  color: #FFF;
  padding: 20px 0px;
  width: 100%;
}

.registration-footer p {
  margin-bottom: 0px;
}

.welcome-back-text h3 {
  font-family: "bookman", sans-serif;
}

/* start:: cart page
==================================== */
table.table.cart-product-table {
  background: #fff;
}

.cart-section .cart-product-table thead tr {
  background-color: #fff;
}

.cart-section .cart-product-table tbody tr td button {
  background-color: transparent;
  border: none;
  font-size: 20px;
}

.cart-total-cal-body thead tr {
  background-color: #7258db;
  color: #FFF;
  font-family: "bookman, sans-serif";
}

.cart-section .cart-product-table tbody tr td span,
.cart-total-cal-body tbody tr td span {
  font-size: 25px;
}

.cart-total-cal-body tbody tr td:last-child {
  text-align: right;
  padding-right: 20px;
}

.cart-total-cal-body table tbody tr td {
  font-weight: bold;

}

.cart-page-btn-group button {
  padding: 5px 10px;
  border: none;
  margin-right: 5px;
  color: #FFFFFF;
}

.cart-page-btn-group button:first-child {
  background-color: #7258db;
}

.cart-page-btn-group button:nth-child(2) {
  background-color: red;
}

.cart-page-btn-group button:nth-child(3) {
  background-color: #0dcaf0;
}

.cart-page-btn-group button:nth-child(4) {
  background-color: black;
}

/* start:: referral bonus table page
=============================================== */
.referral-bonus-table table thead tr {
  border-bottom: 2px solid #7258db;
  background-color: #F0EEF0;
}

.referral-bonus-table table thead tr {
  border-bottom: 2px solid #7258db;
}

.referral-bonus-table .referral-table-title {
  background-color: #fff;
  padding: 15px;
  color: #343a40;
}

.referral-bonus-table {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.referral-bonus-table-container {
  padding: 20px;
}

.referral-bonus-table-container .referral-table-export-btn button {
  margin-right: 8px;
  border: 1px solid #b3b3b3;
  padding-right: 10px;
  padding-left: 10px;
}

/* start:: shop now page
=========================================== */
.shop-now-page-product-item {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 12px;
  height: 240px;
  border: 1px solid #98c3f3;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}

.shop-now-page-product-item button {
  background-color: #7258db;
  color: #FFFFFF;
  border: none;
  width: 97%;
  padding: 4px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  position: absolute;
  bottom: 3%;
  left: 1%;
}

.shop-now-page-product-item img {
  width: 100%;
  padding: 10px;

}

/* start:: show add to card
======================================== */
.page-content-main {
  position: relative;
}

.mincart {
  flex-direction: column !important;
}

.add-to-cdart-btn {
  width: 95px;
  height: 99px;
  text-align: center;
  color: #FFF;
  border: 1px solid #7258db;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
  right: 0;
  top: 55%;
  z-index: 20;
  position: fixed;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.add-to-cart-icon {
  background-color: #65A8EC;
}

.add-to-cdart-btn p {
  margin-bottom: 0px;
  font-weight: 600;
}

.site-header.sticky-top {
  z-index: 20 !important;
}

.shoping-cart {
  width: 350px;
  height: 100vh;
  background-color: #fff;
  top: 0;
  position: absolute;
  position: fixed;
  right: -100%;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  z-index: 30;
  overflow-y: scroll;
}

.cart-body-wrapper {
  /* height: 600px; */
  overflow-y: scroll;
}

.cart-close-btn {
  /* background-color: #7258db; */
  margin-bottom: 10px;
}

.cart-close-btn button {
  color: #222;
  /* background-color: red;
  border: none;
  padding: 2px 20px; */
}

.single-cart-add {
  width: 100%;
  background-color: #FFFFFF;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}

.product-count {
  width: 15%;
}

.product-count input {
  width: 100%;
  text-align: center;
  border: none;
}

.product-count input:focus {
  outline: none;
}

.product-count button {
  border: none;
  background-color: transparent;
}

.product-img {
  width: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 35px;
}

.product-name {
  width: 50%;
}

.product-name p {
  line-height: 20px;
  font-size: 14px;
  padding: 0px 5px;
}

.product-price {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .single-cart-add {
  border-bottom: 1px solid #7258db;
} */

.product-delete {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-delete button {
  border: none;
  background-color: transparent;
}

.modal-body-content p.MsoNormal,
.modal-body-content .TADXpd {
  font-size: 14px !important;
}



/* .cart-footer {
  position: absolute;
  bottom: 8%;
  width: 100%;

} */

/* .cart-footer p {
  background-color: #0dcaf0;
} */

/* start:: product page
===================================== */
.product-page-product-item {
  height: 425px;
  position: relative;
  font-family: 'Roboto', sans-serif;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 12px;
  border: 1px solid #98c3f3;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;

}

.product-page-product-item button {
  width: auto;
  padding: 5px 14px;
  font-family: "bookman", sans-serif;
  border: none;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  background-color: #7258db;
  color: #FFFFFF;
}

.product-page-product-item img {
  width: 90%;
  padding: 10px;
}

.product-page-product-item p {
  padding: 15px 0px;
}

.product-page-product-item button:hover {
  background-color: #e12803;
}

.modal-header h5 {
  font-family: "bookman, sans-serif";
}

.modal-footer button {
  font-family: "bookman, sans-serif";
  font-weight: 600;
}

.modal-img img {
  width: 100%;
}

.modal-body-content h5 {
  font-family: "bookman, sans-serif";
  font-weight: 600;
}

.modal-body-content p {
  font-family: 'Roboto', sans-serif;
}

.modal-body-content ul li {
  list-style: disc;
}

.product-search-box {
  position: relative;
}

.product-search-box button {
  position: absolute;
  right: 0%;
  top: 0;
  border: none;
  padding: 7px 20px;
  background: #1c00a7;
  color: #FFF;
  font-weight: 600;
}

.product-search-box input:focus {
  border-color: orange;
}

/* start:: add fund wallet user account
======================================== */
.add-fund-account-form-input label {
  padding-bottom: 7px;
  font-family: "bookman, sans-serif";
  font-weight: 600;
  font-size: 19px;
}

.add-fund-account-form-input button {
  font-family: "bookman, sans-serif";
  font-weight: 600;
  font-size: 19px;
}

.cart-page-btn-group button:first-child() {
  background-color: blue !important;
}

/* start:: my profile
======================================== */
.my-profile h4 {
  font-family: "bookman, sans-serif";
  font-weight: bold;
}

.profile-image {
  position: relative;
}

.profile-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid #00ff1d;
  position: relative;

}

.profile-image i {
  background-color: #00ff1d;
  color: #FFF;
  font-size: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  right: 37%;
  bottom: 0%;
}

.profile-photo-upload input {
  display: none;
}

.profile-left,
.profile-right {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.profile-left {
  text-align: center;
  border: 1px solid #004fa7;
}

.profile-left h5 {
  padding: 8px 20px;
  font-size: 27px;
  font-family: "bookman, sans-serif";
}

.profile-right h3 {

  font-family: "bookman, sans-serif";

}

.profile-right {
  border: 1px solid #004fa7;
}

.profile-info-body p {
  margin: 0;
  font-family: "bookman, sans-serif";
  font-size: 18px;
}

.profile-info-body {
  margin-top: 20px;
}

.profile-info-body .profile-update-btn {
  text-align: right;
}

.profile-info-body .profile-update-btn button {
  border: 1px solid #00afff;
  padding: 4px 24px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-right: 10px;
  color: black;
  background-color: transparent;
}

.profile-info-body .profile-update-btn button:hover {
  background-color: #00ff89;
}

.modal-footer button:first-child {
  background-color: red;
  border: none;
  color: #ffffff;
  padding: 7px 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.profile-edit-item {
  margin-bottom: 10px;
}

.profile-edit-item label {}

.profile-edit-item input {
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}


thead tr {
  text-transform: uppercase;
  font-size: 12px;
}

tbody td {
  font-size: 14px;
  line-height: 21px;
}

.product-info {
  background: #fff;
}


.owl-nav .owl-prev {
  position: absolute;
  top: 45%;
  left: 10px;
  height: 40px;
  width: 40px;
  background: #fff !important;
  border-radius: 50px;
}

.owl-nav .owl-next {
  position: absolute;
  right: 10px;
  top: 45%;
  width: 40px;
  height: 40px;
  background: #fff !important;
  border-radius: 50px;
}

main.page-content {
  padding-top: 60px;
}

@media only screen and (max-width: 600px) {

  .owl-nav .owl-prev {
    top: 40%;
    left: 10px;
    height: 25px;
    width: 25px;
  }

  .owl-nav .owl-next {
    top: 40%;
    width: 25px;
    height: 25px;
  }

  .add-to-cdart-btn {
    height: auto;
    top: 25px;
    border: none;

  }

  .mincart {
    flex-direction: row !important;
  }

  main {
    padding-top: 60px;
  }

  #show-sidebar {
    position: fixed;
    left: 48% !important;
    top: 8px;
    background: transparent;
    color: #fff;
    border: 1px solid #ddd;
  }
  
  
.sidebar-wrapper {
  top: 42px;
}

.login-logo{
    width: 50%;
    padding-bottom: 20px;

}



}

.owl-dots {
  display: none;
}

a#show-sidebar i {
  font-size: 20px;
}

ul.s-social {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

ul.s-social li {
    margin: 0;
    padding: 0;
}

ul.s-social li a {
    padding: 0 !important;
}

section.footer-section {
    background-color: #EF4444;
    color: #fff;
    padding: 50px 10px;
    border-top: 1px solid #ddd;
}

section.footer-section h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

section.footer-section ul li {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.h-35{
    height: 35px;
}

.owl-carousel-category .cat-item {
    width: 200px !important;
    height: auto;
}

.owl-two .owl-stage {
    padding: 10px 0px;
}

.cat-item {
    border: 1px solid #ddd;
}

.owl-two{
    margin-bottom: 20px;
}

.owl-two .owl-item {
    margin-right: 10px;
}

.p-logo {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}

section.footer-section{
    margin-top: 10px;
}

section.footer-section .row {
    row-gap: 20px;
}

body{
    background-color: #f7f7f7;
}

h3.h-tt {
    font-size: 47px;
    font-weight: 700;
    font-family: -webkit-body;
    line-height: 38px;
    color: #3d7163;
}