:root {
  --boxShadow: 0px 3px 8px 0px rgb(0 0 0 / 13%);
}

body{
    font-size: 14px;
    margin: 0;
    padding:0;
    position:relative;
    top: 0;
    left: 0;
	height:auto;
	color:#000;
	overflow-x:hidden;
	scroll-behavior: smooth;
    padding-top: 65.23px;

}
@font-face {
    font-family:Lato-Bold ;
    src: url('../font/Lato-Bold.ttf');
}
@font-face {
    font-family:LatoSemibold ;
    src: url('../font/LatoSemibold.ttf');
}
@font-face {
    font-family:Lato-Black ;
    src: url('../font/Lato-Black.ttf');
}
@font-face {
    font-family:Lato-Regular ;
    src: url('../font/Lato-Regular.ttf');
}
@font-face {
    font-family:Lato-Light ;
    src: url('../font/Lato-Light.ttf');
}
@font-face {
    font-family:Lato-Medium ;
    src: url('../font/Lato-Medium.ttf');
}
::placeholder{
	color:#2c3531;
}
p,a{
	color:#727272;
}
p{
	line-height:27px;
}


p,a,button{
	font-size:16px;
	font-family:Lato-Regular;
}

button,a{
	cursor:pointer;
}

a:hover, a:focus{
	text-decoration: none !important;
	color: #000;
}
.flex{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}
.chatIcon{
	display: inline-block;
    border: none;
    padding: 10px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    box-shadow: var(--boxShadow);
    float: right;
}
section{
    padding: 50px 0 0 0;
}
.dropdown-menu{
	min-width: 230px;
}
.button_1{
	background-color: #e39618;
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 16px 20px;
    min-width: 100px;
    font-size: 16px;
}

.button_2{
	background-color: #fff;
    border: 1px solid #e39618;
    color: #e39618;
    border-radius: 20px;
    padding: 10px 20px;
	min-width: 100px;
	margin-top: 10px;
}
.button_3{
    padding: 13px 30px;
    margin-right: 10px;
    display:block;
    color: #000;
    border: 1px solid #717e5f;
    border-radius: 6px;
	min-width: 100px;
}
.button_3.active {
    background-color: #717e5f;
    border: 1px solid #717e5f;
}
.button_5 {
    border: 1px solid #ccc;
    color: #000;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
	min-width: 100px;
}
.modal-content{
	border-radius: 0;
}
.form-group {
    margin-bottom: 30px;
}
h1 {
    font-size: 40px;
    font-family: Lato-Bold;
	color: #000;
}
h2, h3 {
    font-size: 32px;
	color: #000;
}
.no-padding{
	padding:0px;
}


.mt-20{
	margin-top:20px
}
.mt-25{
	margin-top:25px
}
.mt-30{
	margin-top:30px
}
.mt-40{
	margin-top:40px
}
.mt-50{
	margin-top:50px
}
.form-group .SumoSelect{
	width: 100%;
}


/*header*/


.navbar-wrapper {
    background: #fff;
    border-bottom: 1px solid #eee;
	padding: 10px 0px;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: var(--boxShadow);
}
.wrap-custom {
    width: 96%;
    margin: 0 auto;
}
.navbar {
    position: relative;
    min-height: auto;
    margin-bottom: 0px;
    margin-top: 0px;
    border: 1px solid transparent;
	
}
.navbar-inverse {
    background-color: transparent !important;
    border-color: transparent !important;
}
.navbar-header {
    position: relative;
	justify-content: left;
    width: 170px;
}
a.brand {
    display: block;
}
a.brand > img{
    width: 120px;
}
.shareContainer button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: none;
}
.navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover {
    color: #e49618;
    background-color: transparent;
}
.navbar-nav {
    float: right;
    margin: 0;
	text-transform: capitalize;
    display: inline-flex;
    align-items: center;
}
ul.navbar-nav li {
    position: relative;
	margin-left: 10px;
}
.nav > li {
    position: relative;
    display: block;
}
.navbar-inverse .navbar-nav > li > a {
    color: #e49618;
	padding:10px;
}
.navbar-inverse .navbar-nav > li.logs > a {
	padding:10px 20px;
}
.navbar-inverse .navbar-nav > li.cart > a{
    font-size: 24px;
}
.navbar-inverse .navbar-nav > li.cart > a > img{
    max-width: 24px;
}
.navbar-inverse .navbar-nav > li.tog-menu > a{
    color: #000;
    font-size: 24px;
}
ul.navbar-nav li.tog-menu a {
    font-size: 21px;
    display: block;
}
ul.navbar-nav li ul.flat-menu {
	list-style: none;
    padding-left: 0px;
    position: fixed;
    width: 100%;
    height: auto;
    top: 68px;
    margin-left: 0%;
    background: #ffffff;
    padding: 60px 15px;
    border-radius: 0px;
    color: #fff;
    right: 0;
	box-shadow:var(--boxShadow);
	transition: all ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
ul.navbar-nav li ul.flat-menu.show-drop {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}
.divide-flat-menu {
    width: 100%;
    display: flex;
    align-items: flex-start;
	max-width: 1200px;
	margin:0 auto;
}
.divide-flat-menu > div{
    margin:0 0 0 100px;
}
.divide-flat-menu > div.flat-menu-1{
    margin-left:30px;
}
.divide-flat-menu > div > h3{
	font-size: 20px;
    font-family: 'Lato-Medium';
    margin-bottom: 35px;
    text-transform: uppercase;
	position: relative;
}
.divide-flat-menu > div > h3::after{
	content: "";
    position: absolute;
    width: 55px;
    height: 2px;
    background: #e39618;
    left: 0;
    bottom: -10px;
}
.divide-flat-menu > div > ul > li{
	margin-left:0;
	margin-bottom: 20px;
}
.divide-flat-menu > div > ul > li > a{
	font-size: 16px !important;
    color: #727272;
    font-family: 'Lato-Regular';
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: var(--boxShadow);
}

.logs a{
    border: 1px solid #e49618;
    border-radius: 50px;
}
.navbar.navbar-inverse{
    display: flex;
    align-items: center;
}
#navbar{
    width: calc(100% - 170px);
    justify-content: right;
}
.nav .dropdown .dropdown-toggle{
    width: 70px;
    display: flex;
    align-items: center;
	justify-content: space-between;
}
.nav .dropdown .dropdown-toggle img{
	width: 100%;
    max-width: 30px;
    box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 21%);
}
.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: transparent;
    box-shadow: 1px 1px 10px 0px #ccc;
}
.nav .dropdown-menu li a {
	width: auto;
    padding: 0;
}
.nav .dropdown-menu li a img{
	width: 100%;
    max-width: 30px;
    vertical-align: middle;
    box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 31%);
    margin-right: 10px;
}
.nav .dropdown-menu li{
    margin: 0;
    padding: 10px;
}
.nav .dropdown-menu>li>a:focus, .nav .dropdown-menu>li>a:hover {
    background-color: transparent;
}
ul.navbar-nav li.cart::before{
	content:"";
	position: absolute;
    left: -6px;
    height: 60%;
    width: 1px;
    background: #b8b8b8;
    top: 50%;
    transform: translateY(-50%);
}
/*header end*/


/*footer*/
.f_top{
    padding: 30px;
    border-bottom: 1px solid #ccc;
}
.f_mid {
    margin: 50px 0px;
}
.f_bottom {
    background-color: #717e5f;
    padding: 30px;
    color: #fff;
}
.f_mid h2{
    font-size: 20px;
    font-family: 'Lato-Regular';
}
.f_desc{
    width: 80%;
}
.f_desc p{
    line-height: 27px;
	padding: 25px 0px;
}
.footer-list{
    padding: 30px 0;
}
.footer-list li{
    padding: 15px 0px;
}
.social-links{
    display: flex;
    align-items: center;
}
.social-links li a{
    font-size: 20px;
    color: #e49618;
	margin-right: 35px;
}
.f_bottom  p{
    color: #fff;
}
.list_spc a{
    color: #fff;
    background-color: #e49618;
    padding: 10px 15px;
    border-radius: 20px;
}

