

/* --------- GENERAL --------- */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 300;
}

::selection {
    background: rgba(0, 0, 0, 0.11);
}

section + section {
    margin-top: 40px;
}

article, p, li {
    font-size: 15px;
    line-height: 20px;
}

h2 {
    color: #444444;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    margin-top: 0;
}

h3 {
    color: #009fda;
    font-size: 20px;
    font-weight: 500;
    margin: 5px 0 10px 0;
}

button {
    letter-spacing: .5px;
}

.container-white h2 {
    text-align: center;
    color: #999999;
    font-weight: 300;
}

.shadow {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
}

.panel {
    background: white;
    border-radius: 5px;
}

.panel-content {
    padding: 0 20px;
}


/* ------------ popup ------------ */
.popup-download-app {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
    background: white;
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.28);
    display: none;
    flex-direction: row;
    align-items: center;
    z-index: 11;
}

    .popup-download-app a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: black;
    }

    .popup-download-app .app-img {
        width: 90px;
        box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.28);
        border-radius: 20px;
        margin-right: 20px;
    }

    .popup-download-app p {
        line-height: 20px;
        font-size: 17px;
    }

    .popup-download-app strong {
        white-space: nowrap;
        display: block;
        margin-top: 2px;
        font-weight: 500;
    }

    .popup-download-app .quit-btn {
        height: 100%;
        padding: 0;
        margin-left: 20px;
        position: absolute;
        right: 20px;
        background: transparent;
        border: none;
        box-shadow: none;
        outline: transparent;
    }


@media screen and (max-width: 350px) {
    .popup-download-app .app-img {
        width: 70px;
    }

    .popup-download-app p {
        line-height: 17px;
        font-size: 15px;
    }
}

.popup-display-flex {
    display: flex !important;
}


/* ------------ cookie bar ------------ */
.cookie-backdrop {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2001;
    background-color: rgba(0,0,0,0.7);
    padding: 1.25rem;
    box-sizing: border-box;
}

.cookie-consent {
    background: white;
    display: flex;
    top: 50%;
    left: 50%;
    max-width: 52rem;
    position: relative;
    transform: translate(-50%, -50%);
    padding: 3rem 1rem 2rem 2rem;
    flex-direction: column;
    border-radius: 0.3rem;
    color: #000;
    text-align: left;
    line-height: 1.45;
    font-size: 15px;
}

    .cookie-consent h2 {
        font-size: 1.3rem;
        font-weight: bold;
        margin: 0 0 2rem 0;
    }

    .cookie-consent p {
        margin-bottom: 1.5rem;
    }

    .cookie-consent .buttons {
        display: flex;
        justify-content: end;
    }

    .cookie-consent .button {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        background: #009fda;
        color: #fff !important;
        border-radius: 4px;
        padding: 5px 10px;
    }

        .cookie-consent .button:hover {
            opacity: .8 !important;
        }

    .cookie-consent .allow {
        background-color: #009fda;
        color: #fff;
    }

    .cookie-consent .set {
        background: #D9D9D9;
        color: #000 !important;
        margin-right: 1rem;
    }

    .cookie-consent a {
        color: #009fda;
        text-decoration: underline;
        font-weight: bold;
    }

    .cookie-consent .check {
        display: flex;
        align-items: baseline;
        margin-bottom: 1rem;
        font-size: 15px;
    }

        .cookie-consent .check input {
            margin: 0 1rem;
        }

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: #2f89c6;
    box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .cookie-bar p, .cookie-bar span, .cookie-bar a, .cookie-bar button {
        color: white;
        font-size: 14px;
    }

    .cookie-bar a {
        text-decoration: none;
        border-bottom: 1px solid white;
        white-space: nowrap;
    }

        .cookie-bar a:hover {
            border: none;
        }

    .cookie-bar button {
        margin-left: 15px;
        border: 1px solid white;
        padding: 8px 15px;
        background: transparent;
        border-radius: 5px;
        outline: transparent;
        cursor: pointer;
        transition: .5s;
    }

        .cookie-bar button:hover {
            border: 1px solid #002664;
            background: #002664;
            transition: .5s;
        }

@media screen and (max-width: 725px) {
    .cookie-bar {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 450px) {
    .cookie-bar span {
        display: none;
    }
}

@media screen and (max-width: 350px) {
    .cookie-bar {
        padding: 5px 20px;
    }
}


/* --------- HEADER --------- */
header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, #009fda, #0077b4);
    position: relative;
}

.header-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
}

.header-left {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo-link {
    width: 70%;
    display: block;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo svg {
        height: 50px;
        width: 76px;
        color: white;
        margin-right: 20px;
    }

    .logo img {
        height: 50px;
        width: 65px;
        color: #fff;
        margin-right: 20px;
    }

    .logo strong {
        color: white;
        font-size: 30px;
        font-weight: 500;
        letter-spacing: 0.6px
    }

.search {
    position: absolute;
    right: 280px;
}

    .search > div {
        display: flex;
        justify-content: flex-end;
        position: relative;
    }

    .search input {
        width: 136px;
        border-radius: 5px;
        outline: transparent;
        padding: 16px 50px 16px 16px;
        color: black;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.32px;
        border: none;
        transition: .5s;
    }

::-webkit-input-placeholder { /*WebKit,Blink,Edge*/
    color: #bababa;
}

:-moz-placeholder { /*MozillaFirefox4to18*/
    color: #bababa;
}

::-moz-placeholder { /*MozillaFirefox19+*/
    color: #bababa;
}

:-ms-input-placeholder { /*InternetExplorer10-11*/
    color: #bababa;
}

::-ms-input-placeholder { /*MicrosoftEdge*/
    color: #bababa;
}

.search-input-focused {
    width: 200px !important;
    transition: .5s;
}

@media screen and (max-width: 910px) {
    .search-input-focused {
        width: 136px !important;
    }
}

.search button {
    position: absolute;
    right: 6px;
    display: flex;
    height: 100%;
    align-items: center;
    border: none;
    background: transparent;
    outline: transparent;
    font-size: 30px;
    cursor: pointer;
}

.search-heading {
    margin-top: 20px;
    font-size: 22px;
}

.account {
    width: 250px;
    min-width: 180px;
    height: inherit;
    display: flex;
    justify-content: center;
    background: #002664;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.account-login,
.account-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 2;
}

.user-icon {
    margin-right: 13px;
    background: white;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    display: flex;
    flex-direction: column;
}

.login-dropdown {
    display: none;
    position: absolute;
    background: #002664;
    top: 65px;
    right: 0;
    width: 100px;
    padding: 25px 30px;
    flex-direction: column;
    align-items: center;
}

.login {
    color: white;
    font-size: 14px;
    background: transparent;
    border-radius: 4px;
    border: 1px solid white;
    padding: 4px 20px;
    cursor: pointer;
    transition: .5s;
}

    .login:hover {
        color: #d8ebff;
        border: 1px solid #d8ebff;
        transition: .5s;
    }

.login-box a,
.login-dropdown a {
    color: white;
    font-size: 12px;
    font-weight: 300;
    margin-top: 5px;
}

.login-dropdown a {
    margin-top: 10px;
}

.login-box a:hover {
    text-decoration: none;
}

#user-pic {
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

    #user-pic img {
        width: 100%;
        border-radius: 100%;
    }

#user-info {
    display: flex;
    flex-direction: column;
}

