/*
/*
#E30020 - oranžová, hlavní barva
#163e92 - oranžová, ovládací prvky (tlačítka, textboxy, atd.)
#666666 - oranžová, štítek LastMinute (web_preload_zajezdy2.LastMinute)
#353736 - oranžová, štítek Doporučujeme (štítek s identem doporucujeme)
*/

/* =====================================
Template Name: TravelTrek
Author Name: iThemer
Author URI: http://ithemer.com/
Description: TravelTrek is a Travel Agency & Tour Booking HTML5 Template.
Version:	1.0
========================================*/
/*======================================
[ CSS Table of contents ]
01. Reset CSS
02. Header CSS
	+ Topbar
	+ Logo
	+ Widget
	+ Main Menu
	+ Header Style 2
	+ Header Style 3
03. Hero Area CSS
	+ Style One
	+ Style Two
04. About Us CSS
05. Popular Destination CSS
06. Popular Trips CSS
07. Top Destination CSS
08. Trip Single CSS
09. Call To Action CSS
	+ Style One
	+ Style Two
	+ Style Three
10. Testimonials CSS
	+ Style One
	+ Style Two
11. Services CSS
	+ Service Single
12. Blog CSS	
	+ Blog Archive
	+ Blog Sidebar
	+ Blog Single
13. Clients CSS
14. Why Choose CSS
15. Counter CSS
16. Video CSS
17. Sidebar CSS
18. Team CSS
19. Faq CSS
20. 404 CSS
21. Contact CSS
22. Footer CSS
	+ Footer Widget
	+ Copyright
	+ Social
	+ Footer Style2
========================================*/

/*======================================
 02. Header CSS
========================================*/
.site-header {
    position: relative;
    padding-bottom: 32px;
}
    /* Topbar */
    .site-header .topbar {
        background: #2F3339;
        padding: 15px 0;
    }

        .site-header .topbar p {
            color: #959595;
            font-weight: 600;
            font-size: 15px;
            float: left;
            /*text-transform: capitalize;*/
        }

    .site-header .social {
        float: right;
    }

        .site-header .social li:not(.d-my-none) {
            margin-right: 20px;
            display: inline-block;
        }

            .site-header .social li:last-child {
                margin-right: 0px;
            }

            .site-header .social li a {
                color: #E30020;
                font-weight: 600;
                font-size: 17px;
            }

    .site-header .middle-header {
        padding: 20px 0;
    }
    /* Logo */
    .site-header .logo {
        float: left;
    }
    /* Header Widget */
    .site-header .header-widget {
        float: right;
        margin-top: 12px;
    }

    .site-header .single-widget {
        float: left;
        position: relative;
        padding-left: 50px;
        margin-right: 50px;
    }

        .site-header .single-widget:last-child {
            margin-right: 0px;
        }

        .site-header .single-widget img {
            position: absolute;
            left: 0;
            top: 0;
        }

        .site-header .single-widget h4 {
            font-size: 15px;
        }

        .site-header .single-widget p {
            /*text-transform:capitalize;*/
            font-weight: 500;
        }

    .site-header .header-bottom {
        position: absolute;
        width: 100%;
        z-index: 333;
        bottom: -32px;
    }
    /* Main Menu */
    .site-header .main-menu {
        background: #E30020;
        z-index: 99;
        text-align: center;
    }

    .site-header .navigation {
        display: inline-block;
    }

    .site-header .nav li {
        position: relative;
        margin-right: 28px;
        padding-right: 28px;
        border-right: 1px solid rgba(255, 255, 255, 0.20);
    }

        .site-header .nav li:last-child {
            padding-right: 0px;
            margin-right: 0px;
            border: none;
        }

        .site-header .nav li a {
            color: #fff;
            font-size: 14px;
            text-transform: uppercase;
            display: inline-block;
            font-weight: 700;
            position: relative;
            padding: 20px 0;
        }

            .site-header .nav li a::before {
                content: "";
                width: 6px;
                position: absolute;
                top: 8px;
                transform: translateY(-30px);
                height: 2px;
                background: #fff;
                -webkit-transition: all 0.4s ease;
                -moz-transition: all 0.4s ease;
                transition: all 0.4s ease;
                height: 6px;
                line-height: 10px;
                border-radius: 100%;
                left: 50%;
                margin-left: -3px;
                opacity: 0;
                visibility: hidden;
            }

        .site-header .nav li:hover a::before,
        .site-header .nav li.active a::before {
            transform: translateY(-0px);
            opacity: 1;
            visibility: visible;
        }

        .site-header .nav li a i {
            margin-left: 10px;
            font-size: 15px;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }

        .site-header .nav li:hover a i {
            transform: rotate(180deg);
        }
        /* Dropdown Menu */
        .site-header .nav li .dropdown {
            position: absolute;
            left: 0;
            width: 250px;
            background: #fff;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
            -webkit-transform: scale(0);
            -moz-transform: scale(0);
            -webkit-transform: translateY(50px);
            -moz-transform: translateY(50px);
            transform: translateY(50px);
            top: 56px;
            margin: 0;
            text-align: left;
            padding: 5px 15px;
        }

        .site-header .nav li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0px);
        }

        .site-header .nav li .dropdown li {
            float: none;
            border: none;
            margin: 0;
            padding: 0;
        }

            .site-header .nav li .dropdown li a {
                margin: 0;
                padding: 0;
                display: block;
                border: none;
                color: #555;
                font-weight: 400;
                /*text-transform: capitalize;*/
                border-bottom: 1px solid #eee;
                padding: 10px 0;
            }

                .site-header .nav li .dropdown li a:before {
                    display: none;
                }

                .site-header .nav li .dropdown li a:hover {
                    color: #E30020;
                }

            .site-header .nav li .dropdown li:last-child a {
                border: 0px;
            }

    /* Header Style 2 */
    .site-header.style2 {
        padding: 0;
    }

        .site-header.style2 .header-bottom {
            position: relative;
            width: 100%;
            bottom: 0;
            border-top: 1px solid #E5E5E5;
        }

        .site-header.style2 .main-menu {
            position: relative;
            background: transparent;
            padding: 0;
            text-align: left;
            display: inline-block;
        }

        .site-header.style2 .nav li {
            border-right: 0px;
            margin-right: 55px;
            padding: 0;
        }

            .site-header.style2 .nav li:last-child {
                margin: 0;
                padding: 0;
            }

            .site-header.style2 .nav li a {
                color: #424646;
                padding: 25px 0;
            }

                .site-header.style2 .nav li a::before {
                    content: "";
                    width: 0%;
                    height: 2px;
                    top: -1px;
                    left: 0;
                    transform: none;
                    background: #E30020;
                    border-radius: 0px;
                    margin-left: -3px;
                    opacity: 0;
                    visibility: hidden;
                }

            .site-header.style2 .nav li:hover a::before,
            .site-header.style2 .nav li.active a::before {
                width: 100%;
                opacity: 1;
                visibility: visible;
            }

            .site-header.style2 .nav li:hover a,
            .site-header.style2 .nav li.active a {
                color: #E30020;
            }

            .site-header.style2 .nav li .dropdown {
                top: 74px;
                border-top: 2px solid #E30020;
            }

                .site-header.style2 .nav li .dropdown li a {
                    color: #424646;
                }

                .site-header.style2 .nav li .dropdown li:hover a {
                    color: #E30020;
                }
        /* Search Form */
        .site-header.style2 .search-form {
            width: 200px;
            position: absolute;
            right: 0;
            top: 15px;
        }

        .site-header.style2 .form {
            width: 100%;
        }

            .site-header.style2 .form input {
                background: transparent;
                border: none;
                text-align: right;
                color: #737074;
                font-size: 16px;
                float: right;
                height: 42px;
                font-weight: 500;
                width: 100%;
                padding: 0 32px 0 10px;
                border: 1px solid transparent;
            }

            .site-header.style2 .form:hover input {
                border-color: #e7e7e7;
            }

            .site-header.style2 .form button {
                background: transparent;
                border: none;
                color: #9b999c;
                font-size: 15px;
                padding: 0;
                position: absolute;
                right: 10px;
                top: 13px;
            }

                .site-header.style2 .form button:hover {
                    color: #E30020;
                }
    /* Header Style 3 */
    .site-header.style3 {
        position: relative;
        padding: 0;
    }

        .site-header.style3 .logo {
            display: inline-block;
            margin-right: 55px;
        }

        .site-header.style3 .contact {
            color: #fff;
            font-weight: 700;
            display: inline-block;
            margin-top: 28px;
        }

            .site-header.style3 .contact img {
                margin-right: 10px;
            }

        .site-header.style3 .main-menu {
            position: relative;
            background: transparent;
            padding: 0;
            float: right;
            margin-right: 155px;
        }

        .site-header.style3 .header-bottom {
            position: absolute;
            width: 100%;
            top: 0;
            width: 100%;
            z-index: 8;
            bottom: auto;
            padding: 10px 10px;
        }

        .site-header.style3 .header-main {
        }

        .site-header.style3 .nav li {
            margin-right: 30px;
            border: none;
            padding: 0;
        }

            .site-header.style3 .nav li a {
                border-right: 0px;
                color: #fff;
                padding: 25px 0;
                /*text-transform: capitalize;*/
            }

                .site-header.style3 .nav li a::before {
                    top: 5px;
                }

            .site-header.style3 .nav li .dropdown {
                top: 65px;
            }

        .site-header.style3 .button {
            position: absolute;
            right: 0;
            top: 18px;
        }

            .site-header.style3 .button .btn {
                padding: 11px 36px;
                background: #fff;
                color: #424646;
                border: none;
            }

                .site-header.style3 .button .btn:hover {
                    color: #fff;
                }

                .site-header.style3 .button .btn:before {
                    background: #E30020;
                }
    /* Header Sticky */
    .site-header.sticky .header-bottom {
        /*background: #E30020;*/
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        bottom: initial;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
        animation: fadeInDown 0.5s both 0.5s;
    }

    .site-header.style2.sticky .header-bottom {
        background: #fff;
        -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
        -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    }

    .site-header.style3.sticky .button .btn {
        border: 1px solid transparent;
    }

        .site-header.style3.sticky .button .btn:hover {
            border-color: #fff;
        }
/*======================================
   End Header CSS
========================================*/

/*======================================
   03. Hero Area CSS
========================================*/
.hero-area {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 400px;
}

    .hero-area .hero-inner {
        text-align: center;
        margin: 152px 0 0px;
    }

    .hero-area .welcome-text p {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .hero-area .welcome-text h1 {
        font-size: 60px;
        color: #fff;
        /*text-transform: capitalize;*/
    }
    /* Search Form */
    .hero-area .trip-search {
        background: rgba(255, 255, 255, 0.58);
        padding: 10px;
        border: 1px solid #A7CCE8;
        border-radius: 5px;
        text-align: left;
        margin-top: 15px;
        cursor: default;
    }

        .hero-area .trip-search .form {
            line-height: 0px;
        }

    .hero-area .form-group {
        width: 230px;
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 0px;
    }

        .hero-area .form-group:last-child {
            margin-right: 0px;
        }

        .hero-area .form-group .nice-select {
            margin: 0;
            height: 50px;
            line-height: 50px;
            padding: 0 15px;
            border-radius: 5px;
            border: none;
            box-shadow: none;
            color: #757575;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 14px;
        }

            .hero-area .form-group .nice-select:hover {
                color: #163e92;
            }

            .hero-area .form-group .nice-select::after {
                right: 20px;
                color: #757575;
            }

            .hero-area .form-group .nice-select img {
                margin-right: 10px;
            }

        .hero-area .form-group .list li {
            color: #757575;
        }

            .hero-area .form-group .list li.selected {
                color: #757575;
                font-weight: 400;
            }

            .hero-area .form-group .list li:hover {
                color: #fff;
                background: #163e92;
            }

        .hero-area .form-group.duration {
            width: 180px;
        }

        .hero-area .form-group.button {
            width: 138px;
            position: relative;
            height: 50px;
        }

        .hero-area .form-group .btn {
            display: block;
            width: 100%;
            background: #163e92;
            color: #fff;
            text-transform: uppercase;
            font-weight: 600;
            position: absolute;
            top: 0;
            height: 50px;
            line-height: 50px;
            padding: 0;
            font-size: 14px;
            border: none;
            border-radius: 3px;
        }

            .hero-area .form-group .btn:hover {
                color: #163e92;
            }
    /* Hero Style 2 */
    .hero-area.style2 {
        margin-bottom: 98px;
        background: none;
    }

        .hero-area.style2,
        .hero-area.style2 .single-slider {
            height: 650px;
        }

            .hero-area.style2 .single-slider {
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                width: 100%;
            }

            .hero-area.style2 .welcome-text .button {
                margin-top: 35px;
            }

            .hero-area.style2 .welcome-text .btn {
                border: 2px solid #fff;
                border-radius: 50px;
                margin-right: 15px;
                background: transparent;
                width: 176px;
                color: #fff;
                padding: 14px 30px;
            }

                .hero-area.style2 .welcome-text .btn:last-child {
                    margin: 0;
                }

                .hero-area.style2 .welcome-text .btn:before {
                    border-radius: 50px;
                }

                .hero-area.style2 .welcome-text .btn:hover {
                    color: #163e92;
                }

                .hero-area.style2 .welcome-text .btn:last-child {
                    margin-right: 0px;
                }

                .hero-area.style2 .welcome-text .btn.primary {
                    color: #FF6000;
                    background: #fff;
                }

                    .hero-area.style2 .welcome-text .btn.primary:hover {
                        background: transparent;
                        color: #fff;
                    }

                    .hero-area.style2 .welcome-text .btn.primary:before {
                        transform: scaleX(1);
                    }

                    .hero-area.style2 .welcome-text .btn.primary:hover:before {
                        transform: scaleX(0);
                    }
            /* Owl Nav */
            .hero-area.style2 .owl-controls {
            }

                .hero-area.style2 .owl-controls .owl-nav {
                }

                    .hero-area.style2 .owl-controls .owl-nav div {
                        position: absolute;
                        top: 50%;
                        width: 40px;
                        height: 60px;
                        line-height: 60px;
                        margin-top: -30px;
                        padding: 0;
                        font-size: 25px;
                        border-radius:;
                        background: transparent;
                        border: 1px solid #fff;
                        -webkit-transition: all 0.4s ease;
                        -moz-transition: all 0.4s ease;
                        transition: all 0.4s ease;
                        margin: 0;
                    }

                        .hero-area.style2 .owl-controls .owl-nav div:hover {
                            background: #E30020;
                            border-color: transparent;
                            color: #fff;
                        }

                        .hero-area.style2 .owl-controls .owl-nav div.owl-prev {
                            left: 0;
                        }

                        .hero-area.style2 .owl-controls .owl-nav div.owl-next {
                            right: 0;
                        }
    /* Slider Animation */
    .hero-area .owl-item.active .welcome-text p {
        animation: fadeInDown 0.8s both 1s;
    }

    .hero-area .owl-item.active .welcome-text h1 {
        animation: fadeInLeft 0.8s both 1.4s;
    }

    .hero-area .owl-item.active .welcome-text .btn {
        animation: fadeInRight 0.8s both 1.6s;
    }

    /* Trip Search */
    .hero-area.style2 .trip-search {
        background: #fff;
        padding: 30px;
        border: 1px solid #E5E5E5;
        position: absolute;
        bottom: -98px;
        z-index: 333;
    }

        .hero-area.style2 .trip-search h2 {
            font-size: 22px;
            font-weight: 700;
            position: relative;
            margin-bottom: 34px;
            z-index: 3;
            /*text-transform: capitalize;*/
        }

            .hero-area.style2 .trip-search h2 span {
                background: #fff;
                padding-right: 60px;
            }

            .hero-area.style2 .trip-search h2::before {
                position: absolute;
                content: "";
                background: #E5E5E5;
                width: 100%;
                height: 2px;
                top: 15px;
                left: 0;
                z-index: -1;
            }

    .hero-area.style2 .form-group {
        width: 231px;
    }

        .hero-area.style2 .form-group.duration {
            width: 180px;
        }

        .hero-area.style2 .form-group.button {
            width: 150px;
            height: 100%;
        }

    .hero-area.style2 .trip-search .form-group h4 {
        color: #424646;
        margin-bottom: 10px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .hero-area.style2 .form-group .nice-select {
        background: #F8F8F8;
        border: 1px solid #E7E7E7;
    }

    .hero-area.style2 .form-group.range {
        position: relative;
    }

    .hero-area.style2 .price-filter {
        position: relative;
    }

    .hero-area.style2 .price-filter-inner {
        position: absolute;
        left: 0;
        margin: 10px 5px 0;
        width: 100%;
    }

    .hero-area.style2 #slider-range {
        box-shadow: none;
        border: none;
        height: 3px;
        background: #f4f4f4;
    }

        .hero-area.style2 #slider-range .ui-slider-range {
            box-shadow: none;
            background: #000;
            border-radius: 0px;
            border: none;
        }

        .hero-area.style2 #slider-range
        .ui-slider-handle.ui-state-default.ui-corner-all {
            width: 10px;
            height: 10px;
            line-height: 10px;
            background: #000;
            border: none;
            top: -4px;
        }

    .hero-area.style2 .label-input input {
        border: none;
        margin: 0;
        padding: 5px 0 0;
        font-weight: 600;
        font-size: 12px;
        color: #757575;
    }

    .hero-area.style2 .form-group .btn {
        top: 14px;
        border: 1px solid transparent;
    }

        .hero-area.style2 .form-group .btn:hover {
            border-color: #e7e7e7;
            background: transparent;
        }
    /* Hero Style 3 */
    .hero-area.style3 {
        background: transparent;
    }

        .hero-area.style3 .hero-inner {
            text-align: left;
        }

        .hero-area.style3 .hero-single {
            height: 700px;
        }

        .hero-area.style3 .welcome-text {
        }

            .hero-area.style3 .welcome-text h1 {
                font-size: 48px;
                margin-bottom: 45px;
            }

                .hero-area.style3 .welcome-text h1 span {
                    font-weight: 400;
                }

            .hero-area.style3 .welcome-text p {
                font-size: 16px;
                font-weight: 600;
                margin: 0;
                margin: 0 203px 0 0;
            }

        .hero-area.style3 .button {
            margin-top: 45px;
        }

            .hero-area.style3 .button .btn {
                color: #fff;
                padding: 16px 48px;
                font-size: 14px;
            }

                .hero-area.style3 .button .btn:hover {
                    color: #163e92
                }
