/*
Woo cardnet CSS
@author Raylin Aquino <info@raylinaquino.com>
@url https://raylinaquino.com
**/
:root {
    --white: #fff;
    --primary: #006fbe;
    --primary-light: #E8F5FF;
    --gray: #737373;
    --gray-light: #cacaca;
    --black: #000;
    --secondary: #E36306;
    --secondary-hover: #f18321;
    --secondary-light: #FCEBDD;
    --green: #0FA254;
    --danger: #c63636;
    --danger-light: #f8e2e2;
}

[v-cloak] {
    display: none;
}

.alert-warning {
    background: #fde5e5;
    padding: 1rem 1.5rem;

    border-radius: 7px;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    font-family: Poppins, sans-serif;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    opacity: .3;
}

.trans-3 {
    transition: all .3s ease;
}

.text-center {
    text-align: center;
}

.btn-underlined {
    display: inline-block;
}

.btn-underlined:after {
    content: '';
    height: 2px;
    background: var(--primary);
    width: 0%;
    display: block;
    transition: all .3s ease;
}

.btn-underlined:hover:after {
    width: 100%;
}

.btn-filled {
    background: var(--white);
    color: var(--black) !important;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2rem;
    line-height: 1;
    display: inline-block;
    border-radius: 5rem;
    border: 0;
    cursor: pointer;
}

.btn-filled i {
    margin-right: 1rem;
}

.btn-filled.orange {
    background: var(--secondary);
    color: var(--white) !important;
}

.btn-filled.orange:hover {
    background: var(--secondary-hover);
}

.btn-filled.blue {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-filled.full {
    width: 100%;
    display: block;
}

.btn-filled.medium {
    font-size: 1.6rem;
    font-weight: bold;
}

/* prod Includes */
.prod-includes ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.prod-includes ul li {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.prod-includes ul li .icon-wrap {
    color: var(--green);
    font-size: 171%;
}

/* Itinerary */
.prod-itinerary {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.prod-itinerary .itinerary {
    background: var(--white);
    border-radius: 1rem;
    padding: 1rem 2rem;
    transition: all .3s ease;
    flex: 0 0 49%;
    box-shadow: 0 4px 1rem rgba(0, 0, 0, .1);
}

.prod-itinerary .itinerary:hover {
    background: var(--primary-light);
    cursor: pointer;
    box-shadow: none;
}

.prod-itinerary .itinerary .hour {
    font-size: 1.2rem;
    flex: 0 0 11rem;
}

.prod-itinerary .itinerary .hour .time {
    display: inline-block;
    padding: .5rem 1rem;
    background: var(--primary-light);
    border-radius: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.prod-itinerary .itinerary:hover .time {
    background-color: var(--secondary-light)
}

.prod-itinerary .itinerary .hour .time i {
    margin-right: 5px;
    font-weight: bld;
}

.prod-itinerary .itinerary .desc {
    display: block;
    font-size: 1.4rem;
    padding-top: 1rem;
}

/*Faqs*/
.faq-section .wrap-faq {
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    border-radius: 7px;
    transition: all .3s ease;
}

.faq-section .wrap-faq:hover,
.faq-section .wrap-faq.active {
    cursor: pointer;
    background: var(--primary-light);
}

.faq-section .wrap-faq.active .title-wrap .icon i {
    transform: rotate(90deg);
}

.faq-section .title-wrap {
    display: flex;
    justify-content: space-between;
}

.faq-section .title-wrap h4 {
    margin: 0;
    font-size: 1.7rem;
}

.faq-section .wrap-faq .content-wrap {
    display: none;
    margin: 2rem 0 0;
}
.faq-section .wrap-faq.active .content-wrap {
    display: block;
}

/* Search Box */
#app-search {
    position: relative;
}

#app-search .search-field {
    padding: 1rem;
}

#app-search .search-field .form-control {
    height: 3rem;
    border-radius: 5px;
    display: block;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    border: 0;
    background: #ececec;
    padding: 0 1rem;
}

#app-search .search-field .form-control:focus {
    background: var(--white);
}

