#slider {
    min-width: 100vw;
    height: 40vh;
    background-image: url(https://ccs2.bilalkulak.com.tr/assets/img/homebackground.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#specialprice{
    max-height: min-content;
}

#catsdrop{
    position: absolute;
    z-index: 1;
    height: 40vh;
}

#subcatsmain{
    height: 40vh;
}
#dropmenucats1{
    max-height: 37vh;
}


.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    display: none;
}

.popup-content {
    text-align: center;
}

.popup-message {
    color: white;
    font-size: 20px;
}


.popup2 {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}

.popup-content2 {
    background-color: #fff;
    width: max-content;
    margin: 100px auto; 
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#panel {
    transition: width 0.3s ease-out, right 0.3s ease-out;
}

#sidebar{
    z-index: 1000;  
}

@keyframes giris {
	0% {
		opacity: 0;
		transform: rotateX(100deg);
		transform-origin: bottom;
	}

	100% {
		opacity: 1;
		transform: rotateX(0);
		transform-origin: bottom;
	}
}

@keyframes sliderbtn {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes sliderbtnr {
	0% {
		transform: scale(1);
		transform-origin: 50% 50%;
	}

	100% {
		transform: scale(1);
		transform-origin: 100% 50%;
	}
}
@keyframes slidercontent {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes sliderexit {
	0% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		transform: translateX(-150px);
	}
}