/* 
    Document   : Synero
    Created on : Aug 23, 2014, 07:07:07 PM
    Author     : Harry
    Description: Synero - one page portfolio & Agency template
    Version    : V1.0
*/

/*-------------------------------------------------
 =  Table of Css

  1.Import Google Fonts
 2.Page-Loader
 3.GENERAL
 4.PARALLAX
 5.NAVBAR
 6.HOME/ SLIDER
 7.HERO-SECTION
 8.SERVICES
 9.PORTFOLIO / WORKS
 10.TESTIMONIALS
 11.ABOUT
 12.TWITTWER-TWEET
 13.PRICING
 14.NEWS-LETTER
 15.BLOG
 16.CONTACT
 17.FOOTER
 18.BACK-TO-TOP
 
-------------------------------------------------*/

/* ---------------------------------------------------------------------- */
/*  1.Import Google Fonts
/* ---------------------------------------------------------------------- */
@import url('http://fonts.googleapis.com/css?family=Roboto:300,400,400italic,500,700');
body { 
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%; 
    cursor:default;
    color: #333333;
    font-size: 14px;
    line-height: 24px;
    background-color: #fff;
    font-weight: 400;
    height:100%;
    /*overflow-y: hidden !important;*/
}
h5 {font-size:17px;}
/* ---------------------------------------------------------------------- */
/*  2.Page-Loader
/* ---------------------------------------------------------------------- */
.animationload {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* change if the mask should have another color then white */
    z-index:999999; /* makes sure it stays on top */
}
.loader {
    width:200px;
    height:200px;
    font-size:0;
    position:absolute;
    left:50%; /* centers the loading animation horizontally one the screen */
    top:50%; /* centers the loading animation vertically one the screen */
    background-image:url(../img/ajax-loader.gif); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:-100px 0 0 -100px; /* is width and height divided by two */
}
/* ---------------------------------------------------------------------- */
/*  3.GENERAL
/* ---------------------------------------------------------------------- */
::selection{
    background: rgba(153,0,7,0.5);
    color: #ffffff;
}
::-moz-selection {
    background: rgba(153,0,7,0.5);
    color: #ffffff;
}
.btn-custom{
	 background-color: #ffa900;
	border: 2px solid #ffa900;
	color: #ffffff;
	border-radius: 3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	letter-spacing: 1px;
	padding: 8px 20px;
}
.btn-custom:hover,.btn-custom:focus{
	background-color: transparent;
	border: 2px solid #ffa900;
	color: #ffa900;
	outline: none;
}
.title {
    position: relative;
    color: #666;
    font-weight: 500;
}
.min-h-40{
    min-height: 40px;
}
.margin-t-20{
    margin-top: 20px;
}
.margin-t-50{
    margin-top: 50px;
}
.margin-l-30{
    margin-left: 30px;
}
.margin-b-30{
    margin-bottom: 30px;
}
.owl-theme .owl-controls .owl-page span {
    background: #ffa900 !important;
}
/* ---------------------------------------------------------------------- */
/*  4.PARALLAX
/* ---------------------------------------------------------------------- */
.parallax {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}
/* ---------------------------------------------------------------------- */
/*  5.NAVBAR
/* ---------------------------------------------------------------------- */
.navbar-toggle .icon-bar{
    border: 2px solid #666666;
}
.navbar-custom{
    background-color: #fff;
    min-height: 75px;
    padding: 10px 0;
    -webkit-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    border-radius: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.navbar-custom .navbar-nav>li>a {
    color: #777;
    font-weight: 400;
    font-size: 15px;
    outline: 0;
    outline-color: transparent;
}
.nav>li>a {
    padding-left: 7px;
    padding-right: 7px;
}
.navbar-custom .navbar-nav>li>a:hover,.navbar-custom .navbar-nav>li>a:active,.navbar-custom .navbar-nav>li>a:focus {
    background: transparent;
    color: #ffa900;
}
.logo{
	float:left;
    margin-top: -6px;
}
@media (max-width:996px){.logo{margin-top: -0px;}.logo img{width:150px;}}
.navbar-phone {position:relative;width:auto;float:right;margin-right:30px;}
.navbar-phone span {color:#ffa900;font-size: 26px;}
/* Effect */
.menu-effect a::before,
.menu-effect a::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}
.menu-effect a::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}
.menu-effect a::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}
.menu-effect a:hover::before,
.menu-effect a:hover::after,
.menu-effect a:focus::before,
.menu-effect a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}
/*-------------------------------------------------------------------*/
/* 6.HOME/ SLIDER
/*-------------------------------------------------------------------*/
.carousel-section {
    background: url("../img/pattern.png"),url("../img/home.png") no-repeat;
    background-position: 50% 50%;
    overflow: hidden;
    padding: 120px 0px;
}
.carousel-section#home {
    padding: 50px 0px;
}
.carousel-infograf {padding: 20px 0 10px;}
.carousel-infograf_item {display:inline-block;width:210px;height:60px;padding:3px;border:2px solid #fff;}
.carousel-infograf_arrow {display:inline-block;width:50px;height:40px;background: url("../img/arrow-8-right.png") no-repeat 50% 50%;}
@media screen and (max-width:800px){
	.carousel-infograf_item {display:block;margin:0 auto;}
	.carousel-infograf_arrow {display:block;margin:0 auto;}
}
.carousel-razon .carousel-caption {
    position: static;
    text-align: center;
}
.carousel-razon .carousel-indicators {
    bottom: -110px !important;
}
.carousel-razon .carousel-indicators li {
    margin: 0 2px;
}
.carousel-indicators li{
    border: 1px solid #ffa900;
    border-radius: 0px;
    height: 5px;
    width: 30px;
}
.carousel-indicators .active {
    height: 5px;
    width: 30px;
    background-color: #ffa900;
}
.carousel-text span{
    color: #ffa900;
    text-transform: uppercase;
}
.carousel-text p{
    padding-top: 30px;
}
.carousel-text a{
    margin-top: 30px;
}
@media (max-width: 1023px) {
    .navbar-custom .nav>li>a {
        padding: 20px 0px; 
    }
}
@media (max-width: 767px) {
    .navbar-custom .nav>li>a {
        padding: 10px 0px; 
    }
}
/*-------------------------------------------------------------------*/
/*  7.HERO-SECTION
/*-------------------------------------------------------------------*/
.hero-section {
    background-color: #ffa900;
    padding: 20px 0px;
    position: relative;
    z-index: 600;
    color: #fff;
    text-align: center;
}
.hero-section h3{
    margin-top: 10px;
}
/*-------------------------------------------------------------------*/
/*  8.SERVICES
/*-------------------------------------------------------------------*/
.services{
    margin-top: 1px;
    border-top: 2px solid #990007;
    padding: 100px 0px;
    background-color: #f2f5f7;
}
.title p{
    font-size: 14px;
    font-weight: 400;
}
.title-bg {
    font-size: 77px;
    color: rgba(153,0,7,0.12);
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    font-weight: 200;
    z-index: -1;
    text-align: center;
}
/*-------------------------------------------------------------------*/
/*  9.PORTFOLIO / WORKS
/*-------------------------------------------------------------------*/
.work{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0px;
    margin-bottom: 1px;
    border-bottom: 2px solid #990007;
    color:#fff;
}
.work h3{
    margin-top: 0px;
}
.work h4 span{
    color: #ffa900;
}
#grid .mix{
    display: none;
    opacity: 0;
}
/* Filter */
.portfolio-filters{
    list-style: none;
    padding: 0;
}
.portfolio-filters li{
    display: inline-block;
    border:1px solid #eeeeee;
    padding: 3px 10px;
    cursor: pointer;
    font-size: 12px ;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
    color:#999;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.portfolio-filters li:hover,.portfolio-filters li.active{
    background-color: #ffa900;
    color:#fff;
    border-color:#ffa900;
}
.portfolio-items figure {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
}
.portfolio-items figure img {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition:all 400ms linear; 
    -moz-transition:all 400ms linear; 
    -o-transition:all 400ms linear; 
    -ms-transition:all 400ms linear; 
    transition:all 400ms linear;
}
.portfolio-items figure figcaption {
    color: #fff;
    font-size: 14px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.portfolio-items figure figcaption{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.portfolio-items figure h4 {
    font-weight: 500;
    text-transform: uppercase;
    padding: 7px;
    font-size: 15px;
}
.portfolio-items figure figcaption h4 a{
    color: #fff;
}
figure.port-effect {
    background: #000;
}
figure.port-effect figcaption {
    top: auto;
    bottom: 0;
    height: auto;
    background: rgba(153,0,7,0.9);
    color: #fff;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}
figure.port-effect:hover img{
    opacity: 0.8;
    -webkit-transform: scale(1.3) rotate(4deg);
    -moz-transform: scale(1.3) rotate(4deg);
    -ms-transform: scale(1.3) rotate(4deg);
    -o-transform: scale(1.3) rotate(4deg);
    transform: scale(1.3) rotate(4deg);
}
figure.port-effect:hover figcaption{
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
@media (max-width: 1024px) {
    .portfolio-items figure h4 {
        font-size: 14px;
        padding: 5px;
    }
}
@media (max-width: 640px) {
    .portfolio-items figure h4 {
        font-size: 12px;
        padding: 4px;
    }
}
/*-------------------------------------------------------------------*/
/*  10.TESTIMONIALS
/*-------------------------------------------------------------------*/
.testimonials{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0;
}
.testimonials h2{
    color:#fff;
}
.testimonials h4{
    color:#fff;
}
.testimonials h5{
    color:#fff;
    font-weight: 300;
    line-height: 20px;
    color: rgba(255,255,255,0.77);
}
.testimonials i{
    color:#ffa900;
    font-size: 30px;
}
.testimonials h3,.testimonials p{
    color: #ffffff;
    text-transform:normal;
}
/*-------------------------------------------------------------------*/
/*  11.ABOUT
/*-------------------------------------------------------------------*/
.about{
    position: relative;
    padding: 100px 0px;
    margin: 1px 0px;
    border-top: 2px solid #990007;
    border-bottom: 2px solid #990007;
}
.about-page{
    padding-top: 80px;
}
#project-carosel {
    margin-right: 20px;
}
.about .panel-title{
    font-size: 15px;
}
.about .panel-title a{
    display: block;
    width: 100%;
}
.about .panel-title a:hover{
    text-decoration: none;
}
.about .panel-title i{
    font-size: 20px;
    color: rgba(0,0,0,0.5);
}
.about .panel-heading{
    padding: 15px;
    border-radius: 3px;
}
.about .panel-default>.panel-heading {
    color: #fff;
    background-color: rgba(153,0,7,0.7);
    border-color: #bbb;
}
.about .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #ffffff;
}
.about .panel-group .panel {
   margin-bottom: 0;
   border-radius: 0px;
}
.about .panel-group .panel .panel-body{
    background: #ffffff !important;
    box-shadow: none;
    padding: 10px 0px;
    color: #555;
}
.about .panel-default{
    border: none;
}
.about .text{
   overflow: hidden;
}
.about .text h4{
   line-height: 150%;
}
.about .text span{
   margin-left: 0px;
}
.about .text img{
   margin: 0 10px 40px;
    display: inline-block;
    float: left;
}
@media (max-width: 767px) {
    .margin-l-30{
        margin-left: 0px; 
    }
}
/*-------------------------------------------------------------------*/
/*  9.PORTFOLIO / TEAM
/*-------------------------------------------------------------------*/
.team{
    text-align: center;
    padding: 100px 0px;
    margin-bottom: 1px;
    border-bottom: 2px solid #990007;
}
.team h3{
    margin-top: 0px;
}

.team img{
    width: 180px;
    height: 180px;
}
.team-member:hover h4{
    color: #ffa900;
}
.team p{
    padding: 10px;
}
.team h6{
    color: #bbb;
}
.member {
    padding: 30px 5px;
    width: 190px;
    height: 190px;
    border: 6px solid #bbb;
    background: #eee;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    overflow: hidden;
    display: inline-block;
}
.circle-img {
    border-radius: 100%;
    -moz-border-radius: 100%;
}
/*-------------------------------------------------------------------*/
/*  12.TWITTWER-TWEET
/*-------------------------------------------------------------------*/
.twitter-tweet{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0;
}
.twitter-tweet h5{
    color:#fff;
    font-weight: 300;
    line-height: 20px;
    color: rgba(255,255,255,0.77);
}
.twitter-tweet h6{
    color: #777;
    text-transform: uppercase;
}
.twitter-tweet i{
    color:#ffa900;
    font-size: 30px;
}
.twitter-tweet p{
    color:#ffa900;
}
/*-------------------------------------------------------------------*/
/*  13.PRICING
/*-------------------------------------------------------------------*/
.pricing{
    padding: 100px 0px;
    text-align: center;
    margin: 1px 0px;
    border-top: 2px solid #990007;
}
.pricing-features {
    background-color: #f2f5f7;
    padding: 0px 0px 0px 0px;
    margin-top: 30px;
}
.pricing-features ul{
    padding: 10px 0px;
}
.pricing-features li{
    padding: 10px 50px;
}
.pricing-features li i {
    margin-right: 15px;
    color: #999;
}
.pricing-features a{
    background-color: #1c4b7f;
    padding: 10px 50px;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
}
.pricing-features a:hover{
    background-color: #ffa900;
    text-decoration: none;
}
.pricing_head{
    background-color: #1c4b7f;
    padding: 20px 0px;
    color: #fff;
}
.pricing_head .pricing_currency{
    position: relative;
    top: -25px;
    font-size: 20px;
    font-weight: 400;
}
.pricing_head .pricing_amount-2{
    font-size: 60px;
    line-height: 60px;
    padding-left: 5px;
}
.pricing-features:hover .pricing_head,.pricing-features:hover a{
    background-color: rgba(153,0,7,0.8);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
/*-------------------------------------------------------------------*/
/*  14.NEWS-LETTER
/*-------------------------------------------------------------------*/
.newsletter{
    background-color: #ffa900;
    padding: 40px 0px;
}
.newsletter i{
    padding-right: 15px;
}
.newsletter h3{
    color: #ffffff;
    margin: 0px;
    padding-top: 5px;
}
.news-form input{
    height: 40px;
    border: 1px solid #666;
    background-color: rgba(255,255,255,0.7);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.news-form input:focus{
    outline: none;
    border: 1px solid #1c4b7f;
    box-shadow: none;
    background-color: #ffffff;
}
.news-form button,.news-form button:focus{
    height: 40px;
    background-color: #1c4b7f;
    border-color: #1c4b7f;
    color: #ffffff;
    outline: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}
.news-form button:hover{
    color: #000;
    background-color: transparent;
    border: 1px solid #000000;
}
/*-------------------------------------------------------------------*/
/*  15.BLOG
/*-------------------------------------------------------------------*/
.blog{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0;
}
.blog h3,.blog p{
    color: #ffffff;
}
.blog-box{
    background-color: #ffffff;
    padding: 10px; 
    text-align: center;
    margin-top: 30px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}
.blog-box img{
    width: 100%;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}
.blog-box h4 a{
    color: #666;
}
.blog-box h6{
    color: #bbb;
    font-weight: 300;
}
.blog-box p{
    color: #777;
    margin-top: 20px;
}
/* BLOG-POST */
.blog-post{
    padding: 100px 0px;
    margin: 1px 0px;
    border-top: 2px solid #990007;
    border-bottom: 2px solid #990007;
}
.blog-post img{
    margin: 15px 0px;
}
.blog-header{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 100px 0px;
}
.blog-header h2{
    margin-top: 0px;
    color: #ffffff; 
}
.blog-header h5{
    color: #ffffff;
    margin-top: 30px;
    font-weight: 100;
}
.blog-detail{
    padding-top: 0px;
    color: #ffffff;
    font-size: 14px;
}
.blog-detail span{
    margin-right: 20px;
}
.blog-detail span:last-of-type{
    margin-right: 0px;
}
.blog-a{
    color: #ffa900;
}
.blog-post-p{
    color: #bbb;
    font-size: 12px;
    padding: 0px 20px;
    line-height: 15px;
    text-align: center;
}
.blog-a:hover{
    color: rgba(153,0,7,0.7);
    text-decoration: none;
}
.blog-detail span i{
    padding-right: 5px;
}
.blog-post .tags a {
    height: 35px;
    font-size: 11px;
    line-height: 35px;
    color: #90979f;
    background: #f2f5f7;
    padding: 6px 12px;
    margin-right: 5px;
}
.blog-post .tags a:hover{
    color: #ffa900;
    text-decoration: none;
}
/*-------------------------------------------------------------------*/
/*  16.CONTACT
/*-------------------------------------------------------------------*/
.contact{
    text-align: center;
    padding: 80px 0px;
    margin: 1px 0px;
    border-top: 2px solid #990007;
    border-bottom: 2px solid #990007;
}
.contact h2{
    color: ##0d3650;;
}
.contact h4{
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
    color: #ffa900;
}
.contact i{
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 36px;
    color: #ffa900;
}
.contact ul {
    margin: 0;
    padding: 0;
}
.contact li a{
    text-decoration: none;
    color: #7a869e;
}

@media screen and (max-width:800px){
.contact .text-right {text-align:center;}
}
a.support {
    font-size: 28px;
    line-height: 30px;
    display: block;
    color: #7a869e;
    text-decoration: none;
}
.contact input {
    width: 100%;
    height: 43px;
    margin-bottom: 20px;
    line-height: 20px;
    padding-left: 15px;
    font-size: 15px;
    color: #000000;
}
.contact .validation {
    border: 1px solid #ff0000;
}
.contact textarea {
     width: 100%;
    height: 170px;
    margin-bottom: 15px;
    padding: 15px 55px 15px 15px;
    font-size: 15px;
    color: #000000;
    line-height: 28px;
}
textarea {
    resize: none;
}
.contact input:focus,.contact textarea:focus,.contact input:active,.contact textarea:active{
    border: 1px solid #ffa900;
    outline: none;
}
.contact p {
    float: none;
    color: #0d3650;
    display: inline-block;
}
#successmsg1 {
    margin-top: 20px;
    font-size: 18px;
    color: #ffa900;
    padding: 10px 0 10px;
    display: none;
    text-align: center;
}
/*-------------------------------------------------------------------*/
/*  17.FOOTER
/*-------------------------------------------------------------------*/
.footer{
    background: url("../img/pattern.png"),url("../img/img.png");
    padding: 50px 0px;
}
.footer ul{
    margin-bottom: 0px;
    margin-top: 8px;
}
.social li{
    padding-right: 0px;
}
.social li a {
    font-size: 16px;
    padding: 8px 10px;
    border-radius: 3px;
    color: rgba(255,255,255,0.5);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.social li a:hover {
    text-decoration: none;
    color: #ffa900;
}
.footer p{
    color: #fff;
    font-size: 12px;
    padding-top: 10px;
    margin-bottom: 0px;
}
/*-------------------------------------------------------------------*/
/*  18.BACK-TO-TOP
/*-------------------------------------------------------------------*/
.back-to-top {
    width: 40px;
    height: 50px;
    position: fixed;
    bottom: 0px;
    right: 20px;
    display: none;
    background: rgba(153,0,7,0.7);
    text-align: center;
    z-index: 10000;
}
.back-to-top i {
    color: #fff;
    font-size: 15px;
    display: block;
    line-height: 33px;
}
.back-to-top:hover {
   background: rgba(153,0,7,0.9);
}






.feedback_button {
    display: inline-block;
    border-bottom: #5285a5 1px dotted;
    color: #27668f;
    height: 18px;
}

.feedback_button:hover {
    border: none;
    padding-bottom: 1px;
    text-decoration: none;
}

.feedback_popup {
    display: none;
    position: absolute;
    top: 62px;
    right: -29px;
    width: 229px;
    height: 177px;
    padding: 45px 18px 15px 16px;
    background: url(../img/call_order_bg.png) top center no-repeat;
    z-index: 15;
}

.feedback_arrow {
    position: absolute;
    width: 23px;
    height: 11px;
    left: 50%;
    top: 4px;
    margin: 0 0 0 -11px;
    background: url(../img/top_arrow.png) no-repeat;
}

.feedback_popup .popup_close {
    right: 23px;
    top: 32px;
}

.feedback_form {
}

.feedback_form input {
    width: 204px;
    padding: 5px  0 5px 13px;
    margin: 0 0 13px 0;
    font-size:14px;
    line-height:18px
}

.feedback_form input.error {
    width: 202px;
}

.feedback_form label.error {
    background: url(../img/error_message_bottom.png) left center no-repeat;
    margin: 0 0 0 2px;
    width: 92px;
    padding-left: 10px;
}

.feedback_form p {
    text-align: left;
}


.feedback_form input[type=submit] {
}

.feedback_success {
    color: #0d3650;
    margin: 30px 0 0 6px;
    display: none;
}

.feedback_success span {
    display: block;
    font-size: 24px;
    line-height: 26px;
    margin: 0 0 9px 0;
}

.feedback_success p {
    font-size: 16px;
    line-height: 20px;
}