/**
 * Theme Name:     JLS Child Theme
 * Author:         Netwise DMC
 * Template:       jls
 * Text Domain:	   jls-child-theme
 * Description:    JLS CUSTOM THEME by Netwise DMC.
 * Theme URI:      https://netwise.gr
 * Author URI:     https://netwise.gr
 */

body {overflow-x: hidden!important;}
html {overflow-x: hidden!important;}

::-webkit-scrollbar
{
	width: 10px;
	background-color: #f3f3f3;
}

::-webkit-scrollbar-thumb
{
	border-radius: 0px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #570B17;
}

::selection {
  color: white;
  background: #0E3C50;
}


.fleet-details {
    list-style: none !important; /* Remove the default list bullets */
    padding: 0 !important; /* Remove any default padding */
    margin: 0 !important; /* Remove any default margin */
    display: flex !important; /* Use flexbox for inline layout */
    flex-wrap: wrap !important; /* Allow wrapping if necessary */
}

.fleet-details li {
    display: inline !important; /* Display list items inline */
    margin-right: 8px !important; /* Space between list items */
}

.fleet-details p:not(:last-child)::after {
    content: " / " !important; /* Add " / " between list items */
    margin-right: 8px !important; /* Space after the separator */
}

.fleet-slider {
    max-width: 100%;
    margin: 0 auto; /* Center the slider */
    overflow: hidden; /* Hide overflow to maintain the slider's clean look */
}

.fleet-slider .slide-item {
    padding: 10px; /* Optional padding for visual spacing */
    display: flex;
    justify-content: center; /* Center images horizontally */
    align-items: center; /* Center images vertically */
}

.fleet-slider img {
    display: block;
    max-width: 100%; /* Make sure the images are responsive */
    height: auto; /* Maintain the aspect ratio of the images */
    object-fit: contain; /* Ensure images fit inside the container without distortion */
}