/*footer end*/


a.show_more{
	display: inline-flex;
    align-items: center;
    padding: 0px 30px;
    margin-top: 15px;
    color: #e39618;
    font-family: 'Lato-Regular';
}
a.show_more > i{
	margin-left: 10px;
    transform: rotate(90deg) translateX(2px);
}
a.show_more.upwardsArrow > i{
        transform: rotate(-90deg) translateX(-2px);
}
/*home*/

.home_banner{
    height: 450px;
	position:relative;
}
.home_banner_sec{
	position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    max-width: 1120px;
}
.heading{
    margin-bottom: 30px;
	color: #fff;
}
.heading h1{
    font-size: 40px;
    font-family: Lato-Bold;
    color: #fff;
    margin: 20px 0;
}
.banner_form{
    background-color: #717e5f;
    padding: 30px;
}
.home_banner_sec .banner_form {
    background-color: #0000005c;
}
.frm_fields form{
    display: flex;
    width: 100%;
	padding: 10px 0;
	align-items: flex-start;
}
.selection_by a{
    padding: 13px 30px;
    margin-right: 10px;
	display: inline-block;
	color:#fff;
	border:1px solid #fff;
	 border-radius: 6px;
}
.selection_by a.active{
    background-color: #717e5f;
	border:1px solid #717e5f;
}
.selection_by{
    margin-bottom: 20px;
}
#banner_form1 .form-group{
	margin:0;
	position:relative;
}
#banner_form1 .form-control{
	height: 50px;
    border-radius: 0px;
    font-family: 'Lato-Medium';
    margin: 0;
    color: #2c3531;
    border-top: none;
    border-bottom: none;
    box-shadow: none;
}
.form-group span.icon{
	position: absolute;
    left: 0;
    top: 10px;
    height: 30px;
    width: 30px;
	background-size: auto 15px;
    background-position: center center;
    background-repeat: no-repeat;
}
.form-group span.loc_icon{
	background-image:url('../images/Location.svg')
}
.form-group span.date_icon{
	background-image:url('../images/calendar.svg')
}
.form-group span.clock_icon{
	background-image:url('../images/clock-icon.svg')
}
.form-group span.space_icon{
	background-image:url('../images/space.svg')
}
.form-group span.person_icon{
	background-image:url('../images/Person.svg')
}
.form-group span.loc2_icon{
	background-image:url('../images/Location-2.svg')
}
.wd-15{
	width:20%;
}
.wd-25{
	width:24%;
}
#banner_form1 .submit{
	width:12%;
	background-color: #e39618;
    border: none;
    margin-left: 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
	height: 50px;
}
#banner_form1 .form-group:first-child .form-control{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
	width: 90%;
}
#banner_form1 .form-group:nth-child(7) .form-control{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.SumoSelect > .CaptionCont > label {
    margin-bottom: 0;
}
.SumoSelect > .CaptionCont > span {
   line-height: 2.3;
    margin-top: 0 !important;
	color: #000;
}
.SumoSelect > .CaptionCont > span.placeholder {
    color: grey !important;
}
.heading p{
    color: #fff;
}
.left_desc h2{
    font-size: 32px;
    font-family: 'Lato-Bold';
}
.left_desc h2 span{
    font-size: 32px;
    font-family: 'Lato-Bold';
}
.left_desc a{
	font-size: 16px;
    padding: 10px 20px;
    color: #000000;
    border-radius: 5px;
    background-color: #f7f7f7;
    display: inline-block;
    min-width: 214px;
    width: auto;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
    word-spacing: 3px;
    letter-spacing: 0.7px;
}
.slidr_img{
    height: 260px;
	position: relative;
}
.slidr_img img{
	width: 100%;
    position: absolute;
    object-fit: cover;
    height: 100%;
}
.home_crousel_desc{
	margin-bottom: 40px;
}
.slidr_desc h3{
    font-size: 18px;
    font-family: 'Lato-Medium';
    /* font-weight: 600; */
    padding-right: 15px;
}
.slidr_desc{
    padding: 12px 0;
}
.slidr_desc span{
    float: right;
    color: #e3961b;
}
.all_btn{
    display: block;
    clear: both;
    text-align: center;
    padding-top: 40px;
}
#home_carousel_1 .owl-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
	left:0;
}
#home_carousel_1 .owl-nav .owl-prev{
    left: -50px;
    position: absolute;
    font-size: 28px;
}
#home_carousel_1 .owl-nav .owl-next{
    right: -50px;
    position: absolute;
    font-size: 28px;
}
#home_carousel_1 .owl-prev:after{
	content: '';
    width: 30px;
    height: 30px;
    background-color: #d6dbcf;
    position: absolute;
    border-radius: 50px;
    left: 12px;
    z-index: -1;
}

#home_carousel_1 .owl-next:after{
	content: '';
    width: 30px;
    height: 30px;
    background-color: #d6dbcf;
    position: absolute;
    border-radius: 50px;
    right: 12px;
    z-index: -1;
}
.home_banner_sec .heading h1 span::after {
    content: '';
    width: 170px;
    height: 10px;
    display: block;
    position: absolute;
    right: 0;
    bottom: 5px;
    background-color: #e3961b;
    z-index: -1;
}
.home_banner_sec .heading h1 span{
    position: relative;
	z-index:9;
}
.fetured_spaces_head  h3{
	font-size: 32px;
    font-family: 'Lato-Bold';
    margin-bottom: 20px;
}
.fetured_spaces_head  p{
	font-size: 16px;
	line-height: 1;
}
.fetured_spaces_head  h3 span{
    font-family: 'Lato-Bold';
}
.fetured_spaces_tab .nav-tabs{
	border:none;
	display:flex;
	justify-content:center;
}
.fetured_spaces_tab .nav-tabs>li {
	float:none;
}
.fetured_spaces_tab .nav-tabs>li>a{
    padding: 8px 30px;
    margin-right: 20px;
    display: block;
    color: #000;
    border: 1px solid #717e5f;
    border-radius: 6px;
}
.fetured_spaces_tab .nav-tabs>li.active>a{
    
    color: #fff;
	background-color:#717e5f;
}
.fetured_spaces_tab{
	padding: 20px 0;
}
.fetured_spaces_tab .tab-content{
    padding: 40px 0;
}
.featur_img img{
	width: 100%;
    max-height: 240px;
    object-fit: cover;
}
.featur_decp h3{
    font-size: 18px;
   font-family: 'Lato-Medium';
	margin: 10px 0;
}
.featur_decp h3 > a{
    font-size: inherit !important;
    font-family: inherit !important;
    color: #000;
}
.featur_decp p{
    margin: 10px 0;
}
.featur_decp p:nth-child(2){
    min-height: 54px;
}
.f_items{
	margin-bottom: 30px;
    box-shadow: var(--boxShadow);
    padding-bottom: 10px;
}
.featur_decp{
    padding: 10px;
}
.featur_decp p span{
    color: #000;
    font-weight: 600;
	display: inline-block;
    margin-left: 5px;
}
.blogs{
	background-image:url(../images/blog.png);
	margin-top: 0px;
	background-size: cover;
}
.blog_desc h3{
    font-size: 20px;
    font-family: 'Lato-Bold';
	color:#fff;
	margin-bottom: 15px;
}
.blog_desc p{
	color:#fff;
}
.blog_desc p span{
    text-decoration: underline;
    font-style: italic;
	    color: #fff;
}
.blog_head{
    font-size: 32px;
    color: #fff;
    font-family: 'Lato-Bold';
}
.blog_head span{
	font-family: 'Lato-Bold';
}
.blog_date{
	font-size: 20px;
    font-family: 'Lato-Regular';
    color: #fff;
    min-width: 80px;
    text-align: center;
    padding: 10px;
    background-color: #adcb83;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog_date span{
    vertical-align: middle;
	line-height: 1.4;
}
.blog_detail{
	display: flex;
    align-items: stretch;
    margin-bottom: 30px;
	margin-bottom: 45px;
}
.blog_desc{
    padding: 0 15px;
}
.blogs_div{
    margin-top: 50px;
}

