﻿/*
Theme Name: Allbriz Theme
Author: Dmitry Kochnev
Author URI: http://codebro.ru/
Description:
Version: 0.0.2
Text Domain: allbriz
*/


/*
 * Содержимое файла:
 * 1. CSS-reset
 *
 *
 */



/*
 * 1. CSS-reset
 *
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain)
*/
* {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
 * 2. Общие стили
 */
html, body {
    min-width: 800px;

    font-family: "Helvetica Neue", Arial, sans-serif;
}

/*img {
    max-width: 100%;
    height: auto;
}*/
i,em {
    font-style: italic;
}
a {
    text-decoration: none;
    font-size: 14px;
    color: #729aa8;
}

a:hover {
    color: #e97901;
}

label {
    display: block;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 6px;
    cursor: pointer;
}

label > input[type="checkbox"] {
    margin: 0 6px 0 0;
    cursor: pointer;
    display: block;
    float: left;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    height: 36px;

    padding: 5px 10px;

    font-size: 14px;

    border: 1px solid #ccc;
    border-top: 1px solid #aaa;

    border-radius: 3px;
}

.container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-header-section {
    width: 100%;
    height: 57px;
    border-bottom: 1px solid #fff;
    z-index: 2;
    position: relative;	
}

.home.page .main-header-section {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}


.form-field {
    margin-bottom: 20px;
   /* position: relative;*/

}
.page-id-14 .auth-form-wrap .form-field {
	float: left;
}
.submit-button {
    width: 100%;
    height: 46px;

    border: 0;
    padding: 0;
    margin: 35px 0 0 0;
    outline: none;

    display: block;

    background: none;
}

.submit-button > span {
    height: 42px;
    width: 100%;

    padding-top: 11px;

    display: block;

    position: relative;
    z-index: 1;

    border-radius: 3px;

    background: #bbb;
    color: #fff;

    font-size: 18px;
}

.submit-button:after {
    content: ' ';

    height: 42px;
    width: 100%;

    display: block;

    position: relative;
    z-index: 0;

    border-radius: 3px;

    background: #999;

    margin-top: -38px;
}

form.is-valid .submit-button span {
    background: #4ab857;
}

.form-submit.publish-object .submit-button {
    background: #4ab857 none repeat scroll 0 0;
}

form.is-valid .submit-button:after {
    background: #159c26;
}

.submit-button:active span {
    top: 3px;
}

.progress-bar {
    width: 100%;
}

.progress-bar > .bar {
    width: 0;
    height: 100%;
}

.progress-bar > .bar.danger {
    background: #bb0000;
}

.progress-bar > .bar.success {
    background: #4ab857;
}

.password-strength {
    margin-top: 5px;
    height: 5px;
    background: #dddddd;
}

.multiple-photo-field,
.photo-field {
    width: 120px;
    height: 120px;
    border-radius: 3px;
    border: 1px dashed #ccc;
    cursor: pointer;
    background: url('./images/photo@2x.svg') center no-repeat;
    background-size: 21px 21px;
    position: relative;
}

.multiple-photo-preview-wrap,
.photo-preview-wrap {
    width: 120px;
    height: 120px;
    position: relative;
}

.dz-max-files-reached,
.image-loaded .progress-bar {
    display: none;
}

.multiple-photo-preview-wrap .progress-bar,
.photo-preview-wrap .progress-bar {
    position: absolute;

    bottom: 10px;
    right: 5px;
    left: 5px;

    height: 5px;
    width: auto;

    background: #ddd;
}

.multiple-photo-preview-wrap .progress-bar > .bar,
.photo-preview-wrap .progress-bar > .bar {
    background: white;
    height: 100%;
}

.multiple-photo-preview-wrap img,
.photo-preview-wrap img {
    opacity: 0.7;

    display:block;
}

.multiple-photo-preview-wrap.image-loaded img,
.photo-preview-wrap.image-loaded img {
    opacity: 1;
}

.multiple-photo-preview-wrap > .remove,
.photo-preview-wrap > .remove {
    text-decoration: none;
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0.5;
    width: 18px;
    height: 18px;
    display: none;
    background: #000;
    border-radius: 3px;
}

.multiple-photo-preview-wrap > .remove > div,
.photo-preview-wrap > .remove > div {
    color: #fff;
    line-height: 14px;
    font-size: 21px;
    width: 18px;
    height: 18px;
    padding: 3px;
}

.multiple-photo-preview-wrap > .remove:hover,
.photo-preview-wrap > .remove:hover {
    opacity: 1;
}

.multiple-photo-preview-wrap.image-loaded > .remove,
.photo-preview-wrap.image-loaded > .remove {
    display: block;
}

.auth-form-wrap .form-field.last-name {
    margin-bottom: 0px;
}
.form-field.last-name {
   margin-bottom: 40px;
}

.field-tip {
    font-size: 13px;
    color: #999;
    margin-top: 6px;
}

.error-message, .error-message-number {
    font-size: 14px;
    margin-top: 18px;
    color: #bb0000;
    min-height: 44px;
    opacity: 0;
}

.submit-button .preloader {
    display: inline-block;
    width: 18px;
    margin-right: -9px;
    text-align: left;
    opacity: 0;
}

.form-field .preloader {
    display: none;
    position: absolute;
    right: 7px;
    bottom: 5px;
}

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

.main-header-section .nav-menu > li {
    height: 56px;
    padding: 18px 15px 0 15px;
    display: inline-block;
    margin-bottom: 0;
}

.main-header-section .nav-menu > li a {
    font-size: 13px;
	color: #fff;
}

.main-header-section .nav-menu.pull-right {
    margin-right: -15px;
}

.after-submit {
    position: absolute;
    bottom: 26px;
    left: 0;
    margin-top: 18px;
    display: inline-block;
}
.after-submit2 {
    position: absolute;
    bottom: 26px;
    left: 225px;
    margin-top: 18px;
    display: inline-block;
}

/*
 * 3. Стили для страниц авторизации
 */
 .auth-form-wrap {
    width: 100%;
    max-width: 360px;

    margin: 100px auto 150px auto;
}
.page-id-14 .auth-form-wrap {
    width: 100%;
    max-width: 360px;
	float: left;
    margin: 0 0 20px 70px;
}
.auth-form-wrap2 {
    float: left;
    max-width: 500px;
	margin: 0px auto 20px;
}
.page-id-14 .auth-form-wrap  .first-name, .page-id-14 .last-name, .page-id-14 .password, .page-id-14 .password-confirmation {
    width: 170px;
}
.page-id-14 .auth-form-wrap .last-name, .page-id-14 .password-confirmation {
    margin-left: 20px;
}
.page-id-14 .auth-form-wrap .form-field.email {
    width: 100%;
}
/*
 * 4. Страница курорта
 */
section {
    width: 100%;
}

.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.sub-header-section {
    width: 100%;
    height: 44px;
	background-color: #e9f0fa;
}

h1 {
    margin: 25px 0 25px 0;
    font-size: 36px;
}

h3 {
    font-size: 21px;
    margin: 20px 0 15px 0;
}

h4 {
	font-size: 19px;
    margin: 20px 0 15px 0;
}
.content:before,
.content:after,
.clear:before,
.clear:after {
    content: "";
    display: table;
    clear: both;
}

ul > li,
p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
    list-style: disc outside;
}
.service p
 {
    margin-bottom: 10px;

}

ol > li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 6px;
    list-style: decimal outside;
    margin-left: 20px;
}

.user-menu li,
.links-list li,
.resorts-container li {
    list-style: none;
}

.links-list li,
.user-menu li {
    margin-bottom: 0;
}

.half {
    width: 50%;
    float: left;
    padding: 0 0 0 24px;
    min-height: 1px;
}

:first-child.half {
    padding: 0 24px 0 0;
}

/*@media (max-width: 799px) {
    .half {
        width: 100%;
        padding: 0;
        float: none;
    }
}*/

h2 {
    margin-top: 20px;
    font-size: 30px;
    margin-bottom: 15px;
}

.site-content {
    padding-bottom: 90px; 
	/* padding-bottom: 2px; */
    width: 100%;

    overflow: hidden;
}
.tax-resort .site-content {
 padding-bottom: 2px; 
}

.three-fourth {
    width: 75%;
    float: left;
    /*padding: 0 45px 0 0;*/
	padding: 0;
    min-height: 1px;
}

.one-fourth {
    width: 25%;
    float: left;
    padding: 0 0 0 15px;
    min-height: 1px;
}

.wight100 {
    width: 100%;
    float: left;
    /*padding: 0 45px 0 0;*/
	padding: 0;
    min-height: 1px;
}

.left-menu {
    float: left;
}

.right-menu {
    float: right;
}

.left-menu > div, .right-menu > div {
    display: block;
    float: left;
}

.main-header-section .menu > div {
    height: 56px;
}

.sub-header-section .menu > div {
    height: 43px;
}

.left-footer-menu > div > a,
.right-footer-menu > div > a,
.main-menu-wrap > div > a,
.auth-menu-wrap > div > a {
    display: block;
    margin: 23px 12px 0 0;
}

.user-cp-menu-wrap > div a,
.resort-menu-wrap > div a {
    display: block;
    margin: 15px 20px 0 0;
}

.left-footer-menu > div:last-of-type > a,
.right-footer-menu > div:last-of-type > a,
.user-cp-menu-wrap > div:last-of-type > a,
.resort-menu-wrap > div:last-of-type > a,
.main-menu-wrap > div:last-of-type > a,
.auth-menu-wrap > div:last-of-type > a {
    margin-right: 0;
}

.main-menu-wrap > div a.resorts-list {
    border: 1px solid rgba(42, 127, 221, 0.2);
    border-radius: 3px;
    padding: 5px 10px;
    margin-top: 17px;
    font-size: 13px;
    position: relative;
    padding-right: 23px;
}

.home.page .auth-menu-wrap a,
.home.page .active .user-button,
.home.page .user-button,
.home.page .main-menu-wrap > div a.resorts-list {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    opacity: .9;
}

.home.page .random-resort {
    color: white;
    opacity: .9;
}

.home.page .auth-menu-wrap a:hover,
.home.page .user-button:hover,
.home.page .random-resort:hover {
    opacity: 1;
}


.plus-link {
    border: 1px solid rgba(42, 127, 221, 0.2);
    border-radius: 3px;
    padding: 5px 10px 5px 21px;
    margin-top: 9px;
    display: block;
    position: relative;
}

.plus-link:before {
    content: "➕";
    position: absolute;
    left: 7px;
    top: 7px;
    font-size: 10px;
}

.plus-link:hover,
a.user-button:hover,
.main-menu-wrap > div a.resorts-list:hover {
    border-color: rgba(233, 121, 1, 0.2);
}

