* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
}

*::-moz-selection {
  background-color: #FC7E37;
  color: #fff;
}

*::selection {
  background-color: #FC7E37;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 13px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #FC7E37;
}

*::-webkit-scrollbar-thumb:hover {
  background: #f8bd9b;
}

body {
  background-image: url(../images/pattern.png);
  background-size: contain;
  background-repeat: repeat;
  background-attachment: fixed;
}

/***************************** Global Style *****************************/
h1,
h2,
h3 {
  font-weight: 800;
}

h4,
h5,
h6 {
  font-weight: bold;
}

p, .paragraph {
  font-size: 15px;
  font-weight: 400;
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

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

a:focus {
  outline: 0;
}

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

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn:hover::after {
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #FC7E37;
}

.form fieldset label {
  font-family: 'Tajawal';
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(-135deg, #a6e6fa, #61C2DF);
  color: #000;
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #000;
  color: #fff;
}

.orange-bg {
  background-color: #F46150;
  border: 1px solid #F46150;
}

.blue-bg {
  background-color: #31AFE2;
  border: 1px solid #31AFE2;
}

/* Start Edit Modal */
.modal-content {
  border-radius: 45px;
  padding: 25px;
}

.modal-content button.close {
  text-align: end;
}

.modal-content .modal-footer {
  padding: 1.5rem 1rem 1rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-content .main-button {
  width: 160px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  border: 1px solid #31AFE2;
  color: #fff;
  background-color: #31AFE2;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  border-radius: 10px;
}

.modal-content .main-button:hover {
  background-color: #F1A62A;
  border: 1px solid #F1A62A;
}

.modal-content .btn-secondary {
  width: 120px;
  height: 45px;
  border-radius: 10px;
}

/***************************** Animations *****************************/
@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg) scale(0.9) translate(5px, 5px);
            transform: rotate(0deg) scale(0.9) translate(5px, 5px);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1) translate(5px, 5px);
            transform: rotate(360deg) scale(1) translate(5px, 5px);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg) scale(0.9) translate(5px, 5px);
            transform: rotate(0deg) scale(0.9) translate(5px, 5px);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1) translate(5px, 5px);
            transform: rotate(360deg) scale(1) translate(5px, 5px);
  }
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}

@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-wrapper .top-nav img {
  width: 100%;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.navs-wrapper .top-nav p, .navs-wrapper .top-nav .paragraph {
  font-size: 13px;
  margin-bottom: 0;
}

.navs-wrapper .top-nav .links {
  text-align: left;
  display: inline-block;
  margin: 0 5px;
}

.navs-wrapper .top-nav .links a {
  margin: 0 5px;
  font-weight: bold;
  color: #555;
  font-size: 14px;
}

.navs-wrapper .top-nav .links a:hover {
  color: #FD7F3C;
}

.navs-wrapper .middle-nav {
  padding: .4rem;
  background-color: #fff;
}

.navs-wrapper .middle-nav .logo {
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.navs-wrapper .middle-nav .search-container {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navs-wrapper .middle-nav .search-container .form-group {
  margin-bottom: 0;
}

.navs-wrapper .middle-nav .search-container .input-group {
  font-size: 12px;
  border: 2px solid #FD7F3C;
  border-radius: 25px;
}

.navs-wrapper .middle-nav .search-container .input-group .form-control-select {
  width: 140px;
  padding: 10px;
  height: 45px;
  position: relative;
  border-radius: 0;
  border: none;
  font-size: 15px;
  border: transparent;
  border-left: 1px solid #eee;
  border-radius: 25px;
  font-weight: bold;
  color: #666;
}

.navs-wrapper .middle-nav .search-container .input-group .form-control-select:focus {
  border: none;
  outline: none;
}

.navs-wrapper .middle-nav .search-container .input-group .form-control.input-lg {
  height: 45px;
  width: 50%;
  font-size: 15px;
  border: none;
  border-radius: 25px !important;
}

.navs-wrapper .middle-nav .search-container .input-group .btn.btn-default.btn-lg {
  height: 40px;
  font-size: 12px;
  border: none;
  text-transform: capitalize;
  font-weight: normal;
  border-radius: 50%;
  background: #FD7F3C;
  color: #fff;
  margin: 2.5px 0 0 5px;
}

.navs-wrapper .middle-nav .icons-wrapper {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

.navs-wrapper .middle-nav .icons-wrapper .icon {
  background-color: transparent;
  border: transparent;
  position: relative;
  margin: 0 7px;
}

.navs-wrapper .middle-nav .icons-wrapper .icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-wrapper .middle-nav .icons-wrapper .icon .number {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 11px;
  border-radius: 50%;
  background-color: #FC7E37;
  color: #fff;
  font-weight: bold;
  display: block;
  position: absolute;
  top: -10px;
  right: -5px;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
  text-align: center;
}

.navs-wrapper .main-nav {
  padding: .5rem;
  background-color: #fff;
}

.navs-wrapper .main-nav .categ-toggler {
  padding: 0 0 0 25px;
  border-left: 1px solid #ddd;
  margin-left: 20px;
  font-weight: bold;
  color: #333;
}

.navs-wrapper .main-nav .categ-toggler i {
  margin: 0 10px;
}

.navs-wrapper .main-nav .categ-toggler:hover {
  color: #FD7F3C;
}

.navs-wrapper .main-nav .nav-link {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  margin: 0 10px;
}

.navs-wrapper .main-nav .nav-link span {
  margin: 0 5px;
}

.navs-wrapper .main-nav .nav-link.active, .navs-wrapper .main-nav .nav-link:hover {
  color: #FD7F3C;
}

.navs-wrapper .main-nav .has-dropdown .drop-down {
  padding: 25px;
  background-color: #fff;
  position: absolute;
  z-index: 5;
  width: 50%;
  right: 35%;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 30px 0px #ddd;
          box-shadow: 0px 0px 30px 0px #ddd;
  border: 1px solid #FB7F3A;
  opacity: 0;
  margin-top: 50px;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navs-wrapper .main-nav .has-dropdown .drop-down .content h6 {
  font-size: 1.2rem;
  color: #000;
}

.navs-wrapper .main-nav .has-dropdown .drop-down .content ul li {
  padding: 5px 0px;
  font-size: 13px;
  color: #000;
  font-weight: 400;
}

.navs-wrapper .main-nav .has-dropdown .drop-down .content ul li:hover a {
  color: #FD7F3C;
  font-weight: bold;
}

.navs-wrapper .main-nav .has-dropdown .drop-down .content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.navs-wrapper .main-nav .has-dropdown .cteg-dropdown {
  width: 250px;
  background-color: #fff;
  border: 1px solid #FB7F3A;
  position: absolute;
  z-index: 5;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
  margin-top: 20px;
  border-radius: 15px;
  padding: 10px 0;
  visibility: hidden;
  -webkit-box-shadow: 0px 0px 30px 0px #ddd;
          box-shadow: 0px 0px 30px 0px #ddd;
}

.navs-wrapper .main-nav .has-dropdown .cteg-dropdown li {
  border-bottom: 1px solid #eee;
}

.navs-wrapper .main-nav .has-dropdown .cteg-dropdown li:last-child {
  border-bottom: 1px solid transparent;
}

.navs-wrapper .main-nav .has-dropdown .cteg-dropdown li a {
  width: 100%;
  font-size: 13px;
  padding: 10px 20px;
  display: block;
  font-weight: bold;
  color: #333;
}

.navs-wrapper .main-nav .has-dropdown .cteg-dropdown li:hover {
  background-color: #f5f5f5;
}

.navs-wrapper .main-nav .has-dropdown .cteg-dropdown li:hover a {
  color: #FB7F3A;
}

.navs-wrapper .main-nav .has-dropdown .nav-link {
  position: relative;
}

.navs-wrapper .main-nav .has-dropdown .nav-link::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: relative;
  margin: 0 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #333;
}

.navs-wrapper .main-nav .has-dropdown:hover .drop-down {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.navs-wrapper .main-nav .has-dropdown:hover .cteg-dropdown {
  opacity: 1;
  margin-top: 10px;
  visibility: visible;
}

.navs-wrapper .main-nav .has-dropdown:hover .nav-link::after {
  color: #FD7F3C;
}

.navs-wrapper .main-nav .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-wrapper .main-nav .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-wrapper .main-nav .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-wrapper .main-nav .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-wrapper .main-nav .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #FC7E37;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-wrapper .main-nav .navbar-toggler .navbar-toggler-icon::after, .navs-wrapper .main-nav .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #FC7E37;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-wrapper .main-nav .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-wrapper .main-nav .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navs-wrapper .sidebar {
  width: 350px;
  height: 100vh !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#c24806), to(#b04106));
  background-image: linear-gradient(to right, #c24806, #b04106);
  position: fixed;
  top: 0;
  left: -120%;
  z-index: 9999;
  -webkit-transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
}

.navs-wrapper .sidebar .dismiss {
  color: #fff;
  position: relative;
  top: 20px;
  right: 15px;
  cursor: pointer;
}

.navs-wrapper .sidebar h5 {
  text-align: center;
  position: relative;
  top: 30px;
  color: #fff;
  font-size: 1.2rem;
}

.navs-wrapper .sidebar .card-body {
  margin: 35px 0px 10px;
  max-height: 400px;
  overflow-y: scroll;
  display: -ms-grid;
  display: grid;
}

.navs-wrapper .sidebar .card-body::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
  position: relative;
}

.navs-wrapper .sidebar .card-body::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #bbb;
}

.navs-wrapper .sidebar .card-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #F66F5F;
}

.navs-wrapper .sidebar .card-body .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #999;
  padding: 10px 0px;
}

.navs-wrapper .sidebar .card-body .item img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-wrapper .sidebar .card-body .item .text h6 {
  color: #fff;
}

.navs-wrapper .sidebar .card-body .item .text span {
  font-size: 12px;
  color: #ddd;
}

.navs-wrapper .sidebar .card-body .item .delete-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  color: #fff;
  display: block;
  margin: auto;
}

