/* **********************************************************
 * JUPITER X THEME & ELEMENTOR OVERRIDES
 * ******************************************************** */
 

/* *****************************
 * THEME REM FONT OVERRIDES
 * *************************** */
/* VW, VH, REM, PERCENT - change any pixels to rem for padding */
/* Fonts */
html {
	font-size: 0.83vw;
}

@media (max-width: 1440px) {
    /* RESPONSIVE REM TO PX */
	html {
		font-size: 12px;
	}
}

/* *****************************
 * THEME & ELEMENTOR OVERRIDES
 * *************************** */
/* Smooth Fade Animations */
@keyframes fadeUp {
    from {opacity: 0; transform: translate3d(0,5rem,0)}
    to {opacity: 1; transform: none}
}
.elementor-element.fadeInUp {
	animation: fadeUp ease-in-out 1.25s;
}
@keyframes fadeDown {
    from {opacity: 0; transform: translate3d(0,-5rem,0)}
    to {opacity: 1; transform: none}
}
.elementor-element.fadeInDown {
    animation: fadeDown ease-in-out 1.25s;		
}
@keyframes fadeLeft {
    from {opacity: 0; transform: translate3d(-5rem,0,0)}
    to {opacity: 1; transform: none}
}
.elementor-element.fadeInLeft {
    animation: fadeLeft ease-in-out 1.25s;		
}
@keyframes fadeRight {
    from {opacity: 0; transform: translate3d(5rem,0,0)}
    to {opacity: 1; transform: none}
}
.elementor-element.fadeInRight {
    animation: fadeRight ease-in-out 1.25s;
}


/* *****************************
 * SCROLLBAR STYLING
 * *************************** */
/* Browsers without `::-webkit-scrollbar-*` support */
@supports not selector(::-webkit-scrollbar) {
    html {
        scrollbar-width: thin;
        scrollbar-color: #0033cc #333333;
    }
}

/* Browsers with `::-webkit-scrollbar-*` support */
body::-webkit-scrollbar,
.ha-modal-popup-content-wrapper.ha-modal-fullscreen.ha-modal-show .ha-modal-animation::-webkit-scrollbar,
.dialog-lightbox-message::-webkit-scrollbar {
    width: 15px;
}
.jet-mobile-menu__container-inner::-webkit-scrollbar {
	width: 10px;
}
body::-webkit-scrollbar-thumb,
.ha-modal-popup-content-wrapper.ha-modal-fullscreen.ha-modal-show .ha-modal-animation::-webkit-scrollbar-thumb,
.jet-mobile-menu__container-inner::-webkit-scrollbar-thumb,
.dialog-lightbox-message::-webkit-scrollbar-thumb  {
    background-color: #ccccff;
	background: linear-gradient(155deg, #ccccff 0%, #0033cc 100%);		
    border-radius: 50px;
	min-height: 125px;
}
body::-webkit-scrollbar-track,
.jet-mobile-menu__container-inner::-webkit-scrollbar-track,
.dialog-lightbox-message::-webkit-scrollbar-track {
    background-color: #333333;
}


/* *****************************
 * SOCIAL SHARE
 * *************************** */
a.jupiterx-social-share-link.btn .jupiterx-icon {
    color: #fff;
}
a.jupiterx-social-share-link.btn .jupiterx-icon:hover {
    opacity: .75;
}


/* *****************************
 * SCROLL TO TOP
 * *************************** */
.jupiterx-corner-buttons.jupiterx-scrolled {
    right: auto !important;
    left: -5px;
    bottom: -5px;
}
.jupiterx-scroll-top {
    background-image: linear-gradient(150deg, #ccccff 20%, #6685e0 100%);
    border-radius: 20px 0 20px !important;
	border: 0 !important;
    margin: 0 !important;
	padding: .75rem .35rem !important;	
	background-position: bottom right;
	background-size: 100%;
	transition: all 1s ease !important;
}
.jupiterx-scroll-top:hover {
	background-size: 300%;
	transition: all 1s ease !important;
}
.jupiterx-scroll-top:focus {
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgb(180 180 180 / 50%);
}
.jupiterx-icon-angle-up:before {
    content: url(/wp-content/uploads/2023/05/arrow-up-black.png) !important;
}


/* *****************************
 * IMAGE ELEMENT - ACT AS BACKGROUND IMAGE
 * *************************** */
.img-bg-object-fit,
.img-bg-object-fit .elementor-widget-container,
.img-bg-object-fit .raven-image,
.img-bg-object-fit .raven-image a {
	height: 100% !important;
}
.img-bg-object-fit img {
    height: 100% !important;

    object-fit: cover !important;

    display: block !important;
}