@charset "UTF-8";
/* CSS Document */
.tour_box_link a{
	width: 100%;
    display: block;
}

.tour_box_link{
	width:50%;
}
.tour_box_menu.dynamic{
    display:flex;
}

.tour_box.dynamic{
    float: none;
	position: relative;
    display: flex;
    flex-direction: column;
	height:auto;
	width:100%;
}

.result_card_content{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.result_card_image{
    height: 200px;
    overflow: hidden;
    min-height: 200px;
    max-height: 200px;
	border-radius: 6px;
    display:flex;
    align-items:center;
    justify-content: center;
    margin-bottom:10px;
}
.result_card_image img.tour_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
}

.tour_desc{
    flex-grow:1;
    margin-bottom:12px;
}

.result_card_table{
    display:grid;
	
    column-gap: 12px;
}
.result_card_table.no_result{
    display: flex;
    align-items: center;
    flex-direction: column;
    color:white;
}

.campaign.no_result{
    display:flex;
    align-items: center;
    flex-direction: column;
    color:black;
    height:200px;
    justify-content: center;;
}
.tour_box_link.no_result {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    width:30%;
}



@media (min-width: 768px) {
	.result_card_table{
        grid-template-columns: 1fr 1fr;
    }
    
}
@media (min-width: 992px) {
	.result_card_table{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
