/*page-heading*/
.page-heading {
  padding: 40px 0 60px 0;
  border-bottom: 1px solid #ccc;
}

.page-heading .breadcrumb {
  background-color: transparent;
}

.page-heading .breadcrumb a {
  color: #fff;
}

.page-heading .breadcrumb .breadcrumb-item.active {
  color: #eee;
}

.page-heading .breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 5 Free";
  color: #FF3C78;
  content: "\f111";
  font-size: 12px;
  font-weight: 600;
}

.page-heading .headline {
  color: #0A083A;
  font-weight: 600;
}

/*in-flex*/
.in-flex {
  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%;
}

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

.products-pg .filtering-wrapper .panel {
  margin-bottom: 15px;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 0px 0px 15px 0px #eee;
          box-shadow: 0px 0px 15px 0px #eee;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.products-pg .filtering-wrapper .panel .panel-heading {
  padding: 25px 20px;
  border-bottom: 1px solid #eee;
}

.products-pg .filtering-wrapper .panel .panel-heading h4 {
  margin-bottom: 0;
}

.products-pg .filtering-wrapper .panel .panel-heading h4 a {
  width: 100%;
  display: block;
  font-size: 1rem;
}

.products-pg .filtering-wrapper .panel .panel-heading i {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: absolute;
  right: 20px;
  top: 25px;
  color: #666;
  font-size: 18px;
}

.products-pg .filtering-wrapper .panel .card-body {
  padding: .25rem 1.25rem;
}

.products-pg .filtering-wrapper .panel.active a {
  color: #FF3C78;
}

.products-pg .filtering-wrapper .panel.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #FF3C78;
}

.products-pg .filtering-wrapper .custom-control {
  padding-left: 0;
  margin: 20px 5px;
}

.products-pg .filtering-wrapper .custom-control-label {
  width: 100%;
}

.products-pg .filtering-wrapper .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #FF3C78;
  background-color: #FF3C78;
}

.products-pg .filtering-wrapper .custom-control-input:checked ~ .custom-control-label {
  color: #315BFF;
  font-weight: 500;
}

.products-pg .filtering-wrapper .custom-control-label::before {
  right: 0rem;
  left: unset;
  border: 1px solid transparent;
}

.products-pg .filtering-wrapper .custom-control-label::after {
  right: 0rem;
  left: unset;
}

.products-pg .filtering-wrapper .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/***************************** Start Edit Single Product Page *****************************/
.single-product {
  padding: 70px 0;
  background-color: #f9f9f9;
}

.single-product .single-prod-img .img-box {
  position: relative;
  margin-bottom: 15px;
}

.single-product .single-prod-img .img-box .zoom-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #f5f5f5;
  display: block;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}

.single-product .single-prod-img .img-box .zoom-icon:hover {
  background-color: #FF3C78;
  color: #fff;
}

.single-product .single-prod-img .img-box:hover .zoom-icon {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.single-product .single-prod-img .lg-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-product .single-prod-img .md-img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-product .prod-det {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}

.single-product .prod-det .heading {
  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%;
}

.single-product .prod-det .heading .categ-name {
  font-weight: 500;
}

.single-product .prod-det .heading .rate .icon {
  width: 15px;
}

.single-product .prod-det .prod-name {
  color: #0A083A;
  font-weight: 600;
  margin-top: .8rem;
}

.single-product .prod-det .select-color-container {
  display: inline-block;
}

.single-product .prod-det .select-color-container .h6 {
  display: inline-block;
  margin: 0 5px 0 0;
}

.single-product .prod-det .select-color-container .color-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 6px 0 0 0;
}

.single-product .prod-det .select-color-container .color-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.single-product .prod-det .select-color-container .color-container input:checked + .checkmark::after {
  display: block;
}

.single-product .prod-det .select-color-container .color-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

.single-product .prod-det .select-color-container .color-container .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.single-product .prod-det .price {
  font-weight: 600;
  color: #0A083A;
  margin: 1rem 0;
}

