/*
*	GENERAL SETTINGS
*/

body {
    margin: 0;
    padding: 0;
    line-height: 22px;
    color: #000;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: #fff
}

figure {
    margin: 0
}

img {
    border: none;
    outline: none
}


/*.......................................... BEGIN ANIMATIONS ..........................................*/

@keyframes blink {
    50% {
        opacity: 0
    }
}

@-webkit-keyframes blink {
    50% {
        opacity: 0
    }
}


/*........................................... END ANIMATIONS ...........................................*/


/*............................................ BEGIN BUTTONS .............................................*/


/*
*	SCROLL BUTTON
*/

.scroll_btn {
    width: 60px;
    height: 60px;
    margin: auto;
    background-color: #e7502a;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .6s;
    -webkit-transition: background-color .6s
}

.scroll_btn::before {
    line-height: 60px;
    color: #fff;
    font-size: 25px;
    text-align: center;
    display: block
}

.scroll_btn:hover {
    background-color: #000
}


/*
*	RECT BUTTON
*/


/* submit button */

.rect_btn {
    height: 50px;
    padding: 0 50px;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    background-color: #e7502a;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    transition: color .5s;
    -webkit-transition: color .5s;
    transition: background-color .5s;
    -webkit-transition: background-color .5s
}

.rect_btn.block {
    width: 100%;
    display: block
}


/* pseudo-elements */

.rect_btn::before {
    margin-right: 8px
}

.rect_btn::after {
    margin-left: 8px
}


/* interactions */

.rect_btn:hover, .rect_btn:focus, .rect_btn.active {
    background-color: #000
}


/*
*	DARK BUTTON
*/

.big_btn {
    padding: 25px;
    line-height: 30px;
    color: #fff;
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
    display: block;
    transition: background-color .4s;
    -webkit-transition: background-color .4s
}


/* black */

.big_btn.black {
    background-color: #000
}

.big_btn.black:hover {
    background-color: #e7502a
}


/* orange */

.big_btn.orange {
    background-color: #e7502a
}

.big_btn.orange:hover {
    background-color: #000
}

@media all and (max-width:1240px) {
    .big_btn {
        padding: 20px;
        line-height: 28px;
        font-size: 22px
    }
}

@media all and (max-width:1000px) {
    .big_btn {
        padding: 18px;
        line-height: 26px;
        font-size: 20px
    }
}

@media all and (max-width:760px) {
    .big_btn {
        padding: 16px;
        line-height: 24px;
        font-size: 18px
    }
}

@media all and (max-width:440px) {
    .big_btn {
        padding: 14px;
        line-height: 22px;
        font-size: 14px
    }
}


/*............................................. END BUTTONS ..............................................*/


/*............................................. BEGIN FORMS ..............................................*/


/*
*	GENERAL SETTINGS
*/

input, textarea, button {
    letter-spacing: 1px;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none
}

input[type="text"], input[type="password"], input[type="number"], input[type="submit"], input[type="file"], textarea, select, button {
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none
}

input[type=submit], button {
    cursor: pointer
}

input[type=number] {
    -moz-appearance: textfield;
    box-shadow: none
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input::-moz-focus-inner {
    border: 0
}

input:disabled {
    opacity: .7
}

textarea {
    resize: none;
    overflow: hidden
}


/* form */

form.generic {
    margin-bottom: 20px
}

form.generic.contact_form {
    padding: 40px
}

form.generic p.small {
    margin: 0
}


/* op results */

form.generic .op_result {
    line-height: 20px;
    text-align: center
}

form.generic .op_result span {
    padding: 0 8px;
    border-left: 1px solid #999;
    display: inline-block
}

form.generic .op_result span:first-of-type {
    border-left: none
}


/* table */

form.generic table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed
}

form.generic table td {
    padding-top: 0;
    padding-bottom: 18px;
    vertical-align: top
}

form.generic table td:not(:last-child) {
    padding-right: 9px
}

form.generic table td:not(:first-child) {
    padding-left: 9px
}


/* inputs */

form.generic input[type="text"], form.generic input[type="password"], form.generic input[type="file"], form.generic textarea {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    color: #000;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    transition: background-color .5s;
    -webkit-transition: background-color .5s
}

form.generic textarea {
    height: 170px;
    line-height: 20px;
    padding: 15px 0
}

form.generic ::-moz-placeholder {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 1
}

form.generic ::-webkit-input-placeholder {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 1
}

form.generic :-ms-input-placeholder {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 1
}


/* focus */

form.generic input[type="text"]:focus, form.generic input[type="password"]:focus, form.generic input[type="file"]:focus, form.generic textarea:focus {
    background-color: #f6f6f6
}


/*** form footer ***/

form.generic .btns_wrapper {
    text-align: right
}

form.generic .btns_wrapper::after {
    height: 0;
    content: '';
    display: block;
    clear: both
}

form.generic .btns_wrapper p {
    height: 60px;
    margin: 0;
    line-height: 60px;
    float: left
}

@media all and (max-width:760px) {
    /* op result */
    form.generic .op_result {
        text-align: left
    }
    form.generic .op_result span {
        padding: 0;
        border-left: none;
        display: block
    }
    form.generic .op_result span::before {
        content: '- '
    }
    /* table */
    form.generic table td {
        display: block
    }
    form.generic table td:not(:last-child) {
        padding-right: 0
    }
    form.generic table td:not(:first-child) {
        padding-left: 0
    }
    /* inputs */
    form.generic [type="submit"] {
        width: 100%
    }
}


