:root {
    --green: #548235;
    --green2: #324525;
    --green3: #2D4D18;
    --lightgreen: #EDF4E7;
    --darkgray: #2E2E2E;
}


/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */
*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
    font-size: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: var(--darkgray);
    line-height: 24px;
    font-weight: 400;
}

*:not(a)::selection {
    background: var(--lightgreen);
}



input:focus,
textarea:focus,
button:focus {
    outline: 0;
    border: 0;
}

a {
    color: #333;
}

a:hover {
    color: var(--green2);
}

a,
a:hover {
    text-decoration: none;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
    list-style-type: none;
    margin: 0;
    padding: 0
}

img {
    max-width: 100%;
}

p:last-child {
    margin: 0;
}

/*------------------------------------*\
    		WRAPPER CSS
\*------------------------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.main {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*------------------------------------*\
    		BUTTON CSS
\*------------------------------------*/



.butn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    background: linear-gradient(90deg, #548235 41.25%, #FFC700 130.06%);
    color: #fff !important;
    transition: all.3s;
}

.border-butn {
    color: var(--green) !important;
    border: 1px solid var(--green);
    background: #fff;
}

.butn-green {
    background: var(--green);
}


.border-green {
    border-color: rgba(45, 77, 24, 0.5) !important;
}

.gradient-butn {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    overflow: hidden;
}

.gradient-butn:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #548235 41.25%, #FFC700 130.06%);
    z-index: -2;
}

.gradient-butn:after {
    content: '';
    display: block;
    position: absolute;
    background: #fff;
    z-index: -1;
    left: 3px;
    top: 2px;
    right: 2.5px;
    bottom: 3px;
    border-radius: 24px;
}

/*
.gradient-butn span{
	display: block;
	background: linear-gradient(90deg, #548235 41.25%, #FFC700 130.06%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	padding: 10px 20px;
	
}
*/

.dp-border {
    border: 2px solid var(--green);
}

.w-40 {
    min-width: 40px;
}

.mw-50 {
    min-width: 50px;
}

.text-justify {
    text-align: justify;
}

/*------------------------------------*\
		TYPOGRAPHY FONT CSS
\*------------------------------------*/


.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extrabold {
    font-weight: 800;
}

h1 {
    font-size: 30px;
    line-height: 45px;
}

h2 {
    font-size: 28px;
    line-height: 32px;
}

h3,
.fs-24 {
    font-size: 24px;
    line-height: 28px;
}

h4,
.fs-18 {
    font-size: 18px;
    line-height: 22px;
}

h5,
.fs-16 {
    font-size: 16px;
    line-height: 20px;
}

h6,
.fs-14 {
    font-size: 14px;
    line-height: 19px;
}

.fs-20 {
    font-size: 20px;
    line-height: 26px;
}

.fs-22 {
    font-size: 22px;
    line-height: 28px;
}

.fs-17 {
    font-size: 17px;
    line-height: 23px;
}

.fs-15 {
    font-size: 15px;
    line-height: 22px;
}

.fs-13 {
    font-size: 13px;
    line-height: 17px;
}

.fs-12 {
    font-size: 12px;
    line-height: 18px;
}

.fs-11 {
    font-size: 11px;
    line-height: 15px;
}

.fs-10 {
    font-size: 10px;
    line-height: 14px;
}

/*------------------------------------*\
		TEXT COLOR CSS
\*------------------------------------*/

.text-green {
    color: var(--green) !important;
}

.text-green2 {
    color: var(--green2) !important;
}

.text-green3 {
    color: var(--green3) !important;
}

.text-gray {
    color: #636363;
}

.text-black {
    color: #000;
}

.text-lightgray {
    color: #8d8d8d;
}

.rounded-8 {
    border-radius: 8px;
}

.text-696969 {
    color: #696969;
}


/*------------------------------------*\
    		FORM CSS
\*------------------------------------*/

input:not([type=checkbox]):not([type=radio]):not([type=submit]),
textarea,
select {
    width: 100%;
}

