/**
* 2010-2023 Webkul.
*
* NOTICE OF LICENSE
*
* All right is reserved,
* Please go through this link for complete license : https://store.webkul.com/license.html
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please refer to https://store.webkul.com/customisation-guidelines/ for more information.
*
*  @author    Webkul IN <support@webkul.com>
*  @copyright 2010-2023 Webkul IN
*  @license   https://store.webkul.com/license.html
*/

.all_tours_container {
    margin-top: 30px;}
    .all_tours_container .header_text {
        font-size: 30px;
        margin-bottom: 25px;
        color: #000000;
        text-align: center;}
    .all_tours_container .desc_text {
        font-size: 16px;
        line-height: 20px;
        color: #333333;
        text-align: center;}
.tours_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;}
    .tours_wrapper .card {
        display: flex;
        height: 100%;
        margin-bottom: 0px;
        position: relative;
        padding-top: 0px;}
        .tours_wrapper .card .hotel_cover_container {
            height: 100%;
            display: flex;}

        .tours_wrapper .card .hotel_cover_img {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;}
    .tours_wrapper .hotel_info_container {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 15px;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        z-index: 10;}
        .tours_wrapper .hotel_info_container .hotel_name {
            font-size: 17px;
            font-weight: bold;
            color: #000000;}
        .tours_wrapper .hotel_info_container .hotel_location {
            opacity: 0.5;
            font-weight: bold;
            font-size: 15px;
            margin-bottom: 0px;
            color: #000000;}

.no_tours_results {
    background: #FFFFFF;
    box-shadow: 0 3px 15px 1px rgba(0,0,0,0.10);
    border-radius: 4px;
    opacity: 0.6;
    font-size: 18px;
    color: #333333;
    text-align: center;
    padding: 30px 15px;}

.tour_hover_wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.75;
    background: #1292FF;
    /* animation: areadrop .4s 1 forwards; */
    cursor: pointer;
    z-index: 20;
    display: none;}
    .external-icon-link i {
        color: #fff;
        position: absolute;
        top: 15px;
        font-size: 22px;
        right: 15px;}
    .tour_hover_wrapper .tour_hover_primary_block {
        display: table;
        height: 100%;
        width: 100%;}
    .tour_hover_wrapper .tour_hover_secondary_block {
        color: #fff;
        display: table-cell;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;}
        .tour_hover_wrapper .tour_hover_secondary_block p {
            margin-top: 10px;}

@keyframes areadrop{
    0% {transform: scale(0.0);}
    100% {transform: scale(1.0);}}
@keyframes areahide{
    0% {transform: scale(1.0);}
    100% {display: none;
        transform: scale(0.0);}}