/*
*	CUSTOM INPUTS
*/


/* custom select */

.custom_select {
    height: 50px;
    margin-bottom: 10px;
    line-height: 50px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff;
    cursor: pointer;
    display: block;
    position: relative;
    transition: opacity .5s;
    -webkit-transition: .5s
}

.custom_select select {
    background-color: #eaeaea
}

.custom_select select option {
    text-align: center!important
}

.custom_select .cs_displayer {
    padding: 0 28px 0 15px
}

.custom_select.disabled {
    opacity: .5!important
}

.custom_select span {
    width: 0;
    height: 0;
    margin: auto;
    border-top: 6px solid #999;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    transition: border-color .4s;
    -webkit-transition: border-color .4s
}

.custom_select:hover span {
    border-top-color: #e7502a
}


/* check box */

.custom_checkbox {
    width: 14px;
    height: 14px;
    background-color: white;
    border: 1px solid #eaeaea;
    display: inline-block;
    position: relative
}

.custom_checkbox>span {
    width: 6px;
    height: 6px;
    margin: auto;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.custom_checkbox>span.current {
    background-color: #eaeaea
}

.custom_checkbox input {
    width: 14px;
    height: 14px;
    opacity: 0;
    margin: 0!important;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block
}


/* radio button */

.custom_radio {
    width: 14px;
    height: 14px;
    margin-bottom: -3px;
    background-color: white;
    border: 1px solid #f0c351;
    border-radius: 8px;
    display: inline-block;
    position: relative
}

.custom_radio>span {
    width: 8px;
    height: 8px;
    margin: auto;
    background-color: transparent;
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.custom_radio>span.current {
    background-color: #f0c351
}

.custom_radio input {
    width: 14px;
    height: 14px;
    opacity: 0;
    margin: 0!important;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block
}


/*
*	DATE PICKER
*/


/* calendar */

.ui-datepicker {
    max-width: 260px;
    padding: 9px;
    background-color: #fff;
    border: 1px solid #ccc;
    display: none
}

.ui-datepicker-header {
    height: 60px;
    color: #fff;
    text-align: center;
    background-color: #f0c351;
    position: relative;
    border-bottom: 1px solid #ccc
}

.ui-datepicker-header a {
    width: 0;
    height: 0;
    margin: auto;
    text-indent: -2000em;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    cursor: pointer
}

.ui-datepicker-header a.ui-datepicker-prev, .ui-datepicker-header a.ui-datepicker-next {
    transition: border-color .4s;
    -webkit-transition: border-color .4s
}

.ui-datepicker-header a.ui-datepicker-prev {
    border-right: 8px solid #fff;
    left: 20px
}

.ui-datepicker-header a.ui-datepicker-prev:hover {
    border-right-color: #000
}

.ui-datepicker-header a.ui-datepicker-next {
    border-left: 8px solid #fff;
    right: 20px
}

.ui-datepicker-header a.ui-datepicker-next:hover {
    border-left-color: #000
}

.ui-datepicker-header .ui-datepicker-title {
    height: 40px;
    line-height: 40px;
    padding: 10px 40px
}

.ui-datepicker-header .ui-datepicker-title select {
    height: 40px;
    margin: 0 10px;
    color: #fff;
    text-transform: uppercase;
    background-color: #f0c351;
    border: none;
    outline: none
}

.ui-datepicker-calendar {
    font-size: 14px;
    background-color: #fff;
    border-collapse: separate!important;
    border-spacing: 2px
}

.ui-datepicker-calendar th {
    height: 35px;
    padding: 0!important;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase
}

.ui-datepicker-calendar td {
    width: 35px;
    height: 35px;
    padding: 0!important;
    text-align: center
}

.ui-datepicker-calendar tbody a, .ui-datepicker-calendar tbody span {
    height: 35px;
    line-height: 35px;
    color: #fff;
    text-align: center;
    display: block
}

.ui-datepicker-calendar tbody a {
    background-color: #ccc
}

.ui-datepicker-calendar a:hover {
    background-color: #aaa
}

.ui-datepicker-calendar .ui-state-highlight {
    background-color: #000
}

.ui-datepicker-calendar .ui-state-active {
    background-color: #f0c351
}

.ui-datepicker-calendar .ui-state-disabled {
    background-color: #f1f1f1
}


/*.............................................. END FORMS ...............................................*/


/*............................................. BEGIN ICONS ..............................................*/

.icon {
    transition: color .5s;
    -webkit-transition: color .5s
}

.icon::before, .icon::after {
    font-family: "Ionicons";
    font-style: normal
}


/* IONICONS */


/* menu */

.icon.menu-icon::before {
    content: '\f394'
}

.icon.lock::before {
    content: '\f392'
}

.icon.plane::before {
    content: '\f214'
}

.icon.tag::before {
    content: '\f48d'
}

.icon.globe::before {
    content: '\f38c'
}

.icon.compose::before {
    content: '\f418'
}

.icon.calendar::before {
    content: '\f3f4'
}

.icon.hangout::before {
    content: '\f38d'
}

.icon.heart::before {
    content: '\f388'
}

.icon.people::before {
    content: '\f2d9'
}

.icon.next::before {
    content: '\f3d1'
}

.icon.close::before {
    content: '\f2d7'
}

.icon.flash::before {
    content: '\f137'
}

.icon.return::before {
    content: '\f12a'
}

.icon.toggler::after {
    content: '\f35f'
}

.icon.clock::before {
    content: '\f2fd'
}

.icon.alert::before {
    content: '\f100'
}

.icon.reload::before {
    content: '\f201'
}

.icon.remove::before {
    content: '\f128'
}

.icon.mail::before {
    content: '\f2eb'
}


/* social networks */

.icon.facebook::before {
    content: '\f231'
}

.icon.twitter::before {
    content: '\f243'
}

.icon.instagram::before {
    content: '\f351'
}


/* arrows */

.icon.arrow_up::before {
    content: '\f366'
}

.icon.arrow_right::after {
    content: '\f30f'
}

.icon.arrow_down::before {
    content: '\f35d'
}

.icon.arrow_left::before {
    content: '\f2ca'
}

.icon.arrow_prev::before {
    content: '\f361'
}

.icon.arrow_next::before {
    content: '\f363'
}


/*.............................................. END ICONS ...............................................*/


/*............................................. BEGIN LAYOUT .............................................*/


/*
*	BACKGROUNDS
*/

.light_grey_bg {
    background-color: #f2f2f2
}

.orange_bg {
    color: #fff;
    background-color: #e7502a
}

.white_bg {
    background-color: #fff
}


/* white top */

.white_top {
    position: relative;
    z-index: 0
}

.white_top::before {
    height: 200px;
    content: '';
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1
}

.light_grey_bg.white_top .wide_container {
    background-color: #f2f2f2
}


/*
*	CONTENT PANE
*/

.content_pane {
    padding: 60px 0;
    position: relative
}


/*** columns wrapper ***/

.content_pane .cols_wrapper::after {
    height: 0;
    content: '';
    display: block;
    clear: both
}

.content_pane .cols_wrapper .col:first-child {
    width: 280px;
    float: left
}

.content_pane .cols_wrapper .col:last-child {
    margin-left: 280px;
    padding-left: 60px;
    overflow: hidden
}


/*
*	ASIDE MENU
*/

.aside_menu, .aside_menu ul {
    margin: 0;
    padding: 0
}

.aside_menu {
    margin-bottom: 20px
}

.aside_menu {
    text-transform: uppercase;
    border-top: 1px solid #ededed
}

.aside_menu li {
    list-style: none;
    overflow: hidden
}

.aside_menu>li {
    margin-bottom: 1px;
    background-color: #fff;
    position: relative
}

.aside_menu>li>a {
    padding: 21px 12px;
    line-height: 18px;
    color: #e7502a;
    cursor: pointer;
    display: block;
    transition: all .4s;
    -webkit-transition: all .4s
}

.aside_menu>li a::before {
    margin-right: 8px;
    content: '\f363';
    font-family: 'Ionicons';
    font-size: 20px;
    vertical-align: text-bottom;
    opacity: 0;
    transform: translateX(-26px);
    -webkit-transform: translateX(-26px);
    transition: all .4s;
    -webkit-transition: all .4s
}


/* hover / active */

.aside_menu>li>a:hover, .aside_menu>li>a.active {
    color: #000
}

.aside_menu>li>a.active {
    transform: translateX(20px);
    -webkit-transform: translateX(20px)
}

.aside_menu>li>a.active::before {
    opacity: 1;
    transform: translateX(-8px);
    -webkit-transform: translateX(-8px)
}


/* options */

.aside_menu .options {
    width: 100%;
    padding: 4px 0 10px 0;
    position: relative;
    top: 100%;
    left: 0;
    display: none
}

.aside_menu .options a {
    padding: 6px 12px;
    color: #838383
}

.aside_menu .options a:hover {
    color: #000
}


/*
*	TABS
*/

.tab-content {
    display: none
}


/*
*	PAGE HEADER
*/

.section_header {
    padding-bottom: 60px;
    text-align: center
}

.section_header h2, .section_header h4 {
    width: 60%;
    margin-right: auto;
    margin-left: auto
}

.section_header h2 span {
    font-weight: 700
}


/*
*	EDITABLE CONTENT
*/

.editable_content>* {
    margin: 0;
    padding: 0;
    line-height: 26px
}

.editable_content h4 {
    margin-bottom: 15px;
    line-height: normal;
    text-transform: uppercase
}

.editable_content *+h4 {
    margin-top: 40px
}

.editable_content p {
    margin-bottom: 25px;
    color: #000;
    font-size: 18px
}


/* ul */

.editable_content ul {
    list-style: none
}

.editable_content ul li::before {
    margin-right: 8px;
    content: '\f120';
    color: #e7502a;
    font-family: 'Ionicons'
}


/* ol */

.editable_content ol {
    padding-bottom: 40px;
    list-style: none
}

.editable_content ol li {
    width: 50%;
    margin: -4px;
    padding: 0 40px 30px 40px;
    display: inline-block;
    box-sizing: border-box
}

.editable_content ol li::before {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    content: '';
    background: url('../img/list-bullet.png') no-repeat center /contain;
    display: inline-block;
    vertical-align: middle;
}


/*
*	PRICE DISPLAYER
*/

.price_displayer {
    margin-bottom: 1px;
    padding: 15px;
    color: #fff;
    text-align: center;
    background-color: #e7502a
}

.price_displayer>* {
    display: block
}

.price_displayer b {
    font-size: 18px;
    font-weight: 700
}

.price_displayer s {
    font-style: italic
}


/*
*	CONTACT TEASER
*/

.contact_teaser {
    padding-top: 15px;
    position: relative
}

.contact_teaser::before {
    width: 100%;
    height: 50%;
    content: '';
    background-color: #f2f2f2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.contact_teaser .wrapper {
    height: 400px;
    background-color: #e7502a;
    position: relative
}

.contact_teaser .wrapper>* {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.contact_teaser .image {
    background: url(../img/Banners/contact_teaser.jpg) no-repeat center /cover;
    opacity: 1;
    transition: opacity .6s;
    -webkit-transition: opacity .6s
}

.contact_teaser .link {
    display: table
}

.contact_teaser .link a {
    padding: 0px 600px 0 60px;
    line-height: 52px;
    color: #fff;
    font-size: 45px;
    text-transform: uppercase;
    text-shadow: 1px 3px 6px rgba(0, 0, 0, .65);
    display: table-cell;
    vertical-align: middle
}


/* hover */

.contact_teaser .wrapper:hover .image {
    opacity: .75
}

@media all and (max-width:1240px) {
    .contact_teaser .wrapper {
        height: 320px
    }
    .contact_teaser .link a {
        padding: 0px 400px 0 60px;
        line-height: 48px;
        font-size: 40px
    }
}

@media all and (max-width:1000px) {
    .contact_teaser .wrapper {
        height: 253px
    }
    .contact_teaser .link a {
        padding: 0px 260px 0 50px;
        line-height: 40px;
        font-size: 30px
    }
}

@media all and (max-width:1000px) {
    .contact_teaser {
        display: none
    }
}


/*
*	CONTACT PANE
*/

.contact_pane::after {
    height: 0;
    content: '';
    display: block;
    clear: both
}

.contact_pane .wide_container {
    position: relative
}


/* info */

.contact_pane .info {
    width: 40%;
    padding: 45px 30px;
    box-sizing: border-box
}

.contact_pane .info p+h4 {
    margin-top: 50px
}


/* map */

.contact_pane .map {
    width: 60%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0
}

@media all and (max-width:1000px) {
    .contact_pane .info, .contact_pane .map {
        width: 50%
    }
}

@media all and (max-width:760px) {
    .contact_pane .info, .contact_pane .map {
        width: auto
    }
    .contact_pane .map {
        height: 300px;
        position: static
    }
}


/*
*	SEARCH PANE (TRIPS)
*/

.search_form {
    padding-top: 50px;
    text-align: center
}


/* custom select */

.search_form .custom_select {
    width: 40%;
    margin: 0 30px;
    background-color: #f2f2f2;
    display: inline-block
}

.search_form .custom_select select {
    background-color: #f2f2f2
}


/*.............................................. END LAYOUT ..............................................*/


/*............................................. BEGIN LISTS ..............................................*/


/*
*	TRIPS
*/

.trips_recs article {
    width: 380px;
    margin-bottom: 40px;
    padding-bottom: 80px;
    background-color: #ccc;
    cursor: pointer;
    position: relative;
    float: left
}


/* image */

.trips_recs figure {
    height: 220px;
    display: block;
    position: relative
}

.trips_recs figure img {
    width: 100%;
    height: 100%;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}


/* price tag */

.trips_recs .price_tag {
    min-width: 100px;
    padding: 8px;
    text-align: center;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 15px
}

.trips_recs .price_tag.promo {
    color: #e7502a
}

.trips_recs .price_tag>* {
    display: block
}

.trips_recs .price_tag small, .trips_recs .price_tag s {
    font-size: 12px
}

.trips_recs .price_tag b {
    font-size: 15px
}


/* title */

.trips_recs .title_pane {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transition: height .4s .2s, background-color .4s;
    -webkit-transition: height .4s .2s, background-color .4s
}

.trips_recs .title {
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    position: absolute;
    bottom: 20px;
    left: 0;
    transition: bottom .6s;
    -webkit-transition: bottom .6s
}

.trips_recs h4 {
    line-height: 40px;
    padding: 0 25px
}


.trips_recs h4 a{
	color: #e7502a;
}


/* description */

.trips_recs .description {
    margin: auto;
    padding: 30px;
    line-height: 22px;
    color: #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity .4s, color .4s;
    -webkit-transition: opacity .4s, color .4s
}

.trips_recs .description b {
    margin: 80px 0 20px 0;
    display: block
}

.trips_recs .description span {
    height: 110px;
    margin: 0;
    overflow: hidden;
    display: block
}


/* hover */

.trips_recs article:hover .title_pane {
    height: 100%;
    transition-delay: 0s;
    -webkit-transition-delay: 0s
}

.trips_recs article:hover .title {
    bottom: -100%
}

.trips_recs article:hover .description {
    opacity: 1;
    transition-delay: .2s;
    -webkit-transition-delay: .2s
}

@media screen and (max-width:1260px) {
    .trips_recs article {
        width: 300px
    }
    /* image */
    .trips_recs figure {
        height: 174px
    }
    /* description */
    .trips_recs .description {
        padding: 25px
    }
    .trips_recs .description b {
        margin-top: 70px
    }
}

@media screen and (min-width:1001px) {
    .trips_recs article:not(:nth-child(3n)) {
        margin-right: 30px
    }
}

@media screen and (max-width:1000px) {
    .trips_recs article {
        width: 345px
    }
    /* image */
    .trips_recs figure {
        height: 200px
    }
}

@media screen and (min-width:761px) and (max-width:1000px) {
    .trips_recs article:not(:nth-child(2n)) {
        margin-right: 30px
    }
}

@media screen and (max-width:760px) {
    .trips_recs article {
        width: 400px
    }
    /* image */
    .trips_recs figure {
        height: 232px
    }
    /* description */
    .trips_recs .description b {
        margin-top: 95px
    }
}

@media screen and (max-width:440px) {
    .trips_recs article {
        width: 280px
    }
    /* image */
    .trips_recs figure {
        height: 162px
    }
    /* description */
    .trips_recs .description b {
        margin-top: 65px
    }
}


/*
*	CATEOGRIES (HOMEPAGE)
*/

.categories_recs {
    margin-bottom: 30px
}

.categories_recs article {
    width: 380px;
    margin: 0 15px;
    color: #e7502a;
    transition: color .5s;
    -webkit-transition: color .5s
}

.categories_recs article .wrapper {
    width: 380px;
    height: 600px;
    position: relative
}

.categories_recs article:first-child {
    margin-left: 0
}

.categories_recs article:last-child {
    margin-right: 0
}

.categories_recs article .wrapper>* {
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0
}


/* image */

.categories_recs figure img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0
}

.categories_recs article:nth-child(2n) figure {
    top: 0
}

.categories_recs article:nth-child(2n - 1) figure {
    bottom: 0
}

.categories_recs article:nth-child(2n) .description {
    bottom: 0
}

.categories_recs article:nth-child(2n - 1) .description {
    top: 0
}


/* description */

.categories_recs .description {
    background-color: #e6e6e6;
    display: table
}

.categories_recs .cell {
    padding: 30px;
    text-align: center;
    display: table-cell;
    vertical-align: middle
}

.categories_recs h3 {
    margin: 0 0 25px 0;
    font-weight: 700
}

.categories_recs p {
    margin: 0;
    line-height: 24px;
    font-size: 18px
}


/* hover */

/*.categories_recs article:hover {
    color: #000
}*/

@media screen and (max-width:1240px) {
    .categories_recs article {
        width: 300px
    }
    .categories_recs article .wrapper {
        width: 300px;
        height: 474px
    }
    .categories_recs article .wrapper>* {
        height: 237px
    }
}

@media screen and (max-width:1000px) {
    .categories_recs article {
        width: 345px
    }
    .categories_recs article .wrapper {
        width: 345px;
        height: 544px
    }
    .categories_recs article .wrapper>* {
        height: 272px
    }
}

@media screen and (max-width:760px) {
    .categories_recs article {
        width: 400px;
        margin: 0;
        opacity: 0;
        transition: opacity .6s .4s;
        -webkit-transition: opacity .6s .4s
    }
    .categories_recs article .wrapper {
        width: 400px;
        height: 632px
    }
    .categories_recs article.slick-active {
        opacity: 1
    }
    .categories_recs article .wrapper>* {
        height: 316px
    }
}

@media screen and (max-width:440px) {
    .categories_recs article {
        width: 280px
    }
    .categories_recs article .wrapper {
        width: 280px;
        height: 442px
    }
    .categories_recs article .wrapper>* {
        height: 221px
    }
    /* description */
    .categories_recs .cell {
        padding: 20px
    }
    .categories_recs h3 {
        margin-bottom: 15px
    }
    .categories_recs p {
        line-height: 20px
    }
}


/*
*	ABOUT
*/

.about_pane {
    padding-bottom: 15px;
    position: relative;
    z-index: 0
}

.about_pane::before {
    width: 100%;
    height: 25%;
    content: '';
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.about_pane article {
    background-color: #fff;
    position: relative
}

.about_pane article::after {
    height: 0;
    content: '';
    display: block;
    clear: both
}


/* image */

.about_pane article figure {
    width: 50%;
    margin: auto;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0
}

.about_pane article figure img {
    height: 100%;
    display: block
}

.about_pane article:nth-child(odd) figure {
    right: 0
}

.about_pane article:nth-child(even) figure {
    left: 0
}


/* text */

.about_pane .txt {
    width: 50%;
    padding: 60px 25px;
    box-sizing: border-box;
    overflow: hidden
}

.about_pane article:nth-child(odd) .txt {
    float: left
}

.about_pane article:nth-child(even) .txt {
    float: right
}

.about_pane .txt p {
    margin: 0 0 25px 0;
    line-height: 25px;
    font-size: 18px
}


/*.............................................. END LISTS ...............................................*/


/*............................................. BEGIN DETAIL .............................................*/


/*
*	PAGE SLIDESHOW
*/

.page_slideshow {
    height: 400px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden
}


/* slide */

.page_slideshow .slide {
    height: 400px;
    position: relative
}

.page_slideshow .slide img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}


/* arrows */

.page_slideshow .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    line-height: 60px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: background-color .4s;
    -webkit-transition: background-color .4s
}

.page_slideshow .icon.arrow_prev {
    left: 0
}

.page_slideshow .icon.arrow_next {
    right: 0
}

.page_slideshow .icon:hover {
    background-color: rgba(255, 255, 255, .5)
}


/*
*	NAVIGATION
*/

nav.page_nav {
    margin-top: 70px
}

nav.page_nav .rect_btn {
    width: 280px
}


/*.............................................. END DETAIL ..............................................*/


/*............................................. BEGIN RULERS .............................................*/

.clearfix::after {
    height: 0;
    content: '';
    display: block;
    clear: both
}

hr.clear {
    height: 0;
    border: none;
    clear: both
}

hr.hline {
    height: 1px;
    margin: 40px 0;
    background-color: #d2cac6;
    border: none
}


/*.............................................. END RULERS ..............................................*/


/*............................................. BEGIN STORE ..............................................*/

.checkout_pane h4 {
    margin-bottom: 30px
}


/*
*	DATA
*/

.data {
    width: 100%;
    border-collapse: collapse
}

.data th, .data td {
    padding-top: 5px;
    padding-bottom: 5px;
    vertical-align: top
}

.data th {
    width: 1%;
    padding-right: 13px;
    text-align: left;
    white-space: nowrap
}

.data td {
    padding-left: 13px
}


/*
*	SHOPPING LIST
*/


/* list */

.shopping_list {
    width: 100%;
    border-collapse: collapse
}


/*** head ***/

.shopping_list thead th {
    padding: 13px;
    border-bottom: 1px solid #ddd;
    white-space: nowrap
}

.shopping_list thead th:nth-last-child(1), .shopping_list thead th:nth-last-child(2), .shopping_list thead th:nth-last-child(3) {
    text-align: right
}


/*** body ***/

.shopping_list tbody td {
    padding: 10px 0;
    border-top: 1px dotted #bbb
}

.shopping_list tbody td span {
    display: block
}

.shopping_list tbody td:first-child {
    width: 1%
}

.shopping_list tbody td:nth-child(3) {
    text-align: center
}

.shopping_list tbody td:nth-last-child(2), .shopping_list tbody td:nth-last-child(3), .shopping_list tbody td:nth-last-child(4) {
    width: 1%;
    text-align: right;
    white-space: nowrap
}

.shopping_list tbody td:not(:first-child) {
    padding-right: 13px;
    padding-left: 13px
}

.shopping_list tbody td:last-child {
    width: 60px;
    white-space: nowrap;
    text-align: center
}


/* image */

.shopping_list tbody td figure {
    width: 60px;
    height: 60px;
    position: relative
}

.shopping_list tbody td figure img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}


