/* ========================================
   🔥 MODERN TRENDING GRADIENT EFFECTS 2025
   New Generation Website Styling
   ======================================== */

/* Animated Gradient Background */
.gradient-animate {
    background: linear-gradient(-45deg, #22c55e, #36B3E0, #fbbf24, #10b981);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Aurora/Northern Lights Effect */
.aurora-bg {
    position: relative;
    overflow: hidden;
}

.aurora-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(54, 179, 224, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.2) 0%, transparent 40%);
    animation: auroraMove 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes auroraMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #22c55e 0%, #36B3E0 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animate {
    background: linear-gradient(90deg, #22c55e, #36B3E0, #fbbf24, #22c55e);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 5s ease infinite;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Gradient Border Effect */
.gradient-border {
    position: relative;
    background: white;
    border-radius: 20px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #22c55e, #36B3E0, #fbbf24);
    border-radius: 22px;
    z-index: -1;
}

.gradient-border-animate::before {
    background: linear-gradient(90deg, #22c55e, #36B3E0, #fbbf24, #22c55e);
    background-size: 300% 100%;
    animation: borderGradient 4s linear infinite;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Floating Gradient Orbs */
.floating-orbs {
    position: relative;
    overflow: hidden;
}

.floating-orbs::before,
.floating-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

.floating-orbs::before {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    top: -100px;
    right: -100px;
    animation: floatOrb1 8s ease-in-out infinite;
}

.floating-orbs::after {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #36B3E0, #38bdf8);
    bottom: -80px;
    left: -80px;
    animation: floatOrb2 10s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Mesh Gradient Background */
.mesh-gradient {
    background-color: #f8fafc;
    background-image:
        radial-gradient(at 40% 20%, rgba(34, 197, 94, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(54, 179, 224, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(251, 191, 36, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(56, 189, 248, 0.1) 0px, transparent 50%);
}

/* Glow Effect */
.glow-green {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4), 0 0 40px rgba(34, 197, 94, 0.2);
}

.glow-blue {
    box-shadow: 0 0 20px rgba(54, 179, 224, 0.4), 0 0 40px rgba(54, 179, 224, 0.2);
}

.glow-yellow {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.2);
}

/* Shimmer/Shine Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmerEffect 2s infinite;
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Gradient Button with Glow */
.btn-gradient-glow {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #36B3E0 0%, #38bdf8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gradient-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4);
}

.btn-gradient-glow:hover::before {
    opacity: 1;
}

.btn-gradient-glow span {
    position: relative;
    z-index: 1;
}

/* Neon Glow Text */
.neon-text {
    color: #22c55e;
    text-shadow:
        0 0 5px #22c55e,
        0 0 10px #22c55e,
        0 0 20px #22c55e,
        0 0 40px #22c55e;
}

/* Gradient Underline */
.gradient-underline {
    position: relative;
    display: inline-block;
}

.gradient-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #36B3E0, #fbbf24);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gradient-underline:hover::after {
    transform: scaleX(1);
}

/* Pulse Animation */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
}

/* Gradient Shadow */
.gradient-shadow {
    position: relative;
}

.gradient-shadow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: linear-gradient(135deg, #22c55e, #36B3E0);
    filter: blur(20px);
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
}

/* Card with Gradient Hover */
.card-gradient-hover {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-gradient-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(54, 179, 224, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-gradient-hover:hover::before {
    opacity: 1;
}

.card-gradient-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Spotlight Effect */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spotlight:hover::before {
    opacity: 1;
}

/* ======================================== */

.lbncaptcha{
	display: none;
}

#phone_mb{
	display: none;
	visibility: hidden;
}

#contact_mb{
	display: none;
	visibility: hidden;
}

.imgLiquid img{
    visibility:hidden;
}

.bloglist {
    
    height: 240px;
    object-fit: cover;
}

.btn-currency{
	background-color: #F8BC31 !important;
	border-color: #fff;
}
.btn-whatsapp{
	background-color: #29C764 !important;
	border-color: #fff;
}
    
.bg-lbn-green{
    background-color:#29C764 !important;
}

.bg-lbn-blue{
    background-color:#20C3F7 !important;
}

.bg-lbn-red{
    background-color:#FB5E35 !important;
}

.bg-lbn-yellow{
    background-color:#F8BC31 !important;
}
.cardfromwrapper{
    margin-top: 20px;
    background-color:#fffff0 !important ;
    border: 1px solid #efefef;
}

.card_input{
    padding: 15px;
}

.inquiry_input{
	padding: 5px;
	font-size: 12px !important;
}

.badge-status{
	font-size: 16px !important;
	padding: 10px;
}


.lbn-white-text{
    color: #ffffff !important;
    font-weight: bold;
}
.lbn-white-text-normal{
    color: #ffffff !important;
}

.lbn-green-text{
    color: #29C764 !important;
    
}

.lbn-blue-text{
    color: #20C3F7 !important;
}

.lbn-red-text{
    color: #FB5E35 !important;
}


.lbn-dark-text{
    color: #000 !important;
}

.featured-list{
    height: 250px;
}

.home-tour-titles{
    font-size: 0.95em;
    display: block;
    padding: 5px 5px 15px 5px;
    font-weight: bold;
}

.home-hajj-container{
    background:url(../img/hajj_bg.png) no-repeat bottom left;
}

/* ========================================
   FOOTER COLOR SCHEME - Modern Gradient Style
   Matching Logo Colors with 2025 Effects
   ======================================== */

.footer-green {
    background: linear-gradient(-45deg, #22c55e, #10b981, #36B3E0, #22c55e) !important;
    background-size: 400% 400% !important;
    animation: footerGradient 15s ease infinite !important;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Background for Footer */
@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Orbs in Footer */
.footer-green::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
    animation: floatFooterOrb1 12s ease-in-out infinite;
    pointer-events: none;
}

.footer-green::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    border-radius: 50%;
    animation: floatFooterOrb2 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatFooterOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.1); }
}

@keyframes floatFooterOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
}

/* Footer Green - All text WHITE for visibility */
.footer-green,
.footer-green .footer-widget-title,
.footer-green .footer-widget-para,
.footer-green .footer-widget-contents-para,
.footer-green p,
.footer-green span,
.footer-green strong,
.footer-green a,
.footer-green h1, .footer-green h2, .footer-green h3, .footer-green h4, .footer-green h5, .footer-green h6,
.footer-green .copyright-contents-single-details-title,
.footer-green .copyright-contents-single-details-link,
.footer-green .footer-widget-inner,
.footer-green .footer-widget-contents {
    color: #ffffff !important;
}

/* Yellow accent on hover */
.footer-green a:hover {
    color: #fbbf24 !important;
    text-decoration: underline;
}

/* Yellow icons */
.footer-green .copyright-contents-single-icon,
.footer-green .copyright-contents-single-icon i,
.footer-green i.lab,
.footer-green i.las {
    color: #fbbf24 !important;
}

/* White background for logo */
.footer-green .footer-widget-logo {
    background-color: white;
    padding: 8px 12px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Social icons styling - Modern Glow */
.footer-green .footer-widget-social-list-link {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    z-index: 1;
}

.footer-green .footer-widget-social-list-link:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #1e293b !important;
    border-color: transparent !important;
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

/* Footer Widget Title - Gradient Underline */
.footer-green .footer-widget-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 20px !important;
}

.footer-green .footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, transparent);
    border-radius: 2px;
}