#app-search .btn-search {
    font-size: 1.6rem;
    font-weight: bold;
    background: none;
    padding: 0;
    border: 0;
    color: var(--white);
    width: 2.5rem;
    cursor: pointer;
    height: 2.5rem;
}

#app-search .btn-search:hover {
    color: var(--secondary);
}

#app-search:hover .results {
    display: block;
}

#app-search .results .found {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

#app-search .results {
    background: var(--white);
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    width: 35rem;
    position: absolute;
    right: 0;
    border-radius: 1rem;
    overflow: hidden;
}

#app-search .results ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#app-search .results ul li .card-tour {
    display: flex;
    font-size: 1.3rem;
    padding: 1rem;
}

#app-search .results ul li .card-tour:hover {
    background: var(--primary-light)
}

#app-search .results ul li .card-tour .title {
    margin: 2px 0 5px;
    font-size: 1.5rem;
}

#app-search .results ul li .card-tour .wrap-img {
    flex: 0 0 6rem;
}

#app-search .results ul li .card-tour .wrap-img .img {
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    height: 6rem;
}

#app-search .results ul li .card-tour .wrap-info {
    flex: 1;
    padding-left: 1rem;
}

#app-search .results ul li .card-tour .wrap-info .offer {
    background: var(--primary);
    display: inline-block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    padding: .2rem 1rem;
}

#app-search .results ul li .card-tour .wrap-info .price {
    display: flex;
    gap: 1rem;
    color: var(--black);
    align-items: center;
}

#app-search .results ul li .card-tour .wrap-info .price del {
    opacity: .5;
}

#app-search .results ul li .card-tour .wrap-info .price ins {
    color: var(--secondary);
    font-weight: bold;
}

/*
Top Account
*/
.top-account {
    position: relative;
}

.top-account .btn-account {
    background: none;
    display: block;
    padding: 0;
    font-size: 2rem;
    color: var(--white);
    border: 0;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
}

.top-account .btn-account:hover {
    color: var(--secondary-hover);
}

.top-account:hover .dropdown {
    display: block;
}

.top-account .dropdown {
    display: none;
    position: absolute;
    width: 20rem;
    background: var(--white);
    padding: .5rem;
    font-size: 1.4rem;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    right: 0;
}

.top-account .welcome-box {
    border-bottom: 1px solid #eaeaea;
    padding: .8rem;
    font-size: 1.3rem;
    color: var(--gray);
}

.top-account .welcome-box .name {
    color: var(--primary);
}

.top-account .dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-account .dropdown ul li a {
    display: block;
    padding: .7rem 1rem;
    color: var(--black);
}

.top-account .dropdown ul li a:hover {
    color: var(--primary);
    background: var(--primary-light);
    border-radius: .5rem;
}

.top-account .dropdown ul li a.logout-link {
    color: var(--danger);
}

.top-account .dropdown ul li a.logout-link:hover {
    background: var(--danger-light);
}

/*
Important Notes
*/
.important-notes {
    background: var(--primary-light);
    border-radius: 2rem;
    padding: 2rem 4rem 1rem;
    font-size: 1.4rem;
    line-height: 1.4;
    display: block;
}

.important-notes .notes {
    max-height: 19rem;
    overflow: auto;
    text-align: justify;
}

.important-notes .notes>p:first-child {
    margin-top: 0;
}

.important-notes .title {
    margin: 0 0 2rem;
    font-size: 2rem;
}

.important-notes .title i {
    margin-right: 1rem;
    font-size: 120%;
}

.important-notes li {
    margin: 5px 0;
}

/*Add to cart*/
.app-add-to-cart .loading {
    text-align: center;
    font-size: 1.3rem;
}

.app-add-to-cart .loading .txt {
    margin-top: .5rem;
}

.prod-add-to-cart {
    background: var(--secondary-light);
    border-radius: 2rem;
    padding: 2rem;
}