input::placeholder {
    color: rgba(50, 69, 37, 0.8) !important;
}

input:focus,
select:focus {
    outline: none;
}

input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}

textarea {
    resize: none;
}





/*------------------------------------*\
    		HEADER CSS
\*------------------------------------*/

.nav_area ul li a {
    color: var(--green2);
    font-size: 15px;
    font-weight: 500;
}

.nav_area ul li a img {
    margin-right: 3px;
}

.head-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: relative;
    background: var(--lightgreen);
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-icon span {
    display: block;
    width: 15px;
    height: 15px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    font-size: 9px;
    right: -3px;
    line-height: 14px;
    text-align: center;
    font-weight: 300;
}

.head-profile {
    min-height: 90px;
    width: 20%;
}

.head-profile a span {
    color: var(--green);
}

.active-menu {
    background: var(--lightgreen);
    color: var(--green);
}




.profile-dropdown ul li {
    padding: 17px;
    background-color: var(--lightgreen);
    margin-bottom: 2px;
}

.profile-dropdown ul li a {
    color: var(--green);
    font-size: 16px;
}

.profile-dropdown {
    top: 19px !important;
    border: none;
    min-width: 207px;
    left: 16px !important;
}

.user-notification {
    max-width: 388px;
    padding: 0;
    top: 25px !important;
    border-radius: 10px;

}

.user-notification.dropdown-menu .friend-notifications {
    overflow-y: auto;
    height: 390px;
}


.user-notification ul::-webkit-scrollbar {
    width: 5px;
    background: var(--lightgreen);
}

.user-notification ul::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 10px;
}

.popup-menu[aria-hidden="true"] {
    display: none;
}

.popup-menu {
    position: absolute;
    background: #fff;
    right: 0;
    margin-top: 5px;
    z-index: 9;
    padding: 10px 0;
    min-width: 175px;
}

.notification-item {
    margin-bottom: 3px;
}

.notification-item:hover {
    background-color: var(--lightgreen);
}


/*------------------------------------*\
    		FOOTER CSS
\*------------------------------------*/
.footer-menu a,
.footer-social li a {
    color: #28371D;
}

.footer-logo:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #324525;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: .2;
}

.footer-logo a {
    position: relative;
    z-index: 9;
}

.footer-logo {
    margin: -40px auto;
    z-index: -1;
}

/*------------------------------------*\
    		FORM CSS
\*------------------------------------*/

input:not([type=checkbox]):not([type=radio]):not([type=submit]),
textarea,
select {
    width: 100%;
}

input::placeholder {
    color: #76777E;
}

input:focus,
select:focus {
    outline: none;
}

input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}

textarea {
    resize: none;
}

.site-form input,
.site-form textarea,
.site-form select {
    background: #FFFFFF;
    border: 1.5px solid rgba(50, 69, 37, 0.3);
    border-radius: 8px;
    font-weight: 300;
    font-size: 13px;
    line-height: 21px;
    padding: 12px 20px;
    color: var(--green);
}

.site-form input::placeholder,
.site-form textarea::placeholder {
    color: var(--green);
}


/*------------------------------------*\
    		INDEX
\*------------------------------------*/
.text-black {
    color: #000;
}

