/* ==========================================================================
   Inputs
   ========================================================================== */

.hide-input-style, textarea.hide-input-style {
    border: none;
    background: none;
    box-shadow: none;
    width: 100%;
    resize: none;
    text-align: right;
}

textarea.hide-input-style {
    min-height: 100px;
}

input,
.text-input {
    width: 15%;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    color: #2d2d2d;
    box-shadow: none;
    border-radius: 2px;
    height: 40px;
    margin-bottom: 20px;
    font-size: 14px;
}

textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    color: #09619f;
    font-size: 16px;
    line-height: 16px;
    padding: 15px 15px;
    margin-bottom: 10px;
    min-height: 200px;
    width: 100%;
}

    textarea.white,
    .text-input.white {
        color: #09619f;
        background: #fff;
        border: 1px solid #eaf0f8;
    }

        textarea.white::-webkit-input-placeholder,
        .text-input.white::-webkit-input-placeholder {
            color: #09619f;
        }

        textarea.white:-moz-placeholder,
        .text-input.white:-moz-placeholder {
            color: #09619f;
        }

        textarea.white::-moz-placeholder,
        .text-input.white::-moz-placeholder {
            color: #09619f;
        }

        textarea.white:-ms-input-placeholder,
        .text-input.white:-ms-input-placeholder {
            color: #09619f;
        }

    textarea.grey,
    .text-input.grey {
        color: #2d2d2d;
        background: none;
        /*border: 1px solid #fff;*/
        resize: none;
    }

        textarea.grey::-webkit-input-placeholder,
        .text-input.grey::-webkit-input-placeholder {
            color: #4f4f4f;
        }

        textarea.grey:-moz-placeholder,
        .text-input.grey:-moz-placeholder {
            color: #4f4f4f;
        }

        textarea.grey::-moz-placeholder,
        .text-input.grey::-moz-placeholder {
            color: #4f4f4f;
        }

        textarea.grey:-ms-input-placeholder,
        .text-input.grey:-ms-input-placeholder {
            color: #4f4f4f;
        }

    textarea.radius,
    .text-input.radius {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        border: 1px solid #e7e7e7;
    }

    textarea.block,
    .text-input.block {
        /*display: block;*/
        width: 99%;
    }

.indent {
    padding-left: 30px;
}

.valid-code {
    color: green;
    font-size: 10px;
}