/* Footer Contact Items - Glassmorphism Cards */
.footer-green .copyright-contents-single {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-green .copyright-contents-single:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Footer Icon Glow Animation */
.footer-green .copyright-contents-single-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer Links Hover Effect */
.footer-green .copyright-contents-single-details-link {
    position: relative;
    transition: all 0.3s ease !important;
}

.footer-green .copyright-contents-single-details-link:hover {
    color: #fbbf24 !important;
    padding-left: 10px;
}

/* ========================================
   FOOTER YELLOW BAR - Shimmer Effect
   ======================================== */

.footer-yellow {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fcd34d, #fbbf24) !important;
    background-size: 300% 100% !important;
    animation: yellowShimmer 8s ease infinite !important;
    position: relative;
}

@keyframes yellowShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Footer Yellow - Dark text for visibility */
.footer-yellow,
.footer-yellow a,
.footer-yellow p,
.footer-yellow span,
.footer-yellow li {
    color: #1e293b !important;
}

.footer-yellow a {
    position: relative;
    transition: all 0.3s ease !important;
}

.footer-yellow a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #10b981);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-yellow a:hover {
    color: #22c55e !important;
    background-color: rgba(255,255,255,0.7) !important;
    transform: translateY(-2px);
}

.footer-yellow a:hover::after {
    width: 80%;
}

/* ========================================
   COPYRIGHT AREA - Aurora Effect
   ======================================== */

.copyright-bg-1 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

.copyright-bg-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(54, 179, 224, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    animation: auroraFooter 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auroraFooter {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(20px); }
}

.copyright-bg-1 .copyright-contents-main,
.copyright-bg-1 .copyright-contents-main span,
.copyright-bg-1 p {
    color: rgba(255,255,255,0.85) !important;
    position: relative;
    z-index: 1;
}