.home-banner {
    background: linear-gradient(178.13deg, #FFFFFF -2.23%, rgba(96, 162, 52, 0.13) -2.22%, rgba(255, 255, 255, 0) 98.42%);
}

.home-banner .left-side::after {
    content: '';
    position: absolute;
    background: url('../img/banner-bg.png') no-repeat;
    bottom: 0px;
    left: 0px;
    height: 360px;
    width: 390px;
    z-index: -1;
}

.home-banner h1 span {
    font-size: 48px;
}

.home-banner h1 {
    font-size: 40px;
}

.fs-26 {
    font-size: 26px;
    line-height: 39px;
}

.parent-section {
    background: var(--lightgreen);
}

.fs-30 {
    font-size: 30px;
    line-height: 45px;
}

.parent-section {
    position: relative;
    z-index: 1;
}

.parent-section p,
.coache-section p,
.facility-section p {
    max-width: 380px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.parent-section p::before,
.coache-section p::before,
.facility-section p::before {
    content: '';
    width: 6px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #D9D9D9;
    border-radius: 13px;
}

.parent-section .left-side::after {
    content: '';
    background: url('../img/parent-bg.png') no-repeat;
    position: absolute;
    width: 655px;
    height: 540px;
    right: -115px;
    top: 25px;
    z-index: -1;
}

.cocha-type h3 {
    color: #304D1D;
    font-size: 35px;
    line-height: 42px;
}

.cocha-type ul li {
    font-size: 20px;
    line-height: 40px;
    color: #28371D;
}

.testimonial h3 {
    font-size: 35px;
}

.testimonial {
    margin-left: -25px;
}

.testimonial .content {
    padding: 20px 30px;
    border-radius: 33px;
    max-width: 340px;
    z-index: 0;
    margin-left: -25px;
}

.testimonial .content span {
    color: #535252;
}

.testimonial img {
    z-index: 1;
}

.testimonial .testimonial-right {
    margin-left: -25px;
}

.testimonial h6 {
    line-height: 24px;
}

.facility-section {

    background-image: url('../img/facility-bg.png'), linear-gradient(0deg, #1E5114, #1E5114);
    background-size: cover;
}

.facility-section .butn {
    background: transparent;
}

/* .facility-section::after{
	content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(0deg, #1E5114, #1E5114);
} */
.team-section h3 {
    font-size: 40px;
}

.team-section a {
    color: #bababa;
}

.footer-top h2 {
    font-size: 41px;
    line-height: 61px;
}

.footer-top::before {
    content: '';
    display: block;
    width: 100%;
    height: 120px;
    background: url(../img/footer-shape.png) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    background-position: top;
    z-index: -1;
}

.footer-top .subscribe {
    background-color: #fff;
    max-width: 1000px;
    border-radius: 10px;
    position: relative;
}

.footer-top .subscribe::after {
    content: '';
    position: absolute;
    background: #324525;
    opacity: 0.2;
    filter: blur(27.1828px);
    border-radius: 2px;
    height: 120px;
    width: 100%;
    top: 0px;
    left: 0;
    z-index: -1;
}

.index .footer {
    border-top: none !important;
}


.video-slider.owl-theme .owl-nav [class*="owl-"] {
    background-color: transparent;
    border: 1.5px solid #fff;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-content {
    z-index: 2;
}

.support-content:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(35, 85, 40, 0.77);
    backdrop-filter: blur(2.5px);
    top: 0;
    left: 0;
    z-index: -1;
}

.support-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('../img/support-img.png') no-repeat center;
    z-index: 0;
}

.slider-section:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #2a7331;
}


.support-content {
    z-index: 2;
    position: absolute;
    width: 50%;
}

.support-section:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(35, 85, 40, 0.77);
    backdrop-filter: blur(2.5px);
    top: 0;
    left: 0;
}

.support-section img {
    object-fit: cover;
}

.slider-section {
    background-color: #2a7331;
}

/*------------------------------------*\
    		LOGIN
\*------------------------------------*/
.google-login {
    border: 1px solid rgba(50, 69, 37, 0.3);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwd-visibility {
    top: 40px;
    right: 20px;
}

/*------------------------------------*\
    		SIGN-UP
\*------------------------------------*/
.field-phone input[type=tel] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.lang-select .selected-lang {
    min-width: 100px;
    height: 47px;
    background: #fff;
    background-image: url(../img/icon/downarrow.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    display: block;
    border: 1.5px solid rgba(50, 69, 37, 0.3);
    border-radius: 8px 0px 0px 8px;
    border-right: 0;
}

.lang-select span.selected-lang>li {
    font-size: 13px;
    padding: 12px 25px 10px 15px;
    display: flex;
    gap: 7px;
    align-items: center;
}

#lang_list li img,
.lang-select .selected-lang img {
    width: 25px;
}


.lang-select {
    position: relative;
}

.lang-dropdown {
    display: none;
    width: 83px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0 0 5px 5px;
    z-index: 9;
    position: absolute;
    background: #fff;
    left: 10px;
}

ul#lang_list li {
    padding: 5px;
}

ul#lang_list li img {
    margin-right: 5px;
}



