@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
	padding: 0;
	margin: 0;
	font-family: 'Poppins', sans-serif;
}
img {max-width: 100%;}

/*header css start*/
header {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    width: 100%;
    padding: 40px 0;
}
header nav.navbar {
    margin: 0;
    padding: 0;
}
header nav.navbar a.navbar-brand {padding: 0;}
header nav.navbar ul li.nav-item a.nav-link {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 0 11px;
}
header nav.navbar ul li.nav-item:last-child a.nav-link {padding-right: 0;}
header nav.navbar ul li.nav-item a.nav-link:hover {color: #fff;}
header nav.navbar ul li.nav-item.active a.nav-link {font-weight: 600;color: #fff;}
header nav.navbar ul.navbar-nav {
    align-items: center;
}
header nav.navbar ul li.nav-item.profile_menu a.nav-link {
    padding: 5px;
    border: 2px solid #fff;
    display: inline-block;
    border-radius: 50px;
    margin-left: 22px;
}

/*banner css start*/
.banner_wrap {
	width: 100%;
	background: url(../images/banner_bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 0;
}
.banner_wrap .row {align-items: center;}
.banner_wrap .row img {width: 100%;}
.banner_wrap iframe {
    width: 100%;
    border-radius: 15px;
}
.banner_wrap h1 {
	font-style: normal;
	font-weight: 700;
	font-size: 64px;
	line-height: 88px;
	color: #FFFFFF;
	margin-bottom: 0;
}
.banner_wrap p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 27px;
	color: #fff;
	margin: 35px 0 40px;
}
.banner_wrap .btn.btn-primary {
    background: #FFFFFF;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    border-color: #fff;
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 40px;
    transition: .5s ease-in-out;
    box-shadow: none;
    outline: none;
}
.banner_wrap .btn.btn-primary:hover {
    background: transparent;
    color: #fff;
    transition: .5s ease-in-out;
}

/*club_wrap css*/
.club_wrap {
	width: 100%;
	padding: 50px 0;
	background-color: #f4f4f4;
}
.club_wrap h2 {
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 64px;
	color: #1D2B4F;
	text-align: center;
	margin-bottom: 0;
}
.club_wrap .row {
    margin-top: 130px;
}
.club_wrap .row .club_box {
    padding: 24px 33px;
    background: #fff;
    border-radius: 15px;
    transition: .5s ease-in-out;
}
.club_wrap .row .club_box:hover {
    box-shadow: 0px 0px 5px 0px rgb(29 43 79 / 54%);
    transition: .5s ease-in-out;
}
.club_wrap .row .club_box img {
    display: block;
    margin: -100px auto 0;
    height: 190px;
    width: 100%;
    object-fit: contain;
}
.club_wrap .row .club_box h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #1D2B4F;
    margin-bottom: 24px;
    margin-top: 20px;
}
.club_wrap .row .club_box p {
    color: #798196;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 0;
}

/*membership_wrap css*/
.membership_wrap {
	width: 100%;
	padding: 50px 0;
	background-color: #f4f4f4;
}
.membership_wrap .membership_box {
    padding: 80px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 16px;
    text-align: center;
}
.membership_wrap .membership_box h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    color: #fff;
    text-align: center;
}
.membership_wrap .membership_box p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #e6e6e6;
    text-align: center;
    margin: 30px 0;
}
.membership_wrap .membership_box .btn.btn-primary {
    background: #FFFFFF;
    border-radius: 8px;
    border-color: #fff;
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 50px;
    margin: 0 auto;
    display: inline-block;
    transition: .5s ease-in-out;
    box-shadow: none;
    outline: none;
}
.membership_wrap .membership_box .btn.btn-primary:hover {
	background: transparent;
    color: #fff;
    transition: .5s ease-in-out;
}

/*.testimonial_wrap css*/
.testimonial_wrap {
    width: 100%;
    padding: 50px 0 100px;
    background: #f4f4f4;
}
.testimonial_wrap h2 {
	font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    color: #1D2B4F;
    text-align: center;
    margin-bottom: 24px;
}
.testimonial_wrap p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 27px;
	color: #798196;
	text-align: center;
}
.testimonial_wrap .row {
    margin-top: 34px;
}
.testimonial_wrap .row .testimonial_box {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 16px;
    padding: 20px;
}
.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_img {
    display: inline-block;
    width: 30%;
    vertical-align: middle;
}
.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name {
    display: inline-block;
    width: 65%;
    margin-left: 10px;
    vertical-align: middle;
}
.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    text-transform: capitalize;
}
.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name .rate_testimonial {
    display: inline-block;
}
.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name i {
	font-size: 24px;
    color: #FF9F32;
    margin-right: 5px;
}
.testimonial_wrap .row .testimonial_box .testimonial_disc {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 16px;
}
.testimonial_wrap .row .testimonial_box .testimonial_disc p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-align: left;
    color: #1D2B4F;
    margin-bottom: 0;
}

/*footer css*/
footer {
	padding: 80px 0 30px;
	background-color: #FCDADC;
}
footer h4 {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	color: #D2202E;
	margin-bottom: 16px;
}
footer ul {
	padding: 0;
	margin: 0;
}
footer ul li {
	list-style-type: none;
	width: 100%;
	display: inline-block;
	margin-bottom: 16px;
}
footer ul li a {
	color: #808080;
	display: inline-block;
	width: 100%;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	text-decoration: none;
	transition: .5s ease-in-out;
}
footer ul li a:hover {
	color: #D2202E;
	text-decoration: none;
	transition: .5s ease-in-out;
}
footer a.app_link {
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
}
footer .copyright {
    margin-top: 80px;
}
footer .copyright ul li {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
    margin-right: 16px;
}
footer .copyright ul li a {color: #000;font-size: 20px;}
footer .copyright ul li a:hover {
	color: #D2202E;
	text-decoration: none;
	transition: .5s ease-in-out;
}
footer .copyright span {
    display: inline-block;
    width: 100%;
    text-align: right;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    font-family: 'Poppins';
}

/*splash page*/
.splash_wrap {
    padding: 50px 0;
    background-color: #f4f4f4;
}
.splash_wrap .splash_box {
    padding: 100px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 52px;
    background: url(../images/splash_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.splash_wrap .splash_box .splash_content {
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

.splash_wrap .splash_box .splash_content a {
    display: inline-block;
}

.splash_wrap .splash_box .splash_content .splash_option {
    margin-top: 50px;
    padding: 40px;
    background: rgba(252, 230, 231, 0.66);
    border-radius: 15px;
}

.splash_wrap .splash_box .splash_content .splash_option .btn.btn-primary {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 4px;
    border: none;
    width: 100%;
    padding: 10px;
    font-weight: 600;
    font-family: 'poppins';
    font-size: 20px;
    color: #fff;
}
.splash_wrap .splash_box .splash_content .splash_option span {
    margin: 15px 0;
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #D2202E;
    width: 100%;
}
.splash_wrap .splash_box .splash_content .splash_option span:before {
    width: 40%;
    content: "";
    display: inline-block;
    height: 1px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    vertical-align: middle;
    margin-right: 15px;
}
.splash_wrap .splash_box .splash_content .splash_option span:after {
    width: 40%;
    content: "";
    display: inline-block;
    height: 1px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    vertical-align: middle;
    margin-left: 15px;
}

.signup_wrap {padding: 50px 0;}
.signup_wrap .signup_box {
    padding: 60px;
    box-shadow: 0px 20px 60px rgb(0 0 0 / 12%);
    border-radius: 52px;
    background: url(../images/signup_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.signup_wrap .signup_box .row {
    align-items: center;
}
.signup_wrap .signup_box .signup_left h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #D2202E;
    text-align: left;
}
.signup_wrap .signup_box .signup_left p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #B2B2B2;
}
.signup_wrap .signup_box .signup_right {
    background: rgba(252, 218, 220, 0.66);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px 5px rgb(235 235 235 / 75%);
}
.signup_right .profile-pic {
  color: transparent;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.signup_right .profile-pic input {
  display: none;
}
.signup_right .profile-pic img {
    position: absolute;
    object-fit: cover;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    z-index: 0;
    left: 0;
}
.signup_right .profile-pic .-label {
    cursor: pointer;
    height: 80px;
    width: 80px;
    transition: .5s ease-in-out;
    left: 0;
    display: block;
    margin-left: 0;
    margin-right: auto;
}
.signup_right .profile-pic:hover .-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  color: #fafafa;
  transition: background-color 0.2s ease-in-out;
  border-radius: 100px;
  margin-bottom: 0;
  transition: .5s ease-in-out;
}
.signup_wrap .signup_box .signup_right form input {
    border: 1px solid #A1B0CC;
    box-sizing: border-box;
    border-radius: 4px;
    background: #fff;
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
}
.signup_wrap .signup_box .signup_right form .form-check {
    margin-bottom: 1rem;
}
.signup_wrap .signup_box .signup_right button.btn.btn-primary {
    margin-bottom: 1rem;
    width: 100%;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}
.signup_wrap .signup_box .signup_right p {
    text-align: center;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #6E7491;
}
.signup_wrap .signup_box .signup_right a {
    color: #D2202E;
    text-decoration: none;
}
.signup_wrap .signup_box .signup_right label.form-check-label {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #6E7491;
    vertical-align: middle;
}
.signup_wrap .signup_box .signup_right form .form-check input {
    height: auto;
    top: 3px;
}
.signup_wrap .signup_box .signup_right form .form-check input {
    height: auto;
}
.signup_right .profile-pic span {
  display: inline-flex;
  padding: 0.2em;
  height: 2em;
}
.signup_left img {
    display: block;
    margin: 0 auto;
}
.signup_wrap .signup_box .signup_right h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #D2202E;
    margin-bottom: 50px;
}
.datepicker td, .datepicker th {padding: 10px;width: auto;height: auto;}
.datepicker td.active.day {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%) !important;
}
.datepicker td span {
    padding: 10px;
    height: auto !important;
}
.datepicker td span.year.active {
	background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%) !important;
}
.datepicker td span.month.active {
	background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%) !important;
}
.signup_wrap .signup_box .signup_right form input.opt_feild {
    text-align: center;
    letter-spacing: 10px;
}
.signup_wrap .signup_box .signup_right form select {
    border: 1px solid #A1B0CC;
    box-sizing: border-box;
    border-radius: 4px;
    background: #fff;
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
}
.signup_wrap .signup_box .signup_right h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}
.signup_wrap .signup_box .signup_right h3 span {
    color: #DF2228;
}
.signup_wrap .signup_box .signup_right .or_set {
    margin: 0 0;
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #D2202E;
    width: 100%;
    text-align: center;
}
.signup_wrap .signup_box .signup_right .or_set:before {
    width: 40%;
    content: "";
    display: inline-block;
    height: 1px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    vertical-align: middle;
    margin-right: 15px;
}
.signup_wrap .signup_box .signup_right .or_set:after {
    width: 40%;
    content: "";
    display: inline-block;
    height: 1px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    vertical-align: middle;
    margin-left: 15px;
}
.signup_wrap .signup_box .signup_right button.google_btn {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #000;
    border: 1px solid #d2202e;
}
.signup_wrap .signup_box .signup_right button.google_btn img {
    vertical-align: middle;
    margin-right: 10px;
    margin-top: -1px;
}
.signup_wrap .signup_box .signup_right form .forgot_link {
    margin-bottom: 1rem;
    text-align: right;
}
.signup_wrap .signup_box .signup_right form .forgot_link a {
    color: #6E7491;
    font-weight: 500;
}
.signup_wrap .signup_box .signup_right form .forgot_link a:hover {
    color: #D2202E;
}
.signup_wrap .signup_box .signup_right form h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 30px;
    color: #DF2228;
}
.signup_wrap .signup_box .signup_right img.sent_icon {
    margin: 0 auto 15px;
    display: block;
}
.signup_wrap .signup_box .signup_right h2.email_sent_title {margin-bottom: 15px;}