.prod-add-to-cart.on-sale {

    padding: 5rem 2rem 2rem;
}

.prod-add-to-cart .special-offer {
    position: absolute;
    background: var(--primary);
    color: var(--white);
    font-weight: bold;
    padding: .2rem 5rem;
    top: 10px;
    left: -10px;
    display: none;
}

.prod-add-to-cart.on-sale .special-offer {
    display: block;
}

.prod-add-to-cart .special-offer:before {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 23px;
    z-index: -1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 1rem 2rem 0;
    border-color: transparent #003f6c transparent transparent;
}

.prod-add-to-cart .wrap-data {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.prod-add-to-cart .wrap-data .label {
    font-size: 1.3rem;
}

.prod-add-to-cart .wrap-data .price {
    font-size: 1.8rem;
    font-weight: 700;
}

.prod-add-to-cart .wrap-data .price ins {
    text-decoration: none;
    color: var(--primary);
}

.prod-add-to-cart .wrap-data .price del {
    font-size: 77%;
    margin-right: .5rem;
    opacity: .4;
    font-weight: 600;
}

.prod-add-to-cart .wrap-data .add-cart-wrap {
    flex: 1;
}

/* Mini Desc */
.prod-mini-desc {
    position: relative;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4;
    font-size: 1.4rem;
}

.prod-mini-desc p~p,
.prod-mini-desc.active .wrap-action {
    display: none;
}

.prod-mini-desc.active p {
    display: block;
}

.prod-mini-desc .wrap-action a {
    color: var(--primary);
    font-weight: 600;
}

.prod-mini-desc .wrap-action a i {
    margin-left: 5px;
    position: relative;
}

.prod-mini-desc .wrap-action a:hover i {
    transform: rotate(-90deg);
}



/*Gallery Panel*/
.pswp__container .pswp__img,
.pswp__container .pswp__zoom-wraps {
    max-width: none;
}

body.gallery-visible {
    overflow: hidden;
}

.gal-load {
    background: url('../img/viva-loading.svg') 0 0 no-repeat;
    display: inline-block;
    width: 4rem;
    height: 4rem;
    background-size: contain;
    z-index: 1;
}

.gallery-visible .gallery-panel {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    border-radius: 1rem;
}

.popup-close {
    position: absolute;
    right: 1.7rem;
    top: 3rem;
    background: none;
    border-radius: 50%;
    border: 2px solid var(--danger);
    width: 2.5rem;
    height: 2.5rem;
    color: var(--danger);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
    display: flex;
}

.popup-close:hover {
    background: var(--danger);

    color: var(--white);
}

.gallery-panel .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.gallery-panel .gallery-wrap {
    background: var(--white);
    position: relative;
    z-index: 2;
    margin: 1rem auto;
    max-width: 160rem;
    padding: 2rem;
    border-radius: 1rem;
}

.gallery-panel .gallery-wrap .gal-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 5rem 0 1.5rem;
}

.gallery-panel .gallery-wrap .gal-heading h3.title {
    text-align: left;
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
    color: var(--primary);
}

.gallery-panel .gallery-wrap .gal-heading .tour .title {
    color: var(--secondary);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.gallery-panel .gallery-wrap .gal-content {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(7, 1fr);
    overflow: auto;
    max-height: 66vh;
}

.gallery-panel .gallery-wrap .gal-content a {
    display: block;
    text-decoration: none;
    color: var(--black);
}

.gallery-panel .gallery-wrap .gal-content a .wrap-img {

    overflow: hidden;
}

.gallery-panel .gallery-wrap .gal-content a .img {
    height: 16rem;
    background: #ebebeb;
    display: block;
    transition: all .5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-panel .gallery-wrap .gal-content a:hover .img {
    transform: scale(1.2);
    opacity: .7
}

.gallery-panel .gallery-wrap .gal-content a .title {
    font-weight: 500;
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Card Place */
.prod-places .swiper-pagination {
    margin-top: 6rem !important;
    position: relative;
}

.prod-places .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    margin: 0 1rem !important;
    background: var(--primary);
    transition: all .3s ease;
}

.prod-places .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: .8;
}

.prod-places .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary)
}