.single-product .prod-det .select-size-container .size-container {
  width: 100%;
  margin-bottom: 15px;
}

.single-product .prod-det .select-size-container .size-container .size-label {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #eee;
  border-radius: 5px;
}

.single-product .prod-det .select-size-container .size-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.single-product .prod-det .select-size-container .size-container input:checked + .size-label {
  background-color: #0A083A;
  color: #fff;
}

.single-product .prod-det .quantity-container {
  padding-bottom: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.single-product .prod-det .main-btn {
  display: inline-block;
}

.single-product .prod-det .main-btn {
  width: 100%;
  background-color: #0A083A;
  color: #fff;
  height: 45px;
  border: 1px solid #0A083A;
}

.single-product .prod-det .main-btn:hover {
  background-color: #315BFF;
  border: 1px solid #315BFF;
}

.single-product .panel {
  border-bottom: 1px solid #ddd;
  position: relative;
  background-color: transparent;
  overflow: hidden;
}

.single-product .panel .panel-heading {
  padding: 25px 20px;
  border-bottom: 1px solid transparent;
}

.single-product .panel .panel-heading h4 {
  margin-bottom: 0;
}

.single-product .panel .panel-heading h4 a {
  width: 100%;
  display: block;
  font-size: 1rem;
}

.single-product .panel .panel-heading i {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: absolute;
  right: 20px;
  top: 25px;
  color: #666;
  font-size: 18px;
}

.single-product .panel .card-body {
  padding: .25rem 1.25rem;
}

.single-product .panel.active a {
  color: #FF3C78;
}

.single-product .panel.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #FF3C78;
}

/* quantity-container */
.quantity-container .qt-plus,
.quantity-container .qt-minus {
  width: 45px;
  height: 45px;
  border: solid 1px transparent;
  background-color: #f1f1f1;
  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: 0px;
  color: #333;
  font-size: 12px;
  vertical-align: middle;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
}

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

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

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

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

.cart-pg .cart-inner .cart-item {
  margin-bottom: 20px;
}

.cart-pg .cart-inner .cart-item .prod-img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart-pg .cart-inner .cart-item .prod-det .prod-name, .cart-pg .cart-inner .cart-item .prod-det .price {
  color: #0A083A;
}

.cart-pg .cart-inner .cart-item .prod-det .categ-name {
  font-weight: 500;
  color: #777;
  display: block;
  margin-bottom: .5rem;
}

.cart-pg .cart-inner .cart-item .prod-det .det {
  margin-bottom: 0;
}

.cart-pg .cart-inner .cart-item .prod-det .delete-btn {
  background-color: transparent;
  color: #FF3C78;
  border: transparent;
  font-weight: 500;
}

.cart-pg .cart-inner .cart-item .prod-det .delete-btn:hover {
  color: #315BFF;
}

.cart-pg .order-det {
  border: 1px solid #ddd;
  padding: 35px 30px;
  border-radius: 10px;
}

.cart-pg .order-det .item {
  margin: 7px 0;
}

.cart-pg .order-det .item .det {
  font-weight: 500;
  color: #777;
}

.cart-pg .order-det .form-group {
  position: relative;
}

.cart-pg .order-det .form-group .form-control {
  height: 55px;
}

.cart-pg .order-det .form-group .submit-btn {
  height: 55px;
  background-color: #0A083A;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  border: 1px solid #0A083A;
  border-radius: 0 5px 5px 0;
}

.cart-pg .order-det .form-group .submit-btn:hover {
  background-color: #315BFF;
  border: 1px solid #315BFF;
}

.cart-pg .order-det .main-btn {
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: block;
  text-align: center;
  border-radius: 5px;
  background-color: #0A083A;
  border: 1px solid #0A083A;
  color: #fff;
  font-weight: 500;
}

.cart-pg .order-det .main-btn:hover {
  background-color: #FF3C78;
  border: 1px solid #FF3C78;
}

