.jb-repeater {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

.jb-repeater .jb-item {
	flex: 0 0 calc(50% - 10px);

}

.jb-item{
	background: rgb(2 66 178 / 5%);
	padding: 9px 30px;
	border-radius: 6px;
	position: relative;
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	font-size: 13px;
	flex-wrap: wrap;
}
.jb-item:before {
	content: '';
	width: 12px;
	height: 100%;
	position: absolute;
	background-color: #508fff;
	top: 0;
	left: 0;
	border-radius: 6px 0px 0px 6px;
}

.jb-accordion {
	border-radius: 8px;
	overflow: hidden;
}
.jb-accordion-item {
	position: relative;
	margin-bottom: 10px;
}
.jb-accordion-item:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 6px;
	height: 100%;
	background-color: #508fff73;
	transition: background-color 0.3s ease;
	border-radius: 6px 0 0 6px;
}
.jb-accordion-item.active{
	margin-bottom: 20px;
}
.jb-accordion-item.active:before {
	background-color: #508fff;
}
.jb-accordion-header {
	color: var(--e-global-color-primary);
	padding: 15px 30px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	background: var(--e-global-color-864bd2d);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.jb-accordion-item.active .jb-accordion-header{
	border-radius: 6px 6px 0 0 !important;
}
.jb-accordion-content {
	overflow: hidden;
	padding: 0px 30px;
	height: 0;
	transition: height 0.4s ease;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	justify-content:center;
}
.jb-accordion-item.active .jb-accordion-content{
	border-radius: 0 0 6px 6px !important;
	border: 1px solid var(--e-global-color-864bd2d);
}
.jb-accordion-content p{
	margin: 0;
}
.jb-accordion-item.active .jb-accordion-content ul{
	height: 100%;
	margin-bottom: -50px;
	padding-left: 25px;
}
.jb-toggle-icon {
	width: 18px;
	height: 18px;
	float: right;
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.jb-certificaciones{
	display: flex;
	gap: 20px;
}
.jb-certificaciones .custom-slider-slide{
	line-height: 0;
}
.jb-certificaciones .custom-slider-dots {
    bottom: -20px;
}

.jb-tabla-curso {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	font-family: inherit;
}

.jb-tabla-curso thead {
	background-color: #508fff;
	color: #fff;
	text-align: left;
    text-transform: uppercase;
}

.jb-tabla-curso thead th:first-child {
	border-top-left-radius: 6px;
}

.jb-tabla-curso thead th:last-child {
	border-top-right-radius: 6px;
}

.jb-tabla-curso td, .jb-tabla-curso thead th {
	padding: 20px;
	border-bottom: 0;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-block-start: 0 !important;
}
.jb-tabla-curso tbody td{
	background-color: #F4F4F9 !important;
}
.jb-tabla-curso tbody {
	font-weight: 700;
}
.jb-tabla-curso th {
	border-bottom: 1px solid rgb(0 78 152 / 30%) !important;
}
.jb-tabla-curso tbody tr:not(:last-child) td {
	border-bottom: 1px solid rgb(0 78 152 / 30%);
}
.jb-tabla-curso tr:last-child td:first-child {
	border-bottom-left-radius: 6px;
}

.jb-tabla-curso tr:last-child td:last-child {
	border-bottom-right-radius: 6px;
}
.jb-accordion-item.active .jb-toggle-icon {
	transform: rotate(180deg);
}
.jb-disponibilidad-msg{
	background-color: var(--e-global-color-1621fb6);
    padding: 22px;
    text-align: center;
    color: var(--e-global-color-primary);
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 13px;
    align-items: center;
    position: relative;
    border-radius: 6px;
}
.jb-disponibilidad-msg img{
	max-width: 20px;
}
.jb-disponibilidad-msg:before {
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    left: 5px;
    top: 5px;
    border: 2px dashed #fff;
    border-radius: 6px;
}
.jb-gallery-certificaciones img {
    width: 100%;
	max-width: 372px;
	height: 245px;
}
@media (min-width: 769px){
	.jb-tabla-curso tbody tr td br{
		display: none;
	}
	.jb-certificaciones > .jb-item, .jb-certificaciones > .jb-gallery-certificaciones {
		flex: 1;
		max-width: calc(50% - 10px);
		box-sizing: border-box;
	}
}
@media (max-width: 768px) {

	.jb-tabla-curso thead th, .jb-tabla-curso tbody tr td{
		padding: 20px 15px;
		text-align: center;
		align-content: center;
	}

	.jb-repeater .jb-item {
		flex: 1 1 100%;
	}
	.jb-certificaciones {
		flex-direction: column;
		padding-bottom: 20px;
	}
	.jb-disponibilidad-msg{
		padding: 18px 52px;
		text-align: left;
	}
	.jb-gallery-certificaciones img {
		max-width: 470px;
	}
}