.product_banner {
    width: 100%;
    padding: 50px 0;
    background: #f4f4f4;
}
.carousel-control-prev {
    width: auto;
    left: -3%;
    opacity: 1;
}
.carousel-control-next {
    right: -3%;
    width: auto;
    opacity: 1;
}
.product_banner .product_content {
    width: 100%;
    background: url(../images/product_banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    border-radius: 20px;
}
.product_banner .product_content .slider_right_img {
    text-align: center;
}
.product_banner .product_content .slider_right_img img {
    max-height: 300px;
    width: auto;
}
.product_banner .product_content .row {
    align-items: center;
}
.product_banner .product_content h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 15px;
}
.product_banner .product_content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}
.popular_product {
    width: 100%;
    padding: 50px 0;
    background: #f4f4f4;
}
.popular_product .popular_title {
    margin-bottom: 30px;
}
.popular_product .popular_title .row {align-items: center;margin-bottom: 30px;}
.popular_product .popular_title h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #000;
}
.popular_product .popular_title a {
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #D2202E;
    width: 100%;
    text-align: right;
}
.popular_product .popular_list {
    padding-top: 20px;
}
.popular_product .popular_list .popular_list_box {
    background: url(../images/product_box.png);    
    border-radius: 20px;
    padding: 30px 0 0 0;
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100%;
    text-align: center;
}
.popular_product .popular_list .popular_list_box img {
    margin: 20px auto 0;
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.popular_product .popular_list .popular_list_box h2 {
    text-align: center;
    margin: 15px 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #000;
}
.popular_product .popular_list .popular_list_box h2 a {
    color: #000;
    text-decoration: none;
}
.popular_product .popular_list .popular_list_box h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0 10px 20px;
}
.popular_product .popular_list .popular_list_box h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #D2202E;
    text-align: center;
    margin: 0 10px 10px;
}
.popular_product .popular_list .popular_list_box a.btn {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    color: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-block;
    margin: 0 15px 10px;
    text-decoration: none;
}
.popular_product .popular_list .popular_list_box h4 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin: 0 10px 15px;
}
.popular_product .popular_list .popular_list_box span {
    background: #FCD76C;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 15px;
}

.product_detail_wrap {
    width: 100%;
    padding: 50px 0;
    background: #f4f4f4;
}
.detail_left_main .slider-for .slick-slide {
    height: auto;
    padding: 20px;
}
.detail_left_main .slider-for img {
    width: 80%;
    margin: 0 auto;
    box-shadow: 0px 0px 20px 15px rgb(219 219 219 / 75%);
    border-radius: 50%;
    padding: 20px;
    background-color: white;
}
.detail_left_main .slider-for ul.slick-dots li button:before {
    border-radius: 50px;
    content: "";
    background: transparent;
    border: 2px solid #fff;
    opacity: 1;
}
.detail_left_main .slider-nav button.slick-arrow:before {
    color: #d2202e;
    font-size: 20px;
    opacity: 1;
}
.detail_left_main .slider-nav button.slick-next:before {
    content: "\f061";
    font-family: 'FontAwesome';
}
.detail_left_main .slider-nav button.slick-prev:before {
    content: "\f060";
    font-family: 'FontAwesome';
}
.detail_left_main .slider-nav button.slick-next {
    right: 0;
}
.detail_left_main .slider-nav button.slick-prev {
    left: 0;
}
.detail_left_main .slider-nav .slick-list {
    width: 90%;
    margin: 0 auto;
}
.detail_left_main .slider-nav .slick-slide img {
    width: 100%;
}
.detail_left_main .slider-nav .slick-slide {
    margin: 0 10px;
}
.detail_left_main .slider-nav .slick-slide img {
    padding: 5px;
    border: 1px solid #C8C8C8;
    border-radius: 10px;
}
.detail_left_main .detail_left_cont {
    margin-top: 20px;
}
.detail_left_cont h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #000;
}
.detail_left_cont h4 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}
.detail_left_cont p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.5);
}
.product_detail_wrap .product_detail_cont {
    padding: 50px;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 52px;
    position: relative;
    overflow: hidden;
}
.product_detail_wrap .detail_left_main {
    width: 80%;
}
.product_detail_wrap .product_detail_cont span.new_tag {
    position: absolute;
    top: 0px;
    left: 0;
    transform: translate(-0%);
    background: #FCD76C;
    padding: 12px 50px;
    display: inline-block;
    color: #D2202E;
    font-weight: 600;
    font-size: 20px;
}
#pay_popup .payment_done {text-align: center;}
#pay_popup .payment_done img {
    width: 100px;
}
#pay_popup .payment_done h4 {
    color: #D2202E;
    font-size: 25px;
    font-weight: 600;
    margin: 20px 0;
}
#pay_popup .payment_done a.btn.btn-primary {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 50px;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    display: inline-block;
    box-shadow: none;
    outline: none;
}
.detail_right_cont ul {padding: 0;margin: 0;display: inline-block;}
.detail_right_cont ul li {
    display: inline-block; 
    width: auto;   
}
.detail_right_cont ul li a {
    border: 1px solid #A1B0CC;
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    color: #2D2D2D;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    transition: .5s ease-in-out;
}
.detail_right_cont ul li a:hover {
    background-color: #39B44A;
    color: #fff;
    transition: .5s ease-in-out;
    border-color: #A1B0CC;
}
.detail_right_cont ul li a i {
    margin-right: 5px;
}
.detail_right_cont ul {
    padding: 0;
    margin: 15px 0 0;
    display: inline-block;
}
.detail_right_cont h2 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}
.detail_right_cont .discount_code {
    margin-top: 30px;
}
.detail_right_cont .discount_code .form-group input {
    border: 1px solid #A1B0CC;
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
}
.detail_right_cont .card_add {
    margin-top: 30px;
}
.detail_right_cont .card_add .form-group input {
    border: 1px solid #A1B0CC;
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
}
.detail_right_cont form button {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 20px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    padding: 15px 65px;
    display: inline-block;
    border: none;
    box-shadow: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.search_wrap {
    background: #f4f4f4;
}
.search_wrap .search_wrap_left {
    border-right: 1px solid #CFCFCF;
}
.search_wrap .search_wrap_right {
    border-left: 1px solid #CFCFCF;
}
.search_left_filter .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.search_left_filter .form-group label {
    position: relative;
    cursor: pointer;
}
.search_left_filter label {
    color: #808080;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}
.search_left_filter .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #C4C4C4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px;
}
.search_left_filter .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);    
}
.search_left_filter .form-group input:checked + label:before {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
}
.search_left_filter h4 {
    padding: 18px 0 0;
    color: #D2202E;
}
.search_left_filter form {
    margin-top: 20px;
}

.search_left_filter form h5 {
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
    padding-top: 20px;
    border-top: 1px solid #CFCFCF;
}
.search_left_filter form button {
    padding: 10px 65px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border: none;
    color: #fff;
    border-radius: 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
}
.search_left_filter form .filter_button {
    border-top: 1px solid #CFCFCF;
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.search_middle {padding: 30px 0;}
.search_middle .form-group {position: relative;}
.search_middle .form-group input {
    background: #FCDADC;
    box-shadow: 0px 20px 60px rgba(186, 186, 186, 0.12);
    border-radius: 12px;
    border: none;
    height: 60px;
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    padding-left: 50px;
}
.search_middle .form-group input::placeholder {
    color: #D2202E;
}
.search_middle .form-group i.fa.fa-search {
    position: absolute;
    top: 22px;
    left: 15px;
    color: #D2202E;
}
.search_middle form h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #CFCFCF;
}
.search_middle form h3 span {
    color: #D2202E;
}
.search_popular_title {
    width: 100%;
    margin: 20px 0;
}
.search_popular_title h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #000;
}
.search_popular_title a {
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #D2202E;
    width: 100%;
    text-align: right;
}
.search_popular_title .row {
    align-items: center;
    margin-bottom: 30px;
}
.search_popular_list .popular_search_box {
    background: url(../images/product_box.png);
    border-radius: 20px;
    padding: 30px 0 0 0;
    position: relative;
    width: 80%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100%;
    text-align: center;
    margin: 0 auto;
}
.search_popular_list .popular_search_box img {
    margin: 20px auto 0;
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.search_popular_list .popular_search_box h2 {
    text-align: center;
    margin: 15px 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #000;
}
.search_popular_list .popular_search_box h2 a {
    color: #000;
    text-decoration: none;
}
.search_popular_list .popular_search_box h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0 10px 20px;
}
.search_popular_list .popular_search_box h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #D2202E;
    text-align: center;
    margin: 0 10px 10px;
}
.search_popular_list .popular_search_box a.btn {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    color: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-block;
    margin: 0 15px 10px;
    text-decoration: none;
}
.search_popular_list .popular_search_box h4 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin: 0 10px 15px;
}
.search_popular_list .popular_search_box span {
    background: #FCD76C;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 15px;
}
.search_popular_product {
    padding-bottom: 30px;
    border-bottom: 1px solid #CFCFCF;
}
.search_popular_product:last-child {border-bottom: none;}

.active_wrap {
    width: 100%;
    padding: 50px 0;
    background: #f4f4f4;
}
.active_wrap .active_tab_btn {
    text-align: center;
    display: inline-block;
    width: 100%;
}
.active_wrap .active_tab_btn ul.nav.nav-tabs {
    width: auto;
    border: none;
    text-align: center;
    display: inline-block;
    border: 1px solid #C8C8C8;
    border-radius: 4px;
}
.active_wrap .active_tab_btn ul.nav.nav-tabs li.nav-item {display: inline-block;}
.active_wrap .active_tab_btn ul.nav.nav-tabs a.nav-link {
    border: none;
    color: #666666;
    padding: 10px 30px;
}
.active_wrap .active_tab_btn ul.nav.nav-tabs a.nav-link.active {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    color: #fff;
    border-radius: 4px;
}
.active_wrap .tab-content {
    margin-top: 50px;
}
.active_wrap .tab-pane .popular_list .popular_list_box {
    background: url(../images/product_box.png);
    border-radius: 20px;
    padding: 30px 0 0 0;
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100%;
    text-align: center;
}
.active_wrap .tab-pane .popular_list .popular_list_box img {
    margin: 20px auto 0;
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.active_wrap .tab-pane .popular_list .popular_list_box h2 {
    text-align: center;
    margin: 15px 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #000;
}
.active_wrap .tab-pane .popular_list .popular_list_box h2 a {
    color: #000;
    text-decoration: none;
}
.active_wrap .tab-pane .popular_list .popular_list_box h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0 10px 20px;
}
.active_wrap .tab-pane .popular_list .popular_list_box h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #D2202E;
    text-align: center;
    margin: 0 10px 10px;
}
.active_wrap .tab-pane .popular_list .popular_list_box h4 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin: 0 10px 15px;
}
.active_wrap .tab-pane .popular_list .popular_list_box h4 span {
    background: transparent;
    padding: 0;
    font-size: 100%;
    color: #808080;
    margin: 0;
    border-radius: 0;
}
.active_wrap .tab-pane .popular_list .popular_list_box a.btn {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    color: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-block;
    margin: 0 15px 10px;
    text-decoration: none;
}
.active_wrap .tab-pane .popular_list .popular_list_box span {
    background: #FCD76C;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 15px;
}
.active_wrap .tab-pane .notify_box .left_notify_cont img {
    width: 100%;
}
.active_wrap .tab-pane .notify_box .middle_notify_cont h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #D2202E;
}
.active_wrap .tab-pane .notify_box .middle_notify_cont p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #505050;
}
.active_wrap .tab-pane .notify_box .right_notify_cont span {
    background: #FCD76C;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 15px;
}
.active_wrap .tab-pane .notify_box .right_notify_cont h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
}
.active_wrap .tab-pane .notify_box.row {
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 15px;
}
.active_wrap .tab-pane .delet_notify {
    text-align: center;
}
.active_wrap .tab-pane .delet_notify a {
    display: inline-block;
}
.active_wrap .tab-pane .delet_notify a i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #D2202E;
    border-radius: 50px;
    color: #fff;
    font-size: 30px;
}
.active_wrap #notify .row {
    align-items: center;
}
.norify_main_row {margin-bottom: 20px;}

