/* ---------------------------------------------------------
	1. Import styles
	2. General reset
	3. Common site styles
	4. Custom form styles
	5. Styles for responsive breakpoints
   ---------------------------------------------------------*/
/* ---------------------------------------------------------
	1. Import styles
---------------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #3f3f3f;
    background-color: #ffffff;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #2c6ed5;
    text-decoration: none;
    outline: 0;
}

a:hover,
a:focus {
    color: #1e4d97;
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    padding: 0;
    line-height: 1.428571429;
    background-color: #ffffff;
    border: 1px solid #eaebec;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 700;
    line-height: 1.1;
    color: #58595b;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #999999;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
    font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
    font-size: 75%;
}

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: 14px;
}

h6,
.h6 {
    font-size: 12px;
}

p {
    margin: 0 0 10px;
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px;
    }
}

small,
.small {
    font-size: 85%;
}

cite {
    font-style: normal;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-muted {
    color: #999999;
}

.text-primary {
    color: #428bca;
}

a.text-primary:hover {
    color: #3071a9;
}

.text-success {
    color: #3c763d;
}

a.text-success:hover {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:hover {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:hover {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

a.text-danger:hover {
    color: #843534;
}

.bg-primary {
    color: #fff;
    background-color: #428bca;
}

a.bg-primary:hover {
    background-color: #3071a9;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover {
    background-color: #e4b9b9;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eeeeee;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

dl {
    margin-top: 0;
    margin-bottom: 20px;
}

dt,
dd {
    line-height: 1.428571429;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #999999;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
    margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.428571429;
    color: #999999;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
    content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eeeeee;
    border-left: 0;
    text-align: right;
}

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
    content: '';
}

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
    content: '\00A0 \2014';
}

blockquote:before,
blockquote:after {
    content: "";
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.428571429;
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    white-space: nowrap;
    border-radius: 4px;
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #ffffff;
    background-color: #333333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.428571429;
    word-break: break-all;
    word-wrap: break-word;
    color: #333333;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 768px) {
    .container {
        width: 740px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.row {
    margin-left: -10px;
    margin-right: -10px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666666666666%;
}

.col-xs-10 {
    width: 83.33333333333334%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666666666666%;
}

.col-xs-7 {
    width: 58.333333333333336%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666666666667%;
}

.col-xs-4 {
    width: 33.33333333333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.666666666666664%;
}

.col-xs-1 {
    width: 8.333333333333332%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666666666666%;
}

.col-xs-pull-10 {
    right: 83.33333333333334%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666666666666%;
}

.col-xs-pull-7 {
    right: 58.333333333333336%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666666666667%;
}

.col-xs-pull-4 {
    right: 33.33333333333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.666666666666664%;
}

.col-xs-pull-1 {
    right: 8.333333333333332%;
}

.col-xs-pull-0 {
    right: 0;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666666666666%;
}

.col-xs-push-10 {
    left: 83.33333333333334%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666666666666%;
}

.col-xs-push-7 {
    left: 58.333333333333336%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666666666667%;
}

.col-xs-push-4 {
    left: 33.33333333333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.666666666666664%;
}

.col-xs-push-1 {
    left: 8.333333333333332%;
}

.col-xs-push-0 {
    left: 0;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666666666666%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333333334%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666666666666%;
}

.col-xs-offset-7 {
    margin-left: 58.333333333333336%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666666666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.666666666666664%;
}

.col-xs-offset-1 {
    margin-left: 8.333333333333332%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666666666666%;
    }

    .col-sm-10 {
        width: 83.33333333333334%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666666666666%;
    }

    .col-sm-7 {
        width: 58.333333333333336%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666666666667%;
    }

    .col-sm-4 {
        width: 33.33333333333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.666666666666664%;
    }

    .col-sm-1 {
        width: 8.333333333333332%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666666666666%;
    }

    .col-sm-pull-10 {
        right: 83.33333333333334%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666666666666%;
    }

    .col-sm-pull-7 {
        right: 58.333333333333336%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666666666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.666666666666664%;
    }

    .col-sm-pull-1 {
        right: 8.333333333333332%;
    }

    .col-sm-pull-0 {
        right: 0;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666666666666%;
    }

    .col-sm-push-10 {
        left: 83.33333333333334%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666666666666%;
    }

    .col-sm-push-7 {
        left: 58.333333333333336%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666666666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.666666666666664%;
    }

    .col-sm-push-1 {
        left: 8.333333333333332%;
    }

    .col-sm-push-0 {
        left: 0;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666666666666%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333333334%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666666666666%;
    }

    .col-sm-offset-7 {
        margin-left: 58.333333333333336%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666666666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.666666666666664%;
    }

    .col-sm-offset-1 {
        margin-left: 8.333333333333332%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666666666666%;
    }

    .col-md-10 {
        width: 83.33333333333334%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666666666666%;
    }

    .col-md-7 {
        width: 58.333333333333336%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666666666667%;
    }

    .col-md-4 {
        width: 33.33333333333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.666666666666664%;
    }

    .col-md-1 {
        width: 8.333333333333332%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666666666666%;
    }

    .col-md-pull-10 {
        right: 83.33333333333334%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666666666666%;
    }

    .col-md-pull-7 {
        right: 58.333333333333336%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666666666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.666666666666664%;
    }

    .col-md-pull-1 {
        right: 8.333333333333332%;
    }

    .col-md-pull-0 {
        right: 0;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666666666666%;
    }

    .col-md-push-10 {
        left: 83.33333333333334%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666666666666%;
    }

    .col-md-push-7 {
        left: 58.333333333333336%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666666666667%;
    }

    .col-md-push-4 {
        left: 33.33333333333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.666666666666664%;
    }

    .col-md-push-1 {
        left: 8.333333333333332%;
    }

    .col-md-push-0 {
        left: 0;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666666666666%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333333334%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666666666666%;
    }

    .col-md-offset-7 {
        margin-left: 58.333333333333336%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666666666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.666666666666664%;
    }

    .col-md-offset-1 {
        margin-left: 8.333333333333332%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666666666666%;
    }

    .col-lg-10 {
        width: 83.33333333333334%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666666666666%;
    }

    .col-lg-7 {
        width: 58.333333333333336%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666666666667%;
    }

    .col-lg-4 {
        width: 33.33333333333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.666666666666664%;
    }

    .col-lg-1 {
        width: 8.333333333333332%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666666666666%;
    }

    .col-lg-pull-10 {
        right: 83.33333333333334%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666666666666%;
    }

    .col-lg-pull-7 {
        right: 58.333333333333336%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666666666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.666666666666664%;
    }

    .col-lg-pull-1 {
        right: 8.333333333333332%;
    }

    .col-lg-pull-0 {
        right: 0;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666666666666%;
    }

    .col-lg-push-10 {
        left: 83.33333333333334%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666666666666%;
    }

    .col-lg-push-7 {
        left: 58.333333333333336%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666666666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.666666666666664%;
    }

    .col-lg-push-1 {
        left: 8.333333333333332%;
    }

    .col-lg-push-0 {
        left: 0;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666666666666%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333333334%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666666666666%;
    }

    .col-lg-offset-7 {
        margin-left: 58.333333333333336%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666666666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.666666666666664%;
    }

    .col-lg-offset-1 {
        margin-left: 8.333333333333332%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}

table {
    max-width: 100%;
    background-color: transparent;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    margin-bottom: 20px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #dddddd;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #dddddd;
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}

.table > tbody + tbody {
    border-top: 2px solid #dddddd;
}

.table .table {
    background-color: #ffffff;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

@media (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        overflow-x: scroll;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #dddddd;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive > .table {
        margin-bottom: 0;
    }

    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }

    .table-responsive > .table-bordered {
        border: 0;
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    /* IE8-9 */
    line-height: normal;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #58595b;
}

.form-control {
    display: block;
    width: 100%;
    height: 36px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #58595b;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
    border-color: #c6ccd2;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(198, 204, 210, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(198, 204, 210, 0.6);
}

.form-control::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #c6ccd2;
}

.form-control::-webkit-input-placeholder {
    color: #c6ccd2;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eeeeee;
    opacity: 1;
}

textarea.form-control {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: none;
}

input[type="date"] {
    line-height: 36px;
}

.form-group {
    margin-bottom: 15px;
}

.radio,
.checkbox {
    display: block;
    min-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.radio label,
.checkbox label {
    display: inline;
    font-weight: normal;
    cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    float: left;
    margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-sm {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

select.input-lg {
    height: 46px;
    line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}

.has-feedback {
    position: relative;
}

.has-feedback .form-control {
    padding-right: 45px;
}

.has-feedback .form-control-feedback {
    position: absolute;
    top: 25px;
    right: 0;
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8;
}

.has-success .form-control-feedback {
    color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
    color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #a94442;
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede;
}

.has-error .form-control-feedback {
    color: #a94442;
}

.form-control-static {
    margin-bottom: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #7f7f7f;
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .input-group > .form-control {
        width: 100%;
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
        vertical-align: middle;
    }

    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        float: none;
        margin-left: 0;
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}

.form-horizontal .form-group {
    margin-left: -10px;
    margin-right: -10px;
}

.form-horizontal .form-control-static {
    padding-top: 7px;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    top: 0;
    right: 10px;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn:hover,
.btn:focus {
    color: #ffffff;
    text-decoration: none;
}

.btn:active,
.btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-default {
    color: #ffffff;
    background-color: #c6ccd2;
    border-color: transparent;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    color: #ffffff;
    background-color: #afb8c0;
    border-color: rgba(0, 0, 0, 0);
}

.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #c6ccd2;
    border-color: transparent;
}

.btn-default .badge {
    color: #c6ccd2;
    background-color: #ffffff;
}

.btn-primary {
    color: #ffffff;
    background-color: #58595b;
    border-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #444546;
    border-color: rgba(0, 0, 0, 0);
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #58595b;
    border-color: transparent;
}

.btn-primary .badge {
    color: #58595b;
    background-color: #ffffff;
}

.btn-success {
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: #47a447;
    border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    background-image: none;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #ffffff;
}

.btn-info {
    color: #ffffff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #39b3d7;
    border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
    background-image: none;
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #ffffff;
}

.btn-warning {
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #ed9c28;
    border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
    background-image: none;
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #ffffff;
}

.btn-danger {
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #d2322d;
    border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
    background-image: none;
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #ffffff;
}

.btn-link {
    color: #2c6ed5;
    font-weight: normal;
    cursor: pointer;
    border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
    color: #1e4d97;
    text-decoration: underline;
    background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #999999;
    text-decoration: none;
}

.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.btn-block + .btn-block {
    margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.btn-refuse {
    background-color: #fa3333;
    color: #ffffff;
}

.btn-refuse:hover {
    background-color: #D82A2A;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333333;
    white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #999999;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed;
}

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.dropdown-menu-left {
    left: 0;
    right: auto;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #999999;
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990;
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0;
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    float: left;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
    z-index: 2;
}

.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
    outline: none;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    margin-left: -5px;
}

.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left;
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
    margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group > .btn-group {
    float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}

.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn .caret {
    margin-left: 0;
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

.btn-group-vertical > .btn-group > .btn {
    float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%;
}

.btn-group-justified > .btn-group .btn {
    width: 100%;
}

[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
    display: none;
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.nav > li {
    position: relative;
    display: block;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}

.nav > li.disabled > a {
    color: #999999;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
    color: #999999;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #2c6ed5;
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.nav > li > a > img {
    max-width: none;
}

.nav-tabs {
    border-bottom: 1px solid #eaebec;
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
    border-color: #c6ccd2 #c6ccd2 #eaebec;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #58595b;
    background-color: #ffffff;
    border: 1px solid #eaebec;
    border-bottom-color: transparent;
    cursor: default;
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
}

.nav-tabs.nav-justified > li {
    float: none;
}

.nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0;
    }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #dddddd;
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #dddddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #ffffff;
    }
}

.nav-pills > li {
    float: left;
}

.nav-pills > li > a {
    border-radius: 4px;
}

.nav-pills > li + li {
    margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    color: #ffffff;
    background-color: #428bca;
}

.nav-stacked > li {
    float: none;
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0;
}

.nav-justified {
    width: 100%;
}

.nav-justified > li {
    float: none;
}

.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px;
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }

    .nav-justified > li > a {
        margin-bottom: 0;
    }
}

.nav-tabs-justified {
    border-bottom: 0;
}

.nav-tabs-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border: 1px solid #dddddd;
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #dddddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #ffffff;
    }
}

/*.tab-content > .tab-pane {*/
/*display: none;*/
/*}*/

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.navbar {
    position: relative;
    min-height: 45px;
    margin-bottom: 0;
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 0;
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
}

.navbar-collapse {
    max-height: 340px;
    overflow-x: visible;
    padding-right: 10px;
    padding-left: 10px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
    overflow-y: auto;
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }

    .navbar-collapse.in {
        overflow-y: visible;
    }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -10px;
    margin-left: -10px;
}

@media (min-width: 768px) {
    .container > .navbar-header,
    .container-fluid > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.navbar-brand {
    float: left;
    padding: 12.5px 10px;
    font-size: 18px;
    line-height: 20px;
    height: 45px;
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none;
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -10px;
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 10px;
    padding: 9px 10px;
    margin-top: 5.5px;
    margin-bottom: 5.5px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggle:focus {
    outline: none;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: 6.25px -10px;
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    .navbar-nav .open .dropdown-menu > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px;
    }

    .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none;
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }

    .navbar-nav > li {
        float: left;
    }

    .navbar-nav > li > a {
        padding-top: 12.5px;
        padding-bottom: 12.5px;
    }

    .navbar-nav.navbar-right:last-child {
        margin-right: -10px;
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important;
    }

    .navbar-right {
        float: right !important;
    }
}

.navbar-form {
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px 10px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 4.5px;
    margin-bottom: 4.5px;
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .navbar-form .input-group > .form-control {
        width: 100%;
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
        vertical-align: middle;
    }

    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        float: none;
        margin-left: 0;
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .navbar-form.navbar-right:last-child {
        margin-right: -10px;
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navbar-btn {
    margin-top: 4.5px;
    margin-bottom: 4.5px;
}

.navbar-btn.btn-sm {
    margin-top: 7.5px;
    margin-bottom: 7.5px;
}

.navbar-btn.btn-xs {
    margin-top: 11.5px;
    margin-bottom: 11.5px;
}

.navbar-text {
    margin-top: 12.5px;
    margin-bottom: 12.5px;
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-left: 10px;
        margin-right: 10px;
    }

    .navbar-text.navbar-right:last-child {
        margin-right: 0;
    }
}

.navbar-default {
    background-color: transparent;
    border-color: transparent;
}

.navbar-default .navbar-brand {
    color: #58595b;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #3f4041;
    background-color: transparent;
}

.navbar-default .navbar-text {
    color: #58595b;
}

.navbar-default .navbar-nav > li > a {
    color: #58595b;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #c50000;
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #c50000;
    background-color: transparent;
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
    border-color: #dddddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #dddddd;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: transparent;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: transparent;
    color: #c50000;
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #58595b;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #c50000;
        background-color: transparent;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #c50000;
        background-color: transparent;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #cccccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-link {
    color: #58595b;
}

.navbar-default .navbar-link:hover {
    color: #c50000;
}

.navbar-inverse {
    background-color: #222222;
    border-color: #080808;
}

.navbar-inverse .navbar-brand {
    color: #999999;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #ffffff;
    background-color: transparent;
}

.navbar-inverse .navbar-text {
    color: #999999;
}

.navbar-inverse .navbar-nav > li > a {
    color: #999999;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #ffffff;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
}

.navbar-inverse .navbar-toggle {
    border-color: #333333;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333333;
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #ffffff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #080808;
    color: #ffffff;
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #999999;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #ffffff;
        background-color: transparent;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #ffffff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444444;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-link {
    color: #999999;
}

.navbar-inverse .navbar-link:hover {
    color: #ffffff;
}

.breadcrumb {
    padding: 0 0;
    margin-bottom: 20px;
    list-style: none;
    background-color: transparent;
    border-radius: 4px;
}

.breadcrumb > li {
    display: inline-block;
}

.breadcrumb > li + li:before {
    content: ">\00a0";
    padding: 0 5px;
    color: #58595b;
}

.breadcrumb > .active {
    color: #58595b;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.428571429;
    text-decoration: none;
    color: #414042;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    margin-left: -1px;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: #000000;
    background-color: #e8e8e8;
    border-color: #e8e8e8;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 2;
    color: #414042;
    background-color: #e8e8e8;
    border-color: #e3e3e3;
    cursor: default;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #999999;
    background-color: #ffffff;
    border-color: #dddddd;
    cursor: not-allowed;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center;
}

.pager li {
    display: inline;
}

.pager li > a,
.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
    text-decoration: none;
    background-color: #e8e8e8;
}

.pager .next > a,
.pager .next > span {
    float: right;
}