/*home end*/



/*about*/

.inner_banner.about{
	background-image:url(../images/abt_us.png);
}
.inner_banner {
    text-align: center;
    padding: 100px 0;
	height: 280px;
}
.inner_banner h1{
	width: max-content;
    margin: 0 auto;
	margin-bottom: 10px;
	color:#fff;
}
.inner_banner p{
	color:#fff;
	font-size: 24px;
}
.who_we_desc h3{
	font-family: 'Lato-Bold';
	margin-bottom: 20px;
	margin-top: 40px;
	font-size: 32px;
}
.who_we_desc h3 span{
    font-weight: 600;
	position:relative;
}
.who_we_img{
	text-align:right;
}
.inner_banner h1 span{
	position:relative;
	z-index:9;
	font-family: LatoSemibold;
}
.inner_banner h1 span:after{
	content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 6px;
    left: 0;
    background-color: #e39618;
    z-index: -1;
}
.who_we_desc h3 span:after{
	content: '';
    width: 100px;
    height: 3px;
    background-color: #e39618;
    position: absolute;
    right: -110px;
    top: 25px;
}
.who_sec{
	padding-top: 20px;
}
.how_wrk_jrny{
	
    padding: 50px;
    background-color: #fbfafa;
}
.founder_desc{
    width: 50%;
    padding: 0 50px;
    text-align: center;
    margin: 0 auto;
}
.founder_head  h4{
    font-size: 18px;
    font-family: 'Lato-Bold';
    margin-top: 10px;
    margin-bottom: 10px;
}
.founder_head > p{
    font-style: italic;
}
.founder_head {
    margin-bottom: 10px;
}
.founder_head span{
    display: block;
	padding: 30px;
    border-radius: 50%;
    background-color: #fff;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}
.founder_head span > img{
    width:100%;
}
.miles_div ul li a{
    display: flex;
	align-items:center;
}
.miles_div_desc{
    margin-left: 10px;
}
.miles_div_desc h4{
    font-size: 24px;
    font-family: 'Lato-Regular';
    color: #000;
}
.jrny_head h4{
	color:#e39618;
	background-color: #fef3e2;
    width: max-content;
    padding: 5px 10px;
    font-size: 16px;
    font-family: 'Lato-Regular';
    border-radius: 5px;
	margin: 10px auto;
}
.miles_div ul li{
	padding: 10px 10px 10px 0;
}
.miles_div{
    padding: 0px 0px;
	position:relative;
}
.miles_div::before{
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background-color: #e6efda;
    z-index: -1;
}
.miles_div_new_decp{
    padding: 10px 0px;
}
.miles_div ul li:first-child{
	padding-top:20px;
}
.miles_div ul li:last-child{
	padding-bottom:20px;
}
.miles_div ul li.active:after{
	content: '';
    background-image: url(../images/arrow_orange.png);
	position: absolute;
    top: 50%;
    right: 0;
    height: 20px;
    width: 20px;
    background-size: cover;
    transform: translateY(-50%);
}
.milestones{
	background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-position: top right;
	padding-top: 10px;
}
.leftSideMilestone{
	padding-right:20px
}
.rightSideMilestone{
	padding-left:20px
}
.miles_div ul li.active{
    background-color: #fff;
	position: relative;
}
.miles_div ul li.active::before{
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
}
.miles_div_new_img{
    height: 250px;
    width: 100%;
    position: relative;
}
.miles_div_new_img img{
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.miles_div_new_decp h4{
    font-size: 24px;
    font-family: 'Lato-Regular';
    color: #000;
	margin-bottom: 10px;
}
.miles_div_new_decp h4:first-child{
    color: #e3961b;
}
.jrny_head p{
	color:#fff;
}
.jrny_num span{
    font-size: 30px;
    color: #fff;
    font-family: 'Lato-Bold';
}
.jrny_txt h4{
    font-size: 18px;
    font-family: 'Lato-Regular';
    font-weight: 600;
    color: #fff;
	margin-bottom: 15px;
}
.jrny_txt p{
	color:#fff;
}
.jrny_line{
    display: flex;
    align-items: center;
	position: relative;
    padding-top: 130px;
}
.jrny_line li{
    padding: 20px 30px;
}
.jrny_num{
	display:none;
}
.jrny_line:before{
	content: '';
    background-image: url(../images/jrny.png);
    position: absolute;
    top: 0px;
    width: 100vw;
    height: 130px;
    background-repeat: no-repeat;
    left: -120px;
}
.jrny_div{
    padding-top: 50px;
}
.our_team_sec{
    background-color: #fbfbfb;
}
.our_team h4{
    font-size: 28px;
    font-family: 'Lato-Regular';
}
.our_team h4 span{
    font-family: 'Lato-Bold';
}
.our_team h5{
    font-size: 20px;
	margin: 10px 0;
    font-family: 'Lato-Regular';
}
.our_team{
    text-align: center;
    padding: 95px 50px 50px 50px;
    background-color: #fff;
	position:relative;
	margin-top: 100px;
}
.our_team:before{
	content: '';
    background-image: url(../images/user1.png);
    position: absolute;
    width: 150px;
    height: 150px;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
}
.p_btm{
    margin-bottom: 0px;
}
/*about end*/

#login .modal-dialog {
    width: 666px;
	max-width: 95%;
}
#login .modal-content{
	border-radius:0
}
#login .modal-header{
    border: none;
}
#login .login_frm h3{
	text-align: center;
    font-size: 18px;
    font-family: 'Lato-Regular';
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 25px;
}
#reg_frm .form-group{
    margin-bottom: 12px;
    min-height: 96px;
}
#signup .reg_frm h3{
    text-align: center;
    font-size: 18px;
    font-family: 'Lato-regular';
	margin-bottom: 30px;
}
.form-group label{
    font-size: 14px;
    font-family: 'Lato-regular';
    margin-bottom: 12px;
}
.form-control {
    font-family: 'Lato-Regular';
    box-shadow: none;
    border-color: #e7e7e7;
    line-height: 1;
    font-size: 14px;
    height: auto;
    border-radius: 5px;
	padding: 12px 12px 12px 30px;
}
#reg_frm .form-control, #login_frm .form-control{
    padding: 12px 12px 12px 12px;
}
#phone_number {
    padding-left: 80px !important;
}
.country_flag {
    height: 43px;
}
#login_frm{
    padding: 15px 50px 30px 50px;
}

#reg_frm{
   padding: 15px 50px; 
}
.log_btn a{
    display: block;
	 display: block;
    color: #e39618;
    font-size: 14px;
    padding: 10px 0;
}
.log_btn button{
	width: 260px;
    border-radius: 5px;
    margin: 0 10px;
    border: 1px solid #e39618;
    padding: 10px;
}
.login_google a{
	border: 1px solid #e39618;
    padding: 12px 10px;
    display: block;
    width: max-content;
    margin: 0px auto 25px;
    border-radius: 3px;
    color: #000;
    box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 22%);
}

.no_acc span{
    color: #000;
    font-size: 14px;
    font-family: 'Lato-Bold';
}
.no_acc span a{
    color: #e39618;
	margin-left: 5px;
}
.login_google a img{
	width: 20px;
    vertical-align: middle;
    margin-right: 15px;
    margin-left: 5px;
}
.frm_btm p:before{
	content: '';
    width: 42%;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    left: 0;
    top: 15px;
}
.frm_btm p{
	position:relative;
	margin-bottom: 30px;
	color: #a1a1a1;
}
.frm_btm p:after{
	content: '';
    width: 42%;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    right: 0;
    top: 15px;
}
.frm_btm{
    margin-top: 20px;
}
.modal-header button{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    opacity: 1;
}





/*--space detail---*/