.subscribe_wrap {
    padding: 50px 0;
    background: #f4f4f4;
    width: 100%;
}
.subscribe_wrap .left_subscribe {
    text-align: center;
    border-right: 1px solid #666666;
    height: 100%;
}
.subscribe_wrap .left_subscribe h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
    margin-top: 30px;
}
.subscribe_wrap .right_subscribe h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #D2202E;
    padding-bottom: 50px;
}
.subscribe_wrap .left_subscribe h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: rgba(0, 0, 0, 0.5);
}
.subscribe_wrap .left_subscribe h5 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}
.subscribe_wrap .right_subscribe h4 {
    padding-bottom: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #D2202E;
}
.subscribe_wrap .right_subscribe h4 span {
    color: rgba(0, 0, 0, 0.5);
}
.subscribe_wrap .right_subscribe h5 {
    background: #34A853;
    border-radius: 4px;
    width: auto;
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}
.subscribe_wrap .subscribe_btn {
    padding-top: 40px;
    text-align: center;
}
.subscribe_wrap .subscribe_btn a.btn {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 4px;
    color: #fff;
    padding: 10px 30px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}
.subscribe_wrap .subscribe_box {
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 52px;
    padding: 50px;
}
.right_subscribe form label {
    color: #666666;
}
.right_subscribe form input.form-control {
    height: 50px;
    box-shadow: none;
    outline: none;
    border: 1px solid #666666;
    border-radius: 4px;
    width: 100%;
    color: #000;
}
.right_subscribe form .input-group-addon {
    position: absolute;
    top: 15px;
    right: 15px;
}
.right_subscribe form .tab-pane .form-check {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    border: 1px solid #B2B2B2;
    border-radius: 5px;
    width: 30%;
    margin-bottom: 15px;
    text-align: center;
}
.right_subscribe form .tab-pane .form-check input {
    position: relative;
    margin: 0 5px 0 0;
    vertical-align: middle;
    height: 18px;
    width: 18px;
    cursor: pointer;
}
.right_subscribe form .tab-pane .form-check label.form-check-label {
    line-height: normal;
    vertical-align: middle;
    cursor: pointer;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: #B2B2B2;
}
.right_subscribe form .tab-content {
    margin-top: 20px;
}
.right_subscribe ul.nav.nav-tabs {
    text-align: center;
    border: none;
}

.right_subscribe ul.nav.nav-tabs li.nav-item {
    width: 50%;
}

.right_subscribe ul.nav.nav-tabs a.nav-link {
    border: none;
    color: #B2B2B2;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}

.right_subscribe ul.nav.nav-tabs a.nav-link.active {
    border-bottom: 2px solid #D2202E;
    color: #000;
}
.calendar .datepicker {
        width: 100%;
}
.calendar .datepicker table {
    width: 100%;
}
.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%) !important;
    color: #fff;
}
.upcoming_sec #calendar {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #CBD4E6;
    border-radius: 10px;
    background-color: #fff;
}
.upcoming_sec .right_upcoming h2 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 30px;
}
.upcoming_sec .right_upcoming .upcoming_box {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}
.upcoming_sec .right_upcoming .upcoming_box ul {
    padding: 0;
    margin: 0;
}
.upcoming_sec .right_upcoming .upcoming_box ul li {
    list-style-type: none;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 20px;
}
.upcoming_sec .right_upcoming .upcoming_box ul li:last-child {margin-bottom: 0;}
.past_service_box {
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}
.past_service_box ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    width: 90%;
}
.past_service_box ul li {
    list-style-type: none;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000;
    margin-bottom: 10px;
}
.past_service_box ul li:last-child {margin-bottom: 0;}
.past_service_box ul li span {
    color: #D2202E;
}
.past_service_box a.next_past_service {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}
.past_service_box a.next_past_service i {
    color: #000;
    font-size: 18px;
}
.right_service_review ul {
    padding: 20px;
    margin: 0;
    border: 1px solid #D2202E;
    border-radius: 10px;
}
.right_service_review ul li {
    list-style-type: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    padding-bottom: 15px;
    border-bottom: 1px solid #D2202E;
    margin-bottom: 15px;
}

.right_service_review ul li:last-child {padding-bottom: 0;border: none;margin-bottom: 0;}
.right_service_review ul li h4 {
    margin-bottom: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000;
}
.right_service_review ul li h4 span {
    color: #d2202e;
}
.right_service_review ul.coach_service {
    margin: 15px 0;
}
.right_service_review ul.coach_service li {border-bottom: none;padding: 0;}
.right_service_review ul.coach_service li .trainer_service .trainer_img {
    display: inline-block;
    width: 20%;
}
.right_service_review ul.coach_service li .trainer_service .trainer_img img {width: 100%;}
.right_service_review ul.coach_service li .trainer_service .trainer_name {
    width: 75%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}
.right_service_review ul.coach_service li .trainer_service .trainer_name h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000;
}
.right_service_review ul.coach_service li .trainer_service .trainer_name h5 {
    color: #545454;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
}
.right_service_review ul.coach_service li .trainer_service {
    padding: 10px;
    border: 1px solid #000;
    border-radius: 15px;
}
.right_service_review ul.coach_service li button {
    background: #FEDC00;
    border: 1px solid #FEDC00;
    border-radius: 10px;
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    padding: 15px;
    vertical-align: middle;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    text-align: left;
    cursor: pointer;
}
.right_service_review ul.coach_service li button i {
    vertical-align: middle;
    margin-left: 20px;
    float: right;
}
.right_service_review ul li a {
    display: inline-block;
    margin-right: 3px;
}
.right_service_review ul li a i {
    font-size: 20px;
    color: #F5BE18;
}
.right_service_review ul li a i.unselect {
    color: #E0E0E0;    
}
.right_service_review ul.performance_service li {border: none;padding-bottom: 0;}
#rating_popup .trainer_profile .left_trainer_profile {
    display: inline-block;
    width: 75%;
    margin-right: 10px;
    vertical-align: middle;
}
#rating_popup .trainer_profile .right_trainer_profile {
    width: 20%;
    display: inline-block;
    vertical-align: middle;
}
#rating_popup .trainer_profile .left_trainer_profile h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000;
    margin-bottom: 0;
}
#rating_popup .trainer_profile .left_trainer_profile h4 {
    margin-top: 6px;
    color: #B2B2B2;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
}
#rating_popup .trainer_profile {
    padding-bottom: 20px;
    border-bottom: 1px solid #666666;
}
#rating_popup .trainer_rating a {
    display: inline-block;
}
#rating_popup .trainer_rating a i {
    font-size: 20px;
    color: #F5BE18;
}
#rating_popup .trainer_rating a i.unselect {
    color: #E0E0E0;    
}
#rating_popup .trainer_rating {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}
#rating_popup form textarea#trainner_comments {
    background: #F1F1F1;
    border: none;
    color: #000;
    font-size: 16px;
    box-shadow: none;
    outline: none;
}
#rating_popup .modal-footer button {
    width: 100%;
    display: block;
    border-radius: 0;
    padding: 15px 10px;
    margin: 0 0 15px;
}
#rating_popup .modal-footer button.btn.btn-primary {
    background: #F5BE18;
    border-color: #F5BE18;
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
}
#rating_popup .modal-footer button.btn.btn-secondary {
    background: #D2202E;
    border-color: #D2202E;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
}
#rating_popup .modal-footer {
    display: inline-block;
    width: 100%;
    border: none;
    padding-top: 0;
}
#rating_popup .modal-dialog .modal-content {
    border-radius: 20px;
}
.detail_right_cont ul li .form-check {
    border: 1px solid #A1B0CC;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    margin-right: 2px;
    text-align: center;
    transition: .5s ease-in-out;
}
.detail_right_cont ul li .form-check:hover {
    background-color: #39B44A;
    color: #fff;
    transition: .5s ease-in-out;
    border-color: #A1B0CC;
}
.detail_right_cont ul li .form-check input {
    position: relative;
    margin: 0;
    margin-right: 5px;
    vertical-align: middle;
    cursor: pointer;
}
.detail_right_cont ul li .form-check label {
    vertical-align: middle;
    cursor: pointer;
}
.detail_right_cont ul li .form-check:hover label {color: #fff;}
.product_detail_cont .detail_right_cont .card_add {
    display: none;
}

.blog_main_list {
    padding: 50px 0;
    background: #f4f4f4;
    width: 100%;
}
.blog_main_list .blog_list_box {
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}
.blog_main_list .blog_list_box .left_blog_box {
    display: inline-block;
    width: 35%;
    margin-right: 10px;
    vertical-align: top;
}
.blog_main_list .blog_list_box .left_blog_box img {width: 100%;}
.blog_main_list .blog_list_box .right_blog_box {
    display: inline-block;
    width: 60%;
    vertical-align: top;
}
.blog_main_list .blog_list_box .right_blog_box h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}
.blog_main_list .blog_list_box .right_blog_box p {
    color: #313131;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}
.blog_main_list .blog_list_box .right_blog_box ul {
    padding: 0;
    margin: 0;
}
.blog_main_list .blog_list_box .right_blog_box ul li {
    list-style-type: none;
    display: inline-block;
    width: 48%;
}
.blog_main_list .blog_list_box .right_blog_box ul li.more_link {text-align: right;}
.blog_main_list .blog_list_box .right_blog_box ul li h4 {
    color: #313131;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}
.blog_main_list .blog_list_box .right_blog_box ul li a {
    color: #FE4B4B;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-decoration: none;
}

.blog_banner {
    width: 100%;
    padding: 50px 0;
    background: #f4f4f4;
}
.blog_banner .blog_content {
    width: 100%;
    background: url(../images/blog_banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 50px;
    border-radius: 20px;
}
.blog_banner .blog_content h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 15px;
}
.blog_banner .blog_content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}
.blog_banner .blog_content .row {align-items: center;}

.blog_detail_wrap {
    width: 100%;
    padding: 50px 0;
}
.blog_detail_wrap .row {
    align-items: center;
    margin-bottom: 50px;
}
.blog_detail_wrap .left_blog_detail img {
    width: 100%;
    border-radius: 50px;
}
.blog_detail_wrap .right_blog_detail h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
}
.blog_detail_wrap .right_blog_detail p {
    color: #313131;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}
.blog_detail_wrap .full_blog_detail p {
    color: #313131;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}
.blog_detail_wrap .full_blog_detail {padding-top: 30px;}


/*profile css start*/

.profile_wrap {
    padding: 50px 0;
    width: 100%;
    background: #f4f4f4;
}
.profile_wrap .profile_box {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    width: 70%;
    margin: 0 auto;
}
.profile_wrap .profile_box .main_profile_bg {
    background: url(../images/profile_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
}
.profile_wrap .profile_box .main_profile_bg ul {
    padding: 0;
    margin: 0;
    text-align: center;
}
.profile_wrap .profile_box .main_profile_bg ul li {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin-right: 20px;
}
.profile_wrap .profile_box .main_profile_bg ul li:last-child {margin-right: 0;}
.profile_wrap .profile_box .main_profile_bg ul li img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50px;
}
.profile_wrap .profile_box .main_profile_bg ul li h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 5px;
}
.profile_wrap .profile_box .main_profile_bg ul li p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
}
.profile_wrap .profile_box .main_profile_bg ul li span.balance_profile {
    background: #FEDC00;
    border-radius: 4px;
    padding: 5px;
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.profile_wrap .profile_box .main_profile_bg button {
    margin: 30px auto 0;
    display: block;
    padding: 10px 30px;
    background: transparent;
    border: 1px solid #fff;
    box-shadow: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}
.profile_wrap .profile_box .profile_option {
    padding: 50px;
}
.profile_wrap .profile_box .profile_option ul {padding: 0;margin: 0;}
.profile_wrap .profile_box .profile_option ul li {
    list-style-type: none;margin-bottom: 15px;
}
.profile_wrap .profile_box .profile_option ul li a {
    width: 100%;
    display: inline-block;
    padding: 10px;
    border: 1px solid #B2B2B2;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
}
.profile_wrap .profile_box .profile_option ul li a i {
    display: inline-block;
    float: right;
    vertical-align: middle;
    margin-top: 5px;
}
.profile_wrap .profile_box .profile_option button {
    margin: 20px auto 0;
    display: block;
    padding: 15px 50px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border: none;
    color: #fff;
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    cursor: pointer;
    box-shadow: none;
    outline: none;
}

.pre_coach_wrap {
    padding: 50px 0;
}
.pre_coach_wrap .pre_coach_box {
    background: url(../images/product_banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.pre_coach_wrap .pre_coach_box a.change_coach {
    display: block;
    width: auto;
    text-align: right;
    color: #fff;
    vertical-align: middle;
    font-size: 18px;
    text-decoration: none;
}
.pre_coach_wrap .pre_coach_box a.change_coach i {margin-left: 5px;font-size: 16px;vertical-align: middle;}
.pre_coach_wrap .pre_coach_box h2 {
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 0;
}
.pre_coach_wrap .pre_coach_box ul {
    padding: 0;
    margin: 10px 0 0;
}
.pre_coach_wrap .pre_coach_box ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.pre_coach_wrap .pre_coach_box ul li:last-child {margin-right: 0;}
.pre_coach_wrap .pre_coach_box ul li img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.pre_coach_wrap .pre_coach_box ul li h3 {
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 5px;
}
.pre_coach_wrap .pre_coach_box ul li h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 0;
}


/*coach change css */
.coach_change_wrap {
    padding: 50px 0;
}
.coach_change_wrap .coach_change_box .selector {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
}
.coach_change_wrap .coach_change_box .selecotr-item {
    position: relative;
    height: 100%;
    display: inline-block;
    width: 30%;
    margin-right: 10px;
    margin-bottom: 10px;
}
.coach_change_wrap .coach_change_box .selector-item_radio{
    appearance:none;
    display:none;
}
.coach_change_wrap .coach_change_box .selector-item_label {
    position: relative;
    width: 100%;
    text-align: center;
    color: #000;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgb(0 0 0 / 12%);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    border: 2px solid #fff;
}
.coach_change_wrap .coach_change_box .selector-item_radio:checked + .selector-item_label {
    color: #000;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    border: 2px solid #D2202E;
}
.coach_change_wrap .coach_change_box .selector-item_label .coach_inner img {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.coach_change_wrap .coach_change_box .selector-item_label .coach_inner h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin: 10px 0;
}
.coach_change_wrap .coach_change_box .selector-item_label .coach_inner h4 {
    color: #B2B2B2;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
}

/*comment css*/

.chat_header {
    padding: 20px 0;
}
.chat_header ul {
    padding: 0;
    margin: 0;
}
.chat_header ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px
}
.chat_header ul li:last-child {margin-right: 0;}
.chat_header ul li img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.chat_header ul li h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
    text-align: left;
}
.chat_header ul li h4 {
    color: #B2B2B2;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    text-align: left;
}