.home.page .main-menu-wrap > div a.resorts-list:hover {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.menu > div > a {
    font-size: 13px;
}

.main-menu-wrap > div a.site-logo {
    color: black;
    font-size: 24px;
    margin-top: 11px;
}

.home.page .main-menu-wrap > div a.site-logo {
    opacity: .9;
}

.home.page .main-menu-wrap > div a.site-logo:hover {
    opacity: 1;
}

.user-button {
    display: table;
    margin-top: 11px;
    border: 1px solid rgba(42, 127, 221, 0.2);
    border-radius: 3px;
    padding: 3px 21px 3px 3px;
    font-size: 13px;
    position: relative;
    z-index: 9;
}

.user-button > * {
    display: table-cell;
    vertical-align: middle;
}

.user-button > :last-child:after {
    content: "▾";
    display: block;
    position: absolute;
    right: 7px;
    top: 7px;
    font-size: 19px;

}

.user-photo {
    border-radius: 2px;
    overflow: hidden;
}

.user-photo > img {
    display: block;
}

.user-name {
    padding-left: 7px;
}

.user-cp-menu-wrap > .active > div,
.resort-menu-wrap > .active > div {
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 13px;
    margin: 10px 10px 0 0;
	 cursor: pointer;
}

.site-footer {
    /*height: 84px;*/
	background-color: #e9f0fa;
}

.objects-preview-list {
    margin-right: -21px;
}

.object-preview {
    float: left;
    margin: 0 21px 21px 0;
    width: 306px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 9px;
    transition: all 0.3s ease-in-out;
}

.object-preview:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.objects-preview-list > .all-objects-link {
    float: left;
    width: 100%;
    text-align: center;
    border: 0;
    padding: 0;
    margin: 9px 0 15px 0;
}

.object-preview-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.object-preview-info {
    display: table;
    margin-top: 8px;
	position: relative;
}

.object-preview-info > div {
    display: table-cell;
    vertical-align: top;
    padding-right: 15px;
}

.object-preview-photo > a > img {
    display: block;
}

.object-preview-address {
    font-size: 12px;
    line-height: 1.2;
    color: #aaa;
    margin-top: 2px;
}

.choose-plot-section h2 {
    margin-bottom: 30px;
    margin-top: 60px;
}

.last-posts-el > a {
    line-height: 23px;
}

b,
strong {
    font-weight: bold;
}

.object-preview-price {
    font-size: 14px;
	position: absolute;
    bottom: 0;
    width: 190px;
	text-align: right;
}

.object-preview-price > .start {
    margin-top: 30px;
}

.object-preview-price > .start > span {
    font-weight: bold;
    font-size: 16px;
}

.object-preview-price > .step {
    margin-top: 3px;
}

.objects-types-buttons {
    margin-top: 17px;
    margin-bottom: 30px;
}

.objects-types-buttons > a {
    margin-right: 6px;
}

.button {
    border: 1px solid rgba(42, 127, 221, 0.2);
    padding: 7px 10px;
    border-radius: 3px;
    display: inline-block;
    font-size: 13px;
    color: #729aa8;
}

.robo-pay {
    background: transparent;
    outline: none;
    cursor: pointer;
    margin-top: 22px;
}

.button:hover {
    border-color: rgba(233, 121, 1, 0.2);
    color: #e97901;
}

.map-preview {
    margin-top: 11%;
}

.map-preview img {
    display: block;
}

.map-preview > a {
    margin-top: 20px;
    display: block;
}


.list-element-with-img {
    display: table;
	position: relative;

}

.list-element-with-img {
    display: table;
}

.display-block {
	display: block!important;
}

.list-element-with-img > div {
    display: table-cell;
    vertical-align: top;
}

.room-description .list-element-img {
    width: 115px;
}

.list-element-img {
    padding-top: 3px;
    padding-right: 15px;
}

.list-element-img > a > img {
    display: block;
}

.list-element-title,
.list-element-title > * {
    font-size: 21px;
	padding-top: 7px;
}
.list-element-title, .list-element-title > * {
    max-height: 50px;
    overflow: hidden;
}
.list-element-price,
.list-element-features-list,
.list-element-address,
.list-element-player,
.list-element-content,
.list-element-payment,
.list-element-marks,
.list-element-review-author,
.list-element-period {
    margin-top: 15px;
    font-size: 14px;
}

.list-element-payment {
    margin-top: 10px;
}

.list-element-marks > div {
    margin-bottom: 10px;
}

.mark-title {
    width: 110px;
    float: left;
}

.list-element,
.list-element-with-img {
    margin-top: 30px;
}

.list-element-with-img.room-description {
    margin-top: 10px;
}

:first-child.list-element,
:first-child.list-element-with-img {
    margin-top: 0;
}

.room-description {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 30px;
    width: 100%;
}

.room-description:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.list-element-with-img.object > div {
     display: table-cell;
    
    vertical-align: top;

}
.list-element-with-img.object > .list-element-info {
    width: 360px;
}
 .list-element-with-img.object > .list-element-price.top {
    margin-top: 10px;
}
.list-element-with-img.object  > .list-element-price2{
	width: 130px;
	/*padding-right: 5px;*/
	text-align: center;
	padding-top: 43px;
}
.list-element-with-img.object > .list-element-price2::before {
  border: 1px solid #e3e2de;
  content: "";
  float: left;
  height: 90px;
  margin-top: -20px;
}
 .list-element-price22::before {
  border: 1px solid #e3e2de;
  content: "";
  float: left;
  height: 90px;
  margin-top: -20px;
}
 .list-element-price22{

	width: 130px;
	/*padding-right: 5px;*/
	text-align: center;
	padding-top: 46px;
}
 .list-element-price23{

	width: 140px;
	text-align: center;
	padding-top: 0px;
	color: #555555;
	font-size: 14px;
}

.accom-price-amount {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.accom-catalog-preview-tabs {
    border: 0 none;
    bottom: 0;
    margin-bottom: -14px;
    overflow: hidden;
    padding: 0;
position: absolute;
}
.fa.fa-cogs, .fa.fa-cutlery {float: left;}
.fa.fa-cogs, .fa.fa-cutlery,.fa.fa-map-marker {color: #729aa8; font-size:18px}
.fa.fa-cogs{margin-right: 4px;}
.fa.fa-cutlery{margin-right: 10px;}
.fa.fa-map-marker {margin-right: 4px;}

.accom-catalog-preview-tabs li {
    float: left;
    height: 40px;
    list-style: outside none none;
    margin-left: 0;
    overflow: hidden;
    padding-right: 3px;
    white-space: nowrap;
}
.accom-catalog-preview-tabs a {
    color: #6a6a6a;
    display: block;
    font-size: 12px;
    line-height: 36px;
    padding: 0 4px;
    text-decoration: none;
    text-transform: uppercase;
}
.room-description .list-element-img {
    width: 115px;
}
.list-element-with-img.object .list-element-img img {
    /*height: auto;
    width: 210px;*/


  width: auto;

	
}
.list-element-with-img.object > .list-element-img {
    padding-top: 0px;
    padding-right: 15px;
	width: 220px;
    overflow: hidden;
}
.list-element-img.new > a {
  background-size: cover;
  display: block;
  height: 140px;
  width: 210px;
}
.list-element-with-img.object > .list-element-address  > .fa{
color:#729aa8;
}
.accom-amenities {
    font-size: 10px;
    list-style: outside none none;
    padding: 0;
	
}
.accom-amenities li {
    background-color: #ffffff;
    border-radius: 4px;
    float: left;
    line-height: 1;
    margin-right: 4px;
    padding: 4px;
	list-style: outside none none;
	font-size: 13px;
	 margin-bottom: 1px;
	  background-color: #a8b8ff;

}
.accom-amenities li.no {
  background-color: #d5d5d5;
}
.nomer > li.no {
  background-color: #ccc;
}
.modalokno  {
 display:none; max-width: 1000px;height: 685px;
 width: 100%;
}
.modalokno_left {display: block; float: left; margin-right: 50px; width: 500px;}
.modalokno_right {float: left; min-height: 435px; width: 300px; padding-top:20px;  text-align: center}
.modalokno .prices {
  max-width: 250px;
  margin: 0 auto;
}
.modalokno .uslugi{margin-top: 90px;position:relative;left: 63px;}
.modalokno h3 {
  text-align: center;
}
.row {
	margin-bottom: 18px;
	/* position: relative; */
	/* display: block; */
	height: 300px;
}
.blog_left,.blog_right{float:left;width: 314px; height:300px;position: relative;background-size: cover;}
.blog_right2 {float:right;width: 314px; height:300px;position: relative;background-size: cover;	margin-top: 0px;margin-bottom: 0px;background-color: rgb(248, 248, 248);}
.blog_right2 .img {
	height: 150px;
	overflow: hidden;
	background-position: center;
background-size: cover;
}
.blog_right2 img {
	width: 100%;
	  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
}
.row .blog_right2 a.link {
	margin-bottom: 15px;
	color: #000;
	margin-top: 10px;
	padding: 0 10px;
}
.row .blog_right2 p {
    padding: 0 10px;
    max-height: 65px;
    overflow: hidden;
}
.background{
	background-size: cover;
	width: 100%; height:100%;
	-webkit-transform:scaleX(-1);
    -moz-transform:scaleX(-1);
    -ms-transform:scaleX(-1);
    -o-transform:scaleX(-1);
    transform:scaleX(-1);
	}
.story__inner::before {
    background-color: rgba(0,0,0,.6);
}
.story__inner {
	background-color: rgba(0,0,0,.6);
	padding: 19px 20px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
	color: #fff;
}
.row a,#qunit-fixture a {
	font-size: 20px;
	color: #fff;
	margin-bottom: 20px;
	display: block;
}
.row a:hover,,#qunit-fixture a:hover, .row .blog_right2 a.link:hover{
	color: #e97901;;

}
.room-description  img {
  height: 130px;
  width: auto;
  float:left;

  
}
.room-description .fancybox > img {
    object-fit: fill;
	width: 185px;
	height: auto;
	max-height: 130px;
	object-fit: none;
  object-position: 50% 50%; /* Даже если это не объявлять, изображение всё равно отцентрируется. */
object-fit: cover;
width: 100%;
height: 100%;
min-height: 130px;
}
.list-element-with-img.object > .list-element-price > span.desc {
    font-weight: normal;
	float: left;
	margin-top: 4px;
}
.list-element-with-img.object > .list-element-img > a > img {
    /*display: block;*/
	display: table-cell;
    margin: -20px auto 0 -20px;
    text-align: center;
}
.list-element-img .fancybox.modal::before {
  display: none;
}
.list-element-with-img.object > .list-element-info > .list-element-title,
.list-element-with-img.object > .list-element-info > .list-element-title > * {
    font-size: 18px;
	margin-top: 4px;

}
.accom-price-amount2 {
    margin-right: 4px;
}
.list-element-with-img.object > .list-element-info > .list-element-price,
.list-element-with-img.object > .list-element-info > .list-element-features-list,
.list-element-with-img.object > .list-element-info > .list-element-address,
.list-element-with-img.object > .list-element-info > .list-element-player,
.list-element-with-img.object > .list-element-info > .list-element-content,
.list-element-with-img.object > .list-element-info > .list-element-payment,
.list-element-with-img.object > .list-element-info > .list-element-marks,
.list-element-with-img.object > .list-element-info > .list-element-review-author,
.list-element-with-img.object > .list-element-info > .list-element-period {
    margin-top: 0px;
    font-size: 16px;
display: inline-block;
width: 100%;
	}
.list-element-with-img.object > .list-element-with-img.object .list-element-info .list-element-address {
    font-size: 14px;
}

.list-element-with-img.object > .list-element-payment {
    margin-top: 10px;
}

.list-element-with-img.object > .list-element-marks > div {
    margin-bottom: 10px;
}

.list-element-with-img.object > .mark-title {
    width: 110px;
    float: left;
}


.list-element-with-img.object {
	background: radial-gradient(circle farthest-corner at 100px 50px, #f9f9f9, #efefef);
	border-radius: 4px;
    margin-top: 10px;
	width: 100%;
	display: block;
    height: 140px;
    overflow: hidden;
    position: relative;
	padding-right: 5px;
	/*box-shadow: 0 1px 4px rgba(0, 0, 0, .3), 0px 0 20px -23px rgba(0, 0, 0, .8), 0px 0 20px -23px rgba(0, 0, 0, .8), 0 0 40px rgba(0, 0, 0, .1) inset;*/
}

.list-element-with-img.object > .list-element-with-img.room-description {
    margin-top: 10px;
}

:first-child.list-element-with-img.object > .list-element,
:first-child.list-element-with-img.object > .list-element-with-img {
    margin-top: 0;
}

.list-element-with-img.object > .room-description {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 30px;
    width: 100%;
}

.list-element-with-img.object > .room-description:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}


span.positive,
.positive-review .list-element-title > span {
    color: #009912;
}

span.negative,
.negative-review .list-element-title > span {
    color: #ff0000;
}

.song .list-element-content {
    display: none;
}

.list-element-features-list > div {
    background: #ddffd3;
    padding: 5px 10px;
    font-size: 13px;
    margin-right: 6px;
    border-radius: 3px;
    color: #186900;
    display: inline-block;
}

.list-element-price > span {
    font-weight: bold;
}

.map {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.map > .map-wrap {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100% !important;
}

.map-wrap > * {
    width: 100%;
    height: 100%;
}

.user-cp-menu-wrap div.active,
.resort-menu-wrap div.active {
    margin-left: -10px;
}

.video-helper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.video-helper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section {
    padding-top: 30px;
}

.map-legend {
    text-align: center;
    margin-right: -20px;
    font-size: 14px;
    line-height: 22px;
}

.map-legend > div {
    display: inline-table;
    width: 200px;
    margin-right: 20px;
    margin-top: 20px;
}

.map-legend > div > div {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.map-legend .marker-img {
    width: 34px;
}

.map-legend .marker-description {
    padding-left: 7px;
}

.list-element-player > audio {
    width: 635px;
}

.room-description .list-element-content .full,
.room-description.active .list-element-content .short {
    display: none;
}

.room-description.active .list-element-content .full {
    display: block;
}

.prices {
    font-size: 14px;
    line-height: 14px;
    /*table-layout: fixed;*/
	width: 100%;
}

.prices tr.divider td {
    height: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

b {
    font-weight: bold;
}

.prices td {
    vertical-align: middle;
    padding: 10px 20px 10px 0px;
    text-align: left;
    min-width: 120px;
}

.prices td div {
    margin-bottom: 6px;
}

.prices td div:last-of-type {
    margin-bottom: 0;
}

.prices tr:hover {
    background: rgba(0, 0, 0, 0.1);
}

.prices tr:first-of-type:hover,
.prices tr:nth-of-type(1),
.prices tr.divider:hover {
    background: #fff;
}

.prices tr:first-of-type b {
    margin-bottom: -10px;
    display: block;
}

.contacts {
  /*  margin-top: 45px;*/
}

.contacts > .header {
    background: #ffedac;
    color: #9f5d00;
    padding: 10px 0;
    text-align: center;
    border-radius: 3px 3px 0 0;
    font-size: 15px;
    font-weight: bold;
}

.contacts > .body {
    background: #fff9e3;
    text-align: center;
    border-radius: 0 0 3px 3px;
    padding: 20px 0 5px 0;
}

.contact {
    margin-bottom: 20px;
}

.contact > .phone {
    font-size: 21px;
    margin-bottom: 6px;
}

.contact > .name {
    color: rgba(0, 0, 0, 0.4);
    font-size: 13px;
}

.contacts > .body > .notice {
    font-size: 13px;
    padding: 0 20px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 18px;
    margin-bottom: 20px;
}

.write-message {
    margin-bottom: 20px;
}

.map-preview img {
    max-width: 100%;
    width: 100%;
}

.photo-section .photos-box img {
    display: block;
}

.photo-section .photos-box a {
    margin-right: 3px;
    margin-top: 3px;
    float: left;
}

.mmmm{
    margin-right: -20px;
}

.user-menu {
    padding: 10px 0 20px 0;
    display: none;
    margin-top: -1px;
    margin-left: -79px;
    background: #fff;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px 0 3px 3px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.active .user-menu {
    display: block;
}

.active .user-button:hover,
.active .user-button {
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px 3px 0 0;
}

.user-menu ul > li > a {
    width: 100%;
    display: block;
    padding: 8px 20px;
    font-size: 13px;
}

.user-menu ul > li > a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.user-menu .logout {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.active .user-button {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.user-edit-form,
.add-review-form,
.add-message-form {
    max-width: 360px;
}

.form-field textarea {
    width: 100%;
    height: 96px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-top: 1px solid #aaa;
    border-radius: 3px;
    resize: vertical;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.add-review-form2 textarea {
    height: 200px;
}
.publish-object-section.reviews_content {
    margin-bottom: 10px;
    margin-top: 10px;
}
.publish-object-section.reviews_content {
    margin-bottom: 30px;
    margin-top: 0;
}
.form-field select {
    width: 100%;
    height: 36px;
    padding: 5px 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-top: 1px solid #aaa;
    border-radius: 3px;
}

.period > div {
    display: table;
    width: 100%;
}

.period > div > div {
    display: table-cell;
    width: 48%;
}

.period > div > div:first-of-type {
    padding-right: 4%;
}

.stars-replacer {
    display: table;
}

.stars-replacer > div {
    display: table-cell;
    font-size: 14px;
    vertical-align: top;
}

.stars-replacer .title {
    padding-top: 5px;
    width: 120px;
}

.stars > div {
    cursor: pointer;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('images/gray-star.svg') center;
    background-size: 130%;
}

.stars > div.active,
.stars > div.hover {
    background: url('images/yellow-star.svg') center;
    background-size: 130%;
}

.add-review-form .short,
.add-review-form .from {
    margin-bottom: 30px;
}

.list-element-marks > div {
    margin-bottom: 0;
}

.list-element-marks .stars > div {
    cursor: initial;
}

.auth-form-wrap.lefted {
    margin-left: 0;
    margin-right: 0;
}

.add-message-form .children,
.add-message-form .date-out,
.add-message-form .phone {
    margin-bottom: 30px;
}

.result-ok-message {
    background: #ddffd3;
    padding: 20px;
    font-size: 13px;
    border-radius: 3px;
    color: #186900;
    margin-bottom: 20px;
    line-height: 18px;
}

.resorts-list-container {
    display: none;

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 20px;
    top: 41px;
    right: 20px;
    background: white;
    z-index: 99;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 29px;
    margin-bottom: 41px;

    font-size: 14px;
    line-height: 18px;
}

.resorts-list-active .resorts-list-container {
    display: block;
}

.resorts-container {
  -webkit-column-count: 3;
  -webkit-column-gap: 20px;
  -moz-column-count: 3;
  -moz-column-gap: 20px;
  column-count: 3;
  column-gap: 20px;
}

.resorts-container > div {
position:relative;
margin-bottom: 40px;
padding-right: 0px;
width: 100%;
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;

}
.resorts-container > div:nth-child(4n) {
margin-bottom: -10px;
}


.resorts-container .title {
    color: #aaa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.resorts-category ul > li,.single-object .resorts-category ul > li {
    margin-bottom: 5px !important;;
}

.prices tr td:first-of-type {
    width: 20%;
    text-align: left;
}

.resorts-list-active .main-menu-wrap .resorts-list {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px 3px 0 0;
}

.resorts-list:after {
    content: "▾";
    display: block;
    position: absolute;
    right: 7px;
    top: 2px;
    font-size: 19px;
}

.resort-category-title {
    font-size: 18px;
    line-height: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-right: 20px;
    color: #aaa;
}

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

.tabs-titles > a {
    display: table-cell;
    vertical-align: middle;
    width: 20%;
    text-align: center;
    padding: 12px 10px;
    background: rgba(0, 0, 0, 0.05);
}

.tabs-titles > a.active {
    background: rgba(0, 0, 0, 0.1);
}

.tabs-content > div {
    display: none;
}

.tabs-content > div.active {
    display: block;
}

.phone-with-comment:first-of-type {
    margin-top: 0;
}

.phone-with-comment {
    margin-top: 10px;
    display: table;
}

.phone-with-comment > div {
    margin-bottom: 8px;
    width: 50%;
    display: table-cell;
}

.phone-with-comment .phone input {
    border-radius: 3px 0 0 3px;
    border-right: 0;
}

.phone-with-comment .comment input {
    border-radius: 0 3px 3px 0;
}

.phone-with-comment > a {
    display: none;
}

.phone-with-comment:last-of-type > a {
    display: inline-block;
}

.phone-with-comment:nth-of-type(4) > a {
    display: none;
}

select > option:first-of-type {
    color: #aaa;
}

input[type="radio"] {
    margin: 0;
}

.prices-table td {
    padding: 0 8px 8px 0;
}

.prices-table tr :last-child {
    padding-right: 0;
}

.add-row-link {
    margin-right: 15px;
}

.yandex-map {
    height: 450px;
    width: 100%;
}

.multiple-photo-container > * {
    float: left;
    margin: 0 15px 15px 0;
}

.mw380 {
    max-width: 380px;
}

.multiple-photo-container .photo-preview-wrap {
    height: 160px;
}

.multiple-photo-container .progress-bar {
    bottom: 50px;
}

.multiple-photo-container .image-caption {
    margin-top: 5px;
    height: 32px;
    font-size: 14px;
}

.header-ban {
    display: block;
    width: 100%;
    height: 350px;
    margin-top: -57px;
    padding-top: 110px;
    position: relative;
    background: url("./images/header1.jpg") no-repeat center;
    background-size: cover;
}

.promo-text {
    color: #fff;
    font-size: 33px;
    line-height: 40px;
    max-width: 780px;
    margin-bottom: 40px;
	text-align: center;
    text-shadow: 0 5px 8px #000;
}

.to-bottom {
    position: absolute;
    bottom: 20px;
    font-size: 13px;
    width: 100%;
}

.links-list {
	color: #fff;
    opacity: .9;
    font-size: 20px;
    line-height: 33px;
	text-align: center;
    max-width: 780px;
}

.cur-resort > * {
    opacity: .9;
    font-size: 13px;
    line-height: 1;
    color: #fff;
}

.cur-resort > a,
.links-list > li > a {
    color: #fff;
    opacity: .9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cur-resort > a:hover,
.links-list > li > a:hover {
    opacity: 1;
}

.resorts-front-page {
    font-size: 14px;
    line-height: 18px;
    margin-top: 60px;
}

.resorts-front-page .resort-category-title,
.resorts-front-page .resorts-container .title {
    color: #000;
}

.content-front-page {
    margin-top: 30px;
}

.resorts-front-page h2,
.content-front-page h2 {
    font-size: 28px;
    line-height: 1;
    margin: 30px 0 20px 0;
}
.showme{
    /*display: none;*/
    position: absolute;
    left: -19px;
    margin-top: 10px;
    cursor: pointer;
}
.clearme{
    display: none;
}
.showhim:hover .showme{
    display : block;
}
.aif-dropzone {
    width: 120px;
    height: 120px;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px dashed #ccc;
    cursor: pointer;
    background: url('./images/photo@2x.svg') center no-repeat;
    background-size: 21px 21px;
    position: relative;
}

.publish-object-section {
    background: #e9f0fa;
    padding: 30px 0;
    margin-top: 60px;
}

.publish-object {
    width: 100%;
    height: 46px;

    border: 0;
    padding: 0;
    outline: none;

    display: block;

    background: none;
}

.publish-object > span {
    height: 42px;
    width: 100%;

    padding-top: 11px;
    padding-left: 20px;
    padding-right: 20px;

    display: block;

    position: relative;
    z-index: 1;

    border-radius: 3px;

    background: #bbb;
    color: #fff;

    font-size: 18px;
}

.publish-object:after {
    content: ' ';
	background: #159c26;
    height: 42px;
    width: 100%;
    display: block;
    position: relative;
    z-index: 0;
    border-radius: 3px;
    margin-top: -38px;
}

.publish-object span {
    background: #4ab857;
}

.publish-object:active span {
    top: 3px;
}

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

.publish-object-section .pull-left {
    max-width: 520px;
    font-size: 24px;
    line-height: 1.2;
}

.aurokk-image-field .images {
    margin: 0 -15px 0 0;
}

.aurokk-image-field .images:after {
    content: " ";
    display: block;
    clear: both;
}

.aurokk-image-field .images > li {
    width: 120px;
    /*height: 160px;*/
    float: left;
    list-style: none;
    margin-right: 15px;
    margin-bottom: 15px;
}

.aurokk-image-field .images img {
    box-shadow: none;
}

.aurokk-image-field .images .image-caption {
    box-shadow: none;
    margin-top: 10px;
}

.aurokk-image-field .images .image-caption input {
    height: 27px;
    padding: 5px 9px;
    font-size: 11px;
    border: 1px solid #ccc;
    border-top: 1px solid #aaa;
    border-radius: 3px;
    width: 100%;

}

.aurokk-image-field .images .image-caption input:focus {
    border-color: #3d5477;
}

.aurokk-image-field .images .dz-image-preview {
    position: relative;
}

.aurokk-image-field .images .dz-details {
    height: 120px;
    position: relative;
    margin-bottom: 5px;
}

.aurokk-image-field .images .dz-details img {
    height: 120px;
    width: 120px;
    display: block;
}

.aurokk-image-field .images .dz-remove {
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: 0.5;
    width: 22px;
    height: 22px;
    background: #000;
    border-radius: 3px;
	cursor:pointer;
	font-size: 26px;
}

.aurokk-image-field .images .dz-progress {
    display: none;
}

.aurokk-image-field .images .dz-processing .dz-progress {
    display: block;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(200,200,200,0.7);
}

.aurokk-image-field .images .dz-progress-bar {
    width: 90%;
    margin: 0 auto;
    height: 10px;
    top: 90%;
    position: relative;
}

.aurokk-image-field .images .dz-progress-bar .dz-upload {
    display: block;
    height: 100%;
    background: #fff;
    width: 0;
}

.aurokk-image-field .images .dz-removing .dz-progress-bar .dz-upload {
    display: none;
}

.aurokk-image-field .images .ui-sortable-helper {
    cursor: move;
}
.aif-upload-button.disabled{
    display: none;
}
.titletr{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    text-align: center;
}

.otstup{
    height: 15px;
}


.content .alignleft {
    float: left;
    margin-top: 5px;
    margin-right: 15px;
	margin-bottom: 10px;
}

.photos-box.mmmm a:first-of-type img {
    border-radius: 3px 0 0 0;
}

.photos-box.mmmm a:nth-of-type(6) img {
    border-radius: 0 3px 0 0;
}

.photos-box.nnnn a:first-of-type img {
    border-radius: 3px 0 0 0;
}

.photos-box.nnnn a:nth-of-type(6) img {
    border-radius: 0 3px 0 0;
}

.photos-box.mmmm a:nth-of-type(30) img {
    border-radius: 0 0 3px 0;
}

.photos-box.mmmm a:nth-of-type(25) img {
    border-radius: 0 0 0 3px;
}

.one-row-contact {
    margin-bottom: 15px;
}

.more-photos-link {
    display: inline-block;
    width: 73px;
    line-height: 70px;
    height: 73px;
    font-size: 22px;
    vertical-align: top;
    border: 1px solid rgba(0, 173, 92, 0.2);
    text-align: center;
    color: #00ad5c;
    border-radius: 0 0 3px 0;
	margin: 2px 2px;
}
.reviews_content2 .pull-right {
    margin-top: 22px;
}
.reviews_content .pull-right {
    margin-top: 22px;
}
.single-number-photos {
    margin-top: 20px;
}

.more-photos-link:hover {
    border-color: rgba(233, 121, 1, 0.2);
}

.copyright {
    padding-top: 4px;
    font-size: 12px;
    margin-top: 14px;
    border-top: 1px solid #fff;
	background-color: #e9f0fa;
}

.edit .form-section h2 {
    margin-top: 10px;
}

.form-section-title a {
    font-size: inherit;
    position: relative;
}

.form-section-title a:before {
    content: "";
    width: 15px;
    height: 9px;
    position: absolute;
    left: -22px;
    top: 13px;
    background: url('./images/down-arrow-big.png') no-repeat;
    background-size: 15px 9px;
}

.form-section.open .form-section-title a:before {
    transform: rotate(0deg);
}

.form-section-title a:hover:before {
    background: url('./images/down-arrow-big-hover.png') no-repeat;
    background-size: 15px 9px;
}

.form-section.closed .form-section-title a:before {
    transform: rotate(-90deg);
}

.form-section.closed .form-section-content {
    display: none;
}

p.hint {
    margin-top: 15px;
    background: #fff9e3;
    border: 1px solid #ffedac;
    border-radius: 3px;
    padding: 10px;
    color: rgba(0, 0, 0, 0.6);
}

select.empty {
    color: #aaa;
}

select > option {
    color: #000;
}

select > option[disabled] {
    color: #aaa;
}

.form-field.numb-title,
.form-field.start-price,
.form-field.address,
.form-field.email,
.form-field.site,
.form-field.phones,
.form-field.resort,
.form-field.object-type,
.form-field.title,
.form-field.length{
    max-width: 360px;
}

.form-field.checkboxes label {
    margin-bottom: 8px;
}

.form-field.photo .hint {
    position: relative;
    top: -11px;
}

.num-price-part {
    font-size: 14px;
}

.form-field.num-prices {
    white-space: nowrap;
}

.num-prices .scrollable {
    padding-bottom: 15px;
}

.num-price-part {
    width: 120px;
    display: inline-block;
}

.num-prices .price input {
    border-radius: 0;
    border-left: 0;
}

.num-prices > div :first-child .price input {
    border-radius: 3px 0 0 3px;
    border-left: 1px solid #ccc;
}

.num-prices > div :last-child .price input {
    border-radius: 0 3px 3px 0;
    border-right: 1px solid #ccc;
}

.available input {
    margin: 0;
}

.num-prices .month-name,
.num-prices .available,
.num-prices .join-wrap,
.num-prices .split-wrap {
    margin-bottom: 10px;
}

.split-wrap a,
.join-wrap a {
    display: block;
    width: 13px;
    height: 15px;
}

.split-wrap a {
    background: url('./images/split-icon.png') center no-repeat;
    background-size: 13px 15px;
}

.split-wrap a:hover {
    background: url('./images/split-icon-hover.png') center no-repeat;
    background-size: 13px 15px;
}

.join-wrap {
    display: none;
}

.splitted .join-wrap {
    display: block;
}

.splitted .split-wrap {
    display: none;
}

.join-wrap a {
    background: url('./images/join-icon.png') center no-repeat;
    background-size: 11px 13px;
}

.join-wrap a:hover {
    background: url('./images/join-icon-hover.png') center no-repeat;
    background-size: 11px 13px;
}

.num-prices {
    position: relative;
}

.num-prices .blur {
    display: none;

    position: absolute;
    right: 0;
    top: 0;
    width: 112px;
    height: 112px;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+75,1+100 */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 75%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-8 */
}


.number-title a {
    font-size: inherit;
    position: relative;
	color: #fff;
	background: #07c none repeat scroll 0 0;
	border-radius: 3px;
	padding: 2px 10px;
}
.date_range a {
    font-size: inherit;
    position: relative;
    color: #fff;
    background: #07c none repeat scroll 0 0;
    border-radius: 3px;
    top: 28px;
    padding: 4px 7px 7px 7px;
    margin: 0px 4px 4px 4px;
}

.number-title .delete {
    color: #fff;
	background: #07c none repeat scroll 0 0;
	border-radius: 3px;
	padding: 2px 10px;
}

.number-title .open:before {
    content: "";
    width: 12px;
    height: 7px;
    position: absolute;
    left: -22px;
    top: 11px;
   /*  background: url('./images/down-arrow-big.png') no-repeat; */
    background-size: 12px 7px;
}

.number-field.open .number-title .open:before {
    transform: rotate(0deg);
}

 .number-title a:hover:before {
   /* background: url('./images/down-arrow-big-hover.png') no-repeat;*/
    background-size: 12px 7px;
} 

.number-field.closed .number-title .open:before {
    transform: rotate(-90deg);
}

.number-field.closed .number-content {
    display: none;
}

.add-num a {
    font-size: inherit;
    position: relative;
	color: #fff;
	background: #07c none repeat scroll 0 0;
	border-radius: 3px;
	padding: 2px 10px;
}

.closed_tab {
background-color: #f1f1f1!important;
}

/* .add-num a:before {
    content: "";
    width: 12px;
    height: 2px;
    position: absolute;
    left: -22px;
    top: 13px;
    background: #2a7fdd;
} */

/* .add-num a:after {
    content: "";
    width: 2px;
    height: 12px;
    position: absolute;
    left: -17px;
    top: 8px;
    background: #2a7fdd;
} */

.add-num a:hover:before,
.add-num a:hover:after {
    background: #e97901;
}

.modal-prices-num {
    transform: translateZ(0);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.2);
    z-index: 9999;
}

.modal-prices-num .split-form-wrap {
    display: table;
    width: 100%;
    height: 100%;
}

.modal-split-form {
    display: table-cell;
    vertical-align: middle;
}

.split-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 5px;
    padding: 1px 30px 40px 30px;
}

/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
    display: none;
}
.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}
.ui-helper-clearfix:after {
    clear: both;
}
.ui-helper-clearfix {
    min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
    z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
    cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .5em .5em .7em;
    min-height: 0; /* support: IE7 */
    font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
    padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
    padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    position: absolute;
    left: .5em;
    top: 50%;
    margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}
.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}
.ui-button {
    display: inline-block;
    position: relative;
    padding: 0;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
    text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
    width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
    width: 2.4em;
}
.ui-button-icons-only {
    width: 3.4em;
}
button.ui-button-icons-only {
    width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
    display: block;
    line-height: normal;
}
.ui-button-text-only .ui-button-text {
    padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
    padding: .4em;
    text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
    padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
    padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
    padding-left: 2.1em;
    padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
    padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
    position: absolute;
    top: 50%;
    margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
    left: 50%;
    margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
    left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
    right: .5em;
}

/* button sets */
.ui-buttonset {
    margin-right: 7px;
}
.ui-buttonset .ui-button {
    margin-left: 0;
    margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none;
}
.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}
.ui-datepicker .ui-datepicker-next {
    right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
    right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 45%;
}
.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}
.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}
.ui-datepicker td {
    border: 0;
    padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em .6em;
    width: auto;
    overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
    width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}
