/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (body, link color, section-title, preloader btn, overlay, section-padding etc)
    02. BOOTSTRAP NAVIGATION OVERRIDES
    03. START HOME DESIGN
    04. START ABOUT DESIGN
    05. START TEAM DESIGN
    06. START SERVICE DESIGN
    07. START PORTFOLIO DESIGN
    08. START TESTIMONIAL DESIGN
    09. START PRICING DESIGN
    10. START BLOG DESIGN
    11. START COMPANY PARTNER DESIGN
    12. START CONTACT DESIGN
    13. START FOOTER DESIGN
  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
body {
font-family: 'Lato', sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 24px;
color: #666;
overflow-x: hidden;
margin: auto;
background: #fff;
}
html,
body { height: 100% }
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-weight: 700;
}
a {
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}
p {
    margin-bottom: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
}
fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}
/*START PRELOADER DESIGN*/
.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}
.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    border-right: 2px solid rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    border-left: 2px solid #000;
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.no-padding { padding: 0 }
/*END PRELOADER DESIGN*/
.section-padding { padding: 60px 0 }
/*START SECTION TITLE DESIGN*/
.section-title { margin-bottom: 60px }
.section-title  h2 {
color: #036ea4;
font-family: montserrat,sans-serif;
font-size: 36px;
font-weight: 400;
margin: 0;
padding-bottom: 10px;
position: relative;
/*text-transform: uppercase;*/
}
.section-title p{
margin: auto;
width: 60%;
}
@media only screen and (max-width:768px) { 
.section-title p{width:100%;padding:0 20px;}
}
/*END SECTION TITLE DESIGN*/
/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 02. START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.navbar-default {
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
    width: 100%;
    padding: 20px 0;
    background: none;
    transition: all 0.4s ease-in-out;
    -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;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #ff5f83 !important;
    background-color: transparent;
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    color: #171717 !important;
    background-color: transparent;
}
.navbar-brand { padding: 0px }
.navbar-brand img {
    width: 150px;
    margin-left: 10px;
}
@media only screen and (max-width:768px) { 
.navbar-brand img {margin-left: 0px;}
}
@media only screen and (max-width:480px) { 
.navbar-brand img {margin-left: 10px;}
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border: medium none #171717;
margin-top: 10px;
}
.menu-top li a {
color: #fff !important;
font-size: 12px;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 500;
}
.menu-top li a:hover { color: #ff5f83!important }
@media only screen and (max-width:768px) { 
    .navbar-default .navbar-nav > li > a {
        margin-top: 10px;
        padding: 8px;
    }
}
@media only screen and (max-width:480px) { 
    .menu-top {background-color: #fff;color: #fff !important;margin-left: 0px;}
    .navbar-default .navbar-nav > li > a { color: #fff  !important }
}
.navbar-default.menu-shrink {
background-color: #fff; /*#171717;*/
border-bottom: 1px solid #fff;/*#282828;*/
box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
padding: 10px 0;
width: 100%;
 margin-top:0px
}
.navbar-default.menu-shrink li a { color: #666!important }
.navbar-default.menu-shrink li a:hover { color: #ff5f83!important }
.navbar-default .navbar-toggle { background: #fff none repeat scroll 0 0 }
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { background-color: #fff }
.navbar-default .navbar-toggle .icon-bar { background-color: #ff5f83 }
/*
* ----------------------------------------------------------------------------------------
* 02.END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.welcome-area,
.welcome-slider-area,
.welcome-slider-area div { height: 700px }
.welcome-slider-area div.single-slide-item-tablecell,
.welcome-slider-area div.single-slide-item-tablecell div { height: auto }
.single-slide-item-table {
    display: table;
    text-align: center;
    width: 100%;
}
.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;
}
.single-slide-item {
    position: relative;
    z-index: 1;
}
.head-page {
    position: relative;
    background-image: url(/assets/img/bg/head-page-min.jpg);
    height: 230px;
    z-index: 1;
}
.single-slide-item:after, .head-page:after {
background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
content: "";
height: 100%;
left: 0;
opacity: 0.6;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.slide-1 {
    background: url(../img/bg/slide1.jpg) scroll 0 0;
    background-size: cover;
}
.slide-2 {
    background: url(../img/bg/slide2.jpg) scroll 0 0;
    background-size: cover;
}
.slide-3 {
    background: url(../img/bg/slide3.jpg) scroll 0 0;
    background-size: cover;
}
.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.single-slide-item h2 {
color: #fff;
font-size: 60px;
font-weight: 400;
letter-spacing: 2px;
line-height: 70px;
text-transform: uppercase;
}
@media only screen and (max-width:480px) { 
.single-slide-item h2 {font-size: 40px;line-height: 50px;}
}
@media only screen and (max-width:360px) { 
.single-slide-item h2 {font-size: 30px;line-height: 40px;}
}
.single-slide-item p {
color: #fff;
margin: auto auto 15px;
width: 60%;
}
@media only screen and (max-width:768px) { 
    .single-slide-item p { width: 100% }
}
.carousel-indicators-slider { bottom: 30px !important }
.btn-home-bg {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: 2px solid #fff;
border-radius: 500px;
color: #fff;
margin: 15px 15px 0;
padding: 12px 36px;
text-transform: capitalize;
transition: all 0.2s ease 0s;
}
.btn-home-bg:hover,
.btn-home-bg:focus {
    background: #ff5f83;
    color: #fff;
    border: 2px solid #ff5f83;
}
/*START VIDEO BG*/
.home_bg {
    height: 700px;
    position: relative;
}
.home_bg:before {
    background: rgba(0, 0, 0, 0.4);
    content: "";
    height: 100%;
    filter: alpha(opacity=80);
    position: absolute;
    width: 100%;
}
.hero-text {
  padding-top: 250px;
}
.hero-text h2 {
color: #fff;
font-size: 60px;
font-weight: 400;
letter-spacing: 2px;
line-height: 70px;
text-transform: uppercase;
}

.hero-text p {
color: #fff;
margin: auto auto 15px;
width: 60%;
}
@media only screen and (max-width:768px) { 
.hero-text p { width: 100% }
}
/*END VIDEO BG*/
/*
* ----------------------------------------------------------------------------------------
* 03.END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
 * ----------------------------------------------------------------------------------------
 * 04.START ABOUT US DESIGN
 * ----------------------------------------------------------------------------------------
 */
.single_about {padding: 30px 0; }

.single_about h2 { 
margin: 0;
/*text-transform: uppercase;*/
color: #036ea4;
}

.single_about p {
margin-bottom: 10px;
}
.line {
background: #333 none repeat scroll 0 0;
display: inline-block;
height: 1px;
margin: 15px 0;
width: 60px;
}
.btn-about-bg {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: 1px solid #333;
border-radius: 100px;
color: #333;
display: inline-block;
font-size: 13px;
margin-top: 15px;
overflow: hidden;
padding: 8px 25px;
text-transform: uppercase;
-webkit-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}
.btn-about-bg:hover,.btn-about-bg:focus{border: 1px solid #ff5f83;color:#ff5f83;}
/*
 * ----------------------------------------------------------------------------------------
 * 04.END ABOUT US DESIGN
 * ----------------------------------------------------------------------------------------
 */

/*
* ----------------------------------------------------------------------------------------
* 05.START TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
@media only screen and (max-width:768px) { 
    .tema-member { margin-bottom: 20px }
}
.tema-member .team-thumbnail {
    position: relative;
}
@media only screen and (max-width:768px) { 
.team-thumbnail img{width:100%;}
}
.tema-member .team-thumbnail .overlay {
background: rgba(0, 0, 0, 0.1) -webkit-linear-gradient(right, #fe275a 0%, #ff5f83 100%) repeat scroll 0 0;
background: rgba(0, 0, 0, 0.1) linear-gradient(to left, #fe275a 0%, #ff5f83 100%) repeat scroll 0 0;
border: medium none;
display: block;
height: 100%;
left: 0;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
position: absolute;
top: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.tema-member .team-thumbnail .overlay:hover{opacity: 0.9;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; }
.info {padding: 180px 10px 10px 10px; }
.tema-member .team-thumbnail .social-media {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    bottom: 0;
    -webkit-transform: translateY(100%);
    -moz-webkit-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.tema-member .team-thumbnail .social-media a { display: inline-block }
.tema-member .team-thumbnail .social-media a i {
background: #fff none repeat scroll 0 0;
border-radius: 30px;
color: #333;
font-size: 18px;
height: 45px;
line-height: 45px;
margin: 2px;
-webkit-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
width: 45px;
}
.tema-member .team-thumbnail .social-media a i:hover { color: #fff }
.tema-member .team-thumbnail .social-media a.facebook i:hover { background: #507CBE }
.tema-member .team-thumbnail .social-media a.twitter i:hover { background: #63CDF1 }
.tema-member .team-thumbnail .social-media a.google i:hover { background: #F16261 }
.tema-member .team-thumbnail .social-media a.linkedin i:hover { background: #0077B5 }
.tema-member .info h4 {
color: #fff;
letter-spacing: 1px;
margin: 0;
padding-bottom: 10px;
text-align: center;
text-transform: uppercase;
}
.tema-member:hover .social-media {
    -webkit-transform: translateY(-90%);
    -moz-webkit-transform: translateY(-90%);
    -webkit-transform: translateY(-90%);
    transform: translateY(-90%);
}
.tema-member:hover .overlay {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}
/*
* ----------------------------------------------------------------------------------------
* 05.END TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 06.START SERVICE DESIGN
* ----------------------------------------------------------------------------------------
*/
.template_service{padding-top:60px;padding-bottom:30px;}
.single_service {   
background: rgba(0, 0, 0, 0.07) none repeat scroll 0 0;
min-height: 200px;
margin-bottom: 30px;
padding: 30px;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.single_service i {
color: #ff5f83;
float: left;
font-size: 20px;
height: 45px;
line-height: 45px;
-webkit-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
width: 45px;
}
.single_service h4 {
color: #333;
font-size: 16px;
letter-spacing: 2px;
overflow: hidden;
text-transform: uppercase;
}
.single_service p {
    margin-bottom: 0;
	overflow: hidden;
    -webkit-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}
.single_service:hover {
    background: #ff5f83 none repeat scroll 0 0;
}
.single_service:hover i {
    color: #fff;
}
.single_service:hover h4 { color: #fff }
.single_service:hover p { color: #fff }
/*
* ----------------------------------------------------------------------------------------
* 06.END SERVICE DESIGN
* ----------------------------------------------------------------------------------------
*/


/*
 * ----------------------------------------------------------------------------------------
 * 07.START PORTFOLIO DESIGN
 * ----------------------------------------------------------------------------------------
 */
.works_area{padding-top:60px;padding-bottom:30px;}
.single_project {
  padding-bottom: 40px;
}
.single_our_work{
	margin-bottom:30px;
	overflow: hidden;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.sing_work_photo{
	position: relative;
}

.single_our_work img{
	width: 100%;
	-webkit-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.single_our_work figure{
	margin-bottom: 0;	
}
.sing_work_text_link{
	position:absolute;
	width: 100%;
	height: 100%;
	top: 0;
	color: #fff;
	background: rgba(0,0,0, 0.6);
	-webkit-transition: .5s;
	transition: .5s;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
}
.sing_work_content_wrap{
	display: table;
	height: 100%;
	width: 100%;
}
.sing_work_content{
	display: table-cell;
	vertical-align: middle;
}
.sing_work_text_link h5{
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 20px;
	text-transform: uppercase;
}

.sing_link_img a i.fa{
	font-size: 14px;	
}
.sing_link_img a{
	background: #ff5f83 none repeat scroll 0 0;
	border: 1px solid #ff5f83;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	height: 40px;
	line-height: 39px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 40px;	
}
.sing_link_img a:hover{	
	background: #fff none repeat scroll 0 0;
	border-color: #fff;
	color: #ff5f83;
}
.sing_link_img a.search{
	margin-right: 16px;
}
.single_our_work:hover  .sing_link_img a.search{
	-webkit-animation: slideInDown 800ms ease-in-out;
	        animation: slideInDown 800ms ease-in-out;
}
.single_our_work:hover  .sing_link_img a.link{
	-webkit-animation: slideInDown 800ms ease-in-out;
	        animation: slideInDown 800ms ease-in-out;
}
.single_our_work:hover{
	background: #ff5f83;
	color: #fff;
}
.single_our_work:hover .sing_work_text_link{
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible;
}
/*
 * ----------------------------------------------------------------------------------------
 * 07.END PORTFOLIO DESIGN
 * ----------------------------------------------------------------------------------------
 */
 /*
 * ----------------------------------------------------------------------------------------
 * 08.START TESTIMONIAL DESIGN
 * ----------------------------------------------------------------------------------------
 */
.single_testimonial{
background: rgba(255,255,255,0.06);
padding: 30px;
}
.single_testimonial img{
width: 150px;
border-radius: 500px;
height: 150px;
}
.single_testimonial h3{
color: #fff;
font-size: 18px;
margin-top: 20px;
text-transform: uppercase;
}
.single_testimonial p{
margin: auto auto 0;
width: 90%;
}

.carousel-indicators li {
    border: 1px solid #ff5f83;
    border-radius: 12px;
    height: 12px;
    margin: 0 1px;
    width: 12px;
    background: #ff5f83;
}
.carousel-indicators .active { margin: 0 1px }
.site-wrapper { margin-bottom: 65px }
#team__carousel { margin-bottom: 70px }
#team__carousel .carousel-indicators { bottom: -80px }
.carousel-control { display: none }
/*
 * ----------------------------------------------------------------------------------------
 * 08. END TESTIMONIAL DESIGN
 * ----------------------------------------------------------------------------------------
 */
/*
* ----------------------------------------------------------------------------------------
* 09.START PRICING DESIGN
* ----------------------------------------------------------------------------------------
*/
.single-pricing{
    /*background:rgba(0, 0, 0, 0.07);*/
    background: #f9f9f9;
    text-align: left;
    padding: 15px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
    border: 1px solid #efefef;
}
@media only screen and (max-width:480px) { 
.single-pricing{margin-bottom: 30px;}
}

.pricing-title p{
color: #4b99c1;
/*font-family: montserrat,sans-serif;*/
font-size: 16px;
letter-spacing: 2px;
margin: 0;
padding: 20px 10px 10px;
text-align: center;
text-transform: uppercase;
font-weight: 500;
}
.pricing-price{
color: #485a71;
font-size: 35px;
padding: 10px 0;
text-align: center;
}
.pricing-price p{
border: 1px solid rgba(0, 0, 0, 0.07);
border-radius: 50%;
height: 120px;
line-height: 115px;
margin: 0 auto;
width: 120px;
/*color: #fff;*/
}
.pricing-price p sup{font-size: 20px;}
.pricing-features{padding: 10px 0;}

.pricing-features p{
margin: 0;
padding: 10px 20px;
text-align: center;
border-bottom: 1px solid rgba(0,0,0,0.07);
}
.pricing_btn{
padding: 30px 0;
text-align: center;
}
.pricing_btn a, button.btn-submit {
background: #ff5f83 none repeat scroll 0 0;
border: 1px solid #ff5f83;
border-radius: 50px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
color: #fff;
font-family: montserrat,sans-serif;
font-size: 14px;
letter-spacing: 1px;
padding: 10px 30px;
text-transform: uppercase;
transition: all 0.4s ease 0s;
}
.pricing_btn a:hover, button.btn-submit:hover {background:#fff;border: 1px solid #fff;color:#ff5f83;}
/*
* ----------------------------------------------------------------------------------------
* 09.END PRICING DESIGN
* ----------------------------------------------------------------------------------------
*/
 /*
* ----------------------------------------------------------------------------------------
* 10.START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
@media only screen and (max-width:768px) { 
    .home_single_blog { margin-bottom: 30px }
}
.home_single_blog img {
	width: 100%;
}
.home_blog_text {
background: rgba(255, 255, 255, 0.06) none repeat scroll 0 0;
border: medium none rgba(255, 255, 255, 0.06);
padding: 30px;
}
.home_blog_text i {
	color: #fff;
	margin-right: 10px;
 }
.home_blog_text span {
color: #fff;
font-size: 13px;
margin-right: 15px;
text-transform: uppercase;
}
.home_blog_text h4 {
color: #fff;
letter-spacing: 2px;
margin: 10px 0;
text-transform: uppercase;
 }
.home_blog_text p { margin-bottom: 10px }
.btn-blog-bg {
color: #fff;
font-size: 14px;
text-transform: uppercase;
transition: all 0.2s ease 0s;
}
.btn-blog-bg:hover{color: #ff5f83;}
/*END HOME BLOG*/
/*
* ----------------------------------------------------------------------------------------
* 10.END BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
 /*
* ----------------------------------------------------------------------------------------
* 11.START COMPANY PARTNER LOGO
* ----------------------------------------------------------------------------------------
*/
.partner-logo {background: rgba(255, 255, 255, 0.06) none repeat scroll 0 0;}
.partner { text-align: center }
/*
* ----------------------------------------------------------------------------------------
* 11.END COMPANY PARTNER LOGO
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 12.START ADDRESS & CONTACT FORM DESIGN
* ----------------------------------------------------------------------------------------
*/
/*START CONTACT ADDRESS*/
@media only screen and (max-width:480px) { 
    .single_promotion {margin-bottom:30px; }
}
.single_promotion i {
color: #000;
float: left;
font-size: 24px;
margin-bottom: 20px;
margin-right: 20px;
-webkit-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
}
.single_promotion h4{
	color: #000;
	font-weight: 400;
	overflow: hidden;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}
.single_promotion p{	overflow: hidden;}
/*END CONTACT ADDRESS*/

.contact input {
background: rgba(0,0,0,0.07) none repeat scroll 0 0;
border: medium none rgba(0,0,0,0.07);
border-radius: 0;
box-shadow: none;
color: #fff;
height: 50px;
padding: 10px;
width: 100%;
font-size:16px;
}
.contact textarea {
background: rgba(0,0,0,0.07) none repeat scroll 0 0;
border: medium none rgba(0,0,0,0.07);
border-radius: 0px;
box-shadow: none;
color: #fff;
padding: 10px;
width: 100%;
font-size:16px;
}
.contact input:focus {
border-color: -moz-use-text-color -moz-use-text-color #ff5f83;
border-style: none none solid;
border-width: 0 0 1px;
    box-shadow: none;
    outline: 0 none;
}
.contact textarea:focus {
border-color: -moz-use-text-color -moz-use-text-color #ff5f83;
border-style: none none solid;
border-width: 0 0 1px;
    box-shadow: none;
    outline: 0 none;
}
.btn-contact-bg {
background: #ff5f83 none repeat scroll 0 0 !important;
border: 1px solid #ff5f83 !important;
border-radius: 50px !important;
box-shadow: none;
color: #fff;
font-family: montserrat,sans-serif;
font-size: 14px;
letter-spacing: 1px;
text-transform: uppercase;
-webkit-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
width: 200px !important;
}
.btn-contact-bg:hover,
.btn-contact-bg:focus {
    background: #fff!important;
    color: #ff5f83;
    border: 1px solid #fff!important;
}
/*
* ----------------------------------------------------------------------------------------
* 12.END ADDRESS & CONTACT FORM DESIGN
* ----------------------------------------------------------------------------------------
*/

#map{height:400px;}

/*
* ----------------------------------------------------------------------------------------
* 13.START FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/

.footer {
    border-top: 1px solid #1f2428;
    padding:20px 0;
    background: #171717;
}
.footer_social {}
@media only screen and (max-width:480px) { 
.pull-right {
  float: none !important;
}
}

.footer_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width:480px) { 
.footer_social ul{text-align:center;}
}
.footer_social ul li { display: inline-block }
.footer_social ul li a {
color: #fff;
display: block;
font-size: 18px;
height: 48px;
line-height: 48px;
text-align: center;
-webkit-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
width: 48px;
}
.footer_social ul li a:hover { color: #ff5f83 }
/*END FOOTER SOCIAL DESIGN*/
.copyright p {
color:#fff;
margin-bottom: 0;
padding-top: 10px;
}
@media only screen and (max-width:480px) { 
.copyright p {text-align:center;}
}
/*
* ----------------------------------------------------------------------------------------
* 13.END FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/



.banner {
    position: relative;
    background: rgba(3, 110, 164, 0.8);
}

.banner .form-control {
    border-radius: 0;
    height: 45px;
    box-shadow: none;
    background-color: #fff;
    border: 0;
    border-right: 1px solid #ccc;
    color: #868687;
    font-size: 13px
}

.banner-form button.btn.dropdown-toggle.btn-default {
    text-shadow: none;
    background: 0 0;
    border: 0;
    box-shadow: none;
    color: #868687;
    border-right: 1px solid #ccc
}

.banner-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    line-height: 36px;
    color: #868687
}

.banner-form .input-group-addon {
    background: #fff;
    border: 0;
    border-right: 1px solid #ccc;
    border-radius: 0
}

.banner-form {
    /*margin: 0 auto;
    width: 997px;
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0*/
    padding: 15px 10px 30px 10px;
    width: 100%;
    overflow: hidden;
}

.search-form {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
    list-style-type: none
}

.search-form .search-row select {
    cursor: pointer
}

.search-form .search-row {
    width: 100%;
    float: left;
    padding-bottom: 10px;
}

.search-form .search-row.destination {
    width: 100%;
    float: left
}

.search-form .search-row .select-main .dropdown-menu {
    margin: 0;
    padding: 10px;
    border-radius: 0;
    min-width: 150px;
    border: 1px solid #ccc
}

.slider-content .contant {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto
}

.date .input-group .form-control {
    border-right: none
}

.search-form .search-row .search-btn {
    background: #ed7005;
    width: 100%;
    height: 45px;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700
}

.search-form .search-row .search-btn:hover {
    background: #fd9207
}

@media (min-width: 992px) {
    /*.banner {
        margin-top: -119px;
    }*/
    
    .banner-form {
        width: 997px;
        /*position: absolute;
        bottom: 80px;
        left: 0;
        right: 0;
        padding: 0;*/
        margin: 0 auto;
    }

    .search-form .search-row {
        width: 15%;
        padding-bottom: 0;
    }
    .search-form .search-row.destination {
        width: 25%;
    }
}


/****** WHATSAPP ******/
/*.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}
*/
#jer {
    font-family: Arial, sans-serif
}

#jer-floating_cta *,
#jer-floating_popup *,
.jer-btn * {
    box-sizing: border-box
}

.jer-woo {
    clear: both
}

.jer-woo .jer-btn {
    margin-top: 10px
}

.jer-post {
    margin: 10px 0
}

.jer-btn {
    background: #0dc152;
    position: relative;
    box-shadow: none !important;
    border: 0 !important;
    outline: 0 !important;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    line-height: 1;
    overflow: hidden;
    min-width: 40px;
    transition: .5s all ease;
    display: inline-block
}

.jer-btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3) !important
}

.jer-btn.jer-full_width {
    display: block;
    margin-bottom: 5px
}

.jer-btn.jer-small {
    vertical-align: bottom
}

.jer-btn.jer-small span {
    padding: 6px 10px;
    font-size: 12px;
    vertical-align: middle
}

.jer-btn.jer-small img {
    padding: 5px 7px;
    height: 26px !important
}

.jer-btn .jer-btn_text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    padding: 15px 20px 15px 15px;
    display: inline-block;
    font-family: Arial, Sans-serif;
    vertical-align: sub
}

.jer-btn .jer-btn_icon {
    position: relative;
    z-index: 2;
    height: 43px !important;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .05);
    float: right;
    transition: background-color .5s ease
}

.jer-btn:before {
    transition: opacity .5s ease;
    content: "";
    background-color: rgba(0, 0, 0, .05);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 60px;
    z-index: 1;
    opacity: 0
}

.jer-btn:hover:before {
    opacity: 1
}

.jer-btn:hover .jer-btn_icon {
    background-color: rgba(0, 0, 0, 0)
}

.jer-btn.btn_1 {
    border-radius: 0
}

.jer-btn.btn_2 {
    border-radius: 6px
}

.jer-btn.btn_3 {
    border-radius: 60px
}

.jer-btn.btn_3 .jer-btn_text {
    padding: 15px 15px 15px 20px
}

.jer-btn.btn_3 .jer-btn_icon {
    padding: 10px 14px
}

.jer-btn.btn_share {
    border-radius: 60px
}

.jer-btn.btn_share .jer-btn_icon {
    float: left;
    padding: 10px
}

.jer-btn.btn_share .jer-btn_text {
    display: none;
    padding: 15px 20px 15px 10px
}

.jer-btn.btn_share:hover .jer-btn_text {
    display: inline-block
}

#jer-floating_cta {
    background: #0dc152;
    position: fixed;
    z-index: 999;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
    cursor: pointer;
    user-select: none;
    line-height: 1;
    overflow: hidden;
    min-width: 40px;
    max-width: 350px
}

#jer-floating_cta:before {
    transition: opacity .5s ease;
    content: "";
    background-color: rgba(0, 0, 0, .05);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 60px;
    z-index: 1;
    opacity: 0
}

.jer-style_3 #jer-floating_cta:before {
    border-radius: 60px
}

#jer-floating_cta:hover:before {
    opacity: 1
}

#jer-floating_cta:hover .jer-fc_icon {
    background-color: rgba(0, 0, 0, 0)
}

#jer-floating_cta .jer-fc_text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    padding: 15px 20px 15px 15px;
    font-family: Arial, Sans-serif;
    vertical-align: sub;
    max-width: 260px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    float: left
}

#jer-floating_cta .jer-fc_icon {
    position: relative;
    z-index: 2;
    height: 43px;
    padding: 10px 12px;
    border-radius: 0 15px 0 0;
    background: rgba(0, 0, 0, .05);
    float: right;
    transition: background-color .5s ease
}

.jer-style_1 #jer-floating_cta {
    bottom: 0;
    left: 15px;
    border-radius: 4px 15px 0 0
}

.jer-style_2 #jer-floating_cta {
    bottom: 15px;
    left: 15px;
    border-radius: 100px
}