.chat_body .chat_incoming {
    padding: 10px 0;
    float: left;
}

.chat_body .chat_incoming .incoming_time {
    padding: 20px 0;
    text-align: left;
    float: left;
    word-break: break-all;
    width: 100%;
}

.chat_body .chat_incoming .incoming_time h6 {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #CFCFCF;
    line-height: 17px;
}

.chat_body .chat_incoming .incoming_msg {
    padding: 10px;
    background: #F9F9F9;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 20px;
    margin-bottom: 10px;
    text-align: left;
    float: left;
    word-break: break-all;
}
.chat_body .chat_incoming .incoming_msg p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin: 0;
}

.chat_body .chat_outgoing .outgoing_time {
    padding: 20px 0;
    text-align: right;
    float: left;
    word-break: break-all;
    width: 100%;
}

.chat_body .chat_outgoing .outgoing_time h6 {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #CFCFCF;
    line-height: 17px;
}

.chat_body .chat_outgoing .outgoing_msg {
    padding: 10px;
    background: #D2202E;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0px;
    margin-bottom: 10px;
    text-align: right;
    color: #fff;
    float: right;
    word-break: break-all;
}
.chat_body .chat_outgoing .outgoing_msg p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin: 0;
}
.chat_body .chat_outgoing {
    padding: 10px 0;
    float: right;
}
.chat_body {
    padding: 15px 10px;
    max-height: 350px;
    overflow-y: scroll;
    height: auto;
}
.chat_footer {
    padding-top: 20px;
}
.chat_footer .form-group {
    margin-bottom: 0;
    position: relative;
    width: 90%;
    display: inline-block;
    vertical-align: middle;
}
.chat_footer .form-group i {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    background-color: #fff;
}
.chat_footer .form-group input.form-control {
    height: auto;
    border-radius: 50px;
    color: #000;
    box-shadow: none;
    outline: none;
    border: 1px solid #6d767e;
    min-height: 50px;
}
.chat_footer a.send_chat {
    display: inline-block;
    vertical-align: middle;
}
.chat_footer a.send_chat i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #d2202e;
    border-radius: 50px;
    color: #fff;
}
#chat_popup .modal-dialog {
    max-width: 50%;
}


.doc_history_wrap {
    padding: 50px 0;
}
.doc_history_wrap .doc_history_box {
    width: 70%;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 52px;
    background: #fff;
}
.doc_history_wrap .doc_history_box h2 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;

}
.doc_history_wrap .doc_history_box .doc_history_list {
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}
.doc_history_wrap .doc_history_box .doc_history_list ul {padding: 0;margin: 0;}
.doc_history_wrap .doc_history_box .doc_history_list ul li {list-style-type: none;margin-bottom: 15px;position: relative;}
.doc_history_wrap .doc_history_box .doc_history_list ul li h6 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
}
.doc_history_wrap .doc_history_box .doc_history_list ul li h3 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}
.doc_history_wrap .doc_history_box .doc_history_list ul li h4 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}
.doc_history_wrap .doc_history_box .doc_history_list ul li h5 {
    color: #34A853;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}
.doc_history_wrap .doc_history_box .doc_history_list ul li button {
    display: block;
    margin-right: 0;
    margin-left: auto;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #D2202E;
    border: 1px solid #D2202E;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
}

.payment_history_wrap {
    padding: 50px 0;
}
.payment_history_wrap .payment_history_box {
    padding: 30px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 52px;
    width: 70%;
    margin: 0 auto;
}
.payment_history_wrap .payment_history_box h2 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}
.payment_history_box ul {
    padding: 0;
    margin: 15px 0 0;
    display: inline-block;
}
.payment_history_box ul li {
    display: inline-block;
    width: auto;
}
.payment_history_box ul li .form-check {
    border: 1px solid #A1B0CC;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    margin-right: 2px;
    text-align: center;
    transition: .5s ease-in-out;
}
.payment_history_box ul li .form-check:hover {
    background-color: #39B44A;
    color: #fff;
    transition: .5s ease-in-out;
    border-color: #A1B0CC;
}
.payment_history_box ul li .form-check input {
    position: relative;
    margin: 0;
    margin-right: 5px;
    vertical-align: middle;
    cursor: pointer;
}
.payment_history_box ul li .form-check label {
    vertical-align: middle;
    cursor: pointer;
}
.payment_history_box .discount_code .form-group input {
    border: 1px solid #A1B0CC;
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
}
.payment_history_box form button {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 20px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    padding: 15px 65px;
    display: inline-block;
    border: none;
    box-shadow: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
.payment_history_box .card_add {
    margin-top: 30px;
    display: none;
}
.payment_history_box .discount_code {
    margin-top: 30px;
}
.payment_history_box .card_add .form-group input {
    border: 1px solid #A1B0CC;
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
}
#payment_method .modal-header button.close {
    margin-right: 0;
    padding: 10px 15px;
    opacity: 1;
    font-size: 20px;
    margin-top: 0;
}
#payment_method .view_payment_method h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000;
}
#payment_method .view_payment_method form {
    margin-top: 20px;
}
#payment_method .view_payment_method form label {
    color: #000;
    font-weight: 500;
}
#payment_method .view_payment_method form input {
    height: 50px;
    color: #000;
    font-size: 16px;
    outline: none;
    box-shadow: none;
    border: 1px solid #B2B2B2;
}
#payment_method .modal-dialog .modal-content {
    border-radius: 25px;
}

.payment_method_wrap {
    padding: 50px 0;
}   
.payment_method_wrap .method_box {
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 52px;
    padding: 40px;
    width: 70%;
    margin: 0 auto;
}
.payment_method_wrap .method_box h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 31px;
    line-height: 37px;
    color: #000;
    margin-bottom: 20px;
}
.payment_method_wrap .method_box h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #000;
}
.payment_method_wrap .method_box ul {
    padding: 0;
    margin: 20px 0 0;
}
.payment_method_wrap .method_box ul li {
    list-style-type: none;
    margin-bottom: 15px;
}
.payment_method_wrap .method_box ul li h5 {
    color: #7D7D7D;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
}
.payment_method_wrap .method_box ul li h4 {
    color: #252525;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
}

/*privacy policy start*/

.privacy_policy_wrap {
    padding: 50px 0;
}
.privacy_policy_wrap h2 {
    text-align: center;
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
}
.privacy_policy_wrap img.policy_logo {
    margin: 30px auto;
    display: block;
}
.privacy_policy_wrap p {
    text-align: center;
    margin-top: 20px;
    color: #000;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}
.privacy_policy_wrap ul {
    margin: 0;
    padding-left: 10px;
}
.privacy_policy_wrap ul li {
    list-style-type: decimal;
    margin-top: 20px;
    color: #000;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}

/*contact css start*/

.contact_wrap {
    padding: 50px 0;
}
.contact_wrap .contact_box {
    background: rgba(252, 218, 220, 0.66);
    border-radius: 50px;
    padding: 40px;
    width: 70%;
    margin: 0 auto;
}
.contact_wrap .contact_box h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #D2202E;
}
.contact_wrap .contact_box form {
    margin-top: 20px;
}
.contact_wrap .contact_box form label {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #D2202E;
}
.contact_wrap .contact_box form input {
    background: #FFFFFF;
    border: 1px solid #A1B0CC;
    border-radius: 4px;
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
    font-size: 16px;
}
.contact_wrap .contact_box form textarea {
    background: #FFFFFF;
    border: 1px solid #A1B0CC;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    color: #000;
    font-size: 16px;
}
.contact_wrap .contact_box form .form-control-file {
    padding: 10px;
}
.contact_wrap button {
    margin: 30px auto 0;
    display: block;
    border: none;
    color: #fff;
    padding: 10px 40px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

#edit_profile_pop button {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border: none;
    border-radius: 4px;
    margin: 0;
}
#edit_profile_pop button.close {
    padding: 10px 15px;
    opacity: 1;
}
#edit_profile_pop h5.modal-title {
    color: #000;
    font-size: 20px;
}
#edit_profile_pop .form-group {position: relative;}
#edit_profile_pop .form-group i {
    position: absolute;
    top: 18px;
    left: 10px;
    font-size: 16px;
    color: #B2B2B2;
    z-index: 1;
}
#edit_profile_pop .form-group input.form-control {
    height: 50px;
    padding-left: 35px;
    border: 2px solid #B2B2B2;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    color: #000;
}
#edit_profile_pop form button {
    margin: 15px auto 0;
}
#edit_profile_pop form .profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}
#edit_profile_pop form .profile-pic .-label {
    cursor: pointer;
    height: 80px;
    width: 80px;
    transition: .5s ease-in-out;
    left: 0;
    display: block;
    margin-left: 0;
    margin-right: auto;
}
#edit_profile_pop form .profile-pic:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    color: #fafafa;
    transition: background-color 0.2s ease-in-out;
    border-radius: 100px;
    margin-bottom: 0;
    transition: .5s ease-in-out;
}
#edit_profile_pop form .profile-pic span {
    display: inline-flex;
    padding: 0.2em;
    height: 2em;
}
#edit_profile_pop form .profile-pic input {
    display: none;
}
#edit_profile_pop form .profile-pic img {
    position: absolute;
    object-fit: cover;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    z-index: 0;
    left: 0;
}