/* icons */

.shopping_list .icon.remove {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    display: inline-block
}

.shopping_list .icon.remove:hover {
    color: #666
}


/* quantities inputs */

.shopping_list .qt_input input {
    height: 30px;
    padding: 0 10px
}

.shopping_list .qt_input button {
    height: 15px;
    line-height: 15px
}

.qt_input button[name="more"] {
    top: 0
}

.qt_input button[name="less"] {
    bottom: 0
}


/*** foot ***/

.shopping_list tfoot td {
    padding: 15px 13px;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
    background-color: #f5f5f5;
    border-top: 1px solid #aaa;
    vertical-align: top
}

.shopping_list tfoot td big {
    margin-top: 15px;
    font-size: 16px;
    display: block
}

.shopping_list tfoot td i {
    margin-top: 10px;
    color: #666;
    font-size: 12px;
    display: block
}


/*
*	CART PANE
*/

#cart_pane .cols_table {
    margin-bottom: 50px
}

#cart_pane .shopping_list {
    margin-bottom: 50px
}

#cart_pane .method_info {
    width: 100%
}

#cart_pane .method_info td:last-child {
    width: 1%;
    text-align: right;
    white-space: nowrap
}


/*
*	CART TOTAL
*/

#cart_displayer {
    width: 100%;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1
}

