/* Chat */


.dz-message{
    text-align: center;
    font-size: 16px;

	padding-top:20px;
    color: #000;
}
.dz-preview{
    top: 0;
    left: 0;
}
.dz-image img{
    width: 100%;
   /* height: 100%;*/
    border-radius: 5px;
}
.dz-image{
	position: absolute;
	width: 100%;
	top:0;
	height: 100%;
    overflow: hidden;
}
.img_chat_item{
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
.img_chat_item img{
    border-radius: 3px;
}
.add_chat_item{
    position: relative;
}
.add_chat_item .chat_item_circle{
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    background: #ffd200;
    left: 6px;
    bottom: -62px;
}
.chat_item_circle{
    text-align: center;
    line-height: 60px;
}
.chat_item_circle .fa{
    color:#000;
    text-align: center;
}
.chat_header{
    background: #110F18;
    border-top-left-radius: 5px; /* Ð›ÐµÐ²Ñ‹Ð¹ Ð½Ð¸Ð¶Ð½Ð¸Ð¹ ÑƒÐ³Ð¾Ð»Ð¾Ðº */
    border-top-right-radius: 5px; /* ÐŸÑ€Ð°Ð²Ñ‹Ð¹ Ð½Ð¸Ð¶Ð½Ð¸Ð¹ ÑƒÐ³Ð¾Ð»Ð¾Ðº */
    display: table;
    width: 100%;
}
.chat_ava{
    width: 30px;
    height: 30px;
    border-radius: 3px;
    margin-right: 10px;
}
.chat_ava img{
    border-radius: 3px;
}
.chat_ava_name p{
    color:#fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}
.chat_ava_exit .fa{
    line-height: 30px;
    color:#fff;
}

.chat_date_message p{
    text-align: center;
    color:#fff;
    font-size: 13px;
    font-weight: 300;
}
.chat_date_message span.left{
    background: #e3ddd9;
    width: 115px;
    height: 2px;
    display: block;
    top: 23px;
    position: absolute;
}
.chat_date_message span.right{
    background: #e3ddd9;
    width: 115px;
    height: 2px;
    display: block;
    top: 23px;
    right: 20px;
    position: absolute;
}
.chat_message_in{
    padding: 10px;
    width: 70%;
    float: right;
    position: relative;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 15px;
}
.chat_message_in:after{
    content: "";
    width: 0;
    right: -14px;
    top: 13px;
    position: absolute;
    height: 0;
    border-bottom: 7px solid transparent;
    border-top: 7px solid transparent;
    border-right: 7px solid transparent;
    border-left: 7px solid #fff;
}
.chat_message_in{
    word-wrap:break-word;
}
.chat_message_in .chat_in_m{
    font-size: 14px;
    color:#000;
    font-weight: 300;
    margin-bottom: 20px;
    word-wrap:break-word;
}

.chat_message_in .chat_in_m_date{
    position: absolute;
    bottom: 0;
    right:10px;
}
.chat_message_in .chat_in_m_date p{
    margin-right: 10px;
}
.chat_message_in .chat_in_m_date p,
.chat_message_in .chat_in_m_date .fa{
    color:#777777;
}

.chat_message_out{
    padding: 10px;
    width: 70%;
    float: left;
    position: relative;
    border-radius: 5px;
    background: #000;
    margin-bottom: 15px;
}
.chat_message_out:after{
    content: "";
    width: 0;
    left: -14px;
    top: 13px;
    position: absolute;
    height: 0;
    border-bottom: 7px solid transparent;
    border-top: 7px solid transparent;
    border-left: 7px solid transparent;
    border-right: 7px solid #000;
}
.chat_message_out .chat_in_m{
    font-size: 14px;
    color:#fff;
    font-weight: 300;
    word-wrap:break-word;
    margin-bottom: 0;
}
.chat_message_out .chat_in_m_date{
    position: absolute;
    bottom: 0;
    right:10px;
}
.chat_message_out .chat_in_m_date p{
    margin-right: 10px;
}
.chat_message_out .chat_in_m_date p,
.chat_message_out .chat_in_m_date .fa{
    color:#777777;
}
.chat_write_message{
    float: left;
    width: 170px;
    margin-top: 40px;
}
.chat_write_message p{
    font-style: italic;
    font-size: 13px;
    color:#fff;
    width: 100%;
}
.chat_write_message img{
    margin-right: 10px;
    display: block;
}
.chat_send{
    background: rgba(0,0,0,0.4);
    padding: 10px;
    border-bottom-left-radius: 5px; /* Ð›ÐµÐ²Ñ‹Ð¹ Ð½Ð¸Ð¶Ð½Ð¸Ð¹ ÑƒÐ³Ð¾Ð»Ð¾Ðº */
    border-bottom-right-radius: 5px; /* ÐŸÑ€Ð°Ð²Ñ‹Ð¹ Ð½Ð¸Ð¶Ð½Ð¸Ð¹ ÑƒÐ³Ð¾Ð»Ð¾Ðº */
    position: relative;
}
.chat_send_text{
    width: 100%;
    border-radius: 5px;
    background: #fff url(../images/send_arrow.png) no-repeat 93% 72%;
    border: none;
    height: 100%;
    padding: 10px 45px;
    outline: none;
    resize:none;
}
.chat_smile{
    position: absolute;
    top:20px;
    left: 20px;
}
.chat_attach{
    position: absolute;
    top:60px;
    left: 20px;
}
.chat_static{
    position: static;
}
/*.chat_pad{
    position: static;
}*/
.chat_box .mainFeedback{
    position: static;
    width: 100%;
    background: rgba(178, 178, 178, 1);
}
.chat_box .mainFeedback .header{
  background: #110F18;
  padding: 7px;
  top:0;
  height: 54px;
  position: relative;
  box-shadow: none;
  border: none;
}
.chat_box .mainFeedback .header .my_card{
    color:#000;
}
.chat_box .mainFeedback .header .card_items {
  color: #FFF;
  margin-top: 10px;
  margin-left: 10px;
}
.chat_box .mainFeedback .header:after {
    content: "";
    width: 0;
    left: 45px;
    top: 100%;
    position: absolute;
    height: 0;
    border-top: 10px solid #110F18;;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.chat_box .cart_item:active,
.chat_box .cart_item:hover{
    background: #E73931;
    cursor: pointer;
    border-bottom: 5px solid #CA342D;
    border-radius: 5px;
}
.chat_box .cart_items .cart_img{
    width: 60px;
    border-radius: 5px;
    height: 60px;
    float:left;
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 10px;
    overflow: hidden;
}
.chat_box .cart_items .cart_name{
    font-size: 15px;
    color:#fff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}
.chat_box .cart_items .cart_cost{
  color: #000;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 2px;
}
.chat_box .cart_items .cart_info{
 float: left;
 width: 110px;
}
.chat_box .cart_items .cart_delete{
    float:right;
      margin-right: 7px;
  margin-top: 2px;
}
.chat_box_head_right{
    width:40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    text-align: center;
}
.chat_box_head_right .fa{
    text-align: center;
    color:#fff;
    line-height: 40px;
}
.clear{
    clear: both;
}
.header .my_card {
  font-size: 20px;
  font-weight: 500;
}
.chat_container{

}
.chat_box .chat_header{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    height: 54px;
    padding: 0 15px;
}
.chat_box .chat_send {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 100px;
}
.btn-send-chat {
  position: absolute;
  right: 21px;
  bottom: 19px;
  width: 30px;
  border: none;
  outline: none;
  height: 28px;
  background: url(../img/enter_btn.jpg) no-repeat;
}
.chat_messages{
    background: rgba(178, 178, 178, 0.1);
    position: relative;
    padding: 15px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.chat_header .cell{
    display: table-cell;
    vertical-align: middle;
}
/* Feed */
.user_latest .enter_label{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color:white;
}
.user_latest .e-mail_in,
.feed_bottom .e-mail_in {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    border-radius: 4px;
    border: none;
    outline:none;
    padding: 14px 15px;
}
.user_latest .enter_label{
    margin-bottom: 15px;
    color: #fff;
}
.user_latest .e-mail_in{
    background: #f1f1f1 url(../images/enter_btn.jpg) no-repeat 96% 82%;
}
.user_latest textarea{
    height: 80px;
}
.user_latest .user_message{
    position: relative;
    margin-bottom: 75px;
}
.user_latest .user_message .us_name,
.user_answ .us_name{
    color:#e73931;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.user_latest .user_message .us_m_date,
.user_answ .us_m_date{
    color:#807373;
    font-size: 16px;
    font-weight: 300;
}
.user_latest .user_message .happy_like {
    width: 100px;
    margin-top: 10px;
    z-index: 1000;
    bottom: -64px;
    right: 0px;
    position: absolute;
    padding: 10px 17px 10px 20px;
    border-radius: 20px;
    color: #fff;
    background: #000;
}
.user_latest .user_message .happy_like:hover{
    background: #cd2a32;
    color:#fff;
}
.user_latest .user_message .us_line{
    border-bottom: 6px solid #000;
    padding:15px 0;
    position: relative;
}
.user_latest .user_message .us_line:before{
    content: "";
    width: 0;
    left: 19px;
    top: 20px;  position: absolute;
    height: 0;
    border-bottom: 10px solid #000;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.user_latest .user_message .us_content p{
    color:#000;
    font-weight: 300;
    font-size: 16px;
    font-family: roboto;

}
.user_latest .user_message .us_content{
    margin-top: 20px;
}
.user_latest .user_message .us_content #map{
    height: 260px;
}
.user_latest .user_message .us_content p a,
.user_latest .user_message .us_tags a{
    color: #e73931;
    font-size: 16px;
    font-weight: 500;
}
.user_latest .user_message .us_tags li{
    display: inline-block;
    margin-right: 5px;
}
.user_latest .user_message .us_notation h3.us_h{
    color:#C3C3C3;
    font-weight: bold;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 0;
    border:none;
}
.user_latest h3{
    padding-bottom: 20px;
    color:#fff;
    font-size: 28px;
    margin-bottom: 25px;
    border-bottom: 4px solid #e73931;;
}
.user_latest textarea{
    height: 50px;
    resize: none;
    overflow: hidden;
    margin-bottom: 6px;
}
.user_latest textarea:focus{
    height: 100px;
    resize: none;
    overflow: hidden;
    margin-bottom: 6px;
}
.user_latest .user_message .us_notation p{
    font-size: 15px;
}
.user_answ{
    background-color: rgba(188, 188, 188, 0.35);
    border:10px solid #000;
    position: relative;
    margin-bottom: 50px;
    margin-top: 15px;
    border-radius: 4px;
}
.user_answ:before{
    content: "";
    width: 0;
    left: 19px;
    top: -19px;
    position: absolute;
    height: 0;
    border-bottom: 10px solid #000;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.us_und{
    background: transparent;
    padding: 10px 17px 17px 10px;
    border-bottom: 10px solid #000000;
}

.us_und .us_content{
    padding: 0 0px 0 35px;
}
.us_und .us_name{
    margin-left: 6px;
}
.user_answ .e-mail_in{
    background: #e4e4e4 url(../images/enter_btn.jpg) no-repeat 96% 82%;
    border-radius: 0;
}
.user_answ textarea{
    resize: none;
    height: 74px;
    margin-bottom: -4px;
}
.user_message img{
    border-radius: 4px;
}
.chat_img_container{
    width:30%;
}
.chat_img img{
    width:100%;
    height: 100%;
}
.ava_answ{
    margin-left: 17px;
}
.user_answ  .us_und .us_name{
    color:#000;
}
.feed_loc_files{
    width: 70%;
}
.custom-file-input {
  color: transparent;
  background: url(../img/very.png) no-repeat;
  background-size: cover;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Ð”Ð¾Ð±Ð°Ð²Ð¸Ñ‚ÑŒ Ñ„Ð°Ð¹Ð»';
  color: black;
  display: inline-block;
  background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active {
  outline: 0;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}
/** Styling input[type=file] **/
.btn-file { position: relative; overflow: hidden; margin-right: 4px; }
.btn-file input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; filter: alpha(opacity=0);
    transform: translate(-300px, 0) scale(4); font-size: 23px; direction: ltr; cursor: pointer; }
/* Fix for IE 7: */
.btn-file .fa{
    margin-right: 5px;
}
.feed_location{
   color: #fff;
   margin-top: 14px;
}
.feed_task_container{
    background: #000;
    padding: 20px;
    margin-top:80px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.feed_input_func{
    display: none;
}
.feed_comment_container{
    background: #fff;
    padding: 25px;
}
.simple_light .feed_task_container{
    margin-top: 100px;
}
.feed_wrap .pushy-left{
    transform:none;
}
.feed_wrap .pushy {
  width: 250px;
  position: static;
  margin-top: 101px;

}

.simple_light .feed_task_container{
    background: #0C5DA3;
}
#sidebar{
   float: left;
}
.fixed{
    position: fixed !important;
}
.simple_light .user_latest .user_message .us_line{
    border-bottom: 6px solid #0C5DA3;
    padding:15px 0;
    position: relative;
}
.simple_light .user_latest .user_message .us_line:before{
    content: "";
    width: 0;
    left: 19px;
    top: 20px;  position: absolute;
    height: 0;
    border-bottom: 10px solid #0C5DA3;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.simple_light .user_latest .user_message .us_name{
    color:#000;
}
.simple_light .user_latest .user_message .happy_like:hover{
    background: #0C5DA3;
    color:#fff;
}
.form_feed{
    margin-bottom: 0;
}
#wrapper{
    position: static;
}
#scroller {
    position:absolute; z-index:1;
    -webkit-touch-callout:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    width:100%;
    padding:0;

}

#myFrame {
    position:absolute;
    top:0; left:0;
}



/**
 *
 * Pull down styles
 *
 */
.marg_left25{
    margin-left: 25px;
}
#pullDown, #pullUp {
  background: #fff;
  height: 57px;
  line-height: 40px;
  padding: 8px 10px;
  border-bottom:1px solid #ccc;
    font-weight:bold;
    font-size:14px;
    display: none;
    color:#888;
}
#pullDown .pullDownIcon, #pullUp .pullUpIcon  {
    display:block; float:left;
    width:40px; height:40px;
    background:url(../img/pull-icon@2x.png)/*tpa=http://cubiq.org/dropbox/iscroll4/examples/pull-to-refresh/pull-icon@2x.png*/ 0 0 no-repeat;
    -webkit-background-size:40px 80px; background-size:40px 80px;
    -webkit-transition-property:-webkit-transform;
    -webkit-transition-duration:250ms;
}
#pullDown .pullDownIcon {
    -webkit-transform:rotate(0deg) translateZ(0);
}
#pullUp .pullUpIcon  {
    -webkit-transform:rotate(-180deg) translateZ(0);
}