.order_detail_wrap {
    padding: 50px 0;
}
.order_detail_wrap .order_detail_box {
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 52px;
}
.order_detail_wrap .order_detail_box h2 {
    color: #000;
    font-size: 25px;
    margin-bottom: 20px;
}
.order_detail_wrap .order_detail_box form label {
    color: #000;
    font-weight: 500;
}
.order_detail_wrap .order_detail_box form input {
    height: 50px;    
    border: 1px solid #B2B2B2;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    color: #000;
}

.order_detail_wrap .order_detail_box form button {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 20px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    padding: 15px 65px;
    display: inline-block;
    border: none;
    box-shadow: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}


.about_banner_wrap {
    padding: 50px 0;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
}
.about_banner_wrap h2 {
    font-size: 40px;
    text-align: center;
    color: #fff;
}
.about_detail_wrap {
    width: 100%;
    padding: 50px 0;
}
.about_detail_wrap .left_about_detail img {
    width: 100%;
    border-radius: 50px;
}
.about_detail_wrap .right_about_detail h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
}
.about_detail_wrap .right_about_detail p {
  color: #313131;
font-style: normal;
font-weight: 200;
font-size: 16px;
line-height: 1.7em;
}
.about_detail_wrap .full_about_detail {
    padding-top: 30px;
}
.about_detail_wrap .full_about_detail p {
    color: #313131;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}
.about_detail_wrap .row {align-items: center;}

.installation_wrap {
    padding: 50px 0;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
}
.installation_wrap h2 {
    font-size: 40px;
    text-align: center;
    color: #fff;
}
.facilities_wrap {padding: 50px 0}
.facilities_wrap .facilities_box {
    margin-bottom: 25px;
}
.facilities_wrap .facilities_box img {
    width: 100%;
    border-radius: 15px;
}
.facilities_wrap .facilities_title h3 {
    text-align: center;
    color: #000;
    font-size: 25px;
    font-weight: 600;
}
.facilities_wrap .facilities_title p {
    text-align: center;
    color: #000;
}
.facilities_wrap .facilities_title .row {margin-top: 30px;}


.team_wrap {
    padding: 50px 0;
    background: #f4f4f4;
}
.team_wrap .team_box {
    margin-bottom: 25px;
    background: #FAFAFA;
    border-radius: 22px;
    padding: 20px;
}
.team_wrap .team_box img {
    width: 100%;
    border-radius: 15px;
}
.team_wrap .team_title h4 {
    text-align: center;
    color: #000;
    font-size: 25px;
    font-weight: 600;
    margin-top: 10px;
}
.team_wrap .team_title h5 {
    text-align: center;
    color: #000;
    margin-bottom: 0;
}
.team_wrap .team_title .row {margin-top: 30px;}

.team_wrap .team_title h3 {
    text-align: center;
    color: #000;
    font-size: 25px;
    font-weight: 600;
}
.team_wrap .team_title p {
    text-align: center;
    color: #000;
}
.team_wrap .team_title .row a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    transition: .5s ease-in-out;
}
.team_wrap .team_title .row a:hover .team_box {
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.12);
    transition: .5s ease-in-out;
}

.team_detail_wrap {
    padding: 50px 0;
    background-color: #f4f4f4;
}
.team_detail_wrap .team_detail_box {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 30px;
}
.team_detail_wrap .team_detail_box .row {align-items: center;}
.team_detail_wrap .team_detail_box h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 34px;
    color: #000;
}
.team_detail_wrap .team_detail_box h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.5);
}
.team_detail_wrap .team_detail_box h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.5);
}
.team_detail_wrap .team_detail_box p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}
.team_detail_wrap .team_detail_box img {
    box-shadow: 0px 0px 12px 0px rgb(161 161 161 / 75%);
    border-radius: 15px;
    width: 100%;
}


/*Coach css start*/

/*customer page css*/

.customer_wrap {
    width: 100%;
    padding: 50px 0;
    background:#f4f4f4;
}
.customer_wrap .customer_form_set form .form-group {
    position: relative;
}
.customer_wrap .customer_form_set form input.form-control {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #B2B2B2;
    height: 50px;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    box-shadow: none;
    outline: none;
    padding-right: 40px;
}
.customer_wrap .customer_form_set form .form-group i.fa {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 20px;
}

.customer_wrap .customer_tab ul.nav.nav-tabs {
    width: auto;
    border: none;
    text-align: center;
    display: inline-block;
    border: 1px solid #C8C8C8;
    border-radius: 4px;
}
.customer_wrap .customer_tab ul.nav.nav-tabs li.nav-item {
    display: inline-block;
}
.customer_wrap .customer_tab ul.nav.nav-tabs a.nav-link {
    border: none;
    color: #666666;
    padding: 10px 30px;
}
.customer_wrap .customer_tab ul.nav.nav-tabs a.nav-link.active {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    color: #fff;
    border-radius: 4px;
}
.customer_wrap .customer_tab {
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
.customer_wrap .tab-content {
    margin-top: 50px;
}
#customer_tab1 .customer_tab_box {
    width: 100%;
    display: inline-block;
}
#customer_tab1 .customer_tab_box a {
    display: inline-block;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    margin-bottom: 20px;
    border: 2px solid transparent;
}
#customer_tab1 .customer_tab_box a img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
#customer_tab1 .customer_tab_box a h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin: 10px 0;
}
#customer_tab1 .customer_tab_box a:hover {
    border: 2px solid #D2202E;
}

#group_tab2 .group_tab_box {
    width: 100%;
    display: inline-block;
}
#group_tab2 .group_tab_box a {
    display: inline-block;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    margin-bottom: 20px;
    border: 2px solid transparent;
}
#group_tab2 .group_tab_box a img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
#group_tab2 .group_tab_box a h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin: 10px 0;
}
#group_tab2 .group_tab_box a:hover {
    border: 2px solid #D2202E;
}

.customer_tab #notify_tab3 .row {
    align-items: center;
}
.customer_tab .tab-pane .notify_box.row {
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 15px;
}
.customer_tab .tab-pane .notify_box .left_notify_cont img {
    width: 100%;
}
.customer_tab .tab-pane .notify_box .middle_notify_cont h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #D2202E;
    text-align: left;
}
.customer_tab .tab-pane .notify_box .middle_notify_cont p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #505050;
    text-align: left;
}
.customer_tab .tab-pane .notify_box .right_notify_cont span {
    background: #FCD76C;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 15px;
}
.customer_tab .tab-pane .notify_box .right_notify_cont h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
}
.customer_tab .tab-pane .delet_notify {
    text-align: center;
}
.customer_tab .tab-pane .delet_notify a {
    display: inline-block;
}
.customer_tab .tab-pane .delet_notify a i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #D2202E;
    border-radius: 50px;
    color: #fff;
    font-size: 30px;
}
#group_tab2 .group_tab_box a i.fa {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #D2202E;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
}

.booking_wrap {padding: 50px 0;background-color: #f4f4f4;}
.booking_wrap .booking_list_box {
    background: url(../images/product_box.png);
    border-radius: 20px;
    padding: 30px 0 0 0;
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.booking_wrap .booking_list_box img {
    margin: 20px auto 0;
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.booking_wrap .booking_list_box h2 {
    text-align: center;
    margin: 15px 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #000;
}
.booking_wrap .booking_list_box h2 a {
    color: #000;
    text-decoration: none;
}
.booking_wrap .booking_list_box a.btn {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    color: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-block;
    margin: 0 15px 10px;
    text-decoration: none;
}


.booking_detail_wrap {padding: 50px 0;background-color: #f4f4f4;}
.booking_detail_wrap .booking_detail_list_box {
    background: url(../images/product_box.png);
    border-radius: 20px;
    padding: 30px 0 0 0;
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.booking_detail_wrap .booking_detail_list_box img {
    margin: 20px auto 0;
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.booking_detail_wrap .booking_detail_list_box h2 {
    text-align: center;
    margin: 15px 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #000;
}
.booking_detail_wrap .booking_detail_list_box h2 a {
    color: #000;
    text-decoration: none;
}
.booking_detail_wrap .booking_detail_list_box button {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: #34A853;
    border: 1px solid #34A853;
    color: #fff;
    border-radius: 50px;
    padding: 10px 15px;
    display: inline-block;
    margin: 0 15px 10px;
    text-decoration: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
}

.booking_detail_wrap #sign_customer h2 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: left;
}
.booking_detail_wrap #sign_customer ul {padding: 0;margin: 0;}
.booking_detail_wrap #sign_customer li {
    list-style-type: none;
    text-align: left;
}
.booking_detail_wrap #sign_customer li .form-check {
    padding: 10px 20px;
    border: 1px solid #B2B2B2;
    margin: 15px 0;
    border-radius: 8px;
}
.booking_detail_wrap #sign_customer li .form-check input {
    position: relative;
    margin: 0;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.booking_detail_wrap #sign_customer li .form-check label {
    margin-left: 10px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}
.booking_detail_wrap #sign_customer li .form-check label i {margin-right: 5px;}
.booking_detail_wrap #sign_customer button {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 4px;
    border: none;
    width: 100%;
    margin: 0;
    padding: 15px;
}
.booking_detail_wrap .booking_detail_list_box h4 {
    color: #666666;
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.customer_detail_wrap {padding: 50px 0;background-color: #f4f4f4;}
.customer_detail_wrap .customer_profile {text-align: center;width: 100%;}
.customer_detail_wrap .customer_profile ul {
    width: auto;
    display: inline-block;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    margin: 0;
}
.customer_detail_wrap .customer_profile ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.customer_detail_wrap .customer_profile ul li:last-child {margin-right: 0;}
.customer_detail_wrap .customer_profile ul li h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #000;
    text-align: left;
}
.customer_detail_wrap .customer_profile ul li h4 {
    color: #B2B2B2;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: left;
}
.customer_detail_wrap .customer_profile ul li img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.customer_detail_wrap .customer_inner_detail {
    padding-top: 50px;
    background: #fff;
    padding: 40px;
    margin: 60px 0 0;
    border-radius: 40px;
    box-shadow: 0px 20px 60px rgb(0 0 0 / 12%);
}
.customer_detail_wrap .customer_inner_detail a {
    background: #FFFFFF;
    border: 1px solid #C8C8C8;
    border-radius: 4px;
    display: inline-block;
    padding: 10px 30px;
    color: #000;
    text-decoration: none;
}
.customer_detail_wrap .customer_inner_detail button {
    display: block;
    margin: 15px 0;
    background: #F5BE18;
    border: 1px solid #F5BE18;
    width: 100%;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}
.customer_detail_wrap .customer_inner_detail form label {
    font-weight: 400;
    font-size: 18px;
    color: #000;
}
.customer_detail_wrap .customer_inner_detail form input {
    height: 52px;
    width: 100%;
    border: 1px solid #A1B0CC;
    padding: 10px;
    box-shadow: none;
    outline: none;
}
.customer_detail_wrap .customer_inner_detail form textarea {
    width: 100%;
    border: 1px solid #A1B0CC;
    padding: 10px;
    box-shadow: none;
    outline: none;
}
.customer_detail_wrap .customer_inner_detail ul {
    margin-top: 15px;
    padding-right: 15px;
    border-right: 1px solid #B2B2B2;
    padding-left: 0;
}
.customer_detail_wrap .customer_inner_detail ul li {
    list-style-type: none;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    background: #E46969;
    border-radius: 10px;
    padding: 15px;
}
.customer_detail_wrap .customer_inner_detail ul li h4 {
    font-size: 18px;
    color: #fff;
}
.customer_detail_wrap .customer_inner_detail form button {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 4px;
    border: none;
    color: #fff;
    width: 70%;
    margin: 25px auto 0;
}

.customer_tab #morning_tab1 table.time_day_table {
    width: 80%;
    border-collapse: separate;
    border-spacing: 20px;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    margin: 0 auto;
}
.customer_tab #morning_tab1 table.time_day_table th {
    background: #D2202E;
    padding: 15px;
    color: #fff;
    font-size: 16px;
}
.customer_tab #morning_tab1 table.time_day_table tr td {padding: 15px;font-weight: bold;font-size: 16px;}
.customer_tab #morning_tab1 table.time_day_table tr:nth-child(odd) td {
    background-color: #E46969;
    color: #000;

}
.customer_tab #morning_tab1 table.time_day_table tr:nth-child(even) td {
    background: rgba(228, 105, 105, 0.28);
    color: #000;
}

