.trip_container {
    padding: 6rem 2rem;
    display: flex;
    justify-content: space-between;
    font-family: "Nunito";
}
.trip_container_left,.city_data_div {
    width: 60%;
}
.trip_duration_container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trip_table {
   
    display: grid;
    grid-template-columns: repeat(3,minmax(300px,1fr));
    grid-gap: 20px;
    width: 95vw;
}
.trip_table_row,.trip_cities_row {
    display: flex;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    background: white;
}

.trip_table_row p,.trip_cities_row p {
  margin-right: 50px;
  font-size: 24px;
}
.trip_table_row h5,.trip_cities_row h5 {
  font-size: 24px;
}
.trip_container_right {
    width: 40%;
    height: 50vh;
}
#trip_container_right_img {
    width: 100%;
    border-radius: 10px;
}
#register_btn,#start_initial_btn,#task_data_btn {
    border: none;
    width: 100px;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    background: #333;
    color: white;
    outline: none;
    width: 300px;
    margin-top: 10px;
}

.Intermediate_task_submission_buttons {
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    border-radius: 0.5rem;
    margin: 10px 0;
    width: 100%;
    cursor: pointer;
    border: none;
    background-color: white;
    padding: 10px 20px;
  }
#task_data_btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.start_initial_btn_cover {
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
#start_initial_btn {
    margin-top: 40px;
    text-align: center;
}
.country_selection_cover,.task_data_cover,.city_data_cover,.coming_soon_cover,.travelLiving_container_cover {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
    opacity: 0;
    top: 0;
    left: 0;
    position: fixed;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
    z-index: 10;
}
.Country_selection_div {
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    width: 80vw;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.task_data_div,.travelLiving_container_div   {
    
    height: 80vh;
    overflow-y: scroll;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    width: 95vw;
    display: flex;
    align-items: start;
    flex-direction: column;
    padding-top: 30px;
}
.city_data_div {
    height: 80vh;
    overflow-y: scroll;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    width: 95vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
}
.coming_soon_container {
    height: 250px;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    width: 270px;
    text-align: center;
}
.country_name_div {
    width: 90%;
    margin: 10px auto;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
   
}
.country_name_div div {
    margin-right: 20px;
}
.country_name_div img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}
.countries_list_div {
    margin-top: 20px;
    width: 80vw;
    max-height: 80vh;
    overflow-y: scroll;
    
}
#country_selection_cover_close_btn,#task_data_cover_close_btn,#city_data_cover_close_btn,#coming_soon_cover_close_btn,#travelLiving_cover_close_btn {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    padding: 5px 10px;
}
#city_data_cover_close_btn:hover,#coming_soon_cover_close_btn:hover,#task_data_cover_close_btn:hover,#country_selection_cover_close_btn:hover,#travelLiving_cover_close_btn:hover {
  background-color: #333;
  border-radius: 50%;
  color: #fff;
}
#country_selection_cover_close_btn:focus {
    background-color: #d8d8d8;
    border-radius: 50%;
    color: #333;
    transform: rotate(270deg); 
}
.selected_country {
    background-color: #d65471;
    color: white;
}
#city_image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 10px;
}
#city_name {
    text-transform: capitalize;
    border-bottom: 2px solid grey;
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
}
#fun_facts_div {
    border-bottom: 2px solid grey;
    padding-bottom: 5px;
}
.slider-container img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}
.slider-container-custom img {
    width: 450px;
    height: 300px;
    border-radius: 10px;
}
#hompage-slider2,#hompage-slider3 {
    padding: 20px 0;
    width: 450px;
    height: 500px;
}
.slick-prev:before {
    color: grey !important;
    background-color: #eee;
  }
  .slick-next:before {
    color: grey !important;
    background-color: #eee;
  }
  .userdp_expand {
    width: 170px;
    background-color: darkgrey;
    right: 0;
    top: 4.5rem;
    position: fixed;
    opacity: 0;
    border-radius: 10px;
    z-index: 100;
  }
  #NewCountry_btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    color: #fff;
    background-color: #333;
    border-radius: 10px;
    border: none;
  }
  #trip_details span {
    color: #fff;
}
#submit_task_file_btn {
 width: 200px;
}
#submit_task_file_btn::after {
    font-family: FontAwesome;
    content: '\f1d9';
    font-size: 18px;
    margin-left: 10px;
}

.type3_card div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.type3_card i {
    font-size: 24px;
    margin-left: 25px;
    cursor: pointer;    
}
.travelLivingCostBtn {
    flex-direction: column;
}


