/**
* Theme Name: Chakta Child
* Description: This is a child theme of Chakta, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/KlbTheme">KlbTheme (Sinan ISIK)</a>
* Template: chakta
* Version: 1.7.6
*/

/* General */
.custom-header {
    background-color: #2127d5;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    max-height: 100px;
	width: auto;
}

/* Hamburger Old
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease-in-out;
} */
/* Hamburger New */
.hamburger {
    display: inline-block;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

/* X Transform */
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Offcanvas Menu */
.offcanvas {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease-in-out;
    padding: 30px 20px;
    overflow-y: auto;
    z-index: 2000;
}

.offcanvas.open {
    left: 0;
}

.offcanvas-menu-items {
    list-style: none;
    padding: 0;
}

.offcanvas-menu-items li {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.offcanvas-menu-items a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    display: block;
}

.offcanvas-menu-items a:hover {
    color: #2127d5;
}

/* Mobile */
@media (min-width: 320px) and (max-width: 480px) {
	.offcanvas {
		width: 220px;
	}
  
}

/* Vehicle Find Plugin */
.nice-select .list {
  max-height: 350px !important; 
  overflow-y: scroll !important;
}