@charset "utf-8";
/*  @import url('https://fonts.googleapis.com/css?family=Muli+Sans:100,300,400,500,700,800,900'); */
/* Main CSS YellowFishTransfers */

/*--- COLOURS ---*/
/* Text */
.yf-blue {
    color: #0069B4
}

.yf-blue-dark {
    color: #00406E
}

.yf-blue-light {
    color: #2FAFFF
}

.yf-yellow {
    color: #FEE00D
}

.yf-green {
    color: #1D9038
}

.yf-grey {
    color: #707070
}

.yf-grey-light {
    color: #F0F0F0
}

.yf-orange-pumpkin {
    color: #d35400
}

.yf-red {
    color: #c0392b
}

/* Background */
.yf-blue-bg {
    background-color: #0069B4
}

.yf-blue-dark-bg {
    background-color: #00406E
}

.yf-blue-light-bg {
    background-color: #2FAFFF
}

.yf-yellow-bg {
    background-color: #FEE00D
}

.yf-green-bg {
    background-color: #1D9038
}

.yf-grey-bg {
    background-color: #707070
}

.yf-grey-light-bg {
    background-color: #F0F0F0
}

/* BS4 overwrites */
.btn-info {
    background-color: #2FAFFF
}

.btn-info:hover {
    background-color: #0069B4 !important
}

/* Custom styles */
.stronger {
    font-weight: 900
}

hr.line-blue {
    border: none;
    border-bottom: 1px solid #2FAFFF;
    margin: 20px auto;
}

small {
    font-size: 65%
}

/*--- BODY ---*/
body {
    font-family: 'Muli', Arial, sans-serif
}

/* media queries */
@media (min-width: 1280px) {
    body {
        font-size: 18px
    }

    .container {
        max-width: 1260px
    }
}

/*--- DIVS ---*/
/* Header */
#top-nav {
    background: #fff;
    height: 110px;
    margin-top: 10px;
}

#top-nav .nav-item {
    margin: 0 20px
}

#top-nav a {
    background: #fff;
    border-radius: 20px;
    color: #707070;
    font-size: 80%;
    font-weight: bold;
    padding: 8px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#top-nav .nav-link.active, #top-nav a:hover {
    background: #F0F0F0;
}

#top-nav a.username {
}

@media (max-width: 992px) {
    #top-nav {
        height: 58px;
    }
}

#bg-main {
    background-image: url(../img/bg-home.jpg);
    background-position: 15% bottom;
    background-size: cover;
    position: relative;
    height: calc(100vh - 110px);
}

@media (min-width: 992px) {
    #bg-main {
        background-image: url(../img/bg-home@2x.jpg);
        max-height: 800px;
    }
}

#bg-main::before {
    content: "";
    background: rgba(0, 0, 0, .3);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

#main-nav {
    background: #0069B4;
    border-radius: 4px;
    padding-right: 20px;
    top: -48px;
    z-index: 100;
}

#main-nav .nav-link {
    color: rgba(255, 255, 255, .8);
    background-position: center center;
    font-weight: bold;
    padding: 20px 30px;
    transition: all 0.5s ease;
}

#main-nav .nav-link:hover,
#main-nav .nav-link.active {
    background-image: url(../img/bubbles.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 22px;
    color: rgba(255, 255, 255, 1);
}

#main-nav .nav-link.active {
    color: #FEE00D !important
}

.navbar-toggler, .navbar-dark .navbar-toggler {
    border: none;
    color: #fff;
    height: 100%;
    font-size: 130%;
    font-weight: 700;
}

@media (max-width: 1200px) {
    #main-nav .nav-link {
        padding: 20px
    }
}

@media (max-width: 991.98px) {
    #top-nav {
        height: 45px
    }

    #yf-logo {
        max-height: 70px
    }

    #main-nav {
        top: -35px;
        margin: auto 20px
    }

    #main-nav .nav-link {
        text-align: center
    }
}