.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
    direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px;
}
.ui-dialog {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative;
}
.ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
}
.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer;
}
.ui-dialog .ui-resizable-se {
    width: 12px;
    height: 12px;
    right: -5px;
    bottom: -5px;
    background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}
.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none;
}
.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: none;
}
.ui-menu .ui-menu {
    position: absolute;
}
.ui-menu .ui-menu-item {
    position: relative;
    margin: 0;
    padding: 3px 1em 3px .4em;
    cursor: pointer;
    min-height: 0; /* support: IE7 */
    /* support: IE10, see #8844 */
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
    margin: -1px;
}

/* icon support */
.ui-menu-icons {
    position: relative;
}
.ui-menu-icons .ui-menu-item {
    padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: .2em;
    margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
    left: auto;
    right: 0;
}
.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
    background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
    height: 100%;
    filter: alpha(opacity=25); /* support: IE8 */
    opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none;
}
.ui-resizable {
    position: relative;
}
.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
    display: none;
}
.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}
.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}
.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}
.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}
.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}
.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}
.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}
.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
.ui-selectable {
    -ms-touch-action: none;
    touch-action: none;
}
.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black;
}
.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.ui-selectmenu-menu .ui-menu {
    overflow: auto;
    /* Support: IE7 */
    overflow-x: hidden;
    padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
    padding: 2px 0.4em;
    margin: 0.5em 0 0 0;
    height: auto;
    border: 0;
}
.ui-selectmenu-open {
    display: block;
}
.ui-selectmenu-button {
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
    right: 0.5em;
    left: auto;
    margin-top: -8px;
    position: absolute;
    top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
    text-align: left;
    padding: 0.4em 2.1em 0.4em 1em;
    display: block;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ui-slider {
    position: relative;
    text-align: left;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal {
    height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.ui-slider-vertical {
    width: .8em;
    height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}
.ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none;
}
.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
}
.ui-spinner-input {
    border: none;
    background: none;
    color: inherit;
    padding: 0;
    margin: .2em 0;
    vertical-align: middle;
    margin-left: .4em;
    margin-right: 22px;
}
.ui-spinner-button {
    width: 16px;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
    border-top: none;
    border-bottom: none;
    border-right: none;
}
/* vertically center icon */
.ui-spinner .ui-icon {
    position: absolute;
    margin-top: -8px;
    top: 50%;
    left: 0;
}
.ui-spinner-up {
    top: 0;
}
.ui-spinner-down {
    bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
    /* need to fix icons sprite */
    background-position: -65px -16px;
}
.ui-tabs {
    position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
    padding: .2em;
}
.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1em;
    text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: none;
}
.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
    border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
    font-family: Verdana,Arial,sans-serif;
    font-size: 1.1em;
}
.ui-widget .ui-widget {
    font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Verdana,Arial,sans-serif;
    font-size: 1em;
}
.ui-widget-content {
    border: 1px solid #aaaaaa;
    background: #ffffff url("images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
    color: #222222;
}
.ui-widget-content a {
    color: #222222;
}
.ui-widget-header {
    border: 1px solid #aaaaaa;
    background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
    color: #222222;
    font-weight: bold;
}
.ui-widget-header a {
    color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 1px solid #d3d3d3;
    background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
    font-weight: normal;
    color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
    color: #555555;
    text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 1px solid #999999;
    background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
    font-weight: normal;
    color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
    color: #212121;
    text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #aaaaaa;
    background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
    font-weight: normal;
    color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #212121;
    text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #fcefa1;
    background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
    color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
    color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
    color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter:Alpha(Opacity=70); /* support: IE8 */
    font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter:Alpha(Opacity=35); /* support: IE8 */
    background-image: none;
}
.ui-state-disabled .ui-icon {
    filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
    width: 16px;
    height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
    background-image: url("images/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
    background-image: url("images/ui-icons_222222_256x240.png");
}
.ui-state-default .ui-icon {
    background-image: url("images/ui-icons_888888_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
    background-image: url("images/ui-icons_454545_256x240.png");
}
.ui-state-active .ui-icon {
    background-image: url("images/ui-icons_454545_256x240.png");
}
.ui-state-highlight .ui-icon {
    background-image: url("images/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url("images/ui-icons_cd0a0a_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
    background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
    opacity: .3;
    filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
    margin: -8px 0 0 -8px;
    padding: 8px;
    background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
    opacity: .3;
    filter: Alpha(Opacity=30); /* support: IE8 */
    border-radius: 8px;
}

.month-split-form {
    margin: 12px 0 20px 0;
}

.month-split-intervals {
    margin-bottom: 20px;
}

.month-split-intervals {
    font-size: 14px;
}
/* 
.new-submit-button {

	background: linear-gradient(to bottom, #63CB43, #499631);
	border: 1px solid #63CB43;
    color: #fff;	
    width: 100%;
    padding: 9px 0;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    outline: none;
} */
.new-submit-button {
position: relative;
bottom: auto;
border: 1px solid #fff;
border-radius: 3px;
background-color: #5b0;
font-size: 19px;
font-weight: 700;
color: #fff;
padding: 14px 0 14px;
text-align: center;
    width: 100%;
	cursor: pointer;
} 
.new-submit-button:hover {
    opacity: .7;
}
.new-submit-button:active {
    background: #14a725;
}

.new-submit-button .preloader {
    display: inline-block;
    width: 18px;
    margin-right: -9px;
    text-align: left;
    opacity: 0;
}

form {
    position: relative;
}

.styled-checkbox {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    vertical-align: -2px;
    line-height: 14px;
    cursor: pointer;
    position: relative;
}

.styled-checkbox.checked:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 2px;
    position: absolute;
    top: 3px;
    left: 3px;
    background: rgba(0,0,0,0.8);
}

.styled-radio {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    vertical-align: -2px;
    line-height: 14px;
    position: relative;
    cursor: pointer;
}

.styled-radio.checked:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    background: rgba(0,0,0,0.8);
}

.subscribe-me .styled-checkbox,
.remember-me .styled-checkbox {
    margin-right: 4px;
}

.panorama {
   /*  height: 533px; */
    height: auto;
}

.gsInformer .nolink, .gsInformer a,
.gsInformer .gsLinks .leftCol b {
    font-size: 11px !important;
}

.scrollable-prices {
    /* padding-bottom: 20px; */
}

.prices-comment {
	background: #fff9e3;
	border: 1px solid #ffedac;
	border-radius: 3px;
	color: rgba(0, 0, 0, 0.6);
    margin-top: 15px;
	padding: 10px;
}
.prices-comment.new {
	background: #fff;
	border: 1px solid #fff;
	padding: 0px;
	margin: 5px 0;
}

.site-header {
    position: relative;
    z-index: 999;
}

.result-ok-message .red-link {
    color: #ff0000;
    display: inline;
    margin: 0;
    -webkit-appearance: none;
    border: none;
    font-size: 12px;
    padding: 0;
}

.list-element-payment .red-link {
    color: #ff0000;
    display: inline;
    margin: 0;
    -webkit-appearance: none;
    border: none;
    font-size: 14px;
    padding: 0;
}

.result-ok-message > form,
.list-element-payment form {
    display: inline;
}
.photo-preview > img {
    height: auto;
    width: 120px;
}
.form-field.description > textarea {
    height: 300px;
}
.photos-box.mmmm .fancybox > img, .photos-box .fancybox.min > img, .photos-box.nnnn .fancybox > img {
    margin-top: 3px;
	margin-right: 3px;
	float: left;
	   /* max-width: 240px;*/
}
 
 .photos-box .fancybox.min > img {
	height: 150px;
    width: 100%;
	margin: 0 0;
 }

 .photos-box img:nth-child(1) {
	margin: 2px 2px!important;
 }
 
 
.form-field.times {
    max-width: 360px;
}
.list-element-with-img.object > .list-element-info > .list-element-address {
	border-radius: 2px;
    float: left;
    font-size: 13px;
    line-height: 1;
    list-style: outside none none;
    margin-bottom: 1px;
    margin-right: 5px;
    padding: 4px;
}
.list-catalog {
  background: radial-gradient(circle farthest-corner at 100px 50px, #f9f9f9, #efefef);
  display: block;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding:10px;
  border-radius: 3px;
  /* box-shadow: 0 1px 4px rgba(0, 0, 0, .3), 0px 0 20px -23px rgba(0, 0, 0, .8), 0 0 40px rgba(0, 0, 0, .1) inset; */
}
.button2 {
   
    border-radius: 3px;
    color: #729aa8;
    display: inline-block;
    font-size: 13px;
    padding: 7px 10px;
}

.active .button2 {
	    background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
    border-radius: 3px;
    cursor: pointer;

}
.form-field.checkboxes > label{
	   margin-bottom: 2px;
    cursor: pointer;
    display: block;
    font-size: 13px;
    line-height: 1;
}
.form-section-content .title {
    margin-bottom: 10px;
}
.objects-types-buttons .title {
    margin-bottom: 5px;
}
.form-section-content {
    margin-top: 10px;
}
div.catal {
    width: 71px;
}

.user-menu.catalog-menu > ul {

}
.user-menu.catalog-menu a {
    margin: 0;
    padding: 0;
}
.user-menu.catalog-menu {
    display: none;
    position: relative;
    z-index: 999999;
}
.user-menu.catalog-menu.active {
    background: #fff none repeat scroll 0 0;
    display: block;
	position: absolute;
}
.notactive .user-menu.catalog-menu.active {
    margin-top: 15px;
	padding: 5px 10px;
}
.fa.fa-sort-desc {
    display: block;
    float: right;
    margin-top: -2px;
}
a.catal {
    width: 50px;
}

.page .promo-text2 {
    max-width: 100%;
}

.promo-text2  h1, .promo-text2 h3 {
    text-align: center;
}
.auth-form-wrap .form-field.photo {
    float: none;
}
.page-id-14 td {
    border: 1px solid;
}

.usps-hor > li {
    list-style: outside none none;
}

.usps-hor-container {
    display: flex;
}
.usps-hor-container > img {
    float: left;
    height: 38px;
    width: auto;
}
.usp-block-subheader {
	    margin: 0 0 10px;
}
.usps-hor img {
    margin-right: 1em;
}
.header-banner2 {
    background: rgba(0, 0, 0, 0) url("http://new.theclaymoreproject.com/uploads/entities/1016/47953/images/Headers/0001%20Bedroom%20header.jpg") no-repeat scroll center center / cover ;
    display: block;
    height: 400px;
    margin-top: -57px;
    padding-top: 117px;
    position: relative;
    width: 100%;
}
.promo-text2 {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    color: #fff;
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 5px;
    max-width: 780px;
    opacity: 0.9;
}
.col-5 {
    float: left;
    width: 20%;
}

.col-4 {
    float: left;
    width: 33.33%;
}
.col-5 img {
    width: 80px;
}
.works {
    background: rgba(241, 242, 245, 0.8) none repeat scroll 0 0;
    height: 300px;
    padding: 10px 50px 0;
    width: 100%;
}
.abouts {

	 margin-bottom: 50px;
}
.padding {
    padding: 9px 100px;

}

.color-overlay {
    background: #e96656 none repeat scroll 0 0;

    padding: 50px 0;

    text-align: center;
    width: 100%;
}
.color-overlay li{

    display: inline-block;
    margin-bottom: 20px;
    min-height: 100px;
    min-width: 270px;
    padding: 10px;
    position: relative;
}
.color-overlay ul li span {
    border-radius: 4px;
    color: #02246d !important;
    display: block;
    font-size: 1em;
    font-weight: bold;
    margin: 0 auto;
    padding: 4px 15px;
    position: relative;
    text-align: center;
    transition: all 0.1s ease-out 0s;
}
.js-help-tooltip.js-to-signup.list-item-signup > img {
    height: 80px;
}
.w-iconbox-icon{
    box-shadow: 0 0 0 2px #1b98e0 inset;
    font-size: 36px;
    height: 50px;
    line-height: 50px;
    width: 55px;
	color: #1b98e0;
	border-radius: 50%;
    overflow: hidden;
}
.w-iconbox-icon i {
    line-height: inherit;
    vertical-align: top;
	padding-left: 7px;
}
.usps-hor-text-container {
    margin-left: 10px;
	width: 100%;
}
.three-fourth .list-element-with-img.object .list-element-address {
	color: #729aa8;
    font-size: 12px;
    line-height: 12px
}
.list-element-address  .fa.fa-map-marker {
    font-size: 12px;
}
.accom-amenities img {
    height: auto;
    width: 15px;
}
.sticky2 {
    margin: 0 auto;
    max-width: 250px;
}
.contacts.sticky-top {
    margin-top: 0;
}

.description-section .list-element-address {
    margin-bottom: 15px;
    color: #729aa8;
    font-size: 12px;
    line-height: 12px;
    margin-top: -20px;
}

.demo {
    width:100%;
	margin-bottom: 20px;
	background: #f2f4f8 none repeat scroll 0 0;
	/*max-height: 350px;*/
	overflow: hidden;
}
.demo ul {
    list-style: none outside none;
    padding-left: 0;
    margin-bottom:0;
}
.demo li {
    display: block;
    float: left;
    margin-right: 6px;
    cursor:pointer;
	overflow: hidden;
	position: relative;
	line-height: 350px;

}
.demo img {
    
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
  max-height: 400px;

}
/*
.demo img {
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}*/
.three-fourth .service li {
 margin-top: 3px;
    list-style: outside none none;

}
.service .w-iconbox-icon {
    float: left;
    font-size: 10px;
    height: 18px;
    line-height: 18px;
    width: 18px;
	box-shadow: 0 0 0 1px #1b98e0 inset;
}
.service .w-iconbox-icon i {
    padding-left: 4px;
    vertical-align: top;
}

.service span {
    float: left;
	    margin-left: 5px;
    margin-top: 3px;
	font-size: 14px;
}
.demo ul li a span {
    background-image: url("libs/img/magnifer.png");
    background-repeat: no-repeat;
	opacity: 0.5;
    display: none;
    height: 400px;
    left: 252px;
    position: absolute;
    width: 100%;
}

.demo ul li a:hover  span{display: block; }
.post-classic {
    display: inline-block;
    padding-bottom: 15px;
    padding-right: 15px;
    position: relative;
    vertical-align: top;
    width: 33%;
	
}
.post-preview {
    /*background: #f1f1f1 url("/img/preloader-dots-small.gif") no-repeat scroll center center;*/
    border-bottom: medium none;
    height: auto;
    margin: 0 auto;
    max-height: 170px;
    overflow: hidden;
    position: relative;
}
.post-title-link {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-bottom: medium none;
    color: #2f3235;
    cursor: pointer;
    line-height: 1.4;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
}
.post-content {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
    position: relative;
}
/*.post-header {
    min-height: 70px;
}*/
.post-header h2 {
    margin-top: 10px;
}
.post-title-link > span:not(.list-age-restriction) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    color: #000;
    text-decoration: none;
}
.post-detail {
    color: #2f3235;
    font-size: 13px;


    font-weight: 700;
    line-height: 20px;
}
.tax-resort .lSAction > a, .widget .lSAction > a {display:none;}
.tax-resort .lightSlider.lsGrab > *, .tax-resort  .lightSlider.lsGrabbing > * {
    cursor: pointer;
}
.reviews span {
    background-color: #e97901;
    border-radius: 10px;
	color: #fff;
    padding: 2px 5px;
    position: absolute;
    top: 3px;
	left: 250px;
}

.new_reviews {
	text-align: center;
	padding: 0 1%;
	display: block;
}

.new_reviews>div{
	text-align: left;
}

.new_reviews .author{
	display: block;
	padding-top: 3%;
}

.new_reviews .author>img{
	float:left;
}

.new_reviews .author .name_comment{
	padding-left: 3%;
}

.new_reviews .comment-border{
	font-style: italic;
	padding: 10px 10px 30px 10px;
	background-image: url('/wp-content/uploads/comment.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.new_reviews .author .href_comment_othel{
	padding-left: 3%;
}

.new_reviews .col-4{
	padding: 0 1%;
}

.new_reviews h2{
	font-weight: 700;
}

.messages span {
    background-color: #e97901;
    border-radius: 10px;
	color: #fff;
    padding: 2px 5px;
    position: absolute;
    top: 3px;
	left: 185px;
}
.reviews2 span{
    background-color: #e97901;
    border-radius: 50px;
	color: #fff;
    position: absolute;
    top: 85px;
	line-height: 13px;
    padding: 2px 5px;
}
.messages2 span {
    background-color: #e97901;
    border-radius: 50px;
	color: #fff;
    position: absolute;
    top: 50px;
	line-height: 13px;
    padding: 2px 5px;
}
.review-replay {
    background-color: #f5f5f5;
    font-size: 13px;
    line-height: 22px;
    margin: 20px 0;
    min-height: 20px;
    padding: 24px;
}
.review-replay-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
	color: #3a3a32;
}
.frame-for-content {
    background-color: #f5f5f5;
    font-size: 13px;
    margin: 20px 0;
    min-height: 20px;
    padding: 9px 24px 9px 24px;
}
.frame-for-content2 {
    background-color: #f5f5f5;
    font-size: 13px;
    line-height: 22px;
    margin: 20px 0;
    min-height: 20px;
    padding: 14px 24px 1px 24px;
}
.whitesmoke {
  background-color: #f5f5f5;
  margin-top: 50px;
}
.whitesmoke .clear.objects-preview-list {
  margin-bottom: 15px;
}
.form-submit .submit-button {
    background: #bbb none repeat scroll 0 0;
    border-radius: 3px;
    color: #fff;
    display: block;
    font-size: 18px;
    height: 42px;
    padding-top: 11px;
    position: relative;
    width: 100%;
    z-index: 1;
}
.form-submit .submit-button::after {
    background: #999 none repeat scroll 0 0;
    border-radius: 3px;
    content: " ";
    display: block;
    height: 42px;
    margin-top: -38px;
    position: relative;
    width: 100%;
    z-index: 0;
}
.form-section-title.review > a {
    font-size: 18px;
}
.form-section-title.review a::before, .form-section-title.review a:hover:before {
    background: none;
}

.closed .comment-respond {
	display:none;
}
span.error , label.error {
    background: rgba(0, 0, 0, 0) url("images/unchecked.gif") no-repeat scroll 0 0;
    margin-left: 0.3em;
    padding-left: 16px;
	cursor: pointer;
    display: block !important; 
    font-size: 14px;
    line-height: 1;
    margin-bottom: 6px;
}
#add-review-form .error {
    border-color: #a94442;
}
#add-message-form .error {
    border-color: #a94442;
}
#add-review-form .none,#add-message-form .none {
    display:none
}
.error.valid {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	display: none !important;
}