.pager .previous > a,
.pager .previous > span {
    float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
    color: #999999;
    background-color: #ffffff;
    cursor: not-allowed;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert h4 {
    margin-top: 0;
    color: inherit;
}

.alert .alert-link {
    font-weight: bold;
}

.alert > p,
.alert > ul {
    margin-bottom: 0;
}

.alert > p + p {
    margin-top: 5px;
}

.alert-dismissable {
    padding-right: 35px;
}

.alert-dismissable .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.alert-success {
    background-color: #ddf1f3;
    border-color: #83dbd4;
    color: #58595b;
}

.alert-success hr {
    border-top-color: #6fd5cd;
}

.alert-success .alert-link {
    color: #3f4041;
}

.alert-info {
    background-color: #f0f1f1;
    border-color: #cdcdcd;
    color: #58595b;
}

.alert-info hr {
    border-top-color: #c0c0c0;
}

.alert-info .alert-link {
    color: #3f4041;
}

.alert-warning {
    background-color: #ffe9ad;
    border-color: #fab418;
    color: #58595b;
}

.alert-warning hr {
    border-top-color: #f3aa05;
}

.alert-warning .alert-link {
    color: #3f4041;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

.alert-danger hr {
    border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
    color: #843534;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
    padding: 24px;
    border-radius: 6px;
}

.well-sm {
    padding: 9px;
    border-radius: 3px;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: none;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.428571429px;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.428571429;
}

.modal-body {
    position: relative;
    padding: 20px;
}

.modal-footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 722px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 722px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 194px;
}

.tooltip.top {
    margin-top: -10px;
    padding: 5px 0;
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #e4eaeb;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #e4eaeb;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #e4eaeb;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-top-color: #e4eaeb;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    line-height: 1;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover,
.carousel-control:focus {
    outline: none;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    font-family: serif;
}

.carousel-control .icon-prev:before {
    content: '\2039';
}

.carousel-control .icon-next:before {
    content: '\203a';
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
    text-shadow: none;
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        margin-left: -15px;
        font-size: 30px;
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

/* old color #c6ccd2 */
/* old color #c9cacb */
/* mixins */
.list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
}

.responsive-img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.position-zero {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.text-none {
    overflow: hidden;
    text-indent: -9999px;
}

/* ---------------------------------------------------------
   2. General reset
   ---------------------------------------------------------*/
@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

@font-face {
    font-family: 'fontello';
    src: url('../../fonts/fontello.eot?55836342');
    src: url('../../fonts/fontello.eot?55836342#iefix') format('embedded-opentype'), url('../../fonts/fontello.woff?55836342') format('woff'), url('../../fonts/fontello.ttf?55836342') format('truetype'), url('../../fonts/fontello.svg?55836342#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?55836342#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-down-open:before {
    content: '\e800';
}

/* '' */
.icon-left-open:before {
    content: '\e801';
}

/* '' */
.icon-right-open:before {
    content: '\e802';
}

/* '' */
.icon-up-open:before {
    content: '\e803';
}

/* '' */
.icon-clock:before {
    content: '\e804';
}

/* '' */
.icon-angle-up:before {
    content: '\e805';
}

/* '' */
.icon-angle-down:before {
    content: '\e806';
}

/* '' */
.icon-angle-right:before {
    content: '\e807';
}

/* '' */
.icon-angle-left:before {
    content: '\e808';
}

/* '' */
.icon-down-open-mini:before {
    content: '\e809';
}

/* '' */
.icon-ok:before {
    content: '\e80a';
}

/* '' */
.icon-phone:before {
    content: '\e80b';
}

/* '' */
.icon-mail-alt:before {
    content: '\e80c';
}

/* '' */
.icon-location:before {
    content: '\e80d';
}

/* '' */
.icon-calendar:before {
    content: '\e80e';
}

/* '' */
.icon-heart:before {
    content: '\e80f';
}

/* '' */
.icon-star:before {
    content: '\e810';
}

/* '' */
.icon-cancel:before {
    content: '\e811';
}

/* '' */
.icon-left-open-mini:before {
    content: '\e812';
}

/* '' */
.icon-right-open-mini:before {
    content: '\e813';
}

/* '' */
.icon-up-open-mini:before {
    content: '\e814';
}

/* '' */
.icon-resize-full-alt:before {
    content: '\e815';
}

/* '' */
.icon-facebook:before {
    content: '\e816';
}

/* '' */
.icon-clock-1:before {
    content: '\e817';
}

/* '' */
.icon-twitter:before {
    content: '\e818';
}

/* '' */
.icon-vimeo:before {
    content: '\e819';
}

/* '' */
.icon-gplus:before {
    content: '\e81a';
}

/* '' */
.icon-eye:before {
    content: '\e81b';
}

/* '' */
.icon-eye-off:before {
    content: '\e81c';
}

/* '' */
.icon-error-field:before {
    content: '\e81d';
}

/* '' */
.icon-info:before {
    content: '\e81e';
}

/* '' */

/* '' */
html {
    background: #333435;
}

body {
    margin: 0;
    min-width: 320px;
    -ms-text-size-adjust: none;
    -webkit-text-size-adjust: 100%;
}

img {
    border: 0;
}

input[type=submit],
input[type=reset],
button[type=submit],
button[type=reset],
button,
a {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

a {
    text-decoration: underline;
}

input[type=text],
input[type=tel],
input[type=password],
input[type=file],
input[type=image],
input[type=submit],
input[type=button],
input[type=search],
input[type=email],
input[type=number],
input[type=time],
textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=file]:focus,
input[type=image]:focus,
input[type=submit]:focus,
input[type=button]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control {
    padding: 5px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 4px !important;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.form-control:focus:-ms-input-placeholder {
    color: #c6ccd2;
}

.form-control:focus::-webkit-input-placeholder {
    color: #c6ccd2;
}

.error .form-control {
    border-color: #c53f4e;
}

.form-control.dark-color::-moz-placeholder {
    color: #58595b;
    opacity: 1;
}

.form-control.dark-color:-ms-input-placeholder {
    color: #58595b;
}

.form-control.dark-color::-webkit-input-placeholder {
    color: #58595b;
}

textarea {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

textarea:focus::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

textarea:focus:-ms-input-placeholder {
    color: #c6ccd2;
}

textarea:focus::-webkit-input-placeholder {
    color: #c6ccd2;
}

.error textarea {
    border-color: #c53f4e;
}

select {
    display: block;
    width: 100%;
    height: 36px;
}

input[type="radio"],
input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
}

.skip a {
    color: #000000;
    top: -9999px;
    left: -9999px;
    position: absolute;
}

.skip a:focus {
    position: static;
    width: auto;
    height: auto;
}

.btn {
    border-radius: 4px;
    white-space: normal;
    text-decoration: none;
    padding: 11px 14px 12px;
    text-transform: uppercase;
    -webkit-border-radius: 4px !important;
}

.btn.btn-primary {
    border-radius: 5px;
    -webkit-border-radius: 5px !important;
}

.btn.btn-yellow {
    color: #ffffff;
    background: #f9e08e;
}

.btn.btn-nomad {
    color: #ffffff;
    background: #b7b09d;
}

.btn.btn-algae-green {
    color: #ffffff;
    background: #8be1b1;
}

.btn.btn-salmon {
    color: #ffffff;
    background: #ff8e6c;
}

.btn.btn-flamingo {
    color: #ffffff;
    background: #f13f4a;
}

.btn.btn-polo-blue {
    color: #ffffff;
    background: #83a9d0;
}

.btn.btn-fuzzy-brown {
    color: #ffffff;
    background: #ca4951;
}

span.btn {
    cursor: default;
}

span.btn:active,
span.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ---------------------------------------------------------
   3. Сommon site styles
   ---------------------------------------------------------*/
/* main page wrapper */
#wrapper {
    overflow: hidden;
    position: relative;
}

/* header styles */
#header {
    margin: 0 0 20px;
    padding: 0 0 21px;
    border-bottom: #dfe3e6 solid 1px;
}

.home-page #header {
    margin: 0;
}

.home-page .form-category {
    display: inline-block;
    border-radius: 4px 4px 0 0;
    border: 1px solid #e8e8e8;
    background-color: rgba(246, 246, 246, 0.9);
    padding: 14px 0 8px;
}

.home-page .form-category .container {
    display: inline-block;
    /*width: auto;*/
    /*min-width: 960px;*/
}

.home-page .form-category .multiselect li {
    text-align: left;
}

/* topbar */
.topbar {
    margin: 0 0 24px;
    padding: 7px 0 8px;
    background: #f7f7f7;
    border-bottom: solid 1px #e6e6e6;
}

.topbar ul {
    margin: 0 0 0 -14px;
}

.topbar ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 0 45px 0 0;
    letter-spacing: 0.2px;
}

.topbar ul li i {
    font-size: 16px;
    margin: 0 5px 0 0;
}

.topbar ul li i.icon-mail-alt {
    font-size: 14px;
    margin: 0 6px 0 0;
}

.topbar ul li.email {
    font-size: 12px;
}

.topbar a {
    text-decoration: none;
    color: #151f35;
}

.topbar a:hover,
.topbar a:active,
.topbar a:focus {
    color: #395490;
    text-decoration: none;
}

/* navbar-default */
.navbar-default .navbar-brand {
    padding: 0;
    height: auto;
    outline: none;
}

.navbar-default .navbar-brand img {
    display: block;
    max-width: 100%;
}

.navbar-default img {
    border: 0;
    background: none;
}

.navbar-default .navbar-header {
    margin: 8px 10px 0 -11px;
}

.navbar-default .navbar-collapse {
    float: right;
    margin: 0 -21px 0 0;
}

.navbar-default .navbar-nav {
    margin: 12px 0 0;
}

.navbar-default .navbar-nav > li {
    margin: 0 0 0 34px;
}

.navbar-default .navbar-nav > li.link-flag + li {
    margin: 0 0 0 4px;
}

.navbar-default .navbar-nav > li > a {
    padding: 0;
    display: inline;
    text-decoration: none;
}

.navbar-default .navbar-nav > li > .dropdown-menu {
    margin: 15px 0 0 -5px;
    border-radius: 5px;
    border-color: #c6ccd2;
}

.navbar-default .navbar-nav > li > .dropdown-menu.flag-list {
    min-width: 80px;
}

.navbar-default .navbar-nav > li > .dropdown-menu:after {
    left: 10px;
    z-index: 2;
    bottom: 100%;
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 5px 7px;
    border-color: transparent;
    border-bottom-color: #ffffff;
}

.navbar-default .navbar-nav > li > .dropdown-menu:before {
    left: 9px;
    bottom: 100%;
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 6px 8px;
    border-color: transparent;
    border-bottom-color: #c6ccd2;
}

.navbar-default .navbar-nav > li > .dropdown-menu li {
    font-size: 12px;
}

.navbar-default .navbar-nav > li > .dropdown-menu li + li {
    border-top: #d4d9dd solid 1px;
}

.navbar-default .navbar-nav > li > .dropdown-menu li a {
    padding: 3px 10px;
    text-decoration: none;
}

.navbar-default .navbar-nav > li > .dropdown-menu li a:hover {
    text-decoration: none;
}

.navbar-default .flag {
    display: inline-block;
    vertical-align: top;
    margin: 5px 2px 0 0;
}

.navbar-default .btn {
    margin: 0 0 0 29px;
}

.navbar-default .icon-down-open-mini {
    right: 0;
    position: relative;
    color: #d2d2d2;
}

/* jcf-select-currency-selector */
.jcf-select.jcf-select-currency-selector {
    border: 0;
    height: auto;
    cursor: pointer;
    border-radius: 0;
}

.jcf-select.jcf-select-currency-selector .jcf-select-text {
    margin: 0;
    color: #58595b;
    cursor: pointer;
    line-height: 20px;
}

.jcf-select.jcf-select-currency-selector .jcf-select-text:hover,
.jcf-select.jcf-select-currency-selector.jcf-focus .jcf-select-text {
    color: #c50000;
}

.jcf-select.jcf-select-currency-selector .jcf-select-opener {
    display: none;
}

.jcf-select-drop.jcf-select-currency-selector {
    min-width: 150px;
    margin: 15px 0 0 -5px !important;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-select-drop-content {
    border-radius: 5px;
    position: relative;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-select-drop-content:after {
    left: 10px;
    z-index: 2;
    bottom: 100%;
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 5px 7px;
    border-color: transparent;
    border-bottom-color: #ffffff;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-select-drop-content:before {
    left: 9px;
    bottom: 100%;
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 6px 8px;
    border-color: transparent;
    border-bottom-color: #c6ccd2;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-list {
    overflow: hidden;
    border-radius: 5px;
    background: #ffffff;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-list ul {
    border-radius: 5px;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-list ul li {
    font-size: 12px;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-list ul li + li {
    border-top: #d4d9dd solid 1px;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-list .jcf-option {
    padding: 3px 10px;
    text-decoration: none;
}

.jcf-select-drop.jcf-select-currency-selector .jcf-list .jcf-option.jcf-hover,
.jcf-select-drop.jcf-select-currency-selector .jcf-list .jcf-option:hover {
    color: #262626;
    background: #f5f5f5;
}

.jcf-select-drop.jcf-select-currency-selector.jcf-drop-flipped {
    margin: -10px 0 0 -7px !important;
}

.jcf-select-drop.jcf-select-currency-selector.jcf-drop-flipped .jcf-select-drop-content:after {
    top: 100%;
    bottom: auto;
    border-width: 7px 5px 0;
    border-color: #ffffff transparent transparent;
}

.jcf-select-drop.jcf-select-currency-selector.jcf-drop-flipped .jcf-select-drop-content:before {
    top: 100%;
    bottom: auto;
    border-width: 8px 6px 0;
    border-color: #c6ccd2 transparent transparent;
}

/* form-category */
.form-category {
    position: relative;
    padding: 16px 0 12px;
    background: #f6f6f6;
}

.form-category .area {
    margin: 0 auto;
    overflow: hidden;
    max-width: 880px;
    position: relative;
    /*padding: 0 200px 5px 0;*/
}

.form-category input.btn-default {
    width: 178px;
    font-weight: 400;
    padding: 7px 10px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
}

.form-category .col {
    /*width: 48.6%;*/
    width: auto;
    display: inline-block;
    /*float: left;*/
}

.home-page .form-category .col {
    margin-right: 20px;
}

.form-category .col + .col {
    width: auto;
    /*float: right;*/
}

.form-category .col + .col .title {
    width: auto;
    /*width: 47px;*/
}

.form-category .title {
    display: inline-block;
    width: auto;
    color: #58595b;
    font-weight: normal;
    margin: 7px 4px 0 0;
}

.range-area .title {
    float: left;
}

.form-category .title label {
    margin: 0;
    display: inline;
    font-weight: 400;
}

.form-category .multiselect {
    display: inline-block;
}

.form-category .multiselect .btn-group, .form-category .multiselect .btn-default {
    top: 0;
    right: 0;
    padding: 0;
    width: 180px;
    height: 36px;
}

.home-page .form-category .multiselect .btn-group, .home-page .form-category .multiselect .btn-default {
    width: 220px;
}

.form-category .field-holder {
    display: inline-block;
}

.home-page .form-category .field-holder {
    width: 280px;
}

/*.form-category .field-holder,*/
.form-category .select-holder {
    overflow: hidden;
}

.form-category .input-placeholder-text {
    padding: 0 25px;
}

.form-category select {
    display: block;
    width: 100%;
    height: 36px;
}

.form-category.alt {
    padding: 0 0;
    background: none;
}

.form-category .form-holder {
    position: relative;
    background: #e8e8e8;
    border-radius: 4px;
    margin: 0 0 40px;
    padding: 15px 19px 15px 19px;
}

.form-category .form-holder:before,
.form-category .form-holder:after {
    content: " ";
    display: table;
}

.form-category .form-holder:after {
    clear: both;
}

.form-category .form-holder:before,
.form-category .form-holder:after {
    content: " ";
    display: table;
}

.form-category .form-holder:after {
    clear: both;
}

.form-category .form-holder input.btn-default {
    display: inline-block;
    width: 130px;
}

.form-category .form-holder .col {
    width: auto;
    padding: 0 10px 0 0;
}

.form-category .form-holder .col.location {
    display: inline-block;
}

.form-category .form-holder .col.location .title {
    width: auto;
    margin: 10px 7px 0 1px;
}

.form-category .form-holder .col.location .field-holder {
    width: 217px;
}

.form-category .form-holder .col.location .form-control {
    padding: 5px;
}

.form-category .form-holder .col.time {
    width: 42%;
    margin: 0 -20px 0 0;
}

.form-category .form-holder .col.time .title {
    width: auto;
    margin: 9px 7px 0 0;
}

.form-category .form-holder .col.time .form-control {
    padding: 5px 5px;
    text-align: center;
    color: #c6ccd2;
}

.form-category .form-holder .col.time .form-control::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.form-category .form-holder .col.time .form-control:-ms-input-placeholder {
    color: #c6ccd2;
}

.form-category .form-holder .col.time .form-control::-webkit-input-placeholder {
    color: #c6ccd2;
}

.form-category .form-holder .col.time .form-control:focus::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.form-category .form-holder .col.time .form-control:focus:-ms-input-placeholder {
    color: #c6ccd2;
}

.form-category .form-holder .col.time .form-control:focus::-webkit-input-placeholder {
    color: #c6ccd2;
}

.form-category .form-holder .col.time .col {
    width: 46.9%;
}

.form-category .form-holder .col.time .col:first-child {
    width: 51.5%;
}

.form-category .form-holder .col + .col {
    display: inline-block;
    vertical-align: top;
}

.form-category .form-holder .title {
    margin: 7px 6px 0 0;
}

.form-category .input-append {
    position: relative;
    padding: 0 35px 0 0;
    width: 157px;
}

.form-category .input-append .input-placeholder-text {
    right: 36px;
    padding: 0 5px;
    text-align: center;
}

.form-category .add-on {
    top: 50%;
    right: 0;
    width: 22px;
    height: 22px;
    margin: -16px 0 0;
    position: absolute;
}

.form-category .icon-calendar, .form-category .icon-clock, .time-ranges .icon-clock {
    color: #888a90;
    font-size: 22px;
    cursor: pointer;
    text-indent: -14px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.time-ranges .icon-clock {
    color: #c6cdd2;
    margin-left: 10px;
}

.form-category .icon-calendar:hover, .form-category .icon-clock:hover, .time-ranges .icon-clock:hover {
    color: #4a4b4f;
}

.form-category .sub-holder {
    margin: 0 -11px;
}

.form-category .sub-holder:before,
.form-category .sub-holder:after {
    content: " ";
    display: table;
}

.form-category .sub-holder:after {
    clear: both;
}

.form-category .sub-holder:before,
.form-category .sub-holder:after {
    content: " ";
    display: table;
}

.form-category .sub-holder:after {
    clear: both;
}

.form-category .selection-holder {
    width: 50%;
    float: right;
}

.form-category .selection-holder .select-holder {
    float: left;
    width: 23.3333%;
    padding: 0 0 0 10px;
}

.form-category .selection-holder .select-holder:last-child {
    margin: 0 -5px 0 0;
}

.form-category .selection-holder .jcf-select {
    height: 40px;
}

.form-category .selection-holder .jcf-select .jcf-select-text {
    margin-top: 6px;
}

/* range-area */
.range-area {
    float: left;
    width: 49%;
    padding-top: 5px;
}

.range-area .title {
    width: auto;
    margin: 6px -23px 0 0;
}

/* range-holder */
.range-holder {
    float: left;
    width: 50%;
}

.range-holder .range-box {
    margin: 0 18px 0 0;
    padding: 5px 15px 15px;
}

.range-holder .range-box:after {
    content: '';
    display: block;
    clear: both;
}

.range-holder .range-box .value {
    position: absolute;
    bottom: 16px;
    left: 50%;
    width: 60px;
    margin: 0 0 0 -30px;
    text-align: center;
}

.range-holder .range-price {
    overflow: hidden;
    padding: 0 17px 0 15px;
}

.range-holder .price {
    float: left;
    color: #58595b;
}

.range-holder .price.right {
    float: right;
}

/* range-bar */
.range-bar {
    height: 7px;
    position: relative;
    padding: 6px 0 15px;
    margin: 0 15px 0 23px;
}

.range-bar:after {
    top: 50%;
    left: 0;
    right: 0;
    height: 7px;
    content: '';
    margin: -3px 0 0;
    position: absolute;
    background: #e2dfdf;
    border-radius: 7px;
    -webkit-box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.16) inset;
    box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.16) inset;
}

.range-bar .range-limit,
.range-bar .ui-slider-range {
    z-index: 2;
    float: left;
    width: 47%;
    height: 7px;
    margin: 1px 2px 0;
    position: relative;
    background: #9a9da3;
    border-radius: 7px;
}

.range-bar .pointer,
.range-bar .ui-slider-handle {
    float: left;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: -4px 0 0 -8px;
    border: #cdcdcd solid 1px;
    -webkit-box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.37);
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.37);
    background: #fefefe;
    background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fefefe), to(#f4f4f4));
    background-image: -webkit-linear-gradient(top, #fefefe, 0%, #f4f4f4, 100%);
    background-image: -moz-linear-gradient(top, #fefefe 0%, #f4f4f4 100%);
    background-image: linear-gradient(to bottom, #fefefe 0%, #f4f4f4 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str(@start-color)}', endColorstr='#{ie-hex-str(@end-color)}', GradientType=0);
    filter: none;
    cursor: pointer;
    z-index: 200;
    position: absolute;
}

.range-bar .pointer.right,
.range-bar .ui-slider-handle.right {
    float: right;
    margin-right: -2px;
}

/* visual */
.visual {
    margin: 0 0 50px;
    background: url(../../images/bg-section.png) no-repeat 50% 0 #58595b;
}

.visual .title-holder {
    display: table;
    width: 100%;
    height: 280px;
}

.visual .title-frame {
    padding: 6px 0 14px;
    display: table-cell;
    vertical-align: middle;
}

.visual h1 {
    color: #ffffff;
    margin: 0 auto;
    max-width: 670px;
    font: 700 48px/58px 'Raleway', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.visual h1 .thin-text {
    font-weight: 400;
}

.visual h1 .text {
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* infoarea  */
.infoarea {
    color: #58595b;
    line-height: 22px;
    padding-bottom: 22px;
}

.infoarea .info-box {
    padding-bottom: 20px;
}

.infoarea .icon {
    margin: 0 22px 0 0;
}

.infoarea .textbox {
    overflow: hidden;
}

.infoarea h2 {
    margin: 0;
    text-transform: uppercase;
    font: 800 16px/22px 'Raleway', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.infoarea h2 a {
    color: #58595b;
    text-decoration: none;
}

.infoarea h2 a:hover,
.infoarea h2 a:active,
.infoarea h2 a:focus {
    color: #98999b;
    text-decoration: none;
}

.infoarea p {
    margin: 0 0 10px;
}

/* bottom-container */
.bottom-container {
    color: #ffffff;
    background: #333435;
}

/* aside-footer */
.aside-footer {
    background: #58595b;
    color: #f5f5f5;
    padding: 26px 0 21px;
    /* navarea */
    /* contact-info */
}

.aside-footer .navarea {
    overflow: hidden;
    line-height: 17px;
}

.aside-footer .navarea ul {
    width: 220px;
    margin: 0 10px 0 0;
}

.aside-footer .navarea ul li + li {
    margin: 14px 0 0;
}

.aside-footer .navarea ul li a {
    color: #f5f5f5;
    text-decoration: none;
}

.aside-footer .navarea ul li a:hover {
    opacity: 0.75;
}

.aside-footer .contact-info {
    color: #ffffff;
    width: 254px;
    line-height: 17px;
}

.aside-footer .contact-info li + li {
    margin: 9px 0 0;
}

.aside-footer .contact-info a,
.aside-footer .contact-info address {
    color: #ffffff;
    text-decoration: none;
}

.aside-footer .contact-info address {
    margin: 0;
}

.aside-footer .contact-info address .icon-location {
    font-size: 17px;
    margin: 0 8px 0 0;
}

.aside-footer .contact-info a:hover {
    opacity: 0.75;
}

.aside-footer .title {
    display: block;
    font-weight: 400;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.aside-footer .icon-phone {
    font-size: 18px;
    margin: 0 8px 0 -3px;
}

.aside-footer .icon-mail-alt {
    font-size: 15px;
    margin: 0 11px 0 0;
}

/* footer styles */
#footer {
    padding-top: 14px;
    padding-bottom: 11px;
    font-size: 13px;
    line-height: 16px;
}

#footer p {
    margin: 0 0 0 11%;
    overflow: hidden;
}

#footer a {
    color: #ffffff;
    text-decoration: none;
}

#footer a:hover {
    opacity: 0.75;
}

#footer .by {
    margin: 0 38px 0 10px;
}

/* breadcrumbs */
.breadcrumb {
    margin: 0 0 19px;
}

.breadcrumb > li {
    vertical-align: top;
}

.breadcrumb > li + li:before {
    padding: 0;
}

.breadcrumb > li a {
    color: #58595b;
    text-decoration: none;
}

.breadcrumb > li a:hover {
    color: #000000;
}

/* twocolumns */
.twocolumns {
    padding-top: 21px;
    padding-bottom: 56px;
}

.twocolumns.alt {
    padding: 0 0 25px;
}

.twocolumns.alt #sidebar .holder {
    margin: 0 -10px 0 -20px;
}

/* maparea */
.maparea .map-holder {
    height: 1111px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    border: #dedede solid 1px;
}

.maparea iframe {
    border: 0;
    overflow: hidden;
    width: 100%;
    height: 1130px;
}

.maparea .holder {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

/* listing-area */
.listing-area {
    position: relative;
}

.listing-area .listing-holder {
    margin-bottom: 0;
}

/* listing-post */
.listing-post {
    position: relative;
    margin-bottom: 30px;
}

.listing-post .listing-box {
    color: #58595b;
    display: block;
    position: relative;
    text-decoration: none;
}

.listing-post .listing-box:hover {
    text-decoration: none;
}

.listing-post .frame {
    overflow: hidden;
    border-radius: 5px;
    background: #ffffff;
    border: #eaebec solid 1px;
}

.listing-post .post-info {
    overflow: hidden;
    min-height: 200px;
    position: relative;
}

.listing-post .img-holder {
    position: relative;
}

.listing-post .img-holder img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.listing-post .box {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.listing-post .box-holder {
    display: table;
    width: 100%;
    height: 100%;
}

.listing-post .head {
    overflow: hidden;
}

.listing-post .foot {
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    position: absolute;
}

.listing-post .time-price {
    float: left;
    width: 70px;
    color: #58595b;
    line-height: 1.241;
    margin: 15px 10px 0 16px;
}

.listing-post .time-price p {
    margin: 0;
}

.listing-post .price {
    display: block;
    margin: 0 0 -3px;
    font-size: 36px;
    line-height: 39px;
}

.listing-post .favourit {
    top: 0;
    right: 0;
    z-index: 2;
    width: 46px;
    height: 46px;
    color: #e8e8e8;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    background: #797979;
    margin: 20px 31px 0 0;
    font-size: 26px;
    line-height: 46px;
    text-decoration: none;
}

.listing-post .favourit:hover {
    text-decoration: none;
    background: #c53f4e;
}

.listing-post .area {
    overflow: hidden;
    padding: 1px 21px 10px 10px;
}

.listing-post .title {
    padding: 11px;
    display: block;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    line-height: 21px;
    background: rgba(0, 0, 0, 0.45);
}

.listing-post .post-content {
    overflow: hidden;
    padding: 16px 18px;
}

.listing-post .alignleft {
    float: left;
    border-radius: 5px;
    margin: 4px 10px 0 0;
    border: #eaebec solid 1px;
}

.listing-post .textbox {
    overflow: hidden;
}

.listing-post h2 {
    margin: 0;
    color: #58595b;
    font-size: 14px;
    line-height: 20px;
}

.listing-post p {
    margin: 0 0 5px;
}

.listing-post .info-btns {
    margin: 0;
    z-index: 3;
    left: 44px;
    right: 44px;
    bottom: 132px;
    position: absolute;
}

.listing-post .info-btns li {
    z-index: 2;
    float: left;
    padding: 0 5px;
    width: 30.733%;
    position: relative;
}

.listing-post .info-btns li.select-holder {
    width: 38.3%;
}

.listing-post .info-btns .btn {
    display: block;
    padding: 8px 5px;
    background: none;
    position: relative;
    min-width: inherit;
    border-radius: 3px;
    text-transform: none;
    font-size: 14px;
    line-height: 18px;
    border-color: #c6ccd2;
}

.listing-post .info-btns .btn:before {
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: #9fa2a0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.listing-post .info-btns .btn:hover:before {
    background: #c6c3c3;
}

.listing-post .info-btns .jcf-select {
    height: 36px;
}

.listing-post .info-btns .jcf-select .jcf-select-opener {
    width: 29px;
}

.listing-post .info-btns .jcf-select .jcf-select-text {
    margin: 4px 34px 0 9px;
}

.listing-post .info-btns .jcf-select .jcf-select-text img {
    width: 20px;
    height: auto;
    margin: -2px 3px 0 0;
}

.listing-post.small {
    margin: 0;
}

.listing-post.small .rating {
    margin: 15px 10px 0 15px;
}

.listing-post.small .time-price {
    float: right;
    margin: 8px 15px 0 0;
    font-size: 14px;
    line-height: 17px;
}

.listing-post.small .price {
    margin: 0 0 -5px;
}

.listing-post.small .post-info {
    min-height: 150px;
}

.listing-post.small .foot {
    height: 29px;
}

.listing-post.small .certified {
    float: none;
    font-size: 14px;
    line-height: 17px;
}

.listing-post.small .post-content {
    padding: 15px 16px 9px;
}

.listing-post.small .title {
    padding: 4px 5px;
}

.listing-post.small .rating {
    margin: 13px 10px 0 18px;
}

.listing-post.small .rating li {
    font-size: 17px;
    margin: 0 -6px 0 0;
}

.listing-post.small .textbox {
    overflow: visible;
}

/* rating  */
.rating {
    margin: 0;
    float: left;
    color: #dedddd;
}

.rating li {
    padding: 0;
    color: #d9c26c;
    font-size: 28px;
    margin: 0 -10px 0 0;
}

.rating i.icon-star {
    color: #dedddd;
}

.rating a {
    color: #d9c26c;
    text-decoration: none;
}

.rating a:hover i.icon-star {
    color: #d9c26c;
}

.rating a:before {
    width: auto;
    display: block;
}

.rating .active a i.icon-star {
    color: #d9c26c;
}

/* certified */
.certified {
    float: right;
    color: #58595b;
    margin: 12px 0 0;
}

.certified .icon-ok {
    color: #00ad5f;
}

/* popup-holder */
.popup-holder {
    top: 37.9%;
    left: 50%;
    width: 20px;
    height: 32px;
    position: absolute;
    margin: -16px 0 0 -3px;
}

.popup-holder .open {
    width: auto;
    display: block;
    color: #393939;
    font-size: 36px;
    text-decoration: none;
}

.popup-holder .open:hover {
    color: #000000;
}

.popup-holder .open:before {
    width: auto;
}

.popup-holder .popup {
    left: 50%;
    width: 250px;
    bottom: 100%;
    display: none;
    position: absolute;
    margin: 0 0 9px -119px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.popup-holder .popup:after {
    top: 100%;
    left: 50%;
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 15px 15px 0;
    border-color: transparent;
    margin: -1px 0 0 -15px;
    border-top-color: #ffffff;
}

/* close btn */
.close {
    top: -12px;
    z-index: 6;
    right: -12px;
    width: 25px;
    height: 25px;
    text-align: center;
    color: #c6ccd2;
    position: absolute;
    background: #ffffff;
    border-radius: 100%;
    text-decoration: none;
    font-size: 20px;
    line-height: 20px;
    border: solid 2px #c6ccd2;
}

.close:focus,
.close:hover {
    text-decoration: none;
    color: #8d99a5;
    border-color: #8d99a5;
}

.close i:before {
    margin: 0;
    width: auto;
    display: inline;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .close {
        line-height: 21px;
    }
}

/* nav-pagination */
.nav-pagination {
    margin: 0 -10px 0 0;
}

.nav-pagination .pagination {
    margin: -1px 0 0;
}

/* pagination */
.pagination {
    margin: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
}

.pagination > li {
    text-align: center;
}

.pagination > li:last-child a,
.pagination > li:first-child a {
    border-radius: 0;
    -webkit-border-radius: 0;
}

.pagination > li > a {
    padding: 0 3px;
    min-width: 50px;
    line-height: 40px;
    border-radius: 0;
    -webkit-border-radius: 0;
}

.pagination > li > a[aria-label] {
    font-size: 21px;
}

.pagination > li > a:focus,
.pagination > li > span:focus {
    outline: none;
    background: #ffffff;
    color: #414042;
}

.pagination > li > a:focus:hover,
.pagination > li > span:focus:hover {
    background: #e8e8e8;
}

/* main content styles */
#content .content-holder {
    margin: 0 30px 0 -10px;
}

#content .alert-success {
    background: #d1e4f3;
    border-color: #609fd1;
    font-size: 18px;
    line-height: 1.125;
    padding: 25px 50px 30px 91px;
}

#content .alert-success .ico {
    margin: -20px 0 0 4px;
}

/* sidebar styles */
#sidebar {
    position: relative;
}

#sidebar .holder {
    margin: -21px -19px 0 -11px;
}

#sidebar .sub-head {
    text-align: right;
    padding: 0 0 8px;
    height: 92px;
}

#sidebar .sub-head .rating {
    float: none;
    text-align: right;
    margin: 0;
    display: inline-block;
}

#sidebar .sub-head .rating li {
    display: inline-block;
    vertical-align: top;
    font-size: 26px;
    margin: 0 0 0 -8px;
}

#sidebar .sub-head .counter {
    color: #58595b;
    display: inline-block;
    position: relative;
    top: 9px;
}

#sidebar .social-networks {
    margin: 11px 0 18px;
}

/* social-networks */
.social-networks {
    margin: 0;
}

.social-networks li {
    padding: 0;
    margin: 0 1px 0 0;
    vertical-align: top;
}

.social-networks a {
    color: #ffffff;
    width: 29px;
    height: 29px;
    display: block;
    text-align: center;
    border-radius: 100%;
    font-size: 15px;
    line-height: 29px;
    text-decoration: none;
    background: #c6ccd2;
}

.social-networks a:hover {
    text-decoration: none;
    background: #71808e;
}