/*======================================
   End Hero Area CSS
========================================*/

/*======================================
   04. About Us CSS
========================================*/
.about-us .about-left img {
    width: 100%;
}

.about-us .about-right {
    padding: 100px 0 100px 30px;
}

.about-us .title-line {
    margin-bottom: 50px;
}

    .about-us .title-line h2 span {
        display: block;
    }

.about-us .about-main p {
    font-size: 16px;
    font-weight: 400;
}

.about-us .skill-main {
    margin-top: 50px;
}

.about-us .single-skill .circle {
    position: relative;
    float: left;
    margin-right: 20px;
}

    .about-us .single-skill .circle strong {
        position: absolute;
        font-size: 20px;
        font-weight: 700;
        color: #757575;
        left: 50%;
        margin-left: -20px;
        top: 50%;
        margin-top: -20px;
    }

.about-us .single-skill h4 {
    font-size: 18px;
    padding-top: 38px;
    /*text-transform: capitalize;*/
}

    .about-us .single-skill h4 span {
        display: block;
    }
/*======================================
   End About Us CSS
========================================*/

/*======================================
   05. Popular Destination CSS
========================================*/
.p-destination {
    text-align: center;
    padding: 0 0 120px;
}

    .p-destination .title-line {
        margin-bottom: 40px;
    }

    .p-destination .single-destination {
        position: relative;
        margin-top: 30px;
        overflow: hidden;
    }

        .p-destination .single-destination::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.7;
            background: #000;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
            content: "";
            z-index: 3;
        }

        .p-destination .single-destination:hover:before {
            opacity: 0.6;
            visibility: visible;
        }

        .p-destination .single-destination img {
            width: 100%;
        }

        .p-destination .single-destination:hover img {
            -webkit-transform: scale(1.5);
            -moz-transform: scale(1.5);
            transform: scale(1.5);
        }

    .p-destination .hover {
        position: absolute;
        top: 50%;
        width: 100%;
        color: #fff;
        font-size: 24px;
        text-transform: uppercase;
        margin-top: -38px;
        z-index: 4;
    }

        .p-destination .hover .price {
            font-size: 18px;
            color: #fff;
            font-weight: 700;
            opacity: 0;
            visibility: hidden;
            position: relative;
            -webkit-transform: translateY(-30px);
            -moz-transform: translateY(-30px);
            transform: translateY(-30px);
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }

    .p-destination .single-destination:hover .price {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    .p-destination .hover .price span {
        color: #E30020;
    }

    .p-destination .hover .name {
        color: #fff;
        font-size: 24px;
    }

    .p-destination .single-destination:hover .name {
        color: #E30020;
    }

    .p-destination .hover .location {
        font-size: 15px;
        color: #fff;
        opacity: 0;
        visibility: hidden;
        position: relative;
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        transform: translateY(30px);
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .p-destination .single-destination:hover .location {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }
/*======================================
   End Popular Destination CSS
========================================*/

/*======================================
  06. Popular Trips CSS
========================================*/
.popular-trips {
    background-image: url('http://via.placeholder.com/1600x1000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .popular-trips .title-line p {
        color: #fff;
    }

    .popular-trips .title-line h2 {
        color: #fff;
    }

        .popular-trips .title-line h2 span {
            display: block;
        }

    .popular-trips .title-line .text {
        font-size: 16px;
        margin-top: 30px;
    }

    .popular-trips .trips-main {
        background: #fff;
        margin-top: 30px;
        padding: 25px 30px;
    }

    .popular-trips .single-slider {
        position: relative;
        border-radius: 3px;
        border: 1px solid #e7e7e7;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .popular-trips .single-slider img {
            width: 100%;
        }

        .popular-trips .single-slider:hover {
            -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
            -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
            position: relative;
            border-bottom-color: #E30020;
        }

    .popular-trips .trip-offer {
        position: absolute;
        top: 0;
        z-index: 8;
        background: #E30020;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        padding: 8px 10px;
        text-transform: uppercase;
        top: 15px;
        overflow: visible;
        left: 8px;
    }

        .popular-trips .trip-offer::before {
            position: absolute;
            content: "";
            left: -18px;
            border-bottom: 10px solid transparent;
            border-top: 10px solid transparent;
            border-left: 10px solid transparent;
            border-right: 10px solid #E30020;
        }

    .popular-trips .trip-head img {
        width: 100%;
    }

    .popular-trips .trip-details {
        padding: 20px;
    }

        .popular-trips .trip-details .left {
            float: left;
            width: 65%;
        }

            .popular-trips .trip-details .left h4 {
                font-size: 18px;
                /*text-transform:capitalize;*/
            }

                .popular-trips .trip-details .left h4 a {
                    color: #424646;
                }

                .popular-trips .trip-details .left h4:hover a {
                    color: #E30020;
                }

            .popular-trips .trip-details .left p {
                margin: 20px 0;
                font-weight: 500;
            }

                .popular-trips .trip-details .left p i {
                    margin-right: 8px;
                    color: #E30020;
                }

        .popular-trips .trip-details .right {
            float: left;
            width: 35%;
            text-align: right;
        }

            .popular-trips .trip-details .right p {
                font-weight: 500;
                font-size: 16px;
                color: #b4b4b4;
                -webkit-transition: all 0.4s ease;
                -moz-transition: all 0.4s ease;
                transition: all 0.4s ease;
            }

    .popular-trips .single-slider:hover .right p {
        color: #FF7852;
        transform: scale(1.1);
    }

    .popular-trips .trip-details .right span {
        display: block;
        font-size: 22px;
        font-weight: 700;
        color: #E30020;
    }

    .popular-trips .trip-details .btn {
        color: #fff;
        border: 1px solid transparent;
    }

        .popular-trips .trip-details .btn:hover {
            border-color: #e7e7e7;
            color: #163e92;
        }
    /* Slider Button */
    .popular-trips .owl-carousel .owl-nav div {
        position: absolute;
        top: 50%;
        width: 44px;
        height: 44px;
        line-height: 44px;
        padding: 0;
        font-size: 20px;
        color: #fff;
        background: rgba(255, 102, 0, 0.58);
        border-radius: 0px;
        margin-top: -20px;
        margin: -22px 0 0;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .popular-trips .owl-carousel .owl-nav div:hover {
            background: #E30020
        }

        .popular-trips .owl-carousel .owl-nav div.owl-prev {
            left: -52px;
        }

        .popular-trips .owl-carousel .owl-nav div.owl-next {
            right: -52px;
        }
    /* Popular Trips Style 2 */
    .popular-trips.style2 {
        background: #fff;
    }

        .popular-trips.style2 .trips-main {
            padding: 0;
            border-bottom: 0px;
        }

        .popular-trips.style2 .title-line p {
            color: #494949;
        }

        .popular-trips.style2 .title-line h2 {
            color: #424646;
        }

            .popular-trips.style2 .title-line h2 span {
                display: initial;
            }

        .popular-trips.style2 .owl-carousel .owl-nav div.owl-prev {
            left: -22px;
        }

        .popular-trips.style2 .owl-carousel .owl-nav div.owl-next {
            right: -22px;
        }
/*======================================
   End Popular Trips CSS
========================================*/

/*======================================
   07. Top Destination CSS
========================================*/
.top-destination .title-line h2 span {
    /*display:block;*/
}
/* Destination Nav */
.top-destination .nav {
    margin: 40px 0 20px;
}

    .top-destination .nav li a {
        color: #42464D;
        background: #F0F3F6;
        padding: 16px 26px;
        border: 0px solid;
        border-radius: 0px;
        font-size: 14px;
        font-weight: 700;
        position: relative;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .top-destination .nav li a::before {
            position: absolute;
            top: 100%;
            left: 30%;
            content: "";
            border-top: 10px solid #E30020;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            margin-left: -10px;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .top-destination .nav li a:hover,
        .top-destination .nav li a.active {
            background: #E30020;
            color: #fff;
        }

            .top-destination .nav li a:hover::before,
            .top-destination .nav li a.active::before {
                left: 50%;
                opacity: 1;
                visibility: visible;
            }

        .top-destination .nav li a.active {
            color: #fff;
        }
/* Destination Tab */
.top-destination .single-package {
    position: relative;
    border: 1px solid #e7e7e7;
    margin-top: 30px;
}

.top-destination .single-package {
    position: relative;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .top-destination .single-package img {
        width: 100%;
    }

    .top-destination .single-package:hover {
        -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
        position: relative;
        border-bottom-color: #E30020;
    }

.top-destination .trip-offer {
    position: absolute;
    z-index: 8;
    background: #E30020;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 5px;
    text-transform: uppercase;
    top: 15px;
    overflow: visible;
    left: -12px;
}

.top-destination .trip-offer-0 {
}
.top-destination .trip-offer-1 {
    top: 65px;
}
.top-destination .trip-offer-2 {
    top: 115px;
}
.top-destination .trip-offer-3 {
    top: 165px;
}

.top-destination .trip-offer::before {
    position: absolute;
    content: "";
    left: 0px;
    border-top: 10px solid #752E15;
    border-left: 12px solid transparent;
    bottom: -10px;
}

.top-destination .trip-head img {
    width: 100%;
}

.top-destination .trip-details {
    padding: 20px;
}

    .top-destination .trip-details .left {
        float: left;
        width: 55%;
        position: relative;
    }

        .top-destination .trip-details .left h4 {
            font-size: 18px;
            /*text-transform:capitalize;*/
        }

            .top-destination .trip-details .left h4 a {
                color: #424646;
            }

            .top-destination .trip-details .left h4:hover a {
                color: #E30020;
            }

        .top-destination .trip-details .left p {
            margin: 20px 0;
            font-weight: 500;
        }

            .top-destination .trip-details .left p i {
                margin-right: 8px;
                color: #E30020;
            }

    .top-destination .trip-details i {
        margin-right: 8px;
        color: #E30020;
    }

    .top-destination .trip-details .right {
        float: left;
        width: 45%;
        text-align: right;
    }

        .top-destination .trip-details .right p {
            font-weight: 500;
            font-size: 16px;
            color: #b4b4b4;
        }

        .top-destination .trip-details .right span {
            display: block;
            font-size: 22px;
            font-weight: 700;
            color: #E30020;
        }

    .top-destination .trip-details .btn {
        color: #fff;
        border: 1px solid transparent;
    }

        .top-destination .trip-details .btn:hover {
            border-color: #e7e7e7;
            color: #FF7750;
        }
/*======================================
   End Top Destination CSS
========================================*/

/*======================================
  08. Trip Single CSS
========================================*/
.trip-single {
    padding: 70px 0 100px;
}

    .trip-single .trip-details {
        margin-top: 30px;
    }

    .trip-single .gallery-slider,
    .trip-single .single-slider,
    .trip-single .gallery-slider-dlazdice,
    .trip-single .single-slider-dlazdice {
        /*height: 450px;*/
    }

        .trip-single .single-slider img {
            width: 100%;
            height: 100%;
        }

    .trip-single .owl-controls {
    }

        .trip-single .owl-controls .owl-nav {
        }

            .trip-single .owl-controls .owl-nav div {
                position: absolute;
                top: 50%;
                background: transparent;
                font-size: 40px;
                margin: 0;
                margin-top: -30px;
                width: 40px;
                height: 40px;
                background: transparent;
                padding: 0;
                line-height: 60px;
                -webkit-transition: all 0.4s ease;
                -moz-transition: all 0.4s ease;
                transition: all 0.4s ease;
            }

                .trip-single .owl-controls .owl-nav div:hover {
                    background: #E30020;
                    height: 60px;
                }

                .trip-single .owl-controls .owl-nav div.owl-prev {
                    left: 0;
                }

                .trip-single .owl-controls .owl-nav div.owl-next {
                    right: 0;
                }

    .trip-single .trip-content {
        margin-top: 40px;
    }

    .trip-single .trip-head {
        /*margin-bottom:40px;*/
    }

        .trip-single .trip-head h2 {
            font-size: 40px;
            color: #42464d;
            /*margin-bottom:20px;
	padding-bottom:20px;*/
            position: relative;
            display: inline-block;
        }
        /*.trip-single .trip-head h2:before{
	position:absolute;
	left:0;
	width:46px;
	height:2px;
	background:#E30020;
	bottom:-1px;
	content:"";
}*/
        .trip-single .trip-head p {
            font-size: 20px;
            color: #000000;
            font-weight: 400;
        }

            .trip-single .trip-head p span {
                color: #ff7550;
                font-weight: 700;
            }

        .trip-single .trip-head .price {
            font-size: 32px;
        }

    .trip-single .trip-content p {
        font-size: 16px;
        font-weight: 400;
    }

.nice-tabs .trip-tab {
    margin-top: 0px;
}

.nice-tabs .trip-tab-inner {
    margin-top: 0px;
}

.nice-tabs .nav-tabs {
}

    .nice-tabs .nav-tabs li {
        margin-right: 5px;
    }

        .nice-tabs .nav-tabs li a {
            background: transparent;
            border-bottom: 4px solid transparent;
            border-top: none;
            border-right: none;
            border-left: none;
            color: #000000;
            text-transform: uppercase;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }

            .nice-tabs .nav-tabs li a.active, .nice-tabs .nav-tabs li a:hover {
                color: #163e92;
                border-bottom-color: #163e92;
            }

.nice-tabs .tab-content .tab-pane {
}

    .nice-tabs .tab-content .tab-pane p {
        margin-top: 20px;
        font-weight: 400;
        font-size: 16px;
    }
/*======================================
    End Trip Single CSS
========================================*/

/*======================================
   09. Call To Action CSS
========================================*/
.cta {
    background-image: url('http://via.placeholder.com/1600x1000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        position: absolute;
        left: 3%;
        top: -313px;
        content: "";
        width: 51%;
        height: 210%;
        background: rgba(255, 117, 80, 0.95);
        -webkit-transform: rotate(15deg);
        -moz-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    .cta .cta-text .title-line h2 {
        color: #fff;
    }

    .cta .cta-text .title-line span {
        display: block;
    }

    .cta .cta-text .title-line p {
        color: #fff;
    }

    .cta .cta-text .btn {
        color: #fff;
        font-size: 13px;
        border-radius: 50px;
        margin-top: 30px;
        text-transform: uppercase;
        border: 2px solid #fff;
        background: transparent;
        border-radius: 50px;
    }

        .cta .cta-text .btn:hover {
            border-color: transparent;
            color: #FF7650;
        }

        .cta .cta-text .btn:before {
            border-radius: 50px;
        }
    /* CTA Style 2 */
    .cta.style2 {
        background-image: url('images/cta-bg2.jpg');
    }

        .cta.style2:before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.4;
            background: #000;
            content: "";
            transform: none;
        }

        .cta.style2.overlay:before {
            display: block;
        }

        .cta.style2 .cta-text p {
            color: #fff;
            font-size: 16px;
            font-weight: 400;
        }

        .cta.style2 .cta-text .btn {
            margin-top: 50px;
            border: 2px solid #fff;
            border-radius: 50px;
        }
/* Style 3 */
.cta-style3 {
    position: relative;
    text-align: center;
    background-image: url('http://via.placeholder.com/1600x1000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

    .cta-style3::before {
        background: #E30020;
        opacity: 0.9;
        background-image: url('images/bg-pattern.png');
        background-repeat: repeat;
    }

    .cta-style3 .cta-text h2 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
    }

        .cta-style3 .cta-text h2 span {
            font-weight: 400;
        }

    .cta-style3 .cta-text p {
        font-size: 18px;
        color: #fff;
        margin-top: 15px;
    }

    .cta-style3 .button {
        margin-top: 30px;
    }

        .cta-style3 .button .btn {
            color: #fff;
            border: 2px solid #fff;
            border-radius: 50px;
            margin-right: 15px;
            background: transparent;
        }

            .cta-style3 .button .btn:last-child {
                margin: 0;
            }

            .cta-style3 .button .btn.primary {
                border-color: transparent;
                color: #FF6000;
                background: #fff;
            }

                .cta-style3 .button .btn.primary:hover {
                    background: transparent;
                    border-color: #fff;
                    color: #fff;
                }

                .cta-style3 .button .btn.primary:before {
                    transform: scaleX(1);
                }

                .cta-style3 .button .btn.primary:hover:before {
                    transform: scaleX(0);
                }

            .cta-style3 .button .btn:before {
                border-radius: 50px;
            }

            .cta-style3 .button .btn:hover {
                color: #163e92;
                border-color: transparent;
            }
/*======================================
   End Call To Action CSS
========================================*/

/*======================================
   10. Testimonials CSS
========================================*/
.testimonials .testimonial-main {
    margin-top: 30px;
}

.testimonials .testimonial-slider {
    position: relative;
}

    .testimonials .testimonial-slider:before {
        position: absolute;
        top: 0;
        content: "";
        background-image: url('images/quote-icon.png');
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
    }

.testimonials .single-slider {
    margin-top: 60px;
    padding: 0 40px 0 58px;
}

    .testimonials .single-slider h2 {
        font-size: 20px;
        text-transform: initial;
        margin-bottom: 35px;
    }

    .testimonials .single-slider p {
        font-size: 18px;
        font-style: italic;
        font-weight: 400;
    }

    .testimonials .single-slider span {
        margin-top: 25px;
        font-weight: 500;
        display: block;
        font-size: 16px;
        color: #424646;
    }
/* Slider Nav */
.testimonials .owl-carousel .owl-nav {
    position: absolute;
    right: -63px;
    top: 50%;
}

    .testimonials .owl-carousel .owl-nav div {
        width: 33px;
        height: 66px;
        line-height: 66px;
        padding: 0;
        font-size: 20px;
        margin: 0;
        border-radius: 0px;
        margin-top: -33px;
        background: #E30020;
        color: #fff;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .testimonials .owl-carousel .owl-nav div:hover {
            background: #2F3339;
        }
/* Testimonials Style 2 */
.testimonials.style2 .testimonial-slider-two {
    margin-top: 40px;
}

.testimonials.style2 .single-slider {
    padding: 5px;
    margin: 0;
}

.testimonials.style2 .t-content {
    padding: 60px 50px;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    position: relative;
    background: #fff;
}

    .testimonials.style2 .t-content img {
        position: absolute;
        left: 14px;
        width: auto;
        top: 18px;
    }

    .testimonials.style2 .t-content p {
        font-weight: 400;
        font-size: 16px;
        color: #343538;
    }

.testimonials.style2 .author {
    margin-top: 30px;
    overflow: hidden;
}

    .testimonials.style2 .author img {
        display: inline-block;
        width: 55px;
        height: 55px;
        border-radius: 100%;
        float: left;
        margin-right: 20px;
    }

    .testimonials.style2 .author h2 {
        font-weight: 600;
        font-size: 14px;
    }

        .testimonials.style2 .author h2 span {
            display: block;
            color: #9d9d9d;
            margin-top: 5px;
            font-weight: 400;
        }
/* Slider Dots */
.testimonials.style2 .owl-carousel .owl-dot {
    margin-right: 5px;
}

    .testimonials.style2 .owl-carousel .owl-dot span {
        width: 12px;
        height: 12px;
        background: #DEDEDE;
        margin: 0;
        border: 2px solid transparent;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .testimonials.style2 .owl-carousel .owl-dot.active span {
        border-color: #E30020;
        background: transparent;
    }
/*======================================
  End Testimonials CSS
========================================*/

/*======================================
  11. Services CSS
========================================*/
.services {
    position: relative;
    overflow: hidden;
}

    .services .no-padding {
        padding: 0;
    }

    .services .service-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        background-image: url('http://via.placeholder.com/1000x700');
        background-repeat: no-repeat;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .services .service-img:before {
            opacity: 0;
            visibility: hidden;
        }

        .services .service-img:hover:before {
            opacity: 0.4;
            visibility: visible;
        }

    .services .video-play {
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -40px 0 0 -40px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }

    .services .service-img:hover .video-play {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .services .video-play .btn {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 80px;
        background: #fff;
        font-size: 30px;
        padding: 0;
        color: #163e92;
        border-radius: 100%;
        text-align: center;
        padding-left: 6px;
        transition: all 0.4s ease;
    }

        .services .video-play .btn:hover {
            background: #163e92;
            color: #fff;
        }

        .services .video-play .btn:before {
            display: none;
        }

    .services .single-service {
        text-align: center;
        padding: 40px 20px;
        border: 1px solid #F2F2F2;
        margin: 0px 3px 5px 2px;
    }

        .services .single-service img {
            margin-bottom: 25px;
        }

        .services .single-service h2 {
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
            font-weight: 600;
        }

            .services .single-service h2:before {
                position: absolute;
                left: 50%;
                bottom: -1px;
                width: 80px;
                height: 2px;
                margin-left: -40px;
                content: "";
                background: #F2F2F2;
                -webkit-transition: all 0.4s ease;
                -moz-transition: all 0.4s ease;
                transition: all 0.4s ease;
            }

        .services .single-service:hover h2:before {
            background: #E30020;
        }

        .services .single-service p {
            font-weight: 400;
            line-height: 24px;
        }

            .services .single-service p:last-child {
                margin: 0;
            }

        .services .single-service .btn {
            margin-top: 25px;
            color: #757575;
            padding: 0;
            background: transparent;
        }

            .services .single-service .btn:hover {
                color: #163e92;
            }

    /* Service Single */
    .services.archive.single .single-service {
        text-align: left;
        margin: 30px 0 0;
    }

    .services.archive.single .single-service {
        padding: 0;
        border: 0px solid;
    }

    .services.single .single-service h2 {
        font-size: 32px;
        font-weight: 700;
    }

        .services.single .single-service h2:before {
            left: 0;
            margin-left: 0px
        }

    .services.single .content p {
        margin-bottom: 30px;
    }

    .services.single .service-list {
        margin-bottom: 30px;
    }

        .services.single .service-list li {
            font-weight: 500;
            position: relative;
            padding-left: 25px;
            padding-bottom: 10px;
        }

            .services.single .service-list li:last-child {
                padding-bottom: 0px;
            }

            .services.single .service-list li i {
                color: #E30020;
                width: 18px;
                height: 18px;
                line-height: 18px;
                border: 1px solid;
                position: absolute;
                left: 0;
                top: 2px;
                text-align: center;
            }
/*======================================
   End Services CSS
========================================*/

/*======================================
   12. Blog CSS
========================================*/
.blog-area .single-blog {
    margin-top: 30px;
    position: relative;
    border: 1px solid #F2F2F2;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .blog-area .single-blog:hover {
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    }

.blog-area .blog-head img {
    width: 100%;
}

.blog-area .blog-content {
    padding: 30px 20px;
}

    .blog-area .blog-content span {
        font-weight: 500;
        color: #FF7C25;
        margin-bottom: 10px;
        display: inline-block;
    }

    .blog-area .blog-content h4 {
        font-size: 18px;
        line-height: 28px;
    }

        .blog-area .blog-content h4 a {
            text-transform: initial;
            color: #E30020;
        }

        .blog-area .blog-content h4:hover a {
            color: #163e92;
        }

    .blog-area .blog-content .btn:hover {
        color: #163e92;
    }

    .blog-area .blog-content .btn {
        margin-top: 25px;
        background: transparent;
        padding: 0;
        color: #6E6E6E;
        border-bottom: 2px solid;
        padding-bottom: 5px;
        border-radius: 0px;
    }
/* Blog Style Two */
.blog-area.style2 .single-blog {
    border: 1px solid #e5e5e5;
}

    .blog-area.style2 .single-blog::before {
        background: #E30020;
        opacity: 0;
        visibility: hidden;
    }

    .blog-area.style2 .single-blog img {
        opacity: 0;
        visibility: hidden;
    }

    .blog-area.style2 .single-blog.active img {
        opacity: 1;
        visibility: visible;
    }

.blog-area.style2 .blog-content {
    position: absolute;
    top: 0;
    padding: 50px;
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
}

    .blog-area.style2 .blog-content span {
        font-weight: 400;
        color: #555555;
        font-size: 16px;
        margin-bottom: 30px;
        display: inline-block;
        /*text-transform: capitalize;*/
    }

    .blog-area.style2 .blog-content h4 {
        font-size: 32px;
        font-weight: 400;
        line-height: 38px;
    }

    .blog-area.style2 .blog-content p {
        padding-top: 160px;
        color: #555555;
        display: block;
    }

        .blog-area.style2 .blog-content p a {
            color: #757575;
        }

.blog-area.style2 .single-blog.active {
}

    .blog-area.style2 .single-blog.active:before {
        opacity: 0.7;
        visibility: visible;
    }

    .blog-area.style2 .single-blog.active .blog-content span,
    .blog-area.style2 .single-blog.active .blog-content h4 a,
    .blog-area.style2 .single-blog.active .blog-content p,
    .blog-area.style2 .single-blog.active .blog-content p a {
        color: #fff;
    }

/* Blog Archive */
.blog-area.archive {
    padding: 90px 0 120px;
}

    .blog-area.archive .blog-content .btn {
        background: #163e92;
        padding: 12px 25px;
        color: #fff;
        border: none;
        border-radius: 0px;
        border: 1px solid transparent;
    }

        .blog-area.archive .blog-content .btn:before {
            border-radius: 0px;
        }

        .blog-area.archive .blog-content .btn:hover {
            border-color: #e5e5e5;
            color: #163e92;
        }

    .blog-area.archive .blog-content span {
        color: #6e6e6e;
        font-weight: 400;
    }

    .blog-area.archive .blog-content h4 {
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    .blog-area.archive .blog-content .meta {
        font-weight: 500;
    }

    .blog-area.archive.classic {
        padding: 50px 0 100px;
    }

        .blog-area.archive.classic .single-blog,
        .blog-area.archive.classic .sidebar-main {
            margin-top: 50px;
        }

        .blog-area.archive.classic .blog-content {
            border: none;
            padding: 0;
            margin-top: 50px;
        }

            .blog-area.archive.classic .blog-content h4 {
                font-size: 32px;
                line-height: 40px;
                margin-bottom: 30px;
                padding-bottom: 30px;
                position: relative;
            }

                .blog-area.archive.classic .blog-content h4:before {
                    position: absolute;
                    left: 0;
                    width: 48px;
                    height: 2px;
                    background: #E30020;
                    content: "";
                    bottom: -1px;
                }

            .blog-area.archive.classic .blog-content .meta {
                font-weight: 600;
            }

        .blog-area.archive.classic .single-blog {
            border: none;
            box-shadow: none;
        }
/* Pagination */
.pagination {
    margin-top: 20px;
}

    .pagination li {
        display: inline-block;
        margin-right: 10px;
    }

        .pagination li a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            background: #EDEDED;
            display: block;
            text-align: center;
            color: #424646;
            font-weight: 700;
            border-radius: 3px;
            font-size: 16px;
        }

        .pagination li.active a,
        .pagination li:hover a {
            background: #163e92;
            color: #fff;
        }

        .pagination li.next {
        }

            .pagination li.next a {
                width: auto;
                height: auto;
                padding: 0px 22px;
            }

/* Blog Single */
.blog-area.archive.single .blog-content p {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 16px;
}

.blog-area.archive.single blockquote {
    background: #E30020;
    color: #fff;
    font-size: 16px;
    padding: 20px;
    margin: 0 0 30px;
    font-weight: 500;
    font-style: italic;
	opacity: 50%;
}

.blog-area.archive.single .content-bottom {
    overflow: hidden;
    border-top: 1px solid #E5E5E5;
    padding-top: 20px;
}

.blog-area.archive.single .tags {
    float: left;
}

    .blog-area.archive.single .tags li {
        display: inline-block;
        font-weight: 600;
    }

        .blog-area.archive.single .tags li.tag-title {
            margin-right: 10px;
        }

        .blog-area.archive.single .tags li a {
            color: #555;
        }

        .blog-area.archive.single .tags li:hover a {
            color: #163e92;
        }

.blog-area.archive.single .social {
    float: right;
}

    .blog-area.archive.single .social li {
        display: inline-block;
        margin-right: 5px;
    }

        .blog-area.archive.single .social li a {
            width: 33px;
            height: 33px;
            line-height: 33px;
            border-radius: 100%;
            display: block;
            background: #163e92;
            text-align: center;
            color: #fff;
        }

        .blog-area.archive.single .social li:hover a {
            background: #2F3339;
        }
/* Author Detailes */
.blog-area.archive.single .author-details {
    margin: 60px 0;
}

.blog-area.archive.single .author-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-area.archive.single .author-content p {
}

.blog-area.archive.single .post-link {
    margin-top: 20px;
    display: block;
    color: #E30020;
}

    .blog-area.archive.single .post-link i {
        opacity: 0;
        visibility: hidden;
    }

    .blog-area.archive.single .post-link:hover i {
        margin-right: 5px;
        opacity: 1;
        visibility: visible;
    }

.blog-area.archive.single .author-content .post-link:hover {
    padding-left: 5px;
    color: #424646;
}
/* Blog Comments */
.blog-area.single .blog-comments {
    margin-top: 30px;
    background: #fff;
}

    .blog-area.single .blog-comments h2 {
        text-align: left;
        /*text-transform: capitalize;*/
        font-size: 25px;
    }

.blog-area.single .single-comments {
    overflow: hidden;
    border-top: 1px solid #e2e2e2;
    padding-top: 25px;
    margin-bottom: 25px;
    margin-top: 25px;
}

    .blog-area.single .single-comments:last-child {
        margin-bottom: 0px;
    }

    .blog-area.single .single-comments .main {
        overflow: hidden;
    }

    .blog-area.single .single-comments .head {
        float: left;
        margin-right: 20px;
        text-align: center;
        width: 12%;
    }

        .blog-area.single .single-comments .head img {
            width: 80px;
            height: 80px;
            border-radius: 100%;
        }

    .blog-area.single .single-comments .body {
        float: left;
        width: 85%;
    }

    .blog-area.single .single-comments .comment-list {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #e2e2e2;
        overflow: hidden;
        margin-left: 100px;
    }

        .blog-area.single .single-comments .comment-list .body {
            width: 78%;
        }

    .blog-area.single .single-comments h4 {
        font-size: 18px;
        text-align: left;
        position: relative;
        margin-bottom: 20px;
    }

    .blog-area.single .single-comments .meta {
        font-size: 15px;
        color: #666;
        font-weight: 400;
        margin-top: 10px;
        display: block;
    }

    .blog-area.single .single-comments p {
        font-size: 15px;
        line-height: 24px;
        font-weight: 400;
    }

    .blog-area.single .single-comments a {
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 500;
        margin-left: 5px;
        position: absolute;
        top: 0;
        right: 0;
        background: #F4F4F4;
        padding: 8px 12px;
    }

        .blog-area.single .single-comments a:hover {
            background: #163e92;
            color: #fff;
        }

        .blog-area.single .single-comments a i {
            margin-right: 5px;
        }

/* Comments Form */
.blog-area.single .comments-form {
    background: #fff;
    margin-top: 60px;
}

    .blog-area.single .comments-form h2 {
        text-align: left;
        /*text-transform: capitalize;*/
        font-size: 25px;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #E2E2E2;
    }

.blog-area.single .form {
    margin-top: 30px;
}

.blog-area.single .form-group {
    position: relative;
    display: block;
    margin: 0 0 5px;
}

    .blog-area.single .form-group i {
        position: absolute;
        font-size: 16px;
        padding: 15px 12px;
    }

    .blog-area.single .form-group input {
        width: 100%;
        height: 50px;
        border: 1px solid #EAEAEA;
        padding-left: 10px;
        border-radius: 5px;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
        font-weight: 400;
        border-radius: 0px;
        padding-left: 32px;
        font-size: 15px;
        padding-left: 16px;
    }

    .blog-area.single .form-group textarea {
        border: 1px solid #ddd;
        padding: 10px;
        width: 100%;
        padding-left: 10px;
        resize: none;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
        box-shadow: none;
        border-radius: 0px;
        padding-left: 32px;
        border: 1px solid #EAEAEA;
        padding: 15px;
        border-radius: 3px;
    }

        .blog-area.single .form-group input:hover,
        .blog-area.single .form-group textarea:hover {
            background: #fff;
            border-color: #E30020;
        }

        .blog-area.single .form-group input:hover,
        .blog-area.single .form-group input:focus,
        .blog-area.single .form-group textarea:hover {
            outline: none;
        }

    .blog-area.single .form-group .button {
        padding: 18px 45px;
        font-size: 14px;
        text-transform: uppercase;
        border: 0px solid;
        color: #fff;
        border-radius: 5px;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
        border-radius: 3px;
        background: #163e92;
    }

        .blog-area.single .form-group .button:hover {
            background: #353535;
        }

        .blog-area.single .form-group .button i {
            position: relative;
            display: inline-block;
            color: #fff;
            margin-right: 10px;
            padding: 0px;
        }
/*======================================
	End Blog CSS
========================================*/

/*======================================
   13. Clients CSS
========================================*/
.clients {
    border-top: 1px solid #e5e5e5;
    padding: 30px 0;
}

    .clients .single-clients {
        border: 1px solid transparent;
        padding: 20px;
        text-align: center;
    }

        .clients .single-clients img {
            width: auto;
            opacity: 0.7;
            display: inline-block;
        }

        .clients .single-clients:hover img {
            opacity: 1;
        }
/*======================================
   End Clients CSS
========================================*/

/*======================================
   14. Why Choose CSS
========================================*/
.why-choose .title-line {
    margin-bottom: 50px;
}

.why-choose .choose-single {
    text-align: center;
    margin-top: 30px;
}

    .why-choose .choose-single img {
        margin-bottom: 30px;
    }

    .why-choose .choose-single h2 {
        font-size: 25px;
        /*text-transform: capitalize;*/
        font-weight: 600;
        margin-bottom: 18px;
        padding-bottom: 18px;
        position: relative;
    }

        .why-choose .choose-single h2::before {
            width: 80px;
            height: 2px;
            background: #F2F2F2;
            left: 50%;
            margin-left: -40px;
            content: "";
            bottom: -1px;
            position: absolute;
        }

    .why-choose .choose-single p {
        padding: 0 25px;
    }

    .why-choose .choose-single .btn {
        color: #757575;
        margin-top: 30px;
        text-transform: uppercase;
        background: transparent;
        padding: 0;
    }

        .why-choose .choose-single .btn:hover {
            color: #163e92;
        }
/*======================================
   End Why Choose CSS
========================================*/


/*======================================
   15. Counter CSS
========================================*/
.counter {
    background-image: url('http://via.placeholder.com/1600x1000');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0 120px;
}

    .counter.overlay:before {
        background: #E30020;
        opacity: 0.8;
    }

    .counter .single-count {
        text-align: center;
        padding: 30px;
        border-right: 1px solid #F7E1D0;
        margin-top: 30px;
    }

    .counter .col-lg-4:last-child .single-count {
        border-right: 0px solid;
        ;
    }

    .counter .single-count h2 {
        color: #fff;
        font-weight: 500;
        font-size: 20px;
    }

        .counter .single-count h2 span {
            display: block;
            margin-bottom: 30px;
            font-size: 60px;
            font-weight: 700;
        }

    .counter .single-count p {
        margin-top: 30px;
        font-size: 16px;
        font-weight: 400;
        color: #fff;
    }
/*======================================
  End Counter CSS
========================================*/

/*======================================
  16. Video CSS
========================================*/
.video {
    text-align: center;
    background-image: url('http://via.placeholder.com/1600x1000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .video .title-line p {
        color: #fff;
    }

    .video .title-line h2 {
        color: #fff;
    }

        .video .title-line h2 span {
            display: block;
        }

    .video .video-button {
        margin-top: 50px;
    }

        .video .video-button .btn {
            width: 76px;
            height: 76px;
            line-height: 70px;
            font-size: 35px;
            color: #fff;
            border: 4px solid #fff;
            text-align: center;
            border-radius: 100%;
            background: transparent;
            padding: 0 0 0 7px;
        }

            .video .video-button .btn:hover {
                background: #163e92;
                transform: scale(0.9);
                border-color: transparent;
            }

            .video .video-button .btn:before {
                display: none;
            }

            .video .video-button .btn i {
            }
/*======================================
   End Video CSS
========================================*/

/*======================================
  17. Sidebar CSS
========================================*/
.sidebar-main {
    margin-top: 30px;
}

    .sidebar-main .single-widget {
        margin-bottom: 50px;
    }

        .sidebar-main .single-widget:last-child {
            margin-bottom: 0px;
        }

        .sidebar-main .single-widget h2 {
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

    /* Booking */
    .sidebar-main .booking {
    }

        .sidebar-main .booking .form {
            padding: 20px;
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
            -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
            -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
        }

        .sidebar-main .booking .form-group {
            position: relative;
        }

            .sidebar-main .booking .form-group h4 {
                font-size: 15px;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 16px;
            }

            .sidebar-main .booking .form-group input {
                width: 100%;
                border: 2px solid #E9E9E9;
                height: 42px;
                padding: 0 15px;
            }

                .sidebar-main .booking .form-group input:hover {
                    color: #E30020;
                    border-color: #E30020;
                }

            .sidebar-main .booking .form-group i {
                position: absolute;
                right: 0;
                top: 36px;
                right: 15px;
                margin-top: 12px;
            }

        .sidebar-main .booking .nice-select {
            width: 100%;
            border: 2px solid #E9E9E9;
            height: 42px;
            padding: 0 15px;
            line-height: 42px;
            margin: 0;
            box-shadow: none;
        }

            .sidebar-main .booking .nice-select:hover {
                border-color: #E30020;
            }

            .sidebar-main .booking .nice-select li:hover {
                background: #E30020;
            }

    .sidebar-main .form-group.button {
        margin-bottom: 0px;
    }

    .sidebar-main .booking .btn {
        padding: 14px 35px;
        border: 1px solid transparent;
    }

        .sidebar-main .booking .btn:hover {
            padding: 14px 35px;
            border-color: #163e92;
        }

    .sidebar-main .datepicker td, .datepicker th {
        text-align: center;
        width: 20px;
        height: 20px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        padding: 6px;
    }

    .sidebar-main .trip-detailss ul {
        background: #F3F3F3;
        padding: 20px;
    }

.trip-list {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    box-shadow: none;
}

.single-list {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
}

    .single-list:last-child {
        margin-bottom: 0px;
    }

    .single-list .left {
        margin-right: 5px;
        width: 120px;
        min-width: 120px;
        font-size: 15px;
        font-weight: 600;
    }

    .single-list .right {
        font-weight: 500;
    }

/* Search */
.sidebar-main .search .form {
    position: relative;
}

.sidebar-main .search input {
    width: 100%;
    height: 50px;
    background: #F9F9F9;
    padding: 0 117px 0 15px;
}

    .sidebar-main .search input:hover {
        border-color: #163e92;
    }

.sidebar-main .search button {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    background: #163e92;
    color: #fff;
    border: none;
    border-radius: 0px;
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 50px;
    width: 105px;
    border-radius: 0 3px 3px 0;
    transition: all 0.4s ease;
}

    .sidebar-main .search button:hover {
        background: #2F3339
    }
/* Categories */
.sidebar-main .categories ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
}

    .sidebar-main .categories ul li:last-child {
        border: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .sidebar-main .categories ul li a {
    }

    .sidebar-main .categories ul li:hover a {
        color: #E30020;
    }

    .sidebar-main .categories ul li span {
        float: right;
    }

/* Other Trips */
.sidebar-main .other-trips {
}

    .sidebar-main .other-trips .signle-trip {
        overflow: hidden;
        margin-bottom: 20px;
    }

        .sidebar-main .other-trips .signle-trip img {
            float: left;
            width: 100px;
            height: 85px;
            margin-right: 20px;
        }

        .sidebar-main .other-trips .signle-trip .text {
        }

            .sidebar-main .other-trips .signle-trip .text h4 {
                font-size: 18px;
                font-weight: 400;
            }

                .sidebar-main .other-trips .signle-trip .text h4:hover a {
                    color: #E30020;
                }

            .sidebar-main .other-trips .signle-trip .text p {
                font-weight: 400;
                margin-top: 10px;
                line-height: 23px;
            }
/* Tags */
.sidebar-main .tags {
    margin-left: -5px;
    margin-top: -10px;
}

    .sidebar-main .tags ul {
    }

    .sidebar-main .tags li {
        display: inline-block;
        margin-left: 5px;
        margin-top: 10px;
    }

        .sidebar-main .tags li a {
            font-weight: 400;
            font-size: 16px;
            color: #555;
            text-decoration: none;
            border-bottom: 1px solid transparent;
        }

            .sidebar-main .tags li a:hover {
                color: #E30020;
                border-bottom-color: #E30020;
            }
/*======================================
   End Sidebar CSS
========================================*/

/*======================================
  18. Team CSS
========================================*/
.team .title-line {
    margin-bottom: 40px;
}

.team .single-team {
    margin-top: 30px;
    border: 1px solid #e5e5e5;
}

.team .t-head {
    position: relative;
}

    .team .t-head:before {
        opacity: 0;
        visibility: hidden;
        -moz-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

.team .single-team:hover .t-head:before {
    opacity: 0.7;
    visibility: visible;
}

.team .t-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.team .single-team:hover .t-hover {
    opacity: 1;
    visibility: visible;
}

.team .t-hover p {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
}

.team .t-social {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    margin-top: -15px;
}

    .team .t-social li {
        display: inline-block;
        margin-right: 5px;
    }

        .team .t-social li a {
            width: 30px;
            height: 30px;
            line-height: 30px;
            border-radius: 100%;
            display: inline-block;
            text-align: center;
            background: #E30020;
            color: #fff;
            font-size: 14px;
        }

        .team .t-social li:hover a {
            background: #fff;
            color: #E30020;
        }

        .team .t-social li a i {
        }

.team .t-bottom {
    text-align: center;
    padding: 15px;
}

    .team .t-bottom h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

        .team .t-bottom h2 span {
            display: block;
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 5px;
            color: #E30020;
        }
/*======================================
  End Team CSS
========================================*/

/*======================================
  19. Faq CSS
========================================*/
.faq-main .faq-area {
    margin-top: 30px;
}

.faq-main .single-faq {
    border: 1px solid #eee;
    margin-bottom: 5px;
}

    .faq-main .single-faq .faq-title a {
        font-size: 18px;
        background: #f5f5f5;
        padding: 15px;
        color: #424646;
        display: block;
    }

    .faq-main .single-faq .faq-title.active a {
        background: #E30020;
        color: #fff;
        border-color: #E30020;
    }

.faq-main .faq-body {
    padding: 15px;
}

    .faq-main .faq-body p {
        font-weight: 400;
        font-size: 15px;
    }
/*======================================
  End Faq CSS
========================================*/

/*======================================
  20. 404 CSS
========================================*/
.error-page {
    background-image: url('http://via.placeholder.com/1600x1000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

    .error-page .error-inner {
        text-align: center;
        flex-direction: initial;
        height: auto;
        text-align: center;
    }

        .error-page .error-inner h2 {
            color: #fff;
            font-size: 150px;
            margin-bottom: 25px;
        }

            .error-page .error-inner h2 span {
                display: block;
                font-size: 30px;
            }

        .error-page .error-inner p {
            color: #fff;
            font-weight: 500;
            line-height: 24px;
            font-size: 16px;
        }

    .error-page .button {
        margin-top: 40px;
    }

        .error-page .button .btn {
            background: #fff;
            color: #163e92;
            margin-right: 15px;
        }

            .error-page .button .btn:before {
                display: none;
            }

            .error-page .button .btn:hover {
                background: #163e92;
                color: #fff;
            }

            .error-page .button .btn.primary {
                background: #163e92;
                color: #fff;
            }

                .error-page .button .btn.primary:hover {
                    background: #fff;
                    color: #163e92;
                }

            .error-page .button .btn:last-child {
                margin: 0;
            }
/*======================================
   End Faq CSS
========================================*/

/*======================================
  21. Contact CSS
========================================*/
.contact-us {
    position: relative;
    z-index: 43;
}

    .contact-us .form {
        margin-top: 30px;
    }

    .contact-us .form-group {
        position: relative;
        display: block;
        margin: 0 0 25px;
    }

        .contact-us .form-group i {
            position: absolute;
            font-size: 16px;
            padding: 15px 12px;
        }

        .contact-us .form-group input {
            width: 100%;
            height: 52px;
            border: 1px solid #ddd;
            padding-left: 10px;
            border-radius: 5px;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
            font-weight: 400;
            border-radius: 0px;
            background: #F6FAFA;
            outline: none;
        }

            .contact-us .form-group input:hover,
            .contact-us .form-group input:focus {
                border-color: #E30020;
                background: #fff;
            }

        .contact-us .form-group textarea {
            border: 1px solid #ddd;
            padding: 10px;
            width: 100%;
            padding-left: 10px;
            resize: none;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
            box-shadow: none;
            background: #F6FAFA;
            border-radius: 0px;
            box-shadow: none;
            outline: none;
        }

            .contact-us .form-group textarea:hover,
            .contact-us .form-group textarea:focus {
                border-color: #E30020;
                background: #fff;
                box-shadow: none;
            }

        .contact-us .form-group .btn:hover {
            color: #163e92;
            border-color: #e5e5e5;
        }

        .contact-us .form-group.button {
            text-align: center;
        }

            .contact-us .form-group.button .btn {
                border: 1px solid transparent;
            }

                .contact-us .form-group.button .btn:hover {
                    border-color: #e5e5e5;
                    color: #163e92;
                }

    .contact-us .contact {
        margin-top: 50px;
    }

        .contact-us .contact .single-contact {
            text-align: center;
            padding: 20px 50px;
            border-right: 1px solid #e5e5e5;
        }

        .contact-us .contact .col-lg-4:last-child .single-contact {
            border-right: 0px;
        }

        .contact-us .contact .single-contact i {
            font-size: 35px;
            color: #E30020;
            border-radius: 100%;
        }

        .contact-us .contact .single-contact h4 {
            font-size: 20px;
            margin: 12px 0;
        }

        .contact-us .contact .single-contact p {
            font-weight: 500;
        }

            .contact-us .contact .single-contact p span {
                display: block;
            }

            .contact-us .contact .single-contact p a:hover {
                color: #E30020;
            }

    .contact-us.mail {
        border-top: 1px solid #eee;
        padding: 152px 0 120px;
    }

        .contact-us.mail .title-line {
            margin: 0;
        }

        .contact-us.mail .btn {
            margin-top: 50px;
            color: #fff;
            border: 1px solid transparent;
        }

            .contact-us.mail .btn:hover {
                border-color: #e5e5e5;
                color: #424646;
            }

#myMap {
    height: 500px;
    width: 100%;
}
/*======================================
  End Contact CSS
========================================*/

/*======================================
  22. Footer CSS
 ========================================*/
.footer {
    background: #2F3339;
}

    .footer a {
        color: #bbb;
    }

    .footer .footer-top {
        padding: 30px 0 50px;
    }

    .footer .single-widget {
        margin-top: 30px;
    }

        .footer .single-widget h2 {
            color: #fff;
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
        }

            .footer .single-widget h2:before {
                position: absolute;
                left: 0;
                bottom: -1px;
                width: 50px;
                height: 2px;
                background: #E30020;
                bottom: -1px;
                content: "";
            }

        .footer .single-widget ul li {
            line-height: 32px;
        }

            .footer .single-widget ul li a {
                color: #bbb;
                font-size: 16px;
                font-weight: 400;
            }

            .footer .single-widget ul li:hover a {
                color: #FF8767;
                padding-left: 5px;
            }

        .footer .single-widget.gallery ul {
            margin-left: -10px;
            overflow: hidden;
        }

            .footer .single-widget.gallery ul li {
                float: left;
                margin: 10px 0 0 10px;
                padding: 0;
            }

                .footer .single-widget.gallery ul li a {
                    padding: 0;
                }

                .footer .single-widget.gallery ul li img {
                    width: 80px;
                    height: 65px;
                }

        .footer .single-widget.about img {
            margin-bottom: 50px;
        }

        .footer .single-widget.about p, .footer .single-widget p  {
            color: #bbb;
            font-size: 16px;
            font-weight: 400;
        }
    /* Footer Bottom */
    .footer .footer-bottom {
        border-top: 1px solid #4B4E53;
        padding: 25px 0;
    }

    .footer .copyright {
        float: left;
    }

        .footer .copyright p {
            font-size: 15px;
            font-weight: 600;
            color: #959595;
        }

            .footer .copyright p a {
                color: #E30020;
            }

    .footer .social {
        float: right;
    }

        .footer .social li {
            margin-right: 20px;
            display: inline-block;
        }

            .footer .social li:last-child {
                margin-right: 0px;
            }

            .footer .social li a {
                font-size: 18px;
                color: #E30020;
                font-weight: 400;
            }
    /* Footer Style 2 */
    .footer.style2 {
        background: #fff;
    }

        .footer.style2 .footer-top {
            padding: 70px 0 0px;
            border-top: 1px solid #e5e5e5;
        }

        .footer.style2 .single-widget.about img {
            margin-bottom: 30px;
        }

        .footer.style2 .single-widget.about p {
            font-weight: 400;
            color: #424646;
            font-size: 15px;
            line-height: 24px;
        }

        .footer.style2 .single-widget h2 {
            color: #424646;
        }

        .footer.style2 .single-widget ul li a {
            font-weight: 400;
            color: #424646;
            font-size: 15px;
            font-weight: 400;
        }

        .footer.style2 .single-widget.blog ul {
        }

            .footer.style2 .single-widget.blog ul li {
                line-height: 22px;
                margin-bottom: 15px;
                position: relative;
                padding-left: 15px;
            }

                .footer.style2 .single-widget.blog ul li::before {
                    position: absolute;
                    content: "";
                    width: 8px;
                    height: 8px;
                    line-height: 10px;
                    background: #E30020;
                    left: 0;
                    top: 6px;
                }

                .footer.style2 .single-widget.blog ul li a {
                    /*text-transform: capitalize;*/
                    font-weight: 400;
                    color: #424646;
                    font-size: 15px;
                }

        .footer.style2 .single-widget ul li:hover a {
            color: #E30020;
        }

        .footer.style2 .footer-menu-top {
            border-top: 1px solid #DBDBDB;
            padding: 40px 0;
            margin-top: 100px;
        }

        .footer.style2 .footer-nav {
            float: left;
        }

            .footer.style2 .footer-nav li a {
                text-transform: uppercase;
                font-size: 14px;
                color: #424646;
                font-weight: 500;
            }

            .footer.style2 .footer-nav li:hover a {
                color: #FF8767;
            }

            .footer.style2 .footer-nav li {
                display: inline-block;
                margin-right: 30px;
            }

        .footer.style2 .social li {
            margin-right: 30px;
        }

            .footer.style2 .social li a {
                color: #424646;
            }

            .footer.style2 .social li:hover a {
                color: #E30020;
            }

            .footer.style2 .social li:last-child {
                margin-right: 0px;
            }

        .footer.style2 .footer-bottom {
            background: #252525;
        }

        .footer.style2 .copyright {
            float: none;
            text-align: center;
        }
/*======================================
  End Footer CSS
 ========================================*/

/* Destination Nav */
.hero-area .nav {
    margin: 0px auto;
}

    .hero-area .nav li a {
        color: #42464D;
        background: #F0F3F6;
        padding: 16px 26px;
        border: 0px solid;
        border-radius: 0px;
        font-size: 14px;
        font-weight: 700;
        position: relative;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .hero-area .nav li a::before {
            position: absolute;
            top: 100%;
            left: 30%;
            content: "";
            border-top: 10px solid #163e92;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            margin-left: -10px;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .hero-area .nav li a:hover,
        .hero-area .nav li a.active {
            background: #163e92;
            color: #fff;
        }

            .hero-area .nav li a:hover::before,
            .hero-area .nav li a.active::before {
                left: 50%;
                opacity: 1;
                visibility: visible;
            }

        .hero-area .nav li a.active {
            color: #fff;
        }

.hero-area .nav-tabs {
    border-bottom: 0px;
}

/*======================================
   Custom
========================================*/
.aktualni-informace .single-blog {
    margin-top: 30px;
    position: relative;
    border: 1px solid #F2F2F2;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .aktualni-informace .single-blog:hover {
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    }

.aktualni-informace .blog-head img {
    width: 100%;
}

.aktualni-informace .blog-content {
    padding: 30px 20px;
}

    .aktualni-informace .blog-content span {
        font-weight: 500;
        color: #FF7C25;
        margin-bottom: 10px;
        display: inline-block;
    }

    .aktualni-informace .blog-content h4 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 10px;
    }

        .aktualni-informace .blog-content h4 a {
            text-transform: initial;
            color: #E30020;
        }

        .aktualni-informace .blog-content h4:hover a {
            color: #6E6E6E;
        }

    .aktualni-informace .blog-content .btn:hover {
        color: #163e92;
    }

    .aktualni-informace .blog-content .btn {
        margin-top: 25px;
        background: transparent;
        padding: 0;
        color: #6E6E6E;
        border-bottom: 2px solid;
        padding-bottom: 5px;
        border-radius: 0px;
    }

.title-line p {
    text-transform: none;
}

.trip-details table tr td:nth-child(2) {
    color: #757575;
}

.trip-details table tr td:first-child {
    color: #E30020;
    padding-right: 5px;
}

section.hero-area {
    margin-bottom: 0px !important;
}

section.aktualni-informace, section.top-destination, section.blog-area.archive, section.blog-area.archive.classic, section.trip-single {
    margin: 20px 0 60px;
    padding: 0px;
}

.overlay {
    background-position: center;
}

.single-blog, .blog-content {
    margin-top: 20px !important;
}

.single-widget.gallery li {
    float: left;
    margin: 0px 5px 5px 0px;
}

.trip-tab-inner .tab-pane {
    margin-top: 20px;
}

.trip-details table {
    margin-bottom: 5px;
}

.top-destination .single-package {
    margin-top: 0px;
    margin-bottom: 30px;
}

input.form-control {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd;
    padding-left: 10px;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
    background: #F6FAFA;
    outline: none;
}

textarea.form-control {
    width: 100%;
    border: 1px solid #ddd;
    padding-left: 10px;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
    background: #F6FAFA;
    outline: none;
}

input.form-control:hover, input.form-control:focus, textarea.form-control {
    /*border-color: #163e92;*/
    background: #fff;
}

.order-step-footer {
    padding-top: 20px;
    border-top: 1px solid #efefef;
}

table.table-order tbody tr.table-order-active-row {
    cursor: pointer;
}

table.table-order input[type=radio] {
    display: none;
}

table.table thead th {
    border-top-width: 0px;
}

div.modal-xl {
    max-width: 900px;
}

input.objednatel-souhlas {
    transform: scale(1.4, 1.4);
    margin: 7px 0px 0px 0px;
    padding: 0px;
}

.message-invalid {
    color: red;
}

.trip-details li {
    list-style: disc;
    margin-left: 20px;
}

.trip-details h6 {
    color: #E30020;
    font-weight: normal;
    margin-bottom: 10px;
}

.menu-icon {
    font-size: 36px;
    color: #E30020;
}

a.slicknav_btn {
    margin-top: 14px;
}

a.cc-btn.cc-dismiss {
    white-space: nowrap;
}

.pagination-container li.active span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    background: #E30020;
    color: #fff;
    font-weight: 700;
    border-radius: 3px;
    font-size: 16px;
}

.btn-classic {
    background: #163e92;
    padding: 12px 25px;
    border-radius: 0px;
    border: 1px solid transparent;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    color: white !important;
}

    .btn-classic:hover {
        background-color: gray;
    }

.btn-white {
    background-color: white;
    color: #163e92 !important;
}

    .btn-white:hover {
        color: white !important;
    }

.btn-radius {
    border-radius: 3px;
}

.trip-offer-stars {
    position: absolute;
    right: 0px;
    padding: 10px;
}

.trip-offer-star {
    color: yellow;
    font-size: 20px;
	vertical-align: top;
}

h1 .trip-offer-star {
    margin-right: -10px;
}

.trip-name {
    height: 85px;
    overflow: hidden;
}

span.trip-offer-stars-nazev i.trip-offer-star {
    color: #163e92;
    font-size: 16px;
    margin: 0px;
}

.trip-price {
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

    .trip-price span {
        font-size: 18px;
        white-space: nowrap;
    }

.trip-hr {
    background-color: #e7e7e7;
    margin-top: 8px;
    margin-bottom: 16px;
}

.trip-info {
    font-size: 14px;
    line-height: 22px;
}

    .trip-info i {
        width: 10px;
    }

.trip-list-full-width .single-list .left {
    float: left;
    margin-right: 5px;
    width: 200px;
    font-size: 15px;
    font-weight: 600;
}

.trip-list-full-width .single-list .right {
    font-weight: 500;
    float: left;
}

.trip-list-full-width {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
    box-shadow: none;
}

    .trip-list-full-width .single-list {
        overflow: hidden;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #e5e5e5;
    }

.form-check-label p {
    padding-top: 0px !important;
    margin-top: 0px !important;
}

.d-my-none {
    display: none;
}

.rezervace-sidebar {
    position: sticky;
    top: 75px;
}

ul.list {
    margin-top: 15px;
    margin-left: 25px;
}

    ul.list li {
        list-style: disc;
    }

ul.photo-gallery {
}

    ul.photo-gallery li {
        list-style: none;
    }

.table-order-active-row-selected {
    font-weight: bold !important;
    color: #E30020 !important;
}

    .table-order-active-row-selected input {
        color: #E30020 !important;
    }

.recenze-star {
    color: goldenrod;
}

.stitek-dlazdiceText {
    background-color: #E30020 !important;
}

.stitek-dlazdiceA {
    background-color: #E30020 !important;
}

.stitek-dlazdiceB {
    background-color: #163e92 !important;
}

.stitek-dlazdiceC {
    background-color: #666666 !important;
}

.detail-cena {
    color: #E30020;
}

#nav-tab--zajezd h2, #nav-tab--hotel h2 {
    margin-top: 30px;
}

#nav-tab--zajezd h3, #nav-tab--hotel h3 {
    margin-top: 30px;
}

#nav-tab--zajezd h4, #nav-tab--hotel h4 {
    margin-top: 30px;
}

.table-order-active-row .pocet {
    display: none;
}

.table-order-active-row-selected .pocet {
    display: inline;
}

.breadcrumbs ul.list {
    margin-left: 0px;
}

div.breadcrumbs.overlay, section#hero-area.overlay {
    background-image: url('/fotky/header/web-shutterstock-259263980-greece-talgo-beach-on-the-east-coast-of-sithonia-peninsula-chalkidiki.jpg');
}

.breadcrumbs .list li a:hover {
    color: #163e92;
}


.motivacni-veta-na-konci-objednavky {
    background-color: #E30020;
    color: white;
    font-size: 15px;
    padding: 10px;
    text-align: center;
}

.hero-area .form-group .nice-select {
    font-size: 12px;
}

.main-menu .navigation .nav.menu {
    margin-left: 20px;
    margin-right: 20px;
}

/* seznam destinaci */

div.seznam-destinaci {
    column-count: 2;
}

@media only screen and (max-width: 991px) {
    div.seznam-destinaci {
        column-count: 1;
    }
}

div.seznam-destinaci .uroven-1 {
    padding-top: 15px;
    padding-bottom: 0px;
    color: #E30020;
    font-size: 20px;
}

div.seznam-destinaci .uroven-1 a {
    color: #163e92;
}

div.seznam-destinaci .uroven-2 {
    font-size: 18px;
    margin-top: 12px;
}

div.seznam-destinaci .uroven-2 i {
    font-size: 13px;
    padding-left: 40px;
    padding-right: 20px;
}

div.seznam-destinaci .uroven-2 a {
    color: #424646;
}

div.seznam-destinaci .uroven-3 {
    list-style: none;
    margin-left: 90px;
    margin-top: 6px;
    font-size: 16px;
}

div.seznam-destinaci .uroven-3 a {
    color: #424646;
}

div.seznam-destinaci .uroven-4, div.seznam-destinaci .uroven-4-vyprodano {
    list-style: none;
    margin-left: 120px;
    margin-top: 6px;
    font-size: 16px;
}

    div.seznam-destinaci .uroven-4 a {
        color: #163e92;
    }

    div.seznam-destinaci .uroven-4-vyprodano a {
        color: gray;
    }
/* seznam vybaveni */

div.seznam-vybaveni {
    column-count: 3;
}

@media only screen and (max-width: 991px) {
    div.seznam-vybaveni {
        column-count: 2;
    }
}

.hotel-vybaveni-in-column div.seznam-vybaveni {
    column-count: 1;
}

@media only screen and (max-width: 680px) {
    div .seznam-vybaveni {
        column-count: 1;
    }
}

div.seznam-vybaveni .uroven-1 {
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 5px;
    font-weight: bold;
}

div.seznam-vybaveni .uroven-2 {
    margin-bottom: 0px;
}

    div.seznam-vybaveni .uroven-2 i {
        font-size: 14px;
        padding-left: 25px;
        padding-right: 10px;
        color: #E30020
    }


a {
    color: #163e92;
}

h1 a {
    color: unset;
}

    h1 a:hover {
        color: #163e92;
    }

.filter-selected {
    font-weight: bold !important;
    border-color: #E30020 !important;
}

div#mapa img {
    max-width: none;
}

.searchbox-inner {
    position: absolute;
    right: -20px;
    background-color: #E30020;
    padding: 20px;
    margin-top: 5px;
    display: none;
}

    .searchbox-inner input.form-control {
        height: 45px;
        width: 300px;
    }

.searchbox-inner-left {
    right: unset;
    left: -10px;
}

.searchbox-float2 input.form-control {
    height: 45px;
    width: 206px;
    height: 35px;
}
.searchbox-float2 .btn {
    height: 35px;
    padding: 7px 12px 7px 12px;
    background-color: #E30020 !important;
}

@media only screen and (max-width: 767px) {
    .searchbox a {
        display: none;
    }

    .searchbox-inner {
        margin-top: 10px;
        display: block;
        position: relative;
        display: block;
        padding: 0px;
        background-color: transparent;
        text-align: left;
        left: 0px;
    }

        .searchbox-inner input.form-control {
            height: 45px;
            width: 1%;
        }
}

.single-package .trip-details img.pobocka-zamestnanec {
    width: 103px;
    border: 1px solid #e7e7e7;
    margin-bottom: 5px;
}
.rozcestnik-item {
    margin-top: 15px;
    margin-bottom: 15px;
}
.rozcestnik-item a > div {
    position: absolute;
    left: 50%;
    top: 50%;
}
    .rozcestnik-item a > div > div {
        position: relative;
        left: -50%;
        top: 50%;
        font-size: 26px;
        color: white;
        text-shadow: 2px 2px 4px #000
    }
.cena-dlazdice-cely-radek {
    margin-top: 11px;
    color: #E30020;
    font-size: 26px;
    font-weight: bold;
}
.dlazdice-cely-radek-link {
    color: #353736;
}
.dlazdice-cely-radek-obrazek {

    background-size: cover;
    background-position: center;
}
.dlazdice-cely-radek {
    border: 1px solid #e7e7e7;
}
.dlazdice-cely-radek-obrazek a div {
    min-height: 250px;
}
.breadcrumbs-bez-header-obrazku {
    padding-top: 50px;
    padding-bottom: 0px !important;
    text-align: left;
}
    .breadcrumbs-bez-header-obrazku h1 {
        color: #42464d;
    }
    .breadcrumbs-bez-header-obrazku ul.list li::before {
        color: #42464d;
    }
    .breadcrumbs-bez-header-obrazku ul.list li a, .breadcrumbs-bez-header-obrazku ul.list li span {
        color: #42464d;
    }
    .breadcrumbs-bez-header-obrazku ul.list {
        margin-bottom: 0px;
    }

@media only screen and (max-width: 767px) {
    .breadcrumbs {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .breadcrumbs-s-header-obrazkem {
        text-align: left;
        background-image: none !important;
    }

        .breadcrumbs-s-header-obrazkem h1 {
            color: #42464d;
        }

        .breadcrumbs-s-header-obrazkem ul.list li::before {
            color: #42464d;
        }

        .breadcrumbs-s-header-obrazkem ul.list li a, .breadcrumbs-s-header-obrazkem ul.list li span {
            color: #42464d;
        }

        .breadcrumbs-s-header-obrazkem ul.list {
            margin-bottom: 0px;
        }
}


.filtr-row button {
    height: 50px;
}
.filtr-row select {
    height: 50px !important;
}
#carouselTerminy .carousel-indicators li {
    background-color: lightgray;
}
#carouselTerminy .carousel-indicators .active {
    background-color: gray;
}

.order__amount {
    display: inline-flex;
    max-height: 46px;
    min-height: 46px;
}

.order__amount-control {
    align-items: center;
    border: 1px solid #ced0da;
    display: flex;
    flex: 0 0 36px;
    justify-content: center;
    width: 36px;
    background-color: white !important;
}

    .order__amount-control:first-child {
        border-radius: 4px 0 0 4px;
        border-right: 0;
    }

    .order__amount-control:last-child {
        border-left: 0;
        border-radius: 0 4px 4px 0;
    }

.order__amount-input {
    align-items: center;
    border: 1px solid #ced0da;
    display: flex;
    flex: 0 0 52px;
    width: 52px;
    text-align: center;
    background-color: white !important;
}

    .order__amount-input input {
        border: 0;
        font-size: 18px;
        -moz-appearance: textfield;
        padding: 0;
        text-align: center;
        width: 100%;
    }

        .order__amount-input input::-webkit-inner-spin-button,
        .order__amount-input input::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

.far.fa-check-square, .far.fa-square {
    font-size: 1.4rem;
}

.gallery-container {
    position: relative;
}

    .gallery-container img {
        cursor: pointer;
    }

    .gallery-container div.header {
        position: absolute;
        top: 0px;
        color: white;
        padding: 10px;
        width: 100%;
        background-color: rgba(0,0,0,.44);
        display: flex;
    }

    .gallery-container div.footer {
        position: absolute;
        bottom: 0px;
        color: white;
        padding: 10px;
        width: 100%;
        background-color: rgba(0,0,0,.44);
        display: flex;
    }

    .gallery-container.hotel-detail-gallery-video div.header, .gallery-container.hotel-detail-gallery-video div.footer {
        position: static;
        background-color: black;
    }
    .gallery-container.hotel-detail-gallery-video .videowrapper {
        padding-top: 0px;
    }
    
    .gallery-container .hotel-detail-usp-contaiter {
        margin-bottom: 0px;
    }

    .gallery-container div.gallery-video {
    }

    .gallery-container div.gallery-foto {
        margin-left: auto;
    }

.gallery-container--aktivity {
    max-width: 360px;
}

div.foto-gallery img {
    width: 32% !important;
    cursor: pointer;
    margin-bottom: 4px;
}

@media only screen and (max-width: 1024px) {
    div.foto-gallery img {
        width: 49% !important;
    }
}

@media only screen and (max-width: 500px) {
    div.foto-gallery img {
        width: 100% !important;
    }
}

#dCelkovaCenaNadKontakty {
    display: none;
    font-weight: 700;
    font-size: 24px;
}
@media only screen and (max-width: 991px) {
    #dCelkovaCenaNadKontakty {
        display: block;
    }
}
#sCenaCelkemNadKontakty {
    display: block;
    float: right;
}
#dCelkovaCenaNadKontaktyInner {
    margin-top: 15px;
    margin-bottom: 25px;
    background-color: #F2F2F2;
    padding: 15px;
}

.site-header .header-bottom {
    position: relative;
    bottom: 0px;
    top: -15px;
}

#hero-area, .breadcrumbs {
    position: relative;
    top: -78px;
    margin-bottom: -78px !important;
}
.carousel-full {
    margin-top: -79px;
    height: 485px;
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
}
.carousel-full .container {
    padding-top: 60px;
}
.carousel-full .trip-search {
}
    .carousel-full .carousel-full-link {
        display: block;
        /*background-color: red;*/
        height: 100%;
        width: 100%;
    }
    .carousel-full .carousel-full-link-pointer {
        cursor: pointer;
    }
    .carousel-full .hero-area {
    }
    .carousel-full .col-arrow i {
        color: #e7e7e7;
        font-size: 45px;
        cursor: pointer;
    }
    .carousel-full .col-arrow i:hover {
        color: white;
    }
    .carousel-full .col-arrow {
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }
table.table-radkovy-seznam {
    height: unset;
}
div.div-seznam-tabulka {
    width: 100%;
}
table.table-radkovy-seznam td {
    white-space: nowrap;
}
table.table-radkovy-seznam tbody tr td div.uroven-hotelu i {
    font-size: 12px;
    margin-right: -4px;
}
.last-minute-desktop {
    display: none;
}

.last-minute-tablet {
    display: none;
}

.last-minute-mobile {
    display: block;
}

@media only screen and (min-width: 576px) {
    .last-minute-desktop {
        display: none;
    }

    .last-minute-tablet {
        display: table;
    }

    .last-minute-mobile {
        display: none;
    }
}

@media only screen and (min-width: 1140px) {
    .last-minute-desktop {
        display: table;
    }

    .last-minute-tablet {
        display: none;
    }

    .last-minute-mobile {
        display: none;
    }
}

#overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: gray;
    opacity: .6;
    z-index: 9999998;
    display: none;
}

.loader {
    position: fixed;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    border: 3px solid #f3f3f3;
    border-top: 3px solid #f3f3f3;
    border-bottom: 3px solid #163e92;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    display: none;
    z-index: 9999999;
}
.loader-static {
    position: static;
    display: inline-block;
    width: 30px;
    height: 30px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.grecaptcha-badge {
    visibility: hidden;
}

.termin-info {
    cursor: pointer;
    color: #163e92;
    font-size: 22px;
}

div.dlazdice-popis {
    font-size: 14px;
    line-height: 22px;
    color: #757575;
    overflow-y: hidden;
}
span.dlazdice-lokalita {
    display: block;
}
@media only screen and (min-width: 768px) {
    div.dlazdice-popis {
        height: 160px;
    }
    span.dlazdice-lokalita {
        height: 45px;
    }
}
.top-destination .trip-details .right span.dlazdice-maxsleva {
    font-size: 16px;
    color: #E30020;
}
.top-destination .trip-details .left div.dlazdice-poctynoci {
    font-size: 16px;
    margin-top: 5px;
    position: absolute;
    bottom: 0px;
}
.dlazice-ikona-ve-fotce {
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 10px;
    display: flex;
}
    .dlazice-ikona-ve-fotce img{
        margin-right: 5px;
    }
.trip-head {
    position: relative;
}
.dlazdice-stitek-x-y {
    border: 3px solid #E30020;
    font-weight: bold;
    font-size: 18px;
    border-radius: 15px;
    padding: 9px;
    color: #E30020;
    margin-right: 5px;
    opacity: 0.7;
    background-color: white;
}
.dlazdice-stitek-text {
    border: 3px solid #E30020;
    font-weight: bold;
    font-size: 18px;
    border-radius: 15px;
    padding: 9px;
    color: #E30020;
    margin-right: 5px;
    opacity: 0.7;
    background-color: white;
}
.div-rezervace-puvodni-celkova-cena {
    display: none;
    font-size: 22px;
    text-decoration: line-through;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 5px;
}
.trip-tab-inner table:not(.table):not(#tblLoader) tr td {
    border: 1px solid #222222;
}
.trip-tab-inner table:not(.table):not(#tblLoader) {
    margin-top: 10px;
}
.trip-tab-inner table:not(.table):not(#tblLoader) tr td p {
    margin-top: 0px;
    padding: 4px;
}
@media(max-width: 992px) {
    /* skryti ousek facebooku a ckmetal na mensich displayich */
    #fb-page {
        display: none !important;
    }

    #ack-root-company {
        display: none !important;
    }
}
ul.seznam-vybaveni {
    columns: 3;
}
    ul.seznam-vybaveni li {
        list-style-type: disc;
        margin-left: 20px;
    }
@media only screen and (max-width: 991px) {
    ul.seznam-vybaveni {
        column-count: 2;
    }
}
@media only screen and (max-width: 620px) {
    ul.seznam-vybaveni {
        column-count: 1;
    }
}

a.urgent {
    color: #163e92 !important;
	animation: blik 2s infinite; 
	-webkit-animation: blik 2s infinite;
}
@keyframes blik { 0% { opacity:1 } 50% { opacity:0 } 100% { opacity:1 } }
@-webkit-keyframes blik { 0% { opacity:1 } 50% { opacity:0 } 100% { opacity:1 } }

div.html-content ul li {
    margin-left: 20px;
    list-style: disc;
}
div.html-content ol li {
    margin-left: 20px;
    list-style: decimal;
}
div.html-content table th {
    background-color: #163e9255; /* 55 na konci je pruhlednost */
}
div.html-content table td, div.html-content table th {
    padding: 4px;
}
div.html-content h3 {
    margin-top: 15px;
    margin-bottom: 10px;
}
div.rezervace-section-not-allowed, div.rezervace-section-not-allowed * {
    cursor: not-allowed;
}
    div.rezervace-section-not-allowed label,
    div.rezervace-section-not-allowed table,
    div.rezervace-section-not-allowed h3,
    div.rezervace-section-not-allowed div.order__amount {
        opacity: 0.5;
    }

.nice-tabs .tab-content .tab-pane div.html-content p {
    margin-top: 10px;
    margin-bottom: 20px;
}

div.rezervace-section-not-allowed div.modal * {
    opacity: 1;
    cursor: default;
}

@media only screen and (max-width: 767px) {
    header#site-header ul.social {
        /*display: none;*/
        margin-bottom: 10px;
    }

    header#site-header .searchbox-inner {
        margin-top: 0px;
    }

    div.logo img {
        max-width: 250px;
    }
}
.footer .social div {
    display: inline-block;
    font-size: 15px;
    margin-left: 10px;
}
@media only screen and (max-width: 1024px) {
    .footer .social div {
        display: none;
    }
}

.header-kontakt {
    text-align: left;
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
}

.header-kontakt i {
    margin-right: 3px;
}
div.container div.header-kontakt p {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: normal;
}

@media only screen and (max-width: 768px) {
    div.logo img {
        max-width: 250px;
        max-height: 100px;
    }

    div.mobile-nav {
        padding-bottom: 25px;
    }

    div.middle-header {
        min-height: 168px;
    }
}

.div-blog-novinky {
    text-align: center;
}

.div-blog-novinky a {
    text-decoration: underline;
}

.seznam-clanku-jen-text h4 {
    font-weight: 700;
}

    .seznam-clanku-jen-text h4 a {
        font-weight: 700;
        color: #E30020;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .seznam-clanku-jen-text h4 a:hover {
        font-weight: 700;
        color: #163e92;
    }
.nice-tabs .tab-content .tab-pane .seznam-clanku-jen-text p {
    margin-top: 0px;
}

.meta-small {
    font-size: 13px;
    color: #757575;
}

.date-picker-wrapper {
    font-size: 14px;
}
    .date-picker-wrapper .drp_top-bar .apply-btn, .date-picker-wrapper .drp_top-bar .smazat-btn {
        font-size: 14px;
    }
    .date-picker-wrapper .month-wrapper table .day {
        padding: 8px;
        font-size: 14px;
    }

.seznam-terminu-desktop {
    display: none;
}

.seznam-terminu-tablet {
    display: none;
}

.seznam-terminu-mobile {
    display: table;
}

.seznam-terminu-mobile-cena {
    font-size: 22px;
}

@media only screen and (min-width: 768px) {
    .seznam-terminu-desktop {
        display: none;
    }

    .seznam-terminu-tablet {
        display: table;
    }

    .seznam-terminu-mobile {
        display: none;
    }
}

@media only screen and (min-width: 1140px) {
    .seznam-terminu-desktop {
        display: table;
    }

    .seznam-terminu-tablet {
        display: none;
    }

    .seznam-terminu-mobile {
        display: none;
    }
}

.top-cisla-container {
    margin-bottom: 25px;
}
.top-cisla {
    text-align: center;
    margin-bottom: 0px;
}
.top-cisla-title {
    color: #E30020;
    margin-bottom: 15px;
    margin-top: 25px;
}
.top-cisla-button:hover {
    color: lightgray;
}
.top-cisla-button {
    background: #E30020;
    color: #fff;
    display: flex;
    align-items: stretch;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0px;
    border-radius: 3px;
    font-weight: normal;
}
    .top-cisla-button p {
        color: #fff;
    }
    .top-cisla-button img {
        width: 50px;
        height: 50px;
        margin: 0px 30px 0px 30px;
    }
.top-cisla-button-img {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
}
.top-cisla-button-content {
    flex-grow: 4;
}

#slick-container {
    display: none;
}