.pay > a {
	font: inherit;
}
.post-widget {
    height: 210px;
}
.widget .post-title-link > span {
    box-decoration-break: clone;
    box-shadow: -6px 0 0 0 #000, 6px 0 0 0 #000;
    background: #000 none repeat scroll 0 0;
    color: #fcfcfc !important;
    text-decoration: none !important;

}
.widget .post-title-link > span.pricesss{
        background: #ffedac none repeat scroll 0 0;
		box-shadow: -6px 0 0 0 #ffedac, 6px 0 0 0 #ffedac;
    border-radius: 3px 3px 0 0;
    color: #9f5d00 !important;
	font-weight: 600;
}
.widget .post-title.post-title-big {
    bottom: 0;
font-size: 15px;
line-height: 1.3;
    left: 10px;
    right: 10px;
    position: absolute;
    z-index: 99;
}
.sidebar-header {

  background: white none repeat scroll 0 0;
  border-radius: 3px;
  margin: 0 0 10px;
  background-color: #ffedac;
  font-size: 15px !important;
  font-weight: bold;
  color: #9f5d00;
  text-align: center;
  padding: 10px;
}
.widget .lSSlideWrapper .lSFade > * {

    min-height: 149px;
cursor: pointer;
}

.widget  .post-widget {
    height: 160px;
}
.widget  .post-preview {
   max-height: 150px;
}