ul#lang_list li:hover {
    background: var(--lightgreen);
}


.sign-up .icon-box {
    border: 1.5px solid rgba(50, 69, 37, 0.3);
    border-radius: 8px;
    padding: 13px;
    transition: all .4s;
}

.sign-up .icon-box:hover {
    background: var(--lightgreen);
}

/*------------------------------------*\
    		USER-PROFILE-COMPLETE
\*------------------------------------*/
.bg-lightgreen {
    background-color: var(--lightgreen) !important;
}

.profile-thumb {
    width: 100px;
    height: 100px;
}

.profile-thumb .profile-pic {
    width: 100px;
    height: 100px;
    border: 6px solid var(--green);
    background: #fff;
    object-fit: cover;
}

.profile-upload {
    width: 100px;
    height: 50px;
    background: rgba(0, 0, 0, 0.52);
    cursor: pointer;
}

.custom-select .lang-select .selected-lang {
    height: 45px;
    border: none;
    border-right: 1px solid rgba(50, 69, 37, 0.3);
    ;
}

.site-form select {
    background-image: url(../img/icon/downarrow.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    -webkit-appearance: none;
}

.gray-butn {
    background: #acacac !important;
}

.monthly {
    border-radius: 8px;
    border: 1.5px solid rgba(50, 69, 37, 0.3);
}

.btn-group button {
    min-width: 142px;
}

/*------------------------------------*\
    		COACH-PROFILE-COMPLETE
\*------------------------------------*/

.coach-profile-form .upload-file {
    padding: 14px;
    cursor: pointer;
    border-radius: 8px;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid rgba(135, 135, 135, 0.5) !important;
    border-radius: 8px !important;
    padding: 5px 0px 3px 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    position: absolute;
    right: 5px;
    color: #fff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #F4F3F3;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 300;
    color: var(--green);
    padding: 2px 25px 2px 9px !important;
    position: relative;
    line-height: 24px;
    border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove::after {
    content: '';
    display: block;
    background: url(../img/icon/close.svg) no-repeat;
    height: 11px;
    width: 11px;
    position: absolute;
    right: -2px;
    top: 6px;
}

.select2-selection__clear {
    display: none;
}

.select2-container--default .select2-search--inline .select2-search__field,
.select2-container {
    width: 100% !important;
}

/*------------------------------------*\
    	FACILITY-PROFILE-COMPLETE
\*------------------------------------*/
.custom-pic,
.add-pic {
    border: 1.5px solid rgba(50, 69, 37, 0.3);
    border-radius: 8px;
    width: 110px;
    height: 110px;
    cursor: pointer;
}

/*------------------------------------*\
    		USER LANDING
\*------------------------------------*/

.home-banner h1 span {
    font-size: 48px;
}

.home-banner h1 {
    font-size: 40px;
}

.user-box img {
    border: 2px solid var(--green);
}

.feed-item {
    padding: 15px;
}



.feed-col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3px;
}

.feed-col3 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 3px;
    grid-row-gap: 3px;
}

.feed-col3>*:nth-child(n + 1) {
    grid-column: span 3;
}

.feed-col3>*:first-child {
    grid-column: span 6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feed-col4,
.feed-multiple {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 3px;
    grid-row-gap: 3px;
}

.feed-col4>*,
.feed-multiple>* {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.feed-gallery span.feed-more-gal {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    line-height: 70px;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 500;
    transition: all .4s;
    border-radius: 50%;
}

.feed-gallery>*:last-child:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, .5); */
    position: absolute;
}

.feed-video>a {
    background: rgba(0, 0, 0, 0.15);
    display: flex;
}

.modal-close {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 10px;
}

#createpost .modal-dialog {
    max-width: 532px;
}