/***************************** Start Edit Checkout Page *****************************/
/*checkout-heading*/
.checkout-heading {
  background-color: #f9f9f9;
  border-bottom: 1px solid transparent;
  padding: 40px 0;
}

.checkout-heading .breadcrumb .breadcrumb-item {
  font-weight: 600;
  font-size: 18px;
}

.checkout-heading .breadcrumb a {
  color: #666;
}

.checkout-heading .breadcrumb .breadcrumb-item.active {
  color: #000;
}

.checkout-pg {
  padding: 0 0 70px 0;
  background-color: #f9f9f9;
  /*Pay Wrapper*/
}

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

.checkout-pg .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;
}

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

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

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

.checkout-pg .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 #FF3C78;
}

/*form-wrapper*/
.form-wrapper .form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-wrapper .form-group .form-control {
  background-color: #f9f9f9;
}

.form-wrapper .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #FF3C78;
}

.form-wrapper .form-group .form-control::-webkit-input-placeholder {
  font-size: 13px;
  color: #999;
}

.form-wrapper .form-group .form-control:-ms-input-placeholder {
  font-size: 13px;
  color: #999;
}

.form-wrapper .form-group .form-control::-ms-input-placeholder {
  font-size: 13px;
  color: #999;
}

.form-wrapper .form-group .form-control::placeholder {
  font-size: 13px;
  color: #999;
}

.form-wrapper .form-group input, .form-wrapper .form-group select {
  height: 55px;
}

.form-wrapper .floating-label {
  font-size: 13px;
  color: #999;
  position: absolute;
  pointer-events: none;
  top: 18px;
  left: 12px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  background-color: #f9f9f9;
  padding: 0 5px;
}

