@font-face
{
    font-family: "Source Sans Pro";
    src:url("./fonts/sourcesans-pro.e7854d682f5ff7646dcacd688a6c8fc7.woff2") format("woff2");
}
@font-face
{
    font-family: "Branding Sunweb";
    src:url("./fonts/branding--medium.4167fe7955ca9ab02e864312a485f36f.woff2") format("woff2");
}
@font-face
{
    font-family: "Branding Sunweb Bold";
    src:url("./fonts/branding--bold.148e9471a6b051b6c24c561fb7483975.woff2") format("woff2");
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

@media (min-width: 992px) {
    #header .header-logo img {
        transition: all 0.3s ease;
        position: relative;
        top: 0;
        image-rendering: -webkit-optimize-contrast;
        transform: translateZ(0);
        content: url("../img/sunweb_memmories.png");
        width: 170px;
    }
    .img-fluid{
     max-width:100%!important;
    }
}


.switch {
    position: relative;
    display: block;
    vertical-align: top;
    width: 100px;
    height: 30px;
    padding: 3px;
    margin: 0 10px 10px 0;
    background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
    border-radius: 18px;
    box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    box-sizing:content-box;
}
.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    box-sizing:content-box;
}
.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 14px;
    text-transform: uppercase;
    background: #094E8F;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
    box-sizing:content-box;
}
.switch-label:before, .switch-label:after {
    position: absolute;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    box-sizing:content-box;
}
.switch-label:before {
    content: attr(data-off);
    right: 11px;
    color: #aaaaaa;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
    content: attr(data-on);
    left: 11px;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
}
.switch-input:checked ~ .switch-label {
    background: #ed2924;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
    opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
    opacity: 1;
}
.switch-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
    background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
    border-radius: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 12px;
    height: 12px;
    background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
    border-radius: 6px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
    left: 74px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Transition
========================== */
.switch-label, .switch-handle {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}



h4 {
    color: #ed2924;
}
.iti {
    width:100%;
}

.toggle.ios, .toggle-on.ios, .toggle-off.ios { border-radius: 20px; }
.toggle.ios .toggle-handle { border-radius: 20px; }

.qty{
    max-width: 105px;
}
.qty .count {
    color: #000;
    display: inline-block;
    vertical-align: top;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    padding: 0 2px;
    min-width: 35px;
    text-align: center;

}
.qty .plus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: white;
    width: 30px;
    height: 30px;
    font: 29px/1 Arial,sans-serif;
    text-align: center;
    border-radius: 50%;
}
.qty .minus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: white;
    width: 30px;
    height: 30px;
    font: 30px/1 Arial,sans-serif;
    text-align: center;
    border-radius: 50%;
    background-clip: padding-box;
}

.minus:hover{
    background-color: #ed2924 !important;
}
.plus:hover{
    background-color: #ed2924 !important;
}

input.count{
    border: 0;
    width: 2%;
}

span.minus, span.plus{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input.count::-webkit-outer-spin-button,
input.count::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#footer {
    position: relative;
    /*padding: 10px 10px 0px 10px;*/
    bottom: 0;
    width: 100%;
    /* Height of the footer*/
    flex-grow : 1;
    margin-top: 0px;
}
.main {
    background-color: #fff;
    display: flex;
    flex-flow: column;
    height: 100%;
}

.logo-hor {
    max-width:70%;
}

.thumb-info .thumb-info-title {
    font-size: 18px;
}

