.tour-card {
	/* First */
    width: 300px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
}

.tour-card .image-container {
    height: 250px;
    width: 100%;
}

.tour-card .image-container .image {
    height: 100%;
    width: 100%;
}

.tour-card .details-container {
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 -10px 10px rgba(128, 128, 128, 0.116);
}

.tour-card .details-container .days-nights-container {
    font-size: 12px;
    color: gray;
    padding: 5px 10px;
    box-shadow: 0 0 5px rgba(128, 128, 128, 0.178);
}

.tour-card .details-container .days-nights-container .label {
    margin-bottom: 0;
    margin-left: 3px;
}

.tour-card .details-container .name-container {
    padding: 5px 2px;
    border-bottom: 2px solid lightgray;
}

.tour-card .details-container .name-container .name {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

.tour-card .details-container .more-info-btn {
    font-size: 14px;
    padding: 5px 8px;
    border: 0;
    border-radius: 5px;
    background-color: var(--theme-color-1);
    color: #fff;
    cursor: pointer;
}

.tour-card .details-container .cost-label {
    font-size: 12px;
    color: gray;
    margin-bottom: 0px;
}

.tour-card .details-container .cost-value {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}