
.wd-info-box {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--wd-brd-radius);
}

.wd-info-box .box-icon-wrapper {
	flex: 0 0 auto;
	line-height: 0;
}

.wd-info-box .info-box-icon {
	display: inline-block;
	transition: all .25s ease;
}

.wd-info-box .info-svg-wrapper {
	display: inline-block;
}

.wd-info-box .info-svg-wrapper svg {
	width: inherit !important;
	height: inherit !important;
}

.wd-info-box .info-box-subtitle, .wd-info-box .info-box-title {
	margin-bottom: 10px;
	transition: all .25s ease;
}

.wd-info-box .info-box-subtitle:not(.subtitle-style-background), .wd-info-box .info-box-title {
	line-height: 1.3;
}

.wd-info-box .info-box-content {
	position: relative;
	flex: 1 1 auto;
	border-radius: var(--wd-brd-radius);
}

.wd-info-box .info-box-inner p:first-child:empty, .wd-info-box .info-box-inner p:first-child:empty ~ p:last-child {
	display: none;
}

.wd-info-box .info-btn-wrapper {
	margin-top: 15px;
}

.wd-info-box.color-scheme-hover-light:hover .info-svg-wrapper svg {
	fill: #fff !important;
}

.wd-info-box.color-scheme-hover-light:hover .info-box-icon {
	color: #fff;
}

.wd-info-box.color-scheme-hover-light:hover .title {
	color: #fff !important;
}

.box-icon-align-top .box-icon-wrapper {
	margin-bottom: 15px;
}

.box-icon-align-left {
	flex-direction: row;
}

.box-icon-align-left .box-icon-wrapper {
	margin-right: 20px;
	max-width: 50%;
}

.box-icon-align-right {
	flex-direction: row-reverse;
}

.box-icon-align-right .box-icon-wrapper {
	margin-left: 20px;
	max-width: 50%;
}

.box-title-style-underlined {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--brdcolor-gray-300);
}

.box-with-icon .info-box-icon {
	overflow: hidden;
}

.box-icon-wrapper.box-with-text {
	color: var(--wd-primary-color);
	font-weight: 700;
	line-height: 1;
}

.box-with-text.text-size-small {
	font-size: 38px;
}

.box-with-text.text-size-default {
	font-size: 52px;
}

.box-with-text.text-size-large {
	font-size: 74px;
}

[class*="box-icon-with-"].box-with-text {
	--text-bg-size: 85px;
}

[class*="box-icon-with-"].box-with-text .info-box-icon {
	padding: 0 10px;
	min-width: var(--text-bg-size);
	height: var(--text-bg-size);
	border-radius: 100px;
	line-height: var(--text-bg-size);
}

[class*="box-icon-with-"].text-size-default {
	--text-bg-size: 100px;
}

[class*="box-icon-with-"].text-size-large {
	--text-bg-size: 130px;
}

[class*="box-icon-with-"] .info-box-icon {
	border-radius: 50%;
	text-align: center;
}

.box-icon-with-bg .info-box-icon {
	padding: 20px;
	background-color: #f1f1f1;
}

.box-icon-with-border .info-box-icon {
	padding: 18px;
	border: 2px solid #f1f1f1;
}

.box-btn-hover .info-btn-wrapper {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	margin-top: 0;
	padding-top: 15px;
	opacity: 0;
	transition: transform .25s ease, opacity .25s ease;
	transform: translateY(15px);
}

.box-btn-hover:hover .info-btn-wrapper {
	opacity: 1;
	transform: none;
}

.wpb-js-composer .info-box-wrapper.inline-element {
	max-width: 100%;
}

.wpb-js-composer .info-box-carousel .inline-element {
	display: block;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.wpb-js-composer .info-box-carousel .inline-element .wd-info-box {
	display: inline-flex;
}

.box-style-shadow {
	padding: 30px;
	background-color: #fff;
	box-shadow: 0 0 4px rgba(0, 0, 0, .12);
	transition: box-shadow .7s ease;
}

.box-style-shadow:hover {
	box-shadow: 0 0 9px rgba(0, 0, 0, .2);
}

.box-style-bg-hover {
	padding: 30px;
	box-shadow: 2px 3px 14px transparent;
}

.box-style-bg-hover .info-svg-wrapper svg {
	transition: fill .25s ease;
}

.box-style-bg-hover .box-icon-wrapper, .box-style-bg-hover .info-box-content {
	z-index: 1;
}

.box-style-bg-hover:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	opacity: 0;
	transition: opacity .25s ease;
}

.box-style-bg-hover:hover {
	box-shadow: 2px 3px 14px rgba(0, 0, 0, .16);
}

.box-style-bg-hover:hover:after {
	opacity: 1;
}

.box-style-border .info-box-content {
	padding: 30px;
	border: 3px solid var(--brdcolor-gray-300);
}

.box-style-border .box-icon-wrapper {
	position: relative;
	z-index: 2;
}

.box-style-border.box-icon-align-left, .box-style-border.box-icon-align-right {
	align-items: center;
}

.box-style-border.box-icon-align-left .info-box-content {
	padding-left: 50px;
}

.box-style-border.box-icon-align-left .info-box-icon {
	margin-right: -50px;
}

.box-style-border.box-icon-align-right .info-box-content {
	padding-right: 50px;
}

.box-style-border.box-icon-align-right .info-box-icon {
	margin-left: -50px;
}

.box-style-border.box-icon-align-top .box-icon-wrapper {
	margin-bottom: -25px;
	padding-right: 30px;
	padding-left: 30px;
}

.box-style-border.box-icon-align-top .info-box-content {
	padding-top: 35px;
}

.box-style-border.box-btn-static .info-btn-wrapper {
	margin-top: 0;
	margin-bottom: -30px;
	transform: translateY(50%);
}

.box-style-border.box-btn-hover .info-btn-wrapper {
	margin-top: -15px;
	margin-right: 30px;
	margin-left: 30px;
	padding-top: 0;
}

.box-style-border.box-btn-hover.box-icon-align-left .info-btn-wrapper {
	margin-left: 50px;
}

.box-style-border.box-btn-hover.box-icon-align-right .info-btn-wrapper {
	margin-right: 50px;
}

.elementor-default .info-box-carousel-wrapper .box-style-border.with-btn {
	margin-bottom: 30px;
}

.with-animation .info-svg-wrapper path {
	stroke: var(--wd-primary-color);
}

.wpb-js-composer .info-box-carousel-wrapper {
	margin-bottom: 30px;
}

.wpb-js-composer .info-box-carousel-wrapper .wd-info-box {
	margin-bottom: 0;
}

.info-box-carousel-wrapper :is(.owl-stage-outer, .owl-carousel:not(.owl-loaded)) {
	padding-top: 5px;
	padding-bottom: 5px;
}

@media (max-width: 1024px) {
	.box-with-text.text-size-large {
		font-size: 52px;
	}
	
	[class*="box-icon-with-"].text-size-large {
		--text-bg-size: 100px;
	}
	
	.box-btn-hover .info-btn-wrapper {
		position: static;
		opacity: 1;
		transform: none;
	}
	
	.box-style-border.box-btn-hover .info-btn-wrapper {
		position: absolute;
	}
}