.one-fourth.widget img {
    width: 225px;
}
.thumb{
    bottom: -50px;
    left: -50px;
    position: absolute;
    right: -50px;
    text-align: center;
    top: 0px;
    white-space: nowrap;
    word-break: normal;
}
.ib{
    display:inline-block;
    vertical-align:middle;
}
.v-align{
    height:100%;
}
.v-align2{
    height:0;
}
.fotorama {
  margin-bottom: 10px;
}
.fancybox.thumbs .v-align{
    width:720px;
}

.single-object .one-fourth.widget {
    margin-top: 12px;
}

.fancybox.min.medium {
    display: inline-block;
    float: left;
    height: 160px;
    margin-right: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    width: 32%;
	max-height: 152px;
}
.metrika {
	float: right;
	padding: 15px 0px 0px 20px;
}
.pay {
	background: #e9f0fa;
	border: 1px solid #cce1ff;
	border-radius: 3px;
	padding: 10px;
	margin: 10px 0px 0px 0px;
	color: #003580
}
.price-table {
    font-size: 12px;
}
.table-bordered {
    border: 1px solid #e3e2de;
}
.table {
    margin-bottom: 0;
    /*max-width: 100%;
    width: 100%;*/
}
.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 #e3e2de;
    line-height: 1.5;
    min-width: 50px;
    padding: 5px 4px 5px 4px;  
    vertical-align: top;
   /* width: 50px;*/
}
th {
    text-align: left;
	font-weight:600;
}
.room-prices__cell_title {
    width: 150px !important;
	min-width: 150px !important;
}
.form-field.date,.form-field.newprice {
    float: left;
    margin-right: 20px;
    width: 190px;
}
.form-field.newprice  {
    margin-right: 10px !important;
}
.delete > img {
    height: auto;
    margin-top: 20px;
    width: 30px;
}
.date_range {
    display: table;
}/*
.form-field.resort,.form-section-content .title {
    float: left;
    margin-right: 50px;
}
.form-field.object-type, .form-field.length,.form-field.times {
    float: left;
}*/
.add-date img {
    height: auto;
	margin-right: 10px;
    width: 35px;
}
/* .add-date {
    left: -40px;
    position: absolute;
    top: 25px;
} */
.num-prices .scrollable {
    padding-bottom: 15px;
}
.room-prices__cell_title2 {
    width: 80px !important;
	min-width: 80px !important;
	
}
.map-wrap .object-preview-address > span {
    font-weight: bold;
}
.number-content {
	padding: 10px;
}
.add-num {
	font-size: 25px;
    margin: 20px 0 18px 0;
}
.action-banner {
  background: transparent url("images/discount_banner.png") no-repeat scroll 0 0;
  height: 72px;
  left: 0;
  position: absolute;
  top: 0;
  width: 72px;
  z-index: 11;
}
.action-banner.action-offer {
  background-position: -44px -77px;
  opacity: .8;
}
.list-element-with-img.review.positive-review,.list-element-with-img.review.negative-review,.list-element-with-img.review.neutral-review {
  background-color: #fff9e3;
  padding: 20px;
color:rgba(0, 0, 0, 0.6);
width: 100%;
 box-shadow: 0 6px 4px -4px rgba(0, 0, 0, .2);
}
.list-element-with-img.messages {
    background: #fff9e3 none repeat scroll 0 0;
  padding: 10px;
color:rgba(0, 0, 0, 0.6);
width: 100%;
 box-shadow: 0 6px 4px -4px rgba(0, 0, 0, .2);
}
.delete.messages {
  display: none;
  position: absolute;
  right: -15px;
  top: -35px;
}
.list-element-with-img.messages:hover .delete.messages,.delete.messages:hover{
  display: block;
}