.navs-wrapper .sidebar .card-body .item .delete-btn:hover {
  color: #2C2C4F;
}

.navs-wrapper .sidebar .card-body .item .text, .navs-wrapper .sidebar .card-body .item .delete-btn {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navs-wrapper .sidebar .card-footer {
  color: #fff;
  background-color: transparent;
  border-top: none;
}

.navs-wrapper .sidebar .card-footer .total {
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.navs-wrapper .sidebar .card-footer .total p {
  font-size: 15px;
  margin-bottom: 5px;
  color: #ddd;
}

.navs-wrapper .sidebar .card-footer .total h6 {
  font-size: 30px;
}

.navs-wrapper .sidebar .card-footer .link-btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  display: block;
  text-align: center;
  margin: 15px 0px;
  font-size: 15px;
  font-weight: bold;
}

.navs-wrapper .sidebar .card-footer .link-btn.active {
  background-color: #fff;
  color: #2C2C4F;
}

.navs-wrapper .sidebar.active {
  left: 0;
}

.navs-wrapper .overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 0;
  right: 0;
}

.navs-wrapper .overlay.active {
  display: block;
  opacity: 1;
}

.navs-wrapper .marquee {
  padding: 8px 0px;
  text-align: center;
  background-color: #FD7F3C;
}

.navs-wrapper .marquee p, .navs-wrapper .marquee .paragraph {
  color: #fff;
  font-size: 13px;
  margin-bottom: 0;
}