.detail_head_img.ht{
	height: 200px;
    position: relative;
	
}
.detail_head_img{
	position: relative;
	height:400px;
	display: inline-block;
    width: 100%;
}
.detail_head_img img{
	object-fit: cover;
    height: 100%;
    position: absolute;
	width:100%;
}
.space_detail {
	position:relative;
}
.all_photo{
    position: absolute;
    bottom: 30px;
    right: calc(50% - 74px);
}
.space_name h3{
    font-size: 24px;
    font-family: LatoSemibold;
}
.space_name span{
    font-size: 16px;
    font-family: 'Lato-Regular';
    background-color: #fff4e8;
    color: #e39618;
    padding: 10px;
    border-radius: 5px;
	margin: 20px 0px 15px;
    display: block;
    width: max-content;
}
.space_name p .view_map{
	margin-left: 15px;
    padding: 5px 20px;
    border: 1px solid #e9e9e9;
    color: #e39618;
    border-radius: 20px;
    display: inline-block;
    line-height: 1.3;
}
.space_time{
    display: flex;
    align-items: baseline;
    padding: 15px;
    box-shadow: var(--boxShadow);
}
.space_time_icon{
    font-size: 30px;
    color: #e39618;
}
.space_time_div{
    padding-left: 15px;
}
.space_time_div > div > p{
    display:inline-flex;
	align-items:center;
	line-height: 1;
}
.space_time_div > div > p .space_time_icon{
    margin-right:10px;
}
#space_tabs{
	position: sticky;
    top: 79px;
    z-index: 99;
    background: #fff;
    padding: 0px 0;
    box-shadow: none;
    display: flex;
    border: 1px solid #717e5f;
    border-radius: 5px;
    overflow: hidden;
}
#space_tabs  > li{
    flex: 1;
}
#space_tabs  > li a{
	text-align: center;
    border-radius: 0;
    font-size: 16px;
    font-family: 'Lato-Regular';
    color: #000;
    padding: 20px 10px;
    margin: 0;
    border: none;
}
#space_tabs  > li.active a{
    background-color: #717e5f;
	color:#fff;
}
#space_content .tab-pane{
	padding: 50px 0 0 0;
}
.space_detail_tabs .tab-pane h2{
	font-size: 20px;
    font-family: LatoSemibold;
	margin-bottom: 30px;
}
.space_detail_tabs .tab-pane p{
	font-size: 16px;
}
.space_detail_tabs .tab-pane hr{
	width: 80%;
    margin: 50px auto 0;
    border-color: #eeecec;
}
.space_detail_tabs .tab-pane .facilities_list{
	margin-bottom: 40px;
}

#space_detail_form1 .form-group label{
    color: #727272;
    font-size: 14px;
    margin: 0;
	padding-left: 12px;
}
#space_detail_form1 .form-group .form-control{
	color: #000;
    border: none;
    box-shadow: none;
    border-radius: 0;
	height: 25px;
    padding: 0px 12px 0 30px;
}
#space_detail_form1 .form-group {
	width:25%;
	margin-bottom: 0;
}
#space_detail_form1{
    display: flex;
    width: 90%;
    background-color: #fff;
    padding: 10px 0px;
    border-radius: 5px;
}
.tab_space_frm_div .frm_fields{
    position: relative;
}
.tab_space_frm_div .frm_fields{
    display: flex;
}
.tab_space_frm_div .frm_fields button{
    width: 10%;
    background-color: #e39618;
    border: none;
    margin-left: 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}
.tab_space_frm_div h2{
	margin-bottom: 15px;
}
.banner_form.new{
    background-color: #717e5f;
	padding: 20px;
}
.spaces_list_div_img img{
	width:100%;
	height: 100%;
    position: absolute;
    object-fit: cover;
}
.spaces_list_div{
	display: flex;
    margin-bottom: 30px;
    position: relative;
    border: none;
    box-shadow: var(--boxShadow);
	height:189px;
}
.spaces_list_div_img{
	width: 25%;
    position: relative;
}
.spaces_list_div_cont h3{
	font-size: 18px;
    font-family: 'LatoSemibold';
	margin-bottom: 15px;
}
.spaces_list_div .owl_class .item{
	position:relative;
	height: 168.45px;
}
.owl_class .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.owl_class .owl-nav .owl-prev{
    float: left;
    color: #fff;
    width: 30px;
    height: 30px;
    background-color: #000000b8;
    border-radius: 50px;
    padding: 5px 9px;
    font-size: 18px;
	margin-left: 5px;
}
.owl_class .owl-nav .owl-next{
    float: right;
    color: #fff;
    width: 30px;
    height: 30px;
    background-color: #000000b8;
    border-radius: 50px;
    padding: 5px 9px;
    font-size: 18px;
	margin-right: 5px;
}
#space_detail_owl .item{
	position:relative;
	height: 239px;
}
#space_detail_owl .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
#space_detail_owl .owl-nav .owl-prev{
    float: left;
    color: #fff;
    width: 30px;
    height: 30px;
    background-color: #000000b8;
    border-radius: 50px;
    padding: 5px 9px;
    font-size: 18px;
	margin-left: 5px;
}
#space_detail_owl .owl-nav .owl-next{
    float: right;
    color: #fff;
    width: 30px;
    height: 30px;
    background-color: #000000b8;
    border-radius: 50px;
    padding: 5px 9px;
    font-size: 18px;
	margin-right: 5px;
}
.facilities_list ul li img{
	width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 10px;
}
.spaces_list_div_cont .map_view{
    border: 1px solid #ccc;
    border-radius: 20px;
    width: max-content;
    padding: 2px 20px;
	margin: 10px 0px;
}
.spaces_list_div_cont .map_view a{
    color: #e39618;
}
.cancel,.resrve{
    display: inline-block;
    width: calc(100% - 165px);
	margin-top: 10px;
	text-align: left;
}
.resrve{
	text-align: center;
    width: 160px;
}
.resrve .button_1{
	width:100%;
	max-width: 160px;
	padding: 10px 30px;
}
.resrve span{
    font-size: 18px;
    font-family: 'LatoSemibold';
    font-style: italic;
	padding-bottom: 10px;
    display: block;
}
.spaces_list_div_cont p i{
    color: #e39618;
    font-size: 18px;
}
.spaces_list_div_cont{
	width: 75%;
    margin-left: 10px;
}
.button_addon{
	display: inline-block;
    padding: 10px 40px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
}
.cancel span{
    padding-bottom: 10px;
    display: block;
}
.spaces_list{
   padding: 40px 0 0 0;
}
.cancel span a{
    font-size: 14px;
	color: #717e5f;
}
.cancel span a > i{
	font-size: 16px;
    vertical-align: middle;
    margin-left: 5px;
}
.pop_choice{
    position: absolute;
    top: 5px;
    left: 0;
    background-color: #fff4e8;
    font-family: 'LatoSemibold';
    padding: 5px;
	font-size: 10px;
}
.wishlist{
    position: absolute;
    right: 5px;
    color: #fff;
    top: 5px;
    font-size: 18px;
}
.img_sld{
    position: absolute;
    bottom: 30px;
    right: 0;
    padding: 5px 20px 5px 5px;
    color: #fff;
    background-color: #000000c4;
}
.wishlist.active{
    color: #fff;
}
.addons_list{
    position: absolute;
    top: calc(100% + 10px);
	width: 100%;
    right: 0;
    background-color: #fff;
    z-index: 9;
	padding: 0 20px 20px 20px;
    box-shadow: var(--boxShadow);
    border-radius: 7px;
}
.addons_list > label{
	font-family: 'LatoSemibold';
    margin-bottom: 10px;
    margin-top: 20px;
}
.addons_list ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.addons_list ul li{
    width: calc(100% / 3);
    display: inline-block;
	padding: 10px;
}
.addons_list ul li .form-check{
    justify-content:space-between;
	width:100%
}
.addons_list ul li:nth-child(3n + 1){
    padding-left:0;
}