@media (max-width: 575.98px) {
    #yf-logo {
        max-height: 55px
    }

    #main-nav {
        top: -36px;
        margin: auto 15px
    }

    #main-nav .nav-link {
        text-align: center
    }

    .navbar-toggler, .navbar-dark .navbar-toggler {
        font-size: 90%
    }
}

#tagline {
    background: rgba(0, 64, 110, .8);
    border-radius: 4px;
    margin: 0 auto;
    position: absolute;
    top: 44px;
}

#tagline h1 {
    font-size: 130%;
    font-weight: bold;
    line-height: 65px;
    padding-top: 4px;
}

#tagline h1 strong {
    font-weight: 800;
}

@media (max-width: 991.98px) {
    #tagline {
        background: none;
        top: 45px;
        width: 90%;
    }

    #tagline h1 {
        font-size: 130%;
        line-height: 26px;
        padding: 0 10%;
    }

    #tagline h1 strong {
        display: block;
        font-size: 150%;
        margin-bottom: 12px;
    }
}

/* Section Testimonials */
#testimonials {
    font-size: 80%
}

#testimonials h3 {
    font-size: 130%;
    line-height: 200%;
}

#testimonial-holder {
    background: rgba(0, 105, 180, .05)
}

.carousel {
    height: auto;
    padding: 0;
}

.carousel-item {
    height: 280px
}

.carousel-inner {
    width: 85%
}

.carousel-control-prev img, .carousel-control-next img {
    height: 68px;
    width: 34px
}

.carousel-caption {
    bottom: 15px
}

.carousel-caption p {
    font-size: 120%;
    line-height: 150%;
}

.carousel-caption p.author {
    font-size: 100%;
    line-height: 120%;
}

.carousel-caption p > span {
    display: inline-block;
    height: 29px;
    width: 190px;
    background: url(../img/stars-5.svg) center center no-repeat
}

.carousel-caption .stars-4 {
    background-image: url(../img/stars-4.svg)
}

.carousel-caption .stars-3 {
    background-image: url(../img/stars-3.svg)
}

.carousel-caption .stars-2 {
    background-image: url(../img/stars-2.svg)
}

.carousel-caption .stars-1 {
    background-image: url(../img/stars-1.svg)
}

@media (min-width: 992px) {
    #testimonials h3 {
        font-size: 140%;
        line-height: 220%;
    }

    .carousel-item {
        height: 320px
    }

    .carousel-caption {
        bottom: 50px
    }
}

/* Section Why */
#why .card {
    background-position: center bottom;
    background-size: cover;
    border: none;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .4);
    margin-bottom: 20px;
    padding-bottom: 60%;
    /*    z-index: 100;     */
}

.card.why-1 {
    background-image: url(../img/bg-card-why-1.jpg)
}

.card.why-2 {
    background-image: url(../img/bg-card-why-2.jpg)
}

.card.why-3 {
    background-image: url(../img/bg-card-why-3.jpg)
}

.card.why-4 {
    background-image: url(../img/bg-card-why-4.jpg)
}

#why .card h4, #why .card p {
    font-size: 130%;
    font-weight: 400;
}

#why .card p {
    font-size: 100%
}

#numbers {
    background: url(../img/bg-shape-blue-light.png) center bottom no-repeat;
    background-size: 100% 100%;
}

#numbers h5 {
    font-size: 130%;
    font-weight: 800;
}

#numbers p {
    font-weight: 600
}

/* Section yf-adventure */
#yf-adventure {
    background: url(../img/bg-yf-adventure.jpg) center top no-repeat;
    background-size: contain 50%;
}

#yf-adventures-logo {
    width: 110px;
    height: auto;
}

#yfa-content {
    background: url(../img/bg-shape-grey-dark-90deg.png) right top no-repeat;
    background-size: 100% 100%;
    margin-top: 340px;
    padding: 10px 10% 40px;
}

@media (min-width: 768px) {
    #yf-adventure {
        background: url(../img/bg-yf-adventure@2x.jpg) center center no-repeat;
        background-size: cover;
    }

    #yf-adventures-logo {
        position: absolute;
        top: 15%;
        left: -5%;
        width: 28%;
        height: auto;
    }

    #yfa-content {
        background: url(../img/bg-shape-grey-dark.png) right top no-repeat;
        background-size: 100% 100%;
        margin-top: 0;
        padding: 180px 30px 100px 10%;
    }
}