.link-vybrat-jiny-termin {
    font-size: 13px;
}

.link-vybrat-tento-termin {
    color: darkgray; 
	font-weight: normal;
}

/*****************************
Styly vyplyvajici z CK Editoru
*****************************/
.imgLeft { float: left !important; margin-right: 15px !important; margin-bottom: 15px !important; margin-left: 5px !important; margin-top:5px !important;}
.imgRight { float: right !important; margin-left: 15px !important; margin-bottom: 15px !important; margin-right: 5px !important; margin-top:5px !important;}
.imgCenter { clear: both !important; margin-top: 15px !important; margin-bottom: 15px !important; text-align: center !important; }
.divCenter { clear: both !important; width:100%!important;display:block;text-align:center!important;}
.zvyrazneny01 { color: red !important; font-weight: bold !important; }
.zvyrazneny02 { color: green !important; font-weight: bold !important; }
.zeme-dlazdice-lokality {
    margin-top: 10px;
}

.zeme-dlazdice-lokality a {
    font-weight:normal;
}

.kc-stav {
    color: #E30020;
}

div.smap div.card-header, div.smap div.card-footer {
    display: none;
}
div.smap div.card-body img, .mapa-google-card img {
    width: 200px;
    margin-bottom: 8px;
}
div.smap div.card-body h5, .mapa-google-card h5 {
    line-height: 14px;
    margin-bottom: 3px;
}
    div.smap div.card-body h5, 
    div.smap div.card-body h5 a, 
    .mapa-google-card h5, 
    .mapa-google-card h5 a {
        font-size: 14px;
        margin-bottom: 3px;
        font-weight: normal;
    }
