.tour_bottom_content {
	background: var(--TOUR7_TOUR_BOTTOM_CONTENT_BG);
	color: var(--TOUR7_TOUR_BOTTOM_CONTENT_COLOR);
	border-radius: 8px;
	padding: 15px;
	font-weight: var(--SEMIBOLD_FONT_WEIGHT);
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	overflow: auto;
	max-width: 670px;
	max-height: 400px;
    margin: 10px auto;
}

.tour_bottom_content .tour_bottom_title {
	color: var(--TOUR7_TOUR_CONTENT_TITLE_COLOR);
	margin-bottom: 1rem;
	font-weight: var(--SEMIBOLD_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 3rem;
	margin: 5rem 0;
}

.tour_wrapper.flex_view {
	display: flex;
	justify-content: center;
}

.tour_container {
	position: relative;
}

.tour_container .title {
	color: var(--TOUR7_CONTAINER_TITLE_COLOR);
	padding-left: 2rem;
	font-weight: var(--MED_FONT_WEIGHT);
	font-size: var(--SECTION_HEADER_FONT_SIZE);
	font-family: var(--SECONDARY_FONT_FAMILY);
    letter-spacing: 1px;
}

.tour_container .top_header {
	display: flex;
    justify-content: space-between;
    padding: 20px 0 20px 2rem;
}

.tour_container .top_header .total_ongoing_tour,
.tour_container .top_header .grid_toggle,.total_upcoming_tour,.total_complete_tour {
	font-size: var(--BODY_TXT_FONT_SIZE);
}

.tour_container .top_header .total_ongoing_tour{
	color: var(--TOUR7_TOTAL_ONGOING_TITLE_COLOR);
}

.tour_container .top_header .grid_toggle {
	color: var(--TOUR7_GRID_TOGGLE_COLOR);
}

.tour_container .slide_content{
	position:relative;
	padding: 0 1rem;
	animation: expand 1s ease forwards;
}

.tour_container .tour_item_card{
	position:relative;
	background: var(--TOUR7_CARD_BG);
	max-width: 670px;
	height: auto;
	border-radius: 13px;
	padding: 15px;
	margin: 0px 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_inner_list_slide .tour_item_card .tour_bg_img {
	filter: grayscale(100%);
}

.tour_container .tour_item_card .tour_item_card_body {
	display:flex;
	justify-content: center;
	align-items:center;
	padding-top:10px;
	gap: 12px;
}

.tour_container .tour_item_card .tour_content_left {
	width: 350px;
	padding: 8px;
}

.tour_container .tour_item_card .tour_content_right {
	height: 180px;
	width: 280px;
	padding: 17px;
	background: var(--TOUR7_CONTENT_RIGHT_BG);
	border-radius: 8px;
}

.tour_container .tour_item_card .tour_content_left .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_left .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_left .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_content_left .tour_content_flex .tour_status {
	padding: 7px 15px;
	border-radius: 8px;
	width: 100px;
	text-align:center;
	color: var(--TOUR7_BADGE_COLOR);
}

.tour_content_left .tour_content_flex .tour_status.active {
	background: var(--TOUR7_STATUS_BADGE_BG);
}

.tour_content_left .tour_content_flex .tour_status.finshed {
	background: var(--TOUR7_STATUS_FISHED_BG);
}

.tour_content_left .tour_content_flex .tour_status.upcoming {
	background: var(--TOUR7_UPCOMING_BADGE_BG);
}

.tour_content_left .tour_content_flex .tour_info i {
	cursor: pointer;
	color: var(--TOUR7_INFO_ICON_COLOR);
	font-size: var(--ICON_FONT_SIZE);
} 

.tour_content_left .tour_details .tour_desc {
	margin-bottom: 6px;
	display:flex;
	transition: all .3s;
	max-height: 80px;
	overflow: auto;
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
}

.tour_content_left .tour_details .tour_desc b {
	font-weight: var(--SEMIBOLD_FONT_WEIGHT);
}

.tour_content_left .tour_details .read-more {
	color: var(--TOUR7_DESC_READ_MORE_COLOR);
	float: right;
	margin-bottom: 6px;
}

.tour_content_left .tour_details .tour_desc .text.hide_txt {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour_content_left .tour_details .tour_desc,
.tour_content_left .tour_details .tour-title {	
	color: var(--TOUR7_DETAILS_TITLE_COLOR);
}

.tour_content_left .tour_details .tour-title {
	font-weight: var(--MED_FONT_WEIGHT);
	font-size: var(--HEADER_FONT_SIZE);
	margin-bottom: 11px;
}

.tour_content_left .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);
}

.tour_content_left .tour_details .btn-more-info:hover,.tour_details .btn-read-more:hover {
	background: var(--TOUR7_DETAILS_BTN_HOVER_BG);
	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);
}

