.tour-summary-widget {
    position: fixed;
    top: 80px;
    /*right: 320px;*/
	left: 69%;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
    border: 1px solid #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tour-summary-widget .tour-header {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: #000000;
    padding: 16px 20px;
}

.tour-summary-widget .tour-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.tour-summary-widget .tour-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.tour-summary-widget .impact-section {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.tour-summary-widget .impact-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    cursor: pointer;
}

.tour-summary-widget .impact-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-summary-widget .impact-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.tour-summary-widget .impact-item::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    margin-right: 8px;
    font-size: 12px;
}

.tour-summary-widget .tour-selected {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.tour-summary-widget .tour-selected-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    cursor: pointer;
}

.tour-summary-widget .tour-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tour-summary-widget .tour-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    flex-shrink: 0;
}

.tour-summary-widget .tour-details h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
}

.tour-summary-widget .tour-meta {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.tour-summary-widget .tour-price {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.tour-summary-widget .balance-section {
    padding: 16px 20px;
}

.tour-summary-widget .balance-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}

.tour-summary-widget .balance-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.tour-summary-widget .balance-item.deposit {
    color: #666;
}

.tour-summary-widget .balance-item.additional {
    color: #666;
}

.tour-summary-widget .balance-item.remaining {
    color: #666;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.tour-summary-widget .total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
}

.tour-summary-widget .tour-image-large {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
}

.tour-summary-widget .chevron {
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg);
    display: inline-block;
}

.tour-summary-widget .chevron.rotated {
    transform: rotate(225deg);
}
.chevron_container
{
	/*border: solid 1px; */
    padding: 4px 8px 5px 8px;
    border-radius: 50%;
    background: #F0EAFF;
}
/* Responsive */
@media (max-width: 1200px) {
    .tour-summary-widget {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .tour-summary-widget {
        width: calc(100% - 32px);
        margin: 16px;
    }
}