#user-name, #user-credit {
    color: white;
    font-size: 14px;
    display: block;
    margin: 2px;
}

#user-id {
    margin: 2px;
    color: white;
}

#user-name {
    font-weight: 700;
    letter-spacing: 0.32px;
}

#user-credit {
    text-transform: uppercase;
    font-weight: 300;
}

.profile-dropdown {
    display: none;
    position: absolute;
    background: #002664;
    top: 80px;
    right: 0;
    width: 170px;
    padding: 27px 40px;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.account-profile:hover .profile-dropdown {
    display: flex;
}

.profile-btn {
    display: flex;
    align-items: center;
    color: #4d4d4d;
    font-size: 15px;
    letter-spacing: 0.5px;
    background: white;
    padding: 6px 20px;
    border-radius: 4px;
    border: none;
    outline: transparent;
    cursor: pointer;
    transition: .5s;
}

    .profile-btn:hover {
        background: #d8ebff;
        transition: .5s;
    }

    .profile-btn div {
        margin-right: 8px;
    }

.logout {
    color: white;
    display: block;
    font-size: 15px;
    margin-top: 15px;
}

    .logout:hover {
        text-decoration: none;
    }

/* --------- HERO --------- */
@font-face {
    font-family: 'CD Fedra Pro';
    src: url('./font-FedraSans/CDFedraPro-Medium.woff2') format('woff2'), url('./font-FedraSans/CDFedraPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Fedra Sans Std';
    src: url('./font-FedraSans/FedraSansStd-Bold.woff2') format('woff2'), url('./font-FedraSans/FedraSansStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

.hero {
    height: 400px;
    display: flex;
    justify-content: center;
    background: #f4f4f6;
}

    .hero > div {
        position: relative;
    }

    .hero .bcg-image {
        max-width: 1440px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-text-box {
    position: absolute;
    top: 15%;
    left: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .hero-text-box p {
        letter-spacing: -0.5px;
        text-align: center;
    }

.hero-promo-text {
    margin: 0 0 10px 0;
    font-size: 33px;
    font-family: 'Fedra Sans Std';
    line-height: 40px;
}

.hero .general .hero-promo-text {
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 0;
}

.hero .general .hero-promo-text,
.hero .young .hero-promo-text {
    color: white;
    text-shadow: 2px 0px 4px black;
}

.hero .seniors .hero-promo-text {
    color: white;
    text-shadow: 2px 0px 4px black;
}

.hero-advert-text {
    margin: 0;
    color: #002664;
    font-size: 23px;
    font-family: 'CD Fedra Pro';
    background: white;
    padding: 14px 8px 11px;
    border-radius: 7px;
}

    .hero-advert-text span {
        text-transform: uppercase;
    }

.hero .download-links {
    margin-top: 20px;
}

    .hero .download-links a {
        margin: 0 5px;
        max-width: 130px;
    }

.hero .general .download-links {
    margin: 0;
}

.hero .seniors .download-links a img {
    border: 1px solid #9E9E9E;
    border-radius: 7px;
}

@media screen and (max-width: 1270px) {
    .hero-text-box {
        left: 60%;
    }
}

@media screen and (max-width: 1130px) {
    .hero-text-box {
        left: 60%;
    }
}

@media screen and (max-width: 1040px) {
    .hero-text-box {
        top: 7%;
        left: 55%;
    }

    .hero .general .hero-text-box {
        top: 15%;
    }
}

@media screen and (max-width: 900px) {
    .hero-text-box {
        left: 50%;
    }
}

@media screen and (max-width: 785px) {
    .hero-text-box {
        top: 8%;
    }

    .hero-promo-text {
        font-size: 30px;
        line-height: 33px;
    }

    /*.hero .general .hero-promo-text {
        font-size: 33px;
        line-height: 40px;
        letter-spacing: -0.5px;
        text-shadow: -1px 2px 4px white;
    }*/

    .hero-advert-text {
        font-size: 18px;
        padding: 10px 8px 7px;
    }

    .hero .download-links {
        margin-top: 15px;
    }

        .hero .download-links a {
            max-width: 100px;
        }
}

@media screen and (max-width: 660px) {
    .hero-text-box {
        top: 11%;
    }

    .hero .general .hero-text-box {
        top: 20%;
    }

    .hero-promo-text,
    .hero .general .hero-promo-text {
        font-size: 26px;
        line-height: 30px;
    }

    .hero-advert-text {
        font-size: 16px;
        padding: 8px 8px 5px;
    }
}

@media screen and (max-width: 600px) {
    .hero-text-box {
        left: 40px;
        align-items: flex-start;
    }

        .hero-text-box p {
            text-align: left;
        }

    /*.hero .general .hero-promo-text {
        background: #ffffff91;
        padding: 5px 7px;
        border-radius: 7px;
    }*/

    .hero .download-links a {
        margin: 0 10px 0 0;
    }
}

@media screen and (max-width: 450px) {
    .hero .download-links {
        display: none;
    }

    .hero-promo-text {
        font-size: 24px;
    }

    .hero-advert-text {
        width: 150px;
    }
}


/* --------- MENU --------- */
.menu {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -90px;
    margin-bottom: -90px;
    padding-bottom: 100px;
    background: #f4f4f6;
}

.menu-box {
    background: white;
    border-radius: 5px;
}

    .menu-box, .menu-box > div {
        display: flex;
        flex-direction: row;
    }

.menu-item {
    width: 150px;
    height: 150px;
    padding: 15px;
    background: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: .5s;
}

    .menu-item:hover {
        background: #f4f4f6;
        transition: .5s;
    }

.first-menu-item {
    border-radius: 5px 0 0 5px;
}

.last-menu-item {
    border-radius: 0 5px 5px 0;
}

.menu-item div {
    text-align: center;
}

    .menu-item div span {
        font-size: 50px;
    }

.menu-item p {
    margin-bottom: 0;
    color: #009fda;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}

.menu-item-active, .menu-item-active:hover {
    background: linear-gradient(to right, #009fda, #0077b4);
}

    .menu-item-active p, .menu-item-active:hover p {
        color: white;
    }



/* --------- CONTAINERS --------- */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-gray {
    background: #f4f4f6;
    padding-top: 20px;
}

.container-width {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.container-width-subpage {
    display: flex;
    flex-direction: row;
    max-width: 960px;
    width: 100%;
}

.container-column {
    display: flex;
    flex-direction: column;
    margin: 0 50px 60px 50px;
    width: 100%;
}



/* --------- BREADCRUMBS --------- */
.breadcrumbs ul {
    padding-left: 0;
    margin: 5px 0 -10px 0;
}

    .breadcrumbs ul li, .breadcrumbs ul li h1 {
        list-style-type: none;
        display: inline-block;
        color: #009fda;
        font-size: 16px;
        font-weight: 600;
        line-height: 23px;
    }

        .breadcrumbs ul li + li {
            margin-left: 10px;
        }

            .breadcrumbs ul li + li::before {
                content: "";
                display: inline-block;
                margin-right: 20px;
                border-right: 2px solid #009fda !important;
                border-top: 2px solid #009fda !important;
                border-left: 2px solid transparent !important;
                border-bottom: 2px solid transparent !important;
                width: 7px !important;
                height: 7px !important;
                transform: rotate(45deg);
                border-radius: 2px;
            }

        .breadcrumbs ul li a {
            text-decoration: none;
            color: #009fda;
            font-weight: 400;
            transition: .3s;
        }

            .breadcrumbs ul li a:hover {
                opacity: .7;
            }





/* --------- SECTIONS --------- */
.sections {
    position: relative;
}

    .sections::-webkit-scrollbar {
        width: 2px;
        height: 2px;
    }

    .sections::-webkit-scrollbar-track {
        background: transparent;
    }

    .sections::-webkit-scrollbar-thumb {
        background: transparent;
        border-radius: 5px;
    }

.sections-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1px 0;
    border-radius: 5px;
    overflow: hidden;
}

    .sections-list::after {
        content: '';
        position: absolute;
        bottom: 0;
        height: 54px;
        width: 100%;
        background: white;
        z-index: 0;
    }

.section-box {
    padding: 0 10px;
    color: #009fda;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    line-height: 17px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    cursor: pointer;
    z-index: 1;
    transition: .5s;
}

    .section-box:hover {
        background: #f6f6f6;
    }

@media screen and (max-width: 950px) {
    .sections-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 680px) {
    .sections-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 470px) {
    .sections {
        height: 60px;
        overflow-x: scroll;
        overflow-y: hidden;
        margin-left: -15px;
        margin-right: -15px;
        padding-bottom: 10px;
    }

    .sections-scrolled {
        position: absolute;
        display: flex;
    }

        .sections-scrolled::before, .sections-scrolled::after {
            content: '';
            height: 60px;
            width: 15px;
            background: transparent;
        }

    .sections-list {
        height: 60px;
        display: flex;
    }

        .sections-list::after {
            height: 0;
        }

    .section-box {
        padding: 0 12px;
        height: 60px;
        white-space: nowrap;
    }
}

/* --------- SEGMENTS --------- */
.segments {
    margin-top: 40px;
}

.segments-img {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    width: 100%;
}

.segment-img-box {
    position: relative;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
    transition: .5s;
    text-decoration: none;
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 10px;
    width: calc(32% - 10px);
}

    .segment-img-box img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: .3s;
    }

    .segment-img-box p {
        margin: 0;
        padding: 20px 30px;
        box-sizing: border-box;
        color: white;
        font-size: 18px;
        font-weight: 400;
        text-decoration: underline;
        text-shadow: 0 0 5px rgba(0, 0, 0, 1);
        line-height: 25px;
        text-align: center;
        width: 100%;
        z-index: 1;
    }

    .segment-img-box:hover img {
        opacity: .9;
        transform: scale(1.1);
    }

    .segment-img-box:hover p {
        text-decoration: none;
    }

@media screen and (max-width: 800px) {
    .segments-img {
        grid-gap: 20px 3%;
    }
}

@media screen and (max-width: 650px) {
    .segments-img {
        grid-template-columns: repeat(1, 1fr);
    }

    .segment-img-box {
        height: 150px;
    }
}

.segments-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px 0;
}

.segment-text-box {
    padding: 0 10px;
    color: #009fda;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    display: flex;
    align-items: center;
    justify-self: center;
    cursor: pointer;
}

    .segment-text-box:hover {
        text-decoration: none;
    }

.segments-img + .segments-text {
    margin-top: 30px;
}

@media screen and (max-width: 650px) {
    .segments-text {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 470px) {
    .segments {
        margin-top: 25px;
    }
}


@media screen and (max-width: 450px) {
    .segments-text {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* --------- SEPARATOR --------- */
.separator {
    margin-top: 60px;
    border-top: 2px solid gainsboro;
}



/* --------- PARTNERS --------- */
.partners {
    margin-top: 40px;
    text-align: center;
    border-bottom: 1px solid gainsboro;
    padding-bottom: 40px;
}

.partners-box {
    margin-top: 20px;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
}

    .partners-box li {
        width: 150px;
        height: 150px;
        border-radius: 100%;
        margin: 0 20px;
        list-style-type: none;
        display: inline-block;
    }

        .partners-box li img {
            width: inherit;
            height: inherit;
        }



/* --------- APP --------- */
.triphood-app {
    margin-top: 40px;
}

.download-tutorial {
    margin: 20px 70px;
    display: flex;
    flex-direction: row;
}

.download-tut-breakpoint {
    display: flex;
    justify-content: center;
    width: 50%;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    width: 50%;
    height: auto;
    position: relative;
}

    .process-step p {
        width: 90%;
        margin-top: 0;
        color: #444444;
        font-size: 15px;
        font-weight: 300;
        line-height: 20px;
        letter-spacing: 0.32px;
        text-align: center;
    }

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #009fda;
    color: white;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    line-height: 38px;
}

.step-icon {
    height: 100px;
    width: 100px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-links {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .download-links a {
        display: block;
        margin: 0 15px;
        max-width: 200px;
        transition: .5s;
    }

        .download-links a:hover {
            opacity: .8;
            transition: .5s;
        }

        .download-links a img {
            width: 100%;
        }



/* --------- FOOTER --------- */
footer {
    min-height: 300px;
    height: auto;
    background: #353f4c;
}

    footer p {
        color: white;
        margin-top: 0;
        font-weight: 300;
    }

    footer a {
        width: max-content;
        margin-bottom: 10px;
    }

.footer-box {
    display: flex;
    flex-direction: row;
    padding: 50px 0;
    width: 100%;
    margin-bottom: 0;
}

.footer-left-part > div, .footer-right-part > div {
    display: flex;
    flex-direction: column;
}
/* .......... left part ......... */
.footer-left-part {
    width: 55%;
    display: flex;
    flex-direction: row;
}
/* .......... author box ......... */
.author-box {
    width: 55%;
}

    .author-box svg {
        width: 230px;
        opacity: .4;
    }

    .author-box img {
        width: 230px;
        opacity: .4;
    }

    .author-box .author-box-besides {
        float: left;
        vertical-align: middle;
        margin: 10px 0;
    }

        .author-box .author-box-besides svg {
            width: 130px;
            margin: 0 5px;
        }

        .author-box .author-box-besides::after {
            float: none;
        }
/* .......... customer support box ......... */
.customer-support-box {
    width: 40%;
    padding-left: 5%;
    border-left: 1px solid #5b6573;
}

    .customer-support-box .contact-details {
        color: #787f88;
    }

.footer-link-call {
    color: greenyellow;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
}

.footer-link-btn {
    display: flex;
    flex-direction: column;
}

    .footer-link-btn a {
        padding: 11px 14px;
        border: 1px solid white;
        border-radius: 3px;
        color: white;
        font-size: 14px;
        text-decoration: none;
        opacity: .4;
        transition: .5s;
    }

        .footer-link-btn a:hover {
            opacity: .8;
            transition: .5s;
        }
/* .......... right part ......... */
.footer-right-part {
    width: 45%;
    display: flex;
    flex-direction: row;
}
/* .......... mobile info box ......... */
.mobile-info-box {
    width: 60%;
}

    .mobile-info-box > div {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

.footer-link-app {
    padding: 10px 14px;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    display: flex;
    flex-direction: row;
    align-items: center;
    opacity: .4;
    transition: .5s;
}

    .footer-link-app .footer-googleplay {
        width: 20px;
        height: 22px;
        background: url("img/googleplay.svg");
        margin-right: 10px;
        background-size: cover;
    }

    .footer-link-app:hover {
        opacity: .8;
        transition: .5s;
    }

    .footer-link-app div {
        width: 20px;
        height: 20px;
        background: white;
        margin-right: 10px;
    }

.qr img {
    width: 100px;
    height: 100px;
    margin-right: 15px;
    opacity: .4;
}

.qr svg {
    width: 100px;
    height: 100px;
    margin-right: 15px;
    opacity: 1;
}
/* .......... socials box ......... */
.socials-box {
    width: 40%;
}

.social-item {
    display: flex;
    flex-direction: row;
}

    .social-item div {
        width: 20px;
        height: 20px;
        background: white;
        margin-right: 10px;
        opacity: .4;
        transition: .5s;
    }

    .social-item:hover div {
        opacity: .8;
        transition: .5s;
    }

    .social-item:hover svg {
        opacity: .8;
        transition: .5s;
    }

    .social-item .instagram {
        background: url("img/instagram.svg");
        background-size: cover;
    }

.footer-link-underline {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    opacity: .4;
    transition: .5s;
}

    .footer-link-underline:hover {
        opacity: .8;
        transition: .5s;
    }



/* ================= INDEX.html ================= */

.text-seo {
    margin-top: 20px;
    padding: 0px 20px;
    color: #444444;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}

    .text-seo a {
        color: #009fda;
        text-decoration: none;
    }


.text-seo-full div + div {
    margin-top: 10px;
}

.text-seo-mobile div + div {
    margin-top: 10px;
}

.expand-button {
    display: inline-block;
}

    .expand-button button {
        color: #009fda;
        font-size: 15px;
        font-weight: 300;
        border: none;
        padding: 0;
        background: transparent;
        outline: transparent;
        cursor: pointer;
    }

.seo-section {
    border-bottom: 1px solid gainsboro;
    padding-bottom: 40px;
    text-align: center;
    color: #444444;
}

.default-page-map {
    margin-top: 10px;
}

.map {
    width: 100%;
}

    .map > div {
        height: 600px;
        background: #D8EADA;
        border: 20px solid white;
        border-radius: 7px;
    }


.tripsFirstPart, .tripsSecondPart {
    display: flex;
    flex-direction: row;
}

.trips-new, .trips-cdPoints {
    margin-right: 15px;
    width: 50%;
}

.trips-future, .trips-tips {
    margin-left: 15px;
    width: 50%;
}

.trips-future {
    margin-top: 32px;
}

    .trips-future h2 {
        margin: 0;
        padding: 20px;
        color: white;
        font-weight: 500;
        text-align: center;
        background: linear-gradient(to right, #009fda, #0077b4);
        border-radius: 5px 5px 0 0;
        position: relative;
    }

        .trips-future h2::before,
        .trips-future h2::after {
            content: '';
            background: url("img/pin.png");
            width: 14px;
            height: 30px;
            position: absolute;
            top: -8px;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .trips-future h2::before {
            left: 15px;
        }

        .trips-future h2::after {
            right: 15px;
        }

.box-link {
    text-decoration: none;
    color: inherit;
}

    .box-link + .box-link {
        display: block;
        margin-top: 20px;
    }

.trips-future .box-link {
    margin-top: 0;
}

.box {
    background: white;
    padding: 20px 30px 20px 20px;
    border-radius: 5px;
    transition: .5s;
}

    .box.finished {
        position: relative;
    }

        .box.finished > *:not(.finish-text) {
            opacity: 0.6;
        }

        .box.finished .finish-text {
            position: absolute;
            right: 30px;
            top: 26px;
            font-weight: 500;
        }

        .box.finished h3 {
            padding-right: 80px;
        }

.gm-style .box.finished .finish-text {
    top: 30px;
}

.box:hover {
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.28);
    transition: .5s;
}

.trips-future .box {
    padding: 0 30px 15px 20px;
    border-radius: 0;
}

    .trips-future .box:hover {
        background: #f5fbff;
        box-shadow: none
    }

.trips-future .box-link:nth-of-type(3) .box {
    border-radius: 0 0 5px 5px;
}

.main-info {
    display: flex;
    flex-direction: row;
}

    .main-info + .text-info {
        margin-top: 20px;
        min-height: 84px;
    }

.trips-future .main-info {
    border-top: 1px solid gainsboro;
    padding-top: 25px;
}

.trips-future .box-link:first-of-type .main-info {
    border: none;
}

.main-info-img {
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    margin-right: 20px;
    border-radius: 5px;
}

    .main-info-img img {
        width: 100%;
        border-radius: 5px;
    }

.main-info-items {
    width: 100%;
}

    .main-info-items small {
        color: #999999;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.32px;
        display: block;
        height: 17px;
        margin-top: 8px;
        overflow: hidden;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .main-info-items a {
        color: #009fda;
        text-decoration: none;
    }

.main-info-bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.rating {
    height: 20px;
    color: #444444;
    font-size: 20px;
    letter-spacing: 1.5px;
}

.icons {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: row;
}

.date {
    color: #444444;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
}

.icons div {
    margin-left: 7px;
}

.text-info p {
    margin: 0;
    color: #999999;
    font-size: 16px;
}

.text-info .description-truncate {
    text-overflow: ellipsis;
    overflow: hidden;
    /*three dots truncation*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    /*fallback for IE, MOZ - without dots*/
    line-height: 21px;
    max-height: 84px;
}

.link-more-trips {
    display: inline-block;
    color: #009fda;
    font-size: 16px;
    font-weight: 400;
    margin-top: 30px;
    text-decoration: none;
    border-bottom: 1px solid #009fda;
}

    .link-more-trips:hover {
        border: none;
    }

.more-info {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
}

.more-info-breakpoint {
    display: flex;
    flex-direction: row;
    width: 50%;
}

.more-info-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #909090;
    font-size: 15px;
    font-weight: 300;
}

    .more-info-item span {
        margin-right: 5px;
        min-width: 20px;
        height: 20px;
        font-size: 20px;
        color: #444444;
    }


.advert {
    max-height: 140px;
    border-radius: 7px;
}

    .advert img {
        border-radius: 7px;
        height: auto;
        max-width: 1100px;
        width: 100%;
    }







/* ================= PLACE.html ================= */
.filters {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid gainsboro;
    padding-bottom: 50px;
}

.filters-breakpoint {
    display: flex;
    flex-direction: row;
}

    .filters-breakpoint + .filters-breakpoint {
        margin-top: 30px;
    }

.filter {
    display: flex;
    align-items: center;
    width: 48%;
    position: relative;
}

    .filter:first-of-type {
        margin-right: 4%;
    }

    .filter > div {
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        padding-left: 25px;
        z-index: 9;
    }

.select2 {
    width: 100% !important;
}

.select2-selection {
    height: 90px !important;
    border: none !important;
    border-radius: 5px !important;
    display: flex !important;
    align-items: center;
    padding: 20px 30px 20px 65px;
    outline: transparent;
}

.select2-selection__arrow {
    height: 100% !important;
    width: 50px !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .select2-selection__arrow b {
        border-right: 2px solid #151515 !important;
        border-top: 2px solid #151515 !important;
        border-left: 2px solid transparent !important;
        border-bottom: 2px solid transparent !important;
        width: 15px !important;
        height: 15px !important;
        transform: rotate(135deg);
        position: unset !important;
        margin-bottom: 9px !important;
        border-radius: 3px;
    }

.select2-container--open b {
    border-right: 2px solid #151515 !important;
    border-top: 2px solid #151515 !important;
    border-left: 2px solid transparent !important;
    border-bottom: 2px solid transparent !important;
    width: 15px !important;
    height: 15px !important;
    transform: rotate(315deg);
    margin-top: 20px !important;
}

.select2-search--dropdown input {
    outline: transparent;
}

.select2-container--default,
.select2-selection--single,
.select2-selection__rendered {
    color: #909090 !important;
}

.select2-dropdown {
    border: none !important;
    box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.12);
}

.select2-results__option {
    padding: 15px 74px !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #fafafa !important;
    color: #909090 !important;
}

.select2-results__option[aria-selected=true] {
    background-color: #e3f2ff !important;
}

.select2-search--dropdown {
    display: none !important;
}

    .select2-search--dropdown .select2-search__field {
        border: 1px solid #cacaca !important;
        ;
        padding: 6px 10px !important;
        ;
        border-radius: 5px;
    }

.advanced-filters {
    background: transparent;
    margin-top: 2%;
}

    .advanced-filters a {
        color: #009fda;
        text-decoration: none;
        border-bottom: 1px solid #609ed8;
    }

        .advanced-filters a:hover {
            border: none;
        }

    .select2-selection,
    .advanced-filters a {
        font-size: 14px;
    }

.advanced-filters-box {
    margin-top: 30px;
    display: flex;
    padding: 40px 30px 50px;
}

.filter-column-breakpoint {
    display: flex;
    width: 50%;
}

.filter-column {
    width: 50%;
    padding: 0 20px;
}

    .filter-column strong {
        color: #909090;
        font-size: 17px;
        font-weight: 300;
        height: 40px;
        display: flex;
        align-items: flex-end;
    }

    .filter-column ul {
        padding: 0;
        margin: 20px 0 0 0;
    }

        .filter-column ul li {
            color: #909090;
            font-size: 16px;
            font-weight: 400;
            list-style-type: none;
            line-height: 18px;
            padding: 8px 0;
        }
/* ---------- checkbox style ---------- */
.advanced-filters-box ul li label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.checkbox-style {
    margin-right: 15px;
    display: block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border: 1px solid #616161;
    border-radius: 20px;
    position: relative;
}

    .checkbox-style::after {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        left: 2px;
        width: 14px;
        height: 14px;
        background: #009FDA;
        border-radius: 20px;
        cursor: pointer;
        visibility: hidden;
    }

.advanced-filters-box ul li label input[type=radio] {
    position: absolute;
    top: 1px;
    left: 1px;
    visibility: hidden;
}

    .advanced-filters-box ul li label input[type=radio]:checked + .checkbox-style::after {
        visibility: visible;
    }

.switcher {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .switcher button {
        border: none;
        background: transparent;
        padding: 0;
        outline: transparent;
        max-width: 100px;
        width: 100%;
    }

        .switcher button span {
            font-size: 20px;
            letter-spacing: .4px;
        }

#list {
    text-align: right;
}

#map {
    text-align: left;
}

.switch-active span {
    color: #444444;
}

.switch-passive span {
    color: #009fda;
    border-bottom: 1px solid #009fda !important;
    cursor: pointer;
}

.switch-passive:hover span {
    border-bottom: 1px solid transparent !important;
}

.switcher form {
    margin: 0 25px;
}

    .switcher form label {
        width: 100px;
        height: 50px;
        display: block;
        position: relative;
    }

        .switcher form label input {
            opacity: 0;
            width: 0;
            height: 0;
        }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #999999;
    border-radius: 50px;
    transition: .5s;
}

    .slider::before {
        position: absolute;
        content: '';
        width: 34px;
        height: 34px;
        left: 6px;
        bottom: 6px;
        display: block;
        background: #009fda;
        border-radius: 100%;
        transition: .5s;
    }

.switcher form label input:checked + .slider::before {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
}

.switcher form label input:checked + span + p {
    color: #009fda;
    border-bottom: 1px solid #009fda;
}

.list-of-results {
    padding-left: 0;
    margin-left: -12px;
    margin-right: -12px;
}

    .list-of-results li {
        list-style-type: none;
        display: inline-block;
        width: 47.7%;
        margin: 1%;
    }

    .list-of-results .more-info {
        margin-top: 15px;
        border-top: 1px solid gainsboro;
        padding-top: 20px;
    }

.tripsSecondPart .more-info, .tripsFirstPart .more-info {
    margin-top: 15px;
    border-top: 1px solid gainsboro;
    padding-top: 20px;
}


.show-more {
    margin-top: 50px;
    width: 100%;
    text-align: center;
}

    .show-more button {
        padding: 17px 30px;
        min-width: 200px;
        background: linear-gradient(to right, #009fda, #0077b4);
        border-radius: 5px;
        border: none;
        outline: transparent;
        color: white;
        font-size: 20px;
        font-weight: 300;
        letter-spacing: .4px;
        cursor: pointer;
        transition: .5s;
    }

        .show-more button:hover {
            opacity: .8;
            transition: .5s;
        }


.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

    .pagination button + button {
        margin-left: 15px;
    }

    .pagination button {
        color: #009fda;
        font-size: 16px;
        background: transparent;
        outline: transparent;
        cursor: pointer;
    }

.text-btn {
    border: none;
    padding: 0;
    width: 100px;
}

    .text-btn span {
        letter-spacing: .32px;
        border-bottom: 1px solid #009fda;
    }

.prev {
    text-align: right;
    margin-right: 15px;
}

    .prev span::before {
        content: 'Předchozí';
    }

.next {
    text-align: left;
    margin-left: 15px;
}

    .next span::before {
        content: 'Další';
    }

.text-btn span:hover {
    border: none;
}

.round-btn {
    justify-content: center;
    align-items: center;
    border: 2px solid #009fda;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 100%;
    transition: .5s;
}

    .round-btn:hover {
        background: rgba(0, 159, 218, 0.14);
        transition: .5s;
    }

.round-btn-active {
    color: white !important;
    background: #009fda !important;
}






/* ================= DETAIL.html ================= */
.detail-intro {
    padding: 20px 20px 35px 20px;
}

.detail-contact {
    padding: 20px 20px 35px 20px;
}

.trip-kind {
    margin: 0;
    color: #989898;
}

.detail-intro h1 {
    color: #009fda;
    font-size: 30px;
    font-weight: 300;
    margin: 5px 0 10px;
}

.gallery {
    display: flex;
    pointer-events: none;
}

.gallery-main-pic {
    width: 55%;
    margin-right: 2.2%;
}

    .gallery-main-pic img {
        width: 100%;
    }

.gallery-other-pics {
    width: 41%;
}

    .gallery-other-pics div {
        display: flex;
    }

        .gallery-other-pics div + div {
            margin-top: 5%;
        }

        .gallery-other-pics div a {
            width: 50%;
            height: 100%;
        }

            .gallery-other-pics div a img {
                width: 100%;
                height: 100%;
            }

            .gallery-other-pics div a + a {
                margin-left: 5%;
            }

.more-info-box {
    max-width: 500px;
    margin: 30px 0;
}

.detail-intro .more-info-item div {
    margin-right: 7px;
}

.detail-intro article {
    color: #444444;
    border-top: 1px solid gainsboro;
    padding-top: 30px;
}


.detail-info {
    display: flex;
    color: #444444;
    padding: 40px 30px;
}

    .detail-info ul {
        width: 50%;
        padding: 0;
        margin: 0;
    }

        .detail-info ul li {
            display: flex;
        }

.detail-info-list {
    border-right: 1px solid gainsboro;
    padding-right: 30px !important;
    margin-right: 30px !important;
}

    .detail-info-list li + li {
        margin-top: 20px;
    }

    .detail-info-list li p {
        width: 60%;
        margin: 0;
    }

    .detail-info-list li > div {
        width: 40%;
        display: flex;
        align-items: center;
    }

    .detail-info-list li div div {
        margin-right: 10px;
    }

.detail-info-tips li {
    display: flex;
    align-items: center;
}

    .detail-info-tips li + li {
        margin-top: 15px;
    }

    .detail-info-tips li div {
        margin-right: 20px;
    }


.trip-download button {
    display: inline-block;
    padding: 20px 40px;
    color: white;
    font-size: 20px;
    font-weight: 300;
    background: linear-gradient(to right, #009fda, #0077b4);
    cursor: pointer;
    outline: transparent;
    transition: .5s;
}

    .trip-download button:hover {
        opacity: .8;
        transition: .5s;
    }


.detail-journey h2 {
    padding-left: 70px;
    margin-bottom: 20px;
}

.station {
    display: flex;
}

.station-number {
    position: relative;
    min-width: 19px;
    height: auto;
    border-right: 3px solid #009fda;
    margin-right: 50px;
}

    .station-number div {
        position: absolute;
        top: 80px;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        background: #009fda;
        color: white;
        font-size: 16px;
        font-weight: 300;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.first-station .station-number {
    margin-top: 80px;
}

    .first-station .station-number div {
        top: 0;
    }

.last-station .station-number {
    height: 80px;
}

.station-box {
    display: flex;
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
}

.station-main {
    display: flex;
}

.last-station .station-box {
    margin-bottom: 0;
}

.station-img {
    min-width: 160px;
    max-width: 160px;
    min-height: 160px;
    max-height: 160px;
    margin-right: 20px;
}

    .station-img img {
        width: 100%;
        border-radius: 5px;
    }

.station-info {
    position: relative;
    width: 100%;
}

    .station-info h3 {
        margin-top: 0;
    }

    .station-info .distance {
        color: #009C4C;
        font-weight: 600;
    }

    .station-info p {
        color: #999999;
        margin-bottom: 10px;
    }

    .station-info .point-description {
        min-height: 60px;
    }

.more-station-info {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

    .more-station-info button {
        color: #009fda;
        font-size: 15px;
        font-weight: 300;
        text-transform: uppercase;
        border-bottom: 1px solid #009fda;
        border-top: none;
        border-left: none;
        border-right: none;
        padding: 0;
        background: transparent;
        outline: transparent;
        cursor: pointer;
    }

        .more-station-info button:hover {
            border: none;
        }

.station-info-detail h4 {
    color: #009fda;
    font-size: 15px;
    text-transform: uppercase;
    margin: 0;
}

.contact {
    margin-top: 30px;
}

.point-contact {
    border-radius: 5px;
    padding: 20px;
    margin-top: 16px;
    margin-bottom: 5px;
    font-size: 15px;
    background: #C8EAFA;
}

.tables {
    display: flex;
    margin-top: 30px;
    margin-bottom: 10px;
}

    .tables div {
        width: 100%;
    }

        .tables div + div {
            margin-left: 20px;
        }

        .tables div ul {
            border-radius: 5px;
            padding: 20px;
            margin-bottom: 5px;
        }

.table-opening ul {
    background: linear-gradient(270deg, #98D7F2 0%, #C8EAFA 100%);
}

.table-prices ul {
    background: #C8EAFA;
}

.tables div ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    font-size: 15px;
}

    .tables div ul li p {
        width: 50%;
        color: black;
        font-weight: 300;
        margin: 5px 0;
    }

    .tables div ul li strong {
        width: 50%;
        text-align: right;
    }

.table-opening .day {
    margin-left: 10px;
}

.detail-map {
    width: 100%;
    height: 500px;
    background: #D8EADA;
}


.detail-description {
    padding: 30px 20px;
    margin-top: 50px;
}

    .detail-description p {
        margin: 0;
    }

        .detail-description p + p {
            margin-top: 15px;
        }

/* ---------- NOVÉ: přílohy ---------- */
.attachments .panel {
    display: flex;
    align-items: center;
    padding: 25px 30px;
}

.attachments ul {
    padding-left: 30px;
    margin: 0;
}

    .attachments ul li {
        list-style-type: none;
        display: inline-block;
        margin: 10px;
    }

        .attachments ul li + li {
            margin-top: 5px;
        }

        .attachments ul li a {
            text-decoration: none;
            color: #009fda;
            font-size: 15px;
            font-weight: 400;
            border-bottom: 1px solid #009fda;
        }

            .attachments ul li a:hover {
                border: none;
            }


/* ---------- NOVÉ: jízdní řád ---------- */
.timetable .panel {
    padding: 40px;
}

    .timetable .panel > div + div {
        margin-top: 50px;
    }


.timetable .way-there + .way-back {
    margin-top: 40px;
}

.timetable h2 {
    margin-bottom: 20px;
}

.timetable h3 {
    margin: 0;
    color: black;
    font-size: 15px;
}

.way-there h4, .way-back h4 {
    margin: 40px 0 20px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 300;
}

.timetable h5 {
    margin: 0 0 5px 20px;
    color: #009fda;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    position: relative;
}

    .timetable h5::before {
        content: '•';
        color: black;
        font-size: 27px;
        line-height: 3px;
        position: absolute;
        left: -20px;
    }

.tt-station-box {
    padding: 10px 0;
    position: relative;
}

    .tt-station-box::before {
        content: '';
        border-left: 1px solid black;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 5px;
    }

    .tt-station-box:first-of-type::before {
        top: 17px;
    }

    .tt-station-box:last-of-type::before {
        height: 20px;
    }

.timetable table {
    font-size: 15px;
    padding-left: 5px;
}

    .timetable table + table {
        padding-top: 20px;
    }

.timetable tr + tr {
    margin-top: 5px;
}

.timetable td {
    padding: 2px 10px;
    text-align: center;
    min-width: 60px;
    display: inline-block;
}

    .timetable td:first-child {
        font-weight: 400;
    }

.alert {
    display: flex;
    align-items: center;
    background: #d9eef8;
    min-height: 90px;
    padding: 0 30px;
    border-radius: 5px;
}

    .alert div {
        margin-right: 30px;
    }

.timetable-note {
    margin-top: 50px;
    color: #777777;
}


.alert .ico-50px {
    margin-right: 25px;
}


.trip-author {
    color: #909090;
}

    .trip-author p {
        margin: 0;
    }

    .trip-author em {
        display: block;
        margin-top: 5px;
    }


.time-and-distance {
    display: flex;
}

    .time-and-distance .transport-finder,
    .time-and-distance .graph {
        width: 50%;
        height: fit-content;
        border-radius: 5px;
    }

        .time-and-distance .transport-finder + .graph {
            margin-left: 20px;
        }

.transport-finder-box {
    padding: 21px;
}

.time-and-distance div img {
    width: 100%;
    border-radius: 5px;
    opacity: .7;
}

.transport-finder {
    background-image: linear-gradient(to right, #009FDA,#0077B4);
}

    .transport-finder div input {
        height: 100%;
    }

    .transport-finder h3 {
        color: white;
        text-transform: uppercase;
        font-size: 15px;
    }

    .transport-finder .finder-field {
        border-radius: 5px;
        border: 1px solid gainsboro;
    }

        .transport-finder .finder-field + .finder-field {
            margin-top: 20px;
        }

        .transport-finder .finder-field > div {
            display: flex;
            position: relative;
        }

        .transport-finder .finder-field div + div::after {
            content: '';
            border-top: 1px solid #F4F4F6;
            width: 95%;
            position: absolute;
        }

    .transport-finder div label {
        max-width: 100px;
        min-width: 50px;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #F4F4F6;
        color: #999999;
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
    }

    .transport-finder div input {
        width: 100%;
        padding: 15px;
        border: none;
        color: black;
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        background: white;
        border: none;
        border-radius: 0;
        box-shadow: none;
        outline: transparent;
        position: relative;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
    }

.input-departure::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: white;
    pointer-events: none;
    cursor: pointer;
}

.input-departure::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 18px;
    width: 0;
    height: 0;
    border-right: 5px solid #bdbdbd;
    border-top: 5px solid #bdbdbd;
    border-left: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: rotate(135deg);
    pointer-events: none;
    cursor: pointer;
}

.transport-finder div input::-webkit-input-placeholder {
    color: #909090;
}

.transport-finder div input:-moz-placeholder {
    color: #909090;
}

.transport-finder div input::-ms-input-placeholder {
    color: #909090;
}

.transport-finder div #endStation::-webkit-input-placeholder {
    color: black;
}

.transport-finder div #endStation::-webkit-input-placeholder {
    color: black;
}

.transport-finder div #endStation::-webkit-input-placeholder {
    color: black;
}

.transport-finder button {
    margin-top: 20px;
    width: 100%;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    background: #92D400;
    border-radius: 5px;
    border: 1px solid #92D400;
    padding: 15px;
    cursor: pointer;
    transition: .5s;
}

    .transport-finder button:hover {
        opacity: .8;
        transition: .5s;
    }

.comments {
    padding: 30px 20px;
}

.single-comment {
    position: relative;
}

    .single-comment + .single-comment {
        margin-top: 30px;
    }

    .single-comment h3 {
        width: 60%;
        font-weight: 300;
        font-size: 18px;
        margin-top: 0;
    }

    .single-comment p {
        color: #909090;
        margin: 0;
    }

        .single-comment p + p {
            margin-top: 10px;
        }

.whatever-text {
    width: 40%;
    position: absolute;
    right: 0;
    top: 0;
    color: black;
    font-size: 15px;
    text-align: right;
}

.attachments a {
    text-decoration: none;
}

.timetables {
    text-align: left;
}

    .timetables table {
        display: block;
        margin: 0 15px 20px 40px;
        overflow-x: auto;
        white-space: nowrap;
        border-spacing: 0px;
    }

    .timetables td, th {
        padding-left: 5px;
        min-width: 100px;
        border: 1px solid #ddd;
    }

    .timetables .header-station {
        width: 60%;
    }

.partner-section > div {
    display: flex;
}

.partner-section {
    display: flex;
    flex-direction: column;
}

    .partner-section .hidden {
        display: none;
    }

    .partner-section img {
        margin: 20px 20px 20px 0;
        background-color: aqua;
    }

    .partner-section > div {
        padding: 10px 0 20px 0;
    }

    .partner-section a {
        font-size: 15px;
        line-height: 20px;
    }

/* ================= PROFILE.html ================= */
.h1-profile {
    color: #009fda;
    font-size: 30px;
    font-weight: 300;
    margin: 50px 0 30px;
}

.profile-info {
    display: flex;
    padding: 50px;
}

.user-main-info, .user-detail-info {
    width: 50%;
}

.user-main-info {
    border-right: 1px solid gainsboro;
    padding-right: 40px;
    margin-right: 40px;
}

    .user-main-info .profile-picture {
        width: 120px;
        height: 120px;
    }

        .user-main-info .profile-picture img {
            width: 100%;
            border-radius: 100%;
        }

.user-upper-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    .user-upper-box span {
        color: white;
        font-size: 14px;
        text-transform: uppercase;
        background: #009fda;
        padding: 6px 15px;
        border-radius: 30px;
        position: absolute;
        top: 105px;
    }

    .user-upper-box p {
        font-weight: 400;
        font-size: 16px;
        margin-top: 20px;
    }

.user-bottom-box {
    display: flex;
    justify-content: center;
}

    .user-bottom-box div {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

        .user-bottom-box div p {
            margin: 0;
            width: 130px;
            text-align: center;
            font-size: 18px;
        }

        .user-bottom-box div strong {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 5px;
        }

.user-detail-info {
    display: flex;
    align-items: center;
}

    .user-detail-info ul {
        margin: 0;
        padding: 0;
        width: 100%;
    }

        .user-detail-info ul li {
            list-style-type: none;
            position: relative;
            font-size: 18px;
            display: flex;
            align-items: center;
        }

            .user-detail-info ul li + li {
                margin-top: 25px;
            }

            .user-detail-info ul li div {
                margin-right: 10px;
            }

            .user-detail-info ul li strong {
                position: absolute;
                right: 0;
                color: #009fda;
                font-size: 21px;
                font-weight: 300;
            }

.goals h2 {
    font-size: 25px;
    font-weight: 300;
    text-transform: inherit;
}

.goals-map {
    width: 100%;
}

    .goals-map > div {
        height: 500px;
        background: #D8EADA;
        border: 20px solid white;
        border-radius: 7px;
        margin-top: 20px;
    }


.text-seo-mobile {
    display: none;
}

/* ================= pridani ikon k nadpisu v detailu ================= */

.detail-intro .title-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

    .detail-intro .title-wrapper .detail-info-tips {
        white-space: nowrap;
        display: flex;
        margin: 8px 0px;
        padding-left: 10px;
    }

        .detail-intro .title-wrapper .detail-info-tips li {
            margin-top: 0;
            font-size: 0;
            font-weight: 100;
            letter-spacing: -500px;
        }

            .detail-intro .title-wrapper .detail-info-tips li:last-of-type > div {
                margin-right: 10px;
            }

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
        }

.finder-field .autocomplete-items {
    left: 69px;
    right: -1px;
}

/* ================= SEGMENT-DETAIL.html ================= */
.segment-detail-bc ul {
    margin-top: 0;
}

.segment-gallery {
    margin-left: -50px;
    margin-right: -50px;
    margin-top: 25px;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}

.segment-gallery-main-pic, .segment-gallery-other-pics {
    width: 50%;
}

.segment-gallery-main-pic {
    position: relative;
    padding-top: 50%;
}

    .segment-gallery-main-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.segment-gallery-other-pics {
    display: flex;
    flex-wrap: wrap;
}

    .segment-gallery-other-pics div {
        position: relative;
        padding-top: 50%;
        width: 50%;
    }

    .segment-gallery-other-pics img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

@media screen and (max-width: 1200px) {
    .segment-gallery {
        border-radius: 0;
    }
}

@media screen and (max-width: 1100px) {
    .segment-gallery {
        margin-left: -30px;
        margin-right: -30px;
    }
}

@media screen and (max-width: 660px) {
    .segment-gallery {
        margin-top: 20px;
    }
}

@media screen and (max-width: 550px) {
    .segment-gallery {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media screen and (max-width: 450px) {
    .segment-gallery-main-pic {
        padding-top: 60%;
        width: 100%;
    }

    .segment-gallery-other-pics {
        display: none;
    }
}


.segment-detail-intro {
    padding: 25px 25px 50px 25px;
    z-index: 1;
    margin-bottom: 40px;
}

    .segment-detail-intro .tag {
        margin: 0;
        color: #009fda;
        font-weight: 400;
    }

    .segment-detail-intro h1 {
        margin-top: 25px;
        color: #009fda;
        font-size: 30px;
        font-weight: 300;
    }

        .segment-detail-intro h1 + article {
            margin-top: 40px;
        }

    .segment-detail-intro article p {
        font-size: 16px;
    }

        .segment-detail-intro article p + p {
            margin-top: 15px;
        }

@media screen and (max-width: 450px) {
    .segment-detail-intro {
        padding: 25px 20px 50px 20px;
    }

        .segment-detail-intro h1 {
            font-size: 26px;
        }
}


.segment-gallery + .segment-detail-intro {
    margin-top: -70px;
}

@media screen and (max-width: 700px) {
    .segment-gallery + .segment-detail-intro {
        margin-top: -50px;
    }
}

@media screen and (max-width: 550px) {
    .segment-gallery + .segment-detail-intro {
        margin-top: -40px;
    }
}