.jer-style_2 #jer-floating_cta .jer-fc_text {
    padding: 15px 15px 15px 20px
}

.jer-style_2 #jer-floating_cta .jer-fc_icon {
    width: auto;
    padding: 10px 14px
}

.jer-style_3 #jer-floating_cta {
    bottom: 10px;
    left: 15px;
    border-radius: 100px
}

.jer-style_3 #jer-floating_cta .jer-fc_text {
    display: none
}

.jer-style_3 #jer-floating_cta .jer-fc_icon {
    padding: 14px;
    height: 60px;
    width: 60px;
    background: rgba(0, 0, 0, 0)
}

.jer-pulse_3 {
    display: none;
    position: fixed;
    border-width: 1px;
    border-style: solid;
    border-radius: 55px;
    height: 55px;
    width: 55px;
    bottom: 12px;
    left: 17px;
    -webkit-animation: widgetPulse infinite 1.5s;
    animation: widgetPulse infinite 1.5s
}

.jer-style_3 .jer-pulse_3 {
    display: block
}

.jer-right .jer-pulse_3 {
    left: inherit;
    right: 17px
}

@-webkit-keyframes widgetPulse {
    0% {
        opacity: 0
    }

    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 0
    }
}

@keyframes widgetPulse {
    0% {
        opacity: 0
    }

    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 0
    }
}