.tooltip_styled {
    display: inline;
    position: relative;
    z-index: 999;
}
.tooltip-item {
    cursor: pointer;
    display: inline-block;
}
.tooltip-item::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 20px;
    bottom: 100%;
    left: 50%;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.tooltip_styled:hover .tooltip-item::after {
    pointer-events: auto;
}
.tooltip-content {
    position: absolute;
    z-index: 9999;
    width: 200px;
    left: 50%;
    margin: 0 0 20px -100px;
    bottom: 100%;
    text-align: left;
    line-height: 20px;
    display: block;
    padding: 15px;
    font-size: 12px;
    color: #fff;
    box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
    background: #333;
    opacity: 0;
    cursor: default;
    pointer-events: none;
}
.tooltip-effect-1 .tooltip-content {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}
.tooltip-effect-2 .tooltip-content {
    -webkit-transform-origin: 50% calc(100% + 10px);
    transform-origin: 50% calc(100% + 10px);
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
}
.tooltip-effect-3 .tooltip-content {
    -webkit-transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
    transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}
.tooltip-effect-4 .tooltip-content {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale3d(0.7, 0.3, 1);
    transform: scale3d(0.7, 0.3, 1);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
}
.tooltip_styled:hover .tooltip-content {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}
.tooltip_styled.tooltip-effect-2:hover .tooltip-content {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
}
.tooltip-content::after {
    content: "";
    top: 100%;
    left: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: #333;
    border-width: 10px;
    margin-left: -10px;
}
.tooltip-content .label {
    margin-left: 10px;
}
.tooltip-content i {
    font-size: 20px !important;
    top: 3px !important;
    left: -3px !important;
    position: relative;
}
.tooltip-content h4 {
    display: block;
    margin: 0 0 10px;
    line-height: 14px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}
.tooltip-content a {
    font-weight: 700;
}
.tooltip_flip {
    position: relative;
}
.tooltip_flip::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: 100%;
    pointer-events: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.tooltip_flip:hover::after {
    pointer-events: auto;
}
.tooltip-content-flip {
    position: absolute;
    z-index: 9999;
    width: 80px;
    height: 80px;
    left: -40%;
    bottom: 100%;
    text-align: center;
    color: #fff;
    opacity: 0;
    margin-bottom: 7px;
    cursor: default;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}