#cart_displayer.static {
    position: static
}


/* shopping list */

#cart_displayer .shopping_list td {
    padding-top: 10px;
    padding-bottom: 10px
}

#cart_displayer .shopping_list td:not(:first-child) {
    width: 1%;
    white-space: nowrap
}

#cart_displayer .shopping_list td:first-child {
    text-align: left
}

#cart_displayer .shopping_list td:last-child {
    width: 60px
}


/*.............................................. END STORE ...............................................*/


/*............................................ BEGIN TEMPLATE ............................................*/


/*
*	WIDTH CONTAINER
*/

.wide_container {
    width: 1200px;
    margin: 0 auto
}

@media all and (max-width:1240px) {
    .wide_container {
        width: 960px
    }
}

@media all and (max-width:1000px) {
    .wide_container {
        width: 720px
    }
}

@media all and (max-width:760px) {
    .wide_container {
        width: 400px
    }
}

@media all and (max-width:440px) {
    .wide_container {
        width: 280px
    }
}


/*
*	INSIDE MARGIN
*/

.narrow_container {
    width: 1100px;
    margin: 0 auto
}

@media all and (max-width:1240px) {
    .narrow_container {
        width: 900px
    }
}

@media all and (max-width:1000px) {
    .narrow_container {
        width: 720px
    }
}


