.elementor-3916 .elementor-element.elementor-element-b48df08{--display:flex;--min-height:20px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-3916 .elementor-element.elementor-element-50b5f39{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--overlay-opacity:0.5;--border-radius:20px 20px 20px 20px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);}.elementor-3916 .elementor-element.elementor-element-50b5f39:not(.elementor-motion-effects-element-type-background), .elementor-3916 .elementor-element.elementor-element-50b5f39 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-3916 .elementor-element.elementor-element-50b5f39::before, .elementor-3916 .elementor-element.elementor-element-50b5f39 > .elementor-background-video-container::before, .elementor-3916 .elementor-element.elementor-element-50b5f39 > .e-con-inner > .elementor-background-video-container::before, .elementor-3916 .elementor-element.elementor-element-50b5f39 > .elementor-background-slideshow::before, .elementor-3916 .elementor-element.elementor-element-50b5f39 > .e-con-inner > .elementor-background-slideshow::before, .elementor-3916 .elementor-element.elementor-element-50b5f39 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#FFFFFF;--background-overlay:'';}.elementor-3916 .elementor-element.elementor-element-cf25023.elementor-element{--flex-grow:1;--flex-shrink:0;}.elementor-3916 .elementor-element.elementor-element-e2854e2{--display:flex;--min-height:30px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-3916 .elementor-element.elementor-element-98eac79{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-3916 .elementor-element.elementor-element-419f0ba.elementor-element{--flex-grow:1;--flex-shrink:0;}@media(min-width:768px){.elementor-3916 .elementor-element.elementor-element-b48df08{--content-width:500px;}.elementor-3916 .elementor-element.elementor-element-50b5f39{--width:65%;}.elementor-3916 .elementor-element.elementor-element-98eac79{--width:65%;}}/* Start custom CSS for html, class: .elementor-element-cf25023 *//* کانتینر اصلی کارت تور - 100٪ عرض کانتینر والد */
.tour-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
    min-height: 160px;
}