.card-place {
    position: relative;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
}

.card-place .control {
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 5rem;
    height: 5rem;
    font-size: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 50%;
}

.card-place .wrap-img {
    position: relative;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;

}

.card-place .wrap-img .img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    transition: transform 2s ease;
}

.card-place .wrap-img:hover .img {
    transform: scale(1.5);
}

.card-place .wrap-img .control {
    transition: transform 1s ease;
    overflow: hidden;
    color: var(--secondary)
}

.card-place .wrap-img:hover .control {
    transform: scale(.8);
}



.card-place .title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2rem;
}

.card-place .place {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #e36306;
}

.card-place .desc {
    margin-top: 1rem;
}

/* prod Image*/
.prod-image {
    position: relative;
}

.prod-image .controls {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.prod-image .controls a {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    font-size: 2.4rem;
    opacity: .8;
}

.prod-image .controls a.video {
    background: var(--primary);
}

.prod-image .controls a:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* prod Add Top */
.prod-add-top {
    display: flex;
    align-items: center;
    color: var(--white);
    gap: 2rem;
    justify-content: flex-end;
}

.prod-add-top .price {
    text-align: right;
    line-height: 1;
}

.prod-add-top .price sup {
    font-size: 1.2rem;
    display: block;
}

.prod-add-top .price sub {
    font-size: 1.4rem;
    font-weight: bold;
}

/*Prod Hotels */
.prod-hotels {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.prod-hotels span {
    background: #ffdec6;
    padding: 5px 15px 5px 5px;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    border-radius: 2rem;
}

.prod-hotels span i {
    font-size: 2rem;
    margin-right: 10px;
}

/*Prod Features*/
.prod-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: 1.4rem;
    gap: 2rem;
}

.prod-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    line-height: 1.2;
}

.prod-features .feature .icon {
    display: inline-block;
    flex: 0 0 3rem;
    height: 3rem;
    background-size: contain;
    background-repeat: no-repeat;
}

.brax-add-wrap {
    max-width: 500px;
    position: fixed;
    top: 3rem;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    margin: auto;
    border-radius: 3rem;
}

.brax-add-wrap .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border-radius: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--danger);
    color: danger
}

.brax-add-wrap .heading {
    text-align: center;
    margin-bottom: 2rem;
}

.brax-add-wrap .heading h3 {
    margin: 0;
    font-size: 2.6rem;
    color: var(--primary);
}

.brax-add-wrap .heading .tour-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: .7rem;
}

.brax-add-wrap .heading .head-desc {
    font-weight: 400;
}

.brax-add-wrap .product-saved h3 {
    margin: 0 0 1rem;
    font-size: 2.2rem;
}

.brax-add-wrap .product-saved .options .btn-underlined {
    margin-top: 1rem;
    font-size: 1.4rem;
}

.brax-add-wrap .price-wrap {
    padding: 1rem;
    background: #e5f8ff;
}

.brax-add-wrap .form-wrap,
.brax-add-wrap .product-saved {
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    margin-top: 0;
    border-radius: 2rem;
    font-size: 1.4rem;
}

.brax-add-wrap .product-saved {
    text-align: center;
}

.brax-add-wrap .price-wrap .price {
    font-weight: bold;
    color: var(--primary);
}

.brax-add-wrap .form-group,
.brax-add-wrap .total-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 1rem;
}

.brax-add-wrap .tour-date-wrap .wrap-field {
    position: relative;
}

.brax-add-wrap .tour-date-wrap .wrap-field i {
    position: absolute;
    left: .5rem;
    top: .5rem;
    opacity: .3;
}