.social-networks a i:before {
    width: auto;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

/* gallery-small */
.gallery-small {
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    background: #e8e8e8;
    border: #eaebec solid 1px;
}

.gallery-small .slideset {
    position: relative;
}

.gallery-small .slide {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}

.gallery-small .slide.active {
    z-index: 2;
}

.gallery-small .slide img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.gallery-small .btn-prev,
.gallery-small .btn-next {
    top: 50%;
    left: 17px;
    z-index: 3;
    width: 24px;
    height: 24px;
    margin: -7px 0 0;
    position: absolute;
    overflow: hidden;
    text-indent: -9999px;
    text-decoration: none;
}

.gallery-small .btn-prev:after,
.gallery-small .btn-next:after,
.gallery-small .btn-prev:before,
.gallery-small .btn-next:before {
    top: 0;
    left: 0;
    content: '';
    margin: 3px 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 100%;
    height: 2px;
    position: absolute;
    background: #cbd0d5;
}

.gallery-small .btn-prev:after,
.gallery-small .btn-next:after {
    top: auto;
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.gallery-small .btn-prev:hover:after,
.gallery-small .btn-next:hover:after,
.gallery-small .btn-prev:hover:before,
.gallery-small .btn-next:hover:before {
    background: #768491;
}

.gallery-small .btn-next {
    left: auto;
    right: 17px;
}

.gallery-small .btn-next:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.gallery-small .btn-next:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* widget */
.widget {
    margin: 0 0 20px;
    border-radius: 5px;
    border: #eaebec solid 1px;
    padding: 17px 18px 18px 20px;
}

.widget h1 {
    color: #58595b;
    margin: 0 0 10px;
}

.widget.article {
    color: #58595b;
    padding: 17px 18px 41px 20px;
}

.widget.article .img-holder {
    overflow: hidden;
    border-radius: 5px;
    margin: 2px 0 15px;
    border: #eaebec solid 1px;
}

.widget.article .img-holder img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.widget.article h1 {
    margin: 0 0 14px -2px;
    font-size: 18px;
    line-height: 24px;
}

.widget.article .author-area {
    overflow: hidden;
    margin: 0 0 23px;
}

.widget.article .author-img {
    float: left;
    overflow: hidden;
    border-radius: 4px;
    margin: 0 20px 0 0;
    border: #eaebec solid 1px;
}

.widget.article .textbox {
    overflow: hidden;
    padding: 14px 0 0;
}

.widget.article .author-name {
    display: block;
    margin: 0 0 6px;
}

.widget.article .author-name a {
    color: #58595b;
    text-decoration: none;
}

.widget.article .author-name a:hover {
    text-decoration: none;
    color: #0d0d0d;
}

.widget.article .rating li {
    font-size: 18px;
    margin: 0 -4px 0 -1px;
}

.widget.article .info-list {
    padding: 0;
}

.widget .gallery-small {
    padding: 0 29px;
    margin: 2px 0 14px;
}

.widget .gallery-small .btn-prev,
.widget .gallery-small .btn-next {
    top: 0;
    left: 0;
    bottom: 0;
    width: 29px;
    height: auto;
    background: #fbfbfb;
    border: solid #f0f1f1;
    border-width: 0 1px 0 0;
}

.widget .gallery-small .btn-prev:after,
.widget .gallery-small .btn-next:after,
.widget .gallery-small .btn-prev:before,
.widget .gallery-small .btn-next:before {
    top: 50%;
    left: 3px;
    right: 3px;
    width: auto;
    margin: -7px 0 0;
}

.widget .gallery-small .btn-prev:after,
.widget .gallery-small .btn-next:after {
    margin: 7px 0 0;
}

.widget .gallery-small .btn-next {
    right: 0;
    left: auto;
    border-width: 0 0 0 1px;
}

.widget .gallery-small + h1 {
    margin: 0 0 13px;
    line-height: 1.25;
}

.widget .gallery-small ~ .btn-default {
    width: 190px;
    display: block;
    font-size: 16px;
    padding: 5px 14px;
    margin: 0 auto 14px;
    text-transform: none;
}

/* members-list */
.members-list {
    position: relative;
    padding: 18px 20px 2px;
}

.members-list h1 {
    margin: 0 0 21px;
    text-align: center;
    font-size: 24px;
    line-height: 24px;
}

/* definition-list */
.info-list {
    margin: 0;
    list-style: none;
    color: #58595b;
    line-height: 24px;
    padding: 0 0 0 19px;
}

.info-list:before,
.info-list:after {
    content: " ";
    display: table;
}

.info-list:after {
    clear: both;
}

.info-list:before,
.info-list:after {
    content: " ";
    display: table;
}

.info-list:after {
    clear: both;
}

.info-list li {
    margin: 0 0 6px;
}

.info-list i {
    float: left;
    margin: 1px 8px 0 -24px;
}

.info-list i.icon-ok {
    color: #00ad5f;
    font-size: 13px;
}

.info-list i.icon-cancel {
    color: #818181;
    font-size: 20px;
    margin: 0 2px 0 -28px;
}

.info-list .tooltip-button {
    margin: 3px 0 0;
}

/* property-list */
.property-list {
    position: relative;
}

.property-list h1 {
    color: #3f3f3f;
    margin: 0 0 26px;
    font-size: 14px;
    line-height: 1.125;
}

.property-list .listing-post + .listing-post {
    margin: 20px 0 0;
}

.property-list .listing-post .rating {
    margin: 19px 10px 0 18px;
}

.property-list .listing-post .rating li {
    margin: 0 -3px 0 0;
}

.property-list .listing-post .time-price {
    margin: 11px 17px 0 0;
    font-size: 14px;
    line-height: 17px;
}

.property-list .listing-post .price {
    margin: 0 0 -3px;
}

.property-list .listing-post .post-content {
    padding: 17px 20px 12px;
}

.property-list .listing-post h2 {
    margin: 0 0 3px;
}

.property-list .listing-post .certified {
    margin: 0 0 0 -4px;
    font-size: 14px;
    line-height: 17px;
}

.property-list .listing-post .certified .icon-ok {
    margin: 0 3px 0 0;
}

/* reservation */
.reservation {
    position: relative;
    text-align: center;
    padding: 23px 19px 18px 18px;
}

.reservation .price {
    color: #58595b;
    display: block;
    margin: -3px 0 21px;
    text-align: center;
    font-size: 47px;
    line-height: 1.125;
}

.reservation .text {
    display: block;
}

.reservation .btn-default {
    display: block;
    margin: 0 0 9px;
    font-size: 21px;
    font-weight: 600;
    padding: 7px 14px;
    text-transform: none;
    background: #9a9da3;
}

.reservation .btn-default:hover {
    background: #7f838b;
}

.reservation .title {
    color: #58595b;
    display: block;
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
}

.reservation .add-info {
    margin: 0 0 -5px;
    position: relative;
}

/* date-selection */
.date-selection {
    margin: 0 0 24px;
}

.date-selection .col {
    float: left;
    width: 48.7%;
    position: relative;
}

.date-selection .col + .col {
    float: right;
}

.date-selection .col .title {
    color: #58595b;
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 17px;
    margin: 0 40px 10px 0;
}

.date-selection .form-control {
    padding: 5px;
    text-align: center;
}

.date-selection .input-placeholder-text {
    padding: 0 5px;
    white-space: nowrap;
}

.date-selection .add-on {
    top: -32px;
    right: -4px;
    position: absolute;
}

.date-selection .icon-calendar,
.date-selection .icon-clock {
    cursor: pointer;
    color: #c6cdd2;
    font-size: 20px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.date-selection .icon-calendar:hover, .icon-clock:hover {
    color: #71828e;
}

/* similar-ads */
.similar-ads {
    color: #58595b;
    margin: 24px 0 0;
    position: relative;
    padding: 19px 18px 18px 18px;
}

.widget.similar-ads h2 {
    color: #3f3f3f;
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.125;
}

.similar-ads .listing-holder {
    margin: 0 0 19px;
    position: relative;
}

.similar-ads .post {
    line-height: 18px;
}

.similar-ads .post:before,
.similar-ads .post:after {
    content: " ";
    display: table;
}

.similar-ads .post:after {
    clear: both;
}

.similar-ads .post:before,
.similar-ads .post:after {
    content: " ";
    display: table;
}

.similar-ads .post:after {
    clear: both;
}

.similar-ads .post + .post {
    margin: 17px 0 0;
}

.similar-ads .alignleft {
    float: left;
    width: 91px;
    overflow: hidden;
    border-radius: 4px;
    color: #ebeced;
    margin: 1px 10px 0 0;
    border: #ebeced solid 1px;
}

.similar-ads .alignleft img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.similar-ads .post-content {
    overflow: hidden;
}

.similar-ads h2 {
    margin: 0 0 9px;
    font-size: 14px;
    line-height: 1.125;
}

.similar-ads h2 a {
    color: #58595b;
    text-decoration: none;
}

.similar-ads h2 a:hover {
    text-decoration: none;
    color: #262627;
}

.similar-ads p {
    margin: 0;
}

.similar-ads .btn-default {
    display: block;
    padding: 4px 34px 1px;
    text-transform: none;
    background: #c7cdd3;
}

.similar-ads .btn-default:hover {
    background: #aab4bd;
}

/* tooltip-button */
.tooltip-button {
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: top;
    width: 17px;
    height: 17px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    -webkit-transition: none;
    transition: none;
    border-radius: 100%;
    text-align: left !important;
    text-indent: -9999px !important;
    background: url(../../images/icons.png) no-repeat;
}

.tooltip-button:hover {
    background-position: -27px 0;
}

/* tooltip style */
.tooltip {
    opacity: 1;
    filter: alpha(opacity=100);
    margin: 0 0 0 10px !important;
}

.tooltip:before,
.tooltip:after {
    top: 50%;
    right: 100%;
    z-index: 3;
    margin: -10px -6px 0 0;
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent;
    border-right-color: #ffffff;
}

.tooltip:after {
    z-index: 2;
    margin: -12px -6px 0 0;
    border-width: 12px 11px 12px 0;
    border-right-color: #ebeced;
}

.tooltip .tooltip-arrow {
    display: none;
}

.tooltip .tooltip-inner {
    color: #58595b;
    max-width: 600px;
    text-align: left;
    font-weight: 400;
    background: #ffffff;
    border-radius: 5px;
    margin: 0 10px 0 0;
    padding: 10px 10px 10px 23px;
    border: #ebeced solid 1px;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.2);
}

.tooltip.left .tooltip-inner {
    margin: 0;
}

.tooltip.left:before,
.tooltip.left:after {
    top: 50%;
    left: 100%;
    right: auto;
    margin: -10px 0 0 -6px;
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent;
    border-color: transparent transparent transparent #ffffff;
}

.tooltip.left:after {
    margin: -12px 0 0 -6px;
    border-width: 12px 0 12px 11px;
    border-color: transparent transparent transparent #ebeced;
}

@media screen and (min-width: 1700px) {
    .tooltip {
        width: 311px;
    }
}

/* profile-detail */
.profile-detail {
    color: #58595b;
    position: relative;
    margin: -10px -10px 0 27px;
}

.profile-detail .head {
    margin: 0 0 20px;
    padding: 0 0 34px;
    border-bottom: #e8e8e8 solid 1px;
}

.profile-detail .head address {
    color: #58595b;
    margin: 0 0 30px;
    font-size: 30px;
    line-height: 34px;
}

.profile-detail .head address .locality {
    font-weight: 700;
}

.profile-detail h1 {
    color: #58595b;
    margin: 0 0 11px;
    text-transform: uppercase;
}

.profile-detail blockquote {
    border: 0;
    padding: 0;
    color: #58595b;
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 27px;
}

.profile-detail blockquote q {
    font-style: italic;
}

.profile-detail blockquote q:after,
.profile-detail blockquote q:before {
    content: '';
}

/* blog */
.blog {
    margin: 0;
}

.blog .head {
    margin: 0;
    border: 0;
    padding: 0 0 18px;
}

.blog .head .rating {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: -6px 0 0;
}

.listing-container .blog .head .rating {
    float: right;
    clear: right;
}

.blog .head .rating li {
    margin: 0 -12px 0 0;
}

.blog .comments-counter {
    display: inline-block;
    vertical-align: top;
    color: #58595b;
    margin: 4px -2px 0 2px;
    font-size: 18px;
    line-height: 21px;
}

.blog h2 {
    display: inline-block;
    vertical-align: top;
    color: #58595b;
    margin: 0 10px 0 0;
    font-size: 14px;
    line-height: 17px;
}

/* post-holder */
.posts-holder {
    margin: 0;
}

.posts-holder .post {
    color: #58595b;
    padding: 16px 20px;
    position: relative;
    border-radius: 5px;
    margin: 0 0 28px 102px;
    border: #eaebec solid 1px;
}

.posts-holder .post .head {
    overflow: hidden;
    padding: 0 0 7px;
}

.posts-holder .post p {
    margin: 0 0 20px;
}

.posts-holder .post .link {
    float: left;
    margin: 3px 0 0;
}

.posts-holder .post:nth-child(2) .post-content {
    margin-bottom: -4px;
}

.posts-holder .author-img {
    top: 0;
    width: 68px;
    left: -95px;
    text-align: center;
    position: absolute;
}

.posts-holder .img-holder {
    max-width: 60px;
    overflow: hidden;
    border-radius: 4px;
    margin: 0 auto 10px;
    border: solid 1px #eaebec;
}

.posts-holder .img-holder img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.posts-holder .author-name {
    color: #58595b;
    text-decoration: none;
}

.posts-holder .author-name:hover {
    color: #0d0d0d;
}

.posts-holder .meta {
    overflow: hidden;
}

.posts-holder .meta time {
    display: block;
    overflow: hidden;
    text-align: right;
}

.posts-holder .title {
    float: left;
    max-width: 50%;
    margin: 0 10px 0 0;
}

.posts-holder .post-content {
    margin: 0 4px 37px 0;
}

.posts-holder .rating {
    float: right;
    margin: -5px 0 0;
}

.posts-holder .rating li {
    font-size: 19px;
    margin: 0 0 0 -7px;
}

.posts-holder .footer {
    overflow: hidden;
    margin: 0 -4px 0 0;
}

.posts-holder .time {
    float: left;
    margin: 0 10px 0 0;
}

.posts-holder .icon-clock {
    color: #b7bdc4;
    margin: 0 0 0 0;
}

/* listing-section */
.listing-section {
    color: #58595b;
    padding: 20px 0;
    position: relative;
}

.listing-section h1 {
    font-size: 30px;
    margin: 0 0 11px -2px;
}

.listing-section .head {
    margin: -3px 0 30px -10px;
}

.listing-section .holder {
    margin: 0 auto;
    max-width: 1020px;
}

.listing-section .holder:before,
.listing-section .holder:after {
    content: " ";
    display: table;
}

.listing-section .holder:after {
    clear: both;
}

.listing-section .holder:before,
.listing-section .holder:after {
    content: " ";
    display: table;
}

.listing-section .holder:after {
    clear: both;
}

.listing-section h2 {
    font-size: 14px;
    margin: 0 0 24px;
}

.listing-section .block {
    margin: 0 0 20px;
    border-radius: 5px;
    border: #eaebec solid 1px;
    padding: 19px 19px 20px 15px;
}

.listing-section .block h2 {
    margin: 0 0 23px;
}

.listing-section .block .area {
    margin: 0 0 30px;
}

.listing-section .block .area:before,
.listing-section .block .area:after {
    content: " ";
    display: table;
}

.listing-section .block .area:after {
    clear: both;
}

.listing-section .block .area:before,
.listing-section .block .area:after {
    content: " ";
    display: table;
}

.listing-section .block .area:after {
    clear: both;
}

.listing-section .block .alert {
    margin: 0 0 0 4px;
}

.listing-section + .form-signup {
    max-width: 1020px;
    margin: 0 auto 40px;
}

.listing-section + .form-signup:before,
.listing-section + .form-signup:after {
    content: " ";
    display: table;
}

.listing-section + .form-signup:after {
    clear: both;
}

.listing-section + .form-signup:before,
.listing-section + .form-signup:after {
    content: " ";
    display: table;
}

.listing-section + .form-signup:after {
    clear: both;
}

.listing-section + .form-signup + .btns-area {
    margin-bottom: 60px;
}

.btns-area {
    margin: 0 auto;
    max-width: 270px;
}

.btns-area .btn-primary {
    padding: 0 5px;
    display: block;
    width: 100%;
    height: 36px;
    text-transform: none;
}

.agreement {
    margin: 0 0 20px;
}

.agreement:before,
.agreement:after {
    content: " ";
    display: table;
}

.agreement:after {
    clear: both;
}

.agreement:before,
.agreement:after {
    content: " ";
    display: table;
}

.agreement:after {
    clear: both;
}

/* form-selection */
.form-selection {
    margin: 0 0 19px;
    border-radius: 5px;
    padding: 18px 15px 19px;
    border: #eaebec solid 1px;
}

.form-selection .selection-area:before,
.form-selection .selection-area:after {
    content: " ";
    display: table;
}

.form-selection .selection-area:after {
    clear: both;
}

.form-selection .selection-area:before,
.form-selection .selection-area:after {
    content: " ";
    display: table;
}

.form-selection .selection-area:after {
    clear: both;
}

.form-selection .col {
    float: left;
    width: 34.833%;
    padding: 0 15px;
}

.form-selection .col:first-child {
    width: 32.633%;
}

.form-selection .col:last-child {
    width: 31.5%;
    padding: 0 5px 0 13px;
}

.form-selection .jcf-list .jcf-option {
    text-decoration: none;
}

.form-selection .jcf-list .jcf-option:hover {
    color: #ffffff;
    cursor: pointer;
    background: #7a7a7a;
}

.form-selection .jcf-list .jcf-option:hover:after {
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-selection .jcf-list ul {
    max-height: 269px;
}

.form-selection .block1 {
    border-radius: 5px;
    border: #eaebec solid 1px;
    padding: 16px 19px 19px 17px;
    /*margin: 10px;*/
}

label {
    margin: 0;
    padding: 0;
    display: inline;
    font-weight: 400;
}

/* form-listing-info */
.form-listing-info {
    color: #58595b;
    margin: 0 0 19px 2%;
    border-radius: 5px;
    border: #eaebec solid 1px;
    padding: 16px 19px 19px 17px;
    width: 48%;

}

.form-listing-info .field-row:before,
.form-listing-info .field-row:after {
    content: " ";
    display: table;
}

.form-listing-info .field-row:after {
    clear: both;
}

.form-listing-info .field-row:before,
.form-listing-info .field-row:after {
    content: " ";
    display: table;
}

.form-listing-info .field-row:after {
    clear: both;
}

.form-listing-info .field-row + .field-row {
    margin: 16px 0 0;
}

.form-listing-info h2 + .field-row {
    max-width: 852px;
}

.form-listing-info .label {
    float: left;
    color: #58595b;
    margin: 7px 15px 0 0;
}

.form-listing-info .label.block {
    border: 0;
    padding: 0;
    float: none;
    display: block;
    overflow: hidden;
    margin: 0 0 15px;
}

.form-listing-info .textarea-holder {
    margin: 0 0 0 2px;
}

.form-listing-info .form-control {
    margin: 0;
}

.form-listing-info .field-holder {
    overflow: hidden;
}

.form-listing-info .jcf-textarea textarea {
    min-height: 221px;
    max-height: 222px;
}

.thin-scroll textarea,
.form-listing-info textarea {
    height: 222px;
    min-height: 100px;
    max-height: 400px;
}

.thin-scroll .jcf-scrollbar-vertical,
.form-listing-info .jcf-scrollbar-vertical {
    width: 29px;
    background: none;
}

.thin-scroll .jcf-scrollbar-vertical .jcf-scrollbar-slider,
.form-listing-info .jcf-scrollbar-vertical .jcf-scrollbar-slider {
    margin: 0;
    background: #f5f5f5;
    border: #dedede solid 1px;
}

.thin-scroll .jcf-scrollbar-vertical .jcf-scrollbar-handle,
.form-listing-info .jcf-scrollbar-vertical .jcf-scrollbar-handle {
    background: #dedede;
}

.thin-scroll .jcf-scrollbar-vertical .jcf-scrollbar-dec,
.form-listing-info .jcf-scrollbar-vertical .jcf-scrollbar-dec,
.thin-scroll .jcf-scrollbar-vertical .jcf-scrollbar-inc,
.form-listing-info .jcf-scrollbar-vertical .jcf-scrollbar-inc {
    height: 15px;
    background: #ffffff;
}

.thin-scroll .input-placeholder-text {
    line-height: 17px;
    padding: 8px 36px 8px 5px;
}

/* file-selection */
.file-selection {
    color: #58595b;
    margin: 0 0 19px;
    border-radius: 5px;
    padding: 21px 17px 0;
    border: #eaebec solid 1px;
}

.file-selection h2 {
    margin: 0 0 22px;
}

.file-selection .area {
    margin: 0 0 48px;
}

.file-selection .area:before,
.file-selection .area:after {
    content: " ";
    display: table;
}

.file-selection .area:after {
    clear: both;
}

.file-selection .area:before,
.file-selection .area:after {
    content: " ";
    display: table;
}

.file-selection .area:after {
    clear: both;
}

.file-selection .uploader {
    float: left;
    width: 331px;
    margin: 2px 24px 0 0;
}

.file-selection .detail {
    color: #808285;
    overflow: hidden;
    line-height: 19px;
}

.file-selection .detail p {
    margin: 0;
}

.file-selection .icon-resize-full-alt {
    display: inline-block;
    vertical-align: top;
    color: #c6ccd2;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* files-list */
.files-list {
    margin: 0 0 0 -9px;
    position: relative;
}

.files-list:before,
.files-list:after {
    content: " ";
    display: table;
}

.files-list:after {
    clear: both;
}

.files-list:before,
.files-list:after {
    content: " ";
    display: table;
}

.files-list:after {
    clear: both;
}

.files-list .img-thumbnail {
    cursor: move;
    float: left;
    width: 148px;
    height: 118px;
    position: relative;
    margin: 0 10px 20px;
    -webkit-transition: none;
    transition: none;
}

.files-list .img-thumbnail .image {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.files-list .img-thumbnail img {
    width: 100%;
    height: auto;
    vertical-align: top;
    border-radius: 4px;
}

.files-list .img-thumbnail canvas {
    border-radius: 4px;
    width: 100%;
    height: auto;
}

/* price-box */
.price-box {
    display: inline-block;
    vertical-align: top;
    /*width: 350px;*/
    color: #58595b;
    border-radius: 5px;
    margin: 0 4.7% 0 3.5%;
    padding: 15px 16px 17px;
    border: #eaebec solid 1px;
}

.price-box .checkbox {
    padding-left: 11px;
}

.price-box .title {
    display: block;
    font-weight: 400;
    margin: 0 0 17px;
}

.price-box .field-row, .currency-converter .field-row {
    margin-bottom: 10px;
}

.price-box .field-row:before,
.price-box .field-row:after {
    content: " ";
    display: table;
}

.price-box .field-row:after {
    clear: both;
}

.price-box .field-row:before,
.price-box .field-row:after {
    content: " ";
    display: table;
}

.price-box .field-row:after {
    clear: both;
}

.price-box .label {
    float: left;
    width: 175px;
    text-align: right;
    margin: 7px 11px 0 0;
}

.price-box .field-holder {
    max-width: 90px;
    overflow: hidden;
}

.price-box .form-control {
    padding: 5px 10px;
    text-align: center;
}

.price-box .input-placeholder-text {
    padding: 0 5px;
    text-align: center;
}

.price-box .price-field {
    max-width: 90px;
    overflow: hidden;
    border-radius: 4px;
    background: #ffffff;
    text-align: center;
    border: #c6ccd2 solid 1px;
}

.price-box .price-field .placeholder-text,
.price-box .price-field .field {
    width: 50%;
    margin: 0 -3px;
    display: inline-block;
    vertical-align: top;
}

.price-box .price-field .field {
    border: 0;
    padding: 5px;
    text-align: right;
    color: #c6ccd2;
}

.price-box .price-field .field .placeholder {
    color: #c6ccd2;
}

.price-box .price-field .placeholder-text {
    padding: 8px 5px;
    text-align: left;
    color: #c6ccd2;
}

/* input-placeholder-text */
.input-placeholder-text {
    top: 0;
    left: 0;
    right: 0;
    padding: 0 25px;
    line-height: 36px;
    color: #c6ccd2 !important;
}

.field-holder {
    position: relative;
}

/* currency-converter */
.currency-converter {
    display: inline-block;
    vertical-align: top;
    width: 370px;
    color: #ffffff;
    position: relative;
    border-radius: 5px;
    background: #bcbcbc;
    padding: 16px 19px 14px;
}

.currency-converter .title {
    display: block;
    margin: 0 0 15px;
    font-weight: 400;
}

.currency-converter .field-row:before,
.currency-converter .field-row:after {
    content: " ";
    display: table;
}

.currency-converter .field-row:after {
    clear: both;
}

.currency-converter .field-row:before,
.currency-converter .field-row:after {
    content: " ";
    display: table;
}

.currency-converter .field-row:after {
    clear: both;
}

.currency-converter .select-holder {
    float: right;
    width: 85px;
    position: relative;
    margin: 0 0 0 11px;
}

.currency-converter .select-holder:before {
    top: 1px;
    left: 1px;
    right: 1px;
    content: '';
    bottom: 1px;
    border-radius: 2px;
    position: absolute;
    background: #ffffff;
}

.currency-converter .jcf-select {
    z-index: 2;
    background: none;
}

.currency-converter .jcf-select .jcf-select-text {
    margin: 4px 25px 0 9px;
}

.currency-converter .jcf-select .jcf-select-opener {
    top: 0;
    bottom: 0;
    width: 25px;
    border-width: 0 0 0 1px;
}

.currency-converter .col {
    overflow: hidden;
}

.currency-converter .col > * {
    float: left;
}

.currency-converter .col .field-holder {
    width: 90px;
    overflow: hidden;
    position: relative;
}

.currency-converter .col .field-holder:before {
    top: 1px;
    left: 1px;
    right: 1px;
    content: '';
    bottom: 1px;
    border-radius: 2px;
    position: absolute;
    background: #ffffff;
}

.currency-converter .col .field-holder:first-child {
    width: 91px;
}

.currency-converter .col .field-holder .form-control {
    z-index: 2;
    padding: 5px;
    background: none;
    text-align: center;
    position: relative;
}

.currency-converter .col .price-field {
    overflow: hidden;
    position: relative;
}

.currency-converter .col .price-field:before {
    top: 1px;
    left: 1px;
    right: 1px;
    content: '';
    bottom: 1px;
    border-radius: 2px;
    position: absolute;
    background: #ffffff;
}

.currency-converter .col .price-field .form-control {
    border: 0;
    float: left;
    width: 50%;
    z-index: 2;
    padding: 5px;
    position: relative;
    text-align: right;
}

.currency-converter .col .price-field .placeholder-text {
    z-index: 2;
    display: block;
    overflow: hidden;
    line-height: 36px;
    position: relative;
    color: #c6ccd2;
}

.currency-converter .ico.resizer {
    width: 39px;
    padding: 0 5px;
    background: none;
    font-size: 0;
    line-height: 0;
}

.currency-converter .ico.resizer:after {
    margin: 12px 0 0 2px;
}

.currency-converter .input-placeholder-text {
    padding: 0 5px;
    text-align: center;
}

.currency-converter.white {
    width: auto;
    color: #58595b;
    display: block;
    margin: 0 0 20px;
    background: #ffffff;
    border: #d3d7dc solid 1px;
    padding: 15px 19px 14px 17px;
}

.currency-converter.white .title {
    margin: 0 0 5px;
}

.currency-converter.white .ico.resizer {
    width: 20px;
    padding: 0;
    margin: 0 2px;
}

.currency-converter.white .field-row .form-control, .currency-converter.white .field-row .select-holder * {
    font-size: 12px;
}

.currency-converter.white .ico.resizer:after {
    width: 20px;
    height: 9px;
    margin: 12px 0 0;
    background: url(../../images/arrow.png) no-repeat;
}

.currency-converter.white .select-holder {
    width: 60px;
    margin: 0 0 0 5px;
}

.currency-converter.white .col .field-holder {
    width: 40px;
}

.currency-converter.white .col .field-holder:first-child {
    width: 51px;
}

.jcf-select-currency-list .jcf-list .jcf-option {
    padding: 9px 5px 9px 8px;
}

.jcf-select-currency-list .jcf-list .jcf-option:after {
    display: none;
}

/* alert */
.alert {
    position: relative;
    padding: 18px 10px 19px 73px;
    -webkit-box-shadow: 1px 1px 4px 1px rgba(255, 255, 255, 0.35) inset;
    box-shadow: 1px 1px 4px 1px rgba(255, 255, 255, 0.35) inset;
}

.alert .ico {
    top: 50%;
    left: 12px;
    margin: -20px 0 0;
    position: absolute;
}

.alert.alert-info {
    padding: 7px 30px 10px 73px;
}

.alert.alert-success {
    padding: 9px 50px 9px 78px;
}

/* sprite icons */
.ico {
    display: inline-block;
    vertical-align: top;
    width: 41px;
    height: 41px;
    position: relative;
    background: #ffffff;
    text-align: center;
    border-radius: 100%;
}

.ico.exclamation {
    font-weight: 700;
    font-style: normal;
    color: #fab418;
    font-size: 34px;
    line-height: 41px;
}

.ico:after {
    content: '';
    position: absolute;
    background: url(../../images/sprite-icons.png) no-repeat -9999px -9999px;
}

.ico.arrow:after {
    top: 50%;
    left: 50%;
    width: 17px;
    height: 18px;
    margin: -9px 0 0 -8px;
    background-position: -34px 0;
}

.ico.resizer:after {
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 11px;
    background-position: 0 0;
}

.ico .icon-location {
    color: #83dbd4;
    font-size: 28px;
    line-height: 40px;
}

.ico.lock {
    font-size: 0;
    line-height: 0;
}

.ico.lock:after {
    display: block;
    width: 18px;
    height: 25px;
    margin: 7px 0 0 11px;
    background-position: 0 -28px;
}

/* form-inquiry */
.form-inquiry {
    color: #58595b;
    margin: 0 0 19px;
    border-radius: 5px;
    border: #eaebec solid 1px;
    padding: 18px 19px 17px 17px;
}

.form-inquiry h2 {
    margin: 0 0 28px 2px;
}

.form-inquiry .columns-holder:before,
.form-inquiry .columns-holder:after {
    content: " ";
    display: table;
}

.form-inquiry .columns-holder:after {
    clear: both;
}

.form-inquiry .columns-holder:before,
.form-inquiry .columns-holder:after {
    content: " ";
    display: table;
}

.form-inquiry .columns-holder:after {
    clear: both;
}

.form-inquiry .column {
    width: 50%;
    float: left;
    padding: 0 0 0 0.1%;
}

.form-inquiry .column:first-child {
    padding: 0 9.1% 0 0;
}

.form-inquiry .map-box {
    /*max-width: 490px;*/
    overflow: hidden;
    border-radius: 5px;
    border: #eaebec solid 1px;
}

.form-inquiry iframe {
    border: 0;
    margin: 0 0 -6px;
    overflow: hidden;
    width: 100%;
    height: 350px;
}

.form-inquiry .field-row {
    margin: 0 0 20px;
}

.form-inquiry .field-row:before,
.form-inquiry .field-row:after {
    content: " ";
    display: table;
}

.form-inquiry .field-row:after {
    clear: both;
}

.form-inquiry .field-row:before,
.form-inquiry .field-row:after {
    content: " ";
    display: table;
}

.form-inquiry .field-row:after {
    clear: both;
}

.form-inquiry .label {
    float: left;
    margin: 7px 8px 0 0;
}

.form-inquiry .field-holder,
.form-inquiry .select-holder {
    overflow: hidden;
}

.form-inquiry .col {
    float: left;
    width: 48%;
}

.form-inquiry .col + .col {
    float: right;
}

.form-inquiry .col.location {
    width: 54.7%;
}

.form-inquiry .col.postel-code {
    width: 42.9%;
}

.form-inquiry .col.cell {
    width: 37%;
}

.form-inquiry .col.street {
    width: 60.5%;
}

.form-inquiry .alert-info {
    margin: 56px 0 0;
}

.form-inquiry .input-placeholder-text {
    padding: 0 5px;
}

/* form-signup */
.form-signup {
    color: #58595b;
    margin: 0 0 38px;
    border-radius: 5px;
    border: #eaebec solid 1px;
    padding: 22px 19px 18px 18px;
}

.form-signup h2 {
    margin: 0 0 23px 2px;
}

.form-signup .tabpanel {
    position: relative;
}

.form-signup .field-row {
    margin: 0 0 18px;
}

.form-signup .field-row:before,
.form-signup .field-row:after {
    content: " ";
    display: table;
}

.form-signup .field-row:after {
    clear: both;
}

.form-signup .field-row:before,
.form-signup .field-row:after {
    content: " ";
    display: table;
}

.form-signup .field-row:after {
    clear: both;
}

.form-signup .label {
    float: left;
    width: 224px;
    margin: 7px 10px 0 0;
    text-align: right;
}

.form-signup .field-holder {
    overflow: hidden;
}

.form-signup.alt {
    border: 0;
    padding: 0;
    margin: 0 0 20px;
}

.form-signup.alt .tab-content {
    padding: 28px 19px 11px;
}

.form-signup.alt .label {
    width: 111px;
}

.form-signup.alt .tab-holder .column {
    padding: 0 0 0 9.7%;
}

.form-signup.alt .tab-holder .column:first-child {
    padding: 0 5% 0 0;
}

.form-signup.alt .tab-holder .column:before {
    margin: 0 0 0 -15%;
}

/* nav-tabs */
.tabset-holder {
    position: relative;
}

.tabset-holder .opener {
    display: none;
}

.tabset-holder .link-favourit {
    float: right;
    color: #58595b;
    margin: -43px 0 0;
    text-decoration: none;
}

.tabset-holder .link-favourit:hover {
    color: #58595b;
    text-decoration: none;
}

.tabset-holder .link-favourit:hover .icon-heart {
    background: #c53f4e;
}

.tabset-holder .link-favourit .icon-heart {
    width: 36px;
    height: 36px;
    color: #ffffff;
    margin: 0 0 0 7px;
    text-align: center;
    background: #888a90;
    border-radius: 100%;
    font-size: 20px;
    line-height: 36px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.nav-tabs {
    border: 0;
}

.nav-tabs > li {
    margin-right: 5px;
}

.nav-tabs > li:last-child {
    margin-right: 0;
}

.nav-tabs > li > a {
    color: #ffffff;
    text-decoration: none;
    background: #c6ccd2;
    padding: 13px 15px 10px;
}

/* tab-content */
.tab-content {
    padding: 27px 19px 18px;
    border: #eaebec solid 1px;
    border-radius: 0 5px 5px 5px;
}

.tab-content > .tab-pane {
    top: -9999em;
    left: -9999em;
    display: block;
    position: absolute;
}

.tab-content > .tab-pane.active {
    top: auto;
    left: auto;
    position: relative;
}

/* tab-holder */
.tab-holder {
    width: 100%;
    display: table;
    table-layout: fixed;
}

.tab-holder h3 {
    font-size: 14px;
    margin: -33px 0 18px;
}

.tab-holder .column {
    position: relative;
    padding: 0 0 0 160px;
    display: table-cell;
    vertical-align: middle;
}

.tab-holder .column:before {
    top: 47px;
    width: 1px;
    left: auto;
    content: '';
    bottom: 10px;
    position: absolute;
    margin: 0 0 0 -101px;
    background: #c6ccd2;
}

.tab-holder .column:first-child {
    padding: 0 40px 0 0;
}

.tab-holder .column:first-child:before {
    display: none;
}

.tab-holder .column:first-child h3 {
    margin: 0 0 30px;
}

/* btn-facebook */
.btn-facebook {
    display: inline-block;
    vertical-align: top;
    color: #ffffff;
    background: #41668f;
    border-radius: 5px;
    padding: 0 16px 0 13px;
    font-size: 16px;
    line-height: 36px;
    text-decoration: none;
}

.btn-facebook:focus,
.btn-facebook:hover {
    color: #ffffff;
    text-decoration: none;
    background: #314d6c;
}

.btn-facebook .icon-facebook {
    float: left;
    width: 24px;
    font-size: 25px;
    text-indent: -3px;
    position: relative;
    margin: 0 12px 0 0;
    border-right: #3a5c80 solid 1px;
}

.btn-facebook .icon-facebook:after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    content: '';
    background: #54769a;
    position: absolute;
}

.btn-facebook .icon-facebook:before {
    width: auto;
}

/* price-area */
.price-area {
    color: #58595b;
    margin: 0 0 19px;
    border-radius: 5px;
    padding: 19px 19px 19px;
    border: #eaebec solid 1px;
}

.price-area .total {
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 34px;
}

/* timing */
.timing {
    color: #58595b;
    overflow: hidden;
    margin: 0 0 26px;
    border-radius: 5px;
    background: #f7f6f6;
    padding: 11px 33px 14px;
    border: #eaebec solid 1px;
}

.timing li {
    float: left;
    width: 33%;
}

.timing li:nth-child(2) {
    text-align: center;
}

.timing li:last-child {
    text-align: right;
}

.timing .icon-calendar {
    font-size: 24px;
    margin: 0 1px 0 0;
}

.timing time {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
}

.timing strong {
    font-size: 18px;
    line-height: 21px;
}

/* price-list */
.price-list {
    color: #58595b;
    margin: 0 0 35px;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    line-height: 21px;
}

.price-list li {
    float: left;
    width: 50%;
}

/* form-verification */
.form-verification {
    color: #58595b;
    margin: 0 0 20px;
    border-radius: 5px;
    border: #eaebec solid 1px;
    padding: 18px 27px 29px 19px;
}

.form-verification h2 {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 17px;
}

.form-verification p {
    margin: 0 0 15px;
}

.form-verification .form-holder {
    margin: 0 0 29px;
    position: relative;
}

.form-verification .field-row:before,
.form-verification .field-row:after {
    content: " ";
    display: table;
}

.form-verification .field-row:after {
    clear: both;
}

.form-verification .field-row:before,
.form-verification .field-row:after {
    content: " ";
    display: table;
}

.form-verification .field-row:after {
    clear: both;
}

.form-verification .field-row + .field-row {
    margin: 22px 0 0;
}

.form-verification .field-holder {
    overflow: hidden;
}

.form-verification .col {
    float: left;
    width: 40%;
    margin: 0 18px 0 0;
}

.form-verification .col:first-child {
    width: 37.4%;
}

.form-verification .col + .col {
    float: right;
}

.form-verification .date-row .col {
    margin: 0;
    width: 42.5%;
}

.form-verification .date-row .col:first-child {
    margin: 0;
    width: 51.5%;
}

.form-verification .field-year,
.form-verification .field-month,
.form-verification .field-day {
    margin: 0;
    float: left;
    position: relative;
}

.form-verification .field-year .form-control,
.form-verification .field-month .form-control,
.form-verification .field-day .form-control {
    padding: 6px 5px;
    text-align: center;
}

.form-verification .field-year .input-placeholder-text,
.form-verification .field-month .input-placeholder-text,
.form-verification .field-day .input-placeholder-text {
    padding: 0 3px;
    text-align: center;
}

.form-verification .field-day {
    width: 22.6%;
    padding: 0 5px 0 0;
}

.form-verification .field-month {
    width: 53.9%;
    padding: 0 5px 0 3px;
}

.form-verification .field-year {
    width: 22.9%;
    padding: 0 0 0 1px;
}

.form-verification .label {
    float: left;
    margin: 9px 10px 0 0;
}

.form-verification .note {
    border-radius: 3px;
    padding: 17px 21px 9px;
    background: #f5f5f5;
}

.form-verification .note p {
    margin: 0 0 5px;
}

/* form-message */
.form-message {
    color: #58595b;
    margin: 0 0 20px;
    border-radius: 5px;
    padding: 17px 19px 28px;
    border: #eaebec solid 1px;
}

.form-message h2 {
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 17px;
}

.form-message h2 label {
    font-weight: 700;
}

.form-message .jcf-textarea textarea {
    height: 101px;
    min-height: 100px;
    max-height: 400px;
    padding: 5px 36px 5px 5px;
}

.form-message .input-placeholder-text {
    line-height: 17px;
    padding: 5px 36px 5px 15px;
}

.form-message.alt2,
.form-message.alt {
    max-width: 620px;
    background: #ffffff;
    margin: 10px auto 30px;
    padding: 15px 19px 19px;
}

.form-message.alt2 h2,
.form-message.alt h2 {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 22px;
}

.form-message.alt2 h2 a,
.form-message.alt h2 a {
    color: #58595b;
    text-decoration: none;
}

.form-message.alt2 h2 a:hover,
.form-message.alt h2 a:hover {
    color: #262627;
}

.form-message.alt2 .area,
.form-message.alt .area {
    overflow: hidden;
}

.form-message.alt2 p,
.form-message.alt p {
    margin: 0 0 20px;
}

.form-message.alt2 p a,
.form-message.alt p a {
    color: #58595b;
    font-weight: 700;
    text-decoration: none;
}

.form-message.alt2 p a:hover,
.form-message.alt p a:hover {
    color: #262627;
}

.form-message.alt2 h3,
.form-message.alt h3 {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 18px;
}

.form-message.alt2 h3 label,
.form-message.alt h3 label {
    font-weight: 700;
}

.form-message.alt2 .no-scroll,
.form-message.alt .no-scroll {
    margin: 0 0 20px;
}

.form-message.alt2 .jcf-textarea textarea,
.form-message.alt .jcf-textarea textarea {
    height: 125px;
    min-height: 124px;
    max-height: 400px;
}

.form-message.alt2 .input-placeholder-text,
.form-message.alt .input-placeholder-text {
    line-height: 20px;
    padding: 16px 36px 8px 19px;
}

.form-message.alt2 input[type=reset],
.form-message.alt input[type=reset],
.form-message.alt2 input[type=submit],
.form-message.alt input[type=submit] {
    margin: 0 19px;
    min-width: 150px;
    padding: 6px 10px;
    text-transform: none;
}

.form-message.alt2 input[type=submit],
.form-message.alt input[type=submit] {
    min-width: 219px;
}

.form-message.alt2 .btn-block,
.form-message.alt .btn-block {
    padding: 0 0 0 9px;
}

.form-message.alt2 {
    max-width: 702px;
}

.form-message.alt2 .img-holder {
    width: 200px;
    margin: 2px 30px 0 0;
}

.form-message.alt2 .post-area {
    padding: 0 0 15px;
}

.form-message.alt2 .input-placeholder-text {
    padding: 16px 76px 8px 19px;
}

.form-message.alt2 .btn-block {
    padding: 0 0 0 29px;
}

.form-message .post-area {
    color: #58595b;
    padding: 0 0 27px;
}

.form-message .post-area:before,
.form-message .post-area:after {
    content: " ";
    display: table;
}

.form-message .post-area:after {
    clear: both;
}

.form-message .post-area:before,
.form-message .post-area:after {
    content: " ";
    display: table;
}

.form-message .post-area:after {
    clear: both;
}

.form-message .img-holder {
    float: left;
    width: 150px;
    margin: 4px 29px 0 0;
}

.form-message .img-holder a {
    display: block;
    border-radius: 4px;
    position: relative;
    border: #eaebec solid 1px;
}

.form-message .img-holder a:hover {
    border-color: #b4b8bc;
}

.form-message .img-holder img {
    width: 100%;
    height: auto;
    vertical-align: top;
    border-radius: 4px;
}

.form-message .booking-detail {
    margin: 0 0 17px;
}

.form-message .booking-detail li {
    padding: 0;
    font-weight: 700;
    margin: 0 26px 0 0;
}

.form-message .booking-detail time {
    font-weight: 400;
}

.form-message .user-rating {
    margin: 0 0 26px;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-align: center;
    border-color: #eaebec;
    background: #f8f8f8;
    padding: 18px 15px 21px 21px;
}

.form-message .user-rating .title {
    display: inline-block;
    vertical-align: top;
    font-weight: 700;
    margin: 4px 10px 0 0;
}

.form-message .user-rating .rating {
    display: inline-block;
    vertical-align: top;
    float: none;
}

.form-message .user-rating .rating li {
    margin: 0 0 0 7px;
}

.form-message .user-rating .rating li:first-child {
    margin: 0;
}

/* average-rating */
.average-rating .title {
    display: inline-block;
    vertical-align: top;
    margin: 5px 3px 0 0;
}

.average-rating .rating {
    display: inline-block;
    vertical-align: top;
    float: none;
}

.average-rating .rating li {
    font-size: 18px;
    margin: 0 -6px 0 0;
}

/* no-scroll */
.no-scroll .jcf-scrollbar {
    opacity: 0;
}

.no-scroll textarea {
    overflow: auto;
}

.no-scroll .jcf-focus .jcf-scrollbar {
    opacity: 1;
}

.form-payment {
    color: #58595b;
    margin: 0 0 18px;
    border-radius: 5px;
    padding: 19px 19px 29px;
    border: #eaebec solid 1px;
}

.form-payment .head {
    overflow: hidden;
    padding: 0 0 16px;
}

.form-payment h2 {
    float: left;
    margin: 0 10px 0 0;
    font-size: 14px;
    line-height: 17px;
}

.form-payment .by {
    float: right;
}

.form-payment .by .title {
    float: left;
    font-size: 11px;
    font-weight: 700;
    margin: 15px 13px 0 0;
    text-transform: uppercase;
}

.form-payment .by ul {
    float: left;
    margin: 0 8px 0 0;
}

.form-payment .by ul li {
    margin: 0;
    padding: 10px 7px 5px 14px;
}

.form-payment .by ul li:first-child {
    padding: 8px 11px 10px 0;
}

.form-payment .by ul li + li {
    border-left: dotted 1px #cdcdc7;
}

.form-payment p {
    margin: 0 0 28px;
}

.form-payment .form-holder:before,
.form-payment .form-holder:after {
    content: " ";
    display: table;
}

.form-payment .form-holder:after {
    clear: both;
}

.form-payment .form-holder:before,
.form-payment .form-holder:after {
    content: " ";
    display: table;
}

.form-payment .form-holder:after {
    clear: both;
}

.form-payment .form-holder .col {
    float: left;
    width: 35.2%;
    position: relative;
    padding: 0 20px 0 0;
}

.form-payment .form-holder .col.expiry {
    width: 29.4%;
}

.form-payment .form-holder .col.cvv {
    width: 16.1%;
}

.form-payment .form-holder .col.cvv .field-holder {
    position: relative;
    padding: 0 27px 0 0;
}

.form-payment .form-holder .col.cvv .tooltip-button {
    z-index: 2;
    right: 20px;
    bottom: 9px;
    margin: -8px 0 0;
    position: absolute;
}

.form-payment .field-holder:before,
.form-payment .field-holder:after {
    content: " ";
    display: table;
}

.form-payment .field-holder:after {
    clear: both;
}

.form-payment .field-holder:before,
.form-payment .field-holder:after {
    content: " ";
    display: table;
}

.form-payment .field-holder:after {
    clear: both;
}

.form-payment .field-holder .col {
    padding: 0;
    width: 46.0%;
}

.form-payment .field-holder .col + .col {
    float: right;
}

.form-payment .label {
    display: block;
    margin: 0 0 13px;
}

.form-payment .jcf-number input {
    color: #c6ccd2;
}

.form-payment .jcf-number input::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.form-payment .jcf-number input:-ms-input-placeholder {
    color: #c6ccd2;
}

.form-payment .jcf-number input::-webkit-input-placeholder {
    color: #c6ccd2;
}

.form-payment + .btns-area {
    margin: 0 auto 32px;
}

.form-payment + .btns-area .btn-primary {
    background: #7a7a7a;
}

.form-payment + .btns-area .btn-primary:hover {
    background: #949494;
}

/* card-type */
.card-type {
    overflow: hidden;
    margin: 0 0 27px;
}

.card-type li {
    margin: 0 26px 0 0;
    vertical-align: middle;
}

.card-type .title {
    float: left;
    margin: 8px 32px 0 0;
}

.card-type label {
    display: block;
    overflow: hidden;
    position: relative;
}

.card-type label:after {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: url(../../images/none.gif);
}

.card-type .jcf-radio {
    margin: 0 12px 0 0;
}

/* cards-list */
.cards-list {
    margin: 0;
    overflow: hidden;
}

/* listing-container */
.listing-container {
    margin: -7px 0 0;
    position: relative;
}

.listing-container h1 {
    color: #58595b;
    margin: 0 0 33px;
    font-size: 30px;
    line-height: 1.2;
}

.listing-container h1 a, h1.listing-title a {
    font-size: 12px;
    text-decoration: none;
    font-weight: normal;
    padding: 6px 14px 6px;
}

h1.listing-title a {
    float: right;
}

.listing-container .tab-content {
    margin: 0 0 30px;
    padding: 20px 19px 18px;
}

.listing-container .maparea {
    overflow: hidden;
}

.listing-container .maparea .map-holder {
    height: 533px;
    overflow: hidden;
    width: 100%;
}

.listing-container .maparea iframe {
    width: 100%;
    height: 530px;
}

.listing-container .nav-tabs > li > a {
    min-width: 136px;
    text-align: center;
    padding: 13px 15px 7px;
}

.listing-container .nav-tabs > li > a:focus,
.listing-container .nav-tabs > li > a:active {
    outline: none;
    background: #c6ccd2;
}

/* gallery-slider */
.gallery-slider {
    position: relative;
    padding: 0 150px 0 0;
}

.gallery-slider .gallery-slideset {
    position: relative;
}

.gallery-slider .slide {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    position: absolute;
    border: #eaebec solid 1px;
}

.gallery-slider .slide.active {
    z-index: 2;
}

.gallery-slider .slide:first-child {
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    position: relative;
}

.gallery-slider .slide:first-child.active {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}

.gallery-slider .vertical-holder {
    top: 25px;
    right: 0;
    bottom: 34px;
    width: 130px;
    overflow: hidden;
    position: absolute;
}

.gallery-slider .vertical-slider {
    height: 100%;
}

.gallery-slider .vertical-slideset {
    height: 9999px;
    overflow: hidden;
}

.gallery-slider .vertical-slide a {
    margin: 10px 0;
    display: block;
    height: 104px;
    overflow: hidden;
    border-radius: 5px;
    border: #ebeced solid 1px;
}

.gallery-slider .vertical-slide a:hover {
    border-color: #b5b9bd;
}

.gallery-slider .slide img,
.gallery-slider .vertical-slide img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.gallery-slider .btn-next,
.gallery-slider .btn-prev {
    top: -5px;
    right: 54px;
    z-index: 11;
    width: 22px;
    height: 22px;
    font-size: 0;
    line-height: 0;
    position: absolute;
}

.gallery-slider .btn-next:hover:before,
.gallery-slider .btn-prev:hover:before,
.gallery-slider .btn-next:hover:after,
.gallery-slider .btn-prev:hover:after {
    background: #000000;
}

.gallery-slider .btn-next:before,
.gallery-slider .btn-prev:before,
.gallery-slider .btn-next:after,
.gallery-slider .btn-prev:after {
    top: 0;
    left: 0;
    content: '';
    margin: 0 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 1px;
    height: 100%;
    position: absolute;
    background: #cfd4d9;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.gallery-slider .btn-next:after,
.gallery-slider .btn-prev:after {
    right: 0;
    left: auto;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.gallery-slider .btn-next {
    top: auto;
    bottom: -2px;
}

.gallery-slider .btn-next:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.gallery-slider .btn-next:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* availability-schedule */
.availability-schedule {
    margin: 0 0 -11px;
    position: relative;
}

.availability-schedule .indicators {
    left: 0;
    top: -3px;
    z-index: 5;
    position: absolute;
}

.availability-schedule .jcf-scrollbar-vertical {
    width: 1px;
    right: 50%;
    z-index: 10;
    background: none;
    margin: 0 19px 0 0;
}

.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc,
.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-dec {
    top: -5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    position: relative;
}

.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc:hover:before,
.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-dec:hover:before,
.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc:hover:after,
.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-dec:hover:after {
    background: #7a8895;
}

.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc:before,
.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-dec:before,
.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc:after,
.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-dec:after {
    top: 0;
    left: 0;
    content: '';
    margin: 0 3px;
    -webkit-transform: rotate(47deg);
    -ms-transform: rotate(47deg);
    transform: rotate(47deg);
    width: 2px;
    height: 100%;
    position: absolute;
    background: #cfd4d9;
}

.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc:after,
.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-dec:after {
    right: 0;
    left: auto;
    -webkit-transform: rotate(-47deg);
    -ms-transform: rotate(-47deg);
    transform: rotate(-47deg);
}

.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc {
    top: auto;
    bottom: 11px;
}

.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc:after {
    -webkit-transform: rotate(47deg);
    -ms-transform: rotate(47deg);
    transform: rotate(47deg);
}

.availability-schedule .jcf-scrollbar-vertical .jcf-scrollbar-inc:before {
    -webkit-transform: rotate(-47deg);
    -ms-transform: rotate(-47deg);
    transform: rotate(-47deg);
}

.availability-schedule .jcf-scrollbar-slider {
    width: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}

/* schedule-holder */
.schedule-holder {
    height: 545px;
    width: 100% !important;
    border: solid #ffffff;
    border-width: 50px 0 0;
}

.schedule-holder:after {
    left: 0;
    right: 0;
    z-index: 2;
    content: '';
    bottom: 51px;
    height: 60px;
    position: absolute;
    background-image: -webkit-gradient(linear, left 0%, left 100%, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.9)));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1), 0%, rgba(255, 255, 255, 0.9), 100%);
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str(@start-color)}', endColorstr='#{ie-hex-str(@end-color)}', GradientType=0);
    filter: none;
}

/* table-holder */
.table-holder {
    overflow: hidden;
    position: relative;
}

.table-holder .table-row {
    margin: 0 -12px;
    overflow: hidden;
}

/* table-area */
.table-area {
    float: left;
    width: 33.3333%;
    padding: 0 12px 35px;
}

.table-area .title {
    display: block;
    color: #5b5a5a;
    margin: 0 0 10px;
    font-weight: 600;
    text-align: center;
    font-size: 17px;
    line-height: 21px;
}

/* indicators */
.indicators {
    margin: 0;
}

.indicators li {
    color: #9b9b9c;
    font-size: 13px;
    padding: 0 22px 0 0;
}

.indicators li:before {
    float: left;
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px 10px 0 0;
    background: #b1f0f5;
}

.indicators li.unavailable:before {
    background: #f5ebe7;
}

/* schedule-table */
.schedule-table {
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.schedule-table > tbody > tr > td,
.schedule-table > thead > tr > th {
    padding: 0;
    font-weight: 400;
    text-align: center;
    border: #f9f9f9 solid;
    border-width: 1px;
    font-size: 11px;
    line-height: 28px;
}

.schedule-table > thead > tr > th {
    color: #ffffff;
    background: #888a90;
}

.schedule-table .available {
    background: #b1f0f5;
}

.schedule-table .unavailable {
    background: #e8e8e8;
}

.schedule-table > tbody > tr > td {
    font-size: 12px;
}

.table-area .fc-toolbar {
    margin: 0;
}

.table-area .fc-toolbar .fc-center {
    display: block;
}

.table-area .fc-toolbar .fc-center h2 {
    float: none;
    display: block;
    color: #5b5a5a;
    margin: 0 0 10px;
    font-weight: 600;
    text-align: center;
    font-size: 17px;
    line-height: 21px;
    text-transform: capitalize;
}

.table-area .fc th,
.table-area .fc td {
    border: 0;
}

.table-area .fc-basic-view td.fc-day-number,
.table-area .fc-day-header {
    text-align: center;
    padding: 0 !important;
    background: #e8e8e8;
    font-weight: 400;
    border: #f9f9f9 solid;
    border-width: 1px;
    font-size: 12px;
    line-height: 28px;
    border: #f9f9f9 solid !important;
    border-width: 1px 1px 0 !important;
}

.table-area .fc-basic-view td.fc-day-number.fc-other-month,
.table-area .fc-day-header.fc-other-month {
    color: #3f3f3f;
    background: #b1f0f5;
}

.table-area .fc-day-header {
    color: #ffffff;
    font-size: 11px;
    background: #888a90;
    text-transform: capitalize;
}

.ui-state-disabled {
    cursor: not-allowed;
}

/* description */
#conditions p,
#description p {
    margin: 0 0 20px;
}

#conditions p:last-child,
#description p:last-child {
    margin: 0;
}

/* features-area */
.features-area:before,
.features-area:after {
    content: " ";
    display: table;
}

.features-area:after {
    clear: both;
}

.features-area:before,
.features-area:after {
    content: " ";
    display: table;
}

.features-area:after {
    clear: both;
}

/* features-list */
.features-list {
    float: left;
    width: auto;
    color: #3f3f3f;
    margin: 0 20px;
}

#features h3 {
    font-size: 20px;
}

/*.features-list:first-child {
    width: 38.033%;
}

.features-list:last-child {
    float: right;
    width: 22.933%;
}

.features-list li {
    padding: 0 0 0 22px;
}*/

.features-list li + li {
    margin: 20px 0 0;
}

.features-list li i {
    float: left;
    margin: -1px 0 0 -26px;
}

.features-list li i.icon-ok {
    color: #00ad5f;
    font-size: 15px;
}

.features-list li i.icon-cancel {
    color: #818181;
    font-size: 20px;
    margin: -5px 6px 0 -31px;
}

.features-list .tooltip-button {
    margin: 1px 0 0 7px;
}

/* listing-detail */
.listing-detail {
    margin: 0 0 20px;
}

.listing-detail .blog {
    margin: 5px 0 -11px;
}

.listing-detail .blog .head {
    padding: 0 0 26px;
}

.listing-detail .blog .head .rating {
    margin: -6px 0 0 0;
}

.listing-detail .blog .head .rating li {
    font-size: 19px;
    margin: 0 -7px 0 0;
}

.listing-detail .blog h2 {
    margin: 0 2px 0 0;
}

.listing-detail .posts-holder .post {
    margin: 0 0 19px 90px;
    padding: 16px 20px 11px 16px;
}

.listing-detail .posts-holder .post:last-child {
    margin-bottom: 0;
}

.listing-detail .tab-content {
    padding: 26px 19px 31px;
}

.listing-detail .nav-tabs > li > a {
    min-width: 141px;
    text-align: center;
    padding: 11px 15px;
}

.listing-detail .nav-tabs > li > a:focus,
.listing-detail .nav-tabs > li > a:active {
    outline: none;
    background: #c6ccd2;
}

/* main-tabs */
.main-tabs {
    margin: 0 0 61px;
}

.main-tabs > div[role=tabpanel] {
    margin: 0 -10px;
}

.main-tabs > div[role=tabpanel] > .tab-content {
    z-index: 2;
    margin: -3px 0 0;
    position: relative;
    border-radius: 5px;
    background: #f7f7f7;
    padding: 50px 20px 0;
}

.main-tabs .tab-pane > .block {
    margin: 0 0 20px;
    background: #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    border: #dedede solid 1px;
}

.main-tabs .tab-pane > .block > h2 {
    margin: 0 0 10px;
}

.main-tabs .nav-tabs {
    overflow: hidden;
    padding: 0 0 1px;
    margin: 0 0 -1px;
}

.main-tabs .nav-tabs > li {
    margin-right: 7px;
}

.main-tabs .nav-tabs > li > a {
    min-width: 141px;
    text-align: center;
    padding: 12px 5px 12px;
}

.main-tabs .nav-tabs > li.active > a,
.main-tabs .nav-tabs > li a:hover {
    color: #58595b;
    background: #f7f7f7;
    border-color: #f7f7f7;
}

.main-tabs .nav-tabs > li.active > a {
    z-index: 5;
    position: relative;
}

.main-tabs .nav-tabs > li.active > a:after {
    top: 100%;
    left: -2px;
    right: -2px;
    height: 3px;
    content: '';
    margin: -1px 0 0;
    position: absolute;
    background: #f7f7f7;
}

.main-tabs .listing-post {
    margin: 0 0 20px;
}

.main-tabs .listing-post .listing-box {
    float: left;
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    background: #ffffff;
}

.main-tabs .listing-post .foot {
    padding: 4px 15px 12px 11px;
    background: rgba(255, 255, 255, 0.71);
}

.main-tabs .listing-post .time-price {
    width: 80px;
    float: right;
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
}

.main-tabs .listing-post .time-price:before {
    top: 12px;
    width: 1px;
    left: auto;
    content: '';
    bottom: 11px;
    position: absolute;
    margin: 0 0 0 -18px;
    background: #c6ccd2;
}

.main-tabs .listing-post .price {
    margin: 0 0 3px;
}

.main-tabs .listing-post h2 {
    margin: 0 0 19px 8px;
    font-size: 18px;
    line-height: 21px;
}

.main-tabs .listing-post .area {
    max-width: 328px;
    padding: 13px 0 0;
}

.main-tabs .listing-post .area .area {
    padding: 0;
    overflow: visible;
}

.main-tabs .listing-post .area .area:before,
.main-tabs .listing-post .area .area:after {
    content: " ";
    display: table;
}

.main-tabs .listing-post .area .area:after {
    clear: both;
}

.main-tabs .listing-post .area .area:before,
.main-tabs .listing-post .area .area:after {
    content: " ";
    display: table;
}

.main-tabs .listing-post .area .area:after {
    clear: both;
}

.main-tabs .listing-post .rating {
    float: right;
    margin: -7px 0 7px 0;
}

.main-tabs .listing-post .rating li {
    font-size: 19px;
    margin: 0 0 0 -8px;
}

.main-tabs .listing-post .certified {
    float: left;
    margin: 0 10px 0 0;
}

.main-tabs .listing-post .certified .icon-ok {
    display: inline-block;
    vertical-align: top;
    font-size: 26px;
    margin: -11px 7px -2px 0;
}

/* form-switchers */
.form-switchers {
    z-index: 2;
    float: right;
    width: 292px;
    position: relative;
    margin: 6px -1px 0 0;
}

.form-switchers .counter,
.form-switchers .title {
    display: inline-block;
    vertical-align: top;
    color: #58595b;
    cursor: pointer;
    margin: 5px 10px 0 0;
}

.form-switchers label {
    cursor: pointer;
}

.form-switchers .counter {
    margin: 5px 0 0;
}

.form-switchers .jcf-label-active {
    font-weight: 700;
}

/* radio-holder */
.radio-holder {
    display: inline-block;
    vertical-align: top;
    padding: 1px;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 60px;
    height: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: #c6ccd2 solid 2px;
}

.radio-holder .jcf-radio {
    border: 0;
    margin: 0;
    opacity: 0;
    float: left;
    width: 24px;
    height: 24px;
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ffffff;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.radio-holder .jcf-radio.jcf-checked {
    opacity: 1;
    background: #c6ccd2;
}

.radio-holder .jcf-radio.jcf-checked span {
    display: none;
}

.radio-holder .jcf-radio span {
    display: none;
}

.radio-holder .jcf-radio + .jcf-radio {
    float: right;
}

/* jcf-select-announcements-list */
.jcf-select-announcements-list .jcf-list ul img {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 0 0;
}

.jcf-select-announcements-list .jcf-list .jcf-option {
    padding: 9px;
    font-size: 12px;
}

.jcf-select-announcements-list .jcf-list .jcf-option img {
    width: 18px;
    height: auto;
    margin: 2px 5px 0;
}

.jcf-select-announcements-list .jcf-select-text img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px 0 0;
}

.jcf-select-announcements-list.jcf-select-alt .jcf-list ul img {
    width: 20px;
    height: auto;
    margin: 1px 2px 0 0;
}

.jcf-select-announcements-list.jcf-select-alt .jcf-list .jcf-option {
    padding: 9px 10px;
}

/* tab properties */
#properties > [role=tabpanel] {
    padding: 0 0 20px;
    margin: -1px -1px 0 0;
}