.addons_list input[type=checkbox] {
    margin: 0px 0 0;
    margin-top: 1px\9;
    line-height: normal;
    vertical-align: middle;
	width: 18px;
    height: 18px;
}
.addons_list ul li .form-check span{
    float: right;
    padding: 0;
	font-family: 'Lato-Bold';
}
.addons_list ul li .form-check label{
    font-family: 'Lato-Regular';
	color: #727272;
	margin-left: 6px;
}
.button_addon i{
    float: right;
	margin-left: 10px;
}
.down_crt{
    transform: rotate(90deg);
}
.facilities_list ul{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.facilities_list ul li{
	width: 20%;
    padding: 10px;
    font-family: 'Lato-Regular';
    color: #727272;
    display: inline-block;
}
.instructions{
    padding: 50px 0 0 0;
}
.instructions h4{
    font-size: 20px;
    font-family: 'LatoSemibold';
    color: #000;
}
.instructions ul{
    list-style: disc;
	margin-top: 35px;
	margin-top: 50px;
    padding-left: 50px;
}
.instructions ul h4{
   font-size: 18px;
   margin-bottom: 12px;
   font-family: Lato-Medium;
}
.space_detail_tabs .tab-pane .instructions ul p{
   font-size: 16px;
}
.instructions ul li{
    padding-bottom: 20px;
}
.instructions ul li:last-child{
    padding-bottom: 0px;
}


.md-accordion .card .card-header a:not(.collapsed) .rotate-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#accordionEx1 .card{
	width: 100%;
    padding: 20px;
    border-left: 4px solid #e39618;
    margin-bottom: 20px;
    box-shadow: var(--boxShadow);
	position:relative;
}
#accordionEx1 .card h5{
    font-size: 18px;
    color: #000;
    font-family: 'LatoSemibold';
	position: relative;
}
#accordionEx1 .card p{
    font-size: 16px;
}
#accordionEx1 .card h5 i {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 8px;
}
#accordionEx1 .card .card-body{
    margin-top: 20px;
    color: #727272;
    line-height: 27px;
    font-family: 'Lato-Regular';
    font-size: 14px;
}
.reviews_no{
	margin-top: 10px;
}
.reviws_by{
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    box-shadow: var(--boxShadow);
	margin: 10px 0px;
}
 .reviws_div{
    margin-top: 15px;
}
.reviws_by_img{
    width: 45px;
}
.reviws_by_img img{
    width: 100%;
}
.reviws_by_cont h4{
    font-size: 18px;
    font-family: 'LatoSemibold';
}
.reviws_by_cont{
    padding: 0 15px;
	width: calc(100% - 50px);
}
.space_detail_tabs .tab-pane .reviws_by_cont > p{
	font-size: 16px;
    line-height: 1.3;
    margin-top: 6px;
    min-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.reviews_no h4{
    font-size: 18px;
    font-family: 'LatoSemibold';
}
.review_bar_div{
    display: flex;
    flex-wrap: wrap;
	margin-bottom: 10px;
}
.review_status{
    width: 20%;
}
.progress{
    width: 80%;
	width: 80%;
    height: 10px;
    margin-bottom: 0;
    margin-top: 10px;
	border-radius: 0px;
	background-color: #fff4e8;
}
.progress-bar{
	background-color: #717e5f;
}
.review_bar{
    padding: 20px 0px;
}
.all_review a{
    width: max-content;
    color: #727272;
}
.all_review{
    padding-top:100px;
}
.also_like h4{
	font-size: 22px;
    font-family: 'LatoSemibold';
    position: relative;
    width: max-content;
    margin-top: 50px;
	margin-bottom: 30px;
}
.also_like_list .spaces_list_div {
    display: block;
    margin-bottom: 30px;
    position: relative;
	border:none;
}
.also_like_list .spaces_list_div_img {
    width: 100%;
    position: relative;
    height: 215px;
}
.also_like_list .spaces_list_div_cont {
    width: 100%;
    margin-left: 0;
}
.also_like_list .cancel, .also_like_list .resrve {
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: left;
}
.also_like_list .resrve .button_2{
	margin-top: 0;
    font-size: 14px;
}
.also_like_list .resrve > span{
	font-size: 16px;
    font-family: Lato-Bold;
}
.spaces_list_div_cont{
	padding: 20px 8px 15px 8px;
}
.also_like_list{
    margin-top: 15px;
}
.spaces_list_div_cont p{
	display: flex;
    align-items: center;
	margin-bottom: 5px;
}
.spaces_list_div_cont p img{
	width:22px !important;
	height:22px;
	margin-right: 6px;
}
/*--space detail end---*/




.space_bannr {
    /* background-image: url(../images/space_list.png); */
    background-size: cover;
    height: 400px;
	padding: 50px;
}
.space_hd h1{
	color:#fff;
	margin-bottom: 15px;
}
.space_hd p{
	color:#fff;
	font-size:28px;
	font-family: 'LatoSemibold';
}
.space_hd button{
	border-radius: 5px;
	margin-top: 30px;
}
#space_lst_form1 .form-group {
    margin: 0;
	width:29.3%;
	position: relative;
}
#space_lst_form1 .form-group:first-child .form-control {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
#space_lst_form1 .form-control {
    height: 50px;
    border-radius: 0px;
    font-family: 'Lato-Bold';
    color: #000;
}
#space_lst_form1 .submit {
    width: 12%;
    background-color: #e39618;
    border: none;
    margin-left: 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
	height: 50px;
}
#space_lst_form1 .form-group:nth-child(3) .form-control {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.filter_div h4{
    font-size: 20px;
    font-family: 'LatoSemibold';
}
.srch_loc .form-group label {
    font-size: 16px;
    font-family: 'LatoSemibold';
    margin-bottom: 10px;
}
.srch_loc{
    padding: 30px 0px 15px;
}
.space_categry ul li{
    padding: 5px 0;
}
.pretty {
    white-space: normal;
}
#filters .pretty label{
    font-size: 15px;
    font-family: 'Lato-Regular';
    color: #727272;
    padding-left: 30px;
    text-indent: 0;
}
.pretty input:checked~.state.p-success label:after, .pretty.p-toggle .state.p-success label:after {
    background-color: #717e5f!important;
	border-radius: 2px;
}
.pretty .state label:before {
    border-radius: 2px;
	top: 0;
}
.pretty input:checked~.state.p-success label:after, .pretty.p-toggle .state.p-success label:after{
	top: 0;
}
.pretty input:checked~.state.p-success .icon, .pretty input:checked~.state.p-success .svg, .pretty.p-toggle .state.p-success .icon, .pretty.p-toggle .state.p-success .svg{
	top: 0;
}
.pretty .state label {
    padding-left: 10px;
}
.pretty.p-icon .state .icon{
	top: calc((0% - (100% - 1em)) - 0%);
}
.space_categry p{
    font-size: 16px;
    font-family: 'LatoSemibold';
    margin-bottom: 10px;
    color: #000;
}
#filters hr{
	width: 85%;
    border-top: 1px solid #727272;
    margin: 25px auto 25px;
}
.srch_loc.new{
     padding: 0px 0px 15px; 
}
.space_filters{
    padding: 30px 20px;
    box-shadow: var(--boxShadow);
}
#space_list_carousel_1 .owl-dots{
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 10px;
}
#space_list_carousel_1 .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #717e5f;
	margin-right:10px
}
#space_list_carousel_1 .owl-dots .owl-dot.active {
	background-color: #fff;
}
.spaces_list_div.new .spaces_list_div_img {
    width: 33%;
    position: relative;
	height:225px;
}
.spaces_list_div.new .spaces_list_div_img .makeWishList{
	position: absolute;
    top: 5px;
    z-index: 99;
    right: 5px;
    font-size: 18px;
	color: #ffffff;
}
.spaces_list_div.new .spaces_list_div_cont {
    width: 47%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
	padding: 15px 15px;
    margin: 0;
}
.spaces_list_div.new .spaces_list_div_cont_new{
    width: 20%;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
	padding: 15px 5px;
}
.spaces_list_div.new .spaces_list_div_cont_new .resrve {
    display:block;
    width:100%;
    margin-top: 10px;
    text-align: center;
}
.inst_dis h4{
    font-size: 16px;
    font-family: 'Lato-Regular';
    color: #e39618;
}
.price p{
    font-size: 20px;
    font-family: 'LatoSemibold';
    color: #000;
}
.price span{
    font-size: 10px;
    font-family: 'Lato-Regular';
    color: #727272;
}
.inst_dis{
    text-align: center;
}
.price{
    text-align: center;
}
.aminities_icons span{
    display: block;
    width: 22px;
    height: 22px;
	margin-right: 15px;
}
.aminities_icons span img{
	width:100%;
}
.aminities_icons{
    display: flex;
    flex-wrap: wrap;
}
.space_no span {
	width: 100%;
    margin-bottom: 5px;
    color: rgb(114, 114, 114);
    font-size: 16px;
    font-family: Lato-Regular;
    display: inline-flex;
    align-items: center;
}
.space_no span img{
    width: 22px;
    margin-right: 6px;
}