.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    height: 300px !important;
}

.form-field2 {
    float: left;
    margin-bottom: 20px;
    margin-right: 20px;
    width: 365px;
}
.form-field2:nth-child(2n+1) {
    margin-right: 0;
}
.form-field.date  {
    margin-right: 20px !important;
	width: 215px;
}
.form-field.newprice {
    width: 215px;
}
.form-field.email,.form-field.length {
  margin-bottom: 13px;
}
#ymap {
    height: 422px;
    width: 750px;
}
.accom-amenities.nomer img {
  width: 30px;
}
.list-element-with-img.room-description .list-element-img {
  overflow: hidden;
  padding-right: 15px;
  padding-top: 0;
  width: 200px;
  float:left;
}
.room-description > div {
  display: block;
  float: left;
  vertical-align: top;
  position: relative;
}
.room-description .list-element-info {
  height: 130px;
  width: 380px;
    display: block
}
.list-element-with-img.room-description:nth-child(1) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.room-description {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 5px;
  width: 100%;
   padding-bottom: 5px;
     display: block;
	 position: relative;
	 text-align: left;
}
.list-element-with-img.room-description {
  margin-top: 0;
  overflow: hidden;
}
.room-description .slides {
  max-height: 130px;
}
.room-description .lSAction {
  display: none !important;
}
.nomer > li {
  background-color: #8c86ff;
}
.nomer.sleeping {
  width: 30px;
}
.accom-price-amount23 {
  display: inline-block;
  font-size: 22px;
  margin-top: 10px;
}
.ico-sleep {
  background: rgba(0, 0, 0, 0) url("images/number/sleeping-places-blue.png") no-repeat scroll 100% 100% / cover ;
  display: inline-block;
  height: 20px;
  margin-right: 5px;
  width: 20px;
}
.block-sleep {
  margin-top: 10px;
}
.block-sleep > span {
  font-size: 12px;
  position: relative;
  top: -5px;
}
.modal {
  border-bottom: 1px dashed #729aa8;
  bottom: 10px;
  font-size: 14px;
  font-weight: normal;
  left: 0px;
  margin-left: 10px;
  position: absolute;
}
.modal::before {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: transparent transparent transparent #729aa8;
  border-image: none;
  border-style: solid;
  border-width: 5px;
  content: "";
  display: block;
  height: 0;
  left: -10px;
  position: absolute;
  top: 9px;
  width: 0;
}
.modalokno .title {
  background: #e5e3db none repeat scroll 0 0;
  border-bottom: 1px solid #e5e3db;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-size: 16px;
  margin: 0 0 10px;
  min-height: 16px;
  padding: 12px 38px 12px 16px;
}
.accom-amenities.nomer {
  bottom: 30px;
  display: block;
  position: absolute;
}
.modalokno .block-sleep > span {
  font-size: 18px;
  position: relative;
  top: -5px;
}
.modalokno .ico-sleep {
  background: rgba(0, 0, 0, 0) url("images/number/sleeping-places-blue.png") no-repeat scroll 100% 100% / cover ;
  display: inline-block;
  height: 30px;
  margin-right: 5px;
  width: 30px;
}
.modalokno .table-bordered th:nth-child(1) {
  min-width: 170px;
}
.list-element-title .fancybox {
  color: #000;
}
.list-element-title .fancybox.modal {
  color: #729aa8;
}
sup {
  vertical-align: super;
  font-size:12px;
}
.accom-amenities.nomer2 li {
  width: 245px;
  background-color: #fff;
}
.content.clear.none {
  margin-left: 0;
  margin-top: 20px;
  padding: 0;
}