.brax-add-wrap .tour-date-wrap input,
.brax-add-wrap .tour-field-wrap input,
.brax-add-wrap  select{
    font-family: Poppins, sans-serif;
    padding: .1rem 1rem .1rem 2rem;
    border: 2px solid var(--gray-light);
}
.brax-add-wrap .tour-field-wrap input{
     padding: .1rem 1rem;
}
.brax-add-wrap  select{
    padding:.1rem 1rem .1rem !important; 
}
.brax-add-wrap .tour-date-wrap input:focus,
.brax-add-wrap .tour-field-wrap input:focus,
.brax-add-wrap  select:focus{
    border-color: var(--gray);
}

.brax-add-wrap .pickup-time h4 {
    font-size: 1.6rem;
    margin: 0;
    color: var(--primary);
}

.brax-add-wrap .total-wrap .total {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.brax-add-wrap .tour-date-wrap label {
    font-size: 1.6rem;
    color: var(--primary);
}

.brax-add-wrap .form-group label .ht {
    font-size: 1.6rem;
    color: var(--primary);
}

.brax-add-wrap .form-group label .ht i {
    margin-left: 1rem;
    font-size: 80%;
    cursor: pointer;
}

.brax-add-wrap .form-group label .ht i:hover {
    color: var(--secondary)
}

.brax-add-wrap .form-group label .sub {
    font-weight: 400;
    display: flex;
    gap: .5rem;
}

.brax-add-wrap .form-group label .sub del {
    font-size: 85%;
    opacity: .8;
    margin-right: .5rem;
}

.brax-add-wrap .form-group label .sub ins {
    font-weight: bold;
    color: var(--secondary);
    text-decoration: none;
}

.brax-add-wrap .submit-wrap button:disabled {
    pointer-events: none;
    opacity: .3;
    background: var(--gray)
}

.brax-add-wrap .submit-wrap button:hover {
    opacity: .8;
}

.brax-add-wrap .form-group .controls {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.brax-add-wrap .form-group .controls button {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 2.5rem;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 1rem;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.brax-add-wrap .form-group .controls button:active {
    opacity: .2
}

.brax-add-wrap .form-group label {
    flex: 1;
    display: block;
}

.brax-add-wrap .form-group .controls button:hover {
    background: var(--secondary);
    color: var(--white);
}

.brax-add-wrap .form-group .controls .qty {
    text-align: center;
    width: 3rem;
}

.brax-add-wrap .taxes-included {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 28%);
    z-index: 990;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 991;
}

.modal-wrapper .info {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 60rem;
    width: 90%;
    margin: 10vh auto 0 auto;
    position: relative;
}

.modal-wrapper .info .close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    cursor: pointer;
}

.modal-wrapper .info .close:hover {
    color: var(--secondary)
}

.excursions .form-filter {
    background: var(--secondary-light);
    max-width: 90rem;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
}

.excursions .form-filter .form-group-hotel,
.excursions .form-filter .form-group-search {
    flex: 0 0 30%;
}

.excursions .form-filter .wrap-radios {
    font-size: 1.4rem;
}

.excursions .form-filter .wrap-radios label {
    display: block;
    cursor: pointer;
}

.excursions .form-filter .wrap-radios label:hover {
    opacity: .8
}

.excursions .form-filter .wrap-form .label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.excursions .form-filter .wrap-form .form-control {
    display: block;
    height: 3.5rem;
    border-radius: 2rem;
    background: var(--white);
    border: 0;
    width: 100%;
    padding: 0 2rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: 2px solid transparent;
}

.excursions .form-filter .wrap-form .form-control:focus {
    border-color: var(--secondary)
}

.excursions .results-msg {
    margin-bottom: 2rem;
    color: var(--gray)
}

.excursions .results-msg strong {
    color: var(--primary);
}

.excursions .form-filter .wrap-submit {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.excursions .form-filter .wrap-submit .wrap-clear {
    font-size: 1.3rem;
    margin-top: 1rem;
}

.excursions .form-filter .btn-search {
    display: block;
    width: 5rem;
    height: 5rem;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--white);
    border: 0;
    font-size: 2rem;
    cursor: pointer;
}

.excursions .form-filter .btn-search:hover {
    background: var(--secondary-hover)
}

/*
Excursions List
*/
.excursions-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.card-excursion .wrap-img {
    height: 15rem;
    display: block;
    background-color: #ededed;
    position: relative;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
}

.card-excursion .wrap-img:hover {
    opacity: .7
}

.card-excursion .wrap-img .discount {
    position: absolute;
    left: 0;
    top: 2rem;
    color: var(--white);
    background: var(--primary);
    font-size: 1.3rem;
    font-weight: bold;
    padding: .2rem 1rem;
}

.card-excursion h5.title {
    margin: 1rem 0 .5rem;
}

.card-excursion h5.title a {
    font-size: 1.8rem;
    color: var(--primary);
}

.card-excursion .place {
    margin: .3rem 0 1rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.4rem;
}

.card-excursion .below {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.card-excursion .below a {
    text-align: center;
    display: block;
}

.card-excursion .prices sup {
    display: block;
    margin: 0;
}

.card-excursion .prices sub del {
    opacity: .5;
    margin-right: 1rem;
}

.card-excursion .prices sub ins {
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
}

.card-excursion .below .btn-wrap {
    font-size: 1.2rem;
}

@media (max-width:1600px) {
    .gallery-panel .gallery-wrap .gal-content {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width:1080px) {
    .gallery-panel .gallery-wrap .gal-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:850px) {
    .gallery-panel .gallery-wrap .gal-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .excursions-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:700px) {
    .gallery-panel .gallery-wrap .gal-content a .img {
        height: 10rem;
    }

    .excursions-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .prod-hotels span{
        padding:1rem;
        border-radius:1rem;
    }
    .prod-itinerary{
        display:block;
    }
    .prod-itinerary .itinerary{
        margin:0 0 3rem 0;
    }
    #app-search .results {
        right: -2.7rem;
    }

    #app-search .results ul li .card-tour .wrap-info .price ins {
        font-size: 1.6rem;
    }

    #app-search .search-field .form-control {
        font-size: 1.5rem;
    }

    .excursions .form-filter .wrap-radios {
        display: flex;
        gap: 2rem;
    }

    .excursions .form-filter {
        flex-direction: column;
        gap: 2rem;
    }

    .excursions .form-filter .btn-search {
        width: 100%;
        border-radius: 7rem;
        padding: 1rem;
        height: 4rem;
        font-size: 1.6rem;
    }
}