div.smap div.card-body div.mapa-footer, .mapa-google-card .mapa-footer {
    font-size: 16px;
    font-weight: normal;
    margin-top: 5px;
    color: black;
}
div.smap div.card-body div.mapa-popis, .mapa-google-card .mapa-popis {
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
}
div.smap div.card-body, .mapa-google-card {
    padding: 0px;
    text-align: center;
}
div.smap div.card {
    padding: 12px 6px 6px 6px;
}

.hledani-katalog-combo {
    display: none;
    height: 50px;
    padding: .375rem .75rem;
    font-size: 1rem;
    color: #495057;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    width: 100%;
    font-weight: bold;
}

.hledani-katalog-buttons {
    display: none;
}

@media only screen and (max-width: 991px) {
    .hledani-katalog-tabs {
        display: none !important;
    }
    .hledani-katalog-combo {
        display: block;
    }
    .hledani-katalog-combo.hledani-katalog-buttons-mode {
        display: none;
    }
    .hledani-katalog-filtry.hledani-katalog-buttons-mode {
        display: none;
    }
    .hledani-katalog-buttons.hledani-katalog-buttons-mode {
        display: block;
    }
}

.whatsapp-button {
    position: fixed;
    z-index: 323333;
    right: 18px;
    bottom: 27px;
    width: 50px;
    height: 50px;
    background-image: url(/wwwroot/traveltrek/images/whatsapp-icon.jpg);
    display: none;
}