.strip_all_tour_list {
    /*margin-bottom: 30px;*/
    background-color: #fff;
    display: block;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.strip_all_tour_list p {
    font-size: 13px;
    line-height: 1.4;
}
.strip_all_tour_list h3 {
    text-transform: uppercase;
}
.strip_all_tour_list .ribbon_3 {
    left: 7px;
}
.tour_list_desc .rating {
    margin: 15px 0 3px -3px;
    font-size: 15px;
}
.img_list {
    overflow: hidden;
    min-height: 220px;
    text-align: center;
    position: relative;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.img_list img {
/*    width: auto;
    height: 240px;
    position: absolute;
    left: -10%;*/
}
.img_list a img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-backface-visibility: hidden;
}
.img_list a:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.img_list .short_info {
    padding: 5px;
    text-align: left;
    min-height: 38px;
    font-size: 13px;
    font-weight: 500;
}
.price_list .button {
    display: block;
}
.tour_list_desc {
    padding: 10px 20px 0 0;

    height: 200px;
    line-height: 17px;
}
.tour_list_desc h3 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
}
.price_list {
    display: table;
    height: 220px;
    font-size: 38px;
    color: #e74c3c;
    width: 100%;
    margin-left: -10px;
}
.price_list small {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 10px;
    line-height: 12px;
}
.price_list div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.price_list p {
    padding: 0;
    margin: 0;
}
.price_list .normal_price_list {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    margin-top: 10px;
}
.price_list sup {
    font-size: 22px;
    position: relative;
    top: -10px;
}
ul.add_info {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.add_info li {
    display: inline-block;
    margin-right: 5px;
    /*border: 1px solid #ededed;*/
    text-align: center;
    width: 35px;
    height: 35px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
ul.add_info li a {
    color: #555;
    width: 35px;
    height: 35px;
    display: block;
}
ul.add_info li i {
    display: inline-block;
    font-size: 22px;
    top: 6px;
    position: relative;
}
#filters_col {
    background-color: #fff;
    padding: 15px 10px 15px 15px;
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 15px;
}
#filters_col label {
    color: #333;
    font-weight: 400;
}
a#filters_col_bt {
    display: block;
    color: #333;
}
a#filters_col_bt .icon_set_1_icon-65 {
    font-size: 20px;
    position: relative;
    top: 0;
    margin-right: 5px;
}
.filter_type h6 {
    border-top: 1px solid #ddd;
    margin: 15px 0;
    padding: 15px 0 0;
    font-size: 12px;
}
.filter_type ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}
.filter_type ul li .rating {
    font-size: 16px;
    line-height: 1;
    margin: 2px 0 0 -4px;
    display: inline-block;
}
#Img_carousel .sp-selected-thumbnail {
    border-bottom: 2px solid #e04f67;
}
.parallax-content-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
    padding: 25px 0 20px;
    color: #fff;
    font-size: 13px;
    background: -webkit-linear-gradient(top, transparent, #000);
    background: linear-gradient(to bottom, transparent, #000);
    width: 100%;
}
.parallax-content-2 div h1 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.parallax-content-2 .rating {
    font-size: 14px;
}
#price_single_main {
    padding-top: 10px;
    text-align: right;
    font-weight: 400;
    line-height: 1;
}
#price_single_main span {
    font-size: 60px;
    color: #3cf;
}
#price_single_main sup {
    font-size: 22px;
    position: relative;
    top: -25px;
}
#price_single {
    background-color: #e74c3c;
    color: #fff;
    font-size: 36px;
    margin: -15px;
    padding: 20px 15px 10px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    margin-bottom: 15px;
}
#price_single small {
    font-size: 12px;
}
#single_tour_feat ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: table;
    border-bottom: 2px solid #555;
    margin-bottom: 30px;
}
#single_tour_feat ul li {
    display: table-cell;
    width: 1%;
    vertical-align: middle;
    text-align: center;
    padding: 0 10px 20px;
    white-space: nowrap;
    font-size: 13px;
}
#single_tour_feat ul li:last-child {
    margin-right: 0;
}
#single_tour_feat ul li i {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}
#single_tour_desc h3 {
    font-size: 22px;
    margin-top: 5px;
}
#single_tour_desc h4 {
    line-height: 20px;
    font-size: 18px;
}
#map {
    width: 100%;
    height: 450px;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.table td,
.table th {
    border-top: none;
}
.table.table_summary td {
    border-top: 1px solid #ededed;
    width: 50%;
}
.table.table_summary tr.total {
    color: #e04f67;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.review_strip_single {
    position: relative;
    padding: 30px 0 20px;
    margin: 30px 0 25px;
    border-bottom: 1px solid #ddd;
}
.review_strip_single.last {
    margin-bottom: 0;
    border-bottom: 0;
}
.review_strip_single img {
    top: -15px;
    position: absolute;
    left: 0;
    border: 4px solid #fff;
}
.review_strip_single h4 {
    font-size: 18px;
    margin: -12px 0 35px 90px;
    padding: 0;
}
.review_strip_single small {
    float: right;
    font-size: 12px;
    margin-top: -10px;
    font-style: italic;
}
.review_strip_single .rating {
    font-size: 16px;
}
.normal_price_single {
    font-size: 18px;
    text-decoration: line-through;
}
.price_in {
    font-size: 42px;
    color: #e74c3c;
    border-bottom: 1px solid #ededed;
    text-align: center;
    padding-top: 30px;
    background-color: #fff8e5;
    margin: -20px -20px 20px;
}
.price_in small {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 20px;
    margin-top: 4px;
}
.price_in p {
    padding: 0;
    margin: 0;
}
.normal_price_in {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    margin-top: 10px;
}
.price_in sup {
    font-size: 22px;
    position: relative;
    top: -10px;
}
.table.options_booking td i {
    font-size: 26px;
}
.table.options_booking td {
    vertical-align: middle;
}
#general_rating {
    font-size: 18px;
    margin: 10px 0 20px;
}
#general_rating .rating {
    display: inline;
}
#rating_summary ul {
    list-style: none;
    margin: 0 0 -5px;
    padding: 0;
}
#rating_summary ul li {
    margin-bottom: 5px;
}
#rating_summary ul li .rating {
    display: inline-block;
    font-size: 14px;
    float: right;
}