@media (max-width:500px) {
    .card-place .wrap-img {
        width: 15rem;
        height: 15rem;
    }

    .card-place .title {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .card-place .place {
        font-size: 1.6rem;
        font-weight: 600;
    }

    .excursions-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .excursions .form-filter .wrap-radios label {
        font-size: 1.6rem;
    }

    .prod-add-to-cart .wrap-data {
        flex-wrap: wrap;
        gap: .5rem 3rem;
    }

    .prod-add-to-cart .wrap-data .add-cart-wrap {
        flex: 0 0 100%;
    }

    .prod-includes ul {
        font-size: 1.4rem;
    }

    .important-notes {
        font-size: 1.3rem;
        padding: 2rem 1rem;
    }

    .important-notes .notes {
        margin-top: 1.5rem;
    }

    .important-notes ul,
    .important-notes ol {
        margin: 0;
    }

    .gallery-panel .gallery-wrap .gal-heading {
        display: block
    }

    .gallery-panel .gallery-wrap .gal-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-panel .gallery-wrap .gal-content a .title {
        font-size: 1.2rem;
    }

    .gallery-panel .gallery-wrap .gal-heading h3.title {
        font-size: 2.5rem;
    }

    .gallery-panel .gallery-wrap .gal-heading .tour .title {
        font-size: 2.2rem;
        margin-top: .5rem;
    }

    .gallery-panel .gallery-wrap .gal-content a .img {
        height: 10rem;
    }
}