#pullDown.flip .pullDownIcon {
    -webkit-transform:rotate(-180deg) translateZ(0);
}
/*auth*/
.reg-popup{
    width:100%;
    height: 100%;
    background-color: rgba(29,30,75,0.74);
    overflow:hidden;
    position:fixed;
    top:0px;
    opacity: 0;
    z-index: -1;
}
.input_ok {
	border:1px solid green;
}
.blur-filter {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}
.reg_block{
        width:100%;


}
.btn-load .fa{
    margin-right: 6px;
}
.btn-hack {
  display: block;
  position: relative;
  width:100%;
  z-index: 9999;
  height: 100%;
  transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1), height 0.8s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1), height 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
   }

.btn-front {
  /*position: absolute;*/
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 9999;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: width 0.5s, height 0.5s, -webkit-transform 0.5s;
  transition: width 0.5s, height 0.5s , transform 0.5s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  transition: background 0.15s ease, line-height 0.8s cubic-bezier(0.23, 1, 0.32, 1); }

/*.btn-hack.is-open .btn-front {
  pointer-events: none;
   }*/

.btn-back {
  position: absolute;
  width: 100%;
  z-index: 9999;
  /*background-color: #eee;*/
  color: #222;
 /* z-index: 2;*/
  -webkit-transform: translateZ(-2px) rotateX(0deg);
          transform: translateZ(-2px) rotateX(0deg);
  overflow: hidden;
  transition: box-shadow 0.8s ease;
display: none;

   }
.is-open .btn-back {
  display: block;
}
/*.btn-back p {
  margin-top: 27px;
  margin-bottom: 25px; }*/

.btn-back button {
  margin: 0 5px;
  /*background-color: transparent;*/
  border: 0;
  border-radius: 2px;
  font-size: 1em;
  cursor: pointer;
  /*-webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
  /*transition: background 0.15s ease;*/ }
  /*.btn-back button:focus {
    outline: 0; }
  .btn-back button.yes {
    background-color: #2196F3;
    color: #fff; }
    .btn-back button.yes:hover {
      background-color: #51aef6; }
  .btn-back button.no {
    color: #2196F3; }
    .btn-back button.no:hover {
      background-color: #ddd; }*/

.btn-hack.is-open .btn-back {
  /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);*/ }

.btn-hack[data-direction="left"] .btn-back, .btn-hack[data-direction="right"] .btn-back {
  -webkit-transform: translateZ(-1px) rotateY(180deg);
          transform: translateZ(-1px) rotateY(180deg); }

/*.btn-hack.is-open {
  width: 400px;
  height: 160px;

}*/

.btn-hack[data-direction="top"].is-open {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg); }

.btn-hack[data-direction="right"].is-open {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }

.btn-hack[data-direction="bottom"].is-open {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg); }

.btn-hack[data-direction="left"].is-open {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg); }
#pullUp.flip .pullUpIcon {
    -webkit-transform:rotate(0deg) translateZ(0);
}

#pullDown.loading .pullDownIcon, #pullUp.loading .pullUpIcon {
    background-position:0 100%;
    -webkit-transform:rotate(0deg) translateZ(0);
    -webkit-transition-duration:0ms;

    -webkit-animation-name:loading;
    -webkit-animation-duration:2s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
}

@-webkit-keyframes loading {
    from { -webkit-transform:rotate(0deg) translateZ(0); }
    to { -webkit-transform:rotate(360deg) translateZ(0); }
}
.auth .bg_fon{
    padding-top:4%;
    padding-bottom: 5%;
}
.auth_descr h2{
    font-size: 70px;
    color:#fff;
    margin-bottom: 55px;
}
.auth_descr h2 span{
    color:#1a1c2d;
}
.auth_descr h2 span.yellow{
    color: #e73931;
    font-weight: 300;
}
.auth_descr p{
    color:#fff;
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 40px;
}
.auth button{
    padding: 15px 0;
    border:2px solid #fff;
    outline: none;
    font-size: 15px;
    background: transparent;
}
.auth button.auth_reg{
    color:#424760;
    background: #ffd200;
    border-color:#ffd200;
}
.auth_copyright{
    background: #000;
}
.auth_copyright .copyright_p{
    color:#fff;
}
.authorization {
    min-height: 500px;
    background-color: white;
}