/*
*	TOP BAR
*/

#top_bar {
    height: 60px;
    margin-bottom: 95px;
    background-color: #e7502a
}


/* logo */

#top_bar h1 {
    width: 140px;
    height: 60px;
    margin: 0;
    padding: 0;
    float: left;
    position: relative
}

#top_bar h1 a {
    width: 100%;
    height: 100%;
    margin: auto;
    text-indent: -2000em;
    background: url(../img/logo.png) no-repeat center /contain;
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}


/* menus bar */

#top_bar .menus_bar {
    font-size: 14px;
    text-transform: uppercase;
    float: right
}


/* nav */

#top_bar nav {
    margin: 22px 8px 22px 0;
    float: left
}

#top_bar nav a {
    height: 16px;
    margin-right: 2px;
    padding: 0 8px;
    line-height: 16px;
    color: #fff;
    display: block;
    float: left;
    position: relative;
    transition: color .5s;
    -webkit-transition: color .5s
}

#top_bar nav a::after {
    width: 2px;
    height: 2px;
    content: '';
    background-color: #fff;
    display: block;
    position: absolute;
    bottom: 4px;
    right: -1px
}

#top_bar nav a:last-child {
    margin-right: 0
}

#top_bar nav a:last-child::after {
    display: none
}

#top_bar nav a:hover, #top_bar nav a.active {
    color: #000
}


