.iba-wrapper {
	width: 100%;
}

.iba-item {
	overflow: hidden;
	transition: all 0.3s ease;
	background: #ffffff;
	border: 1px solid #e5e5e5;
}

.iba-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 0;
    cursor: pointer;
    text-align: inherit;
    padding: 20px;
    color: inherit !important;
    font: inherit;
    box-shadow: none !important;
}

.iba-header:hover,
.iba-header:focus,
.iba-header:active {
    color: inherit !important;
    box-shadow: none !important;
}

.iba-header:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.iba-header-main {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
}

.iba-header {
    min-width: 0;
}

.iba-header-main {
    min-width: 0;
    flex: 1 1 auto;
}

.iba-text {
    min-width: 0;
    flex: 1 1 auto;
}

.iba-title {
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.3;
}

.iba-toggle-icon {
    flex-shrink: 0;
}

.iba-main-icon {
    flex-shrink: 0;
}
.iba-content-inner {
	padding: 20px;
	margin: 0;
}

.iba-main-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
}

.iba-main-icon svg,
.iba-toggle-icon svg {
	display: block;
}

.iba-title,
.iba-header .iba-title,
.iba-header:hover .iba-title,
.iba-header:focus .iba-title,
.iba-header:active .iba-title {
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: inherit !important;
}

.iba-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: inherit;
}

.iba-icon-close {
	display: none;
}

.iba-item.iba-active .iba-icon-open {
	display: none;
}

.iba-item.iba-active .iba-icon-close {
	display: inline-flex;
}

.iba-content {
	display: none;
}

.iba-content-inner {
	padding: 0 20px 20px;
}

.iba-item.iba-active .iba-content {
	display: block;
}

/* Icon position */
.iba-icon-position-right .iba-header-main {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.iba-icon-position-top .iba-header-main {
	flex-direction: column;
	align-items: flex-start;
}

/* Toggle icon position */
.iba-toggle-position-left .iba-header {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.iba-toggle-position-left .iba-header-main {
	flex: initial;
}

/* Responsive */
@media (max-width: 767px) {
	.iba-header {
		align-items: flex-start;
	}

	.iba-icon-position-top .iba-header-main {
		align-items: inherit;
	}
     .iba-header {
        gap: 10px;
    }

    .iba-header-main {
        gap: 10px;
    }

    .iba-title {
        font-size: 16px;
    }
}