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

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

*::selection {
  background-color: #96c15b;
  color: #fff;
}

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

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

*::-webkit-scrollbar-thumb {
  background: #96c15b;
  border-radius: 8px;
}

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

/***************************** Global Style *****************************/
h1, h2, h3 {
  font-family: 'Tajawal';
}

h4, h5, h6 {
  font-family: 'Tajawal';
}

p {
  font-size: 15px;
  font-family: 'Tajawal';
  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;
}

.dir-l {
  direction: ltr;
}

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:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

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

form .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #a2e6e6;
  background-color: #a2e6e6;
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(-135deg, #BFEF7E, #B0FFFF);
  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 {
  color: #fff;
}

/***************************** Animations *****************************/
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
            transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(1.5) rotateZ(180deg);
            transform: scale(1.5) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg);
  }
}

@keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
            transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(1.5) rotateZ(180deg);
            transform: scale(1.5) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg);
  }
}

@-webkit-keyframes rotate-scale-up2 {
  0% {
    -webkit-transform: scale(0.7) rotateZ(0);
            transform: scale(0.7) rotateZ(0);
    opacity: .2;
  }
  50% {
    -webkit-transform: scale(1) rotateZ(180deg);
            transform: scale(1) rotateZ(180deg);
    opacity: .5;
  }
  100% {
    -webkit-transform: scale(0.7) rotateZ(360deg);
            transform: scale(0.7) rotateZ(360deg);
    opacity: 1;
  }
}

@keyframes rotate-scale-up2 {
  0% {
    -webkit-transform: scale(0.7) rotateZ(0);
            transform: scale(0.7) rotateZ(0);
    opacity: .2;
  }
  50% {
    -webkit-transform: scale(1) rotateZ(180deg);
            transform: scale(1) rotateZ(180deg);
    opacity: .5;
  }
  100% {
    -webkit-transform: scale(0.7) rotateZ(360deg);
            transform: scale(0.7) rotateZ(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes line-moving {
  0% {
    width: 15%;
  }
  100% {
    width: 70%;
  }
}

@keyframes line-moving {
  0% {
    width: 15%;
  }
  100% {
    width: 70%;
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navbar .navbar-brand img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  margin: 0 5px;
}

.navbar .nav-link.active {
  font-weight: bold;
  color: #C1ED6E;
}

.navbar .butn {
  background-color: #BFEF7E;
  width: 150px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  text-align: center;
  display: block;
}

.navbar .butn:hover {
  background-color: #B0FFFF;
}

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

.navbar .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);
}

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

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

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

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

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  background-color: #333333;
  padding: 70px 0 0 0;
  position: relative;
}

footer .text-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

footer .text-content p {
  color: #ddd;
}

footer .content {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

footer .content h5 {
  color: #fff;
}

footer .content .links a {
  display: block;
  margin: 10px 0;
  color: #f1f1f1;
}

footer .content .links a:hover {
  color: #B0FFFF;
}

footer .content .social-links a {
  margin: 0 10px;
  font-size: 25px;
  color: #eee;
}

footer .content .social-links a:hover {
  color: #BFEF7E;
}

footer .content .contact-links a {
  direction: ltr;
  font-size: 20px;
  text-align: left;
  margin: 0 0;
}

footer .content .contact-links a i {
  margin: 0 5px;
}

footer .copyright {
  position: relative;
  z-index: 2;
  background-color: #222;
  text-align: center;
  padding: 15px 0;
}

footer .copyright p {
  color: #eee;
}

footer .shape {
  position: absolute;
  right: -2px;
  top: -25px;
  z-index: 1;
}

/***************************** Start Edit Global Style *****************************/
/*sec-heading*/
.sec-heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 20px;
}

.sec-heading::after {
  content: '';
  width: 100px;
  height: 8px;
  background-image: url(../images/headline.png);
  background-size: contain;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  right: 0;
  top: 40px;
}

/* Modal Standard Design */
.modal .modal-content {
  border-radius: 25px;
  padding: 25px;
}

.modal .close {
  text-align: left;
}

.modal .btns-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

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

.modal .butn {
  width: 150px;
  background-color: #BFEF7E;
  font-weight: 500;
  color: #fff;
  padding: .6rem 1.5rem;
  font-weight: bold;
}

.modal .butn:hover {
  background-color: #B0FFFF;
}

.modal .btn-secondary {
  padding: .6rem 1.5rem;
}

.modal .modal-footer {
  padding: 2rem 1rem 1rem 1rem;
}

.products-sec {
  background-color: #f8f8f8;
  padding: 70px 0;
}

/*prod-card*/
.prod-card {
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.prod-card .image-box {
  background-color: #EBEBEB;
  height: 225px;
  width: 100%;
  border-radius: 15px 15px 0 0;
  position: relative;
}

.prod-card .image-box .img {
  width: 90%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  position: relative;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.prod-card .image-box::after {
  content: '';
  width: 70%;
  height: 2px;
  background-color: #BFEF7E;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
}

.prod-card .card-body {
  background-color: #fff;
  border-radius: 0 0 15px 15px;
}

.prod-card .card-body .icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  margin: 0 5px;
}

.prod-card:hover {
  -webkit-box-shadow: 1px -1px #ccc, 2px -2px #ccc,  3px -3px #ccc, 4px -4px #ccc,  5px -5px #ccc, 6px -6px #ccc,  7px -7px #ccc, 8px -8px #ccc;
          box-shadow: 1px -1px #ccc, 2px -2px #ccc,  3px -3px #ccc, 4px -4px #ccc,  5px -5px #ccc, 6px -6px #ccc,  7px -7px #ccc, 8px -8px #ccc;
  -webkit-transform: translateX(-8px) translateY(8px);
          transform: translateX(-8px) translateY(8px);
}

.prod-card:hover .image-box::after {
  -webkit-animation: line-moving 1.5s linear infinite alternate both;
          animation: line-moving 1.5s linear infinite alternate both;
}

/*main_butn*/
.main_butn {
  padding: .5rem 2rem;
  border: 1px solid #96c15b;
  background-color: #96c15b;
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  font-weight: bold;
}

.main_butn:hover {
  border: 1px solid #9be9e9;
  background-color: #9be9e9;
  color: #fff !important;
}

.page-heading {
  padding: 25px 0 10px 0;
  background-color: #f5f5f5;
  position: relative;
}

.page-heading .breadcrumb {
  background-color: transparent;
  position: relative;
  z-index: 5;
}

.page-heading .breadcrumb a {
  color: #333;
  font-weight: bold;
}

.page-heading .breadcrumb .breadcrumb-item {
  padding: 0 10px;
  position: relative;
}

.page-heading .breadcrumb .breadcrumb-item.active {
  color: #a3c95d;
  font-weight: bold;
}

.page-heading .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  font-weight: bold;
  font-family: monospace;
  color: #333;
}

.in-flex {
  width: 100%;
  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;
}

/***************************** Start Edit Home Page *****************************/
header {
  padding: 50px 0;
  position: relative;
}

header::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #B0FFFF;
  opacity: .3;
  z-index: -1;
}