.gta_footer_forms {
  background: #07c none repeat scroll 0 0;
  border: 0 none;
  border-radius: 3px;
  color: #fff;
  margin-bottom: 5px;
  padding: 7px 0;
  text-align: center;
  width: 100%;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
}
.gta_footer_forms:hover {
    background-color: #003580;
	color: #fff;
}
.gta_footer_forms img {
	width: 20px;
	top: 4px;
	position: relative;
	right: 20px;
}
footer .gta_footer_forms {
	width: 200px;
	/* float: left; */
}
footer .halttt{
	float: left;
margin-bottom: 0px;
width: 100px;
}
footer .gta_footer_forms img {
	right: 10px;
}
.halttt {
	float: left;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 20px;
    width: 48%;
	}
.halttt:last-child {float: right;
    margin-right: 0;}
	
.halt.center{
  float: none;
  margin: 20px auto;
  width: 48%;
}	

/* .fancybox-inner {
  overflow: hidden !important;
} */
.tabs__content {
  /* display: none; */ /* по умолчанию прячем все блоки */
}
.tabs__content.active {
  display: block; /* по умолчанию показываем нужный блок */
}
.tabs__caption li {
  list-style: outside none none;
  padding-left: 20px;
  text-align: left;
  margin-bottom: 10px;
}

.tabs {
  display: table-row;
}
.postid-19530 .site-content {
  padding-bottom: 1px;
  display: flex;
  padding-top: 1px;
}

.left-edit {
  /* background-color: #e9f0fa; */
  display: table-cell;
/*   padding: 0 0 0 15px; */
padding-top: 30px;
  margin-right: 20px;
  min-height: 100%;
  width: 250px;
  vertical-align: top;
}
.three-fourth.edit {
  float: none;
  margin-left: 10px;
  width: 750px;
}
.left-edit h2 {
  font-size: 20px;
  margin-left: 20px;
  margin-top: 10px;
}
.tabs__content.active {
    display: block;
    min-width: 600px;
      width: 750px;
}
.tabs::before, .tabs::after, .left-edit::before, .left-edit::after, .tabs__content::before, .tabs__content::after {
    clear: both;
    content: "";
    display: table;
}
.yandexmap > p {
  margin-top: 10px;
}
.postid-19530 .form-field.checkboxes2 > label:first-child {
  margin-bottom: 10px;
}

.form-field.checkboxes2 input {
    opacity: 0;
    position: absolute;
}
.form-field.checkboxes2 input:checked + .form-checkbox__label::before, .form-field.checkboxes2 input:indeterminate + .form-checkbox__label::before {
  background-color: #0af;
  border-color: #0af;
}