#properties > [role=tabpanel]:before,
#properties > [role=tabpanel]:after {
    content: " ";
    display: table;
}

#properties > [role=tabpanel]:after {
    clear: both;
}

#properties > [role=tabpanel]:before,
#properties > [role=tabpanel]:after {
    content: " ";
    display: table;
}

#properties > [role=tabpanel]:after {
    clear: both;
}

/* tabs-aside */
.tabs-aside {
    float: left;
    width: 19%;
    margin: 0 0 0 -1px;
}

.tabs-aside .nav-tabs {
    margin: 0;
    padding: 0 0 9px;
}

.tabs-aside .nav-tabs > li {
    float: none;
    margin: 0 0 10px;
}

.tabs-aside .nav-tabs > li > a {
    margin: 0;
    outline: none;
    min-width: inherit;
    border-radius: 5px;
    padding: 9px 5px 7px;
    border: 0 !important;
    background: #c7cdd3;
}

.tabs-aside .nav-tabs > li > a:focus {
    background: #c7cdd3;
}

.tabs-aside .nav-tabs > li.active > a,
.tabs-aside .nav-tabs > li.active > a:focus,
.tabs-aside .nav-tabs > li > a:hover {
    color: #ffffff;
    outline: none;
    background: #7a7a7a;
}

/* nav-tabs */
.nav-tabs > li > a:active,
.nav-tabs > li > a:focus {
    background: #c6ccd2;
}

.nav-tabs > li.active > a:focus {
    background: #ffffff;
}

/* form-area */
.form-area {
    float: right;
    width: 79.367%;
}

.form-area .tab-content {
    border: 0;
    padding: 0;
    background: none;
}

.form-area .alert-warning {
    position: relative;
    padding: 26px 5px 28px 100px;
}

.form-area .alert-warning .ico.exclamation {
    top: 18px;
    margin: 0;
    left: 18px;
    width: 56px;
    height: 56px;
    font-size: 48px;
    line-height: 56px;
}

.form-area .form-holder {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    padding: 25px 29px 29px 27px;
    border: #dedede solid 1px;
}

.form-area .form-holder .nav-tabs {
    z-index: 6;
    position: relative;
}

.form-area .form-holder .nav-tabs > li > a {
    padding: 12px 5px 8px;
    border-color: #c6ccd2;
}

.form-area .form-holder .nav-tabs > li.active > a,
.form-area .form-holder .nav-tabs > li > a:hover {
    background: #ffffff;
    border-color: #e6e6e6;
}

.form-area .form-holder .nav-tabs > li.active > a:after,
.form-area .form-holder .nav-tabs > li > a:hover:after {
    left: 0;
    right: 0;
    background: #ffffff;
    margin: -1px 0 0;
}

.form-area .form-holder.alt h2 {
    margin: 0 0 23px;
}

.form-area .form-holder.alt.columns-holder h3 {
    font-size: 14px;
    margin: 0 0 18px;
}

.form-area .form-holder.alt .btns-list {
    margin: 0 -6px 36px;
}

.form-area .form-holder.alt .jcf-textarea {
    border-width: 1px;
}

.form-area .form-holder.alt .jcf-textarea .input-placeholder-text,
.form-area .form-holder.alt .jcf-textarea textarea {
    line-height: 23px;
}

.form-area .tab-content {
    border: 0;
    padding: 0;
    border-radius: 0;
    margin: 0;
}

.form-area .tab-content .tab-content {
    margin: 0;
    background: #ffffff;
    padding: 22px 19px 18px;
    border-radius: 0 5px 5px;
    border: #dedede solid 1px;
}

.form-area .tab-content #english.active {
    z-index: 2;
    position: relative;
}

.form-area .field-row {
    overflow: hidden;
    margin: 0 0 17px;
}

.form-area .field-row:first-child {
    margin: 0 0 25px;
}

.form-area .field-row:nth-child(3) {
    margin: 0 0 21px;
}

.form-area .field-row:nth-child(3) .label {
    margin: 0 0 17px;
}

.form-area .field-row.type {
    max-width: 428px;
    margin: 0 0 20px;
}

.form-area .field-row.booking {
    max-width: 452px;
    margin: 0 0 10px;
}

.form-area .field-row.columns {
    max-width: 721px;
}

.form-area .field-row.columns .col {
    float: left;
    width: 53.1%;
    position: relative;
    padding: 0 27px 0 0;
}

.form-area .field-row.columns .col + .col {
    padding: 0;
    width: 39.3%;
    float: right;
}

.form-area .field-row.columns .tooltip-button {
    top: 8px;
    right: 0;
    position: absolute;
}

.form-area .label {
    float: left;
    color: #58595b;
    min-width: 51px;
    max-width: 150px;
    padding: 8px 5px 0 0;
}

.form-area .label.block {
    padding: 0;
    float: none;
    display: block;
    margin: 0 0 14px;
    max-width: none;
    min-width: inherit;
}

.form-area .field-holder {
    overflow: hidden;
}

.form-area h2 {
    margin: 0 0 26px;
    font-size: 24px;
    line-height: 27px;
}

.form-area .thin-scroll .input-placeholder-text {
    padding: 18px 36px 8px 17px;
}

.form-area .btn-block {
    padding: 20px 0 0;
}

.form-area button[type=submit] {
    height: 36px;
    padding: 0 5px;
    min-width: 150px;
    margin: 0 0 0 0;
    font-size: 14px;
    line-height: 17px;
    text-transform: none;
    background: #c7cdd3;
}

.form-area button[type=submit]:hover {
    background: #8e9aa6;
}

.form-area .form-block {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    padding: 18px 20px;
    border: #dedede solid 1px;
}

.form-area .form-block + .form-block {
    margin: 20px 0 0;
}

.form-area .form-block .title {
    width: 26px;
    float: left;
    color: #58595b;
    margin: 7px 7px 0 0;
}

.form-area .form-block.featured-block {
    padding: 23px 28px 28px;
}

.form-area .form-block.featured-block + .btn-block button[type=submit] {
    margin: 0;
}

.form-area .form-block .jcf-number .jcf-real-element {
    color: #c6ccd2;
}

.form-area .form-block .jcf-number .jcf-real-element::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.form-area .form-block .jcf-number .jcf-real-element:-ms-input-placeholder {
    color: #c6ccd2;
}

.form-area .form-block .jcf-number .jcf-real-element::-webkit-input-placeholder {
    color: #c6ccd2;
}

.form-area .field-row.time {
    margin: 0 0 28px;
    max-width: 499px;
}

.form-area .field-row.time .col {
    float: left;
    width: 48.6%;
}

.form-area .field-row.time .col + .col {
    float: right;
}

.form-area .field-row.time .col + .col .title {
    margin: 7px 0 0;
}

.form-area .field-row.time .col:first-child .field-holder {
    padding: 0 49px 0 0;
}

.form-area .field-row.time .field-holder {
    position: relative;
    padding: 0 57px 0 0;
}

.form-area .field-row.time .field-holder + h3 {
    margin: 0 0 20px;
}

.form-area .field-row.time .add-on {
    top: 0;
    right: 7px;
    position: absolute;
}

.form-area .field-row.time .icon-calendar {
    color: #c6cdd2;
    cursor: pointer;
    font-size: 25px;
    line-height: 34px;
}

.form-area .field-row.time .icon-calendar:hover {
    color: #8d9ba5;
}

.form-area .field-row.time .form-control {
    padding: 5px;
    text-align: center;
}

.form-area .field-row.time .input-placeholder-text {
    right: 51px;
    padding: 0 5px;
    text-align: center;
}

.form-area .sub-heading {
    color: #58595b;
    display: block;
    margin: -5px 0 28px;
}

.form-area h3 {
    color: #58595b;
    font-size: 14px;
    margin: 0 0 31px;
}

.form-area h3 + p {
    margin: -6px 0 27px;
}

.form-area .location {
    max-width: 267px;
    margin: 0 0 30px;
    overflow: hidden;
}

.form-area .location .label {
    position: relative;
}

.form-area .location + .btn-block {
    padding: 0;
}

.form-area .location + .btn-block button[type=submit] {
    margin: 0;
}

.form-area .select-holder {
    overflow: hidden;
}

.form-area .date-slider .title {
    width: auto;
    display: inline-block;
    vertical-align: top;
    float: none;
    margin: 0 32px;
    color: #6a7783;
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
}

.form-area .date-slider .title .thin-text {
    font-weight: normal;
}

.form-area .file-selection {
    margin: 0 0 20px;
    background: #ffffff;
    padding: 24px 20px 9px 28px;
}

.form-area .file-selection .area {
    margin: 0 0 37px;
}

.form-area .file-selection .uploader {
    width: auto;
    max-width: 326px;
    margin: 2px 31px 0 0;
}