.customer_tab #afternoon_tab2 table.time_day_table {
    width: 80%;
    border-collapse: separate;
    border-spacing: 20px;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    margin: 0 auto;
}
.customer_tab #afternoon_tab2 table.time_day_table th {
    background: #D2202E;
    padding: 15px;
    color: #fff;
    font-size: 16px;
}
.customer_tab #afternoon_tab2 table.time_day_table tr td {padding: 15px;font-weight: bold;font-size: 16px;}
.customer_tab #afternoon_tab2 table.time_day_table tr:nth-child(odd) td {
    background-color: #E46969;
    color: #000;

}
.customer_tab #afternoon_tab2 table.time_day_table tr:nth-child(even) td {
    background: rgba(228, 105, 105, 0.28);
    color: #000;
}
.customer_tab .add_leave {
    padding-top: 50px;
}
.customer_tab .add_leave h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    color: #000;
    text-align: left;
}
.customer_tab .add_leave h3 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    text-align: right;
}
.customer_tab .add_leave h3 a {color: #D2202E;text-decoration: none;}

.add_leave .right_upcoming h2 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 15px;
}
.add_leave .right_upcoming .upcoming_box {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}
.add_leave .right_upcoming .upcoming_box ul {
    padding: 0;
    margin: 0;
}
.add_leave .right_upcoming .upcoming_box ul li {
    list-style-type: none;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 20px;
    text-align: left;
}

.add_leave #calendar {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #CBD4E6;
    border-radius: 10px;
    background-color: #fff;
}


.leave_bar {
  background-color: transparent;
  color: white;
  padding: 0;
  font-size: 18px;
  border: none;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.leave_bar:hover, .leave_bar:focus {
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

.leave_status {
    position: absolute;
    display: inline-block;
    top: 20px;
    right: 30px;
    z-index: 1;
}

.leave_content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
}

.leave_content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.leave_status a:hover {background-color: #ddd;}
.leave_status .show {display: block;}

.week_slider .slick-list {
    width: 90%;
    margin: 0 auto;
}
.week_slider ul {padding: 0;margin: 0;}
.week_slider ul li {
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
}
.week_slider ul li button {
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}
.week_slider ul li button.leave_color {
    color: red;
}
.week_slider ul li button.active {
    color: #fff;
    background: #000;
}
.week_slider ul li button h4 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}
.week_slider ul li button h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.week_slider button.slick-next {
    right: 0;
}
.week_slider button.slick-next:before {
    content: "\f061";
    font-family: 'FontAwesome';
}
.week_slider button.slick-arrow:before {
    color: #d2202e;
    font-size: 20px;
    opacity: 1;
}
.week_slider button.slick-prev {
    left: 0;
}
.week_slider button.slick-prev:before {
    content: "\f060";
    font-family: 'FontAwesome';
}
.weekly_leave_list {
    padding-top: 40px;
}

.add_leave_wrap {
    padding: 50px 0;
    background: #f4f4f4;
}
.add_leave_wrap .new_leave_box {
    background: #FFFFFF;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 52px;
    padding: 50px;
}
.new_leave_box .right_upcoming h2 {
    color: #D2202E;
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 15px;
}
.new_leave_box .right_upcoming .upcoming_box {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}
.new_leave_box .right_upcoming .upcoming_box ul {
    padding: 0;
    margin: 0;
}
.new_leave_box .right_upcoming .upcoming_box ul li {
    list-style-type: none;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 20px;
    text-align: left;
}
.add_leave_wrap .new_leave_box form {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 22px;
    padding: 20px;
}
.add_leave_wrap .new_leave_box form h3 {
    color: #666666;
    font-size: 20px;
    margin-bottom: 20px;
}
.add_leave_wrap .new_leave_box form label {
    color: #666666;
    font-size: 18px;
}
.add_leave_wrap .new_leave_box form input {
    width: 100%;
    height: 50px;
    box-shadow: none;
    outline: none;
    border: 1px solid #666;
    font-size: 16px;
    color: #000;
}
.add_leave_wrap .new_leave_box form button {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 4px;
    width: 100%;
    border: none;
    padding: 10px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}
#new_customer button.close {
    display: inline-block;
    width: auto;
    margin: 0 0 0 auto;
    border-radius: 10px;
    background: #d6222a;
    color: #fff;
    opacity: 1;
    border: none;
}


.customer_list_grid .customer_list_box {
    margin-bottom: 15px;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 20px 60px rgb(0 0 0 / 12%);
    border-radius: 20px;
}
.customer_list_grid .customer_list_box ul {
    padding: 0;
    margin: 0;
    border: none;
}
.customer_list_grid .customer_list_box ul li {
    width: 100%;
    background: transparent;
    margin: 5px 0;
    padding: 0;
    border-radius: 0;
    vertical-align: middle;
    text-align: center;
}
.customer_list_grid .customer_list_box ul li:last-child {margin-right: 0;}
.customer_list_grid .customer_list_box ul li img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.customer_list_grid .customer_list_box ul li h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #000;
    word-break: break-all;
}
.customer_list_grid .customer_list_box ul li h5 {
    color: #C4C4C4;
    font-size: 16px;
}
.customer_list_grid .customer_list_box ul li a {
    display: inline-block;
    background: #39B44A;
    border: 1px solid #39B44A;
    border-radius: 50px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    padding: 5px 20px;
}
.active_product_box {
    padding: 50px 0;
}
.active_product_box ul {
    padding: 20px;
    width: 70%;
    display: block;
    margin: 0 auto;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}
.active_product_box ul li {
    list-style-type: none;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.active_payment_status {
    text-align: center;
}
.active_payment_status h4 {
    display: inline-block;
    padding: 10px 20px;
    background: #34A853;
    color: #fff;
    border-radius: 4px;
    font-size: 20px;
}

.create_group_box .profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}
.create_group_box .profile-pic .-label {
    cursor: pointer;
    height: 80px;
    width: 80px;
    transition: .5s ease-in-out;
    left: 0;
    display: block;
    margin-left: 0;
    margin-right: auto;
}
.create_group_box .profile-pic:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    color: #fafafa;
    transition: background-color 0.2s ease-in-out;
    border-radius: 100px;
    margin-bottom: 0;
    transition: .5s ease-in-out;
}
.create_group_box .profile-pic span {
    display: inline-flex;
    padding: 0.2em;
    height: 2em;
}
.create_group_box .signup_box .signup_right form input {
    border: 1px solid #A1B0CC;
    box-sizing: border-box;
    border-radius: 4px;
    background: #fff;
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
}
.create_group_box .profile-pic img {
    position: absolute;
    object-fit: cover;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    z-index: 0;
    left: 0;
}
.create_group_box .profile-pic input {
    display: none;
}
.create_group_wrap {
    width: 100%;
    padding: 50px 0;
}
.create_group_wrap .create_group_box {
    padding: 50px;
    background: #FCDADC;
    border-radius: 50px;
    box-shadow: 0px 0px 15px 5px rgb(235 235 235 / 75%);
    width: 70%;
    margin: 0 auto;
}
.create_group_wrap .create_group_box form {margin-bottom: 40px;}
.create_group_wrap .create_group_box input.form-control {
    height: 50px;
    outline: none;
    box-shadow: none;
    color: #000;
    border: 1px solid #A1B0CC;
}
.create_group_wrap .create_group_box h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.create_group_wrap .create_group_box ul {
    padding: 0;
    margin: 0;
}
.create_group_wrap .create_group_box ul li {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
}
.create_group_wrap .create_group_box ul li img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
.create_group_wrap .create_group_box ul li h5 {
    color: #000;
    font-size: 18px;
    margin-top: 10px;
}
.create_group_wrap .create_group_box button {
    margin: 30px auto 0;
    display: block;
    padding: 10px;
    border: none;
    color: #fff;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
}


/*booking schedule page*/

.booking_sch_wrap {
    padding: 50px 0;
}
.booking_sch_wrap .add_leave {
    padding: 30px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    text-align: center;
}
.booking_sch_wrap .tab-content {
    margin-top: 50px;
}
.booking_sch_wrap ul.nav.nav-tabs {
    width: auto;
    border: none;
    text-align: center;
    display: inline-block;
    border: 1px solid #C8C8C8;
    border-radius: 4px;
}
.booking_sch_wrap ul.nav.nav-tabs li.nav-item {
    display: inline-block;
}
.booking_sch_wrap ul.nav.nav-tabs a.nav-link {
    border: none;
    color: #666666;
    padding: 10px 30px;
}
.booking_sch_wrap ul.nav.nav-tabs a.nav-link.active {
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    color: #fff;
    border-radius: 4px;
}
.booking_sch_wrap .title_leave h2 {
    text-align: left;
    color: #D2202E;
    font-size: 25px;
    font-weight: 600;
}
.book_time_status {
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 10px;
}
.booking_sch_wrap .add_leave .right_upcoming .upcoming_box ul li {width: 80%;word-break: break-all;margin-bottom: 10px;}
.booking_sch_wrap .add_leave .right_upcoming .upcoming_box ul li p {
    font-weight: normal;
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
}
.booking_sch_wrap .add_leave .right_upcoming .upcoming_box ul li h5 {
    font-weight: normal;
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
}
.booking_sch_wrap .add_leave .right_upcoming .upcoming_box {
    background: #fff;
    border: 1px solid #cfcfcf;
}
.book_time_status button.btn.btn-primary {
    background: transparent;
    border: none;
    color: #000;
    outline: none;
    box-shadow: none;
}
.booking_sch_wrap .add_leave .right_upcoming h2 {
    color: #000;
    font-size: 20px;
    text-align: left;
}
.booking_sch_wrap .add_leave .new_book_sch_title {
    text-align: right;
}
.booking_sch_wrap .add_leave .new_book_sch_title a {
    color: #D2202E;
    font-size: 25px;
    font-weight: 600;
    text-decoration: none;
}
.book_time_detail ul {
    text-align: left;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 20px !important;
}
.booking_sch_wrap .book_time_detail ul li {
    width: auto !important;
    display: inline-block !important;
    margin-right: 10px;
    vertical-align: middle;
}
.booking_sch_wrap .book_time_detail ul li:last-child {margin-right: 0;}
.booking_sch_wrap .book_time_detail ul li img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.booking_sch_wrap .book_time_detail ul li h3 {
    color: #000;
    font-size: 20px;
}
.booking_sch_wrap .book_time_detail ul li a {
    color: #000;
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}
.booking_sch_wrap .book_time_detail ul li a i {
    color: #D2202E;
    margin-right: 5px;
}
.booking_sch_wrap .book_time_detail h3 {
    font-size: 20px;
    text-align: left;
    color: #000;
}
.booking_sch_wrap .book_time_detail p {
    text-align: left;
    font-size: 15px;
    color: #000;
}
.booking_sch_wrap .book_time_detail form {
    text-align: left;
}
.booking_sch_wrap .book_time_detail form .form-check {
    margin-bottom: 10px;
}