.form-wrapper .form-control:focus ~ .floating-label,
.form-wrapper .form-control:not(:focus):valid ~ .floating-label {
  top: -9px;
  bottom: 0px;
  left: 10px;
  font-size: 12px;
  opacity: 1;
  color: #555;
  font-weight: 500;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.form-wrapper .submit-btn {
  background-color: #0A083A;
  color: #fff;
  width: 200px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 5px;
  padding: 0;
  border: 1px solid #0A083A;
  font-size: 15px;
  display: block;
}

.form-wrapper .submit-btn:hover {
  background-color: #FF3C78;
  border: 1px solid #FF3C78;
}

.form-wrapper .back-btn {
  color: #0A083A;
}

.form-wrapper .back-btn i {
  margin: 0 5px;
}

.form-wrapper .back-btn:hover {
  color: #315BFF;
}

/***************************** Start Edit Register Page *****************************/
.register-pg {
  padding: 100px 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#0A083A), to(#060523));
  background-image: linear-gradient(to right, #0A083A, #060523);
  background-color: #0A083A;
  position: relative;
}

.register-pg .heading .h4 {
  color: #0A083A;
  font-weight: 600;
}

.register-pg .heading .another-register {
  color: #777;
  font-weight: 500;
}

.register-pg .heading .another-register a {
  color: #315BFF;
}

.register-pg .heading .another-register a:hover {
  color: #FF3C78;
}

.register-pg .form-wrapper {
  background-color: #f9f9f9;
  padding: 50px 35px;
  border-radius: 15px;
}

.register-pg .form-wrapper .togglePassword {
  color: #A5A5A5;
  position: absolute;
  right: 15px;
  top: 20px;
  cursor: pointer;
}

.register-pg .form-wrapper .forget-pass {
  color: #777;
  font-size: 10px;
  text-align: end;
  display: block;
  margin: 10px 0px;
}

.register-pg .form-wrapper .forget-pass:hover {
  color: #FF3C78;
}

.register-pg .form-wrapper .submit-btn {
  width: 100%;
  height: 60px;
  line-height: 60px;
  margin-top: 25px;
}

.register-pg .pattern {
  position: absolute;
  bottom: 0;
  right: 0;
}

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

.profile-pg .side-r {
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 25px;
  padding: 35px 20px;
}

.profile-pg .side-r .profile-info {
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.profile-pg .side-r .profile-info .profile-pic {
  width: 120px;
  height: 120px;
  border: 1px solid #FF3C78;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: auto;
}

.profile-pg .side-r .profile-info h6 {
  margin-top: 1rem;
  margin-bottom: .4rem;
}

.profile-pg .side-r .nav {
  margin-top: 10px;
}

.profile-pg .side-r .nav .nav-link {
  padding: 1rem;
  color: #333;
  font-size: 15px;
}

.profile-pg .side-r .nav .nav-link .icon {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 7px;
}

.profile-pg .side-r .nav .nav-link.active {
  background-color: transparent;
  color: #FF3C78;
}

.profile-pg .side-r .nav .nav-link.active .icon {
  color: #315BFF;
  -webkit-filter: invert(26%) sepia(81%) saturate(3788%) hue-rotate(226deg) brightness(102%) contrast(101%);
          filter: invert(26%) sepia(81%) saturate(3788%) hue-rotate(226deg) brightness(102%) contrast(101%);
}

.profile-pg .tab-wrapper {
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 25px;
  padding: 35px;
  min-height: 100%;
}

.profile-pg .tab-wrapper.info .item {
  margin-bottom: 15px;
}

.profile-pg .tab-wrapper.info .item .label {
  font-size: 15px;
  font-weight: 600;
  color: #666;
}

.profile-pg .tab-wrapper.info .item .content {
  background-color: #f8f8f8;
  border-radius: 25px;
  padding: 20px 25px;
  margin: 10px 0 0 0;
  line-height: 1.8rem;
  font-size: 15px;
}

.profile-pg .tab-wrapper.info .item .content i {
  color: #FF3C78;
  margin: 0 5px;
}

.profile-pg .tab-wrapper.edit-info .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #202020;
  margin: 0 auto 45px auto;
  position: relative;
}

.profile-pg .tab-wrapper.edit-info .image-container img {
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 7px solid #FF3C78;
}

.profile-pg .tab-wrapper.edit-info .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;
}

.profile-pg .tab-wrapper.edit-info .image-container button {
  width: 35px;
  height: 35px;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  background-color: #202020;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #315BFF;
  position: absolute;
  right: 10px;
  bottom: 0px;
}

.profile-pg .tab-wrapper.edit-info .image-container button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

.profile-pg .tab-wrapper.edit-info textarea {
  padding: 15px 35px !important;
  height: 250px !important;
}

.profile-pg .tab-wrapper.notif-tab .noti-heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.profile-pg .tab-wrapper.notif-tab .noti-heading h4 {
  color: #FF3C78;
  margin-bottom: 0;
}

.profile-pg .tab-wrapper.notif-tab h5 {
  margin-top: 20px;
}

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

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

.profile-pg .tab-wrapper.notif-tab .noti-item .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 4px 15px 0px #ddd;
          box-shadow: 0px 4px 15px 0px #ddd;
  display: block;
  margin: auto;
}

.profile-pg .tab-wrapper.notif-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.notif-tab .noti-item .text {
  margin: 0 10px;
}

.profile-pg .tab-wrapper.notif-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 .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.profile-pg .tab-wrapper.orders-tab .nav .nav-link {
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: .7rem 2.5rem;
  margin: 0 5px;
  color: #666;
  font-weight: bold;
}

.profile-pg .tab-wrapper.orders-tab .nav .nav-link.active {
  border: 1px solid #FF3C78;
  color: #FF3C78;
  background-color: transparent;
}

.profile-pg .tab-wrapper.orders-tab .order-card {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 30px;
  margin-bottom: 25px;
}

.profile-pg .tab-wrapper.orders-tab .order-card .prod-img {
  width: 100 .profile-pg .tab-wrapper.orders-tab .order-card .prod-img;
  height: 200px;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto 15px auto;
}