/* Section Shortlist */
#frequent {
    list-style: none
}

#frequent h5 {
    font-size: 120%
}

#frequent li {
    display: inline-block;
    font-size: 70%;
    margin: 0 5px;
}

#frequent li a {
    color: #2FAFFF;
    text-decoration: none;
}

#frequent li a:hover {
    color: #AADEFF
}

.yf-list-st1 {
    list-style: none;
    padding: 0;
}

.yf-list-st1 a {
    color: #FFF;
    font-size: 75%;
    text-decoration: none;
}

.yf-list-st1 a:hover {
    color: #AADEFF
}

#sm-links img {
    width: 80%;
    height: auto;
    max-width: 50px;
}

/* Footer */
footer p {
    font-size: 75%
}

/*Autocomplete styles*/
.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
    font-size: 80%;
    width: auto !important;
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}

#ui-datepicker-div{
    z-index: 100 !important;
}

/* Modal */
body.modal-open .background-container{
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter: blur(4px);
    filter: url("https://gist.githubusercontent.com/amitabhaghosh197/b7865b409e835b5a43b5/raw/1a255b551091924971e7dee8935fd38a7fdf7311/blur.svg#blur");
    filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='4');
}
@media (min-width: 992px) {
    .modal-dialog {
        max-width: 800px;
        /*width: fit-content;*/
    }
    #loginClientes .modal-dialog {
        max-width: 420px;
    }
}
.modal-content {
    border: none;
    border-bottom: 8px solid #FEE00D;
}
.modal-header {
    border-bottom: none
}
.modal-body p {
    font-size:80%
}
.modal-content input, .modal-content select, .modal-content textarea {
    box-shadow: #ccc 0 1px 6px;
    color: #707070;
    font-size: 14px;
    min-height: 42px;
}
.modal-content label {
    color: #C2C2C2;
    font-size: 12px;
    padding-left: 15px;
}
.modal-content btn-lg {
    background-color: #1D9038;
}
.modal-content .btn-info {
    background: #0069B4;
    border: none;
    margin: 0.5rem auto;
}
.modal-content a:hover.btn-info {
    background: #2FAFFF !important
}
.modal-content .btn-info i {
    font-size: 1.5rem;
    margin-left: 1rem;
    vertical-align: middle;
}
input.error-msg {
    border: 1px solid #FF3434 !important
}
input.error-msg::placeholder {
    color: #FF3434 !important
}
input.error-msg:-ms-input-placeholder {
    color: #FF3434 !important
}
input.error-msg::-ms-input-placeholder {
    color: #FF3434 !important
}
::placeholder {
    color: #707070;
    font-size: 14px;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #707070;
    font-size: 14px;
}

::-ms-input-placeholder {
    color: #707070;
    font-size: 14px;
}

.rvoucher_search {
    cursor: pointer;
}

#xinvoice label {
    font-size: 80%;
}

.partners_image {
    max-height: 100px;
}

.logo_ata {
    max-height: 50px;
}

.logo_tripadvisor {
    max-height: 60px;
}


/* Mostra só o #form_divider quando for aparelhos pequenos */
@media (max-width: 991.98px)
{
    #form_divider
    {
        display: block !important;
    }

    #testimonial-holder {
        padding-top: 10em;
    }

}

/* ADDED FEB 2019 */
@media (max-width: 991.8px) {
    .carousel-item {
        height: auto;
        min-height: 280px;
        align-items: center;
    }
    .carousel-caption {
        position: relative;
        left: 0;
        right: 0;
        top: 1.5rem;
    }
    .carousel-control-prev {
        left: -1.5rem
    }
    .carousel-control-next {
        right: -1.5rem
    }
}
/********/

.lds-dual-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #FEE00D;
    border-color: #FEE00D transparent #FEE00D transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