.pagination {
  display: inline-block;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 10px;
  text-decoration: none;
  border: 1px solid #000;
  margin-right: 8px;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #e3961b;
    border-color: #e3961b;
}
.pagination a.active {
  background-color: #e39618;
  color: white;
  border: 1px solid #e39618;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.pagination>li.arrow>a{
	border: none;
    color: #e3961b;
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.pagination>li>a, .pagination>li>span {
    color: #000;
    font-family: 'Lato-Bold';
}
.pagination a:hover:not(.active) {
    background-color: #f1cb8d;
    color: #000;
}
.adds img{
    width: 100%;
}
.adds{
    margin-top: 20px;
}
.filter_results h1 {
    margin: 40px 0;
    font-size: 28px;
}
.blog_sec h1{
	font-size: 32px;
    margin-top: 40px;
    margin-bottom: 30px;
}
.blog_cont h4{
	font-size: 18px;
    font-family: LatoSemibold;
    color: #000;
    margin-bottom: 10px;
}
.blog_cont p{
	margin-bottom: 10px;
}
.blog_cont p span{
	font-size: 18px;
    color: #e3961b;
    margin-right: 8px;
}
.blogs_news_div{
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    padding: 20px 15px;
    border-radius: 4px;
    margin-bottom: 40px;
}
.blog_img{
    width: 35%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.blog_img img{
    width: 100%;
    position: absolute;
    object-fit: cover;
    height: 100%;
}
.blog_cont{
    width: 65%;
	padding-left: 15px;
}
.blogs_news .pagination {
    margin: 50px 0;
}



/*--blog detials---*/
.blog_sec{
	padding-top: 80px;
}
.blog_sec .back_btn{
	position: absolute;
	right: 15px;
    top: -50px;
}
.blog_sec .back_btn .button_1{
	width: 150px;
    padding: 10px;
    border-radius: 3px;
}
.blog_sec .back_btn .button_1 i{
	margin-right: 10px;
}
.blogs_detail{
    background-image: url(../images/blog.png);
}
.blogs_detail h1 {
    width: auto;
}
.blog_by{
    font-size: 15px;
    font-family: 'LatoSemibold';
    color: #f7b61a;
    margin: 30px 0;
}
.blog_by span{
    padding-left: 10px;
    border-left: 1px solid #ccc;
}
.blog_share{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	margin: 25px 0;
}
.blog_share span{
    font-size: 20px;
    font-family: 'LatoSemibold';
}
.blog_review_div h4{
	font-size:22px;
	font-family: 'LatoSemibold';
}
.review_add{
    display: flex;
    flex-wrap: wrap;
	margin: 25px 0;
}
.review_add input{
    width: 82%;
    border-radius: 0;
    border: none;
    box-shadow: var(--boxShadow);
    padding: 10px;
	height: 45px;
	font-family: 'Lato-Regular';
}
.review_add button{
    border-radius: 0;
}
.blog_review_div{
    width: 70%;
}
.button_4{
    border: 1px solid #ccc;
    color: #8a8a8a;
    background-color: #fff;
    padding: 10px;
}
.all_commnts{
	margin-top: 20px;
}
.blogs_detail_list h4{
    font-size: 26px;
    font-family: 'LatoSemibold';
	margin: 15px 0;
}
.blogs_detail_list_div .blog_cont h4{
    font-size: 18px;
	color: #3c3c3c;
	margin: 0;
}
.blogs_detail_list_div .blog_cont p{
    padding-top: 15px;
}
.blogs_detail_list_div .blogs_news_div{
    padding: 0;
    border: none;
	margin-bottom: 20px;
}
.blogs_detail_list_div .blog_cont{
	padding: 10px;
}
.blogs_detail_list_div{
    padding: 15px;
    border: 1px solid #ccc;
}
.back_btn  button{
    border-radius: 0;
}


/*---signup--*/
#signup .modal-header{
    border: none;
}
#signup .login_frm h3{
    font-size: 20px;
    font-family: 'LatoSemibold';
    text-align: center;
}
#signup .modal-dialog {
    width: 750px;
}
.cont_n{
    display: flex;
    flex-wrap: wrap;
}
.cont_n select{
    width: 18%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 1px solid #ccc;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
	color: #adadad;
    font-family: 'Lato-Regular';
}
.cont_n input{
    width: 82%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border: 1px solid #ccc;
}
#signup .pretty .state label {
    font-family: 'Lato-Regular';
}
#signup .pretty .state label span{
    color: #e39618;
}
#signup .log_btn {
    margin-top: 30px;
}
#signup .pretty .state label:before {
    border-radius: 2px;
    border-color: #000;
}


#signup_vendor .modal-header{
    border: none;
}
#signup_vendor .login_frm h3{
    font-size: 20px;
    font-family: 'LatoSemibold';
    text-align: center;
}
#signup_vendor .pretty .state label {
    font-family: 'Lato-Regular';
}
#signup_vendor .pretty .state label span{
    color: #e39618;
}
#signup_vendor .log_btn {
    margin-top: 30px;
}
#signup_vendor .pretty .state label:before {
    border-radius: 2px;
    border-color: #000;
}





/*--my account--*/


.my_acc{
    background-image: url(../images/Edit-my-profile.jpg);
	position:relative;
}
.my_acc h1{
    position: absolute;
    bottom: 50px;
    left: 100px;
}


#accordionMenu ul {
  margin: 0;
  
  list-style: none;
}

#accordionMenu .nav li {
  padding: 0 10px 0px 41px;
}

#accordionMenu .nav li a {
    font-size: 15px;
    color: #000;
    padding: 20px 0px;
    font-family: 'Lato-Regular';
    border-bottom: 1px solid #dadada;
}
#accordionMenu .nav li a > i{
    margin-right: 10px;
}
#accordionMenu .nav li:last-child a{
	border:none;
}

#accordionMenu {
  max-width: 300px;
}

#accordionMenu .panel-body {
  padding: 0;
}

#accordionMenu .panel-group .panel+.panel {
  margin-top: 0;
  border-top: 0;
}

#accordionMenu .panel-group .panel {
  border-radius: 0;
}

#accordionMenu .panel-default>.panel-heading {
  color: #333;
  background-color: #fff;
  border-color: #e4e5e7;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#accordionMenu .panel-default>.panel-heading a {
  display: block;
  padding: 20px 15px;
  text-decoration: none;
  background-color: #f5f5f5;
  font-size: 18px;
  font-family: 'Lato-Regular';
  color: #000;
}
#accordionMenu .panel-default>.panel-heading a > i{
  margin-right: 10px;
  color: #e49618;
}

#accordionMenu .panel-default>.panel-heading a:after {
  content: "";
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right;
  transition: transform .25s linear;
  -webkit-transition: -webkit-transform .25s linear;
      font-size: 13px;
    margin-top: 2px;
}

#accordionMenu .panel-default>.panel-heading a[aria-expanded="true"] {
  background-color: #e49618;
    color: #fff;
}
#accordionMenu .panel-default>.panel-heading a[aria-expanded="true"] > i{
    color: #fff;
}

#accordionMenu .panel-default>.panel-heading a[aria-expanded="true"]:after {
  content: "\e252";
}