header .prod-img {
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .text-header h5 {
  font-weight: 500;
}

header .text-header .p {
  line-height: 1.8rem;
}

header .text-header .butn {
  background-color: #B0FFFF;
  width: 150px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  text-align: center;
  display: block;
}

header .text-header .butn i {
  margin: 0 3px;
}

header .text-header .butn:hover {
  background-color: #BFEF7E;
}

header .text-header .countdown-wrapper h6 {
  color: #E4233E;
}

header .text-header .countdown-wrapper .timer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  direction: ltr;
}

header .text-header .countdown-wrapper .timer .item {
  text-align: center;
  margin: 0 15px;
  font-weight: 500;
  font-size: 35px;
}

header .text-header .countdown-wrapper .timer .item span {
  display: -ms-grid;
  display: grid;
  font-size: 14px;
  font-weight: 500;
}

header .rect-r {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  height: 100%;
}

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

.about-sec .image-box {
  overflow: hidden;
  position: relative;
}

.about-sec .image-box::before {
  content: '';
  width: 100%;
  height: 95%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #BFEF7E;
  opacity: .3;
  z-index: -1;
  border-radius: 50%;
}

.about-sec .image-box .img {
  width: 315px;
  height: 315px;
  padding: 10px;
  border-radius: 55px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ccc;
  display: block;
  position: relative;
  z-index: 2;
}

.about-sec .image-box .img.img2 {
  position: relative;
  right: 150px;
  margin-top: -150px;
}

.about-sec .image-box .pattern {
  position: absolute;
  top: 20px;
  left: 45px;
  -webkit-animation: rotate-scale-up 5s linear infinite both;
          animation: rotate-scale-up 5s linear infinite both;
  z-index: 1;
}

.about-sec .features-wrapper {
  background-color: #fff;
  margin-top: -50px;
  border-radius: 25px;
  padding: 40px 15px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 25px 0px #ddd;
          box-shadow: 0px 0px 25px 0px #ddd;
}