.jer-style_3.jer-text_3 #jer-floating_cta {
    overflow: visible
}

.jer-style_3.jer-text_3 #jer-floating_cta .jer-fc_text {
    display: block;
    position: absolute;
    left: 75px;
    top: 8px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    max-width: 260px
}

.jer-style_3.jer-text_3 #jer-floating_cta .jer-fc_text:hover {
    background: #f1f1f1;
    transition: all .5s ease
}

.jer-style_3.jer-text_3.jer-right #jer-floating_cta .jer-fc_text {
    left: inherit;
    right: 75px
}

#jer-floating_popup {
    position: fixed;
    z-index: 999;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
    left: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 350px;
    font-family: Arial, Sans-serif;
    font-size: 14px;
    line-height: 1.4
}

.branded #jer-floating_popup>a {
    display: block !important;
    text-align: center;
    text-decoration: none;
    color: #333;
    background: #fff;
    border-top: 1px solid #ddd;
    font-size: 12px;
    font-weight: 400;
    line-height: 2
}

.jer-style_1 #jer-floating_popup {
    bottom: 60px
}

.jer-style_2 #jer-floating_popup {
    bottom: 70px
}

.jer-style_3 #jer-floating_popup {
    bottom: 80px
}

#jer-floating_popup .jer-header {
    background: #0dc152;
    text-align: center;
    color: #fff;
    padding: 15px
}