#createpost .modal-dialog .upload-file {
    padding: 14px;
    cursor: pointer;
    border-radius: 11px;
}
#commentModal .modal-dialog .upload-file {
    padding: 14px;
    cursor: pointer;
    border-radius: 11px;
}

.people-list {
    border: 1px solid rgba(50, 69, 37, 0.3);
    padding: 13px;
    border-radius: 9px;
}



/*----------------------------------------*\
    		MY-SCHEDULE-USER & PLAYER
\*----------------------------------------*/
.schedule-user input[type=date] {
    padding: 12px 16px;
    border: 1px solid rgba(50, 69, 37, 0.3);
    position: relative;
}


/* 
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
} */

.schedule-user .custom-date {
    background-image: url(../img/icon/calendar.svg);
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding: 12px 12px 12px 40px !important;
}

/* input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
} */


.taglist li {
    background: var(--lightgreen);
    color: var(--green);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 400;
}

.paginations span {
    color: #878787;
}

.paginations a {
    display: inline-block;
    border: 1px solid #878787;
    color: #878787;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 0 .5%;
    transition: all .3s ease-in;
}

.paginations .btn-active,
.paginations .page-active,
.paginations a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}



/**********/

.range-slider {
    width: 100%;
    height: 44px;
    margin-top: 20px;
}

.range-slider input {
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 18px;
    width: 100%;
    outline: none;
    height: 18px;
    margin: 0;
    padding: 0;
}

.range-slider input::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    z-index: 1;
    outline: 0;
}

.range-slider input::-moz-range-thumb {
    pointer-events: all;
    position: relative;
    z-index: 10;
    -moz-appearance: none;
    width: 9px;
}

.range-slider input::-moz-range-track {
    position: relative;
    z-index: -1;
    background-color: rgba(0, 0, 0, 1);
    border: 0;
}

.range-slider input:last-of-type::-moz-range-track {
    -moz-appearance: none;
    background: none transparent;
    border: 0;
}

.range-slider input[type=range]::-moz-focus-outer {
    border: 0;
}

.rangeValue {
    width: 30px;
}

.output {
    position: absolute;
    background: var(--green);
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border-radius: 4px 4px 0 0;
    display: inline-block;
    bottom: 75%;
    left: 50%;
    transform: translate(-50%, 0);
}

span.output.outputOne,
span.output.radiusOne {
    margin-left: 20px;
}

.output.outputTwo {
    left: 85%;
    margin-left: -35px;
}

.output.radiusTwo {
    margin-left: -25px;
}

.output:after {
    content: '';
    border-top: 5px solid var(--green);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    bottom: -4px;
    left: 5px;
}

.output.outputTwo::after,
span.output.radiusTwo:after {
    right: 5px;
    left: auto;
}



input[type=range] {
    -webkit-appearance: none;
    background: none;
}

input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    border: none;
    border-radius: 3px;
    background: transparent;
}

input[type=range]::-ms-track {
    height: 5px;
    background: transparent;
    border: none;
    border-radius: 3px;
}

input[type=range]::-moz-range-track {
    height: 5px;
    background: transparent;
    border: none;
    border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--green);
    ;
    margin-top: -5px;
    position: relative;
    z-index: 10000;
}

input[type=range]::-ms-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--green);
    ;
    margin-top: -5px;
    position: relative;
    z-index: 10000;
}

input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--green);
    ;
    margin-top: -5px;
    position: relative;
    z-index: 10000;
}

input[type=range]:focus {
    outline: none;
}

.full-range,
.incl-range,
.incl-radius {
    width: 100%;
    height: 5px;
    left: 0;
    top: 25px;
    position: absolute;
    background: rgba(84, 130, 53, 0.32);
    border-radius: 5px;
}

.incl-range,
.incl-radius {
    background: var(--green);
}


/********************/

#addreview .modal-dialog {
    max-width: 670px;
}


.square-summ-img {
    object-fit: cover;
}

/********************/
.job-table-container {
    overflow-x: auto;
}