.form-area .file-selection .jcf-file .jcf-fake-input {
    width: 221px;
}

.form-area .file-selection + .btn-block {
    padding: 0 0 30px;
}

.form-area .file-selection + .btn-block button[type="submit"] {
    margin: 0;
}

.form-area .features-area {
    margin: 0;
}

.form-area .features-area .features-list {
    margin: 0;
    width: 31.73%;
    padding: 0 10px 0 0;
}

.form-area .features-area .features-list:first-child {
    width: 35.03%;
}

.form-area .features-area .features-list:last-child {
    float: right;
    width: 30.23%;
}

.form-area .features-area .features-list li {
    padding: 0;
}

.form-area .features-area .features-list li + li {
    margin: 24px 0 0;
}

.form-area .features-area .label {
    padding: 0;
    float: none;
    color: #58595b;
    display: block;
    max-width: none;
    overflow: hidden;
    min-width: inherit;
}

.form-area .features-area .jcf-checkbox {
    float: left;
    margin: 0 19px 0 0;
}

.form-area .block1 {
    margin: 0 1px 20px 2px;
    padding: 16px 19px 2px 19px;
}

.form-area .block1 h3 {
    margin: 0 0 28px;
}

.form-area .block1 .label {
    max-width: none;
    min-width: inherit;
    padding: 8px 10px 0 0;
}

.form-area .block1 .field-row {
    overflow: visible;
}

.form-area .block1 .field-row:before,
.form-area .block1 .field-row:after {
    content: " ";
    display: table;
}

.form-area .block1 .field-row:after {
    clear: both;
}

.form-area .block1 .field-row:before,
.form-area .block1 .field-row:after {
    content: " ";
    display: table;
}

.form-area .block1 .field-row:after {
    clear: both;
}

.form-area .block1 .jcf-number .input-placeholder-text {
    text-align: center;
}

.form-area .form-selection {
    margin: 0 1px 20px 2px;
    padding: 16px 4px 19px;
}

.form-area .form-selection h3 {
    margin: 0 14px 30px;
}

.form-area .form-selection .jcf-list .jcf-scrollable-wrapper .jcf-list-content {
    overflow: hidden;
}

.form-area .form-selection .jcf-list .jcf-scrollable-wrapper .jcf-scrollbar-horizontal {
    display: none;
}

.form-area .block2 {
    margin: 0 1px 20px 2px;
    padding: 18px 17px 2px;
}

.form-area .block2 h3 {
    margin: 0 0 27px;
}

.form-area .block2 .col {
    float: left;
}

.form-area .block2 .col + .col {
    float: right;
}

.form-area .block2 .label {
    max-width: none;
    min-width: inherit;
    padding: 8px 8px 0 0;
}

.form-area .block2 .field-row {
    margin: 0 0 20px;
}

.form-area .block2 .field-row:nth-child(2) {
    max-width: 721px;
    margin: 0 0 20px;
}

.form-area .block2 .field-row:nth-child(3) {
    max-width: 681px;
    margin: 0 0 11px;
}

.form-area .block2 .field-row:nth-child(4) {
    max-width: 701px;
    margin: 0 0 20px;
}

.form-area .block2 .field-row.address {
    max-width: 700px;
}

.form-area .block2 .field-row.address + .btn-block {
    padding: 0 0 38px;
}

.form-area .block2 .field-row.address + .btn-block button[type="submit"] {
    margin: 0;
}

.form-area .block2 .country {
    width: 47%;
}

.form-area .block2 .city {
    width: 39.2%;
}

.form-area .block2 .zip {
    width: 26%;
}

.form-area .block2 .cell {
    width: 60%;
}

.form-area .maparea {
    margin: 0 0 17px;
}

.form-area .maparea ul {
    color: #58595b;
    line-height: 17px;
    margin: 0 0 29px 2px;
}

.form-area .maparea ul li + li {
    margin: 13px 0 0;
}

.form-area .maparea ul .visited {
    color: #c7cdd3;
}

.form-area .maparea .map-box {
    height: 428px;
    overflow: hidden;
    border: #eaebec solid 1px;
}

.form-area .columns-holder {
    margin: 0 0 20px;
    padding: 26px 28px 23px 29px;
}

.form-area .columns-holder h3 {
    font-size: 16px;
}

.form-area .columns-holder + .btn-block {
    padding: 0 0 19px;
}

.form-area .columns-holder + .btn-block button[type=submit] {
    margin: 0;
}

.form-area .contact-info:before,
.form-area .about-info:before,
.form-area .payment-info:before,
.form-area .contact-info:after,
.form-area .about-info:after,
.form-area .payment-info:after {
    content: " ";
    display: table;
}

.form-area .contact-info:after,
.form-area .about-info:after,
.form-area .payment-info:after {
    clear: both;
}

.form-area .contact-info:before,
.form-area .about-info:before,
.form-area .payment-info:before,
.form-area .contact-info:after,
.form-area .about-info:after,
.form-area .payment-info:after {
    content: " ";
    display: table;
}

.form-area .contact-info:after,
.form-area .about-info:after,
.form-area .payment-info:after {
    clear: both;
}

.form-area .contact-info .column,
.form-area .about-info .column,
.form-area .payment-info .column {
    float: left;
    width: 49%;
    border-radius: 5px;
    padding: 20px 20px 37px;
    border: #eaebec solid 1px;
}

.form-area .contact-info .column + .column,
.form-area .about-info .column + .column,
.form-area .payment-info .column + .column {
    float: right;
}

.form-area .about-info {
    color: #808285;
}

.form-area .about-info .uploader {
    width: auto;
    margin: 0 0 11px;
}

.form-area .about-info .uploader + p {
    max-width: 331px;
    margin: 0 0 26px -2px;
}

.form-area .about-info .uploader + p .icon-resize-full-alt {
    display: inline-block;
    vertical-align: top;
    color: #c6ccd2;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-area .about-info .icon-resize-full-alt {
    display: inline-block;
    vertical-align: top;
    color: #c6ccd2;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-area .about-info .jcf-file .jcf-fake-input {
    width: 221px;
}

.form-area .about-info .from {
    max-width: 375px;
    margin: 0 0 7px;
}

.form-area .about-info .label {
    padding: 0;
    max-width: 121px;
    line-height: 23px;
    margin: 7px 11px 0 0;
}

.form-area .about-info .label.block {
    display: block;
    max-width: none;
}

.form-area .about-info .language {
    margin: 0 0 26px;
}

.form-area .about-info .language button[type="submit"] {
    float: right;
    min-width: 87px;
    margin: 0 0 0 10px;
}

.form-area .about-info .language .label {
    max-width: 114px;
    margin: 7px 0 0;
}

.form-area .about-info .language .field-holder {
    padding: 12px 5px 0 0;
}

.form-area .img-holder {
    width: 148px;
    height: 141px;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 auto 20px;
    border: #eaebec solid 1px;
    background: url(../../images/img13.png) no-repeat;
}

.form-area .img-holder img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.form-area .img-holder div,
.form-area .img-holder span {
    float: left;
}

.form-area .message-area {
    z-index: 2;
    position: relative;
}

.form-area .message-area .label {
    margin: 0 0 16px;
}

.form-area .message-area .tab-content {
    padding: 10px;
    margin-bottom: 20px;
}

.form-area .message-area .field-row {
    margin: 0;
}

.form-area .message-area .jcf-textarea {
    border-width: 0;
}

.form-area .message-area .jcf-textarea textarea {
    height: 186px;
    max-height: 186px;
    min-height: 185px;
}

.form-area .message-area .jcf-scrollbar-vertical .jcf-scrollbar-dec,
.form-area .message-area .jcf-scrollbar-vertical .jcf-scrollbar-inc {
    height: 20px;
}

.form-area .message-area .jcf-scrollbar-vertical .jcf-scrollbar-slider {
    margin: 0 0 0 2px;
}

.form-area .message-area .jcf-scrollbar-vertical .jcf-scrollbar-slider .jcf-scrollbar-handle {
    background: #c6ccd2;
}

.form-area .message-area #btn-translate {
    margin: 10px 0 0 0;
    padding: 7px 14px;
}

.form-area .message-area .nav-tabs > li > a {
    border-radius: 5px 5px 0 0;
}

.form-area .payment-info {
    margin: 0 0 20px;
}

.form-area .payment-info .column {
    padding: 20px 20px 2px;
}

.form-area .payment-info .column:first-child {
    padding: 20px 21px 10px 18px;
}

.form-area .payment-info .label {
    padding: 0;
    width: 129px;
    max-width: none;
    min-width: inherit;
    margin: 7px 11px 0 0;
}

.form-area .payment-info .field-row {
    margin: 0 0 19px;
    overflow: visible;
    position: relative;
}

.form-area .payment-info .field-row:before,
.form-area .payment-info .field-row:after {
    content: " ";
    display: table;
}

.form-area .payment-info .field-row:after {
    clear: both;
}

.form-area .payment-info .field-row:before,
.form-area .payment-info .field-row:after {
    content: " ";
    display: table;
}

.form-area .payment-info .field-row:after {
    clear: both;
}

.form-area .payment-info .field-row:first-child {
    margin: 0 0 19px;
}

.form-area .payment-info .field-row:nth-child(3) .label {
    width: 132px;
    margin: 7px 7px 0 0;
}

.form-area .payment-info .field-row.alt {
    margin: 0 0 9px;
}

.form-area .payment-info .field-row.alt + .field-row .field-holder {
    padding: 10px 0 0;
}

.form-area .payment-info .form-control {
    padding: 5px;
    text-align: center;
}

.form-area .payment-info .input-placeholder-text {
    padding: 0 5px;
    text-align: center;
}

.form-area .payment-info .field-day,
.form-area .payment-info .field-month,
.form-area .payment-info .field-year {
    float: left;
    position: relative;
    text-align: center;
    padding: 0 5px 0 0;
}

.form-area .payment-info .field-day {
    width: 21.4%;
}

.form-area .payment-info .field-day .input-placeholder-text {
    right: 5px;
}

.form-area .payment-info .field-month {
    width: 55%;
    padding: 0 5px;
    text-align: left;
}

.form-area .payment-info .field-year {
    width: 23.4%;
    padding: 0 0 0 3px;
}

.form-area .payment-info + .alert-success {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #bee1ff;
    padding: 16px 20px;
}

.form-area .payment-info ~ .info-list {
    padding: 0 10px 5px 0;
}

.form-area .payment-info ~ .info-list li {
    margin: 0;
    padding: 0;
}

.form-area .payment-info ~ .info-list li + li {
    margin: 21px 0 0;
}

.form-area .payment-info ~ .info-list .btn-primary {
    padding: 7px 10px;
    background: #7a7a7a;
    text-transform: none;
    vertical-align: middle;
}

.form-area .payment-info ~ .info-list .btn-primary:hover {
    background: #949494;
}

.form-area .payment-info ~ .info-list .tooltip-button {
    margin: 0 -11px 0 9px;
    vertical-align: middle;
}

.form-area .tooltip-btn {
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 34px;
    z-index: 5;
    position: absolute;
    background: #ffffff;
    padding: 8px 0 0 5px;
    border-radius: 0 5px 5px 0;
}

.form-area .tooltip-btn .tooltip-button {
    font-size: 12px;
    text-indent: 1px;
}

.form-area .contact-info {
    margin: 0;
}

.form-area .contact-info .column {
    padding: 32px 19px 5px 20px;
}

.form-area .contact-info .column:first-child {
    padding: 20px 21px 10px 18px;
}

.form-area .contact-info .field-row {
    margin: 0 0 21px;
    overflow: visible;
    position: relative;
}

.form-area .contact-info .field-row:before,
.form-area .contact-info .field-row:after {
    content: " ";
    display: table;
}

.form-area .contact-info .field-row:after {
    clear: both;
}

.form-area .contact-info .field-row:before,
.form-area .contact-info .field-row:after {
    content: " ";
    display: table;
}

.form-area .contact-info .field-row:after {
    clear: both;
}

.form-area .contact-info .field-row:first-child {
    margin: 0 0 23px;
}

.form-area .contact-info .field-row:nth-child(2) {
    margin: 0 0 25px;
}

.form-area .contact-info .field-row:nth-child(3) .label {
    margin: 7px 11px 0 0;
}

.form-area .contact-info .field-row.alt {
    margin: 0 0 19px;
}

.form-area .contact-info .field-row.alt .field-holder {
    padding: 11px 0 0;
}

.form-area .contact-info .field-row:last-child {
    margin: 0 0 10px;
}

.form-area .contact-info .label {
    padding: 0;
    width: 129px;
    max-width: none;
    min-width: inherit;
    margin: 7px 11px 0 0;
}

.form-area .contact-info .label.block {
    width: auto;
    display: block;
    max-width: none;
}

.form-area .contact-info .code {
    float: left;
    width: 45px;
    margin: 0 10px 0 0;
}

.form-area .contact-info .code .form-control {
    padding: 5px;
    text-align: center;
}

.form-area h4 {
    color: #58595b;
    font-size: 14px;
    margin: 0 0 17px;
}

.form-area #contact-info .form-holder {
    margin: 0 0 20px;
    padding: 26px 28px 29px 29px;
}

.form-area #contact-info h3 {
    font-size: 16px;
}

.form-area #contact-info .btn-block {
    padding: 0 0 20px;
}

.form-area #contact-info .btn-block button[type=submit] {
    margin: 0;
}

/* btns-list */
.btns-list {
    margin: 0 -6px 32px;
}

.btns-list:before,
.btns-list:after {
    content: " ";
    display: table;
}

.btns-list:after {
    clear: both;
}

.btns-list:before,
.btns-list:after {
    content: " ";
    display: table;
}

.btns-list:after {
    clear: both;
}

.btns-list li {
    float: left;
    width: 33.3333%;
    position: relative;
    padding: 0 5px 10px;
}

.btns-list .btn {
    color: #58595b;
    display: block;
    padding: 7px 5px;
    background: #ffffff;
    text-transform: capitalize;
    border: #dedede solid 1px;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
}

.btns-list .btn:hover {
    color: #262627;
    border-color: #ababab;
}

.btns-list .close {
    right: -4px;
}

/* images-list */
.images-list {
    margin: 0 -13px 0 -7px;
}

.images-list:before,
.images-list:after {
    content: " ";
    display: table;
}

.images-list:after {
    clear: both;
}

.images-list:before,
.images-list:after {
    content: " ";
    display: table;
}

.images-list:after {
    clear: both;
}

.images-list li {
    padding: 0;
    float: left;
    width: 120px;
    overflow: hidden;
    border-radius: 4px;
    margin: 0 5px 10px;
    border: #eaebec solid 1px;
    cursor: move;
}

.images-list li img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

/* check-list */
.check-list {
    margin: -5px 0 37px;
}

.check-list li {
    padding: 0;
    margin: 0 22px 0 0;
}

.check-list .label {
    padding: 0;
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.check-list .jcf-checkbox {
    margin: 0 8px 0 0;
    vertical-align: middle;
}

/* date-slider */
.date-slider {
    left: 6px;
    max-width: 730px;
    margin: 0 auto 13px;
    position: relative;
    border-radius: 5px;
    padding: 31px 30px 30px;
    border: #dedede solid 1px;
}

.date-slider .fc-toolbar,
.date-slider .title-area {
    padding: 0 0 19px;
    text-align: center;
}

.date-slider .fc-left,
.date-slider .fc-right,
.date-slider .carousel-control {
    display: inline-block;
    vertical-align: top;
    filter: none;
    opacity: 0.5;
    filter: alpha(opacity=50);
    width: 32px;
    height: 32px;
    color: #7a7a7a;
    overflow: hidden;
    position: static;
    text-align: center;
    text-shadow: none;
    background: #ffffff;
    border-radius: 100%;
    text-decoration: none;
    font-size: 25px;
    line-height: 29px;
    border: #7a7a7a solid 1px;
}

.date-slider .fc-left:focus,
.date-slider .fc-right:focus,
.date-slider .carousel-control:focus,
.date-slider .fc-left:hover,
.date-slider .fc-right:hover,
.date-slider .carousel-control:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #474747;
    border-color: #474747;
}

.date-slider .fc-left.left,
.date-slider .fc-right.left,
.date-slider .carousel-control.left {
    text-indent: -3px;
}

.date-slider .fc-left.right,
.date-slider .fc-right.right,
.date-slider .carousel-control.right {
    text-indent: -1.5px;
}

.date-slider .fc-toolbar {
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
}

.date-slider .fc-toolbar .fc-left button,
.date-slider .fc-toolbar .fc-right button {
    margin: 0;
    border: 0;
    padding: 0;
    float: none;
    display: block;
    background: none;
    width: 100%;
    height: 100%;
}

.date-slider .fc-toolbar .fc-icon {
    margin: 0;
    top: auto;
}

.date-slider .fc-toolbar .fc-icon:after {
    top: -5px;
    margin: 0;
    left: auto;
    width: auto;
    font: 25px/29px 'fontello';
}

.date-slider .fc-toolbar .fc-icon.fc-icon-left-single-arrow {
    text-indent: -3px;
}

.date-slider .fc-toolbar .fc-icon.fc-icon-left-single-arrow:after {
    content: '\e808';
}

.date-slider .fc-toolbar .fc-icon.fc-icon-right-single-arrow:after {
    content: '\e807';
}

.date-slider .fc-toolbar .fc-center {
    width: auto;
    float: none;
    display: block;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
}

.date-slider .fc-toolbar .fc-center h2 {
    float: none;
    margin: 0 5px;
    color: #6a7783;
    font-size: 24px;
    line-height: 32px;
}

.date-slider .fc-toolbar .fc-center .span {
    font-weight: normal;
}

.date-slider .fc-day-grid-container {
    height: auto !important;
}

/* date-table */
.date-table {
    margin: 0;
    border-collapse: collapse;
}

.date-table > tbody > tr > td,
.date-table > thead > tr > td,
.date-table > tbody > tr > th,
.date-table > thead > tr > th {
    border: #ffffff solid;
    border-width: 0 0 1px 1px;
}

.date-table > tbody > tr > td:first-child,
.date-table > thead > tr > td:first-child,
.date-table > tbody > tr > th:first-child,
.date-table > thead > tr > th:first-child {
    border-width: 0 0 1px;
}

.date-table > tbody > tr > th,
.date-table > thead > tr > th {
    color: #ffffff;
    padding: 6px 5px;
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    background: #c7cdd3;
    text-transform: lowercase;
}

.date-table > tbody > tr > td,
.date-table > thead > tr > td {
    color: #58595b;
    min-height: 75px;
    padding: 29px 5px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    line-height: 17px;
    background: #f0f0f0;
}

.date-table > tbody > tr > td > div,
.date-table > thead > tr > td > div {
    position: relative;
}

.date-table .price {
    left: 3px;
    bottom: -24px;
    color: #39b4fb;
    position: absolute;
}

/* form-announcements */
.form-announcements {
    margin: 0 0 20px;
    background: #ffffff;
    border-radius: 5px;
    padding: 15px 19px 19px;
    border: #dedede solid 1px;
}

.form-announcements h2 {
    color: #58595b;
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 17px;
}

.form-announcements .jcf-select .jcf-select-text {
    margin: 4px 42px 0 5px;
}

/* btn-translate */
.btn-translate {
    display: inline-block;
    vertical-align: top;
    color: #58595b;
    height: 50px;
    text-align: center;
    position: relative;
    margin: 0 18px 0 3px;
    text-decoration: none;
    letter-spacing: -0.2px;
    background: url(../../images/sprite-icons.png) repeat-x 0 -63px;
}

.btn-translate:hover {
    text-decoration: none;
    color: #262627;
}

.btn-translate:after,
.btn-translate:before {
    top: 0;
    content: '';
    position: absolute;
    background: url(../../images/sprite-icons.png) no-repeat -9999px -9999px;
}

.btn-translate:after {
    left: 100%;
    width: 18px;
    height: 50px;
    background-position: -82px 0;
}

.btn-translate:before {
    top: 1px;
    right: 100%;
    width: 5px;
    height: 50px;
    background-position: -75px 0;
}

.btn-translate span {
    z-index: 2;
    float: left;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    padding: 13px 9px 11px 16px;
}

#english .btn-translate {
    margin-bottom: -6px;
}

#policy .form-holder {
    padding: 25px 30px 29px 29px;
}

#policy .form-holder > h2 {
    margin: 0 0 32px;
}

/* price-section */
.price-section {
    margin: 0 0 20px;
    position: relative;
}

.price-section:before,
.price-section:after {
    content: " ";
    display: table;
}

.price-section:after {
    clear: both;
}

.price-section:before,
.price-section:after {
    content: " ";
    display: table;
}

.price-section:after {
    clear: both;
}

.price-section .column {
    float: left;
    width: 37.2%;
    border-radius: 5px;
    padding: 17px 18px;
    border: #e6e6e6 solid 1px;
}

.price-section .column + .column {
    float: right;
    width: 61.6%;
    padding: 17px 13px 17px 17px;
}

.price-section .column + .column .price-info {
    margin: 0 16px 0 -3px;
}

.price-section .column + .column .price-info:before,
.price-section .column + .column .price-info:after {
    content: " ";
    display: table;
}

.price-section .column + .column .price-info:after {
    clear: both;
}

.price-section .column + .column .price-info:before,
.price-section .column + .column .price-info:after {
    content: " ";
    display: table;
}

.price-section .column + .column .price-info:after {
    clear: both;
}

.price-section .column + .column .price-info li {
    margin: 0;
    float: left;
}

.price-section .column + .column .price-info li + li {
    margin: 0;
    float: right;
}

.price-section h3 {
    margin: 0 0 20px;
}

.price-section .label {
    color: #58595b;
    max-width: none;
    min-width: inherit;
    padding: 6px 5px 0 0;
}

.price-section .field-row {
    margin: 0 0 18px;
    max-width: 233px;
}

.price-section .field-row .info {
    float: right;
    margin: 8px 0 0 9px;
}

.price-section .info {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    margin: 0 0 0 2px;
}

.price-section .tooltip-button {
    margin: -2px 0 0 5px;
    vertical-align: middle;
}

.price-section .price-area {
    border: 0;
    padding: 0;
    margin: 0 0 12px;
    border-radius: 0;
}

.price-section .price-area:before,
.price-section .price-area:after {
    content: " ";
    display: table;
}

.price-section .price-area:after {
    clear: both;
}

.price-section .price-area:before,
.price-section .price-area:after {
    content: " ";
    display: table;
}

.price-section .price-area:after {
    clear: both;
}

.price-section .price-area .col {
    float: left;
    width: 47.2%;
}

.price-section .price-area .col + .col {
    float: right;
    width: 45.2%;
}

.price-section .price-area .title {
    float: left;
    margin: 8px 9px 0 0;
}

.price-section .price-area .add-on {
    float: right;
    color: #c6cdd2;
    cursor: pointer;
    font-size: 25px;
    margin: 0 0 0 16px;
}

.price-section .price-area .add-on:hover {
    color: #8d9ba5;
}

.price-section .price-area .input-placeholder-text,
.price-section .price-area .form-control {
    padding: 5px;
    text-align: center;
}

.price-section .price-area .input-placeholder-text {
    padding: 0 5px;
}

.price-section .price {
    display: block;
    margin: 0 0 11px;
    text-align: center;
    font-size: 36px;
    line-height: 40px;
}

.price-section .price .tooltip-button {
    vertical-align: middle;
    margin: -6px 4px 0 3px;
}

.price-section .price-info {
    color: #58595b;
    margin-bottom: 16px;
}

.price-section .price-info li + li {
    margin: 15px 0 0;
}

/* discount-area */
.discount-area {
    margin: 0 0 21px;
    border-radius: 5px;
    padding: 11px 17px 18px;
    border: #e6e6e6 solid 1px;
}

.discount-area h2 {
    font-size: 14px;
    margin: 0 0 22px;
}

.discount-area .btn-block {
    padding: 0;
}

.discount-area .btn-block button[type=submit] {
    margin: 0;
    min-width: 220px;
}

.discount-area + .form-block {
    margin: 0 0 20px;
}

.discount-area .jcf-number {
    position: relative;
}

.discount-area .jcf-number .form-control {
    color: #c6ccd2;
}

.discount-area .jcf-number .form-control::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.discount-area .jcf-number .form-control:-ms-input-placeholder {
    color: #c6ccd2;
}

.discount-area .jcf-number .form-control::-webkit-input-placeholder {
    color: #c6ccd2;
}

.discount-area .jcf-number .ending {
    top: 8px;
    right: 30px;
    position: absolute;
    color: #c6ccd2;
}

/* discount-list */
.discount-list {
    max-width: 742px;
    margin: 0 auto 28px;
}

.discount-list:before,
.discount-list:after {
    content: " ";
    display: table;
}

.discount-list:after {
    clear: both;
}

.discount-list:before,
.discount-list:after {
    content: " ";
    display: table;
}

.discount-list:after {
    clear: both;
}

.discount-list + .discount-list {
    margin-bottom: 30px;
}

.discount-list li {
    vertical-align: bottom;
    padding: 0 5px 0 0;
}

.discount-list .field-holder {
    width: 85px;
    display: inline-block;
    vertical-align: middle;
}

.discount-list .close {
    position: static;
    margin: 6px -11px 0 11px;
    display: inline-block;
    vertical-align: middle;
}

.discount-list .label {
    float: none;
    max-width: none;
    min-width: inherit;
    padding: 0 2px 0 0;
    letter-spacing: -0.2px;
    display: inline-block;
    vertical-align: middle;
}

.discount-list .form-control,
.discount-list .input-placeholder-text {
    text-align: center;
}

/* price-range */
.price-range .sign {
    float: right;
    font-size: 16px;
    margin: 6px 0 0 4px;
}

.price-range .agenda {
    max-width: 350px;
    margin: -1px 0 10px -2px;
}

.price-range .agenda .label {
    max-width: none;
    min-width: inherit;
}

.price-range .agenda .input-placeholder-text,
.price-range .agenda .form-control {
    padding: 5px;
    text-align: center;
}

.price-range .agenda .input-placeholder-text {
    padding: 0 5px;
}

.price-range .btn-block button[type=submit] {
    margin: 0;
}

/* booking-policy */
.booking-policy {
    margin: 0 0 19px;
    border-radius: 5px;
    padding: 12px 20px 2px;
    border: #e6e6e6 solid 1px;
}

.booking-policy h2 {
    font-size: 14px;
    margin: 0 0 20px;
}

.booking-policy .field-row {
    max-width: 435px;
}

.booking-policy .field-row .field-holder .label {
    float: right;
    padding: 8px 0 0 10px;
}

.booking-policy .field-row:nth-child(3) {
    margin: 0 0 15px;
}

.booking-policy .policy {
    max-width: 317px;
}

.booking-policy .label {
    max-width: none;
    min-width: inherit;
    padding: 8px 5px 0 0;
}

.booking-policy .jcf-number:after {
    right: 24px;
}

.booking-policy .jcf-number .jcf-real-element {
    color: #c6ccd2;
}

.booking-policy .jcf-number .jcf-real-element::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.booking-policy .jcf-number .jcf-real-element:-ms-input-placeholder {
    color: #c6ccd2;
}

.booking-policy .jcf-number .jcf-real-element::-webkit-input-placeholder {
    color: #c6ccd2;
}

.postarea {
    padding: 0 0 20px;
    position: relative;
    margin: -24px 0 0;
}

.postarea .result-counter {
    float: left;
    color: #58595b;
    margin: 0 10px 0 0;
}

.postarea .section-head {
    overflow: hidden;
    padding: 0 0 25px;
}

.postarea .section-foot {
    overflow: hidden;
}

.postarea .section-foot .result-counter {
    margin: 12px 10px 0 0;
}

.postarea .nav-pagination {
    margin: 0;
}

.postarea .nav-pagination .pagination {
    margin: 0;
}

.postarea .nav-pagination .pagination li {
    float: left;
}

.postarea .post-area {
    float: left;
    width: 82.1%;
    margin: 0 4.5% 0 0;
}

.postarea .posts-holder {
    padding: 0 0 29px;
    position: relative;
}

.postarea .posts-holder .post {
    margin: 0;
    color: #808285;
    background: #ffffff;
    padding: 18px 19px 20px;
}

.postarea .posts-holder .post:before,
.postarea .posts-holder .post:after {
    content: " ";
    display: table;
}

.postarea .posts-holder .post:after {
    clear: both;
}

.postarea .posts-holder .post:before,
.postarea .posts-holder .post:after {
    content: " ";
    display: table;
}

.postarea .posts-holder .post:after {
    clear: both;
}

.postarea .posts-holder .post + .post {
    margin: 20px 0 0;
    position: relative;
}

.postarea .posts-holder .post .area {
    padding: 0;
}

.postarea .posts-holder .post .area .area {
    padding: 0 0 26px;
}

.postarea .posts-holder .img-holder {
    float: left;
    width: 200px;
    border-width: 0;
    max-width: none;
    margin: 0 19px 0 0;
    border-radius: 5px;
}

.postarea .posts-holder .img-holder a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    border: solid 1px #ebeced;
}

.postarea .posts-holder .img-holder a:hover {
    border-color: #b5b9bd;
}

.postarea .posts-holder .img-holder img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.postarea .posts-holder .footer {
    margin: 1px 0 0;
    overflow: hidden;
}

.postarea .posts-holder .footer .btn-default {
    padding: 7px;
    display: block;
    text-align: center;
    text-transform: none;
    background: #c7cdd3;
}

.postarea .posts-holder .footer .btn-default:hover {
    background: #8e9aa6;
}

.postarea .posts-holder .footer .btn-default + .btn {
    margin: 10px 0 0;
}

.postarea .head:before,
.postarea .head:after {
    content: " ";
    display: table;
}

.postarea .head:after {
    clear: both;
}

.postarea .head:before,
.postarea .head:after {
    content: " ";
    display: table;
}

.postarea .head:after {
    clear: both;
}

.postarea .head time {
    color: #58595b;
    float: right;
    font-size: 16px;
    font-weight: 700;
    margin: -3px 0 0;
}

.postarea .area {
    overflow: hidden;
    padding: 0 0 26px;
}

.postarea h2 {
    float: left;
    font-size: 16px;
    margin: 0 10px 0 0;
}

.postarea h2 a {
    color: #58595b;
    text-decoration: none;
}

.postarea h2 a:hover {
    color: #000000;
    text-decoration: none;
}

.postarea .meta {
    color: #58595b;
    padding: 0 0 14px;
}

.postarea .meta:before,
.postarea .meta:after {
    content: " ";
    display: table;
}

.postarea .meta:after {
    clear: both;
}

.postarea .meta:before,
.postarea .meta:after {
    content: " ";
    display: table;
}

.postarea .meta:after {
    clear: both;
}

.postarea .meta p {
    display: inline-block;
    vertical-align: top;
    margin: 0 11px 0 0;
}

.postarea .rating {
    display: inline-block;
    vertical-align: top;
    float: none;
    margin: -3px 0 0;
}

