/*
 Theme Name:   Riverside Equipment 
 Theme URI:    
 Description:  Customized theme for Riverside Equipment
 Author:       FirstPage Marketing
 Author URI:   https://www.firstpagemarketing.com
 Template:     hello-elementor
 Version:      1.0.9
*/

/* jetMenu Back Button Fix */
.jet-mobile-menu__controls div[aria-label="Back to Prev Items"] i:before {
    content: "\f0a8";
}

.new-background {
    background-color: #0F0D0B !important;
}

.equipment-breadcrumb {
	color: #fff;
}

.riverside-taxonomy-jump {
    width: 100%;
}

.riverside-taxonomy-jump__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.riverside-taxonomy-jump__select {
    min-width: 260px;
    height: 46px;
	max-height: 46px;
    padding: 0 14px;
    font-size: 16px;
    line-height: 1.2;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    flex: 1 1 260px;
}

.riverside-taxonomy-jump__button {
    height: 46px;
    padding: 0 22px;
    font-size: 18px;
	font-family "Reddit Sans", sans serif;
	text-transform: Uppercase;
	font-weight: 700 !important;
    line-height: 1;
	letter-spacing: 0.2px;
    border: none;
    border-radius: 4px;
    background-color: #D9A42D !important;
    color: #fff !important;
	border: 1px solid #D9A42D !important;
    cursor: pointer;
}

.riverside-taxonomy-jump__button:hover {
    background-color: #C7931F !important;
}

.riverside-taxonomy-jump__button:focus,
.riverside-taxonomy-jump__select:focus {
    outline: none;
}

@media (max-width: 767px) {
    .riverside-taxonomy-jump__inner {
        flex-direction: column;
        align-items: stretch; 
    }

    .riverside-taxonomy-jump__select,
    .riverside-taxonomy-jump__button {
        width: 100%;
    }
}


/* Custom Table Styles */
table td,
table th {
    border: 1px solid #A81B10 !important;
    background-color: white !important;
}

ul li::marker {
    color: #A81B10 !important;
}

/* Bottom Margin for UL and OL */
.elementor-widget-text-editor ul,
.elementor-widget-text-editor ol {
    margin-bottom: 0.9em;
    text-align: left;
}

/* Custom Table Styles */
table {
    width: 100%;
    overflow-x: scroll;
}

table th {
    background-color: #00426B;
    color: white;
}

table tbody tr td:first-of-type {
    font-weight: bold;
}

/* Inline Image Styling */
img.alignleft {
    max-width: 50% !important;
    margin: 0 30px 30px 0;
}

img.alignright {
    max-width: 50% !important;
    margin: 0 0 30px 30px;
}

img.aligncenter {
    margin: 0 auto 30px;
}

img.alignnone {
    margin: 0 0 30px 0;
}

@media (max-width: 768px) {

    img.alignleft,
    img.alignright,
    img.aligncenter,
    img.alignnone {
        display: block;
        margin: 0 auto 30px;
        max-width: 100% !important;
        float: none;
    }
}

/* Elementor Animation Improvements */
@keyframes fadeInDownFPM {
    from {
        opacity: 0;
        transform: translate3d(0, -60px, 0);
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDownFPM !important;
}

@keyframes fadeInLeftFPM {
    from {
        opacity: 0;
        transform: translate3d(-60px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeftFPM !important;
}

@keyframes fadeInRightFPM {
    from {
        opacity: 0;
        transform: translate3d(60px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRightFPM !important;
}

@keyframes fadeInUpFPM {
    from {
        opacity: 0;
        transform: translate3d(0, 60px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUpFPM !important;
}