.job-table {
    border-collapse: separate;
    border-spacing: 0 19px;
    width: 100%;
    table-layout: fixed; /* Ensures that table layout is fixed */
}

.job-table th, .job-table td {
    width: 23%; 
}
/* .job-table th:first-child, .job-table td:first-child {
    width: 15%;
} */

.job-table .table-head th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.job-table .table-head th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.job-table .table-head th {
    padding: 14px 16px;
    font-weight: 400;
}

.job-action-btn {
    width: 44px;
    height: 44px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--lightgreen);
}

.job-action-btn img {
    width: 20px;
}

.job-table tr td {
    padding: 14px 20px;
}

.job-table tr.border {
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(50, 69, 37, 0.2);
}

.text-green4 {
    color: #0DC941;
}

.text-orange {
    color: #E36D00;
}

.job-table tbody tr td {
    position: relative;
}

.job-table tbody tr td:first-child::before {
    display: none;
}

.job-table tbody tr td::before {
    content: '';
    /* width: 1px; */
    height: calc(100% - 26px);
    background-color: rgba(50, 69, 37, 0.1);
    position: absolute;
    top: 15px;
    left: 0;
}


/* .job-table {
    border-collapse: separate;
    border-spacing: 0 19px;
}

.job-table .table-head th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.job-table .table-head th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.job-table .table-head th {
    padding: 14px 16px;
    font-weight: 400;
}

.job-action-btn {
    width: 44px;
    height: 44px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--lightgreen);
}

.job-action-btn img {
    width: 20px;
}

.job-table tr td {
    padding: 14px 20px;
}

.job-table tr.border {
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(50, 69, 37, 0.2);
}

.text-green4 {
    color: #0DC941;
}

.text-orange {
    color: #E36D00;
}

.job-table tbody tr td {
    position: relative;
}

.job-table tbody tr td:first-child::before {
    display: none;
}

.job-table tbody tr td::before {
    content: '';
    width: 1px;
    height: calc(100% - 26px);
    background-color: rgba(50, 69, 37, 0.1);
    position: absolute;
    top: 15px;
    left: 0;
} */

/*********** GALLERY ************/

.gal-remove {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-edit-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.group-butn .butn {
    min-width: 142px;
}

/*********** manage-availability-facility ************/

.site-form .form-field .location-field {
    background: #fff url(../img/icon/pin.svg) no-repeat left 15px center;
    padding-left: 42px;
}

.location-field {
    background: #fff url(../img/icon/pin.svg) no-repeat left 0px center;
    padding-left: 20px;
}

.timing-input input {
    background: #fff;
    border-radius: 5px;
    padding: 6px;
    width: 100px !important;
    border: 0;
    margin-top: 5px;
}

.form-switch .form-check-input {
    background-repeat: no-repeat;
    background-color: #A4A4A4;
    padding: 10px 20px;
    border: 0;
}

.form-switch .form-check-input:checked {
    background-color: var(--green);
    border-color: var(--green);
}

.form-switch .form-check-input:focus {
    border-color: var(--green);
    outline: 0;
    box-shadow: none;
    background-image: url(../img/icon/black-dot.svg);
    background-size: 15px;
}

.available-table tr td {
    padding: 10px 0;
}

.available-table tr td.timing-input {
    align-items: center;
    display: flex;
    gap: 3px;
}

.location-radio {
    width: 23px;
    height: 23px;
    accent-color: var(--green);
}

.resume-radio {
    width: 15px;
    height: 15px;
    accent-color: var(--green);
}

.time-slot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 7px;
    max-width: 340px;
}

.time-slot input:checked~label {
    background: #d8d8d8;
}

.time-slot label {
    border: 1px solid rgba(50, 69, 37, 0.3) !important;
    border-radius: 30px !important;
    padding: 8px 15px !important;
    display: block;
    text-align: center;
    white-space: nowrap;
}

.modal-content {
    border-radius: 15px;
}

.coach-box {
    border-radius: 20px;
}