.auth_p{
    color:white;
    font-size: 22px;
    font-weight: 500;
}
.authorization .fa{
    color:#fff;
    line-height: 30px;
}
.authorization_form{
    padding: 30px;
    background: #fff;
    padding-bottom: 0;
}
.authorization_form .enter_label
{
    color:#474747;
    font-size: 18px;
}
.authorization_form .e-mail_in{
  background: #f1f1f1;
  width: 100%;
  outline: none;
  border-radius: 6px;
  border: none;
  height: 50px;
  color: #474747;
  font-size: 13px;
  padding-left: 60px;

}
.auth_soc_network{
    background: #f8f3ef;
    padding: 9px 30px;
    text-align: center;
}
.auth_soc_network p{
    color:#7e614b;
    font-weight: 500;
    font-size: 22px;
}
.soc_net li{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-right: 11px;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid #000;
}
.soc_net a{
    display: block;
}
.soc_net li:last-child{
    margin-right: 0;
}
.soc_net .fa{
    color:#b59b85;
    font-size: 20px;
    line-height: 40px;
}
.reg-popup .fa{
    transform:none;
}
.auth_login{
    padding: 15px 30px;
    background: #fff;
    text-align: center;
}
.auth_login button.search{
    margin-top: 0;
}
.tm_arrow .fa{
    color: #6A5C5C;
}
.tm_arrow{
    position: absolute;
    right: 24px;
    top: 18px;
}
.reg_shadow{
    background: url(../images/reg_shadow.png) no-repeat center;
    position: absolute;
    width: 550px;
    left: -82px;
    top: -5px;
    height: 600px;
}
.reg_select{
    margin-bottom: 20px;
}

.authorization_form div.icon .fa {
  color: #fff;
  text-align: center;
  line-height: 48px;
}
.soc_net{
    text-align: center;
}
input.tel {
    float: left;
    width: 100%;
    height: 50px;
    background: #f1f1f1;
    border: none;
    outline: none;
    padding-left: 65px;
    color:#000;
    font-size: 14pt;
    border-radius: 3px;
}
.auth_input{
      padding-bottom: 10px;
    position: relative;
}
.auth_container{
	padding-top: 150px;
	padding-bottom: 100px;
}
.pensil{
      width: 50px;
      margin-top: 0px;
  height: 40px;

  text-align: center;
}
.feed_bottom{
  position: absolute;
  opacity: 0;
  width: 100%;
  display: block;
  background-color: white;
  padding: 13px 15px;
  top:0px;
  height: 100%;
}
.feed_close .fa{
    color:#0C5DA3;;
}
.feed_send_btn{
  margin: 0;
  background: #0C5DA3;
  outline: none;
  color: white;
  border-radius: 10px;
  padding: 5px 19px;
  border: 2px solid white;
}
.feed_bottom .e-mail_in{
    margin-top: 20px;
  margin-bottom: 20px;

  box-shadow: 1px 2px 1px 0px;

    resize:none;
}
.feed_bottom .feed_location {
  margin-left: 0px;
  color: #000;
  margin-top: 15px;
}
/*members*/
.members_middle{
    margin-top: 50px;
}
.members_middle h5
{
    color:#cd2a32;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 55px;
}
.members_middle h4{
    font-size: 30px;
    color: #fff;
}
.members_middle h4 span{
    color:#c9cad1;
    font-weight: 300;
}
.members_item img{
    margin-bottom: 30px;
    border-radius: 5px;
}
.members_item{
    margin-bottom: 50px;
}
.member_name{
    color:#000;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
}
.member_year{
    font-size: 16px;
    color:#8d8d8d;
    font-weight: 300;
}
.member_name:hover{
    color:#DD3333;
}
.user_inf{
    list-style:none;
}
.user_inf a{
    color:#8d8d8d;
    font-size: 16px;
    font-weight: 300;
    display: block;
    margin-bottom: 2px;
}
.user_inf .fa{
    margin-right: 10px;
}
.members_inline img{
    display: inline-block;
    float: left;
    margin-right: 30px;
    vertical-align: middle;
}
.members_inline .member_name,
.members_inline .member_year,
.members_inline .user_inf li,
.members_inline .user_inf{
    float:left;
    vertical-align: middle;
}
.members_inline .user_inf li,
.members_inline .member_name,
.members_inline .member_year{
    text-align: left;
    margin-right: 55px;
    padding:30px 0;
}
.members_inline_wrap{
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.members_inline .write
{
    background: transparent;
    color:#363b51;
    border:3px solid #363b51;
    width: 100%;
    border-radius: 5px;
    padding: 15px 0px;
    width: 190px;
    outline: none;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;

}
.members_inline .fa{
    margin-right: 3px;
}
.members_inline .write:hover{
    color:#cd2a32;
    border-color:#cd2a32;
}
.memb_img{
    width: 78px;
    height: 78px;
    position: relative;
    float:left;
    border-radius: 3px;
    margin-right: 20px;

}
.a_members:hover
 .happy_f_block_hover {
  background: rgba(0, 22, 35, 0.85);
  top: 0;
  border-radius: 3px;
  cursor: pointer;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 200;
}
.a_members {
  display: block;
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.plus-hover-content {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -27px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  z-index: -1;
}
.members_item_img {
  position: relative;
  width: 128px;
  height: 128px;
  float: left;
  margin-right: 13px;
}
.simple_light .page_info{
    background: #fff;
}
.simple_light .form-allowed-tags{
    display: none;
}
.simple_light .comment-form-author #author,
.simple_light .comment-form-email #email{
    background: #f1f1f1;
    width: 100%;
    border:none;
    padding: 5px 10px;
    border-radius: 3px;
}
.simple_light .p_footer .post-categories{
    display: none;
}
.simple_light .primary-sidebar h2{
    color:white;
}
.simple_light .primary-sidebar ul{
    list-style: none;
}
.simple_light .primary-sidebar ul li{
    color:white;
}

/*Submit place*/
.submit_place_wrapper h1{
    text-align: center;
    color:white;
}
.submit_form{
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 50px;
}
.bootstrap-tagsinput input{
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #eee;
  outline: none;
  padding: 10px;
  position: relative;
  margin-bottom:15px;
}

.submit_place_upload{
    margin-bottom:15px;
}
.submit_title{
    position: relative;
}
.submit_add_message {
  position: absolute;
  left: -255px;
  top: 0px;
  border-radius: 5px;
  color:white;
  padding: 20px;
  width: 210px;
  opacity: 0;
}
#instagrams,#post_content,#Tags_in{
    padding: 10px;
    position: relative;
}
#instagrams a{
    color:#e73931;
    margin-bottom: 10px;
    display: block;
}
#instagrams .fa-globe{
    margin-right: 5px;
}
.submit_title .form-control{
    margin-bottom: 15px;
}
#instagrams a:hover{
    color:#000;
}
.label-info {
  background-color: #e73931;
  /* margin-bottom: -18px; */
  display: block;
  float: left;
  margin-right: 10px;
  margin-bottom: 12px;
  margin-top:0;
}
.bootstrap-tagsinput{
    background: none;
    border:none;
}
#type-selector{
    background-color: #e73931;
}
#type-selector input {
  max-width: 100%;
  outline: none;
  min-width: 100%;
  margin-right: 10px;
}
.cart_info .btn-follow{
    margin:0;
    padding: 0 10px;
}
.rounded{
  color: white;
  text-align: center;
  margin-bottom: 22px;
}
.widget-area ul {
    border: 2px solid #fff;
    list-style: none;
    border-radius: 8px;
    padding: 10px;
    margin: 0px 10px 20px 10px;
    position: relative;
}
.widget-area ul li{
  margin-bottom: 10px;
}
.widget-area ul li a{
  color:white;

}
.widget-area>div{
	margin-bottom: 50px;
}
.widget-area ul:before{
    content: "";
    width: 0;
    left: 97px;
    top: -12px;
    position: absolute;
    height: 0;
    border-bottom: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.widget-area .screen-reader-text{
    display: block;
  /* margin: 0 auto; */
  text-align: center;
  color: white;
  font-size: 17px;
}
.widget-area input#s{
    width: 85%;
  /* margin-left: 19px; */
  margin:0 auto;
  margin-bottom: 10px;
  display: block;
  /* margin-right: -10px; */
}

