/**
 * Theme Name: Hello Elementor Child
 * Template: hello-elementor
 * Description: Hello Elementor Child
 * Version: 1.0
 */

:root {
	--white: #FFFFFF;
	--orange: #F6941E;
	--black: #0B0B0B;
	--transition: all .3s ease;
}

a {
	color: var(--orange);
	transition: var(--transition);
}

a:hover {
	color: var(--black);
}

.elementor-message.elementor-message-success {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	height: 101%;
	margin: 0;
	font-size: 20px;
	font-weight: 600 !important;
	line-height: 1.25em;
	text-align: center;
	color: var(--white);
	background: var(--white);
	transition: var(--transition);
	cursor: pointer;
}

.elementor-message.elementor-message-success::before {
	margin-inline-end: 0px;
	padding: 5px;
	line-height: 1em;
	color: var(--orange);
	background: var(--white);
	border-radius: 50%;
}

.elementor-message.elementor-message-success::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: var(--orange);
    z-index: -1;
}

.elementor-message.elementor-message-success.hidden {
	opacity: 0;
	transform: translateY(-50%) scale(0);
}

@media (max-width: 767.75px) {
	.elementor-message.elementor-message-success {
		font-size: 16px;
	}
}

/*---------- SLIDER ----------*/

.swiper-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

/* SLIDER - Arrows */
.swiper-controls .swiper-arrow {
    outline: none !important;
    cursor: pointer;
}

.swiper-controls .swiper-arrow {
    display: flex;
}

.swiper-controls .swiper-arrow,
.swiper-controls .swiper-arrow:focus {
    padding: 9px;
    font-size: 15px;
    border: 1px solid var(--black) !important;
    transition: var(--transition);
}

.swiper-controls .swiper-arrow svg,
.swiper-controls .swiper-arrow:focus svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: var(--black) !important;
    transition: var(--transition);
}

.swiper-controls .swiper-arrow.swiper-button-disabled {
    pointer-events: none;
    cursor: default;
}

.swiper-controls .swiper-arrow.swiper-button-disabled,
.swiper-controls .swiper-arrow:hover.swiper-button-disabled {
    color: #a0a0a0 !important;
    border-color: #a0a0a0 !important;
}

.swiper-controls .swiper-arrow.swiper-button-disabled svg {
    fill: #a0a0a0 !important;
}

.swiper-controls .swiper-arrow:hover {
    border-color: var(--orange) !important;
    background-color: var(--orange) !important;
}

.swiper-controls .swiper-arrow:hover svg {
    fill: var(--white) !important;
}

@media (max-width: 767px) {
    .swiper-controls {
        gap: 12px;
        margin-top: 16px;
    }
}

/* SLIDER - Arrow - END */

/*---------- SLIDER END ----------*/


/*---------- SECTIONS ----------*/

/* TrustIndex - Google Reviews */
.reviews .ti-widget.ti-goog {
    width: 100% !important;
}

.reviews .ti-widget.ti-goog .ti-widget-container {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.reviews .ti-widget.ti-goog .ti-review-item .ti-inner {
    border-radius: 0px !important;
}

.reviews .ti-widget.ti-goog .ti-controls .ti-prev,
.reviews .ti-widget.ti-goog .ti-controls .ti-next {
    padding: 0;
}

.reviews .ti-widget.ti-goog .ti-controls .ti-prev::before,
.reviews .ti-widget.ti-goog .ti-controls .ti-prev::after,
.reviews .ti-widget.ti-goog .ti-controls .ti-next::before,
.reviews .ti-widget.ti-goog .ti-controls .ti-next::after {
    transition: var(--transition);
}

.reviews .ti-widget.ti-goog .ti-controls .ti-prev:hover,
.reviews .ti-widget.ti-goog .ti-controls .ti-next:hover {
    transform: scale(1) !important;
}

.reviews .ti-widget.ti-goog .ti-controls .ti-prev:hover::before,
.reviews .ti-widget.ti-goog .ti-controls .ti-prev:hover::after,
.reviews .ti-widget.ti-goog .ti-controls .ti-next:hover::before,
.reviews .ti-widget.ti-goog .ti-controls .ti-next:hover::after {
    background: var(--orange) !important;
}

.reviews .ti-widget.ti-goog .ti-controls-line {
    display: block !important;
    margin-bottom: 0px !important;
}

/*---------- SECTIONS - END ----------*/