.wrong-code {
    color: red;
    font-size: 10px;
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn,
.submit-input {
    display: inline-block;
    text-align: center;
    font-family: "cabinsemibold";
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    padding: 13px 15px 10px 15px !important;
    margin: 0;
    border: none;
    outline: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

    .btn.large,
    .submit-input.large {
        font-size: 16px;
        line-height: 16px;
    }

    .btn.extra-large,
    .submit-input.extra-large {
        font-size: 18px;
        line-height: 18px;
        padding: 16px 17px 13px 17px;
    }

    .submit-input.with-info {
        float: left;
        margin-right: 20px;
        margin-top: -4px;
    }

.submit-content,
.submit-info {
    font-size: 14px !important;
    line-height: 16px !important;
}

.page-content .submit-content {
    padding-top: 15px;
    overflow: hidden;
    clear: both;
}

.btn:hover,
.submit-input:hover {
    color: #428bca;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    background-image: linear-gradient(to bottom, white 0%, white 100%);
    border: 3px solid #428bca;
}

.btn.block,
.submit-input.block {
    display: block;
    padding: 12px 0 8px 0;
}

    .btn.block.extra-large,
    .submit-input.block.extra-large {
        padding: 15px 0 11px 0;
    }

.btn.half {
    display: inline-block;
    padding: 12px 0 8px 0;
    width: 46%;
    margin: 2%;
    float: left;
}

    .btn.half.extra-large {
        padding: 15px 0 11px 0;
    }

a.gl-more {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom: -6px;
}

    a.gl-more::after {
        content: "\e600";
        font-family: "icomoon";
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 1px;
        left: 7px;
    }


/* ==========================================================================
   Dropdowns
   ========================================================================== */

.gl-dropdown {
    position: relative;
}

    .gl-dropdown > a {
        display: inline-block;
        font-family: "cabinregular";
        font-size: 16px;
        line-height: 16px;
        color: #4f4f4f;
        background: #eaf0f8;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        padding: 15px 35px 15px 15px;
        border-bottom: 1px solid #e0e5eb;
        border-right: 1px solid #e0e5eb;
        min-width: 150px;
        position: relative;
    }

        .gl-dropdown > a:hover {
            color: #09619f;
        }

        .gl-dropdown > a:after {
            content: "\e6d2";
            font-family: 'icomoon';
            color: #09619f;
            position: absolute;
            right: 11px;
            top: 15px;
        }

.arrow-down {
    content: "\e6d2";
    font-family: 'icomoon';
    color: #434343;
    height: 40px !important;
    border: 1px solid #e7e7e7;
    border-left: none;
    background: none;
}

.gl-dropdown.open > a {
    color: #09619f;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

    .gl-dropdown.open > a::after {
        content: "\e6d3";
    }

.gl-dropdown ul {
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 1px;
    width: 100%;
    max-height: 192px;
    overflow-x: auto;
    z-index: 99999999;
}

    .gl-dropdown ul li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .gl-dropdown ul li a {
            display: block;
            padding: 8px 15px 5px 15px;
            color: #4f4f4f;
            background: #eaf0f8;
            border: 1px solid #e0e5eb;
            margin-top: -1px;
        }

            .gl-dropdown ul li.selected a,
            .gl-dropdown ul li a:hover {
                color: #fff;
                background: #14b9d6;
            }

.gl-qnt {
    position: relative;
    float: left;
    margin-right: 20px;
    text-align: center !important;
}

.gl-qnt-input {
    display: inline-block;
    font-family: "cabinregular";
    font-size: 16px;
    line-height: 40px;
    text-align: center !important;
    color: #4f4f4f;
    background: #eaf0f8;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e0e5eb;
    border-right: 1px solid #e0e5eb;
    width: 40px;
    height: 40px;
    position: relative;
    outline: none;
    float: left;
    margin-right: 5px;
}

.gl-qnt-label {
    display: inline-block;
    font-family: "cabinregular";
    font-size: 16px;
    line-height: 42px;
    color: #4f4f4f;
}

.gl-dropdown.half {
    width: 49.83%;
    float: left;
}

form .gl-dropdown {
    margin-bottom: 10px;
}

.gl-dropdown.half > a {
    display: block;
    width: 94.5%;
    padding: 15px 0;
    padding-left: 4%;
}

.gl-dropdown.half ul {
    top: 48px;
    width: 98.75%;
}

.gl-dropdown.left > a {
    float: left;
}

.gl-dropdown.right > a {
    float: right;
}

.gl-dropdown.right ul {
    right: auto;
    left: 1px;
}

.gl-dropdown.right ul {
    left: auto;
    right: 0;
}

.gl-form .gl-dropdown > a {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

textarea.error,
input.error,
.gl-dropdown.error > a {
    border: 1px solid red !important;
}

textarea.focus,
input.focus {
    border: 1px solid #14b9d6 !important;
}

.submit-input.focus {
    border: none !important;
}


/* ==========================================================================
   Tabs
   ========================================================================== */

.gl-tabs-nav, .gl-tabs-nav2 {
    position: relative;
    width: 100%;
}

    .gl-tabs-nav ul, .gl-tabs-nav2 ul {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

        .gl-tabs-nav ul li, .gl-tabs-nav2 ul li {
            margin: 0;
            padding: 0;
            list-style: none;
            display: inline-block;
            overflow: hidden;
            float: left;
            /*width: 33.33%;*/
            height: 60px;
        }

            .gl-tabs-nav ul li a, .gl-tabs-nav2 ul li .tabMenu {
                display: block;
                text-align: center;
                font-family: "cabinsemibold";
                font-size: 16px;
                line-height: 66px;
                text-transform: uppercase;
                color: #4f4f4f;
                background: #e2e9ed;
                cursor: pointer;
            }

                .gl-tabs-nav ul li a:hover, .gl-tabs-nav2 ul li .tabMenu:hover {
                    color: #09619f;
                }

                .gl-tabs-nav ul li a.valid, .gl-tabs-nav2 ul li .tabMenu.valid {
                    background: lightgreen;
                }

                .gl-tabs-nav ul li a.error, .gl-tabs-nav2 ul li .tabMenu.error {
                    background: lightcoral;
                }

            .gl-tabs-nav ul li.active a, .gl-tabs-nav2 ul li.active .tabMenu {
                color: #09619f;
                background: #fff;
                cursor: pointer;
            }

.gl-tab-content {
    display: none;
    padding: 20px;
}

    .gl-tab-content.gallery {
        padding: 10px;
    }

    .gl-tab-content > img,
    .gl-tab-content > iframe {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .gl-tab-content > h1,
    .gl-tab-content > h2,
    .gl-tab-content > h3,
    .gl-tab-content > h4,
    .gl-tab-content > h5 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .gl-tab-content > img {
        margin-bottom: 20px;
    }

    .gl-tab-content.active {
        display: inline-block;
    }


.form-title {
    margin-bottom: 20px;
}



.gl-form-error {
    display: none;
    color: red;
    margin-top: 20px;
    font-family: "cabinsemibold";
    font-size: 15px;
    width: 100%;
    text-align: center;
    background: #eaf0f8;
    padding: 18px 0 15px 0;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
}


.ul-with-icons {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    margin-top: -5px;
}

    .ul-with-icons li {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-bottom: -10px;
    }

        .ul-with-icons li:before {
            content: "";
            width: 45px;
            height: 45px;
            display: inline-block;
            background: url(../images/sprites.png) no-repeat -720px -270px;
            margin-bottom: -17px;
        }

    .ul-with-icons.gl-blue1 li:before {
        background-position: -720px -315px;
    }

    .ul-with-icons.gl-blue2 li:before {
        background-position: -720px -360px;
    }

    .ul-with-icons.gl-orange li:before {
        background-position: -720px -405px;
    }

    .ul-with-icons.gl-red li:before {
        background-position: -720px -450px;
    }




/*
 * background
 */

.gl-bg-blue1,
.gl-bg-hover-blue1:hover,
.gl-bg-blue1-before:before,
.gl-bg-blue1-before:after,
.gl-bg-hover-blue1-before:hover:before,
.gl-bg-hover-blue1-afte:hover:after,
.active .gl-bg-blue1-active {
    background-color: #09619f !important;
}

.gl-bg-blue2,
.gl-bg-hover-blue2:hover,
.gl-bg-blue2-before:before,
.gl-bg-blue2-before:after,
.gl-bg-hover-blue2-before:hover:before,
.gl-bg-hover-blue2-afte:hover:after,
.active .gl-bg-blue2-active {
    background-color: #14b9d6 !important;
}

.gl-bg-orange,
.gl-bg-hover-orange:hover,
.gl-bg-orange-before:before,
.gl-bg-orange-before:after,
.gl-bg-hover-orange-before:hover:before,
.gl-bg-hover-orange-afte:hover:after,
.active .gl-bg-orange-active {
    background-color: #f7941d !important;
}

.gl-bg-red,
.gl-bg-hover-red:hover,
.gl-bg-red-before:before,
.gl-bg-red-before:after,
.gl-bg-hover-red-before:hover:before,
.gl-bg-hover-red-afte:hover:after,
.active .gl-bg-red-active {
    background-color: #ea1c24 !important;
}

.gl-bg-green,
.gl-bg-hover-green:hover,
.gl-bg-green-before:before,
.gl-bg-green-before:after,
.gl-bg-hover-green-before:hover:before,
.gl-bg-hover-green-afte:hover:after,
.active .gl-bg-green-active {
    background-color: #39b54a !important;
}

.gl-bg-color,
.gl-bg-hover-color:hover,
.gl-bg-color-before:before,
.gl-bg-color-before:after,
.gl-bg-hover-color-before:hover:before,
.gl-bg-hover-color-afte:hover:after,
.active .gl-bg-color-active {
    background-color: #39b54a !important;
}


.active .gl-bg-blue1-active,
.active .gl-bg-blue2-active,
.active .gl-bg-orange-active,
.active .gl-bg-red-active,
.active .gl-bg-color-active {
    color: #fff !important;
}



/*
 * border
 */

.gl-border-blue1,
.gl-border-hover-blue1:hover,
.gl-border-blue1-before:before,
.gl-border-blue1-before:after,
.gl-border-hover-blue1-before:hover:before,
.gl-border-hover-blue1-afte:hover:after,
.active .gl-border-blue1-active {
    border-color: #09619f !important;
}

.gl-border-blue2,
.gl-border-hover-blue2:hover,
.gl-border-blue2-before:before,
.gl-border-blue2-before:after,
.gl-border-hover-blue2-before:hover:before,
.gl-border-hover-blue2-afte:hover:after,
.active .gl-border-blue2-active {
    border-color: #14b9d6 !important;
}

.gl-border-orange,
.gl-border-hover-orange:hover,
.gl-border-orange-before:before,
.gl-border-orange-before:after,
.gl-border-hover-orange-before:hover:before,
.gl-border-hover-orange-afte:hover:after,
.active .gl-border-orange-active {
    border-color: #f7941d !important;
}

.gl-border-red,
.gl-border-hover-red:hover,
.gl-border-red-before:before,
.gl-border-red-before:after,
.gl-border-hover-red-before:hover:before,
.gl-border-hover-red-afte:hover:after,
.active .gl-border-red-active {
    border-color: #ea1c24 !important;
}

div.left {
    display: inline-block;
}

div.right {
    float: right;
}

.product-details {
    padding-top: 20px;
    border-top: 1px solid #e7e7e7;
}

.align-center {
    text-align: center;
}

input[type=checkbox], input[type=radio] {
    margin: 0;
}

.bookingInfo {
    border: 1px solid #ededed;
    margin-top: 20px;
}

#colorbox,
#cboxWrapper,
#cboxContent,
#cboxLoadedContent,
#popup_error {
    /*width: 100% !important;*/
}

#cboxLoadedContent {
    width: 90% !important;
    height: auto !important;
}

    #cboxLoadedContent .box-content {
        width: 90%;
        margin: auto;
        border-radius: 2px;
    }

        #cboxLoadedContent .box-content h4 {
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 300;
            line-height: 38px;
            color: #282828;
        }

        #cboxLoadedContent .box-content p {
            color: #7d7d7d;
            font-size: 14px;
            font-weight: 400;
        }

.datepicker-days table thead th {
    padding-bottom: 0;
}

.dow {
    padding: 20px 0 !important;
}

.datepicker .datepicker-switch:hover,
.datepicker .next:hover,
.datepicker .prev:hover,
.datepicker tfoot tr th:hover {
    background-color: transparent !important;
}

.pnlCheckoutItems--check {
    margin-top: 0;
    /*background: #dff7e0;*/
    padding-top: 20px;
    padding-bottom: 15px;
    border-radius: 2px;
}

#pnlCheckoutItems .header {
    margin-bottom: 10px;
}

.scroll-down {
    position: fixed;
    bottom: 10px;
    right: 5px;
    font-size: 32px;
    z-index: 10000;
}

.scroll-up {
    position: fixed;
    bottom: 50px;
    right: 5px;
    font-size: 32px;
    z-index: 10000;
    display: none;
}

    .scroll-down span,
    .scroll-up span {
        cursor: pointer;
        opacity: 0.7;
    }

input:disabled {
    -webkit-text-fill-color: #7d7d7d;
    -webkit-opacity: 1;
}