.whatsapp, .whatsapp a{
    color: #00E676 !important;
    vertical-align: middle;
}

@media only screen and (max-width: 500px) {
    .whatsapp-button {
        display: block;
    }
}

.kladne-zaporne-stranky-item {
    margin: 2px 0px 2px 0px;
}
.kladne-zaporne-stranky-item i {
    margin-right: 5px;
}
.kladne-zaporne-stranky-item-klad i {
    color: #7CAD12;
}
.kladne-zaporne-stranky-item-zapor i {
    color: #E12424;
}

.dlazdice-oblibene {
    position: absolute;
    left: calc(50% - 13px);
    font-size: 32px;
    top: 10px;
}
.badge-oblibene {
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 7px;
}
.dlazdice-oblibene-hotel {
    float: right;
    font-size: 32px;
}

.mapa-normal {
    height: 860px;
}

@media only screen and (max-width: 900px) {
    .mapa-normal {
        height: 550px;
    }
}

@media only screen and (max-width: 600px) {
    .mapa-normal {
        height: 350px;
    }
}


.mapa-small {
    height: 250px;
}

.mapa-pobocka {
    height: 350px
}

.dlazdice-pobocka-s-mapou {
    height: 350px
}

.dlazdice-pobocka .trip-name {
    height: auto;
}