/*----------------------------------------*\
    	    JOBS-DETAIL
\*----------------------------------------*/
.listing {
    margin-left: 20px;
}

.listing li {
    font-size: 15px;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 5px;
    list-style: disc;
}

.job-detail-btn {
    min-width: 328px;
}

.job-apply {
    padding: 14px;
    background: rgba(84, 130, 53, 0.3);
}


/*----------------------------------------*\
    	MY-BOOKING-UPCOMING-BOOKING
\*----------------------------------------*/
.text-434343 {
    color: #434343;
}

.text-878787 {
    color: #878787;
}

.text-blue {
    color: #1877F2;
}

.booking-table tr td h6 {
    line-height: 21px;
}

.booking-table tbody tr td::before {
    display: none;
}


/*----------------------------------------*\
    	        USER-MESSAGE
\*----------------------------------------*/
.message-search {
    background: #EDF4E7;
    border-radius: 8px;
    padding: 10px;
}

.message-search input::placeholder {
    color: rgba(50, 69, 37, 0.8);
    font-size: 13px;
    font-weight: 300;
}

.message-request span {
    color: rgba(46, 46, 46, 0.51);
}

.user-status {
    position: absolute;
    bottom: 0;
    transform: translate(-50%, 50%);
    top: 50%;
    left: 50%;
}

.user-messages li.message-item img {
    min-width: 60px;
}

.user-messages li:first-child {
    border-radius: 8px 8px 0px 0px;
}

.userchat {
    background: #EDF4E7;
    margin-bottom: 2px;
}

.userchat:hover {
    background: rgba(116, 223, 45, 0.24);
}

.msg-listing {
    height: 520px;
    overflow: auto;
}

.message-person {
    background: #EDF4E7;
    border-radius: 8px;
}

.msg-item {
    background: #F1F1F1;
    border-radius: 10px 10px 10px 0px;
    padding: 16px 16px 8px;
    font-size: 14px;
    line-height: 18px;
    max-width: 300px;
}

.msg-time {
    max-width: 160px;
}

.reply-msg {
    background: #DEF8CD;
    margin-left: auto;
    border-radius: 10px 10px 0px 10px;
}

.send-msg {
    padding: 14px 20px;
}

.inbox-msg-list {
    height: 560px;
    overflow: auto;
}

@media (max-width: 768px) {
    .inbox-msg-list {
        height: auto; 
        overflow: visible;
    }
}

.msg-left-sidebar::-webkit-scrollbar,
.msg-listing::-webkit-scrollbar {
    display: none;
}

.message-request a {
    color: rgba(46, 46, 46, 0.51);
}

.message-request a.active {
    color: var(--green);
}


.coache-section .coache-right-img {
    box-shadow: 22px 22px 20px -10px #cbd4c6;
    border-radius: 30px;
}

.coache-section .right-side::after {
    content: '';
    position: absolute;
    top: -150px;
    right: 0;
    background: url(../img/testimonial-bg.png) no-repeat;
    width: 688px;
    height: 765px;
    z-index: -1;
}

.coache-section .testimonial img {
    border: 1px solid var(--green);
}

.testimonial .testimonial-right-img {
    margin-left: -25px;
}


/* video::-webkit-media-controls-panel {
    background: url('../img/icon/green-video-play.svg') no-repeat;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

video::-webkit-media-controls-timeline {
    display: none;
} */

.custom-loader .http-loader {
    display: block !important;
}