.form-field.checkboxes2 input:checked + .form-checkbox__label::before, .form-field.checkboxes2 input:indeterminate + .form-checkbox__label::before {
    background-color: #0af;
    border-color: #0af;
}
.form-checkbox__label::before {
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    height: 14px;
    margin: 0 9px 0 -25px;
    top: -1px;
    vertical-align: middle;
    width: 14px;
}
.form-checkbox__label::before, .form-select-v2::after, .form-selectbox::after, .form-switch__interface::after, .form-switch__interface::before {
    content: "";
}
.form-checkbox, .form-checkbox__label, .form-checkbox__label::before {
    display: inline-block;
    position: relative;
}
.form-checkbox__label::before {
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    height: 14px;
    margin: 0 9px 0 -25px;
    top: -1px;
    vertical-align: middle;
    width: 14px;
}
.form-checkbox, .form-checkbox__label, .form-checkbox__label::before {
    display: inline-block;
    position: relative;
}
.b-loader-wrapper.loading::after, .b-loader-wrapper.loading::before, .button-whitey-group .button-whitey::after, .button-whitey-shadow::after, .button.is-loading::after, .form-checkbox__label::before, .form-select-v2::after {
    content: "";
}
.form-checkbox__label {
    cursor: pointer;
    padding: 0 0 0 25px;
    vertical-align: top;
}
.form-checkbox, .form-checkbox__label, .form-checkbox__label::before {
    display: inline-block;
    position: relative;
}
.form-field.checkboxes2 input:checked + .form-checkbox__label::before {
    background-image: url("images/input-checkbox-checked.svg?85bab38");
}
.objects-types-buttons .form-field {
  display: table-row;
}
.edit h1 {
  border-bottom: 3px solid #cccccc;
}
.form-field.yandexmap {
  display: block;
  float: left;
}
.form-field.yandexmap .form-field {
  width: 750px;
}




.progress-bar-item__icon {
  background-repeat: no-repeat;
  border-radius: 12px;
  display: block;
  float: left;
  height: 22px;
  margin-right: 10px;
  position: relative;
/*   top: -4px; */
  transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  width: 22px;
  z-index: 2;
}
.progress-bar-item__icon svg {
  fill: currentcolor;
}
.progress-bar-item__icon svg {
  fill: currentcolor;
  height: 10px;
  left: 5px;
  position: absolute;
  top: 7px;
  width: 12px;
}
.progress-bar-item__icon {
  border: 1px solid #000;
  color: #000;
  opacity: 0.2;
}
.progress-bar-item__icon.green {
  background-color: #5b0;
  color: #fff;
  opacity: 1;
   border: 0;
}
.progress-bar-item__icon.red {
  background-color: #db3727;
  color: #fff;
  opacity: 1;
  border: 0;
}
.progress-bar-item__icon.yelow {
  background-color: #ffc720;
  color: #fff;
  opacity: 1;
  border: 0;
}
.progress-bar-line {
  background: rgba(0, 0, 0, 0.05) none repeat scroll 0 0;
  border-radius: 0 0 3px 3px;
  display: block;
  font-size: 13px;
  overflow: hidden;
  position: relative;
  width: 200px;
}
.progress-bar-line__value {
  box-sizing: border-box;
  font-size: 13px;
  line-height: 20px;
  margin-left: 100%;
  opacity: 0.5;
  padding-left: 4px;
  transition: margin-left 0.3s ease 0s, color 0.3s ease 0s, width 0.3s ease 0s;
  width: auto;
}
a.tooltips {
  position: relative;
  display: inline;
}
a.tooltips span {
  position: absolute;
  width:185px;
  color: #000000;
  background: #F5F7FF;
  border: 2px solid #6D6D6D;
  min-height: 100%;
  line-height: 12px;
  font-size:13px;
  text-align: center;
  visibility: hidden;
  border-radius: 5px;
}
a.tooltips span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -12px;
  width: 0; height: 0;
  border-left: 12px solid #6D6D6D;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
a.tooltips span:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -8px;
  width: 0; height: 0;
  border-left: 8px solid #F5F7FF;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
/* a:hover.tooltips span {
  visibility: visible;
  opacity: 0.7;
  right: 100%;
  top: 50%;
  margin-top: -27.5px;
  margin-right: 55px;
  z-index: 999;
} */
.tooltips > span {
  display: none;
}
a.tooltips .mcTooltipInner {
  display: none;
}
hr.style-two { border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #aaa, rgba(0, 0, 0, 0)); margin-bottom: 15px; }
.mcTooltipInner {
  height: auto !important;
}
.right-menu .mobile_menu,.mobile_menu,.room-description > div.mobile_menu {display:none}
.right-menu .desktop_menu,.resort-menu-wrap,.user-cp-menu-wrap {display:block}
.mask{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.block-price23 {
	float: none;
}

.single-post .content ul li,.single-object .content ul li,.single-guide .content ul li,.page-template .content ul li,.tax-resort .content  ul li {
	margin-bottom: 0px;
}
.single-post .content ul li:last-child,.single-object .content ul li:last-child,.single-guide .content ul li:last-child,.page-template .content ul li:last-child,.tax-resort .content  ul li:last-child {
	margin-bottom: 10px;
}
.single-post .resorts-category ul > li,.single-guide .resorts-category ul > li,.page-template .resorts-category ul > li,.tax-resort .resorts-category ul > li {
	margin-bottom: 5px;
}

.contacts .halttt {
	float: left;
	width: 100%;
	margin-top: 15px;
	z-index: 20;
position: relative;
}
.contacts .gta_footer_forms img {
	right: 10px;
}
.hc__ht {
    display: none !important;
}
.ras .button2 {
	padding: 3px 10px;
}
.title.title2 {
	font-weight: bold;
	margin-bottom: 20px;
}
.accom-amenities .no {
	opacity: .7;
}
.list-element-all {
	min-height: 80px;
}
@media (min-width: 769px) and  (max-width: 985px) {
    .list-element-all {
	min-height: 57px;
}
}
.list-element-address {margin-top: 5px;}
@media (max-width: 700px) {
    .list-element-title {	
		padding-top: 5px;
	}
}
.codes {
    margin-top: 20px;
}
img.desktop {
    max-width: 225px;
}


 .progress-bar__question {
    width: 24px;
    line-height: 18px;
    cursor: pointer;
    z-index: 2;
    transition: opacity .3s;
    text-align: center;
    outline: 0;
}
.progress-bar__question {
    display: inline-block !important;
    border: 3px solid #9f5d00;
    opacity: .5;
    font-weight: 400;
    border-radius: 16px;
    height: 24px;
    font-size: 16px;
}
.progress-bar__question, .progress-bar__question:hover {
    color: #9f5d00;
}
.tabs__caption li a {
    color: #aaa;
}
.tabs__caption li.active a,.tabs__caption li a.green{
    /* color: #444; */
    color: #000;
}
.tabs__caption li a.yelow,.tabs__caption li a.clicks {
    color: #000;
}
.fancybox.min {
	max-height: 150px;
	overflow: hidden;
	position: relative;
	display: block;
	float: left;
	width: 33%;
}
#qunit-fixture {
	background-color: #25292A;
	/* width: 100%; */
	padding: 10px 0 50px 0;
	margin-top: 30px;
	max-height: 490px;
	overflow:hidden;
}
#qunit-fixture h2 {
	color: #fff;
}
#qunit-fixture .story__inner {
    border: 1px solid rgba(255,255,255,.5);
}
#qunit-fixture .owl-item:active {
    cursor: pointer;
}
.navig {
	font-size: 28px;
	color: #fff;
	   cursor: pointer;
}
.owl-prev {
	position: relative;
	left: -235px;
	top: 40px;
}
.owl-next {
	position: relative;
	left: 225px;
	top: -35px;
	/* float: left; */
}
/*новые стили*/

.form-field2 h4 {
	font-weight: normal;
	font-size: 15px;
	margin: 0 0 5px 0;
}

.custom-label {
	border: 1px solid #D9D9D9;
	display: block;
	padding: 2px 5px;
	font-size: 14px;
	cursor: pointer;
}


.label-wrapper-group {
	display: flex;
	flex-flow: wrap;
}


.label-wrapper {
	position: relative;
}


.label-wrapper input {
	position: absolute;
	opacity: 0;
	left: 0;
	top: 0;
}


.label-wrapper-group .label-wrapper:nth-last-child(2) label, .label-wrapper-group .label-wrapper:nth-child(1) label {
	border-right: 0;
}



.label-wrapper-group .label-wrapper input:checked + label {
	border: 1px solid #A7CAF3;
	background: #CCE5FF;
	box-shadow: 0 0 0 1px #A7CAF3;
}



#todesc,#toserv,#tofoto,#tonumber,#tocontact {
	padding-top: 55px;
	margin-top: -55px;
	-webkit-background-clip: content-box;
	background-clip: content-box;
}
#reg {
    border-color: rgb(233, 102, 86);
	padding: 14px 40px;
}
#reg:hover {
    color: #fff;
}

.dz-rotate {
	text-align: center;
	position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.5;
    width: 22px;
    height: 22px;
    background: #000;
    border-radius: 3px;
    color: #AAAAAA;
	cursor: pointer;
}

/*Chart*/
.period-selector {
	display: inline-block;
    margin-left: -1.5%;
    padding-top: 13px;
	width: 100%;
	text-align: center;
}

.period-selector button {
	background: #07c none repeat scroll 0 0;
    border: 0 none;
    border-radius: 3px;
    color: #fff;
    margin-bottom: 5px;
    padding: 7px 0;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;	
	width: 12.9%;
}

.period-selector button:hover {
	background: #09c none repeat scroll 0 0;
}

.buttonslideOne {
	cursor: pointer;
}

.checkboxslideOne {	
	padding-top: 1%; widht: 100%; text-align: center;
}

.checkboxslideOne span{
	padding: 0 2%;
}

.period-selector button{
	margin-left: 5px;
}

.period-selector .active{
	background-color: red;
}

.ct-chart {
	left: -30px;
}
.ct-series-a .ct-bar {
	stroke: #acf;
}

#all_visitors {
	display: inline-block;
    top: -9px;
	right: -12%;
    position: relative;    
}

#select_my_object {
	float: left;
}

#select_my_object {
	position: relative;
	left: 23px;
	width              : 300px;
	padding: 0 5px;
	height             : 26px;
	border-radius      : 10px;
	-webkit-appearance : none;
	background-image   : url('select-arrow.png');
	background-position: 98% center;
	background-repeat  : no-repeat;
	line-height        : 1em;
	/* for FF */
	-moz-appearance    : none;
	text-indent        : 0.01px; 
	text-overflow      : '';
	/* for IE */
	-ms-appearance     : none;
	appearance         : none !important;
}
 
#select_my_object::-ms-expand {
	display: none;
}

.hiddd {display: none;}

#help-panel {
	color: #ffffff;
	display: block;
	background: #676585;
	text-align: center;
	border-radius: 0 0 3px 3px;
}