/* ---- Classes ---- */

.rsgdxtbs-hidden {
	display: none;
}
.rsgdxtbs-flex-center {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px;
}

/* ---- Modal Containers ---- */
.rsgdxtbs-modal {

}
.rsgdxtbs-modal-display {
	background: #d9d9d9;
	padding: 0;
	position: relative;
	display: inline-block;
	opacity: 1;
	pointer-events: auto;
}
.rsgdxtbs-modal-popup {
	background: rgba(0, 0, 0, 0.2);
	display: none;
	opacity: 1;
	pointer-events: auto;
	position: fixed;
	inset: 0;
	z-index: 9999;
	padding: 20px;
	margin: 0;
	width: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.rsgdxtbs-modal-popup.active {
	display: flex;
}

/* ---- Default Modal ---- */
.rsgdxtbs-modal-wrapper {
	width: 100%;
	max-width: 900px;
	background: #aeaeae;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	border-radius: 3px;
	box-shadow: 0 0 4px -2px #000;
}

/* ---- Default Modal: Navigation ---- */
.rsgdxtbs-nav {
	background: #1f2937;
	color: #fff;
	padding: 10px 20px;
}
.rsgdxtbs-nav ul.rsgdxtbs-nav-ul {
	margin: 0;
	list-style: none;
	padding: 0;
}
.rsgdxtbs-nav ul.rsgdxtbs-nav-ul li {
	margin: 0;
	padding: 10px 0px;
	cursor: pointer;
	transition: ease .3s;
}

/* ---- Default Modal: Content ---- */
.rsgdxtbs-content {
	background: #f6f7f7;
}
.rsgdxtbs-step {
	display: none;
	width: 100%;
	min-width: 600px;
}
.rsgdxtbs-step:first-child {
	display: block;
}
.rsgdxtbs-step-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	box-shadow: 0 0 4px -2px #000;
	background: #fff;
}
.rsgdxtbs-step-header button.rsgdxtbs-btn-back {
	background: #f6f7f7;
	border: 1px solid #1f2937;
	color: #1f2937;
	padding: 5px 8px;
	border-radius: 3px;
	font-size: 12px;
	transition: ease .3s;
}
.rsgdxtbs-step-header button.rsgdxtbs-btn-back:hover {
	background: #1f2937;
	transition: ease .3s;
	color: #fff;
}
.rsgdxtbs-step-content {
	padding: 20px;
}

/* ---- Step1: Search ---- */
.rsgdxtbs-service-search {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.rsgdxtbs-service-search > div {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2px;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 5px;
	padding: 1px 10px;
}
.rsgdxtbs-service-search > div input, 
.rsgdxtbs-service-search > div select {
	border: none!important;
	outline: none!important;
	box-shadow: none!important;
}

/* ---- Step1: Services ---- */
.rsgdxtbs-services {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}
.rsgdxtbs-service {
	box-shadow: 0 0 4px -2px #000;
	width: 100%;
	padding: 10px;
}
.rsgdxtbs-service-row {
	display: flex;
	width: 100%;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px;
	border-bottom: 1px dotted #1f2937;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
img.rsgdxtbs-service-thumb {
	object-fit:cover;
	width: 70px;
	height: 70px;
	border-radius: 100%;	
}
.rsgdxtbs-service-info {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	justify-content: space-between;
	width: 100%;
}
.rsgdxtbs-service-name {

}
.rsgdxtbs-service-metas {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}
.rsgdxtbs-service-price-per-session {
	background: #fff;
	color: #000;
	padding: 4px 10px;
	border-radius: 20px;
	box-shadow: 0 0 4px -2px #000;
	font-weight: 600;
	margin-bottom: 5px;
}
.rsgdxtbs-service-price-full-sessions {
	font-size: 80%;
}
.rsgdxtbs-btn-learn {
	font-size: 12px;
	cursor: pointer;
	display: inline-block;
}
.rsgdxtbs-service-more-content {
	display: none;
}

/* ---- Displayed Modal ---- */
.rsgdxtbs-modal-display .rsgdxtbs-modal-wrapper {
	
}

/* ---- Popup Modal ---- */
.rsgdxtbs-modal-popup .rsgdxtbs-modal-wrapper {

}