/* session menu */

#top_bar .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left
}

#top_bar .menu>li {
    position: relative;
    z-index: 2;
    position: relative;
    float: left
}

#top_bar .menu>li:not(:last-child) {
    margin-right: -1px
}

#top_bar .menu>li::before {
    width: 1px;
    height: 16px;
    margin: auto;
    content: '';
    background-color: #fff;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0
}

#top_bar .menu>li>a {
    padding: 0 16px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    display: block;
    transition: color .5s;
    -webkit-transition: color .5s
}

#top_bar .menu>li>a.icon.menu-icon::before {
    font-size: 20px
}

#top_bar .menu>li>a::before {
    margin-right: 6px
}

#top_bar .menu>li>a:hover, #top_bar .menu>li>a.active {
    color: #e7502a;
    background-color: #fff
}


/* submenu */

#top_bar .submenu {
    min-width: 100%;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background-color: #fff;
    display: none;
    position: absolute;
    top: 100%;
    right: 0
}

#top_bar .submenu a {
    padding: 7px 15px;
    line-height: 18px;
    color: #e7502a;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
    display: block;
    transistion: color .5s;
    -webkit-transition: color .5s
}

#top_bar .submenu a:hover, #top_bar .submenu a.active {
    color: #000
}

@media all and (max-width:1240px) {
    /* nav */
    #top_bar nav {
        display: none
    }
    /* session menu */
    #top_bar .menu>li:first-child::before {
        display: none
    }
}