.http-loader {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.http-loader:after {
    content: "";
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: #548235;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
}

.custom-otp-input {
    width: 40px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* .head-profile{
    width: 20%;
    padding-right: 0.5rem !important;
}
.name-span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 43%;
} */
.search-location-input {
    width: 65%;
}

.search-location-input div:first-child {
    width: 100%;
}

.add-location-link {
    float: right;
    font-size: 20px;
}

.capitalize {
    text-transform: capitalize;
}

.map-filed .location-field {
    border: 1.5px solid rgba(50, 69, 37, 0.3) !important;
}

.location-window {
    position: relative;
}

.location-delete {
    position: absolute;
    right: 10px;
    top: 10px;
}

.icon-box.active {
    border-color: green;
    background: #EDF4E7;
}

.user-pp-left-nav {
    width: 60px;
    height: 60px;
    display: inline-block;
}

.user-pp-left-nav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-pp-top-nav {
    width: 50px;
    height: 50px;
    display: inline-block;
}

.user-pp-top-nav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-pp-80 {
    width: 80px;
    height: 80px;
    display: inline-block;
}

.user-pp-80 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-p{
    cursor: pointer;
}
.w-85{
    width: 85%;
}
.ceri-gallery{
    left: 30px !important;
    /* top: -17px; */
    height: 14px!important;
    width: 14px!important;
    top: -18px!important;
}
/* textarea:focus{
    border: 1px solid red !important
} */
.time-star{
    font-size: 9px !important;
}

.profile-info .dp-border {
    object-fit: cover;
}

.kep-login-facebook{
    background-color: transparent !important;
    border: none !important;
}

.kep-login-facebook img{
    max-width: unset !important;
}
.carousel-img{
    min-height: 350px !important;
    max-height: 350px !important;
    object-fit: cover;
}

/* Change the header toolbar color */
.rbc-toolbar {
background-color: #EDF4E7;
color: #548235;
}

/* Change the color of the toolbar buttons */
.rbc-toolbar button {
color: #548235;
}

/* Change the background color of events */
.rbc-event {
background-color: #EDF4E7 !important;
color: #548235 !important; 
/* min-height: 50px !important; */
}
  
.rbc-event-content {
white-space: normal;
}

.rbc-event-label {
    /* display: none !important; */
}

.custom-calendar .rbc-event-label {
    font-size: 10px; 
    padding: 0px
}

.rbc-today {
    background-color: #d9f7bf !important;
}

.custom-calendar .rbc-month-row {
    min-height: 110px !important; /* Increase the minimum height of each row */
    /* max-height: 100px; */
  }
  
.custom-calendar .rbc-row-content {
min-height: 100px; 
}

.custom-calendar .rbc-month-row .rbc-event {
    max-height: 100px !important;
    min-height: 70px;
}

.custom-calendar .rbc-event {
/* min-height: 50px !important; */
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.custom-calendar .rbc-time-view .rbc-event {
    min-height: 90px !important;
}

.custom-calendar .rbc-time-slot {
    min-height: 90px;
}

.custom-calendar .rbc-time-header {
    /* height: 100px !important;  */
}

.custom-dropdown-toggle {
    border: none !important;
    background-color: #EDF4E7;
    color: #548235;
}

.custom-dropdown-toggle:hover,
.custom-dropdown-toggle:focus,
.custom-dropdown-toggle:active,
.custom-dropdown-toggle.show {
background-color: #EDF4E7 !important;
color: #548235 !important;
}

.custom-dropdown-toggle:focus {
box-shadow: none !important;
}

.custom-toolbar-button {
    color: #548235 !important;
    background-color: transparent !important;
    border: none;
    margin: 0 5px;
    padding: 5px 10px;
    cursor: pointer;
  }
  
  .custom-toolbar-button:hover,
  .custom-toolbar-button:focus,
  .custom-toolbar-button:active {
    background-color: #66bb6a !important; 
    color: white !important;
}

.btn-outline-secondary {
    /* border: none; */
}

.btn-outline-secondary.bg-success {
background-color: #4CAF50 !important;
}

.btn-outline-secondary.bg-success:hover {
background-color: #45a049 !important;
}

.input-btn {
    position: absolute;
    right: 0;
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 60px;
    background: linear-gradient(90deg, #548235 100%, #FFC700 100%);
    border-radius: 60px;
}

.image-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pac-container {
    background-color: #FFF;
    z-index: 2001;
    position: absolute !important;
}
.modal{
    z-index: 2000;
}
.modal-backdrop{
    z-index: 1000;
}

.custom-swal-popup {
    z-index: 9999 !important;
}