#jer-floating_popup .jer-header .jer-close {
    position: absolute;
    left: 15px;
    top: 25px;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    padding: 10px;
    cursor: pointer
}

#jer-floating_popup .jer-header .jer-close:hover {
    background: rgba(0, 0, 0, .1)
}

#jer-floating_popup .jer-header .jer-avatar {
    height: 60px;
    width: 60px;
    border-radius: 60px;
    display: inline-block;
    overflow: hidden;
    background: #000
}

#jer-floating_popup .jer-header .jer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#jer-floating_popup .jer-header .jer-intro {
    margin-bottom: 0;
    margin-top: 10px;
    padding: 0;
    line-height: 1.4;
    font-size: 14px;
    color: #fff
}

#jer-floating_popup .jer-header .jer-intro strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px
}

#jer-floating_popup .jer-chat {
    padding: 15px;
    background: url(../img/bg.png);
    background-size: 100%
}

#jer-floating_popup .jer-chat .jer-chat_opening {
    display: inline-block;
    position: relative;
    background: #e4fec8;
    color: #333;
    padding: 8px 12px;
    border-radius: 0 4px 4px 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2)
}

#jer-floating_popup .jer-chat .jer-chat_opening:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    border-style: solid;
    border-width: 0 10px 14px 0;
    border-color: transparent #e4fec8 transparent transparent
}