@media all and (min-width: 1241px) {
    #top_bar .menu>li:first-child {
        display: none
    }
}

@media all and (max-width:760px) {
    #top_bar {
        height: auto;
        position: relative
    }
    #top_bar .wide_container {
        width: auto
    }
    /* logo */
    #top_bar h1 {
        width: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        float: none
    }
    /* menus bar */
    #top_bar .menus_bar {
        float: none
    }
    /* session menu */
    #top_bar .menu {
        width: 100%;
        display: table;
        float: none
    }
    #top_bar .menu>li {
        width: 20%;
        height: 49px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, .3);
        display: table-cell;
        vertical-align: top;
        float: none;
        position: static
    }
    #top_bar .menu>li::before {
        display: none
    }
    #top_bar .menu>li:not(:last-child) {
        margin: 0;
        border-right: 1px solid rgba(255, 255, 255, .3)
    }
    #top_bar .menu>li>a {
        height: 50px;
        padding: 0;
        line-height: 50px
    }
    #top_bar .menu>li:nth-child(1)>a::before {
        margin-right: 0
    }
    #top_bar .menu>li:nth-child(2)>a::before {
        margin-right: 0
    }
    #top_bar .menu>li:nth-child(1)>a span {
        display: none
    }
    #top_bar .menu>li:nth-child(2)>a span {
        display: none
    }
    #top_bar .menu>li:nth-child(3)>a span {
        display: none
    }
    #top_bar .menu .submenu {
        box-shadow: 0 2px 5px 1px rgba(0, 0, 0, .2)
    }
}


/*
*	MAIN BANNER
*/

#home_banner {
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative
}

#home_banner #scrolldown {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    transform: translateY(50%);
    -webkit-transform: translateY(50%)
}

@media all and (max-width:1240px) {
    #home_banner {
        height: 550px
    }
}

@media all and (max-width:1000px) {
    #home_banner {
        height: 500px
    }
}

@media all and (max-width:760px) {
    #home_banner {
        height: 450px
    }
}

@media all and (max-width:440px) {
    #home_banner {
        height: 400px
    }
}


/*
*	BOTTOM
*/

#bottom_footer {
    text-transform: uppercase;
    positioN: relative
}


/* scroll top */

#bottom_footer #scrolltop {
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
}


/* menu */

#bottom_footer ul {
    height: 18px;
    margin: 0;
    padding: 0;
    list-style: none
}

#bottom_footer ul li {
    height: 18px;
    float: left
}

#bottom_footer ul li a {
    line-height: 18px;
    font-weight: 400;
    font-style: normal;
    display: block;
    transition: color .5s;
    -webkit-transition: color .5s
}

#bottom_footer ul li a:hover, #bottom_footer ul li a.active {
    color: #e7502a!important
}

@media all and (max-width:1000px) {
    #bottom_footer ul {
        height: auto;
        margin-bottom: 40px!important;
        text-align: center;
        float: none!important
    }
    #bottom_footer ul li {
        display: inline-block;
        float: none
    }
}

@media all and (max-width:760px) {
    #bottom_footer ul li {
        margin-bottom: 10px;
        display: block
    }
}


/*
*	INFO
*/

#bottom_footer .info {
    padding: 30px 0
}


/* menu */

#bottom_footer .info ul {
    margin: 21px 0;
    float: left
}

#bottom_footer .info ul li:not(:last-child) {
    border-right: 1px solid #e7502a
}

#bottom_footer .info ul li:not(:first-child) {
    margin-left: 18px
}

#bottom_footer .info ul li:not(:last-child) a {
    margin-right: 18px
}

#bottom_footer .info ul li a {
    color: #000
}


/* form */

#bottom_footer .info form {
    width: 380px;
    float: right
}

#bottom_footer .info form input, #bottom_footer .info form button {
    height: 60px;
    background-color: #e5e5e5;
    float: left
}

#bottom_footer .info form input {
    width: 300px;
    margin-right: 20px;
    padding: 0 15px
}

#bottom_footer .info form button {
    width: 60px;
    color: #000;
    font-size: 25px;
    transition: color .4s;
    -webkit-transition: color .4s
}