.mapa-container {
    position: relative;
}
.mapa-legenda {
    background-color: #fff;
    position: absolute;
    z-index: 98;
    text-align: left;
    padding: 4px 10px 0px 4px;
    left: 7px;
    top: 6px;
}
    .mapa-legenda img {
        margin: 0px 0px 4px 0px;
        -webkit-transform: scale(0.63); /* Saf3.1+, Chrome */
        -moz-transform: scale(0.63); /* FF3.5+ */
        -ms-transform: scale(0.63); /* IE9 */
        -o-transform: scale(0.63); /* Opera 10.5+ */
        transform: scale(0.63);
    }

.filtr-prehled {
}

.btn-sm {
    padding: .35rem .5rem;
    font-size: .65rem;
    line-height: 1.5;
    border-radius: .2rem;
}
button.zrusit-filtr {
    background-color: #E30020;
}

input.form-control-filtr {
    height: 38px;
    background-color: white;
}

.h1-homepage {

}

.top-destination h3 {
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    line-height: 1.2;
    font-size: 18px;
}
    .top-destination h3 a {
        color: #424646;
    }
        .top-destination h3 a:hover {
            color: #E30020;
        }

.menu-info {
    display: flex;
}

.menu-ckatlas {
    background-color: #E30020;
    border-radius: 3px;
    padding: 5px 8px 5px 8px;
    margin-bottom: 5px;
    font-weight: normal;
}