.book_time_status #booking_detail_popup button.btn {width: 100%;display: block;border-radius: 50px;padding: 10px;margin: 10px 0;}

.book_time_status #booking_detail_popup .modal-footer {display: inline-block;width: 100%;}
.book_time_status #booking_detail_popup button.btn.btn-danger {
    background: #ff2121;
}
.book_time_status #booking_detail_popup button.btn.btn-primary {
    background: #279427;
    color: #fff;
}


.recure_book_wrap {
    background: #fff;
    padding: 50px 0;
}
.recure_book_wrap .recure_box {
    padding: 50px;
    border-radius: 50px;
    background: #fcdadc;
}
.recure_book_wrap .recure_box .secure_list_box {
    background: url(../images/product_box.png);
    border-radius: 20px;
    padding: 30px 0 0 0;
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: auto;
    text-align: center;
    margin-bottom: 20px;
}
.recure_book_wrap .recure_box ul.recure_content {
    padding: 0;
    margin: 0;
}

.recure_book_wrap .recure_box ul.recure_content li {
    list-style-type: none;
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 10px;
    width: 48%;
    vertical-align: top;
}

.recure_book_wrap .recure_box ul.recure_content li h4 {font-size: 20px;font-weight: 600;color: #000;}

.recure_book_wrap .recure_box ul.recure_content li h5 {font-size: 18px;font-weight: 400;color: #000;}

.recure_book_wrap .recure_box form .form-group select.form-control {
    height: 50px;
    border: 1px solid #fff;
    box-shadow: none;
    outline: none;
    font-size: 18px;
}
.recure_book_wrap .recure_box form ul {
    padding: 0;
    margin: 0;
}
.recure_book_wrap .recure_box form ul li {
    display: inline-block;
    margin-bottom: 10px;
}
.recure_book_wrap .recure_box form ul li button {
    background: transparent;
    border: 1px solid #000;
    outline: none;
    box-shadow: none;
    padding: 5px 10px;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
}
.recure_book_wrap .recure_box form button.btn.btn-primary {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background: linear-gradient(90deg, #6F2D4B 0%, #94293F 15.67%, #B52635 36.59%, #CD232D 57.51%, #DB2229 79.69%, #E02127 100%);
    border-radius: 4px;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 18px;
}
.recure_book_wrap .recure_box .secure_list_box img {
    margin: 20px auto 0;
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.recure_book_wrap .recure_box .secure_list_box h2 {
    text-align: center;
    margin: 15px 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #000;
}
.recure_book_wrap .recure_box .secure_list_box h4 {
    color: #666666;
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}
.recure_book_wrap .recure_box form ul li .form-check {
    background: transparent;
    border: 1px solid #000;
    padding: 5px 10px;
    border-radius: 5px;
}
.recure_book_wrap .recure_box form ul li .form-check input {cursor: pointer;}

.recure_session ul {
    padding: 0;
    margin: 0;
}
.recure_session ul li {
    display: inline-block;
    margin-right: 5px;
}
.recure_session ul li p {
    display: inline-block;
    padding: 10px 15px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 5px;
    margin: 0 0 10px;
}
.recure_session ul li p span {
    display: block;
    color: #000;
    font-weight: 500;
    width: 100%;
    text-align: center;
}
.recure_status {margin-top: 20px;}
.recure_status p {
    display: inline-block;
    padding: 10px 15px;
    background: #34A853;
    color: #fff;
    border-radius: 5px;
}

/*Responsive start*/

@media (min-width: 1280px){
    .container {
        max-width: 1200px;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
	.banner_wrap {padding-top: 50px;}
	.banner_wrap h1 {
		font-size: 50px;
		line-height: 68px;
	}
	.club_wrap h2 {font-size: 38px;}
	.club_wrap .row .club_box {padding: 15px 20px;}
	.club_wrap .row .club_box h3 {font-size: 22px;}
	.club_wrap .row .club_box p {font-size: 15px;}
	.membership_wrap .membership_box h2 {font-size: 38px;line-height: 54px;}
	.testimonial_wrap h2 {font-size: 38px;line-height: 54px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name {width: 62%;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name h3 {font-size: 18px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name i {font-size: 18px;}
	.testimonial_wrap .row .testimonial_box .testimonial_disc p {font-size: 15px;line-height: 25px;}
	.signup_wrap .signup_box .signup_left h3 {font-size: 25px;}
	.signup_wrap .signup_box .signup_right label.form-check-label {font-size: 15px;}
	.signup_wrap .signup_box .signup_right p {font-size: 15px;}
	.signup_wrap .signup_box .signup_right {padding: 20px;}
    .detail_right_cont ul li a {
        padding: 9px 16px;
        font-size: 16px;
    }
    .search_popular_list .popular_search_box {width: 100%;}
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
	.banner_wrap {padding-top: 50px;}
	.banner_wrap h1 {
		font-size: 50px;
		line-height: 68px;
	}
	.club_wrap h2 {font-size: 38px;}
	.club_wrap .row .club_box {padding: 15px 20px;}
	.club_wrap .row .club_box h3 {font-size: 22px;}
	.club_wrap .row .club_box p {font-size: 15px;}
	.membership_wrap .membership_box h2 {font-size: 38px;line-height: 54px;}
	.testimonial_wrap h2 {font-size: 38px;line-height: 54px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name {width: 62%;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name h3 {font-size: 18px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name i {font-size: 18px;}
	.testimonial_wrap .row .testimonial_box .testimonial_disc p {font-size: 15px;line-height: 25px;}
	.signup_wrap .signup_box .signup_left h3 {font-size: 25px;}
	.signup_wrap .signup_box .signup_right label.form-check-label {font-size: 15px;}
	.signup_wrap .signup_box .signup_right p {font-size: 15px;}
	.signup_wrap .signup_box .signup_right {padding: 20px;}
    .detail_right_cont ul li a {
        padding: 9px 16px;
        font-size: 16px;
    }
     .search_popular_list .popular_search_box {width: 100%;}
}
@media screen and (min-width: 768px) and (max-width: 992px) {
	.banner_wrap {padding-top: 50px;}
	.banner_wrap h1 {
		font-size: 50px;
		line-height: 68px;
	}
	.banner_wrap .row img {
	    width: 60%;
	    margin: 50px 0 0;
	    display: block;
	}
	.club_wrap .row .club_box {margin-bottom: 15px;}
	.club_wrap .row .club_box img {
	    margin: 0 auto;
	}
	.club_wrap h2 {font-size: 38px;}
	.club_wrap .row .club_box {padding: 25px 30px;}
	.club_wrap .row .club_box h3 {font-size: 22px;text-align: center;}
	.club_wrap .row .club_box p {font-size: 15px;text-align: center;}
	.membership_wrap .membership_box h2 {font-size: 38px;line-height: 54px;}
	.testimonial_wrap h2 {font-size: 38px;line-height: 54px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name {width: 62%;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name h3 {font-size: 22px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name i {font-size: 18px;}
	.testimonial_wrap .row .testimonial_box .testimonial_disc p {font-size: 15px;line-height: 25px;}
	.testimonial_wrap .row .testimonial_box {margin-bottom: 15px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_img img {
	    width: 90%;
	}
	footer .col-lg-3 {
	    margin-bottom: 35px;
	}
	footer .copyright span {text-align: left;margin-top: 15px;}
	footer .copyright {
	    margin-top: 20px;
	}
	header nav.navbar .navbar-toggler {
	    background: #fff;
	}
	header nav.navbar ul li.nav-item {margin: 10px 0;}
	.splash_wrap .splash_box {padding: 50px;}
	.splash_wrap .splash_box .splash_content {width: 70%;}
	header nav.navbar ul.navbar-nav {
	    align-items: baseline;
	    text-align: left;
	}
	.signup_wrap .signup_box .signup_left h3 {text-align: center;}
	.signup_wrap .signup_box .signup_left p {text-align: center;}
	.signup_wrap .signup_box .signup_left {text-align: center;}
	.signup_wrap .signup_box .signup_right {margin-top: 20px;}
    .popular_product .popular_list .popular_list_box {
        margin-bottom: 25px;
        height: auto;
    }
    .popular_product .popular_list .popular_list_box h4 {padding-bottom: 15px;margin-bottom: 0;}
    .popular_product .popular_title h2 {text-align: center;margin-bottom: 20px;}
    .popular_product .popular_title a {text-align: center;}
    .product_detail_wrap .detail_left_main {width: 100%;margin-bottom: 20px;}
    .detail_left_main .slider-for img {width: 50%;}
    .active_wrap .tab-pane .popular_list .popular_list_box {margin-bottom: 15px;height: auto;}
    .subscribe_wrap .left_subscribe {border-right: none;}
    .subscribe_wrap .right_subscribe {
        margin-top: 30px;
    }
    .subscribe_wrap .right_subscribe h2 {padding-bottom: 20px;}
    .past_service_box ul li {font-size: 16px;}
    .past_service_box ul li span {display: block;}
    .upcoming_sec .right_upcoming h2 {margin-top: 20px;font-size: 25px;}
    .past_service_box ul {width: 100%;margin-bottom: 10px;}
    .profile_wrap .profile_box .main_profile_bg ul li {width: 100%;text-align: center;margin-right: 0;margin-bottom: 20px;}
    .profile_wrap .profile_box .main_profile_bg button {margin-top: 0;}
    .profile_wrap .profile_box {width: 80%;}
    .pre_coach_wrap .pre_coach_box ul li {
        display: block;
        vertical-align: middle;
        margin-right: 0;
        text-align: center;
    }
    .pre_coach_wrap .pre_coach_box h2 {text-align: center;font-size: 25px;}
    .pre_coach_wrap .pre_coach_box a.change_coach {text-align: center;}
    .pre_coach_wrap .pre_coach_box ul li h3 {font-size: 18px;}
    .pre_coach_wrap .pre_coach_box ul li h5 {font-size: 16px;}
    .coach_change_wrap .coach_change_box .selecotr-item {width: 47%;}
    #chat_popup .modal-dialog {
        max-width: 80%;
    }
    .doc_history_wrap .doc_history_box {width: 100%;padding: 20px;border-radius: 15px;}
    .payment_history_wrap .payment_history_box {width: 80%;}
    .about_detail_wrap .right_about_detail h3 {margin-top: 20px;}
    .team_detail_wrap .team_detail_box img {        
        width: 70%;
        margin: 15px auto;
        display: block;
    }
    .add_leave_wrap .new_leave_box {border-radius: 20px;padding: 20px;}
    .create_group_wrap .create_group_box {width: 90%;}
    .recure_book_wrap .recure_box ul.recure_content li {width: 100%;}
}
@media screen and (max-width: 767px) {
	.banner_wrap {padding-top: 50px;text-align: center;}
	.banner_wrap h1 {
	    font-size: 30px;
	    line-height: 48px;
	    text-align: center;
	}
	.banner_wrap p {text-align: center;margin: 15px 0 20px;}

	.banner_wrap .btn.btn-primary {margin: 0 auto;}	
	.banner_wrap .row img {
	    width: 60%;
	    margin: 50px auto 0;
	    display: block;
	}
	.club_wrap .row .club_box {margin-bottom: 15px;}
	.club_wrap .row .club_box img {
	    margin: 0 auto;
	}
	.club_wrap h2 {
	    font-size: 28px;
	    line-height: 38px;
	}
	.club_wrap .row {
	    margin-top: 20px;
	}
	.club_wrap .row .club_box {padding: 25px 30px;}
	.club_wrap .row .club_box h3 {font-size: 22px;text-align: center;}
	.club_wrap .row .club_box p {font-size: 15px;text-align: center;}
	.membership_wrap {padding: 10px 0;}
	.membership_wrap .membership_box {padding: 20px;}
	.membership_wrap .membership_box h2 {font-size: 25px;line-height: 35px;}
	.membership_wrap .membership_box p {margin: 20px 0;}
	.testimonial_wrap h2 {font-size: 28px;line-height: 38px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name {width: 62%;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name h3 {font-size: 22px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_name i {font-size: 18px;}
	.testimonial_wrap .row .testimonial_box .testimonial_disc p {font-size: 15px;line-height: 25px;}
	.testimonial_wrap .row .testimonial_box {margin-bottom: 15px;}
	.testimonial_wrap .row .testimonial_box .testimonial_title .testimonial_img img {
	    width: 90%;
	}
	footer .col-lg-3 {
	    margin-bottom: 35px;
	}
	footer .copyright {
	    margin-top: 20px;
	}
	footer .copyright span {text-align: left;margin-top: 15px;font-size: 15px;}
	header nav.navbar button.navbar-toggler {
	    background: #fff;
	}
	header nav.navbar ul li.nav-item {margin: 10px 0;}
	.splash_wrap .splash_box {padding: 25px;}
	.splash_wrap .splash_box .splash_content {width: 100%;}
	.splash_wrap .splash_box .splash_content .splash_option {padding: 20px;}
	.splash_wrap .splash_box .splash_content .splash_option .btn.btn-primary {padding: 5px;font-size: 16px;}
	.splash_wrap .splash_box .splash_content .splash_option span:before {width: 35%;}
	.splash_wrap .splash_box .splash_content .splash_option span:after {width: 35%;}
	header nav.navbar ul.navbar-nav {
	    align-items: baseline;
	    text-align: left;
	}
	.signup_wrap .signup_box {padding: 20px;}
	.signup_wrap .signup_box .signup_right {padding: 15px;}
	.signup_wrap .signup_box .signup_left h3 {text-align: center;font-size: 20px;}
	.signup_wrap .signup_box .signup_left p {text-align: center;font-size: 15px;}
	.signup_wrap .signup_box .signup_left {text-align: center;}
	.signup_wrap .signup_box .signup_right label.form-check-label {font-size: 15px;}
	.signup_wrap .signup_box .signup_right p {font-size: 15px;}
	.signup_wrap .signup_box .signup_right {margin-top: 20px;}
	.signup_wrap .signup_box .signup_right h2 {font-size: 25px;margin-bottom: 15px;}
	.signup_left img {width: 50%;}
	.signup_wrap .signup_box .signup_right h3 {font-size: 25px;margin-bottom: 15px;}
    .signup_wrap .signup_box .signup_right .or_set:after {width: 35%;}
    .signup_wrap .signup_box .signup_right .or_set:before {width: 35%;}
    .signup_wrap .signup_box .signup_right button.btn.btn-primary {font-size: 15px;}
    .signup_wrap .signup_box .signup_right button.google_btn {font-size: 15px;}
    .signup_wrap .signup_box .signup_right a.login_link {display: block;}
    .signup_wrap .signup_box .signup_right form h5 {font-size: 16px;margin-bottom: 15px;}
    .signup_wrap .signup_box .signup_right img.sent_icon {width: 80px;}    
    .popular_product .popular_list .popular_list_box {
        margin-bottom: 35px;
        height: auto;
    }
    .popular_product .popular_list .popular_list_box h4 {padding-bottom: 15px;margin-bottom: 0;}
    .popular_product .popular_title h2 {text-align: center;margin-bottom: 20px;}
    .popular_product .popular_title a {text-align: center;}
    .product_detail_wrap .detail_left_main {width: 100%;margin-bottom: 20px;}
    .product_detail_wrap .product_detail_cont {padding: 50px 20px;}
    .detail_right_cont ul li a {padding: 5px;font-size: 16px;width: 100%;}
    .detail_right_cont ul li a i {margin-right: 0;}
    .detail_right_cont ul li {width: 100%;margin-bottom: 10px;}
    .detail_right_cont h2 {font-size: 20px;}
    .search_popular_list .popular_search_box {width: 100%;margin-bottom: 15px;height: auto;padding: 15px;}
    .search_popular_title h2 {font-size: 22px;text-align: center;}
    .search_popular_title a {text-align: center;}
    .active_wrap .active_tab_btn ul.nav.nav-tabs {border: none;}
    .active_wrap .active_tab_btn ul.nav.nav-tabs li.nav-item {margin-bottom: 10px;}
    .active_wrap .tab-pane .popular_list .popular_list_box {margin-bottom: 15px;height: auto;}
    .active_wrap .tab-pane .notify_box .left_notify_cont img {
        width: auto;
    }
    .active_wrap .tab-pane .notify_box.row {text-align: center;margin: 30px auto;}
    .active_wrap .tab-pane .middle_notify_cont {
        margin: 15px 0;
    }
    .active_wrap .tab-pane .delet_notify {
        margin-top: 10px;
    }
    .norify_main_row {
        margin-bottom: 40px;
    }
    .active_wrap .tab-pane .notify_box .middle_notify_cont h2 {font-size: 20px;}
    .subscribe_wrap .left_subscribe {border-right: none;}
    .subscribe_wrap .right_subscribe {
        margin-top: 30px;
        text-align: center;
    }
    .subscribe_wrap .right_subscribe h2 {padding-bottom: 20px;text-align: center;font-size: 22px;}
    .subscribe_wrap .right_subscribe h4 {text-align: center;}
    .right_subscribe form .tab-pane .form-check {width: 100%;}
    .past_service_box ul li {font-size: 16px;}
    .past_service_box {margin-bottom: 10px;}
    .upcoming_sec .right_upcoming h2 {font-size: 25px;margin-top: 20px;}
    .blog_main_list .blog_list_box .left_blog_box {
        width: 100%;
        margin-right: 0;
    }
    .blog_main_list .blog_list_box .right_blog_box {width: 100%;margin-top: 15px;}
    .profile_wrap .profile_box .main_profile_bg ul li {width: 100%;text-align: center;margin-right: 0;margin-bottom: 20px;}
    .profile_wrap .profile_box .main_profile_bg button {margin-top: 0;}
    .profile_wrap .profile_box {width: 100%;}
    .profile_wrap .profile_box .main_profile_bg {padding: 20px;}
    .profile_wrap .profile_box .profile_option {padding: 20px;}
    .profile_wrap .profile_box .profile_option ul li a {font-size: 16px;}
    .pre_coach_wrap .pre_coach_box ul li {
        display: block;
        vertical-align: middle;
        margin-right: 0;
        text-align: center;
    }
    .pre_coach_wrap .pre_coach_box h2 {text-align: center;font-size: 25px;}
    .pre_coach_wrap .pre_coach_box a.change_coach {text-align: center;}
    .pre_coach_wrap .pre_coach_box ul li h3 {font-size: 18px;}
    .pre_coach_wrap .pre_coach_box ul li h5 {font-size: 16px;}
    .coach_change_wrap .coach_change_box .selecotr-item {width: 100%;margin-right: 0;}
    #chat_popup .modal-dialog {
        max-width: 100%;
    }
    .chat_footer .form-group {width: 80%;}
    .doc_history_wrap .doc_history_box {width: 100%;padding: 20px;border-radius: 15px;}
    .doc_history_wrap .doc_history_box .doc_history_list ul li h6 {position: relative;text-align: left;}
    .doc_history_wrap .doc_history_box .doc_history_list ul li button {position: relative;margin-left: 0;}
    .doc_history_wrap .doc_history_box h2 {font-size: 25px;}
    .payment_history_wrap .payment_history_box {padding: 15px;border-radius: 15px;}
    .payment_history_box ul li .form-check {margin-bottom: 10px;}
    .detail_right_cont ul li .form-check {margin-bottom: 10px;}
    .payment_history_wrap .payment_history_box {width: 100%;}
    #payment_method {
        padding: 0 !important;
    }
    .payment_method_wrap .method_box {width: 100%;border-radius: 15px;}
    .privacy_policy_wrap ul li {font-size: 16px;}
    .privacy_policy_wrap p {font-size: 16px;}
    .privacy_policy_wrap h2 {font-size: 25px;}
    .contact_wrap .contact_box {width: 100%;padding: 15px;border-radius: 15px;}
    .product_banner .product_content {padding: 30px;}
    .product_banner .product_content .slider_right_img img {max-height: 200px;}
    .product_banner .product_content h2 {text-align: center;}
    .product_banner .product_content p {text-align: center;}
    .about_detail_wrap .right_about_detail h3 {margin-top: 20px;}
    .about_detail_wrap .right_about_detail p {font-size: 16px;}
    .team_detail_wrap .team_detail_box h3 {font-size: 25px;text-align: center;}
    .team_detail_wrap .team_detail_box h4 {text-align: center;}
    .team_detail_wrap .team_detail_box h5 {text-align: center;}
    .team_detail_wrap .team_detail_box p {font-size: 16px;text-align: center;}
    .team_wrap .team_title h4 {font-size: 20px;}
    .team_wrap .team_title h5 {font-size: 18px;}

    .norify_main_row {
        margin-bottom: 40px;
    }
    .customer_tab .tab-pane .notify_box.row {
        text-align: center;
        margin: 30px auto;
    }
    .customer_tab .tab-pane .notify_box .left_notify_cont img {
        width: auto;
    }
    .customer_tab .tab-pane .notify_box .middle_notify_cont h2 {
        font-size: 20px;
        margin-top: 10px;
        text-align: center;
    }
    .customer_tab .tab-pane .notify_box .middle_notify_cont p {text-align: center;font-size: 16px;line-height: 25px;}
    .customer_wrap .customer_tab ul.nav.nav-tabs {border: none;}
    .customer_wrap .customer_tab ul.nav.nav-tabs li.nav-item {margin-bottom: 15px;}
    .week_slider ul li {margin-bottom: 10px;}
    .customer_tab .add_leave h2 {text-align: center;font-size: 20px;}
    .customer_tab .add_leave h3 {text-align: center;font-size: 20px;margin-bottom: 15px;}
    .customer_tab #morning_tab1 table.time_day_table th {font-size: 15px;}
    .add_leave_wrap .new_leave_box {border-radius: 20px;padding: 20px;}
    .create_group_wrap .create_group_box {width: 100%;padding: 20px;border-radius: 20px;}
    .create_group_wrap .create_group_box ul li {width: 100%;}
    .create_group_wrap .create_group_box h3 {text-align: center;}
    .booking_sch_wrap .add_leave {padding: 10px;border-radius: 5px;}
    .booking_sch_wrap .title_leave h2 {text-align: center;margin-bottom: 15px;}
    .booking_sch_wrap .add_leave .right_upcoming h2 {text-align: center;margin-bottom: 15px;}
    .booking_sch_wrap .add_leave .new_book_sch_title {text-align: center;margin-bottom: 20px;}
    .recure_book_wrap .recure_box ul.recure_content li {width: 100%;}
    .recure_book_wrap .recure_box {padding: 15px;border-radius: 15px;}
}