#accordionMenu .panel-default>.panel-heading a[aria-expanded="false"]:after {
  content: "\e250";
}
#accordionMenu .nav>li>a:focus, #accordionMenu .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
	color:#e49618;
}
#accordionMenu .panel{
	border:none;
	margin-top: 0px;
	margin-bottom: 10px;
}
#accordionMenu {
    box-shadow: var(--boxShadow);
}
.account_heading h4{
    font-size: 20px;
    font-family: 'LatoSemibold';
}
.my_account_frm.view .form-group input,.my_account_frm.view .form-group select{
	border: transparent;
    background-color: #fff;
    border-radius: 0;
    border-bottom: 1px solid #eee;
    box-shadow: none;
	padding-left: 0;
}
.user_account_right_div{
    border: 1px solid #e1e1e1;
}
.account_heading{
    padding: 15px 30px;
	background-color: #fafafa;
    position: relative;
}
.account_heading span{
    position: absolute;
    top: 5px;
    right: 25px;
    padding: 10px;
}
.account_heading span a{
	color:#000;
}
.account_heading span a i{
    color: #e49618;
}
.account_div{
    padding: 20px;
}
.add_crd h4{
    font-size: 16px;
    font-family: 'LatoSemibold';
}
.card_detail p{
    margin-bottom: 30px;
}
.add_crd_div{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #ccc;
    padding: 3px 10px;
    border-radius: 10px;
    margin-top: 10px;
}
.add_crd_div p{
    margin-bottom: 0;
    width: 80%;
}
.add_crd_div a{
    width: 20%;
    text-align: right;
	color: #e49618;
	font-family: 'LatoSemibold';
}

.add_crd_div p span img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
    vertical-align: middle;
}
#captcha_img{
	display: inline-flex;
    height: 43px;
    align-items: center;
    border: 1px solid #e7e7e7;
    width: 80%;
    border-radius: 6px;
    overflow: hidden;
}
#Imageid{
	width: 100% !important;
    height: 43px !important;
    object-fit: contain;
}
.help-block {
    font-family: 'Lato-regular';
}
.close:focus, .close:hover {
    opacity: 1;
}

/*Cart made By Deepak*/
.cart_header{
    justify-content: center;
    height: 105px;
    background-image:url('../images/cart/cartbg.png');
    background-size: cover;
    position:relative;
}
.cart_header .overlay_cart{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index:1
}
.cart_header .cart_heading{
    z-index: 9;
}
.cart_header .cart_heading h1{
    color: #fff;
    position:relative;
    font-family: 'LatoSemibold';
}
.cart_header .cart_heading h1::after{
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #e39618;
    z-index: -1;
}
.main_cart{
    border: 1px solid #e7e7e7;
}
.cart_head{
    background: #fafafa;
    justify-content: space-between;
    padding: 10px 20px;
}
.cart_head .cartheading{
    font-size: 18px;
    font-family: 'LatoSemibold';
    color: #000;
}
.cart_head .countdown .time{
    justify-content: flex-end;
    width: auto;
    background: #fff;
    font-family: 'LatoSemibold';
    font-size: 12px;
    padding: 6px 10px;
}
.cart_head .countdown .time > span{
    margin-right: 6px;
}
.cart_head .countdown .time > img{
    width: 18px;
}
.cart_list ul .cartlistItem{
    padding: 20px;
}
.cart_list ul .cartlistItem .listHead{
    justify-content: space-between;
    margin-bottom: 25px;
}
.cart_list ul .cartlistItem .listHead h4{
    font-family: 'LatoSemibold';
    font-size: 18px;
}
.cart_list ul .cartlistItem .cartMeeting .meetingIamge{
    width: 170px;
    height: 130px;
    margin-right: 20px;
}
.cart_list ul .cartlistItem .cartMeeting .meetingIamge > img{
    width:100%;
    object-fit:cover;
}
.cart_list ul .cartlistItem .cartMeeting .meetingDetails{
    width: calc(100% - 190px);
}
.cart_list ul .cartlistItem .cartMeeting .meetingDetails h5{
    font-size: 18px;
    font-family: 'LatoSemibold';
    margin-bottom: 20px;
}
.cart_list ul .cartlistItem .cartMeeting .meetingDetails .meetingAdditional > div{
    width: calc(100% / 3);
    font-size: 16px;
    font-family: 'Lato-Regular';
    margin-bottom: 10px;
}
.meetingAdditional > div > span.label{
    padding: 0;
    color: #727272;
    font-size: 16px;
    font-weight: 400;
}
.cart_list ul .cartlistItem .cartMeeting .meetingDetails .numbers > img{
    width: 22px;
    margin-right: 10px;
}
.cart_list ul .cartlistItem .cartMeeting .meetingDetails .numbers > select{
    padding: 5px 10px;
    width: 100px;
    border: 1px solid #ccc;
    outline: none;
}
.cart_list ul .cartlistItem hr{
    width: 80%;
    margin-bottom: 0;
    margin-top: 40px;
    border-top: 1px solid #e8e8e8;
}
.cartPrice{
    margin-top: 20px;
}
.cartPrice .price_head h5{
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'LatoSemibold';
    background: #fafafa;
}
.cartPrice .price_list .priceItem{
    padding: 15px 20px;
    justify-content: space-between;
    font-size: 16px;
    font-family: 'Lato-Regular';
}
.cartPrice .price_list .priceItem p{
    padding: 0;
    color: #727272;
    font-size: 16px;
    font-weight: 400;
}
.payButton{
    text-align: center;
}
.payButton .button1{
    background: #e3961b;
    border: none;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    margin-bottom: 30px;
}
/*Cart made By Deepak*/