#jer-floating_popup .jer-chat .jer-chat_opening .jer-timestamp {
    color: #aaa;
    font-size: 11px;
    vertical-align: bottom
}

#jer-floating_popup .jer-chat .jer-chat_opening img {
    width: 14px;
    height: 14px;
    vertical-align: bottom;
    display: inline-block;
    opacity: .5
}

#jer-floating_popup .jer-input {
    position: relative;
    padding: 15px;
    border-top: 1px solid #f1f1f1;
    color: #666;
    background: #fff;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1)
}

#jer-floating_popup .jer-input .jer-input_content {
    border: 0;
    padding: 0;
    width: calc(100% - 22px);
    outline: 0;
    line-height: 1;
    font-size: 14px;
    color: #666;
    background: #fff;
    font-family: Arial, sans-serif
}

#jer-floating_popup .jer-input .jer-input_content::placeholder {
    color: #aaa
}

#jer-floating_popup .jer-input .jer-input_icon {
    height: 16px;
    width: 16px;
    position: absolute;
    top: 18px;
    right: 15px;
    cursor: pointer;
    opacity: .5
}

#jer-floating_popup .jer-input .jer-input_icon:hover {
    opacity: 1
}

#jer-floating_popup .jer-multiple_cs .jer-chat {
    padding: 0;
    background: #fff;
    max-height: 240px;
    overflow-y: auto
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list {
    font-size: 13px;
    padding: 10px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    display: flex
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list:focus,
#jer-floating_popup .jer-multiple_cs .jer-chat .a-list:hover {
    text-decoration: none;
    color: inherit;
    background: rgba(0, 0, 0, .05);
    cursor: pointer
}