.postarea .rating li {
    font-size: 18px;
    margin: 0 -7px 0 0;
}

.postarea .post-content {
    margin: 0;
    position: relative;
}

.postarea .post-content p {
    margin: 0 0 10px;
}

.postarea .post-content p a {
    color: #808285;
    text-decoration: none;
}

.postarea .post-content p a:hover {
    color: #67696b;
}

.postarea .post-content .author-img {
    float: left;
    width: 60px;
    overflow: hidden;
    position: static;
    border-radius: 4px;
    margin: 0 20px 0 0;
    border: #eaebec solid 1px;
}

.postarea .textbox {
    overflow: hidden;
    padding: 4px 0 0;
}

.postarea p {
    margin: 0 0 10px;
}

.postarea .booking-info {
    color: #58595b;
    float: right;
    margin: -3px 0 0 10px;
}

.postarea .booking-detail {
    margin: 0 0 4px;
}

.postarea .booking-detail:before,
.postarea .booking-detail:after {
    content: " ";
    display: table;
}

.postarea .booking-detail:after {
    clear: both;
}

.postarea .booking-detail:before,
.postarea .booking-detail:after {
    content: " ";
    display: table;
}

.postarea .booking-detail:after {
    clear: both;
}

.postarea .booking-detail ul {
    float: left;
    width: 62.666%;
    margin: 2px 0 0;
}

.postarea .booking-detail ul li {
    padding: 0;
    float: left;
    color: #58595b;
    width: 50%;
    font-weight: 700;
    text-align: center;
}

.postarea .booking-detail ul li:first-child {
    text-align: left;
}

.postarea .booking-detail ul li:last-child {
    text-align: right;
}

.postarea .booking-detail ul li time,
.postarea .booking-detail ul li span {
    margin: 0;
    float: none;
    font-size: 14px;
    font-weight: 400;
}

.postarea .booking-duration {
    color: #58595b;
    display: block;
    overflow: hidden;
    text-align: right;
    margin: 2px 0 0 5px;
}

.postarea .booking-duration .normal-text {
    font-weight: 400;
}

.postarea .price {
    color: #58595b;
    display: block;
    font-size: 30px;
    line-height: 1.125;
    text-align: right;
    margin: -4px 0 14px;
}

.postarea .price > span {
    display: inline-block;
    vertical-align: middle;
}

.postarea .price .tooltip-button {
    margin: 5px 0 0 5px;
    vertical-align: middle;
}

.postarea .empty,
.postarea .expiry {
    color: #58595b;
    display: block;
    margin: 0 0 9px;
}

.postarea.alt {
    margin: -19px 0 0;
}

.postarea.alt .section-head {
    padding: 0 0 33px;
}

.postarea.alt .section-head .result-counter {
    margin: 10px 10px 0 0;
}

.postarea.alt .posts-holder .footer {
    margin: 1px 0 -12px;
    text-align: right;
}

.postarea.alt .posts-holder .footer .btn {
    display: block;
    margin: 0 0 12px;
    padding: 7px 5px;
    text-align: center;
    text-transform: none;
}

.postarea.alt .posts-holder .footer .btn.btn-default {
    min-width: 150px;
    display: inline-block;
}

.postarea.alt .posts-holder .area .area {
    padding: 0 0 15px;
}

.postarea.alt .post-area {
    width: 77.7%;
}

.postarea.alt .meta {
    padding: 0 0 17px;
}

.postarea.alt2 {
    margin: 8px 0 0 -2px;
}

.postarea.alt2 .posts-holder .post {
    padding: 18px 19px 16px;
}

.postarea.alt2 .posts-holder .post .area .area {
    padding: 0 0 19px;
}

.postarea.alt2 .posts-holder .img-holder {
    margin: 2px 19px 0 1px;
}

.postarea.alt2 .posts-holder .footer {
    margin: 1px 0 -12px;
    text-align: right;
}

.postarea.alt2 .posts-holder .footer .btn {
    display: block;
    margin: 0 0 12px;
    padding: 7px 5px;
    text-align: center;
    text-transform: none;
}

.postarea.alt2 .posts-holder .footer .btn.btn-default {
    min-width: 150px;
    display: inline-block;
}

.postarea.alt2 .post-area {
    width: 77.6%;
    margin: 0 4.6% 0 0;
}

.postarea.alt2 .meta {
    padding: 0 0 7px;
}

.postarea.alt2 .booking-info {
    float: none;
    display: block;
    margin: 0 0 10px;
    text-align: left;
}

.postarea.alt2 .booking-detail ul {
    margin: 0;
}

.postarea.alt2 .textbox {
    padding: 10px 0 0;
}

.postarea.alt2 .author-info {
    color: #58595b;
    display: block;
    margin: 0 0 9px;
}

.postarea.alt2 .rating {
    display: block;
}

.postarea.alt2 .price {
    margin: -4px 0 38px;
}

.postarea.alt2 .price .tooltip-button {
    margin: 5px 0 0 11px;
}

.postarea.alt2 .price > span {
    letter-spacing: normal;
}

.postarea.alt2 .booking-duration {
    margin: 0 0 32px;
}

.postarea.alt3 {
    margin: 8px 0 0;
}

.postarea.alt3 .post-area {
    width: 77.6%;
    margin: 0 4.6% 0 0;
}

.postarea.alt3 .posts-holder {
    padding: 0 0 26px;
}

.postarea.alt3 .posts-holder .post .area .area {
    padding: 0 0 15px;
}

.postarea.alt3 .posts-holder .img-holder {
    margin: 2px 19px 0 0;
}

.postarea.alt3 .posts-holder .footer {
    text-align: right;
}

.postarea.alt3 .meta {
    padding: 0 0 15px;
}

.postarea.alt3 .btn-yellow {
    display: block;
    margin: 0 0 12px;
    padding: 7px 5px;
    text-align: center;
    text-transform: none;
}

.postarea.alt3 .booking-duration {
    margin: 0 0 17px;
}

.postarea.alt3 .booking-info {
    float: none;
    display: block;
    margin: 0 0 5px;
}

.postarea.alt3 .booking-detail ul {
    margin: 0;
}

.postarea.alt3 .textbox {
    padding: 11px 0 0;
}

.postarea.alt3 .author-info {
    display: block;
    margin: 0 0 9px;
}

.postarea.alt3 .price {
    margin: -4px 0 17px;
}

.postarea .btn-block {
    width: auto;
    display: block;
    overflow: hidden;
}

.postarea .btns-holder {
    padding: 0 0 16px;
}

.postarea .btns-holder .btn {
    min-width: 150px;
    padding: 7px 5px;
    text-align: center;
    margin: 0 5px 10px;
    text-transform: none;
}

.postarea.notation-booking {
    margin: 0;
}

.postarea.notation-booking .posts-holder .post .area .area {
    padding: 0 0 34px;
}

.postarea.notation-booking h2 {
    font-weight: 400;
}

.postarea.notation-booking h2 a {
    color: #435cc8;
    font-weight: 700;
}

.postarea.notation-booking h2 a:hover {
    color: #7e8fd9;
}

.postarea.notation-booking .rating-area {
    width: auto;
    float: right;
    margin: -3px -3px 0 10px;
}

.postarea.notation-booking .rating-area.alt {
    width: auto;
}

.postarea.notation-booking .rating-area.alt .title {
    width: auto;
    margin: 5px 15px 0 0;
}

.postarea.notation-booking .rating-area .title {
    width: 206px;
    max-width: none;
    margin: 5px 5px 0 0;
}

.postarea.notation-booking .rating-area .rating {
    float: right;
}

.postarea.notation-booking .rating-area .rating li {
    font-size: 26px;
    margin: 0 0 0 -9px;
}

.postarea.notation-booking .booking-detail {
    overflow: hidden;
}

.postarea.notation-booking .booking-detail ul {
    width: 100%;
}

.postarea.notation-booking .booking-detail ul li {
    float: none;
    width: auto;
    font-weight: 400;
    margin: 0 28px 0 0;
    vertical-align: top;
}

.postarea.notation-booking .booking-detail ul li:last-child {
    text-align: left;
}

.postarea.notation-booking .booking-detail ul li a {
    color: #58595b;
    font-weight: 700;
    text-decoration: none;
}

.postarea.notation-booking .booking-detail ul li a:hover {
    color: #262627;
}

.postarea.notation-booking .booking-detail ul time {
    display: inline-block;
    vertical-align: top;
    font-weight: 700;
}

/* form-filter */
.form-filter {
    float: right;
    width: 236px;
}

/* form-ad-detail */
.form-ad-detail {
    max-width: 680px;
    margin: 11px auto 57px;
}

.form-ad-detail .listing-detail {
    right: 10px;
    max-width: 600px;
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    margin: 0 auto 59px;
    padding: 14px 20px 19px;
    border: #e6e6e6 solid 1px;
}

.form-ad-detail .listing-detail:before,
.form-ad-detail .listing-detail:after {
    content: " ";
    display: table;
}

.form-ad-detail .listing-detail:after {
    clear: both;
}

.form-ad-detail .listing-detail:before,
.form-ad-detail .listing-detail:after {
    content: " ";
    display: table;
}

.form-ad-detail .listing-detail:after {
    clear: both;
}

.form-ad-detail .area {
    margin: 0 0 16px;
}

.form-ad-detail .area:before,
.form-ad-detail .area:after {
    content: " ";
    display: table;
}

.form-ad-detail .area:after {
    clear: both;
}

.form-ad-detail .area:before,
.form-ad-detail .area:after {
    content: " ";
    display: table;
}

.form-ad-detail .area:after {
    clear: both;
}

.form-ad-detail .author-img,
.form-ad-detail .img-holder {
    float: left;
    overflow: hidden;
    border-radius: 5px;
    margin: 3px 29px 0 0;
    border: #ebeced solid 1px;
}

.form-ad-detail .listing-title {
    display: block;
    font-size: 18px;
    line-height: 1.125;
    margin: 0 0 85px;
}

.form-ad-detail .author-detail,
.form-ad-detail .box {
    overflow: hidden;
}

.form-ad-detail .author-detail .box {
    padding: 10px 0 0;
}

.form-ad-detail .author-img {
    border-radius: 4px;
    margin: 0 16px 0 0;
    border-color: #eaebec;
}

.form-ad-detail .author-name {
    color: #58595b;
    display: block;
    margin: 0 0 6px;
    font-weight: normal;
}

.form-ad-detail .author-name a {
    color: #58595b;
    font-weight: 700;
    text-decoration: none;
}

.form-ad-detail .author-name a:hover {
    color: #000000;
    text-decoration: none;
}

.form-ad-detail .rating {
    margin: 0;
}

.form-ad-detail .rating li {
    font-size: 18px;
    margin: 0 -7px 0 0;
}

.form-ad-detail .jcf-textarea {
    margin: 0 0 16px;
    background: #ffffff;
}

.form-ad-detail .jcf-textarea textarea {
    height: 125px;
    line-height: 20px;
    min-height: 124px;
    max-height: 400px;
}

.form-ad-detail .input-placeholder-text {
    line-height: 20px;
    padding: 17px;
}

.form-ad-detail .btn-primary {
    padding: 7px 23px;
    background: #7c868d;
    text-transform: none;
}

.form-ad-detail .btn-primary:hover {
    background: #a5acb1;
}

.form-ad-detail .btn-default {
    padding: 6px 30px;
    text-transform: none;
    background: #c7cdd3;
}

.form-ad-detail .btn-default:hover {
    background: #9ca7b1;
}

/* messaging blog */
#messaging .blog {
    margin: 0 auto;
    max-width: 880px;
    padding: 0 0 20px;
}

#messaging .blog .posts-holder .post {
    background: #ffffff;
    margin: 0 30px 0 100px;
}

#messaging .blog .posts-holder .post + .post {
    margin-top: 20px;
}

#messaging .blog .posts-holder .post:nth-child(2) .post-content {
    margin: 0 4px 37px 0;
}

#messaging .blog .posts-holder .author-img {
    width: 80px;
}

#messaging .postarea .post-content p a {
    color: #808285;
    text-decoration: none;
}

#messaging .postarea .post-content p a:hover {
    color: #414244;
}

/* location-holder */
.location-holder {
    color: #58595b;
    max-width: 620px;
    position: relative;
    margin: 0 auto 48px;
}

.location-holder:before,
.location-holder:after {
    content: " ";
    display: table;
}

.location-holder:after {
    clear: both;
}

.location-holder:before,
.location-holder:after {
    content: " ";
    display: table;
}

.location-holder:after {
    clear: both;
}

.location-holder .contact-info,
.location-holder address {
    margin: 0;
    float: left;
    width: 43.7%;
    padding: 15px 20px;
    border-radius: 3px;
    background: #d1e4f3;
    border: #4d8fcb solid 1px;
    -webkit-box-shadow: 1px 1px 4px 1px rgba(255, 255, 255, 0.35) inset;
    box-shadow: 1px 1px 4px 1px rgba(255, 255, 255, 0.35) inset;
}

.location-holder address {
    float: right;
}

.location-holder address,
.location-holder a {
    color: #58595b;
    text-decoration: none;
}

.location-holder a:hover {
    color: #000000;
    text-decoration: none;
}

.location-holder .title {
    display: block;
    margin: 0 0 4px;
}

.location-holder dl {
    margin: 0;
}

.location-holder dl dt {
    float: left;
    clear: left;
    font-weight: 400;
    margin: 0 3px 0 0;
}

.location-holder dl dd {
    font-weight: 400;
}

/* form-radio */
.form-radio {
    left: 10px;
    max-width: 398px;
    border-radius: 5px;
    position: relative;
    margin: 10px auto 40px;
    border: #dcdcdc solid 1px;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.65);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.65);
}

.form-radio ul {
    margin: 0;
    width: 100%;
    display: table;
    table-layout: fixed;
}

.form-radio ul li {
    padding: 0;
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.form-radio ul li:first-child label {
    border-radius: 4px 0 0 4px;
}

.form-radio ul li:last-child label {
    border-radius: 0 4px 4px 0;
}

.form-radio ul label {
    display: block;
    cursor: pointer;
    padding: 9px 3px;
    text-align: center;
    color: #cac9c9;
    background: #f9f8f8;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06) inset;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06) inset;
}

.form-radio ul label.jcf-label-active {
    color: #ffffff;
    background: #8d8f91;
}

.form-radio input[type=radio],
.form-radio .jcf-radio {
    top: 0;
    left: 0;
    border: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 0;
    position: absolute;
    background: url(../../images/none.gif);
}

.form-radio .jcf-radio span {
    display: none !important;
    background: url(../../images/none.gif);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-radio .jcf-radio.jcf-checked span span {
    top: -9999px;
    left: -9999px;
    display: none;
}

.form-radio.alt {
    max-width: 300px;
}

/* table-detail */
.table-section {
    padding-bottom: 234px !important;
}

.table-detail {
    border-collapse: collapse;
}

.table-detail thead > tr > th {
    padding: 5px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    background: #a2a9ae;
    vertical-align: middle;
}

.table-detail thead > tr > th:first-child {
    border-radius: 3px 0 0;
}

.table-detail thead > tr > th:last-child {
    border-radius: 0 3px 0 0;
}

.table-detail tbody > tr {
    background: #fdfdfd;
}

.table-detail tbody > tr.even {
    background: #ebeaea;
}

.table-detail tbody > tr > td {
    color: #5b5a5a;
    padding: 11px 5px;
    text-align: center;
    vertical-align: top;
    font: 14px/17px Verdana, 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.table-detail tbody > tr > td,
.table-detail thead > tr > td,
.table-detail tbody > tr > th,
.table-detail thead > tr > th {
    border: #f7f5f5 solid;
    border-width: 0 0 0 1px;
}

.table-detail tbody > tr > td:first-child,
.table-detail thead > tr > td:first-child,
.table-detail tbody > tr > th:first-child,
.table-detail thead > tr > th:first-child {
    border-width: 0;
}

.table-detail .col1 {
    width: 16.5%;
}

.table-detail .col2 {
    width: 17.1%;
}

.table-detail .col3 {
    width: 16.5%;
}

.table-detail .col4 {
    width: 17.1%;
}

.table-detail .col5 {
    width: 16.4%;
}

.table-detail .icon-pdf {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: auto;
}

.table-detail .icon-pdf img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.table-detail .tooltip-button,
.table-detail .text {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
}

.table-detail.alt {
    margin: 9px 0;
}

.table-detail.alt .col1 {
    width: 19.8%;
}

.table-detail.alt .col2 {
    width: 26%;
}

.table-detail.alt .col3 {
    width: 17.2%;
}

.table-detail.alt .col4 {
    width: 20.6%;
}

.table-detail.alt .col5 {
    width: 16.4%;
}

/* modal  */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.2);
}

.modal .modal-content {
    padding: 19px 19px;
    border-radius: 5px;
    border: #e8e8e8 solid 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.modal .modal-footer,
.modal .modal-header {
    border-width: 0;
    padding: 0 0 21px;
}

.modal .modal-footer {
    margin: 0;
    padding: 0;
    text-align: center;
}

.modal .modal-footer .btn {
    margin: 0 5px;
}

.modal .modal-footer .btn + .btn {
    margin: 0 5px;
}

.modal .title {
    color: #58595b;
    display: block;
    font-size: 18px;
    line-height: 22px;
}

.modal .modal-body {
    color: #58595b;
    padding: 0 0 10px;
}

.modal .info-holder {
    padding: 0 0 28px;
}

.modal .info-holder:before,
.modal .info-holder:after {
    content: " ";
    display: table;
}

.modal .info-holder:after {
    clear: both;
}

.modal .info-holder:before,
.modal .info-holder:after {
    content: " ";
    display: table;
}

.modal .info-holder:after {
    clear: both;
}

.modal .img-holder {
    float: left;
    width: 200px;
    margin: 3px 30px 0 0;
}

.modal .img-holder a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    border: #ebeced solid 1px;
}

.modal .img-holder a:hover {
    border-color: #b5b9bd;
}

.modal .img-holder img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.modal .info-block {
    color: #58595b;
    overflow: hidden;
}

.modal .sub-title {
    color: #58595b;
    display: block;
    margin: 0 0 21px;
    font-size: 16px;
    line-height: 20px;
}

.modal .meta {
    padding: 0 0 20px;
}

.modal .meta:before,
.modal .meta:after {
    content: " ";
    display: table;
}

.modal .meta:after {
    clear: both;
}

.modal .meta:before,
.modal .meta:after {
    content: " ";
    display: table;
}

.modal .meta:after {
    clear: both;
}

.modal .applicant {
    display: inline-block;
    vertical-align: top;
    margin: 3px 29px 0 0;
}

.modal .applicant a {
    color: #58595b;
    text-decoration: none;
}

.modal .applicant a:hover {
    color: #0d0d0d;
    text-decoration: none;
}

.modal .rating {
    float: none;
    display: inline-block;
    vertical-align: top;
}

.modal .rating li {
    font-size: 18px;
    margin: 0 -7px 0 0;
}

.modal .booking-detail {
    margin: 0 0 22px;
}

.modal .booking-detail:before,
.modal .booking-detail:after {
    content: " ";
    display: table;
}

.modal .booking-detail:after {
    clear: both;
}

.modal .booking-detail:before,
.modal .booking-detail:after {
    content: " ";
    display: table;
}

.modal .booking-detail:after {
    clear: both;
}

.modal .booking-detail li {
    padding: 0;
    display: inline-block;
    vertical-align: top;
    font-weight: 700;
    margin: 0 14px 0 0;
}

.modal .booking-detail time {
    font-weight: 400;
}

.modal .price-holder {
    position: relative;
}

.modal .price-holder .sub-title {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    font-weight: 700;
    margin: 4px 16px 0 15px;
}

.modal .price {
    display: inline-block;
    vertical-align: top;
    font-size: 36px;
    line-height: 40px;
}

.modal .booking-duration {
    display: block;
    margin: 0 0 37px;
}

.modal .normal-text {
    font-weight: 400;
}

.modal .form-message {
    margin: 0;
    border-width: 0;
    padding: 0 0 9px;
}

.modal .jcf-textarea textarea {
    height: 128px;
    min-height: 128px;
}

.modal .btn {
    margin: 0 5px;
    min-width: 150px;
    padding: 7px 5px;
    text-align: center;
    text-transform: none;
}

.modal .agree {
    max-width: 282px;
    margin: 26px auto 0;
}

.modal .agree:before,
.modal .agree:after {
    content: " ";
    display: table;
}

.modal .agree:after {
    clear: both;
}

.modal .agree:before,
.modal .agree:after {
    content: " ";
    display: table;
}

.modal .agree:after {
    clear: both;
}

.modal .jcf-checkbox {
    float: left;
    margin: 0 5px 0 0;
}

.modal .label {
    color: #58595b;
    display: block;
    overflow: hidden;
}

.modal .label a {
    color: #4c6dc8;
    text-decoration: none;
}

.modal .label a:hover {
    text-decoration: none;
    color: #294185;
}

.modal .close {
    padding: 0;
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-weight: 700;
    color: #c6ccd2;
    font-size: 20px;
    line-height: 20px;
    border: #c6ccd2 solid 2px;
}

.modal .close:hover {
    color: #8d99a5;
    border-color: #8d99a5;
}

.modal .close > span {
    display: block;
    line-height: 20px;
    text-align: center;
}

/* user-rating */
.user-rating {
    color: #58595b;
    position: relative;
    border-radius: 3px;
    margin: -20px 0 42px;
    padding: 13px 15px 11px 21px;
    background: #effeb9;
    border: #98c700 solid 1px;
    -webkit-box-shadow: 1px 1px 4px 1px rgba(255, 255, 255, 0.35) inset;
    box-shadow: 1px 1px 4px 1px rgba(255, 255, 255, 0.35) inset;
}

.user-rating .area {
    overflow: hidden;
}

.user-rating .rating-area {
    padding: 10px;
    display: none;
    margin: 15px 0 0;
    overflow: hidden;
    border-radius: 5px;
    min-height: 150px;
    border: #98c700 solid 1px;
    background: #f7ffdc;
}

.user-rating.active .rating-area {
    display: block;
}

.user-rating .link {
    float: right;
    color: #58595b;
    line-height: 22px;
    margin: 0 0 0 10px;
    text-decoration: none;
}

.user-rating .link:hover {
    color: #262627;
}

.user-rating p {
    margin: 0;
    overflow: hidden;
}

/* plus-sign */
.plus-sign {
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 22px;
    font-size: 0;
    line-height: 0;
    -webkit-transition: none;
    transition: none;
    margin: 0 0 0 4px;
    border-radius: 100%;
    background: url(../../images/icons.png) no-repeat 0 -27px;
}

/* ui-datepicker-div */
#ui-datepicker-div {
    width: 260px;
    padding: 10px;
    top: -9999px;
    left: -9999px;
    position: absolute;
    border-radius: 5px;
    background: #ffffff;
    z-index: 150 !important;
    border: #e6e6e6 solid 1px;
}