/*Wishlist Page By Deepak*/
.wishlist_block{
    padding: 20px 20px 0 20px;
}
.wishlist_block hr{
    width: 80%;
    margin-top: 30px;
    margin-bottom: 0;
}
.wishlist_block .block_head{
    justify-content: space-between;
    margin-bottom: 20px;
}
.wishlist_block .block_head h4{
    font-size: 18px;
    font-family: 'LatoSemibold';
    text-transform: capitalize;
}
.wishlist_block .block_content{
    align-items: flex-start;
}
.block_content .block_img{
    width: 170px;
    height: 170px;
}
.block_content .block_img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block_content .block_text{
    width: calc(100% - 340px);
    padding: 0 20px;
}
a.viewMap{
    display: inline-block;
    padding: 5px 20px;
    line-height: 1;
    border: 1px solid #e9e9e9;
    color: #e39618;
    border-radius: 30px;
    margin-bottom: 20px;
}
a.viewMap > i{
    vertical-align: middle;
    margin-right: 6px;
}
.wishdesc > img{
    width: 20px;
    margin-right: 5px;
}
.block_text .aminities_icons{
    margin-top:20px;
}
.block_price{
    width: 170px;
    align-self: flex-end;
    text-align: center;
}
.block_price h4{
    font-size: 18px;
    font-family: 'Lato-Bold';
}
.block_price p{
    font-size: 9px;
}
.block_price > a{
    padding: 10px 30px;
    display: inline-block;
    margin-bottom: 20px;
    background: #e39618;
    color: #fff;
    border-radius: 30px;
}
/*Wishlist Page By Deepak*/
.also_like_list .owl-prev, .also_like_list .owl-next{
	font-size: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -70px;
    background: #e3961b;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 0px 0px 5px 0px hsl(37deg 79% 50% / 40%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.also_like_list .owl-next{
	left:auto;
	right:-70px;
}
.also_like_list .owl-next::after, .also_like_list .owl-prev::after{
	content: "\f105";
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 20px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
	color: #fff;
}
.also_like_list .owl-prev::after{
	    transform: rotateY(180deg);
}
.home_carousel_banner{
	position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: -1;
}
.home_carousel_banner .item{
	height: 450px;
}
.home_carousel_banner .item > img{
	width:100%;
	height:450px;
	object-fit: cover;
}
/*Gallery Pop Up Page By deepak*/
.lcl_fade_oc.lcl_pre_show #lcl_overlay,
.lcl_fade_oc.lcl_pre_show #lcl_window,
.lcl_fade_oc.lcl_is_closing #lcl_overlay,
.lcl_fade_oc.lcl_is_closing #lcl_window {
	opacity: 0 !important;
}
.lcl_fade_oc.lcl_is_closing #lcl_overlay {
	-webkit-transition-delay: .15s !important; 
	transition-delay: .15s !important;
}
#lcl_overlay {
    opacity: 0.9;
}
/*Gallery Pop Up Page By deepak*/
/*Contact Us Page by Deepak*/
.inner_banner.contact_us{
    height: 300px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-image:url('../../images/contact_us/contact_banner.jpg');
    background-size: cover;
    background-position: center;
}
.contact_type{
    background-image:url('../../images/contact_us/csBackground.png');
    background-size: cover;
    background-position: center;
	padding-bottom: 50px;
}
.contact_main{
    width: 100%;
    padding: 25px 50px 0;
    justify-content: space-evenly;
    align-items: stretch;
}
.contact_block{
    background: #fff;
    padding: 70px 20px 30px 20px;
    box-shadow: 0px 3px 8px 0px rgb(0 0 0 / 13%);
    position: relative;
    text-align: center;
    width: 250px;
    border-radius: 6px;
}
.contact_block h4{
    font-size: 20px;
    font-family: 'LatoSemibold';
}
.contact_block p{
    margin: 15px 0 25px;
    font-family: 'LatoSemibold';
    color: #000;
    font-size: 18px;
}
.button_list{
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 10px 10px;
    border: 1px solid #e3961b;
    background: #e3961b;
    color: #fff;
    border-radius: 30px;
    width: 80%;
}
.button_demo{
    display: block;
    margin: 0 auto;
    width: 80%;
    padding: 10px;
    border: 1px solid #717e5f;
    background: #fff;
    border-radius: 30px;
}
.contact_block .contact_icon{
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #fff9f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 8px 0px rgb(0 0 0 / 13%);
}
.main_form_body.flex{
    align-items:flex-start;
    justify-content: space-between;
}
.form_desc{
    width: 300px;
}
.main_form_body .form_body{
    width: calc(100% - 350px);
    background: #fff4e8;
    padding: 20px;
    box-shadow: 0px 3px 8px 0px rgb(0 0 0 / 13%);
}
.form_desc .desc_main h2{
    font-size: 32px;
    font-family: 'Lato-Bold';
    margin-bottom: 20px;
}
.form_desc .desc_main p{
    line-height: 1.5;
    margin-bottom: 50px;
}
.desc_sub .email_info, .desc_sub .stay{
    margin-bottom: 15px;
}
.desc_sub p{
    font-size: 18px;
    font-family: 'LatoSemibold';
    color: #000;
}
.email_info img{
    margin-right: 10px;
}
.desc_sub .stay ul{
    margin-left: 10px;
}
.desc_sub .stay ul li{
    margin-right: 10px;
}
.desc_sub .stay ul li a i{
    color: #f1a619;
}
.contact_form_body .form_head{
    text-align: center;
    margin-bottom: 30px;
}
.contact_form_body .form_head h5{
    font-size: 18px;
    font-family: 'LatoSemibold';
}
.contact_form_body .form_sec{
    align-items: flex-start;
    justify-content: space-between;
}
.contact_form_body .form_sec .form_block{
    width: 49%;
    margin-bottom: 15px;
}
.contact_form_body .form_sec .form_block.form-100{
    width: 100%;
}
.contact_form_body .form_sec .form_block > label{
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-family: 'LatoSemibold';
    margin-bottom: 6px;
}
.contact_form_body .form_sec .form_block > input, .contact_form_body .form_sec .form_block > textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Lato-Regular';
}
.form_btn{
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.form_btn > button{
    padding: 8px 30px;
    width: 200px;
    border: none;
    background: #e3961b;
    color: #fff;
    border-radius: 6px;
}
/*Contact Us Page by Deepak*/
/*Contact Support Page by Deepak*/
.inner_banner.contact_us.contactSupport{
    height: 100px;
    padding: 0;
    background: #000;
}
.main_form_body.flex.contact_support_form_body{
    justify-content: center;
}
.form_desc.contact_support_form_desc{
    margin: 50px auto 0;
}
.contact_support_form_desc .desc_sub .email_info, .desc_sub .stay {
    justify-content: start;
}
section.contactSupportGetInTouch{
    padding-bottom:0
}
/*Contact Support Page by Deepak*/
/*Vendor Registation modal by Deepak*/
.modal-vendorRegistraion .modal-header{
    border-bottom: none;
}
.modal-vendorRegistraion .modal-header h5{
    font-size: 18px;
    font-family: 'LatoSemibold';
    font-weight: normal;
}
.modal-vendorRegistraion .modal-header .close{
    margin-top: 6px;
}
.modal-vendorRegistraion .modal-footer{
    border-top:none;
    text-align: center;
    margin-bottom: 10px;
}
.modal-vendorRegistraion .modal-footer .vendorSubmit{
    border: none;
    padding: 10px 40px;
    width: 200px;
    background: #e3961b;
    color: #fff;
    border-radius: 5px;
}
.vendor_form{
    padding: 20px 20px 0 20px;
}
.vendorFormBlock{
    margin-bottom: 25px;
}
.vendorFormBlock.mb-0{
    margin-bottom: 0px;
}
.vendorFormBlock label{
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: #000;
    font-family: 'LatoSemibold';
    margin-bottom: 8px;
}
.vendorFormBlock input, .vendorFormBlock textarea{
    padding: 15px 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Lato-Regular';
    outline: none;
}
/*Vendor Registation modal by Deepak*/

.booking_filter select{
	margin-left:10px;
    border: none;
    outline: none;
    padding: 5px 10px;
    width: 100px;
    font-family: 'Lato-Regular';
	box-shadow:0px 3px 8px 0px rgb(0 0 0 / 13%);
}
.bookingsBlock .block_content .block_img{
	width: 100px;
    height: 100px;
}
.block_text .bookingSub{
	width: 50%;
	margin: 6px 0;
}
.bookingSub > p{
	font-family: 'LatoSemibold';
    color: #000;
}
.bookingSub > p > label{
	color: #727272;
    font-weight: 400;
}
.bookingsBlock .block_price > a{
	padding:10px 10px;
	font-size: 14px;
    width: 100%;
	margin-bottom:0
}
.bookingsBlock .block_price p {
    font-size: 16px;
}
.bookingsBlock .block_price p.done{
    color: #e39618;
}

/*Booking Details By Deepak*/
.bookingDetailsCart .cart_head{
	padding: 20px 20px;
}
.bookingDetailsID{
	padding: 0 20px 20px 20px;
}
.bookingDetailsID > p{
	font-size: 18px;
    font-family: 'LatoSemibold';
    color: #000;
}
.cartPrice .price_list .priceItem.total{
	background:#fff4e8;
}
.cartPrice .price_list .priceItem.amountPaid p, .cartPrice .price_list .priceItem.amountPaid span{
	font-size: 17px;
    color: #000;
    font-family: 'LatoSemibold';
}
.cart_list ul .cartlistItem .listHead a.cancelbtn{
	display: inline-block;
    width: 110px;
    border: 1px solid #000;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
	position:relative;
	font-family: 'LatoSemibold';
}
.cart_list ul .cartlistItem .listHead a.cancelbtn::after{
	content:"";
/* 	background-image:url('../images/cross.png'); */
	width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-size: 100% auto;
    background-repeat: NO-REPEAT;
}
.bookingDetailsCart .cart_list ul .cartlistItem:last-child hr {
    display:none
}
/*Booking Details By Deepak*/
/*Register Modal changes*/
.checkInput{
	font-family: 'Lato-Regular';
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-10px);
}
.checkInput input[type="radio"]{
	margin: 0 5px 0 10px;
}
.add-plus > button{
	border: none;
    width: 34px;
    height: 34px;
    background: #e39618;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    line-height: 0;
    font-family: 'Lato-Bold';
}
.add-plus > input{
	width: calc(100% - 90px);
    padding: 0;
    margin: 0 5px;
    border: 2px solid #e39618;
    background: #fff;
    height: 34px;
    text-align: center;
    border-radius: 30px;
    font-family: 'Lato-Regular';
    font-size: 15px;
}
/*Register Modal changes*/