.about-sec .features-wrapper .item {
  text-align: center;
}

.about-sec .features-wrapper .item .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 10px auto;
}

.about-sec .features-wrapper .item h6 {
  margin-bottom: 0;
}

.about-sec .features-wrapper .item.middle {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.about-sec .text-box {
  padding: 15px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-sec .text-box h3 {
  line-height: 2.7rem;
}

.about-sec .text-box h3 b {
  position: relative;
}

.about-sec .text-box h3 b::after {
  content: '';
  width: 130px;
  height: 10px;
  background-color: #B0FFFF;
  display: block;
  position: absolute;
  z-index: -1;
  right: -7px;
  top: 27px;
}

.about-sec .text-box h3 b.word2::after {
  background-color: #BFEF7E;
  width: 80px;
}

.about-sec .text-box .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.about-sec .text-box .nav .nav-link {
  border: 1px solid transparent;
  color: #c1c0c0;
  font-size: 14px;
}

.about-sec .text-box .nav .nav-link i {
  margin: 0 5px;
}

.about-sec .text-box .nav .nav-link.active {
  color: #BFEF7E;
  border-bottom: 1px solid #BFEF7E;
}

.about-sec .text-box .text {
  line-height: 1.7rem;
}

.about-sec .text-box .butn {
  background-color: #fff;
  width: 150px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  text-align: center;
  display: block;
  font-weight: bold;
}

.about-sec .text-box .butn i {
  margin: 0 3px;
}

.about-sec .text-box .butn:hover {
  background-color: #BFEF7E;
}

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

.features-sec .right .bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  position: absolute;
  -webkit-animation: rotate-scale-up2 5s linear alternate infinite both;
          animation: rotate-scale-up2 5s linear alternate infinite both;
}

.features-sec .right .item {
  padding: 25px 15px;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 25px;
  -webkit-box-shadow: 0 0 25px 0px #eee;
          box-shadow: 0 0 25px 0px #eee;
}

.features-sec .right .item .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.features-sec .right .item .numb {
  font-size: 35px;
  font-weight: 500;
  direction: ltr;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.features-sec .right .item:hover .icon {
  -webkit-filter: invert(98%) sepia(60%) saturate(5984%) hue-rotate(166deg) brightness(95%) contrast(104%);
          filter: invert(98%) sepia(60%) saturate(5984%) hue-rotate(166deg) brightness(95%) contrast(104%);
}

.features-sec .right .item:hover .numb {
  color: #BFEF7E;
}

.features-sec .text-box {
  padding: 20px 15px;
}

.features-sec .text-box .coloful {
  color: #BFEF7E;
}

.features-sec .text-box .coloful span {
  color: #B0FFFF;
}

.features-sec .text-box .sec-heading::after {
  top: 50px;
}

.features-sec .text-box .p {
  line-height: 2rem;
}

.features-sec .text-box .item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 15px;
}

.contact-sec {
  padding: 70px 0;
  position: relative;
  background-color: #F7F7F7;
  overflow: hidden;
}

.contact-sec form {
  position: relative;
  z-index: 5;
}

.contact-sec .form-group input {
  height: 50px;
}

.contact-sec .form-group .form-control {
  border: 1px solid #fff;
  border-radius: 25px;
  font-size: 13px;
}

.contact-sec .main-butn {
  background-color: #BFEF7E;
  border: 1px solid #BFEF7E;
  width: 150px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  text-align: center;
  display: block;
  font-weight: bold;
  padding: 0;
  margin: auto;
}

.contact-sec .main-butn:hover {
  background-color: #B0FFFF;
  border: 1px solid #B0FFFF;
}

.contact-sec .img-r {
  position: absolute;
  bottom: 0;
  left: 75px;
}

.newsletter-sec {
  padding: 50px 0;
}

.newsletter-sec input {
  height: 50px;
  border-radius: 25px;
  font-size: 13px;
}

.newsletter-sec .main-butn {
  background-color: #BFEF7E;
  border: 1px solid #BFEF7E;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  text-align: center;
  display: block;
  font-weight: bold;
  padding: 0;
  font-size: 13px;
  margin: auto;
}

.newsletter-sec .main-butn:hover {
  background-color: #B0FFFF;
  border: 1px solid #B0FFFF;
}

/***************************** Start Edit Register Page *****************************/
.register-pg {
  background-color: #f8f8f8;
  padding: 70px 0;
}

.register-pg .form-container {
  background-color: #fff;
  border-radius: 25px;
  padding: 35px;
  -webkit-box-shadow: 0px 0px 15px 0px #eee;
          box-shadow: 0px 0px 15px 0px #eee;
}

.register-pg .form-container .logo {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.register-pg .form-container .register-links {
  width: 100%;
  text-align: center;
}

.register-pg .form-container .register-links a {
  margin: 0 10px;
  border-bottom: 2px solid #ccc;
  padding: 8px 5px;
  color: #ccc;
  font-weight: bold;
}

.register-pg .form-container .register-links a.active {
  border-bottom: 2px solid #BFEF7E;
  color: #BFEF7E;
}

.register-pg .form-container .warning-msg {
  font-weight: bold;
  color: #f53b3b;
}

.register-pg .form-container .forget-link {
  font-size: 12px;
  color: #a5dfdf;
  font-weight: bold;
  float: left;
}

.register-pg .form-container .forget-link:hover {
  color: #BFEF7E;
}

.register-pg .form-container .membership-selection h6 {
  text-align: center;
  color: #777;
  font-size: 1.3rem;
  margin: 30px 0 25px 0px;
  font-weight: 600;
}

.register-pg .form-container .membership-selection .restoring-card {
  text-align: center;
  margin: 10px 0;
  position: relative;
}

.register-pg .form-container .membership-selection .restoring-card .restoring-icon {
  width: 75px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.register-pg .form-container .membership-selection .restoring-card h6 {
  color: #333;
  margin-top: .4rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.register-pg .form-container .membership-selection .restoring-card p {
  margin-bottom: 0;
  color: #777;
  font-weight: bold;
}

.register-pg .form-container .membership-selection .restoring-card .card-input-element {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}

.register-pg .form-container .membership-selection .restoring-card .card-input {
  border: 2px solid #ddd;
  border-radius: 15px;
  padding: 15px;
}

.register-pg .form-container .membership-selection .restoring-card label {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.register-pg .form-container .membership-selection .restoring-card .card-input-element:checked + .card-input {
  border: 2px solid #B0FFFF;
  -webkit-box-shadow: 0px 0px 25px 0px #ddd;
          box-shadow: 0px 0px 25px 0px #ddd;
}

.register-pg .form-container .membership-selection .restoring-card .card-input-element:checked + .card-input h6 {
  color: #BFEF7E;
}

.register-pg .form-container .code-form-group .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 0;
  text-align: center;
  width: 70px;
  margin: 0 5px;
}

.register-pg .form-container .code-form-group .form-control:focus {
  border-bottom: 1px solid #9be9e9;
}

.register-pg .form-container .code-form-group .text {
  text-align: center;
}

.register-pg .form-container .code-form-group .text .code-links a {
  margin: 0 5px;
  font-weight: bold;
}

.register-pg .form-container .code-form-group .text .code-links a:nth-of-type(1) {
  color: #BFEF7E;
}

.register-pg .form-container .code-form-group .text .code-links a:nth-of-type(2) {
  color: #95cbcb;
}

.register-pg .form-container .code-form-group .text .timer {
  font-weight: 600;
  font-size: 20px;
  color: #999;
}

.register-pg .form-container .submit-btn {
  width: 100%;
  height: 55px;
  border: 1px solid #BFEF7E;
  background-color: #BFEF7E;
  color: #333;
  border-radius: 5px;
  font-weight: bold;
}

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

.form-group {
  position: relative;
  margin-bottom: 1.6rem;
}

.form-group .form-control {
  border-radius: 5px;
  padding: 0px 35px;
  font-size: 14px;
}

.form-group .gender-control {
  padding: 27px 35px;
}

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

.form-group .icon {
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 5;
  color: #A5A5A5;
}

.form-group .togglePassword {
  color: #A5A5A5;
  position: absolute;
  left: 10px;
  top: 20px;
  cursor: pointer;
}

.form-group .floating-label {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 13px;
  color: #A5A5A5;
  background: #fff;
  position: absolute;
  z-index: 5;
  pointer-events: none;
  top: 20px;
  right: 30px;
  padding: 0 10px;
  font-size: 13px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.form-group .form-control:focus ~ .icon,
.form-group .form-control:not(:focus):valid ~ .icon {
  color: #9be9e9;
}

.form-group .form-control:focus ~ .floating-label,
.form-group .form-control:not(:focus):valid ~ .floating-label {
  top: -7px;
  bottom: 0px;
  font-size: 10px;
  opacity: 1;
  color: #9be9e9;
  font-weight: bold;
}

.form-group .custom-control {
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 10px;
}

.confirmation-modal .pass-img {
  width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
}

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

.profile-pg .inner {
  background-color: #fff;
  border-radius: 25px;
  padding: 35px;
  -webkit-box-shadow: 0px 0px 15px 0px #eee;
          box-shadow: 0px 0px 15px 0px #eee;
}

.profile-pg .inner .profile-menu .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #202020;
  margin: auto;
  position: relative;
}

.profile-pg .inner .profile-menu .image-container img {
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 7px solid #B0FFFF;
}

.profile-pg .inner .profile-menu .text {
  padding: 15px 0px;
}

.profile-pg .inner .profile-menu .text h5 {
  color: #707070;
}

.profile-pg .inner .profile-menu .text p {
  color: #A7A7A7;
  font-style: italic;
}

.profile-pg .inner .profile-menu .text .btn-dark {
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0.575rem 0.75rem 0.375rem;
  color: #fff;
}

.profile-pg .inner .profile-menu .text .btn-dark i {
  margin-right: 3px;
}

.profile-pg .inner .profile-menu .text .btn-dark:hover {
  color: #fff;
}

.profile-pg .inner .profile-inner {
  padding: 10px 30px;
}

.profile-pg .inner .profile-inner .nav-tabs {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.profile-pg .inner .profile-inner .nav-tabs .nav-link {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  color: #999;
  font-weight: 500;
  padding: 10px 40px;
}

.profile-pg .inner .profile-inner .nav-tabs .nav-link.active {
  color: #BFEF7E;
  border-bottom: 1px solid #BFEF7E;
}

.profile-pg .inner .profile-inner .tab-wrapper {
  margin-top: 30px;
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 15px;
}

.profile-pg .inner .profile-inner .info-container .text {
  margin-bottom: 20px;
}

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

.profile-pg .inner .profile-inner .info-container .text .content p {
  padding: .75rem 1.2rem;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-top: 10px;
  font-size: 15px;
  color: #333;
}

.profile-pg .inner .profile-inner .info-container .btn {
  width: 190px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  background-color: #BFEF7E;
  border-radius: 5px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  border: 1px solid #BFEF7E;
  margin: 10px auto;
  font-size: 14px;
  color: #202020;
  font-weight: 400;
}

.profile-pg .inner .profile-inner .info-container .btn:hover {
  background-color: #B0FFFF;
  border: 1px solid #B0FFFF;
}

.profile-pg .inner .profile-inner .orders-container .nav-tabs .nav-link {
  padding: 10px 25px;
  font-size: 14px;
}

.profile-pg .inner .profile-inner .orders-container .nav-tabs .nav-link.active {
  color: #83d1d1;
  border-bottom: 1px solid #83d1d1;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper {
  /* Make circles that indicate the steps of the form: */
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .tab {
  display: none;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .wizard-body {
  margin-top: 50px;
  padding: 0 2vw;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .wizard-body .wizard_title {
  font-weight: bold;
  color: #666;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .wizard-body .form-group .form-control {
  padding: 0 15px;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .wizard-body .form-group textarea {
  padding: 15px !important;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .wizard-body .form-group .floating-label {
  right: 10px;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .step.active {
  opacity: 1;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .step.finish {
  background-color: #04AA6D;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .buttons-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 2vw;
  width: 100%;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .buttons-wrapper .prev-btn {
  background-color: #777;
  border: 1px solid #777;
  color: #fff;
  width: 130px;
  height: 45px;
  border-radius: 5px;
  margin: 0 5px;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .buttons-wrapper .prev-btn:hover {
  background-color: #333;
  border: 1px solid #333;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .buttons-wrapper .submit-btn {
  border: 1px solid #96c15b;
  background-color: #96c15b;
  color: #fff;
  width: 150px;
  height: 45px;
  border-radius: 5px;
  margin: 0 5px;
}

.profile-pg .inner .profile-inner .orders-container .wizard-wrapper .buttons-wrapper .submit-btn:hover {
  background-color: #9be9e9;
  border: 1px solid #9be9e9;
}

.profile-pg .inner .profile-inner .notifications .noti-item {
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 15px 0px #ddfdfc;
          box-shadow: 0px 5px 15px 0px #ddfdfc;
  padding: 25px 20px;
  background-color: #F8F8F8;
  margin-bottom: 25px;
  position: relative;
}

.profile-pg .inner .profile-inner .notifications .noti-item .deleteButton {
  background-color: transparent;
  border: transparent;
  color: #ccc;
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 20px;
}

.profile-pg .inner .profile-inner .notifications .noti-item .deleteButton:hover {
  color: #ce3b3b;
}

.profile-pg .inner .profile-inner .notifications .noti-item .dateTime p {
  margin: 0 10px;
  display: inline-block;
}

.profile-pg .inner .profile-inner .notifications .noti-item .dateTime p i {
  color: #BFEF7E;
  margin: 0 5px;
}

.profile-pg .inner .profile-inner .notifications .noti-item .noti-body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.profile-pg .inner .profile-inner .notifications .noti-item .noti-body .icon {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.profile-pg .inner .profile-inner .notifications .noti-item .noti-body .text {
  margin: 0 20px;
}

.profile-pg .inner .profile-inner .notifications .noti-item .noti-body .text .title {
  font-weight: bold;
}

.profile-pg .inner .profile-inner .notifications .noti-item .noti-body .text .p {
  margin-bottom: 0;
}

.profile-pg .inner .profile-inner .notifications .noti-item.alertItem {
  background-color: #E5EFFA;
  -webkit-box-shadow: 0px 5px 15px 0px #e6eef7;
          box-shadow: 0px 5px 15px 0px #e6eef7;
}

.profile-pg .inner .profile-inner .notifications .noti-item.canceledItem {
  background-color: #FCEDEA;
  -webkit-box-shadow: 0px 5px 15px 0px #ffecec;
          box-shadow: 0px 5px 15px 0px #ffecec;
}

.profile-pg .inner .profile-inner .settings .radios-control {
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 15px 20px;
  position: relative;
  margin-bottom: 2.5rem;
}

.profile-pg .inner .profile-inner .settings .radios-control .custom-control {
  display: inline-block;
  top: 0;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  margin: 5px 10px 0 10px;
}

.profile-pg .inner .profile-inner .settings .radios-control .setting-label {
  font-size: 12px;
  position: absolute;
  top: -9px;
  right: 12px;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 9px;
}

.profile2 .info-container .addCategBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee;
  border: #eee;
  color: #666;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile2 .info-container .addCategBtn:hover {
  background-color: #BFEF7E;
  color: #fff;
}

.profile2 .info-container .wallet-box {
  background-color: #BFEF7E;
  background-image: -webkit-gradient(linear, left top, right top, from(#BFEF7E), to(#bbe086));
  background-image: linear-gradient(to right, #BFEF7E, #bbe086);
  border-radius: 25px;
  padding: 3vw 5vw;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile2 .info-container .wallet-box .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #fff;
  color: #95cbcb;
  text-align: center;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile2 .info-container .wallet-box .text {
  margin: 0 25px 0 25px !important;
}

.profile2 .info-container .wallet-box .text .p {
  color: #f6f6f6;
  font-size: 18px;
  margin-bottom: .6rem;
}

.profile2 .info-container .wallet-box .text .price {
  color: #fff;
}

.profile2 .info-container .butns-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.profile2 .info-container .butns-wrapper .butn {
  padding: .7rem 1.5rem;
  font-weight: 15px;
  font-weight: bold;
  color: #fff;
  margin: 0 3px;
  border-radius: 5px;
}

.profile2 .info-container .butns-wrapper .butn.chrageButn {
  background-color: #BFEF7E;
  border: 1px solid #BFEF7E;
}

.profile2 .info-container .butns-wrapper .butn.chrageButn:hover {
  background-color: #a3c95d;
}

.profile2 .info-container .butns-wrapper .butn.historyButn {
  background-color: #a5dfdf;
  border: 1px solid #a5dfdf;
}

.profile2 .info-container .butns-wrapper .butn.historyButn:hover {
  background-color: #89cccc;
}

.historyWalletModal .noti-item {
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 15px 0px #ddfdfc;
          box-shadow: 0px 5px 15px 0px #ddfdfc;
  padding: 25px 20px;
  background-color: #F8F8F8;
  margin-bottom: 25px;
  position: relative;
}

.historyWalletModal .noti-item .deleteButton {
  background-color: transparent;
  border: transparent;
  color: #ccc;
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 20px;
}

.historyWalletModal .noti-item .deleteButton:hover {
  color: #ce3b3b;
}

.historyWalletModal .noti-item .dateTime p {
  margin: 0 10px;
  display: inline-block;
}

.historyWalletModal .noti-item .dateTime p i {
  color: #BFEF7E;
  margin: 0 5px;
}

.historyWalletModal .noti-item .noti-body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.historyWalletModal .noti-item .noti-body .icon {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.historyWalletModal .noti-item .noti-body .text {
  margin: 0 20px;
}

.historyWalletModal .noti-item .noti-body .text .title {
  font-weight: bold;
}

.historyWalletModal .noti-item .noti-body .text .p {
  margin-bottom: 0;
}

.historyWalletModal .noti-item.alertItem {
  background-color: #E5EFFA;
  -webkit-box-shadow: 0px 5px 15px 0px #e6eef7;
          box-shadow: 0px 5px 15px 0px #e6eef7;
}

.historyWalletModal .noti-item.canceledItem {
  background-color: #FCEDEA;
  -webkit-box-shadow: 0px 5px 15px 0px #ffecec;
          box-shadow: 0px 5px 15px 0px #ffecec;
}

.sessionDetModal .butn {
  width: 170px;
}

/*responsive-table*/
.responsive-table {
  overflow-y: auto;
}

.responsive-table td, .responsive-table th {
  text-align: center;
  border: 1px solid #ddd;
  font-size: 14px;
}

.responsive-table .colspan_th {
  text-align: start;
  padding: .75rem 2rem;
  color: #666;
}

.responsive-table td {
  vertical-align: middle;
}

.responsive-table .more_butn {
  font-size: 12px;
  font-weight: bold;
  color: #999;
}

.responsive-table .more_butn:hover {
  color: #BFEF7E;
}

.countdown_wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.countdown_wrapper .content {
  margin: 0 4px;
  text-align: center;
}

.countdown_wrapper .content .num {
  font-weight: bold;
  color: #666;
}

.countdown_wrapper .content .word {
  display: block;
  color: #888;
}

/*nav-custom*/
.nav-custom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.nav-custom .nav-link {
  background-color: #eee;
  margin: 0 5px;
  font-weight: bold;
  color: #666;
  padding: .5rem 1.5rem;
  font-size: 14px;
}

.nav-custom .nav-link.active {
  color: #fff;
  background-color: #BFEF7E;
}

/*Info Modal*/
.info_modal .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #202020;
  margin: 0 auto 25px auto;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

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

.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: 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 #BFEF7E;
  position: absolute;
  right: 10px;
  bottom: 0px;
}

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

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

.checkout-pg .inner {
  border-radius: 25px;
  padding: 50px 35px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 5px 25px 0 #eee;
          box-shadow: 0 5px 25px 0 #eee;
}

.checkout-pg .inner .sec-heading::after {
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.checkout-pg .cards-radio-btn .radio-card {
  text-align: center;
  margin: 0 0 15px 0;
  position: relative;
  display: block;
  width: 100%;
}

.checkout-pg .cards-radio-btn .radio-card .pay-img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
}

.checkout-pg .cards-radio-btn .radio-card label {
  cursor: pointer;
  position: relative;
  display: block;
  margin: 0 5px;
}

.checkout-pg .cards-radio-btn .radio-card .card-input {
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 15px 25px;
  width: 100%;
  background: #f7f7f7;
  border-radius: 10px;
  display: block;
}

.checkout-pg .cards-radio-btn .radio-card .card-icon {
  width: 75px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
  opacity: .7;
}

.checkout-pg .cards-radio-btn .radio-card h6 {
  color: #777;
  margin-top: .4rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.checkout-pg .cards-radio-btn .radio-card p {
  margin-bottom: 0;
  color: #777;
  font-weight: bold;
}

.checkout-pg .cards-radio-btn .radio-card .card-input-element {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}

.checkout-pg .cards-radio-btn .radio-card .card-input-element:checked + .card-input {
  border: 2px solid #B0FFFF;
  -webkit-box-shadow: 0px 0px 25px 0px #eee;
          box-shadow: 0px 0px 25px 0px #eee;
}

.checkout-pg .cards-radio-btn .radio-card .card-input-element:checked + .card-input h6 {
  color: #C1ED6E;
}

.checkout-pg .submit-btn {
  width: 180px;
  height: 55px;
  border: 1px solid #BFEF7E;
  background-color: #BFEF7E;
  color: #333;
  border-radius: 5px;
  font-weight: bold;
  display: block;
}

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

.confirmation-modal .text-box {
  text-align: center;
}

.confirmation-modal .text-box .icon {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.confirmation-modal .text-box .icon.filter_green {
  color: #4fc980;
  -webkit-filter: invert(62%) sepia(55%) saturate(448%) hue-rotate(91deg) brightness(101%) contrast(82%);
          filter: invert(62%) sepia(55%) saturate(448%) hue-rotate(91deg) brightness(101%) contrast(82%);
}

.confirmation-modal .text-box .title {
  font-weight: bold;
  color: #013030;
  text-transform: capitalize;
}

.confirmation-modal .text-box .p {
  margin-bottom: 0;
  font-size: 16px;
  color: #666;
}

.confirmation-modal .text-box .p b {
  color: #C1ED6E;
}

/***************************** Start Edit order-det Page *****************************/
.order-det {
  padding: 70px 0;
}

.order-det .inner {
  border-radius: 25px;
  padding: 50px 35px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 5px 25px 0 #eee;
          box-shadow: 0 5px 25px 0 #eee;
}

.order-det .inner .det_header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.order-det .inner .det_body {
  padding: 3rem 1.25rem 0.25rem 1.25rem;
}

.order-det .inner .data-group {
  margin-bottom: 2rem;
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem 1.5rem;
}

.order-det .inner .data-group .label {
  font-size: 11px;
  position: absolute;
  right: 10px;
  top: -10px;
  font-weight: bold;
  background-color: #fff;
  color: #999;
  padding: 0 5px;
}

.order-det .inner .data-group .data {
  margin-bottom: 0;
  color: #000;
}

.order-det .inner .butns_wrapper {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.order-det .inner .butns_wrapper .butn {
  padding: .7rem 1.5rem;
  margin: 0 5px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
}

.order-det .inner .butns_wrapper .butn.cancel_butn {
  background-color: #777;
  border: 1px solid #777;
}

.order-det .inner .butns_wrapper .butn.cancel_butn:hover {
  background-color: #444;
}

.order-det .inner .butns_wrapper .butn.chat_butn {
  background-color: #BFEF7E;
  border: 1px solid #BFEF7E;
}

.order-det .inner .butns_wrapper .butn.chat_butn:hover {
  background-color: #a3c95d;
}

.order-det .inner .butns_wrapper .butn.session_butn {
  background-color: #a5dfdf;
  border: 1px solid #a5dfdf;
}

.order-det .inner .butns_wrapper .butn.session_butn:hover {
  background-color: #89cccc;
}

/***************************** Start Edit cancel-order Page *****************************/
.cancel-order {
  padding: 70px 0;
}

.cancel-order .inner {
  border-radius: 25px;
  padding: 50px 35px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 5px 25px 0 #eee;
          box-shadow: 0 5px 25px 0 #eee;
}

.cancel-order .inner .sec-heading::after {
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.cancel-order .inner .refund_wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.cancel-order .inner .refund_wrapper .custom-control {
  margin: 0 10px;
}

.cancel-order .inner .submit-btn {
  width: 180px;
  height: 55px;
  border: 1px solid #BFEF7E;
  background-color: #BFEF7E;
  color: #333;
  border-radius: 5px;
  font-weight: bold;
  display: block;
}

.cancel-order .inner .submit-btn:hover {
  border: 1px solid #B0FFFF;
  background-color: #B0FFFF;
}

/***************************** Start Edit session_det Page *****************************/
.session_det .inner .sec-heading::after {
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.session_det .inner .countdown_wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.session_det .inner .single-trader {
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 25px;
  padding: 25px;
  margin-bottom: 35px;
  background-color: rgba(249, 249, 249, 0.8);
}

.session_det .inner .single-trader .title {
  font-weight: bold;
  color: #666;
}

.session_det .inner .single-trader .butns_wrapper .butn {
  padding: .5rem 1.5rem;
  font-size: 14px;
}

.session_det .inner .single-trader .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.session_det .inner .single-trader .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #B0FFFF;
  background-color: #BFEF7E;
}

.session_approval .single-trader {
  background-color: #fff !important;
  padding: 25px 25px 0 25px !important;
}

.session_approval .checkout_summary {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
}

.session_approval .checkout_summary .item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.session_approval .checkout_summary .item .label, .session_approval .checkout_summary .item .price {
  color: #666;
}

.session_approval .checkout_summary .item.last {
  border-bottom: 1px solid transparent;
  padding: 15px 0 0 0;
}

.session_approval .checkout_summary .item.last .label, .session_approval .checkout_summary .item.last .price {
  color: #000;
  font-weight: bold;
}

.session_approval .inner .butns_wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 15px;
}

.payLater_modal .content {
  text-align: center;
}

.payLater_modal .content .icon {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 15px auto;
}

.payLater_modal .content .title {
  font-weight: bold;
}

.payLater_modal .content .text {
  font-size: 16px;
}

.payLater_modal .content .text .b1 {
  color: #a5dfdf;
}

.payLater_modal .content .text .b2 {
  color: #BFEF7E;
}
/*# sourceMappingURL=style.css.map */