.tour_bottom_content {
	background: var(--TOUR7_TOUR_BOTTOM_CONTENT_BG);
	color: var(--TOUR7_TOUR_BOTTOM_CONTENT_COLOR);
	/* margin: 10px 7rem; */
	border-radius: 8px;
	padding: 15px;
	font-weight: var(--REG_FONT_WEIGHT);
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
}

.tour_bottom_content .tour_bottom_title {
	color: var(--TOUR7_TOUR_CONTENT_TITLE_COLOR);
	margin-bottom: 1rem;
	font-weight: var(--MED_FONT_WEIGHT);
	font-size: var(--SECTION_HEADER_FONT_SIZE);
}

@keyframes expand {
  from {
    transform: scale(0.8); /* Start smaller */
  }
  to {
    transform: scale(1); /* End at normal size */
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tour_section {
	padding: 0px 1rem;
	margin: 20px 0;
}

.tour_container .tour_type_tab {
	list-style: none;
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.tour_container .tour_type_tab li a {
	font-size: var(--HEADER_FONT_SIZE);
	color: var(--TOUR7_TAB_COLOR);
	text-decoration:none;
}

.tour_container .tour_type_tab li a.active {
	border-bottom: var(--TOUR7_TAB_ACTIVE_BORDER);
}

.tour_container {
	position: relative;
}

.tour_container .title {
	color: var(--TOUR7_CONTAINER_TITLE_COLOR);
	padding-left: 2rem;
	font-weight: var(--SEMIBOLD_FONT_WEIGHT);
}

.tour_container .top_header {
	display: flex;
    justify-content: center;
    padding: 20px 0;
}

.tour_container .top_header .total_ongoing_tour,
.tour_container .top_header .total_complete_tour,
.tour_container .top_header .total_upcoming_tour {
	font-size: var(--SUBHEADER_FONT_SIZE);
	color: var(--TOUR7_TOTAL_ONGOING_TITLE_COLOR);
}

.tour_container .on_going_section .content,
.tour_container .completed_section .content,
.tour_container .upcoming_section .content {
	position:relative;
	padding: 0 1rem;
	animation: expand 1s ease forwards;
}

.tour_container .tour_item_card{
	position:relative;
	background: var(--TOUR7_CARD_BG);
	height: auto;
	border-radius: 13px;
	padding: 15px;
	margin: 0px 15px 20px 15px;
	transition: transform 0.5s ease;
}

.tour_container .tour_item_card .tour_bg_img {
	border-radius: 8px;
	max-height: 180px;
	height: 100%;
    object-fit: cover;
}

.tour_container .completed_section .tour_item_card .tour_bg_img {
	filter: grayscale(100%);
}

.tour_container .tour_item_card .tour_item_card_body {
	padding-top:10px;
}

.tour_container .tour_item_card .tour_item_card_body .tour_content_flex {
	position: relative;
	display:flex;
	align-items:center;
	justify-content: space-between;
} 

.tour_info:hover .info_tooltip {
	visibility: visible !important;
}

.tour_container .tour_item_card .tour_content_flex .tour_info .info_tooltip {
	position:absolute;
	right: 0;
	max-width: 200px;
	border-radius: 5px;
	padding: 7px;
	z-index: 10;
	background: var(--TOUR7_INFO_TOOLTIP_BG);
	visibility: hidden;
}

.tour_container .tour_item_card .tour_content_flex .tour_info .info_tooltip::before {  
	content: '';
    position: absolute;
    right: 5px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right:8px solid transparent;
    border-bottom: 8px solid var(--TOUR7_INFO_TOOLTIP_BG);
}

.tour_item_card_body .tour_content_flex .tour_status {
	padding: 5px 9px;
	border-radius: 8px;
	width: 100px;
	text-align:center;
	color: var(--TOUR7_BADGE_COLOR);
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
}

.tour_item_card_body .tour_content_flex .tour_status.active {
	background: var(--TOUR7_STATUS_BADGE_BG);
}

.tour_item_card_body .tour_content_flex .tour_status.finished {
	background: var(--TOUR7_STATUS_FISHED_BG);
}

.tour_item_card_body .tour_content_flex .tour_status.upcoming {
	background: var(--TOUR7_UPCOMING_BADGE_BG);
}

.tour_item_card_body .tour_content_flex .tour_info i {
	cursor: pointer;
	color: var(--TOUR7_INFO_ICON_COLOR);
	font-size: var(--ICON_FONT_SIZE);
} 

.tour_item_card_body .tour_details .tour_desc {
	margin-bottom: 6px;
	display:flex;
	transition: all .3s;
	color: var(--TOUR7_DESC_COLOR);
	padding: 5px;
	font-size: var(--HEADER_FONT_SIZE);
}

.tour_item_card_body .tour_details .tour_desc .text.hide_txt {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour_item_card_body .tour_details .tour-title {	
	color: var(--TOUR7_DETAILS_TITLE_COLOR);
}

.tour_item_card_body .tour_details .tour-title{
	font-weight: var(--MED_FONT_WEIGHT);
	font-size: var(--SECTION_HEADER_FONT_SIZE);
	font-family: var(--PRIMARY_FONT_FAMILY);
	margin-bottom: 11px;
}

.tour_item_card_body .tour_details .btn-more-info,.tour_details .btn-read-more{
	background: var(--TOUR7_DETAILS_BTN_BG);
	color: var(--TOUR7_DETAILS_BTN_COLOR);
	border:none;
	border-radius: 8px;
	height: 35px;
	width: 100%;
	font-weight: var(--REG_FONT_WEIGHT);
	font-size: var(--BUTTON_SMALL_FONT_SIZE);
	margin-top: 6px;
}

.tour_item_card_body .tour_details .btn-more-info:hover,.tour_details .btn-read-more:hover {
	background: var(--TOUR7_DETAILS_BTN_HOVER_BG);
	color: var(--TOUR7_DETAILS_BTN_HOVER_COLOR);
	transition: .3s;
}

.tour_item_card .tour_content_right .tour_prize_pool label,
.tour_item_card .tour_content_right .tour_countdown_widget .countdown_title{
	color: var(--TOUR7_LABEL_COLOR);
	font-weight: var(--SEMIBOLD_FONT_WEIGHT);
}

.tour_item_card .tour_item_card_body .tour_countdown_widget .countdown_title {
	text-align:center;
	margin-bottom: 7px;
	color: var(--TOUR7_COUNT_DOWN_TITLE_COLOR);
	font-size: var(--HEADER_FONT_SIZE);
	font-weight: var(--MED_FONT_WEIGHT);
}
 .tour_item_card .tour_item_card_body .tour_countdown_widget .tour_widget_flex{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.tour_item_card .tour_content_right .tour_prize_pool input {
	width: 100%;
	padding: 8px 0 8px 15px;
	border-radius: 8px;
	border: var(--TOUR7_INPUT_BORDER);
	color: var(--TOUR7_INPUT_COLOR);
	font-weight: var(--tour7_PRICE_POOL_INPUT_FONT_WEIGHT);
}

.tour_item_card .tour_item_card_body .tour_countdown_widget {
	padding: 12px;
	background: var(--TOUR7_COUNTDOWN_WIDGET_BG);
	border: 1px solid var(--TOUR7_COUNTDOWN_WIDGET_BORDER_COLOR);
	border-radius: 8px;
}

.tour_item_card .tour_item_card_body .tour_countdown_widget .tour_widget_flex .widget_item {
	text-align: center;
	height: auto;
	width: 40px;
	color: var(--TOUR7_WIDGET_ITEM_COLOR);
	margin: 0 auto;
}

.widget_bottom_title {
	font-size: var(--BODY_TXT_FONT_SIZE);
	text-transform: lowercase;
}

.tour_countdown_widget .tour_widget_flex .widget_item .inner {
	background: var(--TOUR7_WIDGET_ITEM_INNER_BG);
	color: var(--TOUR7_WIDGET_ITEM_INNER_COLOR);
	border: var(--TOUR7_INPUT_BORDER);
	border-radius: 8px;
	padding: 9px 0;
	font-weight: var(--MED_FONT_WEIGHT);
}

.slide_btn {
    background: var(--TOUR7_SLICK_BUTTON_BG);
    color: var(--TOUR7_SLICK_BUTTON_COLOR);
    border: none;
    border-radius: 30px;
    padding: 15px;
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.slide_btn:hover {
	background: var(--TOUR7_SLICK_BUTTON_HOVER_BG);
	transition: .3s;
}

.slide_btn i {
	font-size: var(--ICON_XSMALL_FONT_SIZE);
}

.slide_btn.slick-disabled {
	background: var(--TOUR7_SLIDE_BTN_DISABLED_BG) !important;
	cursor: not-allowed;
}

.slide_btn.prev_btn {
	left: 0;
}

.slide_btn.next_btn {
	right: 0;
}

.slide_content.grid_view .tour_item_card, .tour_rank_list .rank_list_body{
  	animation: expand 0.5s ease forwards;
}

.tour_container .back_btn {
	background: var(--TOUR7_BTN_BACK_BG);
    color: var(--TOUR7_BTN_BACK_COLOR);
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 8px;
    border-radius: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    /* left: -9px;
    z-index: 99; */
}

.tour_container .back_btn:hover {
	background: var(--TOUR7_BTN_BACK_HOVER_BG);
	color: var(--TOUR7_BTN_BACK_HOVER_COLOR);
	transition: .3s;
}

.tour_wrapper .tour_rank_list {
	position: relative;
	width: 470px;
}

#rankModal .modal-content {
	background: var(--TOUR7_RANK_LIST_BG) !important;
}

#rankModal .rank_list_title {
	color: var(--TOUR7_RANK_LIST_TITLE_COLOR);
	text-align:center;
	font-weight: var(--MED_FONT_WEIGHT);
	font-size: var(--SECTION_HEADER_FONT_SIZE);
}

#rankModal .rank_list_table {
	margin-top: 15px;
	display:flex;
	flex-direction: column;
}

#rankModal .rank_list_table .rank_list_tbody {
	color: var(--TOUR7_RANK_LIST_TBODY_COLOR);
	text-align: center;
}

#rankModal .rank_list_table .rank_list_tbody .-col {
	display:flex;
	justify-content: space-around;
	align-items: center;
	padding: .825rem;
	border-radius: 10px;
	margin-bottom:1rem;
	background: var(--TOUR7_RANK_LIST_COL_BG);
}

#rankModal .rank_list_table .rank_list_tbody .first_prize_col  {
	background: var(--TOUR7_RANK_LIST_FIRST_PRIZE_BG);
}