#ui-datepicker-div .ui-datepicker-header {
    overflow: hidden;
    margin: 0 0 5px;
    text-align: center;
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all {
    width: 24px;
    height: 24px;
    color: #ffffff;
    border-radius: 2px;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    background: #c6ccd2;
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all:hover {
    cursor: pointer;
    background: #9ba6b0;
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all:after {
    display: block;
    font-family: 'fontello';
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all span {
    top: 0;
    left: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
    float: left;
    margin: 0 5px 0 0;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:after {
    content: '\e808';
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
    float: right;
    margin: 0 0 0 5px;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:after {
    content: '\e807';
}

#ui-datepicker-div .ui-datepicker-title {
    overflow: hidden;
    font-size: 15px;
    line-height: 24px;
    text-transform: uppercase;
}

.ui-datepicker-calendar {
    margin: 0;
    width: 100%;
    border-collapse: collapse;
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
    text-align: center;
    vertical-align: middle;
}

.ui-datepicker-calendar .ui-state-default {
    padding: 5px;
    display: block;
    border-radius: 2px;
    color: #3f3f3f;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}

.ui-datepicker-calendar .ui-state-default.ui-state-hover {
    color: #ffffff;
    background: #9ba6b0;
}

.ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
    color: #ffffff;
    background: #9ba6b0;
}

/* ---------------------------------------------------------
	4. Custom form styles
---------------------------------------------------------*/
/* custom checkbox styles */
.jcf-checkbox {
    width: 16px;
    height: 16px;
    cursor: default;
    overflow: hidden;
    position: relative;
    border-radius: 1px;
    margin: -2px 5px 0 0;
    border: 1px solid #d3d3d3;
    display: inline-block;
    vertical-align: middle;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
    background: #f9f9f9;
    background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f9f9f9), to(#ebebeb));
    background-image: -webkit-linear-gradient(top, #f9f9f9, 0%, #ebebeb, 100%);
    background-image: -moz-linear-gradient(top, #f9f9f9 0%, #ebebeb 100%);
    background-image: linear-gradient(to bottom, #f9f9f9 0%, #ebebeb 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str(@start-color)}', endColorstr='#{ie-hex-str(@end-color)}', GradientType=0);
    filter: none;
}

.jcf-checkbox span {
    opacity: 0;
    filter: alpha(opacity=0);
    display: block;
    width: 12px;
    height: 10px;
    margin: 3px 0 0 1px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    background: url(../../images/sprite-icons.png) no-repeat -61px 0;
}

.jcf-checkbox input[type="checkbox"] {
    top: 0;
    left: 0;
    margin: 0;
    border: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.jcf-checkbox.jcf-checked span {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* custom radio styles */
.jcf-radio {
    width: 16px;
    height: 16px;
    cursor: default;
    overflow: hidden;
    margin: 0 3px 0 0;
    position: relative;
    background: #d7d7d7;
    border-radius: 100%;
    border: 1px solid #bcbcbc;
    display: inline-block;
    vertical-align: middle;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
}

.jcf-radio span {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    display: none;
    position: absolute;
    background: #656565;
    border-radius: 100%;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
}

.jcf-radio input[type="radio"] {
    top: 0;
    left: 0;
    border: 0;
    margin: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    position: absolute;
}

.jcf-radio.jcf-checked span {
    display: block;
}

/* custom select styles */
.jcf-select {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 36px;
    background: #ffffff;
    position: relative;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
}

.error .jcf-select {
    border-color: #c53f4e;
}

.jcf-select.jcf-focus {
    border-color: #c6ccd2;
}

.jcf-select.jcf-focus .jcf-select-opener {
    color: #8e9aa6;
    border-left-color: #c6ccd2;
}

.jcf-select.jcf-focus .jcf-select-text {
    color: #c6ccd2;
}

.jcf-select select {
    top: 0;
    left: 0;
    z-index: 1;
}

.jcf-select .jcf-select-text {
    display: block;
    cursor: default;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 26px;
    margin: 4px 42px 0 5px;
    color: #c6ccd2;
}

.jcf-select.jcf-select-dark-color .jcf-select-text {
    color: #58595b;
}

.jcf-select .jcf-select-opener {
    top: 0;
    right: 0;
    bottom: 0;
    width: 39px;
    cursor: pointer;
    text-align: center;
    position: absolute;
    color: #c7cdd3;
    background: #ffffff;
    border-radius: 0 5px 5px 0;
    border: solid #dedede;
    border-width: 0 0 0 1px;
}

.jcf-select .jcf-select-opener:hover {
    color: #8e9aa6;
}

.jcf-select .jcf-select-opener:after {
    display: block;
    content: '\e809';
    cursor: pointer;
    text-align: center;
    font: 16px/36px 'fontello';
}

.jcf-select .jcf-select-drop {
    top: 100%;
    left: -1px;
    right: -1px;
    z-index: 9999;
    margin-top: 0;
    position: absolute;
}

.jcf-select .jcf-drop-flipped {
    top: auto;
    bottom: 100%;
}

.jcf-select-no-arrow .jcf-list .jcf-option:after {
    display: none;
}

body > .jcf-select-drop {
    z-index: 9999;
    margin: -1px 0 0;
    position: absolute;
}

body > .jcf-select-drop.jcf-drop-flipped {
    margin: 1px 0 0;
}

.jcf-select-drop .jcf-select-drop-content {
    border: 1px solid #e6e6e6;
}

/* multiple select styles */
.jcf-list-box {
    margin: 0 15px;
    overflow: hidden;
    min-width: 200px;
    display: inline-block;
    border: 1px solid #58595b;
}

/* select options styles */
.jcf-list {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    position: relative;
    background: #f7f7f7;
    font-size: 14px;
    line-height: 17px;
}

.jcf-list .jcf-list-content {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    overflow: auto;
}

.jcf-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jcf-list ul li {
    display: block;
    overflow: hidden;
}

.jcf-list ul li + li {
    border-top: solid 1px #ffffff;
}

.jcf-list .jcf-overflow {
    overflow: auto;
}

.jcf-list .jcf-option {
    height: 1%;
    color: #58595b;
    display: block;
    cursor: default;
    overflow: hidden;
    position: relative;
    padding: 9px 38px 9px 19px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.jcf-list .jcf-option:after {
    top: 50%;
    opacity: 0;
    right: 10px;
    content: '→';
    height: 35px;
    margin: -20px 0 0;
    color: #f7f7f7;
    position: absolute;
    font-size: 20px;
    line-height: 35px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.jcf-list .jcf-option.jcf-hover {
    color: #ffffff;
    background: #7a7a7a;
}

.jcf-list .jcf-option.jcf-hover:after {
    opacity: 1;
}

.jcf-list .jcf-disabled {
    background: #ffffff !important;
    color: #ccc !important;
}

.jcf-list .jcf-optgroup-caption {
    color: #000000;
    display: block;
    cursor: default;
    padding: 5px 9px;
    font-weight: bold;
    white-space: nowrap;
}

.jcf-list .jcf-optgroup .jcf-option {
    padding-left: 30px;
}

.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
    color: #000000;
    background: #e6e6e6;
}

/* custom textarea styles */
.jcf-textarea {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border: #e6e6e6 solid 1px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.error .jcf-textarea {
    border-color: #c53f4e;
}

.jcf-textarea.jcf-focus {
    border-color: #c6ccd2;
}

.jcf-textarea .jcf-scrollbar-horizontal {
    height: 0;
    display: none;
}

.jcf-textarea textarea {
    margin: 0;
    border: none;
    width: 100% !important;
    padding: 5px 36px 5px 5px;
}

.jcf-textarea textarea::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.jcf-textarea textarea:-ms-input-placeholder {
    color: #c6ccd2;
}

.jcf-textarea textarea::-webkit-input-placeholder {
    color: #c6ccd2;
}

.jcf-textarea textarea:focus::-moz-placeholder {
    color: #c6ccd2;
    opacity: 1;
}

.jcf-textarea textarea:focus:-ms-input-placeholder {
    color: #c6ccd2;
}

.jcf-textarea textarea:focus::-webkit-input-placeholder {
    color: #c6ccd2;
}

.jcf-textarea .jcf-resize {
    bottom: 0;
    right: 0;
    display: none;
    text-indent: 1px;
    cursor: se-resize;
    width: 0;
    height: 0;
    font-weight: bold;
    position: absolute;
    text-align: center;
    font-size: 12px;
    line-height: 15px;
    background: #dfe3e6;
}

.jcf-textarea .jcf-resize:before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    margin: 4px 0 0 3px;
    border: 1px solid #000000;
    border-width: 0 1px 1px 0;
}

/* custom file input styles */
.jcf-file {
    overflow: hidden;
    border-radius: 5px;
    background: #ffffff;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    border: #e6e6e6 solid 1px;
}

.jcf-file.jcf-focus {
    border-color: #c6ccd2;
}

.jcf-file .jcf-real-element {
    top: 0;
    right: 0;
    margin: 0;
    height: 200px;
    cursor: pointer;
    font-size: 200px;
    position: absolute;
}

.jcf-file .jcf-fake-input {
    display: inline-block;
    vertical-align: top;
    color: #58595b;
    padding: 0 5px;
    overflow: hidden;
    width: 232px;
    height: 34px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 34px;
}

.jcf-file .jcf-upload-button {
    display: inline-block;
    vertical-align: top;
    color: #ffffff;
    padding: 0 10px;
    overflow: hidden;
    width: 98px;
    height: 34px;
    line-height: 34px;
    margin: 0 0 0 -1px;
    white-space: nowrap;
    text-align: center;
    background: #c6ccd2;
    border-radius: 0 4px 4px 0;
}

/* custom scrollbars styles */
.jcf-scrollable-wrapper {
    position: relative;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.jcf-scrollbar-vertical {
    top: 0;
    right: 0;
    bottom: 0;
    width: 25px;
    cursor: default;
    position: absolute;
    background: #b8b8b8;
}

.jcf-scrollbar-vertical .jcf-scrollbar-dec,
.jcf-scrollbar-vertical .jcf-scrollbar-inc {
    top: 0;
    left: 0;
    width: 25px;
    height: 16px;
    background: #b8b8b8;
}

.jcf-scrollbar-vertical .jcf-scrollbar-inc {
    top: auto;
    bottom: 0;
}

.jcf-scrollbar-vertical .jcf-scrollbar-handle {
    left: 50%;
    width: 8px;
    height: 1px;
    display: block;
    border-radius: 5px;
    position: relative;
    margin: 0 0 0 -4px;
    background: #7a7a7a;
}

.jcf-scrollbar-vertical .jcf-scrollbar-slider {
    width: 8px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border-radius: 20px;
}

.jcf-scrollbar-horizontal {
    left: 0;
    top: auto;
    bottom: 0;
    right: auto;
    width: 14px;
    height: 1px;
    position: absolute;
    background: #b8b8b8;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-dec,
.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
    display: inline-block;
    vertical-align: top;
    width: 14px;
    height: 14px;
    overflow: hidden;
    background: #333435;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
    right: 0;
    left: auto;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-slider {
    height: 14px;
    position: relative;
    display: inline-block;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-handle {
    height: 14px;
    background: #58595b;
    position: absolute;
}

.jcf-scrollbar.jcf-inactive .jcf-scrollbar-handle {
    visibility: hidden;
}

.jcf-scrollbar.jcf-inactive .jcf-scrollbar-dec,
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-inc {
    background: #e3e3e3;
}

/* custom number input styles */
.jcf-number {
    height: 36px;
    display: block;
    position: relative;
}

.jcf-number:after {
    top: 1px;
    width: 1px;
    bottom: 1px;
    right: 22px;
    content: '';
    position: absolute;
    background: #dedede;
}

.jcf-number input {
    -moz-appearance: textfield;
}

.jcf-number input::-webkit-inner-spin-button,
.jcf-number input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.jcf-number input {
    margin: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    height: 36px;
    border-radius: 5px;
    padding: 3px 27px 3px 5px;
    border: 1px solid #e6e6e6;
}

.jcf-number input:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.jcf-number .input-placeholder-text {
    padding: 0 27px 0 10px;
}

.error .jcf-number input {
    border-color: #c53f4e;
}

.jcf-number.jcf-focus input {
    border-color: #c6ccd2;
}

.jcf-number .jcf-btn-dec,
.jcf-number .jcf-btn-inc {
    top: 1px;
    right: 1px;
    z-index: 3;
    width: 23px;
    height: 50%;
    cursor: pointer;
    background: none;
    position: absolute;
    text-align: center;
    border-radius: 0 5px 0 0;
}

.jcf-number .jcf-btn-dec:before,
.jcf-number .jcf-btn-inc:before {
    display: block;
    content: '\e814';
    color: #c7cdd3;
    font: 17px/18px "fontello";
}

.jcf-number .jcf-btn-dec:hover,
.jcf-number .jcf-btn-inc:hover {
    background: none;
}

.jcf-number .jcf-btn-dec:hover:before,
.jcf-number .jcf-btn-inc:hover:before {
    color: #5b6773;
}

.jcf-number .jcf-btn-dec {
    top: auto;
    bottom: 1px;
    z-index: 2;
    border-radius: 0 0 5px 0;
}

.jcf-number .jcf-btn-dec:before {
    content: '\e809';
    line-height: 17px;
}

.jcf-number.jcf-disabled .jcf-btn-inc:hover,
.jcf-number.jcf-disabled .jcf-btn-dec:hover {
    background: #aaa;
}

.jcf-number.jcf-disabled input {
    background: #ddd;
}

.jcf-number.jcf-disabled .jcf-btn-dec:before,
.jcf-number.jcf-disabled .jcf-btn-inc:before,
.jcf-number .jcf-btn-dec.jcf-disabled:before,
.jcf-number .jcf-btn-inc.jcf-disabled:before {
    opacity: 0.3;
}

.jcf-number.jcf-disabled input {
    background: #ddd;
}

/* months-list */
.jcf-select-months-list .jcf-list {
    font-size: 11px;
}

.jcf-select-months-list .jcf-list .jcf-option {
    padding: 9px 10px 9px 12px;
}

.no-border {
    border-width: 0;
}

.infobox-wrapper {
    display: none;
}

/* //abe-- FullCalendar v2.3.0 Stylesheet */

.jcf-holder {
    position: relative;
}

.jcf-holder .ending {
    position: absolute;
    top: 8px;
    left: 53%;
    z-index: 1;
}

.selection-area .col {
    display: none;
}

.selection-area .col:first-child {
    display: block;
}

.selection-area .tab {
    display: none;
}

.selection-area .jcf-scrollable,
.selection-area .jcf-scrollable-wrapper {
    height: 100% !important;
    max-height: 269px;
}

.jcf-scrollable-wrapper {
    width: 100% !important;
}

.calendar-box .fc-scroller,
.calendar-box .fc-row {
    height: auto !important;
}

/* star rating styles */
.rating.star-rating {
    width: 150px;
    height: 24px;
    position: relative;
    background: url(../../images/stars.png) repeat-x;
}

.rating.star-rating li {
    width: 24px;
    height: 24px;
    float: left;
    margin: 0 0 0 7px;
}

.rating.star-rating li:first-child {
    margin-left: 0;
}

.rating.star-rating li a {
    top: 0;
    width: 31px;
    height: 24px;
    text-decoration: none;
    text-indent: -9000px;
    z-index: 2;
    position: absolute;
    padding: 0;
    -webkit-transition: none;
    transition: none;
}

.rating.star-rating li.setted a,
.rating.star-rating li.active a,
.rating.star-rating li a:hover {
    background: url(../../images/stars.png) 0 100%;
    z-index: 1;
    left: 0;
}

.rating.star-rating a.one-star {
    left: 0;
}

.rating.star-rating a.one-star:hover,
.rating.star-rating li.active a.one-star,
.rating.star-rating li.setted a.one-star {
    width: 24px;
}

.rating.star-rating a.two-stars {
    left: 31px;
}

.rating.star-rating a.two-stars:hover,
.rating.star-rating li.active a.two-stars,
.rating.star-rating li.setted a.two-stars {
    width: 62px;
}

.rating.star-rating a.three-stars {
    left: 62px;
}

.rating.star-rating a.three-stars:hover,
.rating.star-rating li.active a.three-stars,
.rating.star-rating li.setted a.three-stars {
    width: 93px;
}

.rating.star-rating a.four-stars {
    left: 93px;
}

.rating.star-rating a.four-stars:hover,
.rating.star-rating li.active a.four-stars,
.rating.star-rating li.setted a.four-stars {
    width: 124px;
}

.rating.star-rating a.five-stars {
    left: 124px;
}

.rating.star-rating a.five-stars:hover,
.rating.star-rating li.active a.five-stars,
.rating.star-rating li.setted a.five-stars {
    width: 150px;
}

/* ---------------------------------------------------------
	5. Styles for Responsive web design
---------------------------------------------------------*/
/* styles for screens 1200px wide and larger */
@media screen and (max-width: 1230px) {
    .container {
        width: auto;
    }

    .topbar ul {
        margin: 0;
    }

    .navbar-default .navbar-header {
        margin: 8px 10px 0 0;
    }

    .navbar-default .navbar-collapse {
        margin: 0;
    }

    .navbar-default .navbar-nav > li {
        margin: 0 0 0 15px;
    }

    #footer p {
        margin: 0;
    }

    #footer .by {
        margin: 0;
    }

    .breadcrumb {
        padding: 0 10px;
        margin: 10px 0;
    }

    .form-category .form-holder .col {
        width: 100%;
    }

    .form-category .input-append {
        padding-right: 30px;
    }

    .form-category .form-holder .col.time {
        width: 37% !important;
        margin: 0 0 0;
    }

    .form-category .form-holder .col.time .col {
        padding-right: 0;
    }

    .form-category .form-holder .col.location {
        width: auto;
        /*margin: 10px 0 0;*/
    }

    .form-category .form-holder .col.location .form-control {
        padding: 10px 12px;
    }

    .form-category .sub-holder {
        margin: 0;
    }

    .tab-holder h3 {
        margin: 0 0 10px;
    }

    .twocolumns.alt #sidebar .holder,
    #content .content-holder,
    #sidebar .holder,
    .profile-detail,
    .nav-pagination {
        margin: 0;
    }

    .form-payment .form-holder .col,
    .form-verification .col {
        padding: 0;
        width: 100% !important;
    }

    .form-payment .form-holder .col + .col,
    .form-verification .col + .col {
        margin: 10px 0 0;
    }

    .form-payment .form-holder .col.cvv .tooltip-button {
        right: auto;
        bottom: auto;
        margin: 0 0 0 10px;
        position: relative;
    }

    .form-payment .form-holder .col.cvv .field-holder {
        padding: 0;
    }

    .form-payment + .btns-area {
        margin: 0 auto 30px;
    }

    .similar-ads .btn-default {
        padding: 5px 20px;
    }

    .listing-section .head {
        margin: 0 0 30px;
    }

    .main-tabs > div[role="tabpanel"] {
        margin: 0;
    }

    .main-tabs .nav-tabs > li > a {
        min-width: inherit;
        padding: 12px 10px;
    }

    .main-tabs .listing-post .certified .icon-ok {
        margin: 0 7px 0 0;
        vertical-align: middle;
    }

    .form-switchers {
        float: none;
        padding: 0 0 10px;
    }

    .form-area {
        width: 70%;
    }

    .form-area .file-selection .uploader {
        float: none;
        margin: 0 0 10px;
    }

    .form-area .features-area .jcf-checkbox {
        margin: 0 5px 0 0;
    }

    .form-area .field-row.columns .col {
        width: 100% !important;
    }

    .form-area .field-row.columns .col + .col {
        margin: 10px 0 0;
    }

    .form-area .field-row.booking,
    .form-area .field-row.type {
        max-width: none;
    }

    .form-area .block2 .col + .col {
        margin: 10px 0 0;
    }

    .form-area .block2 .cell,
    .form-area .block2 .zip,
    .form-area .block2 .city,
    .form-area .block2 .country {
        width: 100%;
    }

    .form-area .form-selection .col {
        width: 50% !important;
        padding: 0 5px 10px !important;
    }

    .form-area .form-selection .col:last-child {
        width: 100% !important;
    }

    .form-area .contact-info .column,
    .form-area .about-info .column,
    .form-area .payment-info .column {
        float: none;
        width: auto;
        padding: 20px 10px;
        height: auto !important;
    }

    .form-area .contact-info .column + .column,
    .form-area .about-info .column + .column,
    .form-area .payment-info .column + .column {
        float: none;
        margin: 20px 0 0;
    }

    .form-area .about-info .uploader + p {
        max-width: none;
        margin: 0 0 20px;
    }

    .form-area .about-info .from {
        max-width: none;
    }

    .form-area .message-area .btn-translate {
        margin: 0 30px 0 0;
    }

    .form-area .message-area .nav-tabs > li > a {
        padding: 12px 10px 8px;
    }

    .form-area #presentation .nav-tabs > li > a {
        padding: 12px 10px 8px;
    }

    .tabs-aside {
        width: 28%;
    }

    .date-selection .col {
        width: 100%;
    }

    .date-selection .col + .col {
        margin: 10px 0 0;
    }

    .discount-list li {
        padding: 0;
        display: block;
    }

    .discount-list li + li {
        margin: 10px 0 0;
    }

    .discount-list .label {
        float: left;
        padding: 7px 10px 0 0;
    }

    .discount-list .field-holder {
        width: auto;
        display: block;
        overflow: hidden;
    }

    .price-section .label {
        float: none;
        display: block;
        padding: 0 0 5px;
    }

    .price-section .column + .column .price-info li {
        float: none;
    }

    .price-section .column + .column .price-info li + li {
        float: none;
    }

    .price-section .price-area .col {
        width: 100%;
    }

    .price-section .price-area .col + .col {
        width: 100%;
        margin: 10px 0 0;
    }

    .price-section .price-area .title {
        min-width: 40px;
    }

    .postarea {
        margin: 0;
    }

    .postarea.alt {
        margin: 0;
    }

    .postarea.alt .post-area {
        float: none;
        width: auto;
        margin: 0 0 10px;
    }

    .postarea.alt .posts-holder .footer {
        text-align: left;
    }

    .postarea.alt .posts-holder .footer .btn {
        min-width: 200px;
        display: inline-block;
    }

    .postarea.alt .posts-holder .footer .btn.btn-default {
        min-width: 200px;
    }

    .postarea .price {
        text-align: left;
    }

    .postarea.alt2 .post-area {
        width: 73.6%;
        margin: 0 20px 0 0;
    }

    .postarea.alt2 .booking-detail ul {
        width: 100%;
    }

    .postarea.alt2 .price {
        text-align: right;
        margin: 0 0 10px;
    }

    .postarea.alt2 .booking-duration {
        margin: 0 0 10px;
    }

    .postarea.alt3 .post-area {
        width: 77%;
        margin: 0 20px 0 0;
    }

    .postarea.alt3 .booking-detail ul {
        float: none;
        width: auto;
    }

    .postarea.alt3 .price {
        margin: 0 0 10px;
        text-align: right;
    }

    .location-holder {
        margin: 0 auto 20px;
    }

    .form-ad-detail .listing-detail {
        right: auto;
    }

    .form-radio {
        left: auto;
        margin: 0 auto 10px;
    }

    .currency-converter.white .select-holder {
        width: 100%;
        margin: 0 0 5px;
    }

    .currency-converter.white .col {
        clear: both;
        position: relative;
    }

    .currency-converter.white .field-holder {
        width: 42% !important;
    }

    .currency-converter.white .field-holder:last-child {
        float: right;
    }

    .currency-converter.white .ico.resizer {
        top: 0;
        left: 50%;
        position: absolute;
        margin: 0 0 0 -11px;
    }

    .listing-post .post-info {
        min-height: 150px;
    }

    .listing-post .area {
        padding: 1px 10px 10px;
    }

    .listing-post .rating li {
        font-size: 12px;
        margin: 0 -5px 0 0;
    }

    .listing-post .certified {
        font-size: 12px;
        margin: 3px 0 0;
    }

    .listing-post .info-btns {
        top: 30px;
        bottom: auto;
    }

    .listing-post .info-btns li.select-holder,
    .listing-post .info-btns li {
        width: 33.333%;
    }
}

/* styles for screens with width from 992px to 1024px */
@media screen and (max-width: 1024px) {
    .home-page .form-category .multiselect .btn-group, .home-page .form-category .multiselect .btn-default {
        width: 157px;
    }

    .home-page .form-category .field-holder {
        width: 220px;
    }

    .form-category .field-holder {
        width: 157px;
    }

    .form-category .form-holder .col.location .field-holder {
        width: 157px;
    }

    .form-category .form-holder input.btn-default {
        width: 110px;
    }

    .form-category .input-append {
        width: 124px;
    }
}

/* styles for screens with width from 992px to 1200px */
@media screen and (max-width: 992px) {
    #header {
        padding: 0 0 13px;
    }

    .topbar {
        padding: 9px 0;
        margin: 0 0 16px;
    }

    .navbar-default .navbar-collapse {
        float: none;
        clear: both;
    }

    .navbar-default .navbar-nav {
        clear: both;
        float: none;
        padding: 16px 0 0;
        text-align: center;
        margin: 16px 0 0 -10px;
        border-top: solid 1px #e6e6e6;
    }

    .navbar-default .navbar-nav > li {
        display: inline-block;
        vertical-align: top;
        float: none;
        margin: 0 10px;
    }

    .navbar-default .btn {
        font-size: 11px;
        padding: 10px 15px;
        margin: -89px 0 0 29px;
    }

    .form-category .form-holder {
        padding: 15px 19px 15px;
    }

    .form-category .form-holder .col {
        width: 100%;
        margin: 0 0 0;
    }

    .form-category .form-holder .col.time,
    .form-category .form-holder .col.location {
        width: auto;
        margin: 0 10px 10px !important;
    }

    .form-category .form-holder .col.time .title {
        width: 71px;
    }

    .form-category .form-holder .col.time .time-fields .form-control {
        width: 75% !important;
    }

    .form-category .form-holder .col.time .time-fields.col {
        margin-top: 0 !important;
    }

    .form-category .form-holder .btn-default {
        width: 100%;
    }

    .form-category .selection-holder {
        clear: both;
        float: none;
        width: auto;
        margin: 0 -5px 10px;
    }

    .form-category .selection-holder:before,
    .form-category .selection-holder:after {
        content: " ";
        display: table;
    }

    .form-category .selection-holder:after {
        clear: both;
    }

    .form-category .selection-holder:before,
    .form-category .selection-holder:after {
        content: " ";
        display: table;
    }

    .form-category .selection-holder:after {
        clear: both;
    }

    .form-category .selection-holder .select-holder {
        padding: 0 5px;
    }

    .range-area {
        width: 100%;
        padding: 0 0 10px;
    }

    .range-area .title {
        float: none;
        display: block;
        margin: 0 0 18px;
    }

    .range-holder {
        padding: 0 0 0 15px;
    }

    .range-holder:first-child {
        padding: 0 15px 0 0;
    }

    .range-holder .range-box {
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .range-holder .range-price {
        padding: 0 8px 0 4px;
    }

    .range-bar {
        margin: 0 0 0 10px;
        padding: 6px 0 15px;
    }

    .range-bar:after {
        right: 5px;
    }

    .listing-post .info-btns {
        float: left;
        width: 100%;
        position: static;
        margin: 0;
        overflow: hidden;
        background: #ffffff;
        padding: 0 20px 20px;
        border-radius: 0 0 5px 5px;
    }

    .listing-post .info-btns li {
        width: 50%;
        margin: 5px 0 0;
        padding: 0 0 0 3px;
    }

    .listing-post .info-btns li:first-child {
        padding: 0 3px 0 0;
    }

    .listing-post .info-btns li.select-holder {
        padding: 0;
        width: 100%;
    }

    .listing-post.small .rating li {
        font-size: 12px;
        margin: 0 -5px 0 0;
    }

    .popup-holder {
        margin: -16px 0 0 -11px;
    }

    .popup-holder .open {
        margin: 0 0 0 -9px;
    }

    .popup-holder .popup {
        width: 200px;
        margin: 0 0 10px -100px;
    }

    .form-listing-info textarea {
        height: 100px;
    }

    .form-selection h2 {
        margin: 0 0 10px;
    }

    .file-selection .detail p br {
        display: none;
    }

    .tab-holder .column,
    .form-inquiry .column {
        padding: 0 0 0 10px;
    }

    .tab-holder .column:first-child,
    .form-inquiry .column:first-child {
        padding: 0 10px 0 0;
    }

    .tab-holder .column:before {
        margin: 0 0 0 -10px;
    }

    .currency-converter .select-holder {
        width: 100px;
    }

    .currency-converter .col .field-holder:first-child,
    .currency-converter .col .field-holder {
        width: 41.2%;
    }

    .form-verification {
        padding: 18px 20px;
    }

    .form-payment .label {
        margin: 0 0 5px;
    }

    .card-type li {
        margin: 0;
    }

    .tooltip {
        width: 194px;
    }

    .tooltip.left {
        width: 194px;
    }

    .tooltip.left .tooltip-inner {
        margin: 0;
    }

    .main-tabs .listing-post h2 {
        margin: 0 0 5px;
    }

    .main-tabs .listing-post .certified {
        float: none;
        display: block;
    }

    .main-tabs .listing-post .certified .icon-ok {
        margin: 0 7px 0 0;
        vertical-align: middle;
    }

    .main-tabs .listing-post .rating {
        margin: 0;
        float: none;
    }

    .main-tabs .listing-post .rating li {
        margin: 0 -8px 0 0;
    }

    .form-area .features-area .features-list {
        margin: 0 0 10px;
        width: 50% !important;
    }

    .form-area .features-area .features-list:last-child {
        float: left;
        clear: both;
    }

    .form-area .features-area .features-list li + li {
        margin: 10px 0 0;
    }

    .postarea .posts-holder .post {
        padding: 10px;
    }

    .postarea .posts-holder .img-holder {
        width: 140px;
    }

    .postarea .posts-holder p {
        margin: 0 0 10px;
    }

    .postarea .posts-holder .meta p {
        margin: 0 10px 0 0;
    }

    .postarea.alt .posts-holder .img-holder {
        float: none;
        margin: 0 auto 10px;
    }

    .postarea.alt h2 {
        float: none;
        text-align: center;
    }

    .postarea .booking-info {
        float: none;
        display: block;
        margin: 0 0 5px;
        text-align: center;
    }

    .postarea .booking-duration {
        margin: 0;
        text-align: left;
    }

    .postarea .booking-detail ul {
        float: none;
        width: auto;
    }

    .postarea .booking-detail ul:before,
    .postarea .booking-detail ul:after {
        content: " ";
        display: table;
    }

    .postarea .booking-detail ul:after {
        clear: both;
    }

    .postarea .booking-detail ul:before,
    .postarea .booking-detail ul:after {
        content: " ";
        display: table;
    }

    .postarea .booking-detail ul:after {
        clear: both;
    }

    .postarea .booking-detail ul li {
        float: none;
        display: block;
        width: auto !important;
        text-align: left !important;
    }

    .postarea.alt2 .post-area {
        float: none;
        width: auto;
        margin: 0 0 10px;
    }

    .postarea.alt2 .post-area:before,
    .postarea.alt2 .post-area:after {
        content: " ";
        display: table;
    }

    .postarea.alt2 .post-area:after {
        clear: both;
    }

    .postarea.alt2 .post-area:before,
    .postarea.alt2 .post-area:after {
        content: " ";
        display: table;
    }

    .postarea.alt2 .post-area:after {
        clear: both;
    }

    .postarea.alt2 .posts-holder .post .area .area {
        padding: 0 0 10px;
    }

    .postarea.alt2 .posts-holder .booking-info {
        margin: 0;
    }

    .postarea.alt2 .posts-holder .footer {
        margin: 0;
    }

    .postarea.alt2 .posts-holder .price {
        text-align: left;
    }

    .postarea.alt3 .post-area {
        float: none;
        width: auto;
        margin: 0 0 10px;
    }

    .postarea.alt3 .post-area:before,
    .postarea.alt3 .post-area:after {
        content: " ";
        display: table;
    }

    .postarea.alt3 .post-area:after {
        clear: both;
    }

    .postarea.alt3 .post-area:before,
    .postarea.alt3 .post-area:after {
        content: " ";
        display: table;
    }

    .postarea.alt3 .post-area:after {
        clear: both;
    }

    .postarea.alt3 .expiry,
    .postarea.alt3 .price,
    .postarea.alt3 .booking-info {
        text-align: left;
    }

    .postarea.notation-booking .posts-holder .post .area .area {
        padding: 0 0 10px;
    }

    .postarea.notation-booking .meta {
        padding: 0 0 10px;
    }

    .postarea.notation-booking .rating-area {
        float: none;
        width: auto;
        margin: 0 0 10px;
    }

    .postarea.notation-booking .rating-area .rating,
    .postarea.notation-booking .rating-area .title {
        float: none;
        width: auto;
        display: inline-block;
        vertical-align: top;
    }

    .postarea .empty {
        display: none;
    }
}

/* styles for screens with width from 480px to 768px */
@media screen and (max-width: 767px) {
    body {
        font-size: 12px;
        line-height: 1.25;
    }

    body.modal-open {
        height: 100%;
        overflow: hidden;
        position: fixed;
    }

    body.modal-open:after {
        z-index: 900;
        content: '';
        left: 0;
        right: 0;
        position: fixed;
        top: -9999px;
        bottom: -9999px;
        background: rgba(0, 0, 0, 0.2);
    }

    h1 {
        font-size: 24px;
    }

    .form-control {
        font-size: 12px;
        padding: 10px 12px;
    }

    .jcf-select .jcf-select-text {
        font-size: 12px;
    }

    .alert.alert-info,
    .alert.alert-success {
        padding: 25px 50px 22px 78px;
    }

    .navbar-default .navbar-header {
        margin: 0;
    }

    .navbar-default .navbar-brand {
        margin: 5px 0 0;
    }

    .navbar-default .navbar-nav {
        border: 0;
        padding: 10px 0 0;
        margin: 0 0 10px;
        text-align: left;
    }

    .navbar-default .navbar-nav > li {
        margin: 0;
        display: block;
    }

    .navbar-default .navbar-nav > li.link-flag + li {
        margin: 0;
    }

    .navbar-default .navbar-nav > li + li {
        border-top: solid 1px #e6e6e6;
    }

    .navbar-default .navbar-nav > li > a {
        display: block;
        padding: 7px 10px;
    }

    .navbar-default .navbar-nav > li.open > a,
    .navbar-default .navbar-nav > li.active > a,
    .navbar-default .navbar-nav > li > a:hover {
        color: #ffffff !important;
        background: #58595b !important;
    }

    .navbar-default .navbar-nav > li > .dropdown-menu {
        margin: 0;
        padding: 0;
        border-radius: 0;
        border-top: #e6e6e6 solid 1px;
    }

    .navbar-default .navbar-nav > li > .dropdown-menu:after,
    .navbar-default .navbar-nav > li > .dropdown-menu:before {
        display: none;
    }

    .navbar-default .navbar-nav > li > .dropdown-menu li a {
        padding: 7px 20px;
    }

    .navbar-default .navbar-nav > li > .dropdown-menu li a:hover {
        color: #ffffff !important;
        background: #58595b !important;
    }

    .navbar-default .navbar-collapse {
        height: 0 !important;
        overflow: hidden;
    }

    .navbar-default .navbar-collapse.in {
        height: auto !important;
        overflow-y: auto;
    }

    .navbar-default .btn {
        margin: 0;
        display: block;
    }

    .navbar-default .navbar-toggle {
        margin: 0;
        cursor: pointer;
    }

    .jcf-select.jcf-select-currency-selector .jcf-select-text {
        padding: 7px 10px;
    }

    .jcf-select.jcf-select-currency-selector.jcf-focus .jcf-select-text,
    .jcf-select.jcf-select-currency-selector .jcf-select-text:hover {
        color: #ffffff;
        background: #58595b;
    }

    .jcf-select-drop.jcf-select-currency-selector {
        margin: -10px 0 0 0 !important;
    }

    .jcf-select-drop.jcf-select-currency-selector .jcf-list .jcf-option {
        padding: 7px 10px;
    }

    .jcf-select-drop.jcf-select-currency-selector.jcf-drop-flipped {
        margin: -10px 0 0 0 !important;
    }

    .form-category {
        padding: 10px 0;
    }

    .form-category .area {
        padding: 0;
    }

    .form-category .col {
        width: auto;
        float: none;
    }

    .form-category .col + .col {
        width: auto;
        float: none;
    }

    .form-category .col + .col .title {
        width: auto;
    }

    .form-category .title {
        margin: 10px 4px 0 0;
    }

    .form-category input.btn-default {
        width: 150px;
    }

    .form-category .form-holder {
        padding: 10px;
        margin: 0 0 10px;
    }

    .form-category .form-holder .col {
        padding: 0;
    }

    .form-category .form-holder .col.time .col:first-child,
    .form-category .form-holder .col.time .col {
        width: 100%;
    }

    .form-category .form-holder .col.time, .form-category .form-holder .col.location {
        width: auto !important;
        margin: 0;
    }

    .form-category .form-holder .col.location .field-holder {
        width: 250px;
    }

    .form-category .form-holder .col.time .title {
        width: auto;
        margin: 12px 6px 0 0;
    }

    .form-category .form-holder .title {
        margin: 12px 6px 0 0;
    }

    .form-category .selection-holder .select-holder {
        width: 100%;
        margin: 0 0 10px;
    }

    .form-category .form-holder .col.time .col.day-fields:first-child,
    .form-category .form-holder .col.time .col.day-fields.display-range:first-child {
        width: auto !important;
    }

    .form-category .form-holder .col.time .time-fields.col {
        width: auto !important;
    }

    .visual {
        margin: 0 0 10px;
    }

    .visual h1 {
        font-size: 24px;
        line-height: 1.125;
    }

    .visual .title-holder {
        height: 210px;
    }

    .infoarea {
        line-height: 15px;
    }

    .infoarea .info-box {
        padding-top: 20px;
        text-align: center;
        padding-bottom: 20px;
        border-top: solid 1px #e6e6e6;
    }

    .infoarea .info-box:first-child {
        border: 0;
    }

    .infoarea .icon {
        display: block;
        margin: 0 auto 10px;
        float: none !important;
    }

    .aside-footer .contact-info {
        width: 100%;
        padding: 0 0 10px;
        text-align: center;
        border-bottom: #4e4f51 solid 1px;
    }

    .aside-footer .contact-info li + li {
        margin: 5px 0 0;
    }

    .aside-footer .navarea {
        clear: both;
        padding: 15px 0 0;
        border-top: #626365 solid 1px;
    }

    .aside-footer .navarea ul {
        width: 50%;
        margin: 0;
        padding: 0 10px 0 0;
    }

    .aside-footer .navarea ul li + li {
        margin: 5px 0 0;
    }

    .aside-footer .navarea ul + ul {
        text-align: right;
        padding: 0 0 0 10px;
    }

    #footer .by {
        display: inline-block;
        vertical-align: top;
        margin: 0 0 10px;
        float: none !important;
    }

    .range-holder {
        width: 100%;
        padding: 10px 20px 0 0;
    }

    .range-holder:first-child {
        padding: 0 20px 0 0;
    }

    .range-holder .range-price {
        padding: 0 0 0 4px;
    }

    .range-area {
        padding: 0 0 10px;
    }

    .range-area .range-box {
        width: 100%;
    }

    .range-area .title {
        margin: 0 0 18px;
    }

    .maparea {
        margin: 0 0 20px;
        overflow: hidden;
        position: relative;
    }

    .maparea .map-holder {
        height: 340px;
    }

    .popup-holder {
        top: 290px;
        margin: -16px 0 0 -15px;
    }

    .rating li {
        font-size: 18px;
        margin: 0 -5px 0 0;
    }

    .pagination > li > a {
        min-width: 40px;
        line-height: 36px;
    }

    .posts-holder .post {
        margin: 0 0 20px;
    }

    .posts-holder .author-img {
        float: left;
        width: auto;
        position: static;
        margin: 0 10px 0 0;
    }

    .posts-holder .title {
        margin: 0;
        float: none;
        display: block;
        max-width: none;
        text-align: right;
    }

    .profile-detail h1 {
        margin: 0 0 10px;
    }

    .profile-detail .head address {
        margin: 0 0 10px;
        font-size: 20px;
    }

    .profile-detail blockquote {
        font-size: 17px;
        line-height: 21px;
    }

    .tooltip {
        width: auto;
    }

    .tooltip .tooltip-inner {
        max-width: none;
    }

    .form-selection {
        padding: 20px 10px;
    }

    .form-selection .col {
        padding: 0;
        width: 100%;
    }

    .form-selection .col:last-child,
    .form-selection .col:first-child {
        padding: 0;
        width: 100%;
    }

    .form-selection .col + .col {
        margin: 10px 0 0;
    }

    .form-listing-info .jcf-scrollbar-vertical {
        width: 20px;
    }

    .form-listing-info .jcf-scrollbar-vertical .jcf-scrollbar-slider {
        margin: 0 auto;
    }

    .file-selection .uploader {
        width: 100%;
        overflow: hidden;
        margin: 0 0 10px;
        position: relative;
    }

    .file-selection .jcf-file .jcf-fake-input {
        width: 160px;
    }

    .file-selection .detail {
        clear: both;
    }

    .files-list .img-thumbnail {
        width: 108px;
        height: 87px;
    }

    .currency-converter,
    .price-box {
        float: none;
        width: auto;
        display: block;
        margin: 0 0 30px;
    }

    .price-box .price-field .placeholder-text {
        padding: 10px 5px;
    }

    .currency-converter {
        margin: 0;
    }

    .listing-section .block .alert {
        margin: 0;
    }

    .form-inquiry .map-box {
        margin: 0 auto;
        /*max-width: 479px;*/
    }

    .form-inquiry .col {
        width: 100% !important;
    }

    .form-inquiry .col + .col {
        margin: 10px 0 0;
    }

    .form-inquiry .label {
        float: none;
        width: auto;
        display: block;
        margin: 0 0 5px;
    }

    .tab-holder .column,
    .form-inquiry .column {
        padding: 0;
        float: none;
        width: auto;
        display: inherit;
    }

    .tab-holder .column:first-child,
    .form-inquiry .column:first-child {
        padding: 0;
    }

    .tab-holder .column + .column,
    .form-inquiry .column + .column {
        padding: 10px 0 0;
    }

    .tab-holder {
        display: inherit;
    }

    .tab-holder .column:before {
        display: none;
    }

    .tab-holder .column + .column {
        margin: 20px 0 0;
        padding: 20px 0 0;
        border-top: solid 1px #c6ccd2;
    }

    .form-signup .label {
        float: none;
        display: block;
        margin: 0 0 5px;
    }

    .form-signup.alt .tab-holder .column {
        padding: 0;
    }

    .form-signup.alt .tab-holder .column:first-child {
        padding: 0;
    }

    .form-signup.alt .tab-holder .column + .column {
        margin: 20px 0 0;
        padding: 20px 0 0;
    }

    .btn-facebook {
        font-size: 12px;
    }

    .tabset-holder {
        margin: 0 0 10px;
        padding: 36px 0 0;
        position: relative;
    }

    .tabset-holder .opener {
        top: 0;
        left: 0;
        z-index: 3;
        display: block;
        width: 100%;
        height: 36px;
        border-radius: 5px;
        position: absolute;
        font-size: 20px;
        line-height: 34px;
        border: #eaebec solid 1px;
        color: #b4b8bc;
    }

    .tabset-holder .opener:before {
        top: 0;
        right: 30px;
        content: '';
        width: 1px;
        height: 100%;
        position: absolute;
        background: #eaebec;
    }

    .tabset-holder .opener .icon-down-open-mini {
        float: right;
        width: 40px;
        background: #ffffff;
        border-radius: 5px;
        border-left: 10px solid #ffffff;
    }

    .tabset-holder.active .nav-tabs {
        overflow: visible;
        max-height: 300px;
        border: solid 1px #eaebec;
    }

    .tabset-holder .link-favourit {
        float: none;
        display: inline-block;
        vertical-align: top;
        margin: 10px 0;
        position: relative;
    }

    .nav-tabs {
        max-height: 0;
        overflow: hidden;
        border-radius: 5px;
    }

    .nav-tabs > li {
        margin: 0;
        float: none;
        display: block;
        position: static;
    }

    .nav-tabs > li + li {
        border-top: solid 1px #eaebec;
    }

    .nav-tabs > li:first-child a {
        border-radius: 5px 5px 0 0;
    }

    .nav-tabs > li:last-child a {
        border-radius: 0 0 5px 5px;
    }

    .nav-tabs > li > a {
        margin: 0;
        border-radius: 0;
        border: 0 !important;
        position: static;
    }

    .nav-tabs > li > a:before {
        top: 0;
        left: 0;
        z-index: 2;
        color: #58595b;
        display: none;
        overflow: hidden;
        width: 80%;
        height: 36px;
        line-height: 36px;
        position: absolute;
        padding: 0 0 0 18px;
        white-space: nowrap;
        text-overflow: ellipsis;
        content: attr(data-text);
    }

    .nav-tabs > li.active > a {
        position: static !important;
    }

    .nav-tabs > li.active > a:before {
        display: block;
    }

    .nav-tabs > li.active > a:after {
        display: none;
    }

    .tab-content {
        border-radius: 5px;
    }

    .timing li {
        width: 50%;
    }

    .timing li:nth-child(2) {
        text-align: right;
    }

    .timing li:last-child {
        width: 100%;
        text-align: center;
        padding: 10px 0 0;
    }

    .timing time,
    .timing strong {
        font-size: 14px;
        line-height: 17px;
    }

    .price-area .total {
        font-size: 17px;
        line-height: 20px;
    }

    .price-list {
        font-size: 14px;
        line-height: 17px;
    }

    .price-list li {
        width: 100%;
    }

    .price-list li + li {
        margin: 10px 0 0;
    }

    .form-verification .label {
        float: none;
        display: block;
        margin: 0 0 10px;
    }

    .form-verification .field-year,
    .form-verification .field-month,
    .form-verification .field-day {
        width: 100%;
        padding: 0 0 10px;
    }

    .form-verification .field-year .form-control,
    .form-verification .field-month .form-control,
    .form-verification .field-day .form-control {
        text-align: left;
        padding: 6px 13px;
    }

    .form-payment h2 {
        float: none;
        margin: 0 0 5px;
    }

    .form-payment .by {
        float: none;
        overflow: hidden;
    }

    .form-payment .by ul {
        margin: 0;
        float: none;
        overflow: hidden;
    }

    .form-payment .by ul li {
        margin: 0;
    }

    .form-payment .by ul li:first-child img {
        width: 122px;
    }

    .form-payment .by ul img {
        width: 60px;
    }

    .card-type .title {
        float: none;
        display: block;
        margin: 0 0 5px;
    }

    .cards-list li img {
        height: auto;
        width: 40px;
    }

    .files-list {
        margin: 0;
    }

    .listing-detail {
        margin: 0 0 30px;
    }

    .similar-ads {
        margin: 0 0 20px;
    }

    .similar-ads .btn-default {
        display: block;
    }

    .availability-schedule .indicators {
        margin: 0 0 10px;
        position: relative;
    }

    .table-area {
        width: 50%;
    }

    .gallery-slider {
        padding: 0;
    }

    .gallery-slider .vertical-holder {
        top: 0;
        bottom: 0;
        z-index: 10;
        width: 80px;
        padding: 10px 10px;
        border-radius: 0 5px 5px 0;
        background: rgba(0, 0, 0, 0.1);
        border: solid rgba(0, 0, 0, 0.3);
        border-width: 33px 0;
    }

    .gallery-slider .vertical-slide a {
        height: auto;
    }

    .gallery-slider .btn-prev,
    .gallery-slider .btn-next {
        top: 5px;
        right: 30px;
    }

    .gallery-slider .btn-next {
        top: auto;
        bottom: 5px;
    }

    .listing-detail .nav-tabs > li > a,
    .listing-container .nav-tabs > li > a {
        text-align: left;
        padding: 10px 15px;
    }

    .listing-container {
        margin: 0;
        padding: 10px 0 0;
    }

    .listing-container h1 {
        margin: 0 0 10px;
        font-size: 20px;
    }

    .listing-detail .blog .head {
        padding: 0 0 10px;
    }

    .listing-detail .blog h2 {
        float: none;
        margin: 0 0 5px;
    }

    .listing-detail .posts-holder .post {
        margin: 0;
    }

    .listing-detail .posts-holder .post + .post {
        margin: 20px 0 0;
    }

    .posts-holder .time {
        margin: 9px 10px 0 0;
    }

    .features-list {
        margin: 0 0 20px;
        width: 100%;
    }

    .features-list:last-child,
    .features-list:first-child {
        width: 100%;
    }

    .features-list:last-child {
        margin: 0;
    }

    .features-list li i.icon-cancel {
        margin: -5px 6px 0 -31px;
    }

    #content .alert-success {
        font-size: 13px;
        line-height: 1.1;
        padding: 15px 15px 15px 90px;
    }

    .main-tabs .nav-tabs {
        margin: 0;
        padding: 0;
    }

    .main-tabs .nav-tabs > li {
        margin: 0;
    }

    .main-tabs .nav-tabs > li > a {
        text-align: left;
    }

    .tabs-aside {
        width: auto;
        float: none;
        margin: 0 0 10px;
    }

    .tabs-aside .tabset-holder {
        background: #ffffff;
    }

    .tabs-aside .nav-tabs > li > a {
        border-radius: 0;
    }

    .tabs-aside .nav-tabs > li:first-child a {
        border-radius: 5px 5px 0 0;
    }

    .tabs-aside .nav-tabs > li:last-child a {
        border-radius: 0 0 5px 5px;
    }

    .form-area {
        float: none;
        width: auto;
    }

    .form-area .form-holder {
        clear: both;
    }

    .form-area .form-holder .nav-tabs {
        padding: 0 0 1px;
        margin: 0 0 -1px;
        border-radius: 0;
        max-height: none;
    }

    .form-area .form-holder .nav-tabs > li {
        float: left;
        margin: 0 5px -1px 0;
    }

    .form-area .form-holder .nav-tabs > li + li {
        border: 0;
    }

    .form-area .form-holder .nav-tabs > li > a {
        display: block;
        padding: 10px 5px;
        min-width: 120px;
        text-align: center;
        border: #dedede solid !important;
        border-width: 1px 1px 0 !important;
        border-radius: 5px 5px 0 0 !important;
    }

    .form-area .form-holder .nav-tabs > li > a:before,
    .form-area .form-holder .nav-tabs > li.active a:before {
        display: none;
    }

    .form-area button[type="submit"] {
        margin: 0;
    }

    .form-area .form-block {
        padding: 10px;
    }

    .form-area .field-row.time .col {
        width: 100% !important;
    }

    .form-area .field-row.time .col + .col {
        margin: 10px 0 0;
    }

    .form-area .field-row.time .col + .col .title {
        min-width: 33px;
    }

    .form-area .field-row.time .col + .col .add-on {
        right: 0;
    }

    .form-area .field-row.time .col:first-child .field-holder {
        padding: 0 35px 0 0;
    }

    .form-area .field-row.time .add-on {
        right: 0;
    }

    .form-area .field-row.time .field-holder {
        padding: 0 35px 0 0;
    }

    .form-area .payment-info .field-row:nth-child(3) .label,
    .form-area .payment-info .label {
        margin-top: 10px;
    }

    .form-area .location {
        max-width: none;
    }

    .form-area input[type="submit"] {
        margin: 0;
    }

    .form-area .date-slider .title {
        margin: 0 6px;
        font-size: 20px;
        line-height: 24px;
    }

    .form-area .file-selection {
        padding: 10px;
    }

    .form-area .file-selection + .btn-block {
        padding: 0;
    }

    .form-area .form-selection h3 {
        margin: 0 8px 10px;
    }

    .form-area .form-selection .col {
        padding: 0;
        width: 100% !important;
    }

    .form-area .block2 .label,
    .form-area .block1 .label {
        padding: 0;
        float: none;
        display: block;
        margin: 0 0 5px !important;
    }

    .form-area .field-row.columns .tooltip-button {
        top: auto;
        right: auto;
        position: relative;
        margin: 0 0 0 5px;
    }

    .form-area .field-row.columns .col {
        padding: 0;
    }

    .form-area .field-row.type {
        margin: 0 0 10px;
    }

    .form-area .columns-holder {
        padding: 20px 10px;
    }

    .form-area .columns-holder h3 {
        margin: 0 0 15px;
    }

    .check-list li {
        margin: 0 20px 10px 0;
    }

    .date-slider {
        margin: 0;
        border: 0;
        left: auto;
        padding: 0;
        overflow: hidden;
    }

    .date-slider .title-area {
        padding: 0 0 10px;
    }

    .date-slider .carousel-control {
        width: 24px;
        height: 24px;
        font-size: 16px;
        line-height: 20px;
    }

    .date-slider .carousel-control.left {
        letter-spacing: -2px;
    }

    .date-slider .carousel-control.right {
        letter-spacing: -3px;
    }

    .date-table {
        margin: 0;
    }

    .date-table > thead > tr > th,
    .date-table > tbody > tr > th,
    .date-table > thead > tr > td,
    .date-table > tbody > tr > td {
        font-size: 11px;
        padding: 10px 5px;
        min-height: inherit;
    }

    .date-table .price {
        display: block;
        position: static;
        text-align: center;
    }

    .date-slider .fc-toolbar .fc-center h2 {
        font-size: 13px;
    }

    .fc-view .fc-head .fc-day-header,
    .fc-ltr .fc-basic-view .fc-day-number {
        font-size: 11px;
        padding: 10px 5px;
        min-height: inherit;
    }

    .price-section .column {
        width: 100%;
        padding: 10px;
    }

    .price-section .column + .column {
        width: 100%;
        padding: 10px;
        margin: 20px 0 0;
    }

    .price-section .column .price-info li + li {
        margin: 5px 0 0 !important;
    }

    .price-range .agenda .label {
        float: none;
        display: block;
        padding: 0 0 5px;
    }

    .discount-list .label {
        float: none;
        display: block;
        padding: 0 0 5px;
    }

    .discount-list li:last-child .label {
        display: inline-block;
        vertical-align: middle;
        padding: 0;
    }

    .discount-list .close {
        margin: 0 0 0 10px;
    }

    .booking-policy .label {
        float: none;
        display: block;
        padding: 0 0 5px;
    }

    #policy .form-holder {
        padding: 10px;
    }

    #policy .form-holder > h2 {
        margin: 0 0 10px;
    }

    .postarea .posts-holder .post-area {
        width: auto;
        float: none;
        padding: 0 0 10px;
    }

    .postarea .posts-holder .post {
        padding: 10px;
    }

    .postarea .posts-holder .img-holder {
        margin: 0 10px 0 0;
    }

    .postarea .posts-holder p {
        margin: 0 0 10px;
    }

    .postarea .posts-holder .meta p {
        margin: 0 10px 0 0;
    }

    .postarea .posts-holder .footer {
        width: auto;
    }

    .postarea h2,
    .postarea .head time {
        float: none;
        margin: 0 0 5px;
    }

    .postarea .btn-default {
        min-width: 80px;
        margin: 0 4px 0 0;
        display: inline-block;
        padding: 9px 5px 10px;
    }

    .postarea .btn-default + .btn {
        margin: 0 4px 0 0;
    }

    .postarea .btns-holder .btn-default {
        margin: 0 5px;
    }

    .postarea .btns-holder .btn-default + .btn {
        margin: 0 5px;
    }

    .postarea.notation-booking .posts-holder .img-holder {
        float: none;
        margin: 0 auto 10px;
    }

    .form-ad-detail .img-holder {
        width: 140px;
        margin: 0 10px 0 0;
    }

    .form-ad-detail .img-holder img {
        width: 100%;
        height: auto;
        vertical-align: top;
    }

    .form-ad-detail .listing-title {
        margin: 0 0 37px;
    }

    #messaging .blog .posts-holder .post {
        margin: 0;
    }

    .table-section {
        padding-bottom: 20px !important;
    }

    .form-radio {
        margin: 0 auto 10px;
    }

    .form-radio.alt {
        margin-bottom: 20px;
    }

    .table-detail {
        display: block;
        max-width: none;
        overflow: hidden;
    }

    .table-detail tbody {
        float: left;
        width: 100%;
        display: block;
        background: #ffffff;
        padding: 0 1px 0 1px;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        border-left: 140px solid #cac9c9;
    }

    .table-detail tbody > tr {
        float: left;
        width: 100%;
        clear: both;
        display: block;
        background: #ffffff;
    }

    .table-detail tbody > tr.even {
        background: #ffffff;
    }

    .table-detail > tbody > tr > td {
        float: left;
        clear: both;
        text-align: left;
        white-space: nowrap;
        width: 100% !important;
        margin: 0 -1px 0 -141px;
        font-size: 12px;
        line-height: 17px;
        padding: 0 0 0 140px !important;
        border-width: 1px 0 0 !important;
    }

    .table-detail > tbody > tr > td:before {
        float: left;
        width: 140px;
        text-align: left;
        padding: 5px 10px;
        position: relative;
        white-space: normal;
        margin: 0 0 0 -140px;
        color: #ffffff !important;
        content: attr(data-label);
    }

    .table-detail > tbody > tr > td > div {
        overflow: hidden;
        padding: 5px 10px;
    }

    .table-detail thead {
        display: none;
    }

    .modal .modal-dialog {
        margin: 0;
    }

    .modal .modal-content {
        margin: 20px;
        text-align: center;
    }

    .modal .meta,
    .modal .modal-header {
        padding: 0 0 10px;
    }

    .modal .img-holder {
        float: none;
        width: auto;
        max-width: 200px;
        margin: 0 auto 10px;
    }

    .modal .booking-duration,
    .modal .booking-detail,
    .modal .sub-title {
        margin: 0 0 10px;
    }

    .modal .btn {
        min-width: 90px;
        margin: 0 5px 5px;
    }

    .user-rating {
        padding: 10px 15px;
        margin: 0 0 20px;
    }

    .user-rating .link {
        margin: 0;
        float: none;
    }

    .user-rating .plus-sign {
        vertical-align: middle;
    }

    .user-rating p {
        margin: 0 10px 0 0;
    }

    .form-message.alt2,
    .form-message.alt {
        margin: -20px 0 30px;
    }

    .form-message.alt2 .user-rating .title,
    .form-message.alt .user-rating .title {
        margin: 4px 2px 0 -1px;
    }

    .form-message.alt2 .user-rating .rating li,
    .form-message.alt .user-rating .rating li {
        margin: 0 -6px 0 0;
    }

    .form-message.alt2 .input-placeholder-text,
    .form-message.alt .input-placeholder-text {
        line-height: 17px;
    }

    .form-message.alt2 input[type="submit"],
    .form-message.alt input[type="submit"],
    .form-message.alt2 input[type="reset"],
    .form-message.alt input[type="reset"] {
        margin: 0;
        width: 49%;
        float: left;
        min-width: inherit;
    }

    .form-message.alt2 input[type="submit"],
    .form-message.alt input[type="submit"] {
        float: right;
    }

    .form-message.alt2 .btn-block,
    .form-message.alt .btn-block {
        padding: 0;
    }

    .form-message.alt2 .img-holder {
        width: 150px;
        margin: 2px 10px 0 0;
    }

    .form-message.alt2 h2 {
        margin: 0 0 5px;
    }

    .form-message.alt2 p {
        margin: 0 0 10px;
    }

    .form-switchers .counter,
    .form-switchers .title {
        margin-top: 7px;
    }

    .modal-backdrop {
        display: none;
    }

    .tooltip {
        width: 150px;
    }

    .tooltip.left {
        width: 150px;
        margin: 0 0 0 50px !important;
    }

    .date-slider.alt .fc-view .fc-head .fc-day-header {
        font-size: 11px;
    }

    .date-slider.alt .fc-ltr .fc-basic-view .fc-day-number {
        padding: 15px 0;
    }

    .date-slider.alt .fc-content-skeleton tbody td .fc-day-grid-event {
        margin: 0 5px;
    }
}

/* styles for screens 480px wide and narrower */
@media screen and (max-width: 480px) {
    .topbar ul {
        text-align: center;
    }

    .topbar ul li {
        margin: 0;
        display: block;
    }

    .form-category .col:first-child {
        margin-bottom: 10px;
    }

    .form-category .form-holder .col.location .field-holder {
        width: 220px;
    }

    .form-category .form-holder input.btn-default {
        float: right;
    }

    .form-inquiry .map-box {
        /*max-width: 250px;*/
    }

    .currency-converter .select-holder {
        width: 100%;
        margin: 0 0 10px;
    }

    .currency-converter .col {
        clear: both;
    }

    .currency-converter.white .select-holder {
        width: 100%;
        margin: 0 0 10px;
    }

    .table-area {
        width: 100%;
    }

    .gallery-slider .vertical-holder {
        top: 0;
        bottom: 0;
        z-index: 10;
        width: 50px;
        padding: 5px;
        border-radius: 0 5px 5px 0;
        background: rgba(0, 0, 0, 0.1);
        border: solid rgba(0, 0, 0, 0.3);
        border-width: 33px 0;
    }

    .gallery-slider .vertical-slide a {
        height: auto;
    }

    .gallery-slider .btn-prev,
    .gallery-slider .btn-next {
        right: 15px;
    }

    .main-tabs .tab-content {
        padding: 10px 5px 0;
    }

    .main-tabs .listing-post {
        margin: 0 0 10px;
    }

    .main-tabs .listing-post .box-holder {
        display: block;
    }

    .main-tabs .listing-post .foot,
    .main-tabs .listing-post .box {
        position: relative;
        overflow: hidden;
    }

    .main-tabs .listing-post .foot {
        padding: 10px 5px;
    }

    .main-tabs .listing-post h2 {
        font-size: 14px;
        line-height: 17px;
    }

    .main-tabs .listing-post .listing-box {
        padding: 5px;
    }

    .main-tabs .listing-post .area {
        padding: 0;
    }

    .main-tabs > div[role="tabpanel"] > .tab-content {
        margin: 0;
        padding: 10px 5px 0;
    }

    .listing-post .info-btns {
        padding: 10px 5px 5px;
    }

    .listing-post .certified {
        margin: 0;
    }

    .form-area .tab-content .tab-content,
    .form-area .form-holder {
        padding: 10px;
    }

    .form-area .alert-warning {
        padding: 17px 10px 17px 84px;
    }

    .form-area .alert-warning .icon.exclamation {
        left: 10px;
    }

    .form-area .file-selection .jcf-file .jcf-fake-input {
        width: 130px;
    }

    .form-area .features-area .features-list {
        clear: both;
        width: 100% !important;
    }

    .form-area .about-info .jcf-file .jcf-fake-input {
        width: 130px;
        padding: 0 5px;
    }

    .form-area .about-info .language .label,
    .form-area .about-info .label {
        float: none;
        display: block;
        margin: 0 0 5px;
        max-width: none;
        min-width: inherit;
    }

    .form-area .about-info .language .field-holder {
        padding: 0;
    }

    .form-area .message-area .nav-tabs > li > a {
        min-width: 90px;
    }

    .form-area .message-area .nav-tabs > li.active a:before {
        display: none;
    }

    .form-area .payment-info .column {
        padding: 20px 10px;
    }

    .form-area .payment-info .column:first-child {
        padding: 20px 10px;
    }

    .form-area .payment-info .label {
        float: none;
        width: auto;
        display: block;
        margin: 0 0 5px !important;
    }

    .form-area .payment-info .field-row.alt {
        margin: 0 0 19px;
    }

    .form-area .payment-info .field-row.alt + .field-row .field-holder {
        padding: 0;
    }

    .form-area .payment-info .tooltip-btn {
        top: auto;
        height: 34px;
        padding-top: 8px;
    }

    .form-area .payment-info ~ .info-list {
        padding: 0 0 15px;
    }

    .form-area .payment-info ~ .info-list li {
        position: relative;
    }

    .form-area .payment-info ~ .info-list .btn-primary {
        font-size: 12px;
    }

    .form-area .payment-info ~ .info-list .tooltip-button {
        top: -5px;
        margin: 0;
        right: -5px;
        position: absolute;
    }

    .form-area .contact-info .column {
        padding: 20px 10px;
    }

    .form-area .contact-info .column:first-child {
        padding: 20px 10px;
    }

    .form-area .contact-info .label {
        width: auto;
        float: none;
        display: block;
        margin: 0 0 5px !important;
    }

    .form-area .contact-info .tooltip-btn {
        top: auto;
        bottom: 1px;
        height: 33px;
        padding-top: 8px;
    }

    .form-area .contact-info .field-row.alt .field-holder {
        padding: 0;
    }

    .form-area #contact-info .form-holder {
        padding: 10px;
    }

    .form-area #contact-info h3 {
        margin: 0 0 10px;
    }

    .jcf-file .jcf-fake-input {
        font-size: 12px;
    }

    .thin-scroll .jcf-scrollbar-vertical {
        width: 15px;
    }

    .btn-translate {
        padding: 0;
        font-size: 10px;
        text-align: left;
    }

    .btn-translate span {
        height: 44px;
        line-height: 20px;
        padding: 12px 10px 11px;
    }

    .images-list li {
        width: 110px;
    }

    .btns-list li {
        padding: 0 2px 10px;
    }

    .postarea .posts-holder .img-holder {
        width: 112px;
        float: none;
        margin: 0 auto 10px;
    }

    .postarea .posts-holder .footer {
        margin: 0 -5px;
    }

    .postarea .posts-holder .footer .btn-default {
        margin: 0;
    }

    .postarea h2,
    .postarea .head time {
        margin: 0;
        font-size: 14px;
    }

    .postarea .area {
        padding: 0 0 5px;
    }

    .postarea .section-foot {
        text-align: center;
    }

    .postarea .section-foot .result-counter {
        float: none;
        display: block;
        margin: 0 0 5px;
    }

    .postarea .section-foot .nav-pagination {
        text-align: center;
    }

    .postarea.alt .posts-holder .footer .btn.btn-default,
    .postarea.alt .posts-holder .footer .btn {
        width: auto;
        float: none;
        display: block;
        min-width: inherit;
    }

    .postarea.alt .section-head {
        padding: 0 0 10px;
    }

    .postarea.alt .section-head .result-counter {
        float: none;
        display: block;
        margin: 0 0 5px;
    }

    .postarea.alt3 .posts-holder .img-holder,
    .postarea.alt2 .posts-holder .img-holder {
        margin: 0 auto 10px;
    }

    .postarea.alt3 + .form-ad-detail,
    .postarea.alt2 + .form-ad-detail {
        margin: 0 auto 10px;
    }

    .postarea .btn-block {
        text-align: center;
    }

    .postarea.alt3 .posts-holder .post .area .area {
        padding: 0 0 5px;
    }

    .postarea.alt3 .posts-holder .post h2 {
        text-align: center;
    }

    .postarea.alt3 .posts-holder .footer {
        margin: 0;
    }

    .postarea.alt3 .booking-info {
        margin: 0 0 5px;
        text-align: center;
    }

    .postarea .btns-holder .btn {
        min-width: 110px;
    }

    .postarea.notation-booking .rating-area .title {
        display: block;
        margin: 0 0 5px;
        text-align: left;
    }

    .postarea.notation-booking .rating-area .rating li {
        font-size: 18px;
        margin: 0 -8px 0 0;
    }

    .postarea.notation-booking .textbox {
        padding: 0;
    }

    .location-holder {
        margin: 0;
    }

    .location-holder .contact-info,
    .location-holder address {
        float: none;
        width: auto;
        margin: 0 0 10px;
        height: auto !important;
    }

    .form-filter {
        float: none;
        width: auto;
    }

    .form-ad-detail .img-holder {
        float: none;
        width: 190px;
        margin: 0 auto 10px;
    }

    .form-ad-detail .listing-title {
        margin: 0 0 15px;
        text-align: center;
    }

    .modal .applicant {
        display: block;
        margin: 0 0 5px;
    }

    .modal .modal-footer .btn {
        margin: 0 5px;
    }

    .modal .modal-footer .btn + .btn {
        margin: 0 5px;
    }

    .form-message.alt2,
    .form-message.alt {
        margin: 0;
    }

    .form-message.alt2 .post-area,
    .form-message.alt .post-area {
        text-align: center;
    }

    .form-message.alt2 input[type="submit"],
    .form-message.alt input[type="submit"],
    .form-message.alt2 input[type="reset"],
    .form-message.alt input[type="reset"] {
        float: none;
        width: 100%;
        display: block;
        margin: 0 0 10px;
    }

    .form-message.alt2 h2,
    .form-message.alt h2 {
        margin: 0 0 10px;
    }

    .form-message.alt2 p,
    .form-message.alt p {
        margin: 0 0 5px;
    }

    .form-message.alt2 .user-rating .title,
    .form-message.alt .user-rating .title {
        display: block;
        margin: 0 0 5px;
    }

    .form-message .img-holder {
        float: none;
        margin: 0 auto 10px;
    }

    .form-message .booking-detail {
        margin: 0 0 5px;
    }

    .form-message .booking-detail li {
        margin: 0 5px;
    }

    .form-message.alt2 .img-holder {
        margin: 0 auto 10px;
    }

    .form-payment .by .title {
        float: none;
        margin: 0;
        display: block;
    }
}

.map-holder {
    position: relative;
    overflow: hidden;
}

.map-holder .map-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/*.infoBox .popup {*/
/*position: absolute;*/
/*left: 0;*/
/*bottom: 38px;*/
/*}*/

.hide-scroll {
    opacity: 0 !important;
}

body.loading {
    overflow: hidden;
}

.loader {
    z-index: 2000;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    overflow: hidden;
    background: #ffffff url(../../images/loader.gif) no-repeat 50% 50%;
}

.loading .loader {
    display: block;
}

.form-control-radio {
    border: none;
}

.form-control-radio > label {
    margin-right: 10%;
}

.form-control-radio > label > span {
    display: none;
}