/* placeholder */

#bottom_footer .info form input::-webkit-input-placeholder {
    color: #000;
    text-transform: uppercase;
    opacity: 1
}

#bottom_footer .info form input:-moz-placeholder {
    color: #000;
    text-transform: uppercase;
    opacity: 1
}

#bottom_footer .info form input::-moz-placeholder {
    color: #000;
    text-transform: uppercase;
    opacity: 1
}

#bottom_footer .info form input:-ms-input-placeholder {
    color: #000;
    text-transform: uppercase;
    opacity: 1
}

#bottom_footer .info form input::-ms-input-placeholder {
    color: #000;
    text-transform: uppercase;
    opacity: 1
}


/* hover / focus */

#bottom_footer .info form button:hover, #bottom_footer .info form button:focus {
    color: #e7502a
}


/* op result */

#bottom_footer .info form .op_result {
    color: #999;
    font-size: 12px
}

@media all and (max-width:1000px) {
    /* menu */
    #bottom_footer .info ul {
        margin-top: 0
    }
    #bottom_footer .info ul li:not(:last-child) {
        border-right: none
    }
    #bottom_footer .info ul li:not(:first-child) {
        margin-left: 0
    }
    #bottom_footer .info ul li:not(:last-child) a {
        margin-right: 0
    }
    /* form */
    #bottom_footer .info form {
        width: 400px;
        margin: auto;
        float: none
    }
    #bottom_footer .info form input {
        width: 320px
    }
}

@media all and (max-width:440px) {
    /* form */
    #bottom_footer .info form {
        width: 280px
    }
    #bottom_footer .info form input, #bottom_footer .info form button {
        height: 50px
    }
    #bottom_footer .info form input {
        width: 220px;
        margin-right: 10px;
        padding: 0 10px
    }
    #bottom_footer .info form button {
        width: 50px
    }
}


/*
*	CREDITS
*/

#bottom_footer .credits {
    padding: 20px 0;
    color: #7b7b7b;
    border-top: 1px solid #b2b2b2
}

#bottom_footer .credits p {
    margin: 0;
    line-height: 18px;
    float: left
}


/* social */

#bottom_footer .credits ul {
    float: right
}

#bottom_footer .credits ul li:not(:first-child) {
    border-left: 1px solid #e7502a
}

#bottom_footer .credits ul li:not(:last-child) {
    margin-right: 18px
}

#bottom_footer .credits ul li:not(:first-child) a {
    margin-left: 18px
}

#bottom_footer .credits ul li a {
    color: #7b7b7b
}

#bottom_footer .credits .icon::before {
    margin-right: 6px;
    color: #e7502a;
    display: inline-block
}

@media all and (max-width:1000px) {
    #bottom_footer .credits p {
        text-align: center;
        float: none
    }
    /* social */
    #bottom_footer .credits ul li:not(:first-child) {
        border-left: none
    }
    #bottom_footer .credits ul li:not(:last-child) {
        margin-right: 0
    }
    #bottom_footer .credits ul li:not(:first-child) a {
        margin-left: 0
    }
}


/*............................................. END TEMPLATE .............................................*/


/*.............................................. BEGIN TEXT ..............................................*/


/*
*	MISC
*/

p {
    line-height: 18px;
    font-size: 13px
}

a {
    text-decoration: none;
    outline: none
}

b {
    font-weight: 700
}


/*
*	ALIGNMETNS
*/

.centered {
    text-align: center
}


/*
*	HEADERS
*/

h3, h4 {
    font-weight: 400
}

h2, h3 {
    text-transform: uppercase
}

h2 {
    margin: 0 0 25px 0;
    line-height: 60px;
    font-size: 45px;
    font-weight: 300
}

h3 {
    margin: 0 0 10px 0;
    line-height: 40px;
    font-size: 23px
}

h4 {
    margin: 0 0 5px 0;
    line-height: 26px;
    font-size: 18px
}

@media all and (max-width:1240px) {
    h2 {
        line-height: 56px;
        font-size: 42px
    }
}

@media all and (max-width:1000px) {
    h2 {
        line-height: 50px;
        font-size: 38px
    }
    h3 {
        line-height: 20px;
        font-size: 20px
    }
}

@media all and (max-width:760px) {
    h2 {
        line-height: 42px;
        font-size: 32px
    }
}

@media all and (max-width:440px) {
    h2 {
        line-height: 36px;
        font-size: 26px
    }
}


/*
*	COLORS
*/

.c_orange {
    color: #e7502a
}

a.c_orange:hover {
    color: #7b7b7b
}

.c_grey {
    color: #7b7b7b;
    transition: color .4s;
    -webkit-transition: color .4s
}

a.c_grey:hover {
    color: #e7502a
}


/*
*	OP RESULTS
*/

p.success, p.error {
    margin: 0 0 20px 0;
    text-align: center
}

p.success a, p.error a {
    color: #f0c351;
    transition: color .5s;
    -webkit-transition: color .5s
}

p.success a:hover, p.error a:hover {
    color: #eaeaea
}

p.success b {
    color: #6fa848
}

p.error b {
    color: #e60000
}


/* info */

p.info {
    margin-bottom: 30px!important;
    padding: 10px 15px;
    color: #fff;
    margin: 0 0 20px 0;
    border-radius: 3px
}

p.info a {
    color: #fff;
    text-decoration: underline
}

p.info {
    background-color: #74a9cb
}


/*............................................... END TEXT ...............................................*/