.ribbon_3 {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}
.ribbon_3 span {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #79a70a;
    background: linear-gradient(#9bc90d 0%, #79a70a 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 19px;
    left: -21px;
}
.ribbon_3 span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #638908;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #638908;
}
.ribbon_3 span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #638908;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #638908;
}
.ribbon_3.popular span {
    background: linear-gradient(#ed2924 0%, #ed2924 100%);
}
.ribbon_3.popular span::before {
    border-left: 3px solid #a3362a;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #a3362a;
}
.ribbon_3.popular span::after {
    border-left: 3px solid transparent;
    border-right: 3px solid #a3362a;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #a3362a;
}

#scrollHere{
    scroll-behavior: smooth;
}


@media (max-width: 767px) {

    .list.list-icons {
        list-style: none;
        padding-left: 0;
        padding-right: 0;
        width: 75%;
        /* text-align: initial; */
        margin-left: 2rem;
        margin-right: 2rem;
    }


    #top_line {
        display: none;
    }
    .strip_all_tour_list {
        text-align: center;
    }
    .img_list {
        width: 100%;
        margin: auto;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .img_list img {
        left: 0;
        width: 100%;
        height: auto;
        top: -30%;
    }
    .tour_list_desc {
        padding: 0 15px;
        border-right: none;
        height: auto;
    }
    .price_list {
        display: block;
        height: auto;
        margin-left: 0;
        text-align: center;
        padding: 25px 0 15px;
    }
    .price_list div {
        display: block;
        text-align: center;
    }
    .price_list .button {
        display: block;
        margin: 15px;
    }
    .main_title {
        font-size: 14px;
    }
    .main_title h2 {
        font-size: 24px;
    }
    .main_title p {
        font-size: 16px;
    }
    .styled-select-cat select {
        background: transparent;
        width: 107%;
        padding: 20px 5px 20px 45px;
        border: 0;
        border-radius: 0;
        margin: 0;
        font-weight: 400;
        -moz-appearance: window;
        -webkit-appearance: none;
        cursor: pointer;
        color: #333;
    }
    .styled-select-cat {
        width: 100%;
        overflow: hidden;
        position: relative;
        border: none;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    .styled-select-cat:before {
        font-style: normal;
        font-weight: 400;
        font-family: "icon_set_1";
        font-size: 22px;
        content: "\53";
        position: absolute;
        left: 15px;
        top: 15px;
    }
    .styled-select-cat::-ms-expand {
        display: none;
    }
    .styled-select-cat select:focus {
        outline: none;
    }
    .table.cart-list,
    .table.cart-list thead,
    .table.cart-list tbody,
    .table.cart-list th,
    .table.cart-list td,
    .table.cart-list tr {
        display: block;
        border: 0;
    }
    .table.cart-list thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .table.cart-list tr {
        border: 1px solid #ccc;
    }
    .table.cart-list td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 50%;
    }
    .table.cart-list td:before {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
    .table.cart-list td:nth-of-type(1):before {
        content: "Item";
        font-weight: 700;
        color: #111;
    }
    .table.cart-list td:nth-of-type(2):before {
        content: "Quantity";
        font-weight: 700;
        color: #111;
    }
    .table.cart-list td:nth-of-type(3):before {
        content: "Discount";
        font-weight: 700;
        color: #111;
    }
    .table.cart-list td:nth-of-type(4):before {
        content: "Total";
        font-weight: 700;
        color: #111;
    }
    .table.cart-list td:nth-of-type(5):before {
        content: "Actions";
        font-weight: 700;
        color: #111;
    }
    .thumb_cart {
        display: none;
    }
    #single_tour_feat ul {
        display: block;
        margin-bottom: 10px;
    }
    #single_tour_feat ul li {
        display: inline-block;
        width: auto;
        font-size: 11px;
    }
    .margin_60 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .margin_30 {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .parallax-window,
    #hero_2 {
        height: 360px;
        min-height: 360px;
    }
    .parallax-content-1 {
        height: 360px;
    }
    .parallax-content-1 > div {
        padding: 0 5%;
        font-size: 12px;
        padding-top: 20px;
    }
    .parallax-content-1 div h1,
    .parallax-content-1 div h3 {
        font-size: 32px;
        padding-top: 15px;
    }
    #banner {
        padding: 20px;
    }
    .banner a {
        position: relative;
        top: 15px;
        right: 0;
        left: 0;
        margin-bottom: 20px;
    }
    .banner h4 {
        font-size: 22px;
    }
    .tooltip-content-flip {
        width: 70px;
    }
    .parallax-content-2 {
        padding-bottom: 15px;
    }
    .parallax-content-2 div h1 {
        font-size: 22px;
    }
    .parallax-content-2 .rating {
        font-size: 12px;
        display: block;
    }
    #price_single_main,
    #price_single_main.hotel {
        font-size: 11px;
        text-align: left;
        padding-top: 0;
    }
    #price_single_main span {
        font-size: 20px;
    }
    #price_single_main sup {
        font-size: 20px;
        top: 0;
    }
    #hero_2 .intro_title h1 {
        font-size: 22px;
    }
    .bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
        font-size: 12px;
    }
    #hero {
        height: 420px;
        font-size: 12px;
    }
    .intro_title h3 {
        font-size: 26px;
        margin-bottom: 5px;
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
    }
    .item_cart {
        margin-top: 0;
    }
    .intro_title.error h1 {
        font-size: 50px;
    }
    .col-md-4.plan:first-child,
    .col-md-4.plan:last-child {
        margin-right: 0;
        margin-left: 0;
        border-width: 1px;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .plan-tall + .plan {
        border-left: 1px;
        border: solid #ddd;
    }
    .plan-tall {
        margin-right: 0;
    }
    #map_filter ul li a {
        min-width: inherit;
    }
    #map_filter ul li a span {
        display: none;
    }
    #map_filter ul li a i {
        font-size: 24px;
    }
    #map_contact {
        height: 300px;
    }
    #map_contact.contact_2 {
        margin-top: 60px;
    }
    .content-left {
        padding-top: 80px;
    }
    .map-right #map {
        height: 375px;
    }
    #top_line.visible_on_mobile {
        display: block;
    }
    a#lang_link,
    a#currency_link {
        position: relative;
        text-indent: -999px;
        width: 20px;
        height: 20px;
        display: block;
    }
    #lang_link:before,
    #currency_link:before {
        text-indent: 0;
        font-size: 20px;
    }
    .dropdown-access .dropdown-menu:before {
        right: 5%;
    }
    a#access_link,
    a#wishlist_link {
        position: relative;
        text-indent: -999px;
        width: 20px;
        height: 20px;
        display: block;
    }
    #wishlist_link:before,
    #access_link:before {
        text-indent: 0;
        font-size: 20px;
    }
    .search-overlay-menu form {
        width: 80%;
        left: 10%;
        height: 50px;
        margin: -25px auto 0;
    }
    .search-overlay-menu input[type="search"] {
        font-size: 26px;
    }
    .search-overlay-menu form button {
        font-size: 1.5rem;
        top: 10px;
    }
    .laptop {
        display: none;
    }
    .score {
        display: none;
    }
}
@media (max-width: 480px) {
    .features-slider {
        padding: 11% 50px 10%;
    }
    .box_style_1 {
        padding: 15px;
    }
    .box_style_1 h3.inner {
        margin: -15px -15px 15px;
    }
    .img_list img {
        left: 0;
        width: 100%;
        height: auto;
        top: -5%;
    }
    .tooltip-item::after {
        width: 180px;
    }
    .tooltip-content {
        width: 180px;
        margin: 0 0 20px -90px;
    }
    .search_bar {
        width: 100%;
    }
    .sticky ul#top_tools,
    ul#top_tools {
        margin: 3px 25px 0 0;
    }
    .dropdown.dropdown-cart {
        display: none;
    }
    .dropdown.dropdown-search {
        font-size: 20px;
    }
    #testimonials h2 {
        font-size: 28px;
    }
    #score {
        float: none;
        margin-top: 15px;
    }
    .intro_title.error {
        display: table-cell;
    }
    .intro_title.error h1 {
        font-size: 36px;
    }
    .intro_title.error a.button_intro {
        display: none;
    }
    #search {
        padding: 0 5%;
        padding-top: 100px;
    }
    .promo_full_wp div h3 {
        font-size: 36px;
    }
    .promo_full_wp div a i {
        font-size: 60px;
    }
    #map_filter ul li a i {
        font-size: 18px;
    }
    #search ul.nav.nav-tabs {
        margin-left: 0;
        padding-left: 0;
        margin-bottom: 1px;
    }
    #search .nav-tabs > li > a {
        font-size: 11px;
        padding: 5px 8px;
    }
}