#jer-floating_popup .jer-multiple_cs .jer-header .jer-avatar {
    position: relative;
    margin-left: -50px;
    left: 20px;
    border-width: 2px;
    border-style: solid;
    border-radius: 60px;
    vertical-align: middle;
    overflow: hidden;
    background: #000
}

#jer-floating_popup .jer-multiple_cs .jer-header .jer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list .jer-avatar {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 60px;
    width: 60px;
    border-radius: 60px;
    margin-right: 10px;
    overflow: hidden;
    background: #000
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list .jer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list .jer-cs_profile {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    color: #666;
    font-size: 13px;
    margin-top: 5px;
    text-align: left;
    flex: 1
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list .jer-cs_profile p {
    margin: 0;
    padding: 0;
    line-height: 1
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list .jer-cs_profile h3 {
    margin: 5px 0 3px;
    padding: 0;
    color: #000;
    font-family: Arial, Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list .jer-cs_profile .jer-cs_status {
    position: relative;
    font-size: 10px
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list .jer-cs_profile .jer-cs_status:before {
    content: "";
    background: #0dc152;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    position: absolute;
    top: 2px;
    right: -10px
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list.offline .jer-cs_profile .jer-cs_status:before {
    background: #aaa
}

#jer-floating_popup .jer-multiple_cs .jer-chat .a-list.offline img.jer-avatar {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%)
}

#jer-floating_popup .jer-chat.link-recommendation {
    padding-top: 0
}

#jer-floating_popup .jer-chat.link-recommendation .jer-chat_opening {
    padding-top: 12px
}

#jer-floating_popup .jer-chat.link-recommendation .jer-chat_opening a {
    text-decoration: none;
    color: #333
}

#jer-floating_popup .jer-chat.link-recommendation .jer-chat_opening a img {
    width: 100%;
    height: auto;
    opacity: 1;
    margin-bottom: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1)
}

