﻿/* Basic style for the Select2 dropdown */
.select2 {
    width: 100%;
}

/* Style adjustments for smaller screens */
@media (max-width: 768px) {
    .select2 {
        width: 100%;
    }
}

.select2-container .select2-selection--single {
    height: 38px; /* Set the height of the selected item */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px; /* Vertically center the text */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px; /* Match the height of the selected item */
}

/* Customizing the appearance of the dropdown options */
.select2-container--default .select2-results__option {
    padding: 10px; /* Add padding to the options */
}

.select2-container--default .select2-results__option--highlighted {
    background-color: #007bff; /* Change the background color of the highlighted option */
    color: #fff; /* Change the text color of the highlighted option */
}

.swiper-slide .category-text {
    text-align: center !important;
    color: #212121;
    text-transform:capitalize;
}
.ellipsis-two {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