.header-widget {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.single-widget {
    margin-bottom: 5px;
}
.my-badge {
    font-size: 75%;
}
div.hotel-detail-dalsi-stravy {
    font-size: 80%;
}
.hotel-detail-dalsi-stravy {
    color: #A9A9A9;
}

.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

    .videowrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

@media only screen and (max-width: 768px) {
    div.mobile-nav {
        padding-bottom: 65px;
    }
}

.v4_left {
    float: left;
    width: 60%;
    position: relative;
    font-size: 12px;
}
.v4_left div.dlazdice-poctynoci {
    font-size: 16px;
    margin-top: 5px;
    position: absolute;
    bottom: 0px;
}

.v4_left div.dlazdice-poctynoci {
    font-size: 16px;
    margin-top: 5px;
    position: absolute;
    bottom: 0px;
}
.v4_left h3 {
    height: 84px;
}


.v4_right {
    float: left;
    width: 40%;
    text-align: right;
}

    .v4_right .trip-price {
        height: 60px;
    }

    .v4_right span {
        display: block;
        font-size: 22px;
        font-weight: 700;
        color: #0081C5;
    }

    .v6-cena .aktualni {
        font-size: 22px;
        font-weight: 700;
        color: #0081C5;
    }

    .v6-cena .puvodni {
        text-decoration: line-through;
    }

    .v6-nazev {
        height: 60px;
    }
    .v6-cena {
    height: 40px;
}

    .v4_right span.dlazdice-maxsleva {
        font-size: 14px;
        color: #E30020;
    }
.v4_right div.dlazdice-maxsleva {
    height: 15px;
}
.v4_right div.dlazdice-maxsleva span {
    font-size: 14px;
    color: #E30020;
    white-space: nowrap;
}

.v4_footer {
    font-size: 12px;
}
    .v4_footer .dalsi-info {
        height: 60px;
		line-height: 140%;
    }
.v4_footer .destinace {
    height: 50px;
	font-size: 14px;
}
.btn-seznam-terminu-tlacitko-obsazeno:disabled, .btn-seznam-terminu-tlacitko-obsazeno:disabled:hover {
    background-color: #666666 !important;
    color: black !important;
    cursor: default;
}
.btn-seznam-terminu-tlacitko-obsazeno.btn:before {
    background: none;
}

.col-kc-platba {
    margin-bottom: 30px;
}
.kc-platba {
    background-color: #F7F7F7;
    padding: 15px 15px 15px 15px;
    height: 100%;
}

.container-klientske-centrum .form-group select.form-control,
.container-klientske-centrum select.form-control:not([size]):not([multiple]) {
    height: 52px;
}

.btn-light {
    background-color: gray !important;
}

tr.tr-border-top {
    border-top: 1px solid #dfdfdf !important;
}

tr.terminy-nazev-zajezdu td {
    background-color: white;
}

tr.terminy-nazev-zajezdu td {
    font-weight: bold;
    font-size: 28px;
    padding-top: 25px;
    padding-bottom: 20px;
}

.destinace-popis-dlouhy-text {
    max-height: 400px;
    overflow-y: hidden;
    transition: 1.5s;
    -webkit-transition: 1.5s;
}

.destinace-popis-dlouhy-text-bez-fotky {
    max-height: 150px;
    overflow-y: hidden;
    transition: 1.5s;
    -webkit-transition: 1.5s;
}

.destinace-popis-dlouhy-text-show-all {
    max-height: 10000px;
}

a.common-link:hover {
    color: #E30020 !important;
}


/* header filter */

.header-filtr-katalogy-buttons {
    display: none;
}

.header-filtr-katalogy-tabs {
}

.header-filtr-polozky {
}


@media only screen and (max-width: 450px) {
    .header-filtr-katalogy-buttons {
        display: block;
    }

    .header-filtr-katalogy-tabs {
        display: none;
    }

    .header-filtr-polozky {
        display: none;
    }
}

#divDalsiPobyty ul.pagination {
    display: flex;
    flex-wrap: wrap;
}

#divDalsiPobyty ul.pagination li {
    margin-bottom: 5px;
}

.modal-multicheckbox button {
    position: relative !important;
}

.modal-multicheckbox button.btn-close {
    width: unset !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

button.btn-multicheckbox {
    position: relative !important;
    background-color: #fff !important;
    color: #495057 !important;
    border: 1px solid #ced4da !important;
}
    button.btn-multicheckbox.dropdown-toggle::after {
        margin-left: 0.3em;
    }
.list-group-item-uroven-1 {

}
.list-group-item-uroven-2 {
    padding-left: 40px;
}
.list-group-item-uroven-3 {
    padding-left: 70px;
}
.list-group-item-uroven-4 {
    padding-left: 100px;
}

.mandatory-field {
    color:#E30020;
    font-weight: bold;
    font-size: 20px;
}

.main-menu .navigation .menu ul.dropdown {
    z-index: 100000;
}

#cbTerminPozdeji {
    margin-left: unset;
}

