/*your custom css goes here*/

@media only screen and (max-width: 767px) {
    .aiz-pagination {
        margin-bottom: 6rem !important;
    }
}

@media only screen and (max-width: 767px) {
    #section_newest {
        margin-bottom: 100px !important;
    }

   
.home-slider.slider-full {
    background-color: white !important; 
   
    padding: 14px !important;           
    overflow: hidden !important;       
}


.home-slider.slider-full .carousel-box img {
    border-radius: 15px !important;     
}
}


/* server  */



/* search bar */



     .search-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .search-input {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
            padding: 12px 50px 12px 16px;
            font-size: 14px;
            width: 100%;
            background: transparent;
        }
        
        .search-input:focus {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }
        
        .search-wrapper:focus-within {
            border-color: #FFF116;
            box-shadow: 0 0 0 0.2rem #FFF116;
        }
        
        .search-icon-button {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: color 0.2s;
            z-index: 2;
        }
        
        .search-icon-button:hover {
            color: #FFF116;
        }
        
        .search-icon-button:focus {
            outline: none;
            color: #FFF116;
        }
        
        /* Search suggestions dropdown */
        .typed-search-box {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-top: none;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            max-height: 300px;
            overflow-y: auto;
        }
        
        .search-preloader {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .dot-loader {
            display: flex;
            gap: 4px;
        }
        
        .dot-loader div {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #FFF116;
            animation: pulse 1.4s infinite ease-in-out both;
        }
        
        .dot-loader div:nth-child(1) { animation-delay: -0.32s; }
        .dot-loader div:nth-child(2) { animation-delay: -0.16s; }
        
        @keyframes pulse {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }
        
        .search-nothing {
            padding: 20px;
            text-align: center;
            color: #666;
        }
        
        .search-suggestion-item {
            padding: 10px 15px;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .search-suggestion-item:hover {
            background-color: #f8f9fa;
        }
        
        .search-suggestion-item:last-child {
            border-bottom: none;
        }
        
        .absolute-top-center {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
        }

        
/* search bar */


