@tailwind base;
@tailwind components;
@tailwind utilities;


html
{
    position: relative;
}


/* body:not(.meeting_result):not(.catering_result) {
    padding-top: 260px;
}


body.meeting_result,
body.catering_result {
    padding-top: 80px;
} */


.site_header
{
    background-color: #f9f9f9;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999; 
}

.site_header *
{
    transition: all .3s ease-in-out;
}

.header_scrolled .site_nav_wrap,
.header_scrolled_inner .site_nav_wrap
{
    margin-top: -180px;
}

/* .header_scrolled .site_header_row,
.header_scrolled_inner .site_header_row
{
    align-items: center !important;
} */


.site_nav li a
{
    border: solid 1px #ccc;
    display: inline-flex;
    padding: 5px 15px;
    border-radius: 25px;
    text-decoration: none;
    gap: 10px;
    color: #000;
    background-color: #fff;

}

.site_nav li a:hover
{
    border-color: #D3ECA2;
    background-color: #ecf3df;
}

.site_nav li a.site_nav_active
{
    border-color: #D3ECA2;
    background-color: #ecf3df;
    color: #95a96e;
}


.site_login_btn
{
    border-radius: 25px;
    padding: 5px 15px;
    border: solid 1px #ccc;
    font-size: 14px;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    color: #000;
    gap: 5px;
}

.site_lang_dropdown button
{
    padding: 2px 2px 0px 0px;
    border: solid 1px #ccc !important;
    border-radius: 25px;
}

.site_lang_dropdown button.dropdown-toggle::after
{
    display: none;
}

.site_search_title
{
    width: fit-content;
    position: relative;
    font-size: 32px;
}

.site_search_title span
{
    position: relative;
    z-index: 1;
}

.site_search_title::after
{
    content: "";
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    height: 15px;
    background-color: #D3ECA2;
    z-index: 0;
    left: 2px;
    z-index: 0;
}

.site_search_subtitle
{
    font-size: 18px;
}


.site_search_wrap
{
    background-color: #fff;
    border: solid 2px #e5e5e5;
    border-radius: 25px;
    padding: 5px 5px;
    align-items: center;
}


input
{
    box-shadow: none !important;
}

.site_search_wrap .form-control
{
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-right-color: #e5e5e5;
    border-radius: 25px;
    border-width: 2px;
}

body.overlay:before
{
    content:"";
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    background-color:#0000004d;
    position:absolute;
    z-index:1

}

.site_search_wrap input::placeholder,
.site_quantity_label
{  
  opacity: .5; /* Ensures full opacity, especially in Firefox */
}

.form-check-input:checked {
    background-color: #97bd4c;
    border-color: #97bd4c;
}

.site_search_wrap input#person_from_to
{

    border-right: none !important;
    width: 60px;
}

.site_quantity input::-webkit-outer-spin-button,
.site_quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.site_quantity .qty-btn
{
    border-color: #e5e5e5;
    padding: 0px 0px 2px 0px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.site_quantity_wrap
{
    border-right: solid 2px #e5e5e5;
}



/* Hide original select */
#product_category {
    display: none;
}

/* Custom dropdown wrapper */
.custom-select-wrapper {
    position: relative;
}

/* Trigger */
.custom-select-trigger {
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
}

/* Options */
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    z-index: 99;
}

.custom-option {
    padding: 12px 16px;
    cursor: pointer;
}

/* Trigger with arrow */
.custom-select-trigger {
    padding: 6px 16px;
    background: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
    
}

/* Arrow */
.custom-select-trigger::after {
    content: "▼";
    font-size: 14px;
    margin-left: 10px;
    transition: 0.3s ease;
    transform: rotate(0deg);
    color: #acadaf;
}

/* Arrow rotate when open */
.custom-select-trigger.active::after {
    transform: rotate(180deg);
}

/* Options */
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    z-index: 99;
}


.custom-option:hover {
    background: #f5f5f5;
}



.site_search_wrap input:focus
{
    border-color: #e5e5e5;
}

.site_search_wrap .btn {
    border-radius: 25px !important;
}


.pac-container {
    border-radius: 30px !important;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
}


.pac-container .pac-item:first-child
{
    border-top: none;
    padding-top: 5px;
}
.pac-container .pac-item:last-child
{
    padding-bottom: 5px;
}

.pac-item {
    padding: 5px 15px !important;
    font-size: 14px !important;
}

.pac-item:hover {
    background: #f5f5f5 !important;
}

.pac-item-query {
    font-weight: bold !important;
    color: #000 !important;
}

.pac-logo:after
{
    display: none !important;
}


.btn-primary
{   
    background-color: #97bd4c;
    border-color: #97bd4c;
}


.btn-primary:hover,
.btn-primary:focus
{   
    background-color: #557a09 !important;
    border-color: #557a09 !important;
}


.site_search_btn
{
    display: inline-flex;
    align-items: center;
    gap: 5px;    
}




.site_card_box_img_wrap
{
    position: relative;
    margin-bottom: 10px;
}




.site_card_box_img
{
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.site_card_box_like
{
    position: absolute;
    top: 20px;
    right: 20px;
}

.site_card_box_rating
{
    display: flex;
    align-items: center;
    gap: 5px;
        font-size: 12px;
}

.site_rating_total
{
    color:#f39c12;
}

.site_rating_count
{
    color: #ccc;
}

.site_card_box_tags
{
    margin-bottom: 10px;
}


.site_swiper_btn_wrap
{

}

.site_swiper_btn_wrap {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.site_swiper_btn
{
    background-color: #EBEBEB;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
}

.site_swiper_btn:hover
{
opacity: .9;
}

.site_swiper_btn.swiper-button-disabled
{
    opacity: .5;
}

.pagination
{
    gap: 10px;
}
.pagination .page-link
{
width: 35px;
    height: 35px;
    display: flex;
    align-items: center;    
    
    border-radius: 100%  !important;
}

.page-item:first-child .page-link
{
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-hidden="true" role="presentation" focusable="false" style="display: block; fill: none; height: 12px; width: 12px; stroke: currentcolor; stroke-width: 4; overflow: visible;"><path fill="none" d="M20 28 8.7 16.7a1 1 0 0 1 0-1.4L20 4"></path></svg>');
        background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0px;
}

.page-item:last-child .page-link
{
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-hidden="true" role="presentation" focusable="false" style="display: block; fill: none; height: 12px; width: 12px; stroke: currentcolor; stroke-width: 4; overflow: visible;"><path fill="none" d="m12 4 11.3 11.3a1 1 0 0 1 0 1.4L12 28"></path></svg>');
        background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0px;
}

.page-link
{
    color: #000;
    box-shadow: none !important;
}

.active>.page-link, 
.page-link.active
{
    color: #fff;
    background-color: #000;
    border-color: #000;

}

.page-link:hover,
.page-link:focus
{
    color: #557a09
}

.site_meeting_items_row
{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.site_col
{
    width: 15rem;
}