.btn-terminy-poptavka {
    background-color: #353736 !important;
}

.cluster {
    box-sizing: content-box;
}
.cluster span {
    box-sizing: content-box;
}
.date-picker-wrapper {
    z-index: 100;
}

.ikony-varianty-pokoje span {
    font-size: 26px;
}

.ikony-varianty-pokoje .fadark {
    color: #E30020;
}

.ikony-varianty-pokoje .falight {
    color: #E30020;
    opacity: 0.5;
}

.ikony-varianty-pokoje span {
    color: lightgray;
}

.ikony-varianty-pokoje .fa-male {
    font-size: 26px;
}

.ikony-varianty-pokoje .fa-child, .ikony-varianty-pokoje .fa-baby {
    font-size: 18px;
}

.hero-area-no-image {
    min-height: unset !important;
    background-image: unset !important;
}

    .hero-area-no-image .hero-inner {
        margin-top: 50px !important;
    }

.bannery-dlazdice {
    margin-top: 25px;

}

.bannery-dlazdice-wrapper {
    margin-bottom: 10px;
}

@media only screen and (min-width: 991px) {
    .bannery-dlazdice {
        gap: 10px;
        display: grid;
        grid-template-columns: auto auto auto auto;
    }
    .bannery-dlazdice-wrapper {
        margin-bottom: 0px;
    }
}

.bannery-dlazdice-wrapper {
    display: block;
}

    .bannery-dlazdice-wrapper img {
        width: 100%;
        height: auto;
    }

.bannery-dlazdice-inner-klasik, .bannery-dlazdice-inner-nudle {
    position: relative;
}

.bannery-dlazdice-anotace, .bannery-dlazdice-titulek, .bannery-dlazdice-popis, .bannery-dlazdice-titulek2 {
    color: white;
    position: absolute;
    left: 15px;
    font-weight: bold;
}

.bannery-dlazdice-anotace {
    top: 15px;
    font-size: 24px;
    background-color: #E30020;
    padding: 8px;
}

.bannery-dlazdice-titulek {
    bottom: 45px;
    font-size: 26px;
}

.bannery-dlazdice-titulek2 {
    bottom: 18px;
    font-size: 26px;
}

.bannery-dlazdice-popis {
    bottom: 15px;
    font-size: 18px;
}

.bannery-dlazdice-inner-w4 {
    grid-column: span 4 / span 4;
}
.bannery-dlazdice-inner-w2 {
    grid-column: span 2 / span 2;
}
.bannery-dlazdice-inner-h4 {
    grid-row: span 4 / span 4;
}
.bannery-dlazdice-inner-h2 {
    grid-row: span 2 / span 2;
}

section#hero-area.overlay.hero-area-zahlavi-dlazdice {
    background-image: none !important;
    overflow: hidden;
    min-height: auto !important;
    padding-bottom: 30px;
}
    section#hero-area.overlay.hero-area-zahlavi-dlazdice .btn:disabled {
        opacity: 1;
        color: white !important;
        cursor: not-allowed;
        background-color: #808080;
    }
.bannery-dlazdice-background-image {
    position: absolute;
    opacity: 0.5;
    min-height: 100%;
    width: 100%;
}
.bannery-dlazdice-ver-8 {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    gap: 20px;
}
.bannery-dlazdice-ver-8--hidden {
    display: none;
}
    .bannery-dlazdice-ver-8 a {
        border-radius: 15px;
    }
.bannery-dlazdice-ver-8--mobile {
    display: none;
}
.tab-content-ver-8 .filtr-row-controls--disabled {
    display: none;
}

@media only screen and (min-width: 991px) {
    .hompage-search-container {
        padding-right: 0px;
    }
}
@media only screen and (max-width: 991px) {
    .bannery-dlazdice-background-image {
        opacity: 1;
    }
    .bannery-dlazdice-ver-8 {
        display: none;
    }
    .bannery-dlazdice-ver-8--mobile {
        display: grid;
        margin: 15px 5px 0px 5px;
    }
}
.bannery-dlazdice-ver-8-wrapper {
    display: block;
    position: relative;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.bannery-dlazdice-ver-8-wrapper--big {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    overflow: hidden;
    max-height: 336px;
}
    .bannery-dlazdice-ver-8-wrapper--big img {
        max-width: 100%;
    }

.bannery-dlazdice-ver-8-wrapper--small {
    grid-column: 5 / 7;
    overflow: hidden;
    max-height: 155px;
}
    .bannery-dlazdice-ver-8-wrapper--small img {
        max-width: 100%;
    }

    .bannery-dlazdice-ver-8-wrapper--small .bannery-dlazdice-anotace {
        left: 8px;
        top: 8px;
        padding: 5px;
        font-size: 18px;
    }

    .bannery-dlazdice-ver-8-wrapper--small .bannery-dlazdice-titulek {
        bottom: 30px;
        left: 8px;
        font-size: 20px;
    }

    .bannery-dlazdice-ver-8-wrapper--small .bannery-dlazdice-titulek2 {
        bottom: 30px;
        left: 8px;
        font-size: 20px;
    }

    .bannery-dlazdice-ver-8-wrapper--small .bannery-dlazdice-popis {
        bottom: 4px;
        left: 8px;
        font-size: 14px;
    }

.bannery-dlazdice-ver-8-container {
    display: flex;
}

.bannery-dlazdice-ver-8-arrow {
    display: flex;
    align-items: center;
    font-size: 42px;
}

    .bannery-dlazdice-ver-8-arrow i {
        cursor: pointer;
        color: #E30020;
    }

.bannery-dlazdice-ver-8-arrow--left {
    margin-right: 15px;
}

.bannery-dlazdice-ver-8-arrow--right {
    margin-left: 15px;
}

.bannery-dlazdice-ver-8-dots-container {
    font-size: 18px;
    margin-top: 25px;
    text-align: center;
}

    .bannery-dlazdice-ver-8-dots-container i {
        cursor: pointer;
        color: #E30020;
    }

@media only screen and (max-width: 991px) {
    .bannery-dlazdice-ver-8-wrapper--big {
        grid-column: 1 / 7;
        max-height: unset;
    }

    .bannery-dlazdice-ver-8-wrapper--small {
        grid-column: 1 / 7;
        max-height:unset;
    }

    .bannery-dlazdice-ver-8 {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .bannery-dlazdice-ver-8-arrow {
        display: none;
    }

    .bannery-dlazdice-ver-8-dots-container {
        display: none;
    }
}

#cookies-bar {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #000;
    z-index: 900;
}
#cookies-bar-container {
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 85px;
}
#cookies-bar-text {
    color: #fff;
}
.cookies-bar-container-buttons {
    margin-left: auto;
    text-align: right;
    display: flex;
}
@media only screen and (max-width: 968px) {
    .cookies-bar-container-buttons {
        display: block;
    }
}
@media only screen and (min-width: 740px) {
    #cookies-bar-text {
        margin-left: 150px;
    }

    .cookies-bar-container-buttons {
        margin-right: 150px;
    }

    #cookies-bar-container {
        margin-bottom: 0px;
    }
}
#cookies-bar-btn-settings {
    margin: 3px;
    background-color: #666666;
}
#cookies-bar-btn-accept-all {
    margin: 3px;
    background-color: #163e92;
}
#cookies-bar-btn-settings--modal {
    margin-left: auto;
    background-color: #666666;
}

#cookies-bar-btn-accept-all--modal {
    background-color: #163e92;
}
.cookies-bar-option {
    margin-top: 20px;
}
    .cookies-bar-option input {
        margin-left: 5px;
    }
    .cookies-bar-option label {
        margin-left: 10px;
    }
    .cookies-bar-option p {
        margin-left: 30px;
    }
.cookies-bar-option--disabled, .cookies-bar-option--disabled label, .cookies-bar-option--disabled input {
    cursor: not-allowed;
}

.hotel-detail-stitky-contaiter {
    margin-bottom: 15px;
}
.hotel-detail-usp-contaiter {
    margin-bottom: 15px;
}
.hotel-detail-usp-contaiter-icon-container {
    display: inline-block;
    margin-right: 4px;
    font-size: 1rem;
}

.hotel-detail-usp-contaiter-text-container {
    display: inline-block;
    margin-right: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hotel-detail-usp-contaiter-container {
    white-space: nowrap;
}

.hotel-detail-info-tab {
    display: none;
}
.hotel-detail-info-tab-buttons-container {
    display: flex;
    align-items: stretch;
    padding-top: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
button.hotel-detail-info-tab-button:active {
    outline: none !important;
}
button.hotel-detail-info-tab-button {
    width: 100%;
    padding: 10px 0px 10px 0px;
    border-width: 0px;
    border-radius: 0px;
    background-color: transparent !important;
    text-transform: uppercase;
    color: darkgray !important;
    border-bottom: 4px solid white !important;
    outline: none !important;
}
    button.hotel-detail-info-tab-button--active, button.hotel-detail-info-tab-button:hover {
        color: #163e92 !important;
        border-bottom: 4px solid #163e92 !important;
    }
.hotel-detail-info-tab {
    display: none;
}
.hotel-detail-info-tab--active {
    display: block;
}
.hotel-detail-usp-tab-contaiter {

}
.hotel-detail-usp-row {
    display: flex;
    align-items: center;
}
.hotel-detail-usp-icon {
    margin: 10px 20px 10px 10px;
}
    .hotel-detail-usp-icon i {
        font-size: 22px;
    }
.hotel-detail-usp-text {
    font-size: 15px;
    font-weight: bold;
}

.div-seznam-dlazdice-v5 h3 a {
    font-size: 24px;
    color: black;
}
.div-seznam-dlazdice-v5 .trip-price span span {
    display: block;
    color: white;
    background-color: #614091;
    padding: 8px 16px 8px 16px;
    border-radius: 6px;
}
.div-seznam-dlazdice-v5 .trip-price span.trip-price-from, .div-seznam-dlazdice-v5 .trip-price span.trip-price-suffix {
    font-size: 12px;
    color: lightgray;
    margin-right: 8px;
    display: inline;
}
.div-seznam-dlazdice-v5 .trip-price span.trip-price-from {
    padding-bottom: 6px;
}
.div-seznam-dlazdice-v5 .trip-price span.trip-price-suffix {
    padding-top: 6px;
}
.div-seznam-dlazdice-v5 .destinace, .div-seznam-dlazdice-v5 .destinace a {
    font-size: 12px;
}
.div-seznam-dlazdice-v5 i {
    font-size: 22px;
}
.div-seznam-dlazdice-v5 span.dlazdice-icon-label {
    font-size: 15px;
    padding: 0px 10px 5px 20px;
}
.div-seznam-dlazdice-v5 .dlazdice-icon-row {
    margin-bottom: 6px;
}
.div-seznam-dlazdice-v5 .single-package {
    height: 98%;
    display: flex;
    flex-flow: column;
}
.div-seznam-dlazdice-v5 .info-button {
    margin-top: auto;
    text-align: center;
    margin-bottom: 25px;
}
.div-seznam-dlazdice-v5 .trip-details {
    padding-bottom: 0px;
}

.btn:focus {
    box-shadow: 0 0 0 .2rem #163e9250;
}

#site-header hr {
    margin-bottom: 70px;
}

ul.social i {
    font-size: 25px;
}
#menu-oblibene-social a {
    position: relative;
}
#menu-oblibene-social a span {
    position: absolute;
    left: 8px;
    bottom: -5px;
    color: white;
    background: red;
}

.terminy-controls {
    display: flex;
}
.terminy-controls--previous {

}
.terminy-controls--next {
    flex: 1;
    text-align: right;
}


.dlazdice-galerie {
    position: relative;
}
.dlazdice-galerie__fotka {
    display: none;
}
.dlazdice-galerie__fotka--aktivni {
    display: block;
}
.dlazdice-galerie__tlacitko {
    width: 40px;
    height: 40px;
    background-color: white;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    background-color: white;
    cursor: pointer;
}
.dlazdice-galerie__tlacitko--visible {
    display: flex;
}
.dlazdice-galerie__tlacitko--predchozi {
    border-radius: 0px 12px 12px 0px;
    top: 85px;
}
.dlazdice-galerie__tlacitko--dalsi {
    border-radius: 12px 0px 0px 12px;
    right: 0px;
    top: 85px;
}


.trip-single-dlazdice .owl-controls .owl-nav div {
    position: absolute;
    top: 50%;
    background: transparent;
    font-size: 40px;
    margin: 0;
    margin-top: -30px;
    width: 40px;
    height: 40px;
    background: transparent;
    padding: 0;
    line-height: 60px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .trip-single-dlazdice .owl-controls .owl-nav div:hover {
        background: #E30020;
        height: 60px;
    }

    .trip-single-dlazdice .owl-controls .owl-nav div.owl-prev {
        left: 0;
    }

    .trip-single-dlazdice .owl-controls .owl-nav div.owl-next {
        right: 0;
    }


.trip-offer, .dlazdice-oblibene-hotel, .dlazdice-oblibene, .trip-offer-stars, .dlazice-ikona-ve-fotce {
    z-index: 10;
}

.col-arrow-bottom {
    margin-top: auto;
    margin-bottom: 20px;
}

.ml-auto {
    margin-left: auto;
}

.background-image-transition {
    transition: background-image 0.4s ease-in-out;
}

.program-popis ul, .program-popis ul li {
    list-style: disc;
    margin-left: 20px;
}

.program-popis {
	margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
}

.title-line .pod-h2 {
        font-size: 24px;
        font-weight: 600;
	
}

.kod-kuponu {
    text-align: center;
    background-color: #efefef;
    font-size: 32px;
    margin-top: 30px;
    padding: 12px 0px;
    font-weight: bold;
    font-family: Courier New, Courier, monospace;
}

.youtube-player-responsive-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.youtube-player-responsive {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.obsazenost-sipka a {
    font-size: 30px;
    color: #163e92;
}
    .obsazenost-sipka a:hover {
        color: #E30020;
    }
	
.vedlefotky p {
	margin-top: 0px !important;
}
.blog-strom-kategorie {
    display: block;
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 18px;
}
.blog-strom-podkategorie {
    display: block;
    margin-left: 15px;
}

.categories-level2 {
    padding-left: 22px;
}

.hotel-kratky-popis {
    margin-bottom: 15px;
    margin-right: 15px;
    color: #666666;
}
.destinace-poddestinace {
    columns: 1;
}
@media only screen and (min-width: 430px) {
    .destinace-poddestinace {
        columns: 2;
    }
}
@media only screen and (min-width: 1124px) {
    .destinace-poddestinace {
        columns: 3;
    }
}
.typ-pobytu-info {
    display: flex;
    margin-top: 20px;
    align-items: center;
}
.typ-pobytu-info--cena {
    margin-left: 15px;
    flex-grow: 1;
}
.typ-pobytu-info--tlacitko {
}

.logov .header-kontakt {
    display: none;
}