.jer-right #jer-floating_cta,
.jer-right #jer-floating_popup {
    left: inherit;
    right: 15px
}

#jer-floating_popup .jer-multiple_cs .jer-chat::-webkit-scrollbar-track {
    background-color: #eee
}

#jer-floating_popup .jer-multiple_cs .jer-chat::-webkit-scrollbar {
    width: 10px;
    background-color: #eee
}

#jer-floating_popup .jer-multiple_cs .jer-chat::-webkit-scrollbar-thumb {
    background-color: #ddd
}

#jer-floating_popup,
div[id^=cs_] {
    display: none
}

@media (max-width:767px) {
    .jer-style_1 #jer-floating_cta {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0
    }

    .jer-style_2 #jer-floating_cta {
        bottom: 10px;
        right: 12px;
        width: calc(100% - 25px);
        max-width: 100%
    }

    .jer-style_1 #jer-floating_cta .jer-fc_icon,
    .jer-style_2 #jer-floating_cta .jer-fc_icon {
        width: auto;
        border-radius: 0;
        padding: 10px 10px 10px 12px
    }

    .jer-style_1 #jer-floating_popup,
    .jer-style_2 #jer-floating_popup,
    .jer-style_3 #jer-floating_popup {
        top: 50px;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0
    }

    #jer-floating_popup .jer-chat {
        background: 0 0
    }

    #jer-floating_popup .jer-input {
        bottom: 0;
        position: absolute;
        width: 100%;
        box-sizing: border-box
    }

    #jer-floating_popup .jer-multiple_cs .jer-chat {
        max-height: 100%;
        height: calc(100vh - 165px) !important
    }

    .jer-btn.btn_share .jer-btn_icon {
        padding: 10px 10px 10px 14px
    }

    .jer-btn.btn_share .jer-btn_text {
        display: inline-block
    }

    .woocommerce .quantity .qty {
        padding: 11px 5px !important
    }
}