.widget-area ul:after{
    content: "";
    width: 0;
    left: 97px;
    top: -10px;
    position: absolute;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.input-group>input {
  margin-top: 0px;
}

.cart_items_container{
  overflow: hidden;
  overflow-y: scroll;
 }
 .p_double{
  opacity: 0;
 }
/**/



.tp-bannershadow.tp-shadow2{
  width: 100%;
}

body{
 /* opacity: 0;*/
}
.body_visible{
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.reg_block{
  margin: 0px auto;
  width: 360px;
  position: relative;
  top: -22px;
}
.reg_image_container{
  background: url(../img/Untitled-1.png) no-repeat;
  /* background-position: 82% -15%; */
  width: 100%;
    background-position: 100% 0%;
  height: 500px;
  background-size: 471px;
  /* position: absolute; */
  /* z-index: 222222; */
  padding-bottom: 67px;

}
.btn-back .auth_login{
  padding: 10px 30px 80px 30px;

}
/*menu_btn*/

.o-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}
.o-header {
    margin: 0;
    padding: 0
}
.o-header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #3b3b3b
}
.o-header-nav__link {
    padding: 12px;
    color: #fff
}
.o-header-nav__link:hover {
    color: #fff;
    background-color: #080808
}
.o-header__title {
    margin: 24px;
    padding: 0;
    color: #818181;
    font-size: 28px;
    font-weight: 300;
    text-align: center
}
@media all and (min-width: 480px) {
    .o-header__title {
        margin: 36px;
        font-size: 42px
    }
}
.o-sub-nav {
    margin: 0 0 24px;
    padding: 0
}
.o-sub-nav__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0
}
.o-sub-nav__item {
    margin: 0;
    padding: 4px
}
.o-sub-nav__link {
    display: block;
    margin: 0;
    padding: 4px 24px;
    border: 2px solid #3b3b3b
}
.o-sub-nav__item.active .o-sub-nav__link,
.o-sub-nav__link:hover {
    color: #fff;
    background-color: #3b3b3b
}
.o-footer {
    padding: 12px 0;
    text-align: center
}
@media all and (min-width: 480px) {
    .o-footer {
        padding: 24px 0
    }
}
@media all and (min-width: 720px) {
    .o-sub-nav {
        margin: 0 0 48px
    }
    .o-footer {
        padding: 48px 0
    }
}
.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background .3s;
    transition: background .3s
}
.c-hamburger:focus {
    outline: 0
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 18px;
  left: 11px;
  width: 17px;
  /* right: 18px; */
  height: 2px;
  background: #fff;
}
.c-hamburger span::after,
.c-hamburger span::before {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    content: ""
}
.c-hamburger--htla.is-active span::after,
.c-hamburger--htla.is-active span::before,
.c-hamburger--htra.is-active span::after,
.c-hamburger--htra.is-active span::before {
    width: 50%
}
.c-hamburger span::before {
    top: -6px
}
.c-hamburger span::after {
    bottom: -6px
}
.c-hamburger--rot {
    background-color: transparent;
}
.c-hamburger--rot span {
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s
}
.c-hamburger--rot.is-active {

}
.c-hamburger--rot.is-active span {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}
.c-hamburger--htx {
    background-color: #ff3264
}
.c-hamburger--htx span {
    -webkit-transition: background 0s .3s;
    transition: background 0s .3s
}
.c-hamburger--htx span::after,
.c-hamburger--htx span::before {
    -webkit-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s
}
.c-hamburger--htx span::before {
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform
}
.c-hamburger--htx span::after {
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform
}
.c-hamburger--htx.is-active {
    background-color: #cb0032
}
.c-hamburger--htx.is-active span {
    background: 0 0
}
.c-hamburger--htx.is-active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}
.c-hamburger--htx.is-active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
.c-hamburger--htx.is-active span::after,
.c-hamburger--htx.is-active span::before {
    -webkit-transition-delay: 0s, .3s;
    transition-delay: 0s, .3s
}
.c-hamburger--htla {
    background-color: #32dc64
}
.c-hamburger--htla span {
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s
}
.c-hamburger--htla span::before {
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: -webkit-transform .3s, width .3s, top .3s;
    transition: transform .3s, width .3s, top .3s
}
.c-hamburger--htla span::after {
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: -webkit-transform .3s, width .3s, bottom .3s;
    transition: transform .3s, width .3s, bottom .3s
}
.c-hamburger--htla.is-active {
    background-color: #18903c
}
.c-hamburger--htla.is-active span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}
.c-hamburger--htla.is-active span::before {
    top: 0;
    -webkit-transform: translateX(38px)translateY(4px)rotate(45deg);
    -ms-transform: translateX(38px)translateY(4px)rotate(45deg);
    transform: translateX(38px)translateY(4px)rotate(45deg)
}
.c-hamburger--htla.is-active span::after {
    bottom: 0;
    -webkit-transform: translateX(38px)translateY(-4px)rotate(-45deg);
    -ms-transform: translateX(38px)translateY(-4px)rotate(-45deg);
    transform: translateX(38px)translateY(-4px)rotate(-45deg)
}
.c-hamburger--htra {
    background-color: #ff9650
}
.c-hamburger--htra span {
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s
}
.c-hamburger--htra span::before {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: -webkit-transform .3s, width .3s, top .3s;
    transition: transform .3s, width .3s, top .3s
}
.c-hamburger--htra span::after {
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transition: -webkit-transform .3s, width .3s, bottom .3s;
    transition: transform .3s, width .3s, bottom .3s
}
.c-hamburger--htra.is-active {
    background-color: #e95d00
}
.c-hamburger--htra.is-active span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}
.c-hamburger--htra.is-active span::before {
    top: 0;
    -webkit-transform: translateX(-8px)translateY(4px)rotate(-45deg);
    -ms-transform: translateX(-8px)translateY(4px)rotate(-45deg);
    transform: translateX(-8px)translateY(4px)rotate(-45deg)
}
.c-hamburger--htra.is-active span::after {
    bottom: 0;
    -webkit-transform: translateX(-8px)translateY(-4px)rotate(45deg);
    -ms-transform: translateX(-8px)translateY(-4px)rotate(45deg);
    transform: translateX(-8px)translateY(-4px)rotate(45deg)
}
#carbonads {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 1000;
    padding: 24px 12px 12px;
    width: 154px;
    background-color: #fff;
    line-height: 1.1;
    border: 1px solid #e7e7e7
}
.carbon-wrap {
    display: block;
    margin: 0 0 4px
}
.carbon-img {
    display: block;
    margin: 0 0 4px;
    padding: 0;
    width: 130px;
    height: 100px
}
.carbon-text {
    color: #818181;
    font-size: 12px
}
.carbon-poweredby {
    font-size: 10px
}
.carbonad__close {
    display: block;
    position: absolute;
    top: 0;
    left: 12px;
    height: 24px;
    font-size: 11px;
    line-height: 24px
}
@media all and (max-width: 660px) {
    #carbonads {
        display: none
    }
}
.mycity_o-grid__item {
  /* padding: 24px; */
  position: fixed;
  z-index: 989999999999;
  margin-top: 6px;
  left: 10px;
  /* width: 40px; */
  /* height: 40px; */
}

.admin-bar .mycity_o-grid__item {
  position: fixed;
  z-index: 989999999999;
  top: 35px;
  left: 10px;
}
.pushy {
  position: fixed;
  width: 250px;
  height: 100%;
  top: 0;
  z-index: 999999999;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.register_p{
    z-index: -1;
}
/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(-260px,0,0);
    -moz-transform: translate3d(-260px,0,0);
    -ms-transform: translate3d(-260px,0,0);
    -o-transform: translate3d(-260px,0,0);
    transform: translate3d(-260px,0,0);
}