.navs-wrapper .heading-pg {
  padding: 50px 0px;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.navs-wrapper .heading-pg .inner {
  text-align: center;
}

.navs-wrapper .heading-pg .inner h4 {
  font-size: 2rem;
}

.navs-wrapper .heading-pg .inner .breadcrumb {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.navs-wrapper .heading-pg .inner .breadcrumb .breadcrumb-item {
  color: #FD7F3C;
  font-weight: 500;
}

.navs-wrapper .heading-pg .inner .breadcrumb .breadcrumb-item a {
  color: #31AFE2;
}

.navs-wrapper .heading-pg .inner .breadcrumb-item + .breadcrumb-item::before {
  content: "|";
}

.navs-wrapper .heading-pg .circles1 {
  position: absolute;
  top: -70px;
  right: -40px;
  width: 15%;
  opacity: .3;
  -webkit-animation: circle 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate both;
          animation: circle 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate both;
  -webkit-filter: invert(54%) sepia(97%) saturate(700%) hue-rotate(333deg) brightness(98%) contrast(103%);
          filter: invert(54%) sepia(97%) saturate(700%) hue-rotate(333deg) brightness(98%) contrast(103%);
}

.navs-wrapper .heading-pg .circles2 {
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 15%;
  opacity: .2;
  -webkit-animation: vibrate-1 1s linear infinite both;
          animation: vibrate-1 1s linear infinite both;
  -webkit-filter: invert(54%) sepia(97%) saturate(700%) hue-rotate(333deg) brightness(98%) contrast(103%);
          filter: invert(54%) sepia(97%) saturate(700%) hue-rotate(333deg) brightness(98%) contrast(103%);
}

footer {
  padding-top: 70px;
  background-color: #F9F3F1;
}

footer .content {
  margin-bottom: 50px;
}

footer .content .logo {
  width: 160px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 1rem;
  margin-top: -110px;
  background: #F9F3F1;
  border-radius: 50%;
  padding: 15px;
}

footer .content p, footer .content .paragraph {
  color: #747474;
  line-height: 1.6rem;
  font-size: 12px;
}

footer .content .social-links a {
  width: 35px;
  height: 35px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  background: linear-gradient(-135deg, #F66F5F, #F64D3A);
  color: #fff;
  display: inline-block;
  margin: 0 3px;
}

footer .content .social-links a:hover {
  background: linear-gradient(-135deg, #31AFE2, #038dc4);
}

footer .content h5 {
  margin-bottom: 2rem;
}

footer .content .links a {
  display: block;
  margin: 20px 0px;
  color: #747474;
  font-size: 15px;
}

footer .content .links a:hover {
  font-weight: bold;
  color: #F46150;
}

footer .content .links a:hover .icon {
  background: linear-gradient(-135deg, #31AFE2, #038dc4);
}

footer .content .links .icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  margin-left: 5px;
  color: #fff;
  background: linear-gradient(-135deg, #F66F5F, #F64D3A);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

footer .content .links.contact-links a {
  font-size: 12px;
}

footer .copyright {
  padding: 25px;
  background-color: #FD7F3C;
}

footer .copyright p, footer .copyright .paragraph {
  margin-bottom: 0;
  color: #fff;
}

/***************************** Start Edit Home Page *****************************/
header {
  padding-top: 50px;
}

header .swiper-container .swiper-slide {
  padding-bottom: 50px;
}

header .swiper-container .swiper-slide .content {
  position: relative;
  background: linear-gradient(135deg, #FBF6F1, #FBE4D7, #F5D2DF);
  border-radius: 25px;
}

header .swiper-container .swiper-slide .content .images-wrapper {
  width: 100%;
  height: 500px;
  position: relative;
}

header .swiper-container .swiper-slide .content .images-wrapper .pattern {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: circle 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate both;
          animation: circle 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate both;
}

header .swiper-container .swiper-slide .content .images-wrapper .img1 {
  position: absolute;
  right: 23px;
  top: 0;
  width: 70%;
}

header .swiper-container .swiper-slide .content .images-wrapper .img2 {
  position: absolute;
  width: 70%;
  top: 62%;
  right: 48%;
}

header .swiper-container .swiper-slide .content .text {
  padding-top: 100px;
  position: relative;
  z-index: 5;
}

header .swiper-container .swiper-slide .content .text span {
  color: #FC7E37;
  font-size: 17px;
  font-weight: 500;
}

header .swiper-container .swiper-slide .content .text h1 {
  font-size: 3rem;
  margin-top: .7rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

header .swiper-container .swiper-slide .content .text .main-btn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  display: block;
  border-radius: 10px;
  text-align: center;
  background-color: #FC7E37;
  margin-top: 25px;
}

header .swiper-container .swiper-slide .content .text .main-btn span {
  color: #fff;
  font-size: 12px;
}

header .swiper-container .swiper-slide .content .card-img {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 20px;
}

header .swiper-container .swiper-slide-active .card-img {
  -webkit-animation: flipInY 2s both;
          animation: flipInY 2s both;
}

header .swiper-container .swiper-slide-active .img1 {
  -webkit-animation: flipInY 2s both;
          animation: flipInY 2s both;
}

header .swiper-container .swiper-slide-active .img2 {
  -webkit-animation: fadeInUp 2s both;
          animation: fadeInUp 2s both;
}

header .swiper-container .swiper-slide-active .text {
  -webkit-animation: zoomIn 2s both;
          animation: zoomIn 2s both;
}

header .swiper-container .swiper-pagination {
  position: relative;
}

header .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 35px;
  height: 5px;
  border-radius: 10px !important;
  opacity: .2;
  background: #FC7E37;
}

header .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

body section .sec-heading {
  text-align: center;
  margin-bottom: 40px;
}

body section .sec-heading span {
  font-size: 18px;
  padding-bottom: 15px;
  font-weight: 600;
}

body section .sec-heading span::after {
  content: '';
  background: url(../images/line.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 77px;
  height: 3px;
  position: relative;
  top: 8px;
  display: block;
  margin: 0 auto;
}

body section .sec-heading h3 {
  margin-top: 1.8rem;
}

body section .sec-heading h3 img {
  pointer-events: none;
  width: 210px;
  -o-object-fit: contain;
     object-fit: contain;
}

body .quantity-container .add-more {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

body .quantity-container .qty-span {
  display: inline-block !important;
  margin-left: 5px;
}

body .quantity-container .qt-plus,
body .quantity-container .qt-minus {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  color: #999;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  text-align: center;
}

body .quantity-container .qt-plus:hover,
body .quantity-container .qt-minus:hover {
  background-color: #F1A62A;
  color: #fff;
}

body .quantity-container .qt-plus .fa,
body .quantity-container .qt-minus .fa {
  font-weight: 300;
}

body .quantity-container .qt {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.44;
  color: #202020;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  min-width: 30px;
  text-align: center;
}

.products-sec {
  padding: 70px 0px;
  position: relative;
  overflow: hidden;
}

.products-sec .products-filter {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 15px 0px #f1f1f1;
          box-shadow: 0px 0px 15px 0px #f1f1f1;
  margin-bottom: 50px;
}

.products-sec .products-filter h4 {
  line-height: 50px;
}

.products-sec .products-filter .form-group {
  margin-bottom: 0;
}

.products-sec .products-filter .form-group .form-control {
  border: 1px solid #ddd;
  background-color: transparent;
  border-radius: 10px;
  height: 50px;
}

.products-sec .products-filter .form-group .form-control:focus {
  border: 1px solid #FC7E37;
}

.products-sec .nav-wrapper .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.products-sec .nav-wrapper .nav .nav-link {
  margin: 0 10px;
  width: 165px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: linear-gradient(-135deg, #fff, #fff);
}

.products-sec .nav-wrapper .nav .nav-link.active {
  background: linear-gradient(-135deg, #F67667, #F64936);
  color: #fff;
  font-weight: bold;
}

.products-sec .card {
  border-radius: 25px;
  -webkit-box-shadow: 0 0 35px 0 #eee;
          box-shadow: 0 0 35px 0 #eee;
  border: 1px solid transparent;
  margin-bottom: 25px;
}

.products-sec .card .image-content {
  border-radius: 25px 25px 0 0;
  height: 250px;
  background-color: #F9F9F9;
  padding: 25px 0px;
}

.products-sec .card .image-content .product-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.products-sec .card .image-content .icons-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
}

.products-sec .card .image-content .icons-wrapper .icon {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  margin: 5px 0px;
}

.products-sec .card .image-content .icons-wrapper .icon.active {
  background-color: #F1A62A;
}

.products-sec .card .image-content .icons-wrapper .icon:hover img {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

.products-sec .card .card-body h6 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #201D2A;
}

.products-sec .card .card-body .rate {
  color: #E0E0E0;
  text-align: center;
  margin: 0 2px;
  line-height: 35px;
}

.products-sec .card .card-body .rate .active {
  color: #FEBE38;
}

.products-sec .card .card-body .price-badge {
  background-color: #32B1DA;
  text-align: center;
  border-radius: 10px;
  width: 100px;
  display: block;
  margin: auto;
  height: 35px;
  line-height: 40px;
  padding: 0;
  font-weight: bold;
  color: #fff;
  direction: ltr;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.products-sec .card:hover .product-img {
  -webkit-animation: wobble-hor-bottom 1s 1 both;
          animation: wobble-hor-bottom 1s 1 both;
}

.products-sec .card:hover .price-badge {
  background-color: #F1A62A;
}

.products-sec .more-btn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  background-color: #F67667;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  display: block;
  margin: 25px auto 0 auto;
}

.products-sec .more-btn:hover {
  background-color: #F4C988;
}

.products-sec .pagination-wrapper {
  margin-top: 50px;
}

.products-sec .pagination-wrapper .pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.products-sec .pagination-wrapper .pagination .page-link {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 15px;
  padding: 0;
  text-align: center;
  margin: 0 2px;
  color: #F46150;
  font-weight: bold;
}

.products-sec .pagination-wrapper .pagination .page-link:hover {
  background-color: #F46150;
  color: #fff;
}

.products-sec .line-img {
  position: absolute;
  top: 0;
  right: -30%;
  z-index: -1;
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

.offers-sec {
  padding: 70px 0px;
}

.offers-sec .item {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.offers-sec .item .text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 50px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 6;
}

.offers-sec .item .text h5 {
  color: #fff;
  margin-bottom: 1.3rem;
}

.offers-sec .item .text .more-btn {
  position: relative;
  color: #fff;
  font-size: 18px;
}

.offers-sec .item .text .more-btn::after {
  content: '';
  width: 30px;
  height: 2px;
  display: block;
  position: relative;
  background-color: #fff;
  top: 8px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.offers-sec .item .text .more-btn:hover {
  color: #fff;
  font-weight: bold;
}

.offers-sec .item .text .more-btn:hover::after {
  background-color: #31AFE2;
  width: 100px;
}

.offers-sec .item .main-img {
  width: 200px;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 4;
}

.offers-sec .item .circle1 {
  position: absolute;
  top: -70px;
  right: -40px;
  width: 60%;
  -webkit-animation: circle 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate both;
          animation: circle 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate both;
}

.offers-sec .item .circle2 {
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 60%;
  -webkit-animation: vibrate-1 1s linear infinite both;
          animation: vibrate-1 1s linear infinite both;
}

.offers-sec .item.item-lg {
  background: linear-gradient(45deg, #FFBEA2, #E86866);
  height: 450px;
}

.offers-sec .item.item-lg .main-img {
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.offers-sec .item.item-md {
  height: 220px;
}

.offers-sec .item.item-md .first-img-md {
  width: 325px;
  left: 0;
  top: 0;
  height: 100%;
}

.offers-sec .item.item-md .second-img-md {
  left: 0;
  bottom: 0;
  width: 280px;
}

.offers-sec .item.item-md .circle1 {
  width: 40%;
}

.offers-sec .item.item-md .circle2 {
  width: 40%;
}

.offers-sec .item.first-item-md {
  background: linear-gradient(45deg, #FFA2A2, #E4E866);
}

.offers-sec .item.first-item-md .circle1 {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.offers-sec .item.second-item-md {
  background: linear-gradient(45deg, #FFBEA2, #C266E8);
}

.offers-sec .item.second-item-md .circle1 {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.our-features {
  padding: 70px 0px 0px 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#fff));
  background: linear-gradient(to bottom, #f1f1f1, #fff);
}

.our-features .item {
  margin-bottom: 25px;
}

.our-features .item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  display: block;
  margin: auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.our-features .item .icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-features .item .card-body {
  text-align: center;
  padding: 1.25rem 0;
}

.our-features .item .card-body p, .our-features .item .card-body .paragraph {
  margin-top: .8rem;
  line-height: 1.4rem;
  font-size: 12px;
  color: #747474;
}

.our-features .item:hover .icon {
  background-color: #FB7F3A;
}

.our-features .item:hover .icon img {
  -webkit-filter: invert(100%) sepia(0%) saturate(7416%) hue-rotate(560deg) brightness(276%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(7416%) hue-rotate(560deg) brightness(276%) contrast(102%);
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

.our-sponsors {
  padding: 50px 0px;
}

.our-sponsors .sec-heading h3::after {
  content: '';
  background: url(../images/line.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 77px;
  height: 3px;
  position: relative;
  top: 8px;
  display: block;
  margin: 0 auto;
}

.our-sponsors .swiper-container img {
  width: 90%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

/***************************** Start Edit contact Page *****************************/
.contact-pg {
  padding: 70px 0 0 0;
}

.contact-pg .contact-form h5 {
  margin-bottom: 1.3rem;
  color: #555;
}

.contact-pg .contact-form .form-group .form-control {
  height: 50px;
  font-size: 12px;
  border-radius: 10px;
}

.contact-pg .contact-form .form-group textarea {
  height: 250px !important;
  resize: none;
}

.contact-pg .contact-form .form-group .butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  background-color: #F67667;
  border: 1px solid transparent;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  display: block;
  margin: 15px auto 0 auto;
}

.contact-pg .contact-form .form-group .butn:hover {
  background-color: #F4C988;
}

.contact-pg .contact-card {
  padding: 15px 25px 15px 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
}

.contact-pg .contact-card .item {
  border-bottom: 1px solid #ddd;
  padding: 17px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}

.contact-pg .contact-card .item:last-child {
  border-bottom: 1px solid transparent;
}

.contact-pg .contact-card .item .icon {
  color: #FD7F3C;
}

.contact-pg .contact-card .item .text {
  padding-right: 15px;
}

.contact-pg .contact-card .item .text h6 {
  color: #555;
  margin-bottom: .8rem;
}

.contact-pg .contact-card .item .text p, .contact-pg .contact-card .item .text .paragraph {
  font-size: 14px;
  margin-bottom: 0;
}

.contact-pg .contact-card .item .text .social-links a {
  width: 35px;
  height: 35px;
  line-height: 40px;
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(-135deg, #F66F5F, #F64D3A);
  color: #fff;
  display: inline-block;
  margin: 0 3px;
}

.contact-pg .contact-card .item .text .social-links a:hover {
  background: linear-gradient(-135deg, #31AFE2, #038dc4);
}

/***************************** Start Edit Registeration Page *****************************/
.registeration-pg {
  padding: 70px 0px;
  background-color: #f9f9f9;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.registeration-pg .register-inner {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 50px 30px;
  -webkit-box-shadow: 0px 0px 15px 0px #eee;
          box-shadow: 0px 0px 15px 0px #eee;
}

.registeration-pg .register-inner .form-container h5 {
  font-size: 1.5rem;
  text-align: center;
  color: #F1A62A;
  font-weight: bold;
}

.registeration-pg .register-inner .form-container .logo {
  width: 100px;
  margin: 0 auto 15px auto;
  display: block;
}

.registeration-pg .register-inner .form-container .form-group {
  position: relative;
  margin: 0px auto 20px auto;
}

.registeration-pg .register-inner .form-container .form-group i {
  color: #F1A62A;
  position: absolute;
  top: 55px;
  left: 20px;
  cursor: pointer;
}

.registeration-pg .register-inner .form-container .form-group label {
  font-weight: bold;
  color: #666;
}

.registeration-pg .register-inner .form-container .form-control {
  font-size: 15px;
  color: #666;
  display: block;
  width: 100%;
  background: #f5f5f5;
  height: 60px;
  border-radius: 15px;
  border: 1px solid transparent;
  padding: 0 15px;
  padding-left: 45px;
}

.registeration-pg .register-inner .form-container .form-control:focus {
  border: 1px solid #F1A62A;
}

.registeration-pg .register-inner .form-container .forget {
  font-size: 15px;
  text-align: center;
  color: #999;
}

.registeration-pg .register-inner .form-container .forget:hover {
  color: #F64D3A;
}

.registeration-pg .register-inner .form-container .submit-btn {
  width: 70%;
  height: 55px;
  background-color: #F1A62A;
  border: 1px solid #F1A62A;
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  margin: auto;
  display: block;
}

.registeration-pg .register-inner .form-container .submit-btn:hover {
  background-color: #F64D3A;
  border: 1px solid #F64D3A;
}

.registeration-pg .register-inner .form-container .another-register {
  text-align: center;
  font-size: 16x;
  font-weight: bold;
  color: #F1A62A;
}

.registeration-pg .register-inner .form-container .another-register i {
  position: relative;
  top: 2px;
  margin: 0 7px;
}

.registeration-pg .register-inner .form-container .another-register:hover {
  color: #F64936;
}

/***************************** Start Edit Content Page *****************************/
.content-sec {
  padding: 70px 0px;
  background-color: #fff;
}

.content-sec .inner {
  padding: 50px;
  border-radius: 25px;
  background-color: #f9f9f9;
}

.content-sec .inner h4 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.content-sec .inner p, .content-sec .inner .paragraph {
  font-size: 15px;
  line-height: 1.7rem;
}

.content-sec .inner .accordion {
  margin-top: 30px;
}

.content-sec .inner .accordion .card {
  margin-bottom: 10px;
  border: 1px solid #eee;
  -webkit-box-shadow: 0px 0px 15px 0px #f1f1f1;
          box-shadow: 0px 0px 15px 0px #f1f1f1;
}

.content-sec .inner .accordion .card .card-header {
  padding: .5rem 1.25rem;
  background-color: #fff;
}

.content-sec .inner .accordion .card .card-header .btn-link {
  font-size: 15px;
  color: #F1A62A;
  text-decoration: none;
}

.content-sec .inner .accordion .card .card-header .btn-link::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #F1A62A;
}

.content-sec .inner .accordion .card .card-header .btn-link:hover {
  color: #F64936;
}

.content-sec .inner .accordion .card .card-header .btn-link:hover::after {
  color: #F64936;
}

.content-sec .inner .accordion .card .card-header .btn-link.active {
  color: #31AFE2;
}

.content-sec .inner .accordion .card .card-header .btn-link.active::after {
  color: #31AFE2;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.content-sec .inner .accordion .card .card-body {
  background-color: #f5f5f5;
}

.content-sec .inner .accordion .card .card-body p, .content-sec .inner .accordion .card .card-body .paragraph {
  font-size: 13px;
  margin-bottom: 0;
}

/***************************** Start Edit checkout Page *****************************/
.checkout-pg {
  padding: 70px 0px;
  background-color: #fff;
}

.checkout-pg .form-container .pay-method .card-input-element {
  display: none;
}

.checkout-pg .form-container .pay-method .card-input {
  padding: 10px;
  border: 1px solid transparent;
  -webkit-transform: all .3s ease;
          transform: all .3s ease;
  margin-bottom: 15px;
}

.checkout-pg .form-container .pay-method .card-input:hover {
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          box-shadow: 0px 0px 15px 0px #ddd;
}

.checkout-pg .form-container .pay-method .card-input:hover {
  cursor: pointer;
}

.checkout-pg .form-container .pay-method img {
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-pg .form-container .pay-method .card-input-element:checked + .card-input {
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          box-shadow: 0px 0px 15px 0px #ddd;
  border: 1px solid #F1A62A;
}

.checkout-pg .form-container .form-control {
  height: 45px;
  border-radius: 10px;
}

.checkout-pg .form-container label,
.checkout-pg .form-container p, .checkout-pg .form-container .paragraph {
  font-weight: bold;
  color: #666;
  font-size: 15px;
}

.checkout-pg .checkout-summary {
  background-color: #f8f8f8;
  padding: 35px;
  border-radius: 15px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0px 0px 30px 0px #eee;
          box-shadow: 0px 0px 30px 0px #eee;
}

.checkout-pg .checkout-summary h5 {
  margin-bottom: 1.5rem;
}

.checkout-pg .checkout-summary .single-card {
  margin-bottom: 15px;
}

.checkout-pg .checkout-summary .single-card img {
  width: 100%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-pg .checkout-summary .single-card .text h6 {
  color: #333;
}

.checkout-pg .checkout-summary .single-card .text span {
  font-size: 13px;
  color: #555;
  display: block;
  margin-bottom: .5rem;
}

.checkout-pg .checkout-summary .single-card .delete-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  color: #333;
  display: block;
  float: left;
}

.checkout-pg .checkout-summary .single-card .delete-btn:hover {
  color: #F1A62A;
}

.checkout-pg .checkout-summary .prices-wrapper {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}

.checkout-pg .checkout-summary .prices-wrapper .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.checkout-pg .checkout-summary .prices-wrapper .item.total {
  padding-top: 15px;
  border-top: 1px solid #ccc;
}

.checkout-pg .checkout-summary .prices-wrapper .item.total p, .checkout-pg .checkout-summary .prices-wrapper .item.total .paragraph {
  font-weight: bold;
  color: #666;
  margin-bottom: 0;
  font-size: 20px;
}

.checkout-pg .checkout-summary .prices-wrapper .item.total p.total-price, .checkout-pg .checkout-summary .prices-wrapper .item.total .paragraph.total-price {
  color: #000;
  font-size: 25px;
}

.checkout-pg .credit-card {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.checkout-pg .credit-card .checkout {
  margin: 150px 0px 50px 0px;
  padding: 160px 45px 100px;
}

.checkout-pg .credit-card .checkout .credit-card-box .front,
.checkout-pg .credit-card .checkout .credit-card-box .back {
  background: linear-gradient(135deg, #F1A62A, #31AFE2);
}

.checkout-pg .credit-card .checkout .form fieldset label {
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 8px;
}

.checkout-pg .credit-card .checkout .form fieldset.card-expire .select {
  width: 43%;
  margin: 0px 5px;
  float: right;
}

.checkout-pg .submit-btn {
  width: 200px;
  height: 50px;
  line-height: 50px;
  background-color: #F1A62A;
  border: 1px solid #F1A62A;
  color: #fff;
  display: block;
  margin: auto;
  text-align: center;
  border-radius: 15px;
  font-weight: bold;
}

.checkout-pg .submit-btn:hover {
  border: 1px solid #31AFE2;
  background-color: #31AFE2;
}

/***************************** Start Edit product-details Page *****************************/
.product-details {
  padding: 70px 0px;
}

.product-details .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product-details .swiper-container .swiper-pagination-bullet {
  width: 46px;
  height: 5px;
  border-radius: 5px;
}

.product-details .swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #F1A62A;
}

.product-details .swiper-container.product-swiper .swiper-slide {
  height: 400px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.product-details .share-social {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.product-details .share-social a {
  width: 35px;
  height: 35px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  background: linear-gradient(-135deg, #F66F5F, #F64D3A);
  color: #fff;
  display: inline-block;
  margin: 0 3px;
}

.product-details .share-social a:hover {
  background: linear-gradient(-135deg, #31AFE2, #038dc4);
}

.product-details .content {
  padding: 10px;
}

.product-details .content h4 {
  color: #44494a;
  font-weight: 500;
}

.product-details .content .reviews {
  display: inline-block;
  font-size: 12px;
  width: 100%;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 20px;
}

.product-details .content .reviews a {
  color: #555;
  margin-right: 5px;
}

.product-details .content .reviews a:hover {
  color: #FDB00A;
}

.product-details .content .details {
  width: 100%;
  border-bottom: 1px dotted #ccc;
}

.product-details .content .details ul li {
  font-size: 15px;
  margin: 5px 0px;
  line-height: 1.5rem;
}

.product-details .content .price-container {
  padding: 20px 0px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.product-details .content .price-container span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.product-details .content .price-container span.present-price {
  color: #FC7E37;
  font-weight: bold;
  font-size: 18px;
}

.product-details .content .price-container span.last-price {
  text-decoration: line-through;
  color: #777;
  margin: 0 15px;
}

.product-details .content .price-container .discount-badge {
  position: absolute;
  left: 0;
  top: 20px;
  text-align: center;
  width: 100px;
  height: 30px;
  margin-bottom: 0;
  line-height: 30px;
  background-color: #202020;
  color: #FC7E37;
  border-radius: 5px;
}

.product-details .content .price-container .tax {
  margin-bottom: 0;
  margin-top: 5px;
  letter-spacing: 1px;
  font-size: 12px;
}

.product-details .content .select-details {
  padding: 20px 0px;
}

.product-details .content .buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 15px 5px;
  background-color: #f5f5f5;
  width: 100%;
  border-radius: 15px;
  margin-top: 20px;
  -webkit-box-shadow: 0px 3px 4px 0px #eee;
          box-shadow: 0px 3px 4px 0px #eee;
}

.product-details .content .buttons .form-buttons {
  border-radius: 10px;
  border: 1px solid transparent;
  color: #FD7F3C;
  margin: 0 5px;
  font-size: 14px;
  text-align: center;
  width: 180px;
  height: 45px;
  line-height: 45px;
  font-weight: bold;
}

.product-details .content .buttons .form-buttons i {
  margin: 0px 3px;
}

.product-details .content .buttons .form-buttons.active {
  background-color: #FD7F3C;
  color: #fff;
}

.product-details .content .buttons .form-buttons:hover {
  background-color: #202020;
  border: 1px solid #202020;
  color: #31AFE2;
}

.product-details .rate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
  font-size: 13px;
}

.product-details .rate i {
  margin-right: 3px;
  color: #ccc;
}

.product-details .rate i.active {
  color: #FDB00A;
}

.product-details .review-swiper .swiper-pagination {
  position: relative;
  margin-top: 15px;
}

.product-details .reciew-card {
  background-color: #f5f5f5;
  padding: 30px 15px;
  border-radius: 25px;
}

.product-details .reciew-card .profile-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.product-details .reciew-card .profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-details .reciew-card .review-content p, .product-details .reciew-card .review-content .paragraph {
  font-size: 13px;
  margin-bottom: 0;
}

.product-details .form-container {
  background-color: #f9f9f9;
  padding: 50px 30px;
  margin-top: 50px;
  border-radius: 25px;
}

.product-details .form-container label {
  font-weight: bold;
  color: #666;
  font-size: 13px;
}

.product-details .form-container .quantity-container {
  height: 45px;
  border: solid 1px #ccc;
  border-radius: 10px;
}

.product-details .form-container .quantity-container .qt-plus,
.product-details .form-container .quantity-container .qt-minus {
  width: 45px;
  height: 45px;
  line-height: 20px;
}

.product-details .form-container .quantity-container .qt-plus:hover,
.product-details .form-container .quantity-container .qt-minus:hover {
  background-color: #666;
  color: #FDB00A;
}

.product-details .form-container .quantity-container .qt {
  line-height: 45px;
}

.product-details .form-container .quantity-container .add-more {
  width: 100% !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-details .form-container .form-control {
  background-color: transparent;
  height: 45px;
  border-radius: 10px;
}

.product-details .form-container .submit-btn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #FD7F3C;
  background-color: #FD7F3C;
  border-radius: 10px;
  color: #fff;
  display: block;
  margin: 25px auto 0 auto;
}

.product-details .form-container .submit-btn:hover {
  background-color: #31AFE2;
  border: 1px solid #31AFE2;
}

/***************************** Start Edit Cart Page *****************************/
.cart-pg {
  padding: 70px 0;
}

.cart-pg .bestseller {
  margin-bottom: 30px;
}

.cart-pg .bestseller .card-header {
  border-radius: 0px;
  background-color: #F1A62A;
  color: #fff;
  position: relative;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 1rem 1.25rem;
}

.cart-pg .bestseller .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
}

.cart-pg .bestseller .item img {
  width: 70px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart-pg .bestseller .item .text {
  margin-right: 10px;
}

.cart-pg .bestseller .item .text h6 {
  margin-bottom: .3rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.cart-pg .bestseller .item .text .rate i {
  font-size: 10px;
  color: #ccc;
  margin-bottom: 10px;
}

.cart-pg .bestseller .item .text .rate i.active {
  color: #F7C80D;
}

.cart-pg .bestseller .item:hover h6 {
  color: #F1A62A;
}

.cart-pg .banner-discount img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

.cart-pg .cart-wrapper .table-responsive {
  overflow-y: hidden;
}

.cart-pg .cart-wrapper .table-responsive th {
  font-size: 15px;
  background-color: #f9f9f9;
}

.cart-pg .cart-wrapper .table-responsive img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart-pg .cart-wrapper .table-responsive form .input-group {
  width: 135px;
  margin: auto;
}

.cart-pg .cart-wrapper .table-responsive form .input-group .form-control {
  font-size: 15px;
}

.cart-pg .cart-wrapper .table-responsive form .input-group .form-control:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
  border: 1px solid #202020;
}

.cart-pg .cart-wrapper .table-responsive form .input-group .butn {
  height: 36px;
  width: 38px;
  line-height: 36px;
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff;
}

.cart-pg .cart-wrapper .table-responsive form .input-group .butn:first-child {
  background-color: #31AFE2;
  border: 1px solid #31AFE2;
}

.cart-pg .cart-wrapper .accordion-wrapper .card {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-header {
  padding: .375rem;
  background-color: #f9f9f9;
  position: relative;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-header:hover button, .cart-pg .cart-wrapper .accordion-wrapper .card .card-header:hover::after {
  color: #F46150;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-header::after {
  content: "\f107";
  color: #555;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  left: 22px;
  top: 15px;
  pointer-events: none;
  font-size: 15px;
  -webkit-transition: .3s;
  transition: .3s;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-header i {
  margin-left: 4px;
  color: #555;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-header i.active {
  color: #20913e;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-header .btn-link {
  width: 100%;
  text-align: right;
  color: #202020;
  text-decoration: none;
  font-size: 15px;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-body form label {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-body form .form-group {
  position: relative;
  margin-top: 10px;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-body form .form-group .form-control {
  font-size: 12px;
  height: 45px;
  border-radius: 0px 5px 5px  0px;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-body form .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #F64936;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-body form .submit-btn {
  width: 130px;
  height: 45px;
  border: 1px solid #202020;
  background: #202020;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px 0px 0px 5px;
}

.cart-pg .cart-wrapper .accordion-wrapper .card .card-body form .submit-btn.code-btn {
  position: absolute;
  left: 0;
  top: 0;
}

.cart-pg .cart-wrapper .checkout .checkout-summary {
  padding: 35px 25px;
  margin: 15px 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.cart-pg .cart-wrapper .checkout .checkout-summary .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: .375rem;
}

.cart-pg .cart-wrapper .checkout .checkout-summary .item .price {
  font-weight: bold;
  font-size: 15px;
  direction: ltr;
}

.cart-pg .cart-wrapper .checkout .checkout-summary .item .price.active {
  font-size: 20px;
  color: #F64936;
}

.cart-pg .cart-wrapper .checkout .checkout-summary .item:nth-child(4) {
  border-top: 1px solid #ccc;
  padding: .75rem .375rem;
}

.cart-pg .cart-wrapper .checkout .checkout-summary .item .buy-btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background-color: #202020;
  border: 1px solid #202020;
  font-size: 15px;
  font-weight: bold;
  border-radius: 5px;
}

/***************************** Start Edit About Page *****************************/
.about-pg {
  padding: 70px 0;
  position: relative;
}

.about-pg .img-box img {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
}

.about-pg .text-box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.about-pg .text-box h3 {
  color: #31AFE2;
  margin-bottom: 1rem;
}

.about-pg .text-box h3 b {
  color: #F46150;
  font-weight: 800;
}

.about-pg .text-box .paragraph {
  line-height: 2rem;
}

.about-pg .img-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.about-det {
  padding: 30px 0;
  overflow: hidden;
}

.about-det .card {
  margin-bottom: 15px;
  padding: 1.5rem;
  border: none;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 15px;
}

.about-det .card img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  -webkit-filter: invert(82%) sepia(47%) saturate(5523%) hue-rotate(165deg) brightness(93%) contrast(91%);
          filter: invert(82%) sepia(47%) saturate(5523%) hue-rotate(165deg) brightness(93%) contrast(91%);
}

.about-det .card h4 {
  margin: 1.3rem 0rem 1rem;
  color: #555;
}

.about-det .card p {
  font-size: 13px;
  line-height: 1.5rem;
}

.about-det .card:hover {
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
}

.about-det .card:hover img {
  -webkit-animation-name: tada;
          animation-name: tada;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/***************************** Start Edit Profile Page *****************************/
.profile-pg {
  padding: 70px 0;
}

.profile-pg .side-nav {
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(123, 185, 247, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(123, 185, 247, 0.2);
  padding: 1.5rem 0rem;
  margin-bottom: 25px;
  border-radius: 10px;
}

.profile-pg .side-nav .profile-img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}

.profile-pg .side-nav .profile-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-pg .side-nav .profile-img h6 {
  margin: 1.2rem 0rem .5rem 0rem;
}

.profile-pg .side-nav .points-wallet {
  background-color: #f6f6f6;
  padding: 20px 15px;
  border-radius: 15px;
  margin: 10px;
}

.profile-pg .side-nav .points-wallet h6 {
  color: #777;
}

.profile-pg .side-nav .points-wallet span {
  font-size: 20px;
  font-weight: 600;
}

.profile-pg .side-nav .points-wallet span small {
  font-size: 60%;
}

.profile-pg .side-nav .points-wallet span.color-orange {
  color: #F46150;
}

.profile-pg .side-nav .points-wallet span.color-blue {
  color: #31AFE2;
}

.profile-pg .side-nav .points-wallet .main-button {
  margin: 7px auto 0 auto;
  width: 110px;
  font-size: 12px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  background-color: #F67667;
  border: 1px solid #F67667;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
}

.profile-pg .side-nav .points-wallet .main-button:nth-of-type(1) {
  background-color: #31AFE2;
  border: 1px solid #31AFE2;
}

.profile-pg .side-nav .points-wallet .main-button:hover {
  border: 1px solid #F1A62A;
  background-color: #F1A62A;
}

.profile-pg .side-nav .links {
  margin-top: 25px;
}

.profile-pg .side-nav .links .nav-link {
  border-left: 1px solid transparent;
  border-radius: 0;
  font-size: 15px;
  padding: .75rem 1.375rem;
}

.profile-pg .side-nav .links .nav-link i {
  margin-left: 10px;
  color: #777;
}

.profile-pg .side-nav .links .nav-link.active {
  border-left: 2px solid #F46150;
  background-color: #f9f9f9;
  color: #F46150;
  font-weight: bold;
}

.profile-pg .side-nav .links .nav-link.active i {
  color: #F46150;
}

.profile-pg .tab-wrapper {
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(123, 185, 247, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(123, 185, 247, 0.2);
  padding: 2.5rem 2rem;
  margin-bottom: 25px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.profile-pg .tab-wrapper .sec-heading h4 {
  font-size: 1.2rem;
  color: #31AFE2;
}

.profile-pg .tab-wrapper .sec-heading h4 b {
  font-weight: bold;
  color: #F1A62A;
}

.profile-pg .tab-wrapper .main-butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  border: 1px solid #F1A62A;
  color: #fff;
  background-color: #F1A62A;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  margin: 15px auto 0 auto;
  border-radius: 10px;
}

.profile-pg .tab-wrapper .main-butn:hover {
  background-color: #31AFE2;
}

.profile-pg .tab-wrapper.info-tab .info-content {
  margin-bottom: 1.3rem;
}

.profile-pg .tab-wrapper.info-tab .info-content h6 {
  color: #555;
  margin-bottom: .7rem;
  font-size: .9rem;
}

.profile-pg .tab-wrapper.info-tab .info-content .text {
  padding: 15px 10px;
  background-color: #f8f8f8;
  border-radius: 5px;
  margin-bottom: 0;
  font-weight: 500;
  color: #777;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item {
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 15px 0px #eee;
          box-shadow: 0px 5px 15px 0px #eee;
  padding: 10px 20px;
  background-color: #f9f9f9;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item .new {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: #F1A62A;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0px;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item .noti-img {
  width: 100%;
  height: 60px;
  border-radius: 0;
  border: 3px solid #fff;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item h6 {
  margin-bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item .text {
  margin: 0 10px;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item .time {
  float: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  direction: ltr;
  font-weight: 600;
  color: #777;
}

.profile-pg .tab-wrapper.orders-tab .table img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

/*Info Modal*/
.info-modal .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #31AFE2;
  margin: auto;
  position: relative;
}

.info-modal .image-container img {
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 7px solid #ddd;
}

.info-modal .image-container input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
}

.info-modal .image-container button {
  width: 45px;
  height: 45px;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  background-color: #F1A62A;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #ddd;
  position: absolute;
  right: 2px;
  bottom: 0px;
}

.info-modal .image-container button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

.info-modal .text {
  margin-bottom: 20px;
  padding: 0px 10px;
}

.info-modal .text .content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.info-modal .text .content span {
  text-transform: uppercase;
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-modal .text .content .edit-btn {
  cursor: pointer;
  color: #4f4e4e;
  font-size: 12px;
}

.info-modal .text .form-control {
  background-color: #f5f5f5;
  border: 1px solid transparent;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
}

.info-modal .text .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #F1A62A;
}

.info-modal .text .enable-input {
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
  background-color: #fff;
  border: 1px solid #ddd;
}

.info-modal .text .enable-input:focus {
  border: 1px solid #F1A62A;
}

.info-modal .main-butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  border: 1px solid #31AFE2;
  color: #fff;
  background-color: #31AFE2;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  margin: 15px auto;
  border-radius: 10px;
}

.info-modal .main-butn:hover {
  background-color: #F1A62A;
}

/*Pay Wrapper*/
.pay .pay-method .card-input-element {
  display: none;
}

.pay .pay-method .card-input {
  padding: 10px;
  border: 1px solid transparent;
  -webkit-transform: all .3s ease;
          transform: all .3s ease;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.pay .pay-method .card-input:hover {
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          box-shadow: 0px 0px 15px 0px #ddd;
}

.pay .pay-method .card-input:hover {
  cursor: pointer;
}

.pay .pay-method img {
  width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pay .pay-method .card-input-element:checked + .card-input {
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          box-shadow: 0px 0px 15px 0px #ddd;
  border: 1px solid #F1A62A;
}

/*load-wallet-modal*/
.load-wallet-modal label {
  font-weight: bold;
  color: #666;
}

.load-wallet-modal .form-control {
  font-size: 15px;
  color: #666;
  display: block;
  width: 100%;
  background: #f5f5f5;
  height: 60px;
  border-radius: 15px;
  border: 1px solid transparent;
  padding: 0 15px;
  padding-left: 45px;
}

/*redeeming-points-modal*/
.redeeming-points-modal .h5 {
  font-weight: 600;
  color: #31AFE2;
}

.redeeming-points-modal .h5 b {
  font-weight: 600;
  color: #F1A62A;
}

.redeeming-points-modal .p {
  font-weight: 500;
}
/*# sourceMappingURL=style.css.map */