.swbtn {
    width: 100%;
    min-width: 75px;
    display: inline-block;
    min-width: 90px;
    border-radius: 1000px;
    border: 2px solid #ed2924;
    color: #ed2924;
    background-color: #fff;
    font-family: Branding Sunweb, Verdana, Geneva, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition-property: color, background-color, border-color, box-shadow;
    transition-property: color, background-color, border-color, box-shadow;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding: 16px 16px;
    line-height: 1;
    color: #fff;
    background-color: #ed2924;
    border-color: #ed2924;
}

.swInput{
    border-radius: 4px;
    border: 1px solid #92a1a9;
    font-size: 16px!important;
}
.swMenu li > a{
    font-family: Branding Sunweb , Verdana, Geneva, sans-serif;
    letter-spacing: 1px!important;
}
.tour_list_desc h4{
    font-family: Branding Sunweb , Verdana, Geneva, sans-serif;
    letter-spacing: unset!important;
    }

.bookBtn {
    width: 95%;
    min-width: 75px;
    display: inline-block;
    min-width: 90px;
    border-radius: 1000px;
    border: 2px solid #ed2924;
    color: #ed2924!important;
    background-color: #fff;
    font-family: Branding Sunweb, Verdana, Geneva, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition-property: color, background-color, border-color, box-shadow;
    transition-property: color, background-color, border-color, box-shadow;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding: 10px 16px;
    line-height: 1;
    color: #fff;
    background-color: #ed2924!important;
    border-color: #ed2924!important;
}

.swCarDesc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-family: Source Sans Pro,Verdana,Geneva,sans-serif;
    font-size: 16px!important;
}

.swTotalRate {
    font-size: 30px!important;
    width: 95%;
    font-family: Branding Sunweb,Verdana,Geneva,sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
}

#bookingCard {
    font-family: Source Sans Pro,Verdana,Geneva,sans-serif;
    letter-spacing: unset!important;
}

#bookingCard > * {
    font-family: Source Sans Pro,Verdana,Geneva,sans-serif;
    letter-spacing: unset!important;
}

.sw-text-primary {
    font-family: Source Sans Pro,Verdana,Geneva,sans-serif;
    color: #006996;;
}

.custom-secondary-font {
    font-family: Source Sans Pro,Verdana,Geneva,sans-serif;
    letter-spacing: unset!important;
}

.bgSunweb{
    background-color: #ed2924;
}