/* بخش جزئیات (سمت چپ) - دو سوم عرض */
.details-section {
    flex: 2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.info-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.info-item:not(:last-child) {
    border-left: 1px solid #eee;
}

.info-item:first-child {
    padding-right: 0;
}

.label {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 6px;
    white-space: nowrap;
}

.value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* بخش قیمت (سمت راست) - یک سوم عرض  ** با خط چین در سمت راست **  */
.price-section {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* افقی وسط‌چین */
    text-align: center; /* متن وسط‌چین */
    background: #fafafa;
    min-width: 200px;
    border-right: 1px dashed #ccc;
}

.price-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 6px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.currency {
    font-size: 0.9rem;
    font-weight: 400;
}

.services-text {
    margin-top: 12px;
    font-size: 0.7rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.5;
}

/* آیکون‌های SVG */
.icon {
    width: 16px;
    height: 16px;
    stroke: #999;
    fill: none;
    flex-shrink: 0;
}

/* نسخه موبایل - خط چین در بالا */
@media (max-width: 768px) {
    .tour-card {
        flex-direction: column;
    }
    
    .price-section {
        border-right: none; /* حذف خط راست */
        border-top: 1px dashed #ccc; /* خط چین در بالای بخش قیمت */
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .details-section {
        padding: 20px;
        width: 100%;
    }
    
    .info-container {
        justify-content: space-between;
    }
    
    .info-item {
        border-left: none !important;
        padding: 0 !important;
        flex: 1;
        min-width: 45%;
    }
    
    .tour-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}

/* پشتیبانی از RTL */
body {
    direction: rtl;
    font-family: 'IRANSans', 'Tahoma', Arial, sans-serif;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-419f0ba */.cart-package{
     
     border-radius: 15px;
     margin-bottom: 15px;
}

.fly-header-container {
        direction: rtl;
        font-family: sans-serif;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 10px;
        border-bottom: 1px solid #eee; /* خط ملایم پایین هدر */
        margin-bottom: 10px;
         
    }

    .fly-header-right {
        font-size: 20px;
        font-weight: bold;
        color: #1a202c;
        display: flex;
        align-items: center;
        
    }

    /* اگر خواستید یک خط عمودی کوچک کنار عنوان باشد */
    .fly-header-right::before {
        content: "";
        display: inline-block;
        width: 4px;
        height: 24px;
        background-color: #100baf; /* رنگ سازمانی فلای سپهر */
        margin-left: 12px;
        border-radius: 2px;
    }

    .fly-header-left {
        font-size: 14px;
        color: #718096;
        background: #f7fafc;
        padding: 5px 15px;
        border-radius: 20px;
    }


    /* ظرف اصلی کارت - کاهش پدینگ و فواصل */
    .fly-sepehr-card {
        direction: rtl;
        font-family: sans-serif;    
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        display: flex;      
        overflow: visible;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
       
        
    }

    /* بخش تصویر - کاهش عرض برای هماهنگی با ارتفاع کمتر */
    .fly-image-section {
        width: 240px; 
        min-width: 240px;
        position: relative;
        
    }

    .fly-image-section img {
        width: 90%;
        height: 90%;
        margin: 7px;
        object-fit: cover;
        border-radius: 20px 20px;
        
    }

    
    /* بخش اطلاعات - کاهش پدینگ و فواصل بین خطوط */
    .fly-info-section {
        flex: 2;
        padding: 15px 25px; /* کاهش پدینگ از ۲۵ به ۱۵ */
        display: flex;
        flex-direction: column;
        justify-content: center;
        
    }

    .fly-tour-title {
        font-size: 17px; /* کمی کوچک‌تر */
        font-weight: bold;
        color: #1a202c;
        margin-bottom: 10px; /* کاهش فاصله از ۲۰ به ۱۰ */
        text-align: right;
        
    }

    .fly-info-item {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 6px; /* کاهش فاصله از ۱۲ به ۶ */
        color: #4a5568;
        font-size: 13px;
        gap: 8px;
        
    }

    .fly-info-icon { font-size: 16px; order: 1;}
    .fly-info-text { order: 2; }

    /* بخش جداکننده */
    .fly-divider {
        position: relative;
        width: 1px;
    }

    .fly-dashed-line {
        position: absolute;
        top: 10%;
        bottom: 10%;
        left: 0;
        border-left: 1.5px dashed #cbd5e0;
    }

    .fly-plane-circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        border: 1px solid #cbd5e0;
        width: 32px; /* کوچک‌تر کردن دایره */
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
		
    }

    /* بخش قیمت و دکمه */
    .fly-price-section {
        flex: 1.2;
        padding: 10px 20px; /* کاهش پدینگ */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fly-price-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 5px;
    }

    .fly-price-label { font-size: 12px; color: #718096; }
    .fly-price-amount { font-size: 20px; font-weight: bold; color: #1a202c; }
    .fly-price-currency { font-size: 13px; margin-right: 3px; }

    .fly-price-bottom-row {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        color: #718096;
        font-size: 12px;
        margin-bottom: 12px; /* کاهش فاصله قبل از دکمه */
    }

    .fly-info-circle {
        width: 14px;
        height: 14px;
        border: 1px solid #a0aec0;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
		margin-left:5;
    }

    .fly-btn-action {
        background: #100baf;
        color: #fff  !important;
        text-decoration: none;
        padding: 8px 0; /* کاهش ارتفاع دکمه */
        width: 100%;
        text-align: center;
        border-radius: 50px;
        font-weight: bold;
        font-size: 14px;
        transition: 0.3s;
    }

    @media (max-width: 850px) {
        .fly-sepehr-card { flex-direction: column; }
        .fly-image-section { width: 100%; height: 180px; }
        .fly-image-section img { border-radius: 20px 20px 0 0; }
        .fly-divider { display: none; }
        .fly-info-section { padding: 15px; }
    }

	
	text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
	}
	.py-1 {
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}
	.px-3 {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}
	.bg-gray-100 {
		background-color: #959599ff;
	}
	
		.bg-\[\#c5df7eff\] {
		background-color: #c5df7eff;
	}

	.border-gray-300 {
		--tw-border-opacity: 1;
		border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
	}

	.border {
		border-width: 1px;
	}
	.rounded-full {
		border-radius: 9999px;
	}
	*, ::before, ::after {
		box-sizing: border-box;
		border-width: 0;
		border-style: solid;
		border-color: #e5e7eb;
	}
	
	
	.gap-2 {
    gap: 0.5rem;
	}

	.justify-start {
		justify-content: flex-start;
	}
	.items-center {
		align-items: center;
	}
	.flex-wrap {
		flex-wrap: wrap;
	}
	.flex {
		display: flex;
	}
	
.text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.w-4 {
    width: 1rem;
}
.h-4 {
    height: 1rem;
}
img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
}

.head{
       border: 1px black solid;
       background-color:darkgrey;
        
    }
    .tbl{
        width: 100%;
        border: 1px black solid;
        /*border-radius: 15px;*/
        text-align: center;
    }/* End custom CSS */