#jer-container {
    position: fixed;
    top: 30%;
    z-index: 1
}

.jer-btns-right {
    right: 0
}

.jer-btns-left {
    left: 0
}

#jer-container ul {
    padding: 0;
    margin: 0
}

#jer-container ul li {
    list-style: none;
    margin: 0
}

#jer-container ul li {
    line-height: 45px
}

#jer-container ul li p {
    margin: 0
}

#jer-container ul li a {
    padding: 0 15px 0 0;
    display: block;
    line-height: 45px;
    text-align: left;
    white-space: nowrap;
    text-decoration: none
}

#jer-container ul li span {
    line-height: 45px;
    width: 50px;
    text-align: center;
    display: inline-block
}

#jer-container.jer-btns-left ul li a {
    text-align: right;
    padding: 0 0 0 15px
}

#jer-container.jer-btns-left ul li span {
    float: right
}

#jer-container ul li a:hover {
    text-decoration: none
}

#jer-container .jer-share-btn {
    position: relative
}

#jer-container .jer-share-btn span,
#jer-container.jer-btns-left .jer-share-btn span {
    float: none
}

#jer-container .jer-share-btn a {
    padding: 0
}

#jer-container.jer-btns-left .jer-share-btn i.jer-share-icon {
    float: right !important
}

#jer-container.jer-anim-icons ul li {
    transition: transform .1s
}

#jer-container.jer-anim-icons.jer-btns-right ul li:hover {
    transform: translate(-15px, 0)
}

#jer-container.jer-anim-icons.jer-btns-left ul li:hover {
    transform: translate(15px, 0)
}

#jer-container ul li.jer-share-btn:hover .jer-social-popup {
    display: block
}

.jer-social-popup {
    position: absolute;
    top: 100%;
    left: 100%;
    margin: 0 0 0 -50px;
    width: 155px;
    display: none
}

#jer-container.jer-btns-right .jer-social-popup {
    right: -100%;
    margin: 0 0 0 -110px;
    left: 0
}

#jer-container .jer-social-popup a {
    padding: 0 !important;
    text-align: left !important
}

@media (min-width:768px) {
    #jer.mobile-only {
        display: none !important
    }
}

@media (max-width:767px) {
    .branded #jer-floating_popup>a {
        position: absolute;
        bottom: 0;
        width: 100%
    }

    .branded #jer-floating_popup .jer-input {
        bottom: 20px
    }

    #jer.desktop-only {
        display: none !important
    }

    .compact.jer-style_1 #jer-floating_cta {
        max-width: 90%;
        margin: 0 auto;
        border-radius: 4px 15px 0 0
    }

    .compact.jer-style_1 #jer-floating_popup,
    .compact.jer-style_2 #jer-floating_popup,
    .compact.jer-style_3 #jer-floating_popup {
        top: inherit;
        left: 5%;
        right: 5%;
        bottom: 50px;
        width: 90%;
        height: auto;
        border-radius: 8px
    }

    .compact.jer-style_2 #jer-floating_popup {
        bottom: 60px
    }

    .compact.jer-style_3 #jer-floating_popup {
        bottom: 80px
    }

    .compact #jer-floating_popup .jer-multiple_cs .jer-chat {
        height: auto !important;
        max-height: 45vh !important
    }

    .compact #jer-floating_popup .jer-input {
        position: relative
    }

    .jer-style_3.jer-text_3 #jer-floating_cta .jer-fc_text {
        max-width: calc(100vw - 100px)
    }
}