.pushy-open{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.container-push, .push-push{

}

/* Menu Transitions */

.pushy, #container, .push{
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
}
/*Scroll*/
.page_info ul.blog_cat::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: #797676;
}
.page_info ul.blog_cat::-webkit-scrollbar              {  }
.page_info ul.blog_cat::-webkit-scrollbar-button       {  }
.page_info ul.blog_cat::-webkit-scrollbar-track        { }
.page_info ul.blog_cat::-webkit-scrollbar-track-piece  {  }
.page_info ul.blog_cat::-webkit-scrollbar-thumb        {  background: #fff;  }
.page_info ul.blog_cat::-webkit-scrollbar-corner       {  }
.page_info ul.blog_cat::-webkit-resizer                {   }
.pushy::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background: #797676;
}
.pushy::-webkit-scrollbar              {  }
.pushy::-webkit-scrollbar-button       {  }
.pushy::-webkit-scrollbar-track        { }
.pushy::-webkit-scrollbar-track-piece  {  }
.pushy::-webkit-scrollbar-thumb        {  background: rgba(47, 43, 43, 0.48);  }
.pushy::-webkit-scrollbar-corner       {  }
.pushy::-webkit-resizer                {   }
.template-feed .header{
    position: static;
}
.place_dd::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: #797676;
}
.place_dd::-webkit-scrollbar              {  }
.place_dd::-webkit-scrollbar-button       {  }
.place_dd::-webkit-scrollbar-track        { }
.place_dd::-webkit-scrollbar-track-piece  {  }
.place_dd::-webkit-scrollbar-thumb        {  background: #fff;  }
.place_dd::-webkit-scrollbar-corner       {  }
.place_dd::-webkit-resizer                {   }
.template-feed .header{
    position: static;
}

.chat_messages::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: #797676;
}
.chat_messages::-webkit-scrollbar              {  }
.chat_messages::-webkit-scrollbar-button       {  }
.chat_messages::-webkit-scrollbar-track        { }
.chat_messages::-webkit-scrollbar-track-piece  {  }
.chat_messages::-webkit-scrollbar-thumb        {  background: #fff;  }
.chat_messages::-webkit-scrollbar-corner       {  }
.chat_messages::-webkit-resizer                {   }
.template-feed .header{
    position: static;
}
.cart_items_container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: #797676;
}
.cart_items_container::-webkit-scrollbar              {  }
.cart_items_container::-webkit-scrollbar-button       {  }
.cart_items_container::-webkit-scrollbar-track        { }
.cart_items_container::-webkit-scrollbar-track-piece  {  }
.cart_items_container::-webkit-scrollbar-thumb        {  background: #fff;  }
.cart_items_container::-webkit-scrollbar-corner       {  }
.cart_items_container::-webkit-resizer                {   }
.template-feed .header{
    position: static;
}
/* Site Overlay */


.addtoany_list_center{
  text-align: center;
}
.btn-like{
  float: right;
  padding: 6px 55px;
}
.phone_email_left{
  margin-top:7px;
}
.dummy ul{
	list-style: none;
	margin:0;
}
.tooltipp {
	  display: inline;
  /* position: relative; */
  z-index: 999;
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 0;
  width: 100%;
}

/* Gap filler */
.tooltipp::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 20px;
	bottom: 100%;
	left: 50%;
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.tooltipp:hover::after {
	pointer-events: auto;
}

/* Tooltip */

.tooltip-content {
	position: absolute;
	z-index: 9999;
	width: 300px;
	left: 50%;
	bottom: 100%;
	font-size: 20px;
	line-height: 1.4;
	text-align: center;
	font-weight: 400;
	color: #fffaf0;
	background: transparent;
	opacity: 0;
	margin: 0 0 20px -150px;
	cursor: default;
	pointer-events: none;
	font-family: 'Satisfy', cursive;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: opacity 0.3s 0.3s;
	transition: opacity 0.3s 0.3s;
}

.tooltipp:hover .tooltip-content {
	opacity: 1;
	pointer-events: auto;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.tooltip-content span {
	display: block;
}

.tooltip-text {
	border-bottom: 10px solid #000;
	overflow: hidden;
	-webkit-transform: scale3d(0,1,1);
	transform: scale3d(0,1,1);
	-webkit-transition: -webkit-transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s;
}

.tooltipp:hover .tooltip-text {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

.tooltip-inner {
	background: rgba(231, 57, 49, 1);
	padding: 40px;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.tooltipp:hover .tooltip-inner {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Arrow */

.tooltip-content::after {
	content: '';
	bottom: -20px;
	left: 50%;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-top-color: #000;
	border-width: 10px;
	margin-left: -10px;
}
.form_pay{
	position: fixed;
	bottom: 0;
	right: 130px;
}
.tooltip-inner {
  max-width: 100%;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #E73931;
  border-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.header_promo .a_logo{
  padding: 0;
  border:0;
}
.dz-error-mark,.dz-success-mark,.dz-error-message{
  display: none;
}
body.home{
  padding-top: 0;
}
body.page-template-template-dialog{
  padding-top: 80px;
  overflow: hidden;
}
.admin-bar.page-template-template-dialog{
  overflow: hidden;
}
.cart_delete{
  opacity: 0;
}
.cart_delete:hover{
  color: #333;
  opacity:1;
  text-decoration: none;
  transition: 0.3s;
}
.bootstrap-tagsinput input{
  padding: 10px;
}
.bank .fa-dollar{
  margin-left:3px;
}
.food .fa-cutlery{
  margin-left:2px;
}
.members_in_wrap{
  padding-top:100px;
}
.btn-follow{
  float:right;
  width: 160px;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #b71710;
  border-color: #4cae4c;
}
body.page-template-template-auth{
  overflow: hidden;
}
.register_p .auth_login{
  height: 5px;
}
.place_info {
  padding-top: 50px;
  padding-bottom: 50px;
}
.share_block .addtoany_list_center{
  float:none;
}
.share_block .center{
  padding-top: 12px;
}
.chat_box .cart_item.new_messege {
  background: rgba(152, 150, 150, 0.4);
  cursor: pointer;
  border-bottom: 5px solid rgba(155, 155, 155, 0.36);
  border-radius: 5px;
}
.cart_item.new_messege:hover {
  background: #E73931;
  cursor: pointer;
  border-bottom: 5px solid #CA342D;
  border-radius: 5px;
}
.register_p .auth_login {
  height: 160px;
}
#loginresult {
height:20px;
}
.page-template-template-members-list .btn-follow {
   float: none;
   width: 100%;
}
body.page-template-template-add{
  padding-top:30px;
}
.submit_place_wrapper{
  padding-top: 35px;
}
.dropdown-toggle .cinema{
  color:#fff;
}
.post.p_style_one .p_text{
    word-break: break-word;
}
ul.post-categories {display:inline}
.form-allowed-tags {display:none}
#coupons,#stext{
    position: relative;
}
#instagrams .submit_add_message,#coupons .submit_add_message,#stext .submit_add_message{
  top:-50px;
}
.auth_soc_network {
  height: 140px;
}

.chat_box{
  padding-top: 80px;
}
.banner_block {
    margin-top: 15px;
    /* border-top: 1px solid #E5E5E5; */
    /* border-bottom: 1px solid #E5E5E5; */

    /* height: 200px; */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
    border: 2px dashed #211530;
    overflow: visible;
    position: relative;
   height: 100%;
    padding: 5px;
    border-radius: 5px;
}
.banner_block:before{
content: '';
    background: url(../img/plano.png)no-repeat;
    position: absolute;
    width: 48px;
    height: 34px;
    top: -12px;
    z-index: 9999999999;
    left: 19px;
}

.cont {
  overflow: hidden !important;
}

.banner_block .descriptor h2 {}
.banner_block .descriptor span {
	margin-bottom: -3px;
    display: block;
}
.banner_block .btn_block_banner {
    float: right;
    /* width: 40%; */
    height: 100%;
    padding: 20px 30px;

    color: black;
}
.btn_block_banner .btn-primary{
	background-color:white;
	color: #777777;
}
.banner_block .btn_block_banner h3 {}
.banner_block .btn_block_banner span {
  display: block;
  margin-bottom: 20px;
}
.banner_block .btn_block_banner a {}


.noimage .post_info {
	width:100%!important;
}
.sticky .post_info {
	background:#F9F9F9;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;

    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
   /* width: auto;*/
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: white;
    padding: 15px;
}
#loginresult{
	color:black;
}
#attachment_907{
	width: 100%!important;
}
.wp-image-907{
	width: 100%;
}
.page_info ul.blog_cat{
   padding: 10px 0;
 }


/*nnaav*/
#header-nav {
  top: 0;
  display: block;
  width: 100%;
  z-index: 999999;
  background: black;
  -webkit-transition: -webkit-transform 0.7s 0.3s ease;
  -moz-transition: -moz-transform 0.7s 0.3s ease;
  -ms-transition: -ms-transform 0.7s 0.3s ease;
  transition: transform 0.7s .3s ease;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
#header-nav.hide-nav-bar {
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-backface-visibility: hidden;
}
a.menu-link {
  float: right;
  display: block;
  padding: 1em;
}
nav[role=navigation] {
  clear: right;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.js nav[role=navigation] {
  overflow: hidden;
  max-height: 0;
}
nav[role=navigation].active {
  max-height: 15em;
}
nav[role=navigation] ul {
  margin: 0;
  padding: 0;
  float: left;
  padding: 0.7em 0;
}
nav[role=navigation] li a {
  display: block;
  padding: 0.8em;
  font-size: 0.9em;
}
.menu-link {
  height: 30px;
  width: 33px;
  cursor: pointer;
}
.bar1,
.bar2,
.bar3 {
  margin-top: 3px;
  background: #999999;
  width: 33px;
  height: 4px;
  position: absolute;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.bar2 {
  margin-top: 13px;
}
.bar3 {
  margin-top: 23px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.brand {
  float: left;
  margin-left: 1em;
  padding: 1em;
}
.brand h1 {
  margin: 0;
  font-size: 1.5em;
}
@media screen and (min-width: 48.25em) {
  a.menu-link {
    display: none;
  }
  .js nav[role=navigation] {
    max-height: none;
  }
  nav[role=navigation] ul {
    margin: 0 0 0 -0.25em;
    border: 0;
    float: right;
  }
  nav[role=navigation] li {
    display: inline-block;
    margin: 0 0.25em;
  }
  nav[role=navigation] li a {
    border: 0;
  }
}

section {
  margin-top: 4em;
  padding: 1em;
  color: #5c5c5c;
}
section hr {
  border-bottom: none;
  color: #f2f2f2;
}
.info {
  text-align: center;
}
header{
    position: relative;
    top: 66px;
        z-index: 9999999;
}
/*megamenu*/
.megamenu {
  position: absolute;
  z-index: 99999;
  left:0;
  top: 179px;
  right: 0;
  display: none;
  margin:-112px;
}
              .megamenu_content .happy_item .happy_like:hover{
  background: #cd2a32;
}
.megamenu_header{
  background: #f7cc04;
  padding: 25px 0;
}
.megamenu_header .megamenu_list li{
  display: inline-block;
  margin-right: 100px;
}
.megamenu_header .megamenu_list li a{
  font-size: 16px;
  color:#000;
  font-family: 'Montserrat', sans-serif;
}
.megamenu_header .megamenu_list li:last-child{
  margin-right: 0px;
}
.megamenu_content{
  background: rgba(0,0,0,0.95);
  padding:30px 0;
}
.megamenu_content .megamenu_content_list li{
  margin-bottom: 20px;
}
.megamenu_content .megamenu_content_list li:last-child{
  margin-bottom: 0px;
}
.megamenu_content .megamenu_content_list li a{
  color:#fff;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}
.megamenu_content_list .fa{
  margin-right: 7px;
}
.megamenu_descr li a{
  color:#fff;
  display: block;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  padding:8px;
  border:2px solid transparent;
  border-radius: 6px;
}
.megamenu_descr li div img{
  width:50px;
  display: block;
  height: 50px;
  float:left;
  margin-top: 5px;
  margin-right: 15px;
  border-radius: 50%;
}
.megamenu_descr li a p.descr{
  color:#717171;
  font-size: 14px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
}
.megamenu_descr_two{
  margin-top: 8px;
}
.megamenu_descr_two li a{
  padding: 0;
  border-radius: 0;
  margin-bottom: 15px;
}
.megamenu_content_list li a:hover{
  color:#ffd200;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.megamenu_descr_one li a:hover {
  border:2px solid #ffd200;
  border-radius: 6px;
  padding:8px;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.megamenu_descr_two li a:hover {
  border-bottom:2px solid #ffd200;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.megamenu_content .happy_item .happy_like {
  width: 100px;
  z-index: 1000;
  position: absolute;
  /* bottom: 10px; */
  left: 10px;
  top: 13px;
  height: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3) url(../images/happy-like.png)no-repeat 19% 48%;
}
.megamenu_content .happy_item{
  margin-top:13px;
}
.megamenu_content .happy_item .h_img{
  margin:0;
}
.megamenu_content .happy_item .h_img img{
  border-radius: 5px;
}
.megamenu_content .happy_item h4{
  position: absolute;
  bottom: 9px;
  left: 29px;

}
.megamenu_content .happy_item h4 a:hover{
  color:#cd2a32;
}
.megamenu_content .happy_item h4 a{
  color:#FFF;
}
.megamenu {
  position: absolute;
  z-index: 99999;
  left:0;
  top: 179px;
  right: 0;
  display: none;
  margin:-112px;
}
.megamenu:before {
  content: "";
  width: 0;
  right: 504px;
  top: -9px;
  position: absolute;
  height: 0;
  border-bottom: 10px solid #ffd200;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.megamenu:before{
  border-color:transparent;
}
.megamenu:before {
  content: "";
  width: 0;
  right: 337px;
}
/*end megamenu*/
.top_mnu{
  background: #0a0a0a;
  }
  .top_mnu{

  }
  .index_menu .cart_item{
  top: -6px;
    right: -7px;
}
.index_menu{
  background: rgba(24,23,70,0.9);
  padding-bottom: 40px;
  position: absolute;
  width:100%;
  display: none;
  height: 100%;
  top: 92px;
  z-index: 9999;
}
.index_menu_header{

  padding:50px;
}
.index_menu_header .eng {
  position: relative;
  width: 100%;
  cursor: pointer;
  background-image:  url(../images/flag.png);
  background-position: 17px 53%;
  margin-bottom: 15px;

}
.index_menu_header .rub {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-left:0;
  background-image: url(../images/current.png);
  background-repeat: no-repeat;
  background-position: 17px 53%;
  margin-bottom: 35px;

}
.index_menu_header .eur_money {
  background-image: #181818 url(../images/current.png);
  background-position: 17px 53%;
}
.index_menu_header .usd_money {
  background-image: #181818 url(../images/current.png);
  background-position: 17px 53%;
}
.index_menu_header .languages_sub {
  width: 100%;
  top: 56px;
}
.index_menu_header .rus_flag{
  background: url(../images/rus.png) no-repeat 17px 53%;
}
.index_menu_header .georgia_flag {
  background: url(../images/geogia.png) no-repeat 17px 53%;
}
.index_menu_header .danish_flag {
  background: url(../images/danish.png) no-repeat 17px 53%;
}
.index_menu_content .megamenu:before{
  border-color:transparent;
}
.index_menu_header .nav_a_r{
  margin-bottom: 45px;
}
.index_menu_content{
  position: relative;
}
.index_menu_content .megamenu{
  display: block;
  position: static;
}
.index_menu_header{

  padding:50px;
}
.index_menu_header .eng {
  position: relative;
  width: 100%;
  cursor: pointer;
  background-image:  url(../images/flag.png);
  background-position: 17px 53%;
  margin-bottom: 15px;

}
.index_menu_header .rub {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-left:0;
  background-image: url(../images/current.png);
  background-repeat: no-repeat;
  background-position: 17px 53%;
  margin-bottom: 35px;

}
.index_menu_header .eur_money {
  background-image: #181818 url(../images/current.png);
  background-position: 17px 53%;
}
.index_menu_header .usd_money {
  background-image: #181818 url(../images/current.png);
  background-position: 17px 53%;
}
.index_menu_header .languages_sub {
  width: 100%;
  top: 56px;
}
.index_menu_header .rus_flag{
  background: url(../images/rus.png) no-repeat 17px 53%;
}
.index_menu_header .georgia_flag {
  background: url(../images/geogia.png) no-repeat 17px 53%;
}
.index_menu_header .danish_flag {
  background: url(../images/danish.png) no-repeat 17px 53%;
}
.index_menu_header .nav_a_r{
  margin-bottom: 45px;
}
.index_menu_content .megamenu:before{
  border-color:transparent;
}
.index_menu_content{
  position: relative;
}
.index_menu_content .megamenu{
  display: block;
  position: static;
}
.index_navigation_list{
  margin-top: 40px;
}
.index_navigation_list ul li{
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: white;
  margin-bottom: 35px;
}
.index_navigation_list ul li a:hover{
  color: #f6cb03;
}
.tm_nav{
  padding: 18px 0px;
}
.tm_nav li{
  display: inline-block;
  margin-right: 35px;
  float: left;
}
.tm_nav li:last-child{
  margin-right: 15px;
}
.tm_nav li a{
  display: inline-block;
  color:#454545;
}
.tm_nav li a:hover{
  text-decoration: underline;
}
.select{
  position: relative;
}

.tm_nav{
  padding: 18px 0px;
}
.tm_nav li{
  display: inline-block;
  margin-right: 35px;
  float: left;
}
.tm_nav li:last-child{
  margin-right: 15px;
}
.tm_nav li a{
  display: inline-block;
  color:#454545;
}
.tm_nav li a:hover{
  text-decoration: underline;
}
.drop,.drop_2 {
  width: 133px;
  display: none;
  position: absolute;
  z-index: 555;
  right: 0;
  background: #fff;
}
.drop li,.drop_2 li {
  list-style: none;
  cursor: pointer;
  display: block;
  color: #444;
  width: 133px;
  padding: 19px 41px;
  background-color: #f7f7f7;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 13px;
  color:#454545;
  border-top:3px solid #f1f1f1;
  /*background: #181818 url(../images/flag.png) no-repeat 15% 53%;*/
  color: #444;
}
.drop li:hover,.drop_2 li:hover {
  background-color: #e8e8e8;
  color: #222;
}
.map_header .menu_xs{
  position: absolute;
  top: 8px;
  left: 20px;
  display: none;
}

.logo{
  font-size: 30px;
  font-weight: bold;
  color:white;
  z-index: 10;
  float: left;
  opacity: 1!important;
}
.logo .dating{
  font-weight: 300;
  color:#ffd200;
}
.logo .quotes{
  color:#4c516a;
}

.navigate{
  padding-top: 12px;
}
.navigate>li{
  display: inline-block;
  margin-right: 20px;

  font-size: 16px;
  color:white;
}
.navigate li a.active{
  color:#ffd200;
}
.navigate li:last-child{
  margin-right: 0;
}
.navigate > li > a{
  padding: 0;
}
.navigate > li a:hover{
  background: none;
  color:#ffd200;
}

.home_sub{
  position: relative;
}

.side_bar h1 .h1_sp{
  color:#ffd200;
  font-weight: bold;
}
.side_bar h5,
.shop_items h5,
.open_similar_items h5,
.open_comments_form h5{
  font-size: 28px;
  color:#363b51;
  font-weight: 500;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom:4px solid #ffd200;
}
.side_bar_list{
  font-family: 'Montserrat', sans-serif;
  color:#363b51;
  font-size: 16px;
  margin-bottom: 60px;
}
.side_bar_list li a{
  color:#363b51;
  display: block;
  margin-bottom: 25px;
}
.side_bar_list li a:hover{
  color:#ffd200;

}
.side_bar_list .sub_bar_list:before {
  content: "";
  width: 0;
  left: 42px;
  top: -10px;
  position: absolute;
  height: 0;
  border-bottom: 10px solid #f4f4f4;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.side_bar_list .sub_bar_list{
  background: #f4f4f4;
  display: none;
  position: relative;
  padding: 20px 20px 1px 20px;
  margin-bottom: 15px;
}
.side_bar_list .sub_bar_list li a{
  color:#9f9f9f;
}
.side_bar_list .sub_bar_list li a:hover{
  color:#8B7E7E;
}
.side_bar .side_mocup{
  background: url(../images/mocup.jpg) no-repeat;
  width: 100%;
  padding: 120px 20px;
  background-size: cover;
  border-radius: 5px;
}
.side_bar .side_mocup h1{
  color:white;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.6;
}
.side{
  width: 200px;
  z-index: 99999;
  top:54px;
  display: none;
  left:0;
  position: absolute;
  border-top: 2px solid #ffd200;
  background: rgba(0,0,0,0.9);
}
.side:before{
  content: "";
  width: 0;
  left: 15px;
  top: -12px;
  position: absolute;
  height: 0;
  border-bottom: 10px solid #ffd200;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.side_bar{
  position: relative;
}
.side_bar_sm{
  position: absolute;
  top: 148px;
  left: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(0,0,0,0.9);
  padding: 199px 40px;
  height: calc(100% - 148px);
}
.side_bar_sm h5{
  color:white;
}
.side_bar_sm .side_bar_list li a{
  color:white;
}
.side_bar_sm .side_bar_list .sub_bar_list {
  background: transparent;
  border-top: 2px solid #ffd200;
  border-bottom: 2px solid #ffd200;
  margin: 0 -40px;
  display: none;
  position: relative;
    padding: 20px 20px 1px 20px;
  margin-bottom: 15px;
}
.side_bar_sm .sub_bar_list li a,
.side_bar_sm .side_bar_list li a:hover{
  color:#ffd200;
}
.side_bar_sm .sub_bar_list li a:hover{
  color:white;
}
.side_bar_sm .side_bar_list .sub_bar_list:before {
  content: "";
  width: 0;
  left: 42px;
  top: -10px;
  position: absolute;
  height: 0;
  border-bottom: 10px solid #ffd200;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.side_bar_sm .side_bar_list .sub_bar_list:after {
  content: "";
  width: 0;
  left: 42px;
  top: -6px;
  position: absolute;
  height: 0;
  border-bottom: 10px solid rgba(0,0,0,0.9);;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.side_bar_sm  .tags_list li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background: rgba(47,47,47,0.5);
  margin-bottom: 15px;
  float: left;
  margin-right: 10px;
  border-radius: 20px;
}
.side_bar_sm  .tags_list li a:hover{
  background:#ffd200;
}

.menu_list{
  position: relative;
}
.menu_list:hover .menu_drop{
  opacity: 1;
  top:-2px;
}

.menu_drop{
  position: absolute;
  width: 100%;
  left:100%;
  border-left: 2px solid #ffd200;
  top:-9999em;
  opacity: 0;
  background: rgba(0,0,0,0.9);
  -webkit-transition: 0.5s opacity;
  -o-transition: 0.5s opacity;
  transition: 0.5s opacity;
}
.menu_drop:before{
  content: "";
  width: 0;
  left: -22px;
  top: 16px;
  position: absolute;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 10px solid #ffd200;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
}
.menu_drop{
  opacity: 1;
  top:-2px;
}
.page_footer{
	background: #272121;
	padding: 30px;
}
#footer_widget h2,#footer_widget .textwidget{
  color:white;
}
#footer_widget #searchform{
  margin-top: 30px;
}
.page_footer .widget-area ul{
  margin:0;
  padding: 0;
}
.page_footer .widget-area .menu{
  overflow: visible;
  max-height: none;
  border:none;
  background: transparent;
}
.page_footer .widget-area .menu a{
  text-align: left;
  font-size: 14px;
  padding: 0;
  padding-bottom: 10px;
}
.page_footer .widget-area .menu li {
    list-style: none;
    /* display: inline-block; */
     width: 100%;
     margin: 0px;
     padding: 0px;
}
.page_footer  .widget-area ul:before,
.page_footer  .widget-area ul:after{
  display: none;
}
.weather{
  margin-left:10px;
  color:white;
  margin-top: 3px;
  min-height: 40px;
  float:left;
}

.weather:hover{
  color:white;
}
.img_container {
    position: relative;
    overflow: hidden;
    height: 255px;
}
.img_container img {
     -webkit-transform: scale(1.2);
     transform: scale(1.2);
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
}
.img_container_scale{
	 -webkit-transform: scale(1)!important;
     transform: scale(1)!important;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
}
.logged-in .shortcodes header{
	background-color:transparent;
	position: relative;
	box-shadow: none;
	z-index: 1;
	top:0;
}

.logged-in .shortcodes header h2{
	font-size: 28px;
}
#archives-dropdown--1,#cat{
	margin: 0 auto;
    text-align: center;
    position: relative;
    display: block;
}
.rsswidget{
	color:white;
}
.shortcodes header.sticky{
	background-color:transparent;
	box-shadow: none;
}
.shortcodes header{
	background-color:transparent;
	position: relative;
	box-shadow: none;
	z-index: 1;
	top:0;
}
.shortcodes header h2{
	font-size: 28px;
}
.Places_map .mycity_o-grid__item{
	top: 7px;
}
.p_footer ul{
  list-style: none;
  padding: 60px 20px;
}
.p_footer ul a p{
   font-size: 20px;
   color: white;
   transform: rotate(270deg);
   float: left;
   margin-bottom: 41px;
}
.p_footer .date{
    transform: rotate(0deg);
    font-size: 100px;
    line-height: 30px;
}


.se-content .post.p_style_two{
  background: none;
}
.se-content .post.p_style_two .post_info{
  background: transparent;
}
.se-content .post_info h2 a,.se-content .p_text p,.se-content .p_footer li{
  color:white;
}
.bright_slope{
  position: absolute;
  background: rgba(0,0,0,0.2);
  width: 100%;
  height: 100%;
}
.post_info_p{
	text-align: center;
	color: white;
	font-size: 16px;
	margin-top: 31px;
	display: block;
}
.copyright-area svg {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -96px;
    margin-top: -50px;
}
.copyright-area.copyright-area__dark {
    background-color: #211530;
}
.copyright-area {
    position: relative;
    padding: 60px 0 48px 0;
    font-size: 14px;
    text-align: center;
    color: #919191;
    background-color: #262526;
}


.btn--top {
    position: absolute;
    top: -12px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.svg_1{
  transform: translate3d(0px, 40px, 0px) scale(0.5, 0.5);
   -webkit-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
}
.haha{
	    transform: translate3d(0px, 0px, 0px)!important;
	    -webkit-transition: all 1s;
	    -o-transition: all 1s;
	    transition: all 1s;
}
.svg_2{
  transform: translate3d(0px, 40px, 0px) scale(0.5, 0.5);
   -webkit-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
}
.btn--top_text .btn__arrow {
    display: block;
    position: absolute;
    left: 50%;
    height: 10px;
    width: 10px;
    border-left: 2px solid white;
    border-top: 2px solid white;
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}
.p_text .btn-continue{
  margin-bottom: 0;
}

.wtr {
    will-change: transform;
}
.fa_close_2 {
    color: red; position: relative;
    margin-bottom: -7px;
    z-index:700;
    cursor: pointer;
    font-size: 20px;

}

.infinite-background  {
    background:  url(../img/cloud_PNG9.png) 0px 50% repeat;
    }

    .admin_form_5 {

    padding:20px;background-color:white;
    }
.font166 {
    padding:5px;color:black;
    }
.w900 {
    	width: 90%  !important;
    }

.Places_grid #hero-bg, .Places_list #hero-bg {
     min-height: 1100px !important;
}
.user_sm img {
min-height: 65px;
}
.fb_btn  {
      z-index: 999;
    }

.cssload-cube {
	margin-left: -37px;
	margin-top: 50px;
	width: 75px;
	height: 75px;
	left: 50%;
	position: absolute;
	transform-style: preserve-3d;
		-o-transform-style: preserve-3d;
		-ms-transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
	animation: cssload-move-cube infinite 2.73s;
		-o-animation: cssload-move-cube infinite 2.73s;
		-ms-animation: cssload-move-cube infinite 2.73s;
		-webkit-animation: cssload-move-cube infinite 2.73s;
		-moz-animation: cssload-move-cube infinite 2.73s;
}

.cssload-plane-1, .cssload-plane-2, .cssload-plane-3 {
	width: 75px;
	height: 75px;
	position: absolute;
	transform-style: preserve-3d;
		-o-transform-style: preserve-3d;
		-ms-transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
}

.cssload-plane-3 {
	transform: translate3d(0px, 0px, -37px);
		-o-transform: translate3d(0px, 0px, -37px);
		-ms-transform: translate3d(0px, 0px, -37px);
		-webkit-transform: translate3d(0px, 0px, -37px);
		-moz-transform: translate3d(0px, 0px, -37px);
}

.cssload-plane-2 {
	transform: translate3d(0px, 0px, 0px);
		-o-transform: translate3d(0px, 0px, 0px);
		-ms-transform: translate3d(0px, 0px, 0px);
		-webkit-transform: translate3d(0px, 0px, 0px);
		-moz-transform: translate3d(0px, 0px, 0px);
}

.cssload-plane-1 {
	transform: translate3d(0px, 0px, 37px);
		-o-transform: translate3d(0px, 0px, 37px);
		-ms-transform: translate3d(0px, 0px, 37px);
		-webkit-transform: translate3d(0px, 0px, 37px);
		-moz-transform: translate3d(0px, 0px, 37px);
}

.cssload-plane-1 div, .cssload-plane-2 div, .cssload-plane-3 div {
	border-radius: 50%;
	position: absolute;
	width: 5px;
	height: 5px;
	animation: cssload-reverse-circles infinite 2.73s;
		-o-animation: cssload-reverse-circles infinite 2.73s;
		-ms-animation: cssload-reverse-circles infinite 2.73s;
		-webkit-animation: cssload-reverse-circles infinite 2.73s;
		-moz-animation: cssload-reverse-circles infinite 2.73s;
}

.cssload-plane-1 div {
	background: rgba(255,33,33,0.97);
}

.cssload-plane-2 div {
	background: rgba(250,35,250,0.98);
}

.cssload-plane-3 div {
	background: rgb(0,51,255);
}

.cssload-top-left {
	top: 0;
	left: 0;
}

.cssload-top-middle {
	top: 0;
	left: 35px;
}

.cssload-top-right {
	top: 0;
	right: 0;
}

.cssload-middle-left {
	top: 35px;
	left: 0;
}

.cssload-middle-middle {
	top: 35px;
	left: 35px;
}

.cssload-middle-right {
	top: 35px;
	right: 0;
}

.cssload-bottom-left {
	bottom: 0;
	left: 0;
}

.cssload-bottom-middle {
	bottom: 0;
	left: 35px;
}

.cssload-bottom-right {
	bottom: 0;
	right: 0;
}




@keyframes cssload-move-cube {
	0% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	35% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	50% {
		transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	65% {
		transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	80% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@-o-keyframes cssload-move-cube {
	0% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	35% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	50% {
		-o-transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	65% {
		-o-transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	80% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@-ms-keyframes cssload-move-cube {
	0% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	35% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	50% {
		-ms-transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	65% {
		-ms-transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	80% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@-webkit-keyframes cssload-move-cube {
	0% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	35% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	50% {
		-webkit-transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	65% {
		-webkit-transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	80% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@-moz-keyframes cssload-move-cube {
	0% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	35% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
	}
	50% {
		-moz-transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	65% {
		-moz-transform: rotateX(-34.6deg) rotateY(44deg) rotateZ(0deg);
	}
	80% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@keyframes cssload-reverse-circles {
	0% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	35% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	50% {
		transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	65% {
		transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	80% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@-o-keyframes cssload-reverse-circles {
	0% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	35% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	50% {
		-o-transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	65% {
		-o-transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	80% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@-ms-keyframes cssload-reverse-circles {
	0% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	35% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	50% {
		-ms-transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	65% {
		-ms-transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	80% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@-webkit-keyframes cssload-reverse-circles {
	0% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	35% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	50% {
		-webkit-transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	65% {
		-webkit-transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	80% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}

@-moz-keyframes cssload-reverse-circles {
	0% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	20% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	35% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	50% {
		-moz-transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	65% {
		-moz-transform: rotateX(35deg) rotateY(-35deg) rotateZ(0deg);
	}
	80% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
}
.authorization_form {
    min-height: 200px;
    }
.submit_place_wrapper  [type="file"] {
display: none;
}
.submit_place_wrapper   .dropzone {
min-height: 100px;
}
.submit_place_wrapper    .drop1, .submit_place_wrapper  .drop2 {
background-color: #eee;
border-radius: 5px;
width: 100%;
height: 100px;
position: relative;
}


.w100p {
width: 100%; }

.por {
position: relative;
}
.fa_add_1 {
color: red; position: relative;
margin-bottom: -20px;
z-index: 700;
cursor: pointer;
font-size: 20px;

}
.ph_mw800 {
max-width: 800px; margin: 0 auto;
}
.ov {
overflow: visible;
}

.cb {
clear:both;
}
.bright_slope_op{
background: rgba(0,0,0,0.5);
}
.wh200 {
height: 200px; width: 200px;
}
#oa_social_login_frame_96049 {
visibility: visible; border: 0px none; width: 1049px; height: 61px !important; background-color: transparent;
}
.db_non{
display: none;
}
#stripe1{
position: fixed;
z-index: 1000;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255,255,255,0.8);
}
#paymentWaitDisplay{
border-radius: 5px;
padding: 40px;
background: #FFF;
font: 25px 'Lato-Light', sans-serif;
width: 80%;
margin: auto;
height: 50%;
text-align: center;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
box-shadow: 0 0 13px rgba(0,0,0,0.3);
}

.footer_rectangle_new {
width: 85px !important;
background-size: cover !important;

}
my_sectionid .inside {
min-height: 600px;
}

div.gm-style {
min-height: 250px !important;
}

#canvas2 {
position: relative;
z-index: 800;
height: 600px;
}

#map-canvas {
margin-top: 20px !important;
z-index: 800 left : 90 px;
/*position: static !important;*/
/*height: 250px !important;*/
min-height: 500px !important;
*/
}



.controls {
margin-top: 16px;
border: 1px solid transparent;
border-radius: 2px 0 0 2px;
box-sizing: border-box;
-moz-box-sizing: border-box;
height: 32px;
outline: none;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
width: 100%;
}

#pac-input {
background-color: #fff;
font-family: Roboto;
font-size: 15px;
font-weight: 300;
margin-left: 12px;
padding: 0 11px 0 13px;
text-overflow: ellipsis;
min-width: 350px;
width: 25%;
}

#pac-input:focus {
border-color: #4d90fe;
}

.pac-container {
font-family: Roboto;
}

#type-selector {
color: #fff;
padding: 5px 11px 0px 11px;
width: 25%;
height: 230px;
min-width: 350px;
margin-top: 60px;
z-index: 5000000 !important;
position: relative;
left: 10px !important;
}

#type-selector label {
font-family: Roboto;
font-size: 13px;
font-weight: 300;
}


#call_rating {
font-size: 23px;
position: absolute;
left: 50%;
margin-left: -80px;
background-color: #169118;
font-family: 'Roboto', sans-serif;
font-weight: 100;
top: -89px;
display: block;
z-index: 999999;
cursor: default;
padding: 15px 0;

}


.button_substribe {

background-color: rgb(37, 37, 37);
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
font-size: 14px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 6px;
padding-left: 12px;
padding-right: 12px;
padding-top: 6px;
transition-delay: 0s;
transition-duration: 0.3s;
transition-property: all;
transition-timing-function: ease;


}
#myAffix2 .fixed {
position: fixed;
z-index: 10;
}
body {
margin: 0;
padding: 0;

}

#hero {
position: absolute;

}

#hero-bg  {
position: absolute;
width: 100%;

margin-top: -30px;
background-position: 10% 0;
background-repeat: repeat-y !important;
background-size: cover !important;
min-height: 1000px;
overflow: hidden;
background-color:black;
}
.hero-content {
position: absolute;
right: 0;
left: 0;
top: 15em;
width: 100%;
text-align: center;
background: rgba(0,0,0,0.25) !important;
color: white;
}
footer{

overflow: hidden;
}


.uber_block_price {
width: 100%;

/* border: 1px dotted #fff;*/
padding: 5px;
margin: 0 auto;
margin-top: 0px;
}


.commentNavigation{
	margin: 20px;
}

.reviews {
    display: block !important;
}

.wide .grid_cont{
    margin-bottom:0;
    width: 100%;
}
#canvas2 input {
 color: black;
}
#maincn {display:none}

#type-selector {
    position: relative;
    top: 130px !important;
}

#pac-input{
    position: absolute;
    left: 0px !important;
    top: 155px !important;
    height: 30px !important;
    z-index: 9999 !important;
}
.place_ofersss {
	margin-bottom:60px !important;
    background-color: #E85643 !important;
    width: 120% !important;
    height: 400px !important;
    margin-left: -10% !important;
    text-align:center !important;
    padding-top:10px !important;
	box-shadow: 0 0 0.5em hsla(225, 100%, 65%, 0.7) !important;
}
.place_ofersss {
	margin-bottom:60px !important;
    background-color: #E85643 !important;
    width: 120% !important;
    height: 400px !important;
    margin-left: -10% !important;
    text-align:center !important;
    padding-top:10px !important;
	box-shadow: 0 0 0.5em hsla(225, 100%, 65%, 0.7) !important;
}
.place_ofersss_images {
display: block !important;position:absolute !important;left:3%!important;
}
.place_oferss_div1 {
    text-align:left !important;
    margin-left:40% !important;
}
.place_oferss_div1 .free_drink{
    font-size:72px !important;
    color:white !important;
}
.place_oferss_div1 .share {
    font-size:20px !important;color:white!important;
}
.color_white {
    color:white!important;
}
.comment-list {
    padding: 0px !important;
}

.big_tremula {
    position: relative !important;
    width: 116%;
    border-top-left-radius: 320% 90%;
    border-top-right-radius: 320% 90%;
    background: #FFF;
    background-size: cover;
    left: -8%;
    height: 420px;
}
.place_ofersss{
	position: relative;
}
.place_ofersss:before{
	width: 116%;
    content: '';
    top: -59px;
    height: 62px;
    position: absolute;
    background: #E85643;
    border-top-left-radius: 200% 300%;
    border-top-right-radius: 200% 300%;
    left: -8%;
}
.cupon_code_place {
    display: none;
}

.evo_popup{
  z-index: 9999999999999!important;
}
.cupon_code_new {
    border: 1px dashed black;
    min-width: 300px;
    padding: 20px;
    font-size: 40px;
    display: inline-block;
    letter-spacing: 6px;
}

.user_vis {
    min-width: 250px;
}

.block_profile{
    color: #fff;
}

#hero-bg {
    display: block !important;
}
.fixid_notr {
    position: fixed !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.template-item-minimal .map_place{
	height: 170px !important;
}
.page404 {
    margin-top: 250px !important;
    margin-bottom: 500px !important;
}
.error404 .page_info {

}









#maincn {display: block; !important}
#edited_gridlead {
    margin-bottom: 35px;
}
.dn_non {
    display: none;
    }

    .tc-container  , .tickera{
        display: block !important;
    }
    .home #container{
  margin:0;
}

.dz-complete {

      font: normal normal normal 14px/1 FontAwesome !important;


}
.dz-complete:before {
    content: "\f00c";
    position: absolute;
    z-index: 999;
    font-size: 30px;
    color: #00FF08;
}
.col-md-9 .dz-complete:before {
   position: absolute;
  top: 65px !important;
}

.catalog .clearfix a:hover {
    cursor: pointer;
}


.singlescroll {
    position: relative;
    width: 100px;
    margin: 0 auto;
    top: -120px;
}
.searh_header {
    min-height: 400px;
    margin-bottom: -150px;
}

/* header arrow */
.header_arrow {
    color: rgb(33, 32, 32);
    font-size: 0px;
    position: absolute;
    width: 50px;
    font: none;
    transition: color .2s ease-in-out;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    z-index: 111;
    background:none !important;
    height: 77px !important;
    display:none;
}
.header_arrow.__r {
    background: url(../img/right.png) !important;
    opacity: 0.9;
    display: none;
}
.header_arrow.__r:hover {
    background: url(../img/right.png) !important;
    opacity: 1;

}
.header_arrow.__l {
    background: url(../img/left.png) !important;
    opacity: 0.9;
    display: none;

}
.header_arrow.__l:hover {
    background: url(../img/left.png) !important;
    opacity: 1;

}
.header_arrow .fa-caret-right {
    margin-left: auto;
    margin-right: -7px;
    display: none;

}
.header_arrow .fa-caret-left {
    margin-left: -7px;
    display: none;
}
}
.header_arrow.__r {
    background: url(../img/right.png) !important;
    opacity: 0.9;
    display: none;
}
.header_arrow.__r:hover {
    background: url(../img/right.png) !important;
    opacity: 1;

}
.header_arrow.__l {
    background: url(../img/left.png) !important;
    opacity: 0.9;
    display: none;

}
.header_arrow.__l:hover {
    background: url(../img/left.png) !important;
    opacity: 1;

}
.header_arrow {
    color: rgb(33, 32, 32);
    font-size: 45px;
    position: absolute;
    width: 50px;
    background: #fff;
    transition: color .2s ease-in-out;
    cursor: pointer;
    top: 42%;
    transform: translateY(-50%);
    z-index: 111;
}


.header_arrow:hover {
    color:#dd3333;
}

.header_arrow.__l {
    left: 0px;
}

.header_arrow.__r {
    right: 0px;
}
.header_arrow .fa-caret-right{
    margin-left: auto;
    margin-right: -7px;
}
.header_arrow .fa-caret-left{
    margin-left: -7px;
}
.phone_email_left > span {
    float: none;
    margin-right: auto;
    font-size: 22px;
    margin-top: -10px;
}

.start_descrition .icons {
    margin-top: 25px;
}
@media (max-width: 680px) {
    .header_arrow {
        display: none !important;
    }
}



.wpb_wrapper  , .top_promo_block , .vc_column-inner , .body_opacity{
    overflow: hidden !important;
    max-width: 100% !important;
}
html {
    overflow-x: hidden;
}



.eventon_events_list .eventon_list_event .ev_ftImg{
    background-repeat:no-repeat !important;
    width: 50px !important;

    position: absolute !important;
    margin:-10px 0 !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover ;
    background-position:top center !important;
    display: block !important;
    max-height: 100% !important;;
}