.copyright-bg-1 .copyright-contents-main a {
    color: #22c55e !important;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.copyright-bg-1 .copyright-contents-main a:hover {
    color: #fbbf24 !important;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Social icons in copyright area - Glow Effect */
.copyright-bg-1 .footer-widget-social-list-link {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.copyright-bg-1 .footer-widget-social-list-link:hover {
    background: linear-gradient(135deg, #22c55e, #10b981) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

/* Payment Methods Card - Glassmorphism */
.copyright-bg-1 .payment-methods > div {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.inner-header{
    padding-bottom:20px;
}
.inner-body-pdt20{
    padding-top: 20px;
}

.list-titles{
    font-size: 1.3em;
}

.subtext{
    font-size: 0.7em !important;
}
.lbn-small-text{
    font-size: 13px;
}

.lbn-label-text{
    font-size: 13px;
	font-weight: bold;
}

.room-wrapper{
    padding: 15px;
    border-bottom:1px dotted #ccc;
}

.price-wrapper{
    background-color: #e8e8e8; 
    padding:15px;
}

.mytopselect{
    z-index: 9999;
}

.md-stepper-horizontal {
	display:table;
	width:100%;
	margin:0 auto;
	background-color:#FFFFFF;
	box-shadow: 0 3px 8px -6px rgba(0,0,0,.50);
}
.md-stepper-horizontal .md-step {
	display:table-cell;
	position:relative;
	padding:24px;
}
.md-stepper-horizontal .md-step:hover,
.md-stepper-horizontal .md-step:active {
	background-color:rgba(0,0,0,0.04);
}
.md-stepper-horizontal .md-step:active {
	border-radius: 15% / 75%;
}
.md-stepper-horizontal .md-step:first-child:active {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.md-stepper-horizontal .md-step:last-child:active {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.md-stepper-horizontal .md-step:hover .md-step-circle {
	background-color:#757575;
}
.md-stepper-horizontal .md-step:first-child .md-step-bar-left,
.md-stepper-horizontal .md-step:last-child .md-step-bar-right {
	display:none;
}
.md-stepper-horizontal .md-step .md-step-circle {
	width:30px;
	height:30px;
	margin:0 auto;
	background-color:#999999;
	border-radius: 50%;
	text-align: center;
	line-height:30px;
	font-size: 16px;
	font-weight: 600;
	color:#FFFFFF;
}
.md-stepper-horizontal.green .md-step.active .md-step-circle {
	background-color:#00AE4D;
}

.done  {
	background-color:#003d1b !important;
}
.md-stepper-horizontal.orange .md-step.active .md-step-circle {
	background-color:#F96302;
}
.md-stepper-horizontal .md-step.active .md-step-circle {
	background-color: rgb(33,150,243);
}
.md-stepper-horizontal .md-step.done .md-step-circle:before {

	font-weight:100;

}
.md-stepper-horizontal .md-step.done .md-step-circle *,
.md-stepper-horizontal .md-step.editable .md-step-circle * {
	display:none;
}
.md-stepper-horizontal .md-step.editable .md-step-circle {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
.md-stepper-horizontal .md-step.editable .md-step-circle:before {
	font-weight:100;

}
.md-stepper-horizontal .md-step .md-step-title {
	margin-top:16px;
	font-size:16px;
	font-weight:600;
}
.md-stepper-horizontal .md-step .md-step-title,
.md-stepper-horizontal .md-step .md-step-optional {
	text-align: center;
	color:rgba(0,0,0,.26);
}
.md-stepper-horizontal .md-step.active .md-step-title {
	font-weight: 600;
	color:rgba(0,0,0,.87);
}
.md-stepper-horizontal .md-step.active.done .md-step-title,
.md-stepper-horizontal .md-step.active.editable .md-step-title {
	font-weight:600;
}
.md-stepper-horizontal .md-step .md-step-optional {
	font-size:12px;
}
.md-stepper-horizontal .md-step.active .md-step-optional {
	color:rgba(0,0,0,.54);
}
.md-stepper-horizontal .md-step .md-step-bar-left,
.md-stepper-horizontal .md-step .md-step-bar-right {
	position:absolute;
	top:36px;
	height:1px;
	border-top:1px solid #DDDDDD;
}
.md-stepper-horizontal .md-step .md-step-bar-right {
	right:0;
	left:50%;
	margin-left:20px;
}
.md-stepper-horizontal .md-step .md-step-bar-left {
	left:0;
	right:50%;
	margin-right:20px;
}

.tour-blocks{
	display: inline-block;
	margin-right: 30px !important;
}
.tour-item-img{
	margin-top: 15px;
	margin-bottom: 15px;
}
.tour-quote{
	font-size: 22px !important;
	line-height: 32px !important;
}
.page-content{
	padding: 15px;
}
.addhotel li{
	margin-bottom: 15px;
	list-style: none;
}

.lbn-girl{
	height: 440px;
}

@media (min-width: 481px) and (max-width: 1023.98px) {
	.lbn-girl {
		height: 280px;
	}
  }

/* ========================================
   GLOBAL AUTOCOMPLETE STYLES
   Override jQuery UI default blue hover
   ======================================== */

.ui-autocomplete {
    z-index: 99999 !important;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.ui-autocomplete .ui-menu-item {
    padding: 10px 15px !important;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.ui-autocomplete .ui-menu-item:hover,
.ui-autocomplete .ui-menu-item.ui-state-focus,
.ui-autocomplete .ui-menu-item.ui-state-active,
.ui-autocomplete .ui-menu-item .ui-state-active,
.ui-autocomplete .ui-state-focus,
.ui-autocomplete .ui-state-active {
    background: #22c55e !important;
    color: white !important;
    border: none !important;
    border-color: transparent !important;
}

.ui-autocomplete .ui-menu-item-wrapper {
    padding: 8px 12px !important;
}

.ui-autocomplete .ui-menu-item-wrapper:hover,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
    background: #22c55e !important;
    color: white !important;
    border: none !important;
}

.ui-autocomplete .ui-menu-item:last-child {
    border-bottom: none;
}