@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/
@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');
/* font-family: "Poppins", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*  font-family: "Inter", sans-serif; */



:root {
	--darkBlue: #1F2937;
	--white: #fff;
	--sky: #00AEEF;
	--grey: #4B5563;
	--lightGrey: #6B7280;
}

figure {
	margin: 0;
}

body {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	color: var(--darkBlue);
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

p {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

p a {
	text-decoration: none;
	color: inherit;
}

p a:hover {
	color: var(--sky);
}

ul li,
ol li {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ul li a,
ol li a {
	text-decoration: none;
	color: inherit;
}

ul li a:hover,
ol li a:hover {
	color: var(--sky);
}

/* Common Style Start */
.banner-title {
	font-size: 56px;
	line-height: 80px;
	font-weight: 700;
}

.banner-title * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.main-title {
	font-size: 48px;
	line-height: 72px;
	font-weight: 700;
}

.main-title * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.section-title {
	font-size: 36px;
	line-height: 52px;
	font-weight: 700;
}

.section-title * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.block-title {
	font-size: 30px;
	line-height: 42px;
	font-weight: 600;
}

.block-title * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.small-block-title {
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}

.small-block-title * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.small-title {
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
}

.small-title * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.common-detail * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.font-weight-700 {
	font-weight: 700;
}

.font-weight-500 {
	font-weight: 500;
}

.font-weight-400 {
	font-weight: 400;
}

.detail {
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.detail * {
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.btn {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	border: none;
	padding: 11px 20px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.btn-white {
	border: 1px solid #E5E7EB;
	background-color: var(--white);
	color: var(--darkBlue);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
	border-color: var(--sky) !important;
	background-color: var(--sky) !important; 
	color: var(--white) !important;
}

.btn-sky {
	background-color: var(--sky);
	color: var(--white);
}

.btn-sky:hover,
.btn-sky:focus,
.btn-sky:active {
	background-color: var(--grey) !important;
	color: var(--white) !important;
}

.btn-sky-border {
	border: 1px solid var(--sky);
	color: var(--sky);
}

.btn-sky-border:hover,
.btn-sky-border:focus,
.btn-sky-border:active {
	background-color: var(--sky) !important;
	color: var(--white) !important;
}

.btn-grey-border {
	border: 1px solid #E5E7EB;
	color: var(--darkBlue);
}

.btn-grey-border:hover,
.btn-grey-border:focus,
.btn-grey-border:active {
	background-color: var(--darkBlue) !important;
	color: var(--white) !important;
}

.btn-blue {
	background-color: var(--darkBlue);
	color: var(--white);
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active {
	background-color: var(--sky) !important;
	color: var(--white) !important;
}
/* Common Style End */

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header {
	background-color: var(--darkBlue);
	padding: 18px 0;
	position: relative;
	z-index: 999;
}

.header .navbar {
	padding: 0;
}

.header .navbar-brand {
	padding: 0;
	margin: 0;
	max-width: 250px;
	width: 100%;
}

.header .navbar-brand figure {
	display: flex;
}

.header .navbar-brand img {
	width: 100%;
}

.header .navbar-nav .nav-item {
	padding: 0 12px;
}

.header .navbar-nav .nav-item .nav-link {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: var(--white);
	padding: 0;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link.active {
	color: var(--sky);
}

.header-btns {
	display: flex;
	gap: 24px;
}
/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/

/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

/*========== Home Page Start ==========*/
.banner-wrp {
	padding: 80px 0;
}

.banner-left {
	max-width: 708px;
	width: 100%;
}

.banner-left .banner-title {
	margin: 0 0 24px;
}

.banner-left .small-title {
	max-width: 601px;
	width: 100%;
	margin: 0 0 40px;
}

.banner-btns {
	display: flex;
	gap: 24px;
}

.banner-btns .btn {
	padding: 15px 24px;
}

.banner-img {
	margin: 0 0 0 -40px;
}

.banner-img img {
	width: 100%;
	object-fit: cover;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.services-wrp {
	background-color: var(--white);
	padding: 80px 0 56px;
}

.services-main .row {
	margin: 0 -12px;
}

.services-main .row>* {
	padding: 0 12px;
}

.services-section .small-block-title {
	text-align: center;
	margin: 0 0 40px;
} 

.services-section:first-child {
	padding: 0 0 40px;
}

.services-block {
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%), linear-gradient(90deg, #F0FDF4 0%, #EFF6FE 100%);
	background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%), linear-gradient(90deg, #F0FDF4 0%, #EFF6FE 100%);
	background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%), linear-gradient(90deg, #F0FDF4 0%, #EFF6FE 100%);
	text-align: center;
	padding: 36px;
	margin: 0 0 24px;
	height: calc(100% - 24px);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.services-icon {
	margin: 0 0 24px;
}
/*========== Home Page End ==========*/

/*========== Login Page Start ==========*/
.common-block {
	background-color: var(--white);
	border: 0px solid #E5E7EB;
	-moz-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.10), 0px 20px 25px 0px rgba(0, 0, 0, 0.10);
	-webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.10), 0px 20px 25px 0px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.10), 0px 20px 25px 0px rgba(0, 0, 0, 0.10);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.login-wrp {
	padding: 80px 0;
}

.login-main {
	max-width: 448px;
	width: 100%;
	margin: 0 auto;
	padding: 32px;
}

.login-title {
	text-align: center;
	margin: 0 0 24px;
}

.login-title .block-title {
	line-height: 36px;
	font-weight: 700;
	margin: 0 0 12px;
}

.login-title .detail {
	color: var(--grey);
}

.common-form .form-label {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	margin: 0 0 8px;
	display: block;
}

.common-form .form-group {
	margin: 0 0 20px;
}

.common-form .form-control,
.common-form .form-select {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding: 11px 12px;
	color: var(--darkBlue);
	box-shadow: none;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.common-form textarea {
	min-height: 136px;
	resize: none;
}

.login-main .common-form .form-control {
	padding: 11px 44px;
}

.common-form .form-control::placeholder {
	color: var(--lightGrey);
}

.form-icon-block {
	position: relative;
}

.form-icon {
	position: absolute;
	top: 50%;
	left: 13px;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.remember-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 20px;
}

.common-form .form-check {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	min-height: auto;
}

.common-form .form-check-label {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

.common-form .form-check-input {
	width: 16px;
	height: 16px;
	float: none;
    margin: 0 6px 0 0;
	box-shadow: none;
	border: 2px solid var(--darkBlue);
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.common-form .form-check-input:checked {
	background-color: var(--darkBlue);
}

.forgot-password {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: var(--sky);
	text-decoration: underline;
}

.forgot-password:hover {
	color: var(--darkBlue);
}

.form-btn .btn {
	display: block;
	width: 100%;
}

.dont-have-account {
	text-align: center;
	margin: 24px 0;
	position: relative;
	z-index: 9;
}

.dont-have-account::after {
	content: "";
	background-color: #E5E7EB;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: -1;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.dont-have-account p {
	font-size: 16px;
	line-height: 24px;
	color: var(--lightGrey);
	background-color: var(--white);
	max-width: max-content;
	margin: 0 auto;
	padding: 0 8px;
}

.register-btns {
	display: flex;
	justify-content: center;
	gap: 20px;
}

/*========== Login Page End ==========*/

/*========== Club Registration Page Start ==========*/
.registration-main {
	max-width: 520px;
	width: 100%;
	margin: 0 auto;
	padding: 32px 24px;
}

.registration-detail ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.registration-detail ul li {
	font-size: 12px;
	line-height: 18px;
	color: var(--grey);
	list-style-type: none;
	padding: 0 10px;
	position: relative;
}

.registration-detail ul li::after {
	content: "";
	width: 4px;
	height: 4px;
	position: absolute;
	right: -2px;
	top: 50%;
	background-color: #9CA3AF;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.registration-detail ul li:last-child::after {
	display: none;
}

.registration-detail ul li:first-child {
	padding-left: 0;
}

.registration-detail ul li:last-child {
	padding-right: 0;
}

.registration-main .form-group {
	display: flex;
}

.registration-main .common-form .form-control::placeholder {
	color: var(--grey);
} 

.registration-main .common-form .form-label {
	max-width: 140px;
	width: 100%;
	flex: 0 0 auto;
	margin: 0 8px 0 0;
}
/*========== Club Registration Page End ==========*/

/*========== Player Registration Page Start ==========*/
.experience-block {
	padding: 0 0 0 3px;
}

.common-form .experience-block .form-check-input {
	width: 18px;
	height: 18px;
	border-color: var(--grey);
	margin: 0 11px 0 0;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}

.experience-block .form-check {
	margin: 0 0 12px;
}

.experience-block .form-check:last-child {
	margin-bottom: 0;
}

.common-form .experience-block .form-check-input:checked {
	background-color: #045694;
	border-color: #045694;
	background-image: url("../images/check-icon.svg");
	background-repeat: no-repeat;
	background-size: 12px 9px;
}

.file-upload .detail {
	color: var(--grey);
}

.upload-icon {
	margin: 0 0 12px;
} 

.file-upload {
	text-align: center;
	width: 100%;
	position: relative;
	border: 1px dashed #E5E7EB;
	padding: 16px 12px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.file-upload input[type="file"] {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 0;
	opacity: 0;
} 
/*========== Player Registration Page End ==========*/

/*========== How It Works Page Start ==========*/
.how-it-works-wrp {
	padding: 80px 0 56px;
}

.how-it-works-title {
	text-align: center;
	margin: 0 0 40px;
}

.how-it-works-title .main-title {
	margin: 0 0 24px;
}

.how-it-works-title .common-detail {
	font-weight: 500;
	color: #374151;
}

.how-it-works-row .row {
	margin: 0 -12px;
}

.how-it-works-row .row>* {
	padding: 0 12px;
}

.how-it-works-block {
	padding: 20px;
	background-color: var(--white);
	border: 1px solid #E5E7EB;
	position: relative;
	height: calc(100% - 24px);
	margin: 0 0 24px;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}

.how-it-works-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 24px;
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.how-it-works-detail .block-title {
	margin: 0 0 8px;
}

.how-it-works-detail .small-title {
	line-height: 32px;
	font-weight: 400;
	color: var(--grey);
}

.how-it-works-step {
	background-color: #F3F4F6;
	position: absolute;
	right: 24px;
	top: 24px;
	padding: 8px 16px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.how-it-works-step .detail {
	font-weight: 500;
}

.trust-wrp {
	background-color: var(--white);
	padding: 80px 0;
}

.trust-main .main-title {
	text-align: center;
	margin: 0 0 40px;
}

.trust-section .row {
	margin: 0 -16px;
}

.trust-section .row>* {
	padding: 0 16px;
}

.trust-section .services-icon {
	width: 64px;
	height: 64px;
	padding: 3px;
	margin: 0 auto 24px;
}

.trust-section .services-block {
	padding: 36px 12px;
	position: relative;
	height: 100%;
	margin: 0;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.trust-section .services-block::after {
	content: "";
	border-right: 1px solid #E5E7EB;
	position: absolute;
	right: -16px;
	top: 0;
	bottom: 0;
}

.trust-section .row>*:last-child .services-block::after {
	display: none;
}

.trust-section {
	padding: 16px;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}
/*========== How It Works Page End ==========*/

/*========== Contact Page Start ==========*/
.contact-wrp .main-title {
	padding: 80px 20px;
	text-align: center;
}

.contact-main {
	padding: 80px 0;
	background-color: var(--white);
}

.contact-section {
	padding: 32px;
	background-color: var(--white);
	-moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02), 4px 8px 44px 0px rgba(0, 0, 0, 0.04);
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02), 4px 8px 44px 0px rgba(0, 0, 0, 0.04);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02), 4px 8px 44px 0px rgba(0, 0, 0, 0.04);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.contact-section .row {
	margin: 0 -20px;
}

.contact-section .row>* {
	padding: 0 20px;
}

.contact-left .row {
	margin: 0 -12px;
}

.contact-left .row>* {
	padding: 0 12px;
}

.contact-left .common-form .form-check-label {
	color: #475467;
}

.contact-left .common-form .form-check-input {
	width: 20px;
	height: 20px;
	border: 1px solid #D0D5DD;
	margin: 0 12px 0 0;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.contact-left .remember-block {
	padding: 0 0 30px;
}

.contact-left .common-form textarea {
	min-height: 120px;
}

.contact-right {
	padding: 24px;
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
    background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
    background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.contact-right .block-title {
	margin: 0 0 24px;
}

.info-block {
	padding: 16px 20px;
	background-color: var(--white);
	margin: 0 0 20px;
	display: flex;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}

.info-block:last-child {
	margin-bottom: 0;
}

.info-block-icon {
	width: 32px;
	height: 32px;
	display: flex;
	flex: 0 0 auto;
	margin: 0 24px 0 0;
}

.info-block-detail .small-title>* {
	line-height: 32px;
	font-weight: 400;
	color: #4B5563;
}

.info-block-detail .small-title p {
	line-height: 28px;
	font-weight: 500;
	color: var(--darkBlue);
	padding: 12px 0 0;
}

.faq-wrp {
	background-color: var(--white);
	padding: 0 0 80px;
}

.faq-main .main-title {
	text-align: center;
	margin: 0 0 40px;
}

.faq-section {
	max-width: 872px;
	width: 100%;
	margin: 0 auto;
}

.faq-section .accordion-item {
	border: none;
	padding: 20px;
	border-top: 1px solid #E5E7EB;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.faq-section .accordion-button {
	font-size: 24px;
	line-height: 36px;
	font-weight: 600;
	color: var(--darkBlue);
	box-shadow: none;
	border: none;
	background-color: transparent;
	padding: 0;
	z-index: 1;
}

.faq-section .accordion-button::after {
	background-image: url("../images/down-arrow.svg");
	background-repeat: no-repeat;
	background-position: 8px 13px;
	background-color: #F3F4F6;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.faq-section .accordion-button:not(.collapsed)::after {
	background-image: url("../images/up-arrow.svg");
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
}

.faq-section .accordion-body {
	padding: 8px 0 0;
}

/*========== Contact Page End ==========*/

/*========== About Page Start ==========*/
.about-main {
	background-color: var(--white);
	padding: 80px 0;
}

.about-section .row {
	margin: 0 -20px;
}

.about-section .row>* {
	padding: 0 20px;
}

.about-img img {
	width: 100%;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.about-right .section-title {
	font-weight: 600;
	line-height: 40px;
	margin: 0 0 28px;
}

.about-right .small-title {
	line-height: 32px;
	font-weight: 400;
}

.our-mission,
.platform-block {
	margin: 0 0 56px;
}

.our-mission .small-title strong {
	font-weight: 500;
	display: block;
}

.platform-block .common-detail {
	margin: 0 0 28px;
}

.platform-block .common-detail ul {
	padding: 0;
	margin: 0;
}

.platform-block .common-detail ul li {
	list-style-type: none;
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 0 0 16px;
}

.platform-block .common-detail ul li:last-child {
	padding-bottom: 0;
}

.platform-block .common-detail ul li::before {
	content: "";
	background-image: url("../images/right-arrow.svg");
	background-repeat: no-repeat;
	background-size: 13px 13px;
	background-position: 10px 9px;
	background-color: #EFF6FE;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2px 8px 0 0;
	flex: 0 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.our-commitment-main .section-title {
	margin-right: -25px;
}

.commitment-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin: 0 16px 0 0;
	flex: 0 0 auto;
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.commitment-icon img {
	height: 18px;
	max-height: 100%;
}

.commitment-detail .small-block-title {
	margin: 0 0 8px;
}

.commitment-detail .detail {
	color: var(--grey);
}

.our-commitment-block {
	display: flex;
	align-items: center;
	margin: 0 0 28px;
}

.our-commitment-block:last-child {
	margin-bottom: 0;
}

.need-support-wrp {
	background-color: var(--white);
	padding: 0 0 80px;
}

.need-support-main {
	max-width: 872px;
	width: 100%;
	margin: 0 auto;
	padding: 36px;
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.need-support-title {
	text-align: center;
	margin: 0 0 40px;
}

.need-support-title .block-title {
	margin: 0 0 16px;
}

.need-support-row .row {
	margin: 0 -12px;
}

.need-support-row .row>* {
	padding: 0 12px;
}

.need-support-block {
	padding: 16px;
	text-align: center;
	background-color: var(--white);
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}

.need-support-block .info-block-icon {
	margin: 0 auto 24px;
}
/*========== About Page End ==========*/

/*========== Player Profile Page Start ==========*/
.player-profile-wrp {
	padding: 80px 0;
}

.player-profile-left,
.player-profile-right,
.player-profile-content,
.dashboard-welcome,
.dashboard-inner-block {
	background-color: var(--white);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.player-profile-left,
.player-profile-content {
	padding: 24px;
} 

.player-profile-left {
	display: flex;
	align-items: center;
	margin: 0 0 24px;
}

.player-profile-img {
	position: relative;
	max-width: max-content;
	margin: 0 20px 0 0;
	flex: 0 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.player-profile-img img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.player-profile-img span {
	background-color: #9CA3AF;
	border: 2px solid var(--white);
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	right: 10px;
	bottom: 7px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.player-left-details {
	width: 100%;
}

.player-left-details .player-name {
	padding: 0 0 16px;
	border-bottom: 1px solid #E5E7EB;
} 

.player-name .detail {
	color: var(--grey);
}

.player-details {
	padding: 16px 0 0;
}

.player-details ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.player-details ul li {
	font-size: 16px;
	line-height: 24px;
	color: var(--grey);
	padding: 0 12px 0 0;
	list-style-type: none;
	display: flex;
	align-items: center;
}

.player-details ul li span {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 8px 0 0;
	flex: 0 0 auto;
}

.player-profile-right {
	padding: 20px;
	margin: 0 0 24px;
}


.player-profile-main .row {
	margin: 0 -12px;
}

.player-profile-main .row>* {
	padding: 0 12px;
}

.player-img {
	margin: 0 0 40px;
}

.player-img img {
	width: 100%;
	object-fit: cover;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.player-details-block .small-title {
	font-weight: 600;
	margin: 0 0 16px;
}

.player-details-block .common-detail {
	color: #374151;
}

.player-details-block {
	margin: 0 0 40px;
}

.tags ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.tags ul li {
	font-size: 16px;
	line-height: 24px;
	list-style-type: none;
	padding: 0 8px 0 0;
}

.tags ul li a {
	display: block;
	padding: 2px 12px;
	background-color: #F3F4F6;
	border: 1px solid #E5E7EB;
	border-radius: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
}

.tags ul li a:hover,
.tags ul li a.active {
	background-color: #EDFFF4;
	border-color: 1px solid #9FFFC8;
	color: #037E2E;
}

.urls ul {
	padding: 0;
	margin: 0;
}

.urls ul li {
	list-style-type: none;
	padding: 0 0 16px;
}

.urls ul li:last-child {
	padding-bottom: 0;
}

.urls ul li a {
	font-size: 16px;
	line-height: 24px;
	position: relative;
	display: flex;
	align-items: center;
	max-width: max-content;
	text-decoration: underline;
}

.urls ul li a::after {
	content: "";
	background-image: url("../images/link.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 15px;
	height: 15px;
	margin: 1px 0 0 10px;
	flex: 0 0 auto;
}


/*========== Player Profile Page End ==========*/

/*========== Player Search Page Start ==========*/
.player-search-wrp {
	padding: 80px 0;
}

.player-search-main .section-title {
	text-align: center;
	margin: 0 0 40px;
}

.player-filter-wrp {
	padding: 24px;
	max-width: 1060px;
	width: 100%;
	margin: 0 auto;
	background-color: var(--white);
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.player-filter-block .small-title {
	font-weight: 600;
	margin: 0 0 16px;
}

.player-filter-block .experience-block {
	padding: 0;
}

.player-filter-block .form-check-label {
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
}

.player-filter-block .form-label {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}

.filter-block-first .experience-block {
	max-height: 164px;	
	overflow: auto;
}

.player-filter-row .row {
	margin: 0 -12px;
}

.player-filter-row .row>* {
	padding: 0 12px;
}

.player-filter-row {
	margin: 0 0 32px;
}

.filter-range-wrp .small-title {
	font-weight: 600;
	margin: 0 0 12px;
}

.filter-range-wrp .ui-widget.ui-widget-content {
	border: none;
	background-color: #E5E7EB;
	height: 8px;
	margin: 0 4px;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.filter-range-wrp .ui-slider-range {
	background-color: var(--darkBlue);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.filter-range-wrp .ui-slider-horizontal .ui-slider-handle {
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
	color: var(--white);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	background-image: url("../images/range-slider-pointer.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 24px;
	height: 28px;
	padding: 1px 1px 5px 1px;
	outline: none;
	bottom: 100%;
	top: auto;
	margin-left: -12px;
}

.apply-filter-btn {
	text-align: center;
	padding: 36px 0 8px;
}

.profile-filter-top .player-profile-img img {
	width: 64px;
	height: 64px;
}

.profile-filter-top .player-profile-img span {
	width: 12px;
	height: 12px;
	right: 6px;
	bottom: 2px;
}

.profile-filter-top {
	display: flex;
	align-items: center;
	margin: 0 0 20px;
}

.profile-filter-detail ul {
	padding: 0;
	margin: 0;
}

.profile-filter-detail ul li {
	font-size: 14px;
	line-height: 24px;
	color: var(--grey);
	list-style-type: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	background-color: #F9FAFB;
	margin: 0 0 6px;
	padding: 8px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}	

.profile-filter-detail ul li:last-child {
	margin-bottom: 0;
}

.profile-filter-detail ul li strong {
	font-weight: 500;
	color: var(--darkBlue);
	margin: 0 8px 0 0;
}

.profile-filter-detail ul li span {
	display: flex;
	align-items: center;
	width: 20px;
	height: 20px;
	margin: 0 8px 0 0;
	flex: 0 0 auto;
}

.profile-filter-detail {
	padding: 0 0 20px;
	border-bottom: 1px solid #E5E7EB;
}

.profile-filter-block {
	padding: 24px;
	margin: 0 0 24px;
	background-color: var(--white);
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.profile-filter-wrp .row {
	margin: 0 -12px;
}

.profile-filter-wrp .row>* {
	padding: 0 12px;
}

.profile-filter-btns {
	display: flex;
	justify-content: center;
	gap: 24px;
	padding: 20px 0 0;
}

.profile-filter-btns .btn {
	max-width: 50%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.player-search-inner {
	padding: 40px 0 0;
}

.pagination-arrow {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #4B5563;
	display: flex;
	align-items: center;
}

.pagination-arrow:hover {
	opacity: 0.5;
}

.pagination-arrow span {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.prev-arrow span {
	margin: 0 8px 0 0;
}

.next-arrow span {
	margin: 0 0 0 8px;
}

.pagination-block .pagination {
	margin: 0;
}

.pagination-block .pagination .page-link {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: var(--grey);
	border: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.pagination-block .pagination .page-link:hover,
.pagination-block .pagination .page-link.active {
	background-color: var(--white);
}

.pagination-block .pagination .page-item {
	padding: 0 1px;
}

.player-pagination-block {
	border-top: 1px solid #EAECF0;
	padding: 20px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 52px;
}

.profile-filter-wrp {
	padding: 0 0 16px;
}
/*========== Player Search Page End ==========*/

/*========== Dashboard Club Page Start ==========*/
.sidebar-wrp {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 312px;
	width: 100%;
	height: 100%;
	padding: 20px;
	z-index: 999;
	overflow: auto;
	background-color: var(--white);
	-moz-box-shadow: 0px 4px 16px 0px rgba(4, 86, 148, 0.08);
	-webkit-box-shadow: 0px 4px 16px 0px rgba(4, 86, 148, 0.08);
	box-shadow: 0px 4px 16px 0px rgba(4, 86, 148, 0.08);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.sidebar-links ul {
	padding: 0;
	margin: 0;
}

.sidebar-links ul li {
	list-style-type: none;
}

.sidebar-links ul li a {
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	color: #374151;
	display: flex;
	align-items: center;
	padding: 12px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.sidebar-links ul ul {
  padding-left: 40px; /* increase this */
}


.sidebar-links ul li .icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin: 0 12px 0 0;
}

.sidebar-links ul li a .icon path {
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.sidebar-links ul li a:hover,
.sidebar-links ul li a.active {
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
    background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
    background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	color: var(--sky);
}

.sidebar-links ul li a:hover .icon path,
.sidebar-links ul li a.active .icon path {
	stroke: var(--sky);
}

.sidebar-links:last-child {
	padding: 40px 0 0;
}

.dashboard-wrp {
	margin: 0 0 0 312px;
	padding: 40px 0;
	overflow-y: scroll;
	height: 100%;
}

.dashboard-main {
	max-width: 1140px;
	margin: 0 40px;
	/* width: 100%;
	margin: 0 auto; */
}

.custom-divider {
  height: 1px;
  background-color: #E5E7EB;
  margin: 24px 0;
  width: 100%;
}

.edit-profile-block {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.edit-profile-block .small-block-title {
	margin: 0 0 8px;
}

.edit-profile-block .detail * {
	display: flex;
	align-items: center;
}

.edit-profile-block .detail span {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin: 0 8px 0 0;
}

.dashboard-welcome {
	padding: 24px;
	margin: 0 0 24px;
}

.dashboard-main .player-profile-img {
	margin: 0 32px 0 0;
}

.dashboard-main .player-profile-img img {
	border: 4px solid var(--white);
	-moz-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
}

.dashboard-search-block {
	position: relative;
	margin: 0 0 24px;
}

.dashboard-search-block .common-form .form-control {
	padding: 24px 24px 24px 68px;
	border: none;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.search-icon {
	position: absolute;
	top: 50%;
	left: 24px;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.dashboard-inner-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 20px 0 0;
	flex: 0 0 auto;
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}

.dashboard-inner-block {
	background-color: var(--white);
	padding: 24px;
	display: flex;
	align-items: center;
	margin: 0 0 24px;
	height: calc(100% - 24px);
}

.dashboard-inner-wrp .row {
	margin: 0 -12px;
}

.dashboard-inner-wrp .row>* {
	padding: 0 12px;
}

.dashboard-inner-detail .small-block-title {
	line-height: 32px;
	font-weight: 700;
	margin: 0 0 8px;
}

.dashboard-page {
	position: relative;
	/* overflow: hidden;
	height: calc(100vh - 176px); */
}

.dashboard-content-inner {
	position: relative;
	height: calc(100vh - 176px);
    overflow: hidden;
}

.profile-img {
	display: block;
	width: 52px;
	height: 52px;
	overflow: hidden;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.dash-profile-right {
	width: 100%;
}

.dash-profile-right .player-details {
	border-top: 1px solid #E5E7EB;
	margin: 16px 0 0;
}
/*========== Dashboard Club Page End ==========*/

/*========== Messsaging Page Start ==========*/


.msg-main {
	max-width: 1240px;
	margin: 0 40px;
	/* width: 100%;
	margin: 0 auto; */
	display: flex;
}

.msg-left {
	max-width: 312px;
	width: 100%;
	padding: 16px;
	background-color: var(--white);
	margin: 0 24px 0 0;
	flex: 0 0 auto;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.msg-searchbar {
	position: relative;
	margin: 0 0 16px;
}

.msg-search-icon {
	width: 20px;
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.msg-search-icon figure {
	display: flex;
}

.msg-searchbar .form-control {
	padding: 12px 44px;
	color: var(--darkBlue);
}

.msg-searchbar .form-control::placeholder {
	color: var(--darkBlue);
}

.msg-tabs {
	margin: 0 0 16px;
}

.msg-tabs ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.msg-tabs ul li {
	list-style-type: none;
	padding: 0 4px 0 0;
}

.msg-tabs ul li a {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: var(--grey);
	padding: 4px 12px;
	display: block;
	background-color: #F9FAFB;
	border: 1px solid #F3F4F6;
	border-radius: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
}

.msg-tabs ul li a:hover,
.msg-tabs ul li a.active {
	background-color: var(--darkBlue);
	color: #F9FAFB;
}

.msg-chats-block {
	display: flex;
	align-items: center;
	padding: 12px;
	position: relative;
	border-bottom: 1px solid #EFF6FE;
}

.msg-chats-block:hover,
.msg-chats-block.active {
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
    background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
    background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.msg-chats-block:hover::after,
.msg-chats-block.active::after {
	opacity: 1;
}

.msg-chats-block::after {
	content: "";
	width: 16px;
	height: 16px;
	position: absolute;
	right: 12px;
	top: 50%;
	opacity: 0;
	background-color: var(--sky);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.msg-chats-img {
	width: 40px;
	height: 40px;
	position: relative;
	margin: 0 12px 0 0;
	flex: 0 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.msg-chats-img img {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.msg-chats-img span {
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 12px;
	height: 12px;
	display: block;
	background-color: #12B76A;
	border: 2px solid var(--white);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.msg-chats-details .small-title {
	font-weight: 600;
	margin: 0 0 4px;
}

.msg-chats-details .details p {
	font-size: 14px;
	line-height: 20px;
	color: #475467;
	margin: 0;
}

.msg-right {
	width: 100%;
	background-color: #FCFCFD;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}


.msg-right-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #E5E7EB;
}

.msg-right-top .msg-chats-details .details p {
	font-family: "Inter", sans-serif;
}

.msg-top-left {
	display: flex;
	align-items: center;
}

.msg-chats-online {
	display: flex;
	align-items: center;
	margin: 0 0 4px;
}

.msg-chats-online .common-detail {
	font-weight: 600;
	margin: 0 8px 0 0;
}

.online {
	display: flex;
	align-items: center;
	padding: 2px 7px;
	max-width: max-content;
	border: 2px solid #039855;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.online span {
	width: 6px;
	height: 6px;
	display: block;
	margin: 0 5px 0 0;
	background-color: #039855;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.online p {
	font-family: "Inter", sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
	color: #027A48;
	margin: 0;
}

.msg-top-right {
	width: 36px;
	height: 36px;
	margin: 0 0 0 10px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F9FAFB;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.msg-right-bottom {
	height: calc(100% - 97px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.msg-write-input {
	position: relative;
	width: 100%;
}

.msg-media {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.msg-media figure {
	display: flex;
}

.msg-write-input .form-control {
	padding: 10px 46px;
}

.send-msg {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--sky);
	margin: 0 0 0 12px;
	flex: 0 0 auto;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.send-msg:hover {
	background-color: var(--darkBlue);
}

.msg-write-block {
	padding: 20px 24px 24px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #E5E7EB;
}

.msg-text-block {
	padding: 24px;
}

.today {
	position: relative;
	z-index: 9;
	margin: 0 0 32px;
}

.today::after {
	content: "";
	background-color: #E5E7EB;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: -1;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.today * {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #475467;
	margin: 0;
	background-color: var(--white);
	padding: 0 8px;
	text-align: center;
	max-width: max-content;
	margin: 0 auto;
	position: relative;
	z-index: 1;
} 

.msg-replies-block {
	max-width: 544px;
	width: 100%;
	margin-bottom: 16px;
}

.msg-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 6px;
}

.msg-info p {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #344054;
	margin: 0;
}

.msg-info span {
	font-family: "Inter", sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	color: #475467;
	display: block;
}

.msg-details {
	padding: 10px 14px;
	background-color: var(--white);
	border: 1px solid #E5E7EB;
	border-radius: 8px 0 8px 8px;
	-webkit-border-radius: 8px 0 8px 8px;
	-moz-border-radius: 8px 0 8px 8px;
	-ms-border-radius: 8px 0 8px 8px;
	-o-border-radius: 8px 0 8px 8px;
}

.msg-details a {
	font-family: "Inter", sans-serif;
	text-decoration: underline;
}

.sender-block {
	margin-left: auto;
}

.receiver-block {
	
	display: flex;
}

.receiver-block .msg-details {
	border-color: #EFF6FE;
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
    background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
    background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	border-radius: 0 8px 8px 8px;
	-webkit-border-radius: 0 8px 8px 8px;
	-moz-border-radius: 0 8px 8px 8px;
	-ms-border-radius: 0 8px 8px 8px;
	-o-border-radius: 0 8px 8px 8px;
}

.file-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 14px 0 0;
	flex: 0 0 auto;
	background: -moz-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: -webkit-linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	background: linear-gradient(90deg, #F0F6FD 0%, #EFF6FE 100%);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.receiver-block .include-media {
	display: flex;
	background: var(--white);
}

.include-media .detail span {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #475467;
	display: block;
}

.msg-typing {
	max-width: max-content;
	padding: 10px;
	background-color: #F2F4F7;
	border-radius: 0 8px 8px 8px;
	-webkit-border-radius: 0 8px 8px 8px;
	-moz-border-radius: 0 8px 8px 8px;
	-ms-border-radius: 0 8px 8px 8px;
	-o-border-radius: 0 8px 8px 8px;
}

.msg-typing figure {
	display: flex;
}

.msg-replies-block:last-child {
	margin-bottom: 0;
}
/*========== Messsaging Page End ==========*/


/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/


/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer {
	background-color: var(--darkBlue);
}

.footer-main {
	color: var(--white);
}

.footer-top {
	padding: 56px 0 40px;
	border-bottom: 1px solid var(--grey);
}

.footer-top .row {
	margin: 0 -12px;
}

.footer-top .row>* {
	padding: 0 12px;
}

.footer-logo {
	max-width: max-content;
	display: block;
	margin: 0 0 24px;
}

.footer-logo * {
	height: 100%;
	width: 100%;
}

.footer-left .small-title {
	margin: 0 0 24px;
}

.footer-left-btns {
	display: flex;
	gap: 24px;
}

.footer-links .common-detail {
	padding: 0 0 16px;
	border-bottom: 1px solid var(--lightGrey);
}

.links ul {
	padding: 0;
	margin: 0;
}

.links ul li {
	font-size: 20px;
	line-height: 28px;
	list-style-type: none;
	padding: 16px 0 0;
}

.links ul li a:hover,
.links ul li a.active {
	color: var(--sky);
}

.footer-bottom {
	padding: 32px 0;
}

.footer-bottom .small-title {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 24px;
}

.footer-bottom-links ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.footer-bottom-links ul li {
	font-size: 16px;
	line-height: 24px;
	list-style-type: none;
	padding: 0 20px;
}

.footer-bottom-links ul li:last-child {
	padding-right: 0;
}

.home-footer .footer-bottom {
	padding: 40px 0 56px;
}

.home-footer .footer-bottom .small-title {
	font-size: 20px;
	line-height: 28px;
}

.home-footer .footer-bottom-links ul li {
	font-size: 20px;
	line-height: 28px;
}

.text-red-600 {
  color: rgb(220 38 38);
  font-size: 12px;
}

.truncate {
  white-space: nowrap;        /* Prevent wrapping */
  overflow: hidden;           /* Hide overflowing text */
  text-overflow: ellipsis;    /* Show "…" at the end */
}

.em7 { unicode-bidi: bidi-override; direction: rtl; }
/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/