#rankModal .rank_list_table .rank_list_tbody .second_prize_col  {
	background: var(--TOUR7_RANK_LIST_SECOND_PRIZE_BG);
}

#rankModal .rank_list_table .rank_list_tbody .thrid_prize_col  {
	background: var(--TOUR7_RANK_LIST_THRID_PRIZE_BG);
}

#rankModal .rank_list_table .rank_list_tbody .-col img,
#rankModal .rank_list_table .rank_list_tbody .-col .col_index{
	width: 30px;
	height: 30px;
}

#rankModal .rank_list_table .rank_list_tbody .-col img {
	object-fit: contain;
}

#rankModal .rank_list_table .rank_list_tbody .-col .col_index {
	background: var(--TOUR7_RANK_LIST_COL_INDEX_BG);
	border-radius: 20px;
	padding: 6px 0;
	font-weight: var(--SEMIBOLD_FONT_WEIGHT0);
}

#rankModal .rank_list_table .rank_list_thead {
	color: var(--TOUR7_RANK_LIST_THEAD_COLOR);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: .825rem;
}

.list_slide .tour_content {
	padding: 15px;
}

.list_slide .tour_content div {
	margin-top: 10px;
}

.list_slide .tour_content h5{
	font-weight: var(--MED_FONT_WEIGHT);
	font-size: var(--SECTION_HEADER_FONT_SIZE);
	color: var(--TOUR7_TOUR_CONTENT_TITLE_COLOR);
	text-transform: uppercase;
}

.tour_about_container {
	padding: 20px 0 0 2rem;
	max-width: 700px;
	width: 100%;
}

.tour_about_container h2 {
	font-size: var(--SECTION_HEADER_FONT_SIZE);
	margin-bottom: 15px;
	color: var(--TOUR7_ABOUT_CONTAINER_TITLE_COLOR);
}

.tour_about_container .tour_about_content {
	color: var(--TOUR7_ABOUT_CONTAINER_COLOR);
}

.-wrapper {
	display: block;
    padding: 1rem 1.75rem 0 1.75rem;
    width: 100%;
    margin: auto;
}

.tour_wrapper {
	margin-top: 30px;
}

.tour_wrapper .content {
	margin-top: 15px;	
}

.tour_bottom_content div {
	max-width: 350px;
	overflow: auto;
}

.rank_list_btn {
	background: var(--TOUR7_DETAILS_BTN_BG);
    color: var(--TOUR7_DETAILS_BTN_COLOR);
    border: none;
    border-radius: 8px;
    height: 35px;
    width: 120px;
    font-weight: var(--REG_FONT_WEIGHT);
    font-size: var(--BUTTON_SMALL_FONT_SIZE);
    margin-left:auto;
    display:block;
}