.tour_item_card .tour_content_right .tour_countdown_widget .countdown_title {
	text-align:center;
	margin-bottom: 7px;
	font-weight: var(--MED_FONT_WEIGHT);
	font-size: var(--SUBHEADER_FONT_SIZE);
}

 .tour_item_card .tour_content_right .tour_countdown_widget .tour_widget_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.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(--SEMIBOLD_FONT_WEIGHT);
}

.tour_item_card .tour_content_right .tour_countdown_widget {
	margin-top: 25px;
}

.tour_item_card .tour_content_right .tour_countdown_widget .tour_widget_flex .widget_item {
	text-align: center;
	height: auto;
	width: 40px;
	color: var(--TOUR7_WIDGET_ITEM_COLOR);
}

.tour_item_card .tour_content_right .tour_countdown_widget .tour_widget_flex .widget_item .widget_bottom_title {
	font-size: 10px;
	display: flex;
	justify-content: center;
	padding-top: 4px;
}

.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);
	font-size: var(--SUBHEADER_FONT_SIZE);
}

.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;
}

.list_slide .slide_content.grid_view {
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2rem 0;
	animation: fadeIn 0.5s ease forwards;
}

.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: -40px;
    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;
}

.tour_rank_list .rank_list_body {
	background: var(--TOUR7_RANK_LIST_BG);
	padding: .825rem 1rem .825rem 1rem;
	border-radius: 13px;
}

.tour_rank_list .rank_list_body .rank_list_title{
	color: var(--TOUR7_RANK_LIST_TITLE_COLOR);
	text-align:center;
	font-weight: var(--SEMIBOLD_FONT_WEIGHT);
	font-size: var(--HEADER_FONT_SIZE);
}

.tour_rank_list .rank_list_body .rank_list_table {
	margin-top: 15px;
	display:flex;
	flex-direction: column;
}

.tour_rank_list .rank_list_body .rank_list_table .rank_list_tbody  {
	color: var(--TOUR7_RANK_LIST_TBODY_COLOR);
	text-align: center;
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
}

.rank_list_table .rank_list_tbody._scrollable {
	max-height: 500px;
	overflow-y: scroll;
}

.tour_rank_list .rank_list_body .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);
}

.tour_rank_list .rank_list_body .rank_list_table .rank_list_tbody .first_prize_col  {
	background: var(--TOUR7_RANK_LIST_FIRST_PRIZE_BG);
}

.tour_rank_list .rank_list_body .rank_list_table .rank_list_tbody .second_prize_col  {
	background: var(--TOUR7_RANK_LIST_SECOND_PRIZE_BG);
}

.tour_rank_list .rank_list_body .rank_list_table .rank_list_tbody .thrid_prize_col  {
	background: var(--TOUR7_RANK_LIST_THRID_PRIZE_BG);
}

.tour_rank_list .rank_list_body .rank_list_table .rank_list_tbody .-col img,
.tour_rank_list .rank_list_body .rank_list_table .rank_list_tbody .-col .col_index{
	width: 30px;
	height: 30px;
}

.tour_rank_list .rank_list_body .rank_list_table .rank_list_tbody .-col img {
	object-fit: contain;
}

.tour_rank_list .rank_list_body .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_WEIGHT);
}

.tour_rank_list .rank_list_body .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(--SEMIBOLD_FONT_WEIGHT);
	font-size: var(--SECTION_HEADER_FONT_SIZE);
	color: var(--TOUR7_TOUR_CONTENT_TITLE_COLOR);
	text-transform: uppercase;
}