.profile-pg .tab-wrapper.orders-tab .order-card .order-btn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  text-align: center;
  position: relative;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  border: solid 1px #315BFF;
  background-color: #315BFF;
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.profile-pg .tab-wrapper.orders-tab .order-card .order-btn:hover {
  border: solid 1px #FF3C78;
  background-color: #FF3C78;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content h5 .numb {
  font-weight: 700;
  color: #41B0CA;
  margin: 0 10px;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content h6 {
  font-weight: 600;
  color: #777;
  margin-bottom: .8rem;
}

.profile-pg .tab-wrapper.orders-tab .order-card .text-content h6 span {
  color: #FF3C78;
  margin: 0 10px;
}

.profile-pg .tab-wrapper.orders-tab .align-left {
  text-align: left;
}

.profile-pg .form-wrapper .togglePassword {
  color: #A5A5A5;
  position: absolute;
  right: 15px;
  top: 20px;
  cursor: pointer;
}

.profile-pg .form-wrapper .form-control {
  background-color: #fff;
}

.profile-pg .form-wrapper .floating-label {
  background-color: #fff;
}

.profile-pg .form-wrapper .submit-btn {
  margin: auto;
}

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

.about-pg .text-box .h1 {
  font-size: 2.5rem;
  font-weight: bold !important;
  letter-spacing: 2px;
  color: #0A083A;
}

.about-pg .text-box .h1 .color-pink {
  color: #FF3C78;
}

.about-pg .text-box .h1 .color-blue {
  color: #315BFF;
}

.about-pg .text-box .h1 .color-green {
  color: #02BE83;
}

.about-pg .text-box .p {
  color: #7F86AA;
}

.about-pg .img-box img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-pg .lines {
  position: absolute;
  top: -200px;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

/***************************** Start Edit Contact Page *****************************/
.contact-pg {
  padding: 70px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}

.contact-pg .map-box::before {
  content: '';
  width: 200px;
  height: 200px;
  position: absolute;
  top: -20px;
  left: -5px;
  display: block;
  background-color: #FF3C78;
  z-index: 1;
  -webkit-box-shadow: 5px 10px 50px #f3c1c4;
          box-shadow: 5px 10px 50px #f3c1c4;
}

.contact-pg .map-box iframe {
  position: relative;
  z-index: 2;
}

.contact-pg .contact-cards {
  background-color: #fff;
  margin-top: -100px;
  z-index: 3;
  position: relative;
  -webkit-box-shadow: 0 0 50px 0 #ddd;
          box-shadow: 0 0 50px 0 #ddd;
}

.contact-pg .contact-cards .item {
  padding: 40px 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  background-color: #fff;
  width: 100%;
}

.contact-pg .contact-cards .item .icon {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(26%) sepia(81%) saturate(3788%) hue-rotate(226deg) brightness(102%) contrast(101%);
          filter: invert(26%) sepia(81%) saturate(3788%) hue-rotate(226deg) brightness(102%) contrast(101%);
}

.contact-pg .contact-cards .item .text {
  padding: 0 15px;
}

.contact-pg .contact-cards .item .text p {
  margin-bottom: 0;
}

.contact-pg .contact-cards .item:hover {
  background-color: #FF3C78;
}

.contact-pg .contact-cards .item:hover .icon {
  -webkit-filter: invert(100%) sepia(1%) saturate(115%) hue-rotate(157deg) brightness(216%) contrast(100%);
          filter: invert(100%) sepia(1%) saturate(115%) hue-rotate(157deg) brightness(216%) contrast(100%);
}

.contact-pg .contact-cards .item:hover h6 {
  color: #fff;
}

.contact-pg .contact-cards .item:hover p {
  color: #eee;
}

.contact-pg .submit-btn {
  margin: auto;
}

.contact-pg .submit-btn i {
  margin: 0 5px;
}
/*# sourceMappingURL=pages-style.css.map */