/*
Theme Name: Langtrees of Canberra
Theme URI: http://www.langtreesofcanberra.com.au
Author: Ian Scott
Description: Custom unique theme development for Langtrees of Canberra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: high-class-gentlemens-club
Tags:



Langtrees of Canberra is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;

}


html, html a {

    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}


body {

	margin: 0;

}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: 500;
        color: #707b89;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 1.7em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #656e7b;
	font-family: Lato,Helvetica,Arial,sans-serif;
	font-size: 0.95rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 500;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
/*	border-color: #aaa #bbb #bbb; */
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #c30210;
}

a:visited {
	color: #c30210;
}

a:hover,
a:focus,
a:active {
	color: #c30210;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/


.main-navigation {

}

.main-navigation ul {
	display: inline-block;
	list-style: none;
	margin: 3px 15px 0px 0px;
	padding-left: 0;
}

.main-navigation li {

	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
.posts-navigation .nav-links a {
  background-color: #000;
	color: #fff;
	padding: 10px;

}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 0;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
html {
   font-size: 1.1em !important;
}
.header_bg {

background-repeat: no-repeat;
background-position: top right;
display: block;
}
.top_header {

   height: 25px;
}
.logo {
   position: relative;
   float: left;
}
.logo img {
   width: 100%;
}
.nav_bg {
   background-color: #35a904;
   border-top: 1px solid #237401;
}
.main-navigation li {
   display: block;
}
.main-navigation li a {
   font-size: 1em;
   color: #f6e9da;
   padding: 2px 10px;
   font-weight: 400;
}
.main-navigation li:hover {
   background-color: #000;
}
.main-navigation ul {

}
.main-navigation {
   float: right;
}
.header_bottom {

   height: 6px;
}
.header_ma img {
   float: left;
}
.slider {
   background-image: url('assets/images/waterbg.jpg');
   width: 100%;
   overflow: hidden;

}
.darwin_girl img {
   max-height: 380px;
   float: left;
}
.welcome_text {
   float: right;
   width: 450px;
   margin-top: 100px;
   margin-right: 180px;
}
.welcome_slogan {
   width: 500px;
   font-size: 13px;
   color: #fff;
   float: right;
   letter-spacing: 8px;
   margin-right: 106px;
}
.ladies_button {
   background-color: #e10121;
   color: #fff;
   text-align: center;
   border-radius: 3px;
}
.front_hdg {
   text-align: center;
   color: #000;
   margin: 0px;
   padding: 10px;
	 width: 100%;
}
.news_hdg {
   text-align: center;
   color: #eed9c2;
   margin: 0px;
   padding: 10px;
}
.front_hdg_left {
   color: #000;
   margin: 20px 0px;
}
.hdg_bold {
   font-weight: 500;

}
.big_slogan {
   font-size: 20px;
   font-style: italic;
   text-align: center;
   padding: 5px;
}
.big_slogan1 {
   background-color: #fafafa;
}
.bold {
   font-weight: 600;
   color: #000;
}
.green_bold {
   font-weight: 600;
   color: #128d01;
}
p {
   font-size: 1em;
   font-weight: 300;
   line-height: 1.5;
   color: #656e7b;
   font-family: sans-serif;

}
.thumbnails_promo {
   position: relative;
   margin: 15px 0px 0px;
   overflow: hidden;
   transition: all 0.5s ease-in-out;
   z-index: 9999;
}
.thumbnails_promo:hover {
   box-shadow: 10px 10px 35px #ccc;

}
.thumbnails_promo img {
   transition: all 0.5s ease-in-out;
}
.thumbnails_promo img:hover {

   transition: all 0.5s ease-in-out;
}
.thumbnails {
   position: relative;
   margin: 15px 0px 0px;
   overflow: hidden;
   transition: all 0.5s ease-in-out;
   z-index: 9999;
}
.thumbnails:hover {


}
.thumbnails img {
   transition: all 0.5s ease-in-out;
}
.thumbnails img:hover {
   transform: scale(1.2);
   transition: all 0.5s ease-in-out;
}
.filterDiv:hover .escort_location_mitchell {
   background-color: red;
	 color: #fff;
	 font-weight: bold;
	 transition: all 0.5s ease-in-out;
}
.filterDiv:hover .escort_location_fyshwick {
   background-color: #000;
	 color: #fff;
	 font-weight: bold;
	 transition: all 0.5s ease-in-out;
}
.profile_name {
	background-color: #fff;
	width: 100%;
	text-align: center;
	color: #986c41;
	padding: 3px 0px;
	z-index: 99;
	font-size: 0.95em;
	text-decoration: none !important;
}
.profile_name a {
	text-decoration: none !important;
}
.loc_bg {
   background-color: #f1f1f1;
}
.reviews_bg {
   background-color: #f5f5f5;
	 padding: 40px 0px;
}
.news_bg {
   background-color: #fff;
   box-shadow: 0px 0px 14px #ccc;
}

.footer_bg {

}
.review_box {
	background-color: #fff;
	border-radius: 3px;
	width: 100%;
	margin: 0px 0px 20px;
	padding: 10px;
	box-shadow: 0px 0px 35px #eee;
}
.review_box2 {
   background-color: #fff;
   border-radius: 3px;
   width: 100%;
   margin: 0px 0px 20px;
   padding: 10px;
}
.review_green_font {
   color: #c30210;
}
.green_large a {

   font-size: 28px;
   font-weight: 700;

}
.green_large2 {
   font-family: 'Fjalla One', sans-serif;
   font-size: 28px;
   font-weight: 700;
}
.green_large2 a {
   font-family: 'Fjalla One', sans-serif;
   font-size: 28px;
   font-weight: 700;
}

.green_large  {

   font-size: 28px;
   font-weight: 700;
}
.green_small {

   font-size: 20px;
}
.header_phone {
   position: absolute;
	 top: 40px;
	 right: 10px;
   color: #ebd8c2;
   font-size: 20px;
   margin: 10px 20px 0px 0px;
   font-weight: 300;
}
.header_phone a {
   color: #000;
}
.header_opentimes {

   font-size: 0.9em;
	 display: inline-block;
	 padding-right: 10px;
	 font-weight: 400;
   margin-left: 10px;
}
.open {
   color: #fff;
   font-weight: 500;
}
.para_wrap {
   background-color: rgba(0,0,0,.4);
}
.para_image {
	min-height: 400px;
	    width: 100%;
	    /* background-attachment: fixed; */
	    background-size: cover;
	    -webkit-background-size: cover;
	    -moz-background-size: cover;
	    -o-background-size: cover;
	    background-repeat: no-repeat;
	    background-position: center center;
	    text-align: center;
	    padding-top: 40px;
}
.para_image_mobile {
   background-size: cover;
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   width: 100%;
   min-height: 400px;
   background-repeat: no-repeat;
   background-position: center center;
}
.parallax {
   background: transparent;
   position: relative;
}
.parallax_mobile {
   background: transparent;
   position: relative;
   display: none;
}
.para_slogan_mobile {
   background: transparent none repeat scroll 0 0;
   color: #fff;
   font-size: 1.5em;
   font-weight: bold;
   opacity: 0.8 !important;
   text-align: center;
   padding-top: 50px;
}
.para_slogan_mobile2 {
   background: transparent none repeat scroll 0 0;
   color: #fff;
   font-size: 3.8em;
   text-align: center;
   opacity: 0.8 !important;
   margin-top: -10px;
}
.para_slogan_mobile3 {
   background: transparent none repeat scroll 0 0;
   color: #fff;
   font-size: 2em;
   font-weight: bold;
   text-align: center;
   opacity: 0.9;
   margin-top: -25px;
}
.para_slogan3 a {
   color: #fff;
}
.para_slogan {
   background: transparent none repeat scroll 0 0;
   color: #fff;
   font-size: 2.4em;
   font-weight: bold;
   opacity: 0.8 !important;
   text-align: center;
   padding-top: 50px;
}
.para_slogan2 {
   background: transparent none repeat scroll 0 0;
   color: #fff;
   font-size: 3.8em;
   text-align: center;
   opacity: 0.8 !important;
   margin-top: -10px;
}
.para_slogan3 {
	background-color: red;
	color: #fff;
	font-size: 2.5em;
	opacity: 0.9;
	padding: 2px 40px;
	font-family: 'Fjalla One', sans-serif;
	border-radius: 25px;
}
.para_slogan3 a {
   color: #fff;
   padding: 0px 20px;
   font-family: 'Fjalla One', sans-serif;
}
.parallax_heading {
	display: block;
	font-size: 2.2em;
	font-weight: 600;
	color: #000;
}
.parallax_p {
	display: block;
	font-size: 1.2em;
	font-weight: 400;
	color: #000;
	margin-bottom: 10px;

}
.red_font {
	color: #e7000c;
}

.parallax_p_lge {
	display: block;
	font-size: 1.4em;
	font-weight: 600;
	color: #000;
	/* margin-bottom: 10px; */
}
.parallax_group {
   -webkit-transform-style: preserve-3d;
   transform-style: preserve-3d;
}
.back {
   -webkit-transform: translateZ(-1px) scale(2);
   transform: translateZ(-1px) scale(2);
   position: relative;
   top: calc(((100vh - 0.4414893617vw) / 4) * -2);
}
.front {
   position: relative;
   z-index: 2;
   padding: 14em 1em;
   text-align: center;
}
.front h2 {
   position: absolute;
   top: 10em;
   width: 100%;
   text-align: center;
}
.pad_top_bot {
   padding: 20px 0px;
}
.pad_top_bot50 {
   padding: 20px 0px 50px;
}
.pad_bot {
   padding: 20px 0px 0px;
}
.pad_bot20 {
   padding-bottom: 20px;
}
.marg_bot50 {
   margin-bottom: 50px;
}
.pad_bot50 {
   padding-bottom: 50px;
}
.latest_posts_thumb {

}
h2.entry-title {
   font-size: 1.2rem;
   text-align: center;

}
footer h4 {
	color: #eed9c2;
	margin: 30px 0px;
	font-weight: 400;
	font-size: 1.2em;
}
.mob_girl {
   display: none;
}
aside ul {
   list-style: none;
   margin-left: 0px;
   padding-left: 0px;
}
aside ul li {
   border-bottom: 1px solid #ccc;
   padding: 4px 0px;
}
aside ul li a, aside ul li a:active, aside ul li a:visited {
   color: #666;
}
aside ul li a:hover {
   color: #000;
}

.read-more-button {
	background-color: red;
color: #fff;
padding: 3px 50px;
text-align: center;
cursor: pointer;
font-size: 1em;
font-weight: 400;
display: block;
margin: 20px auto;
border-radius: 15px;
width: 200px;
}
.read-more-button a {

color: #fff;

}
article {
	clear:both;
	padding-bottom: 50px;
	padding-top: 40px;
}
.sing article {

	background-color: #f5f5f5 !important;
}
article:nth-child(even){
	direction: rtl;
	background-color: #f5f5f5;
}
article:nth-child(odd){

	background-color: #fafafa;
}
h3.home_articles {
   font-size: 1rem;
   margin-top: 10px;
   text-align: center;
	 color: #000;
}
ul.footer_links {
   list-style: none;
   padding-left: 0px;
   margin-left: 0px;
}
ul.footer_links li {
   color: #eed9c2;
}
i.fa {
   font-size: 1.8em;
   padding: 5px;
   background-color: #fc2745;
   color: #f396a3;
   border-radius: 50%;
   width: 40px;
   margin: 4px;
}
i.fa:hover {
   background-color: #e90828;
   color: #fff;
}
ul.footer_links li a {
   color: #eed9c2;
	 font-size: 0.8em;
	 	font-weight: 300;
}

ul.footer_icons {
   list-style: none;
   padding-left: 0px;
   margin-left: 0px;
}
ul.footer_icons li {
   color: #fff;
   display: inline;
}
ul.footer_icons li a {
   color: #fff;
}
#rememberme {
    margin-right: 10px;
}
#loginform .login-remember {
    font-size: 0.8em;
}
p.notify {
   color: #eed9c2;
   font-size: 1.1rem;
   text-align: center;
}
.footer_phone {
	color: #eed9c2;
	font-size: 1.4em;
	display: block;
}
.footer_phone a {
	color: #eed9c2;
}
.footer_text {
	color: #eed9c2;
	display: block;
	font-size: 0.8em;
	font-weight: 300;
}
.footer_text_hdg {
	font-size: 1.1em;
	font-weight: 400;
	color: #eed9c2;
}
.loc_footer {
	padding: 0px;
}
.mobile_num {
   display: none;
}
.black_font {
   color: #000;
}
.copyright {
   color: #eed9c2;
   font-size: 0.7em;
	 padding: 10px;
}
.site_logo {
   float: left;
   max-height: 40px;
}
.widget-area {
   margin-top: 20px;
}
.notify input[type=name] {
	display: inline-block;
	width: 200px;
	margin: 0px 0px 5px;
	border: 0px;
	font-size: 1.1em;
	padding: 5px 10px;
}
.notify input[type=email] {
	display: inline-block;
	width: 300px;
	margin: 0px 0px 5px;
	border: 0px;
	border-radius: 0px;
	padding: 5px 10px;
	font-size: 1.1em;
}
.notify input[type=submit] {
	border: none;
	color: #fff;
	font-size: 1.1em;
	margin-top: 4px;
	display: inline-block;
	background-color: red;
	font-weight: 500;
	border-radius: 0px;
	padding: 10px 10px;
}


.notifyButtonGreen input[type=submit] {
   background-color: #3c8302;
}
.notifyButtonRed input[type=submit] {
   background-color: #3c8302;

}
.notifyButtonBlue input[type=submit] {
   background-color: #3c8302;

}
.notify label {
   display: none;
}
.notify .mc4wp-success p {
   color: #fff;
}
.notify .mc4wp-notice p {
   color: #fff;
}
.marginb20 {
   margin-bottom: 20px;
}
.copyright_bg {

   text-align: center;
}
.clients_saying {
   font-size: 1.1em;
   font-style: italic;
   text-align: center;
   margin-top: 10px;
	 color: #000;
}
.table th {
   color: #128d01 !important;
}
.turn_off {
   display: none !important;
}
.working {
   display: none;
}
.working_now {
   display: block;
   position: absolute;
   width: 100%;
   text-align: center;
   background-color: rgba(66,189,3,.8);
   color: #fff;
   z-index: 99;
   bottom: 30px;
}
.working_now_roster {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #fff;
    z-index: 99;
    border-radius: 50%;
    margin: 0px 0px 0px 10px;
}
.working_now_single {
	display: block;
	position: absolute;
	width: 35px;
	height: 35px;
	text-align: center;
	/* background-color: rgba(66,189,3,.8); */
	color: #fff;
	z-index: 99;
	border-radius: 50%;
	bottom: 42px;
	right: 20px;
}

.working_now_home {
	display: block;
	position: absolute;
	width: 35px;
	height: 35px;
	text-align: center;
	/* background-color: rgba(66,189,3,.8); */
	color: #fff;
	z-index: 9;
	border-radius: 50%;
	bottom: 20px;
	right: 20px;
}
.working_now_single_page {
	display: inline-block;
	text-align: center;
	background-color: #fcfcfc;
	color: green;
	padding: 0px 30px;
	margin: 10px 0px 15px;
	width: 250px;
	box-shadow: 0px 0px 10px #eee;

}
.working_now_single_page img {
  width: 50px;
	padding-bottom: 4px;
}
.new_escort {
   position: absolute;
   left: 10px;
   bottom: 10px;
   background-color: red;
   color: #fff;
   z-index: 99;
   text-align: center;
   padding: 3px 6px;
}
.video_escort {
    position: absolute;
    right: 5px;
    bottom: 8px;
    background-color: orange;
    color: #fff;
    z-index: 99;
    text-align: center;
    padding: 3px 6px;
    font-weight: 400;
    font-size: 0.9em;
	}
.escort_location {
	font-size: 13px;
	margin: 5px 0px;
	display: block;
}
.escort_location_fyshwick {
	background-color: #eee;
  border-radius: 10px;
  padding: 0px 15px;
	display: inline-block;

}


.escort_location_mitchell {
	background-color: #eee;
  border-radius: 10px;
  padding: 0px 15px;
	display: inline-block;

}
.escort_location_fyshwickk {
	background-color: #000;
  border-radius: 10px;
  padding: 0px 15px;
	display: inline-block;
	color: #fff;
	font-weight: bold;
}


.escort_location_mitchelll {
	background-color: red;
  border-radius: 10px;
  padding: 0px 15px;
	display: inline-block;
	color: #fff;
	font-weight: bold;
}
.thumbs_desc {
	font-size: 12px;
	height: 22px;
}
.thumbs_desc_promo {
	font-size: 13px;
	height: 22px;
	   display: inline-block;
    padding: 2px 20px;
    border-radius: 5px;
	   transition: all 0.2s ease-in-out;
}
.filterDiv:hover .thumbs_desc_promo {
    color: #fff;
    background-color: red;
    font-weight: bold;
}
.spacer {
   margin-bottom: 50px;
   display: block;
   width: 100%;
   clear: both;
}
.image_cont {
   overflow: hidden;
}
.image_cont_about {
   overflow: hidden;
   margin-bottom: 10px;
}
.aboutus_image img {
   transition: all 0.5s ease-in-out;
}
.aboutus_image img:hover {
   transform: scale(1.2);
   transition: all 0.5s ease-in-out;
}
.latest_post_cont {
   overflow: hidden;
}
.latest_posts_thumb {
   transition: all 0.5s ease-in-out;
}
.latest_posts_thumb:hover {
   transform: scale(1.2);
   transition: all 0.5s ease-in-out;
}
.featured_image_cont {
	overflow: hidden;
	position: relative;
	margin-bottom: 15px;
	max-height: 450px;
}
.featured_image_cont img {
   transition: all 0.5s ease-in-out;
   width: 100%;

}
.featured_image_cont img:hover {
   transform: scale(1.2);
   transition: all 0.5s ease-in-out;

}
.blog_content {
   margin: 0px 0px 0px;
   padding: 10px;
   min-height: 200px;
}
.blog_content h2 {
   font-size: 1.5em;
   padding-bottom: 8px;
   color: #434343;
   line-height: 30px;
}

.blog_content p {
   font-size: 1em;
   line-height: 1.5em;
}
.blog_content2 {
	float: left;
	width: 50%;
	padding-left: 20px;
}
.line {
   border-bottom: 1px solid #ccc;
}
.pad_20 {
   padding: 20px 0px;
}
.entry-meta, .entry-header {
   text-align: center;
}
.review_by {
	text-align: left;
	font-size: 0.9em;
  position: relative;
	padding-left: 20px;

}
.review_bubbles {
	position: absolute;
	left: -70px;
	bottom: 40px;
	width: 120px;
	display: block;
}
.green {
   color: #469c01;
}
.greenFont {
   color: #128d01;
}
.redFont {
   color: #e7000c;
}
.blueFont {
   color: #0250c3;
}
.semiBold {
   font-weight: 500;
}
.blackFont {
   color: #000;
}
.bigBold {
   font-weight: 600;
}
.black {
   color: #000;
}
.the_review {
   text-align: center;
   padding: 10px;
}
.the_review p  {
   font-size: 0.7em !important;
}
.newsFont p {
	font-size: 1em;
}
svg.mask {
   position: absolute;
   bottom: 0px;
   width: 100%;
}
.bottom, .left, .right, .top {
    stroke: #fff;
    fill: #fff;
}
.rel {
    position: relative;
}
.updated_news {
    text-align: center;
    padding: 2px 5px;
}
.new_update {
    background-color: red;
    color: #fff;
    font-size: 0.8em;
    padding: 3px 10px;
    display: inline-block;
}
.comments p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3em;
}
.answer {
   border-bottom: 1px dashed #ccc;
}
.faq {

   max-width: 800px;
   margin: 10px auto;
   padding: 20px;
   border-radius: 10px;
}
.faq:nth-child(even){
   background-color: #fff;
}

.faq:nth-child(odd){

   background-color: #fff;
}
.question {
   color: #666;
   font-weight: 500;
   font-size: 1.1em;
   margin: 5px 0px;
}
.answer p {
   font-weight: 300;
}
.abbr_letter{
   text-align: center;
   border-bottom: 1px solid #ccc;
   margin-bottom: 10px;
}
.content_bg {
	background-color: #f5f5f5;
	padding: 30px 0px;
}

.abbr {
   color: #c30210;
   font-weight: 500;
   font-size: 1.5em;
   margin: 0px;
}
.meaning p {
   font-weight: 300;
}
.letter {
   font-size: 1.5em;
   font-weight: 300;
   background-color: #e10121;
   color: #fff;
   padding: 2px 10px;
   width: 40px;
   display: inline-block;
}
.thumbs_cont {
   position: relative;
}



.fineFont {
   font-weight: 300;
}
.showslide {
    display: block;
}
.our_ladies {
    text-align: center;
    display: block;
    font-size: 1.4em;
}

/*--------------------------------------------------------------
## Chillout Theme Colours
--------------------------------------------------------------*/


.darkGreen {
   background-color: #2c9201;
}
.headerGreen {
   background-color: #35a904;
}
.navGreen {
   background-color: #35a904;
   border-top: 1px solid #237401;
}
.bottomHeaderGreen {
   background-color: #147601;
}
.notificationGreen {
   background-color: #66be42;
}
.notificationButtonGreen {
   background-color: #3c8302;
}
.footerGreen {
   background-color: #2c9201;
}
.bottomFooterGreen {
   background-color: #1f6601;
}
.notifyButtonGreen {
   background-color: #3c8302;
   border: none;
}

.darkRed {
   background-color: #ac0019;
}
.headerRed {
   background-color: #eee;
}
.navRed {
   background-color: #fafafa;

}
.bottomHeaderRed {
   background-color: #9a0116;
}
.notificationBlack {
   background-color: #2a2a2a;
}
.notificationButtonRed {
   background-color: #a4051c;
}
.footerBlack {
   background-color: #181818;
}
.bottomFooterBlack {
   background-color: #252525;
}
.notifyButtonRed {

   border: none;
}


.darkBlue {
   background-color: #013fb6;
}
.headerBlue {
   background-color: #0558f6;
}
.navBlue {
   background-color: #0558f6;
   border-top: 1px solid #000;
}
.bottomHeaderBlue {
   background-color: #0044c6;
}
.notificationBlue {
   background-color: #3574ec;
}
.notificationButtonBlue {
   background-color: #0044c6;
   border: none;
}
.footerBlue {
   background-color: #0332a3;
}
.bottomFooterBlue {
   background-color: #013fb6;
}
.notifyButtonBlue {

   border: none;
}
.view_more_ladies {
   background-color: red;
   color: #fff;
   padding: 3px 50px;
   text-align: center;
   cursor: pointer;
   font-size: 1em;
   font-weight: 400;
	 display: inline-block;
	 margin: 30px;
	 border-radius: 15px;
}
.view_more_ladies:hover {
   background-color: #c10412;

}
.text-center {
   text-align: center;
}
.price_table {
   width: 800px;
   margin: 0px auto;
   font-size: 1.2em;
}
.price_table th {
   width: 170px;
   background-color: #444;
   color: #fff !important;
   text-align: center;
   padding: 4px;
   font-weight: 400;
   font-size: 1em;
   border-bottom: none !important;
}
.price_table tbody tr:nth-child(odd) {
   background-color: #fff;
   color: #000;
}
.price_table tbody tr:nth-child(even) {
   background-color: #eee;
   color: #000;
}
.price_table tbody td {
   border-top: none !important;
}

.roster_table {
   width: 100%;
   margin: 0px auto;
   font-size: 1.2em;

}
.roster_table th {

   background-color: #444;
   color: #fff !important;
   text-align: center;
   padding: 2px;
   font-weight: 300;
   font-size: 0.8em;
   border-bottom: none !important;


}
.roster_table tbody tr:nth-child(odd) {
   background-color: #fff;
   color: #000;
	 border-bottom: 1px solid #eee;
}
.roster_table tbody tr a {

   color: #666;
}
.roster_table tbody tr:hover a {

   color: red;
}
.roster_table tbody tr:nth-child(even) {
   background-color: #fff;
   color: #000;
	 border-bottom: 1px solid #eee;
}
.roster_table tbody td {
   border-top: none !important;
   padding: 5px 15px;
   font-size: 0.7em;
   border-right: 1px solid #eee;
}
.roster_table tbody td:last-child {

   border-right: 0px;
}

.roster_table tbody tr:hover {
   background-color: #eee;
}

.escorts_table {
   width: 100%;
   margin: 25px auto;
   font-size: 1.2em;

}
.escorts_table th {
   width: 170px;
   background-color: #444;
   color: #fff !important;
   text-align: center;
   padding: 2px;
   font-weight: 300;
   font-size: 0.8em;
   border-bottom: none !important;


}
.escorts_table tbody tr:nth-child(odd) {
   background-color: #fff;
   color: #000;
}
.escorts_table tbody tr:nth-child(even) {
   background-color: #eee;
   color: #000;
}
.escorts_table tbody td {
   border-top: none !important;
   padding: 5px 15px;
   font-size: 0.7em;
   border-right: 1px solid #fae3e5;
}
.escorts_table tbody td:last-child {

   border-right: 0px;
}

.escorts_table tbody tr:hover {
   background-color: #fae3e5;
}

.escorts_table_mob {
   width: 310px;
   margin: 25px auto;
   font-size: 1.2em;
   text-align: center;
}
.escorts_table_mob th {
   width: 170px;
   background-color: #444;
   color: #fff !important;
   text-align: center;
   padding: 2px;
   font-weight: 400;
   font-size: 1em;
   border-bottom: none !important;


}
.escorts_table_mob tbody tr:nth-child(odd) {
   background-color: #fff;
   color: #000;
}
.escorts_table_mob tbody tr:nth-child(even) {
   background-color: #eee;
   color: #000;
}
.escorts_table_mob tbody td {
   border-top: none !important;
   padding: 5px 15px;
   font-size: 0.9em;

}
.escorts_table_mob tbody td:last-child {

   border-right: 0px;
}

.escorts_table_mob tbody tr:hover {
   background-color: #eee;
}
.sched_name {
   background-color: #e9757d;
   color: #fff;
}
.sched_name a {
   color: #fff;
}

.Lfont {
   font-size: 1.2em;
}
.address_comment p {
   font-size: 1.2em;
}
.contact_details, .hours_details {
   padding: 0px;
   margin: 0px;
   list-style: none;
}
.contact_details li, .hours_details li {
   border-bottom: 1px dashed #ccc;
   padding-top: 8px;
}
.contact_details label, .hours_details label {
   min-width: 150px;
   color: #000;
}
.location_details {
   padding: 0px;
   margin: 0px;
   list-style: none;
}
.location_details li  {
   border-bottom: 1px dashed #ccc;
   padding-top: 8px;
	 font-weight: 300;
}
.location_details label {
   min-width: 130px;
   color: #000;
}
.contact_h3, .map {
   padding: 15px 0px;
   color: #c30210;
}
.call {
   font-size: 0.8em;
   font-family: 'Fjalla One', sans-serif;
}
.phone_bold {
   font-weight: 400;
   color: #f6e9da;
   font-size: 1.4em;
   font-family: 'Fjalla One', sans-serif;
}
.phone_bold a {
   color: #f6e9da;

}
h2.widget-title, h1.page-title, h1.entry-title {
   color: #000;
}
h2.widget-title {
   font-size: 1.2em;
}
h2 {
	font-size: 1.6em;
}
h3 {
	font-size: 1.5em;
}
h1.entry-title {
   font-size: 1.5em;
}
.map {
   width: 100%;
   border: 0px;
   margin-top: 30px;
}
a.contact_map {
    color: #eed9c2;
}
.escort_info {

   min-height: 150px;
   padding: 0px;
   position: relative;
}
.escort_info ul {
   list-style: none;
   padding: 0px;
   margin: 2px;
}

.escort_info h2 {
   background-color: #444;
   color: #fff;
   text-align: center;
   font-size: 1.1em;
   padding: 10px;
}
.escort_info ul li {
   border-bottom: 1px dashed #ccc;
   font-size: 1em;
   color: #000;
   padding: 3px 10px;
   font-weight: 300;
}
.escort_info ul li:nth-child(odd) {
   background-color: #fff;
}
.escort_info ul li:nth-child(even) {
   background-color: #fcfcfc;
}

.escort_info ul li label{
   min-width: 160px;
   margin-bottom: 0px;
   font-weight: 500;
}
.main_escort_image {
   padding: 0px;
   position: relative;
   max-height: 440px;
}
.my_photos {
   text-align: center;
}

.my_photos img {
   text-align: center;
   margin: 5px;
}
.escort_working {
   width: 220px;
   padding: 3px;
   font-size: 1.2em;
   background-color: rgba(66,189,3,.8);
   color: #fff;
   text-align: center;
   margin: 0px auto 6px;

}
.new_escort3 {
   background-color: red;
   color: #fff;
   z-index: 99;
   text-align: center;
   padding: 3px 14px;
   position: absolute;
   top: -15px;
   left: -45px;
}
.avail {
   text-align: center;
}
.escort_img {
   position: relative;
   overflow: hidden;
   transition: all 0.5s ease-in-out;

}
.escort_img:hover {


}
.escort_img img {
   transition: all 0.5s ease-in-out;
}
.escort_img img:hover {
   transform: scale(1.2);
   transition: all 0.5s ease-in-out;
}
.serv {
   background-color: #666;
   border-radius: 4px;
   padding: 4px 10px;
   text-align: center;
   margin: 3px;
   float: left;
   transition: all 0.5s ease-in-out;
   color: #fff;
   font-weight: 300;
	font-size: 0.9em;
}
.serv:hover {
   background-color: #f92241;
   color: #fff;
}
.profile_phone {
   font-size: 1.5em;
   color: #f50404 !important;
   font-weight: 600;
}
.profile_phone a {

   color: #f50404 !important;

}
.profile_phone1 {
   font-size: 1.5em;
   color: #000;

}
.single_landscape {
   max-width: 600px;
   max-height: 350px;
   margin: 15px 0px;
   padding: 0px;
   overflow: hidden;
}
.single_landscape img {
   transition: all 0.5s ease-in-out;
   margin: 0px;
}
.single_landscape img:hover {
   transform: scale(1.2);
   transition: all 0.5s ease-in-out;
}
.single_portrait {
   margin: 15px 0px;
   overflow: hidden;
}
.single_portrait img {
   transition: all 0.5s ease-in-out;
   margin: 0px;
}
.single_portrait img:hover {
   transform: scale(1.2);
   transition: all 0.5s ease-in-out;
}
.entry-content {
   margin-top: 0px;
	 padding-top: 20px;
}
.entry-content:nth-child(even) {
   direction: ltr;
}
.entry-content:nth-child(odd) {
   direction: ltr;
}
.upper {
   text-transform: uppercase;
   padding: 0px 10px;
}
.shadow1 {
   transition: all 0.5s ease-in-out;
   border: 1px solid #dedddd;
}
.shadow1:hover {
   box-shadow: 0px 0px 14px #ccc;
   transition: all 0.5s ease-in-out;
}
.date_post {
	/* position: absolute; */
	/* top: 10px; */
	/* left: 0px; */
	background-color: #eee;
	padding: 3px 5px;
	color: #666;
	/* z-index: 999; */
	font-size: 0.8em;
	width: 200px;
	text-align: center;
	margin: 20px auto;
}
.date_post a {
   color: #666;
}
.more-link {

   padding: 2px 8px;
   font-size: 0.8em;
   display: inline-block;
}
.more-link a, .more-link a:hover, .more-link a:active {

}
.clear {
   clear: both;
}
.aboutus_text {
   padding: 20px 15px 0px;
}
.excerpt {
   font-size: 1em;
   font-family: sans-serif;
   line-height: 1.5em;
   font-weight: 300;
	 padding-left: 15px;

}
.view_escorts {

    padding: 3px 40px;
    background-color: #eee;
    text-decoration: none;
    display: inline-block;
    text-align: center;
		border-radius: 15px;
		color: #666;
		font-weight: 500;
		font-size: 0.8em;
    margin-top: 18px;
}
a.view_escorts {

		color: #666 !important;
}
.view_escorts:hover {

    background-color: #000;
    color: #fff !important;
}
.title404 {

    font-weight: bold;
    font-size: 2.4em;
    text-align: center;
}
.not_found {
    text-align: center;
    margin: 0 auto;
    display: block;
    max-width: 700px;
}
.login-username label, .login-password label {
    Color: #fff;
    min-width: 200px;
    display: none;
}
.login_footer .button {
    Color: #fff;
    border: 0px;
    background-color: #fc2745;
    font-size: 1em;
    padding: 5px 15px;
}
#user_login, #user_pass {
    background-color: #333 !important;
    border: none;
}
#wp-submit {
    background-color: red;
    color: #fff;
    border: none;
    font-weight: bold;
}
p.login-remember {
    padding: 0px 20px;
}
.fa-snapchat::before {
    content: "\f2ab";
}
.hs-responsive-embed {

position: relative;
height: 0;
overflow: hidden;
padding-top: 0;
padding-left: 0;
padding-right: 0;

}

.hs-responsive-embed iframe,
.hs-responsive-embed object,
.hs-responsive-embed embed {

position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;

}

.hs-responsive-embed,
.hs-responsive-embed.hs-responsive-embed-youtube,
.hs-responsive-embed.hs-responsive-embed-wistia,
.hs-responsive-embed.hs-responsive-embed-vimeo {

padding-bottom: 56.25%;

}
.vid_pad {
   padding: 0px 150px 50px;

}
.marg_50 {

    margin-bottom: 50px;
}
.marg_50:last-child {

    margin-bottom: 0px;
}
.service_comment {
    font-size: 0.9em;
    padding: 0px 20px;
}
.commets_hdg {
    font-size: 1.4em;
    color: #000;
    font-weight: 500;
    padding: 0px 20px 5px;
}
h1.search_hdg {
    padding: 10px;
    display: block;
    color: #000 !important;
    font-size: 30px;
    margin: 10px 0px;
    border-bottom: 1px solid #ccc;
}
.red_text {
    color: #e7000c;
    font-weight: bold;
}
input#searchsubmit {
	border: none;
	background: #f50404 !important;
	color: #fff;
	font-size: 12px;
	font-size: 0.9em;
	line-height: 1;
	padding: 10px 20px 24px;
	display: inline-block;
	/* margin-bottom: 3px; */
	height: 29px;
	cursor: pointer;
	border-radius: 0px;
	font-weight: 600;
}
input#searchsubmit:hover {

    background: #fa2828 !important;
    box-shadow: 0px 0px 5px #ccc;

}
.searchs {

}
input.searchbox {
	/* height: 30px; */
	width: 300px;
	background-color: #eee;
	border: none;
	padding: 5px 20px
}
li.custom:hover {
    background-color: #e10121;
}
p.promo_link {
	color: #ffffff !important;
}
.nav_holder {
   width: 510px;
	 float: right;
	 background-color: transparent;

}
.navbar-toggle {
	position: relative;
float: right;
padding: 9px 10px;
margin-top: 8px;
margin-right: 15px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.navbar li {
	float: left;
	padding-left: 2px;
	padding-right: 2px;
	font-size: 15px;

}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #f6e9da;
	background-color: #666;
	border-radius: 10px;
	transition: all 0.2s ease-in-out;

}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover .current-menu-item{
	color: #f6e9da;
	background-color: none;
	border-radius: 10px;
	transition: all 0.2s ease-in-out;

}
.navbar-right {
	float: right;
}

.navbar-light .navbar-nav .nav-link {
    color: #f6e9da;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: #f6e9da;
}
.topmenu {
	padding-right: 10px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 5px;
    padding-left: 5px;
}
.current-menu-item {
	background-color: #555555;
	border-radius: 10px;
  color: #f6e9da;
}
.social_escort {
	background-color: #666;
	border-radius: 15px;
	padding: 3px 20px;
	margin: 10px;
	color: #fff;
	font-weight: 300;
}
.social_escort a {
	color: #fff;
}
#m_search input[type=search] {
	width: 42px;
	padding-left: 10px;
	color: transparent;
	cursor: pointer;
}
#m_search input[type=search]:hover {
	background-color: #fff;
}
#m_search input[type=search]:focus {
	width: 220px;
	padding-left: 32px;
	color: #000;
	background-color: #fff;
	cursor: auto;
}
#m_search input:-moz-placeholder {
	color: transparent;
}
#m_search input::-webkit-input-placeholder {
	color: transparent;
}
#m_search input[type=search] {
	background: #f4030f url(https://www.langtreesofcanberra.com.au/wp-content/themes/LangtreesCanberra/assets/images/search-icon.png) no-repeat 9px center;
    background-size: 25px;
    padding: 12px 0px 4px 6px;
    width: 40px;

	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 10em;

	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
#m_search input::-webkit-search-decoration,
#m_search input::-webkit-search-cancel-button {
	display: none;
}
.bar_image img {
    width: 100%;
}
.champayne_glass {
   position: absolute;
    z-index: 9999999;
    top: -70px;
    right: 10px;
}
.bar_height {
    min-height: 420px;
}
.morecontent span {
    display: none;
}
.morelink {
    display: inline-block;
    font-size: 0.8em;
}
.twitter_social {
	max-width: 200px;
	margin-top: 10px;
	float: none;
}
.snapchat_social {
	max-width: 90px;
	margin-top: 10px;
	float: none;
}
.footer_logo {
	width: 250px;
	margin-top: 20px;
}
.location_image {
	margin: 0px auto 30px;
	border: 10px solid #fff;
	box-shadow: 0px 0px 15px #ccc;
}
.location_image img {
	margin: 0px auto;
}
.location_com {
	margin: 20px 0px;
	font-weight: 300;
}
.footer_admin {
	margin-left: 20px;
	color: #eed9c2 !important;
}
.footer_lk {
	color: #eed9c2 !important;
}

.nodisplay{
    display:none;
}

.thumb_times {
	font-size: 16px;
	margin-bottom: 10px;
}
.redroster {
	background-color: red !important;
}
/*  Roster     */
.roster_acc .card-body {
	padding: 0px;
}
#accordionRoster .card-header {
	background-color: #d468bd;
	text-align: center;
	padding: 0px;
} 
#accordionRoster .card-body {

	padding: 0px;
}
#accordionRoster .card-header:hover {
	background-color: #c354ab;
}
#accordionRoster .card-header .btn-link {
	color: #fff;
	font-weight: 300;
	font-size: 20px;
	text-decoration: none;
	padding: 10px 50px;
	width: 100%;
}
#accordionRoster .card {
	margin-bottom: 20px;
	background-color: transparent;
	border: none;
}
.roster_phone {
	background-color: red;
	padding: 2px 12px 3px;
	color: #fff;
	border-radius: 4px;
}
.roster_phone a {
	background-color: #e365c9;
    color: #fff !important;
}
.btn-link[aria-expanded="true"] {
	background-color: red;	
}
.btn-link[aria-expanded="false"] {
	background-color: #666;	
}

.bshadow {
	box-shadow: 0px 0px 10px #ccc;
}

.working_now_roster1 {
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    text-align: center;
    /* background-color: rgba(66,189,3,.8); */
    color: #fff;
    z-index: 9;
    border-radius: 50%;
    bottom: 60px;
    right: 20px;
}


div.wpforms-container-full .wpforms-form .wpforms-field-label {
	color: #666;
	font-family: arial;
	font-weight: 400;
}
div.wpforms-container-full .wpforms-form .wpforms-field-label-inline {
	color: #666;
	font-weight: 400;
	font-family: arial;
}
.wpforms-confirmation-container-full {
	color: red;
	font-family: arial;
	background-color: transparent;
}
code {
	color: #e7000c;
	font-family: arial;	
}
div.wpforms-container-full .wpforms-form button[type=submit] {
	color: #fff;
	background-color: red;
	border: none;
}
a.readmoretext {
	font-size: 12px !important;
	font-weight: normal !important;
}
.working_now_roster {
    width: 25px;
    height: 25px;
    bottom: 40px;
    right: 15px;
}
/*--------------------------------------------------------------
## Media Queries
--------------------------------------------------------------*/

@media screen and (min-width: 200px) {
	.navbar-light .navbar-nav .nav-link {
		 color: #666;
	}
 .price_table {
        width: 100%;
        margin: 0px auto;
        font-size: 1em;
      }
	.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
		color: #666;
		background-color: transparent;
	}
	.current-menu-item {
		background-color: transparent;
		border-radius: 10px;
    color: #666;
	}
	.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
	    color: #666;
	}
     .header_ma, .welcome_text, .welcome_slogan, .ladies_button, .header_phone, .parallax, .header_opentimes, .showslide, .escorts_table, .footer_logo, .roster_heading {
        display: none;
     }
		 .search_icon {
		 	width: 50px;
		 	margin-right: 20px;
			display: none;
		 }
		#m_search {
           display: none;
		}
     .logo {
        text-align: center;
        float: none;
     }
     .main-navigation li {
        display: block;
        text-align: center;
        font-size: 20px;
     }
     .main-navigation li a {
        font-size: 1em;
        padding: 4px;
     }
     .main-navigation {

     }
     .menu-toggle {
        width: 150px;
        height: 30px;
        font-size: 22px;
        margin: 2px auto;
        background-color: #9a0116;
        border: none;
        color: #fff;
        padding: 0px;
     }
     .row {
        margin-left: 0px;
        margin-right: 0px;
     }
     .mob_girl {
        display: block;
     }
     .parallax_mobile, .escorts_table_mob {
        display: block;
     }
     .para_image_mobile {
        height: 200px;
     }
     .mobile_num {
        display: block;
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: -15px;
        font-family: 'Fjalla One', sans-serif;

     }
     .mob_header_number {
        font-weight: 600;
        font-size: 1em;
     }
     .aboutus_text {
        padding-top: 20px;
     }
     .answer p {
        font-size: 1em;
        font-weight: 300;
     }
     ul.footer_links li {
        font-size: 1.3em;
        line-height: 1.8em;
        border-bottom: 1px dashed #666;
     }
     .new_escort3 {
        left: 20px;
     }
     .escort_info {
        margin-top: 5px;
     }
     .pad_mob {
        padding: 0px;
     }
     .not_found {
        max-width: 100%;
     }
     .new_escort {
        left: 0px;
        bottom: 0px;
        font-size: 0.6em;
     }
     .vid_pad {
        padding: 0px;

     }
		 .header_bg {
			 background-image: transparent;
			 height: auto;
		 }
		 .navbar {
			background-color: #fafafa;
			box-shadow: 0px 0px 15px #ccc;
		 }
		 .navbar-nav {
			 margin-top: 0px;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: none;
		 }
		 .navbar-brand {
		     width: 200px;
		 }
		 .mobile_view {
		     padding-left: 5px;
		     padding-right: 5px;
		 }
		 #myBtnContainer {
		     margin: 0px 0px 20px 5px;
		 }
		 .btns {
		     padding: .6em .6em .4em;
		 }
		 .champayne_glass {
            display: none;
         }
         .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: right;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: right;
         }
         .butterfly {
        	position: absolute;
        	top: 50px;
        	right: 20px;
        	width: 180px;
        	z-index: 99;
        }
        .btn_m {
            width: 30%;
            margin:  4px;
            height:  40px;
            font-size: 16px;
        }
        .btn_l {
            width: 30%;
            margin:  4px;
            height: 40px;
            font-size: 16px;
        }
        .profile_name {

	       font-size: 0.7em;
        }
        .escort_location {
        	font-size: 11px;
        	margin: 5px 0px;
        	display: block;
        }
        .working_now_home {
           width: 30px;
           height: 30px;
           bottom: 15px;
           right: 5px;
       }
       .working_now_single {
           width: 30px;
           height: 30px;
           bottom: 15px;
           right: 5px;
       }
       .thumbs_desc {
	      font-size: 11px;
        }
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
	.navbar-light .navbar-nav .nav-link {
		 color: #666;
	}
	 .price_table {
        width: 100%;
        margin: 0px auto;
        font-size: 1em;
      }
	.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
		color: #666;
		background-color: transparent;
	}
	.current-menu-item {
		background-color: transparent;
		border-radius: 10px;
    color: #666;
	}
	.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
	    color: #666;
	}
     .header_ma, .welcome_text, .welcome_slogan, .ladies_button, .parallax, .parallax_mobile, .showslide, .escorts_table, .searchs, .footer_logo, .roster_heading {
         display: none;
     }
		 .search_icon {
		 	width: 50px;
		 	margin-right: 20px;
			display: none;
		 }
		 #m_search {
		     display: none;
		 }
		 .header_bg {
			 background-image: transparent;
			 height: auto;
		 }
		 .navbar {
			background-color: #fafafa;
			box-shadow: 0px 0px 15px #ccc;
		 }
    .logo {
        text-align: center;
        float: none;
     }
     .mob_girl {
         display: block;
     }
     .mobile_num {
         display: block;
     }
     .mobile_num a {
         font-size: 2.2rem;
         text-align: center;
     }
     .aboutus_text {
        padding-top: 10px;
     }
     .answer p {
        font-size: 1em;
        font-weight: 300;
     }
     ul.footer_links li {
        font-size: 1.3em;
        line-height: 1.8em;
        border-bottom: 1px dashed #666;
     }
     .new_escort3 {
        left: 20px;
     }
     .escort_info {
        margin-top: 5px;
     }
     .pad_mob {
        padding: 0px;
     }
     .not_found {
        max-width: 100%;
     }
     .new_escort {
       left: 0px;
        bottom: 0px;
        font-size: 0.6em;
     }
     .vid_pad {
        padding: 0px;

     }
		 .navbar-nav {
			 margin-top: 0px;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: none;
		 }
		 .navbar-brand {
		     width: 200px;
		 }
		 .mobile_view {
		     padding-left: 5px;
		     padding-right: 5px;
		 }
		 #myBtnContainer {
		     margin: 0px 0px 20px 5px;
		 }
		 .btns {
		     padding: .6em .6em .4em;
		 }
		 .champayne_glass {
            display: none;
         }
        .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: right;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: right;
         }
         .butterfly {
        	position: absolute;
        	top: 50px;
        	right: 20px;
        	width: 180px;
        	z-index: 99;
        }
        .btn_m {
            width: 30%;
            margin:  4px;
            height:  40px;
            font-size: 16px;
        }
        .btn_l {
            width: 30%;
            margin:  4px;
            height: 40px;
            font-size: 16px;
        }
         .profile_name {

	       font-size: 0.7em;
        }
        .escort_location {
        	font-size: 11px;
        	margin: 5px 0px;
        	display: block;
        }
        .working_now_home {
           width: 30px;
           height: 30px;
           bottom: 15px;
           right: 5px;
       }
        .working_now_single {
           width: 30px;
           height: 30px;
           bottom: 15px;
           right: 5px;
       }
        .thumbs_desc {
	      font-size: 11px;
        }
}
@media only screen and (min-width : 400px) {
	.navbar-light .navbar-nav .nav-link {
		 color: #666;
	}
	.price_table {
        width: 100%;
        margin: 0px auto;
        font-size: 1em;
      }
	.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
		color: #666;
		background-color: transparent;
	}
	.current-menu-item {
		background-color: transparent;
		border-radius: 10px;
    color: #666;
	}
	.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
	    color: #666;
	}
     .mob_girl, .parallax_mobile, .parallax, .mobile_num, .escorts_table, .searchs, .footer_logo, .roster_heading  {
         display: none;
     }
		 .search_icon {
		 	width: 50px;
		 	margin-right: 20px;
			display: none;
		 }
		 #m_search {
		     display: none;
		 }
		 .header_bg {
			 background-image: transparent;
			 height: auto;
		 }
		 .navbar {
			background-color: #fafafa;
			box-shadow: 0px 0px 15px #ccc;
		 }
    .logo {
        text-align: none;
        float: left;
     }
     .answer p {
        font-size: 1em;
        font-weight: 300;
     }
     ul.footer_links li {
        font-size: 1.3em;
        line-height: 1.8em;
        border-bottom: 1px dashed #666;
     }
     .showslide, .escorts_table_mob {
        display: block;
     }
     .escort_info {
        margin-top: 5px;
     }
     .pad_mob {
        padding: 0px;
     }
     .not_found {
        max-width: 100%;
     }
     .new_escort {
        left: 0px;
        bottom: 0px;
        font-size: 0.6em;
     }
     .vid_pad {
        padding: 0px;

     }
		 .navbar-nav {
			 margin-top: 0px;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: none;
		 }
		 		 .navbar-brand {
		     width: 200px;
		 }
		 .mobile_view {
		     padding-left: 5px;
		     padding-right: 5px;
		 }
		 #myBtnContainer {
		     margin: 0px 0px 20px 5px;
		 }
		 .btns {
		     padding: .6em .6em .4em;
		 }
		 .champayne_glass {
            display: none;
         }
        .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: right;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: right;
         }
         .butterfly {
        	position: absolute;
	        top: 50px;
	        right: 20px;
	        width: 180px;
	        z-index: 99;
        }
        .btn_m {
            width: 30%;
            margin:  4px;
            height:  40px;
            font-size: 16px;
        }
        .btn_l {
            width: 30%;
            margin:  4px;
            height: 40px;
            font-size: 16px;
        }
        .profile_name {

	       font-size: 0.7em;
        }
        .escort_location {
        	font-size: 11px;
        	margin: 5px 0px;
        	display: block;
        }
        .working_now_home {
           width: 30px;
           height: 30px;
           bottom: 15px;
           right: 5px;
       }
       .working_now_single {
           width: 30px;
           height: 30px;
           bottom: 15px;
           right: 20px;
       }
        .thumbs_desc {
	      font-size: 11px;
        }
}
/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
	.navbar-light .navbar-nav .nav-link {
		 color: #666;
	}
	.price_table {
        width: 100%;
        margin: 0px auto;
        font-size: 1em;
      }
	.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
		color: #666;
		background-color: transparent;
	}
	.current-menu-item {
		background-color: transparent;
		border-radius: 10px;
    color: #666;
	}
	.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
	    color: #666;
	}
     .mob_girl, .parallax_mobile, .parallax, .mobile_num, .escorts_table, .searchs, .roster_heading {
         display: none;
     }
		 .search_icon {
		 	width: 50px;
		 	margin-right: 20px;
			display: none;
		 }
		 #m_search {
		     display: none;
		 }
		 .header_bg {
         background-image: transparent;
				 height: auto;
		 }
		 .navbar {
			background-color: #fafafa;
			box-shadow: 0px 0px 15px #ccc;
		 }
    .logo {
        text-align: none;
        float: left;
     }
     .answer p {
        font-size: 1em;
        font-weight: 300;
     }
     ul.footer_links li {
        font-size: 1.3em;
        line-height: 1.8em;
        border-bottom: 1px dashed #666;
     }
     .showslide, .escorts_table_mob {
        display: block;
     }
     .escort_info {
        margin-top: 5px;
     }
     .pad_mob {
        padding: 0px;
     }
     .not_found {
        max-width: 100%;
     }
     .new_escort {
        left: 0px;
        bottom: 0px;
        font-size: 0.6em;
     }
     .vid_pad {
        padding: 0px;

     }
		 .navbar-nav {
			 margin-top: 0px;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: none;
		 }
		 		 .navbar-brand {
		     width: auto;
		 }
		 .mobile_view {
		     padding-left: 5px;
		     padding-right: 5px;
		 }
		 #myBtnContainer {
		     margin: 0px 0px 20px 5px;
		 }
		 .btns {
		     padding: .6em .6em .4em;
		 }
		 .champayne_glass {
            display: none;
         }
        .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: none;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: none;
         }
         .butterfly {
	        position: absolute;
	        top: 50px;
	        right: 0px;
	        width: 250px;
	        z-index: 99;
        }
        .footer_logo {
            display: block;
        }
        .btn_m {
            width: 30%;
            margin:  4px;
            height:  40px;
            font-size: 16px;
        }
        .btn_l {
            width: 30%;
            margin:  4px;
            height: 40px;
            font-size: 16px;
        }
        .profile_name {

	       font-size: 0.95em;
        }
        .escort_location {
        	font-size: 13px;
        	margin: 5px 0px;
        	display: block;
        }
     .working_now_home {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
       .working_now_single {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
        .thumbs_desc {
	      font-size: 11px;
        }
}

@media screen and (min-width: 600px) {
	   .navbar-light .navbar-nav .nav-link {
	      color: #666;
	   }
	         .price_table {
        width: 100%;
        margin: 0px auto;
        font-size: 1em;
      }
		 .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
			 color: #666;
			 background-color: transparent;
		 }
		 .current-menu-item {
			 background-color: transparent;
			 border-radius: 10px;
       color: #666;
		 }
		 .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
		     color: #666;
		 }
     .header_ma, .escorts_table_mob  {
        display: block;
     }
     .welcome_text, .welcome_slogan, .ladies_button, .header_phone, .mob_girl, .header_opentimes, .parallax, .parallax_mobile, .mobile_num, .escorts_table, .searchs, .roster_heading {
        display: none;
     }
		 .search_icon {
			width: 50px;
			margin-right: 20px;
			display: none;
		 }
		 #m_search {
		     display: none;
		 }
		 .header_bg {
         background-image: transparent;
				 height: auto;
		 }
		 .navbar {
			background-color: #fafafa;
			box-shadow: 0px 0px 15px #ccc;
		 }
     .main-navigation li {
        display: inline-block;
        transition: all 0.3s ease-in-out;
     }
     .main-navigation li a {
        font-size: 0.7em;
        padding: 6px 4px 4px;
        font-weight: 400;
     }
     .row {
        margin-left: 0px;
        margin-right: 0px;
     }
    .logo {
        text-align: none;
        float: left;
     }
     .answer p {
        font-size: 1em;
        font-weight: 300;
     }
     ul.footer_links li {
        font-size: 1.3em;
        line-height: 1.8em;
        border-bottom: 1px dashed #666;
     }
     .showslide {
        display: block;
     }
     .escort_info {
        margin-top: 5px;
     }
     .pad_mob {
        padding: 0px 15px;
     }
     .single_landscape {
        max-width: 600px;
        max-height: 300px;
        margin: 15px auto;
        padding: 0px;
        overflow: hidden;
     }
     .not_found {
        max-width: 100%;
     }
     .new_escort {
        left: 0px;
        bottom: 0px;
        font-size: 0.6em;
     }
     .vid_pad {
        padding: 0px;

     }
		 .navbar-nav {
			 margin-top: 0px;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: none;
		 }
		 		 		 .navbar-brand {
		     width: auto;
		 }
		 .mobile_view {
		     padding-left: 15px;
		     padding-right: 15px;
		 }
		 #myBtnContainer {
		     margin: 0px 0px 20px 15px;
		 }
		 .btns {
		     padding: .6em 1em .4em;
		 }
		 .champayne_glass {
            display: none;
         }
        .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: none;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: none;
         }
         .butterfly {
	        position: absolute;
	        top: 50px;
	        right: 0px;
	        width: 250px;
	        z-index: 99;
        }
        .footer_logo {
            display: block;
        }

                .btn_m, .btn_l {
            width: 110px;
            margin:  2px;
            height:  30px;
            font-size: 14px;
        }
        .profile_name {

	       font-size: 0.95em;
        }
        .escort_location {
        	font-size: 13px;
        	margin: 5px 0px;
        	display: block;
        }
        .working_now_home {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
       .working_now_single {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
        .thumbs_desc {
	      font-size: 12px;
        }
}
/* Small Devices, Tablets */
@media screen and (min-width: 768px) {
	.navbar-light .navbar-nav .nav-link {
		 color: #666;
	}
	      .price_table {
        width: 100%;
        margin: 0px auto;
        font-size: 1em;
      }
	.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
		color: #666;
		background-color: transparent;

	}
	.current-menu-item {
		background-color: transparent;
		border-radius: 10px;
    color: #666;
	}
	.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
	    color: #666;
	}
     .welcome_text, .welcome_slogan, .mob_girl, .parallax, .parallax_mobile, .mobile_num, .escorts_table_mob, .searchs {
        display: none;
     }
		 .search_icon {
			width: 50px;
			margin-right: 20px;
			display: none;
		 }
		 #m_search {
		     display: none;
		 }
		 .header_bg {
         background-image: transparent;
				 height: auto;
		 }
		 .navbar {
		 	background-color: #fafafa;
		 	box-shadow: 0px 0px 15px #ccc;
		 }
     .main-navigation li {
        display: inline-block;
        transition: all 0.3s ease-in-out;
     }
     .aboutus_text {
        padding-top: 10px;
     }
    .logo {
        text-align: none;
        float: left;
     }
     .answer p {
        font-size: 1em;
        font-weight: 300;
     }
     ul.footer_links li {
        font-size: 1em;
        line-height: 1.4em;
        border-bottom: none;
     }
     .showslide, .escorts_table, .roster_heading {
        display: block;
     }
     .escort_info {
        margin-top: 0px;
     }
     .pad_mob {
        padding: 0px 15px;
     }
     .single_landscape {
        max-width: 600px;
        max-height: 300px;
        margin: 15px auto;
        padding: 0px;
        overflow: hidden;
     }
     .not_found {
        max-width: 100%;
     }
     .new_escort {
        left: 0px;
        bottom: 0px;
        font-size: 0.6em;
     }
     .vid_pad {
        padding: 0px;

     }
		 .navbar-nav {
			 margin-top: 0px;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: block;
		 }
		 .navbar-brand {
		     width: auto;
		 }
		  .mobile_view {
		     padding-left: 15px;
		     padding-right: 15px;
		 }
		  #myBtnContainer {
		     margin: 0px 0px 20px 15px;
		 }
		 .btns {
		     padding: .6em 1em .4em;
		 }
		 .champayne_glass {
            display: block;
         }
        .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: none;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: none;
         }
         .butterfly {
	        position: absolute;
	        top: 50px;
	        right: 0px;
	        width: 250px;
	        z-index: 99;
        }
        .footer_logo {
            display: block;
        }
         .btn_m, .btn_l {
            width: 110px;
            margin:  2px;
            height:  30px;
            font-size: 14px;
        }
        .profile_name {

	       font-size: 0.95em;
        }
        .escort_location {
        	font-size: 13px;
        	margin: 5px 0px;
        	display: block;
        }
        .working_now_home {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
       .working_now_single {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
        .thumbs_desc {
	      font-size: 12px;
        }
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.navbar-light .navbar-nav .nav-link {
			color: #f6e9da;
	}
	      .price_table {
        width: 800px;
        margin: 0px auto;
        font-size: 1em;
      }
	.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
		color: #f6e9da;
		background-color: #666;

	}

     .welcome_text {
        display: inline-block;
        width: 380px;
        margin-right: 50px;
     }
     .welcome_slogan {
        display: block;
        width: 380px;
        margin-right: 20px;
        font-size: 11px;
        letter-spacing: 5px;
     }
     .ladies_button {
        display: block;
        font-size: 11px;
     }
     .header_phone, .escorts_table {
        display: block;
     }
     .header_opentimes, .roster_heading {
        display: inline-block;
     }
     .main-navigation li {
        display: inline-block;
        transition: all 0.3s ease-in-out;
     }
     .mob_girl, .parallax, .parallax_mobile, .mobile_num {
        display: none;
     }
		 .search_icon {
			width: 50px;
			margin-right: 20px;
			display: block;
		 }
		 #m_search {
		     display: block;
		 }
     .table th {
        color: #fff !important;
     }
     .aboutus_text {
        padding-top: 10px;
     }
    .logo {
        text-align: none;
        float: left;
     }
     .answer p {
        font-size: 1em;
        font-weight: 300;
     }
     ul.footer_links li {
        font-size: 1em;
        line-height: 1.4em;
        border-bottom: none;
     }
     .showslide {
        display: block;
     }
    .escort_info {
        margin-top: 0px;
     }
     .pad_mob {
        padding: 0px 15px;
     }
     .single_landscape {
        max-width: 600px;
        max-height: 300px;
        margin: 15px auto;
        padding: 0px;
        overflow: hidden;
     }
     .escorts_table_mob {
        display: none;
     }
     .not_found {
        max-width: 700px;
     }
     .new_escort {
        left: 5px;
        bottom: 5px;
        font-size: 0.9em;
     }
     .vid_pad {
        padding: 0px 150px 50px;

     }
		 .header_bg {
		 background-image: url('https://www.langtreesofcanberra.com.au/wp-content/themes/LangtreesCanberra/assets/images/navigation_bg_long2.png');
     height: 150px;
		 }
		 .navbar {
		 	background-color: transparent;
		 	box-shadow: none;
		 }
		 .navbar-nav {
		 	margin-top: -20px;
		 }
		 .current-menu-item {
		 	background-color: #555555;
		 	border-radius: 10px;
     color: #f6e9da;
		 }
		 .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
		     color: #f6e9da;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: block;
		 }
		 .navbar-brand {
		     width: auto;
		 }
		 .mobile_view {
		     padding-left: 15px;
		     padding-right: 15px;
		 }
		  #myBtnContainer {
		     margin: 0px 0px 20px 15px;
		 }
		 .btns {
		     padding: .6em 1em .4em;
		 }
		 		 .champayne_glass {
            display: block;
         }
        .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: none;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: none;
         }
         .butterfly {
	        position: absolute;
	        top: 50px;
	        right: 0px;
	        width: 250px;
	        z-index: 99;
        }
        .footer_logo {
            display: block;
        }

                .btn_m, .btn_l {
            width: 110px;
            margin:  2px;
            height:  30px;
            font-size: 14px;
        }
        .profile_name {

	       font-size: 0.95em;
        }
        .escort_location {
        	font-size: 13px;
        	margin: 5px 0px;
        	display: block;
        }
        .working_now_home {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
        .working_now_single {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
        .thumbs_desc {
	      font-size: 12px;
        }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

		 .header_bg {
		 background-image: url('https://www.langtreesofcanberra.com.au/wp-content/themes/LangtreesCanberra/assets/images/navigation_bg_long2.png');
     height: 150px;
		 }
		 .navbar {
		 	background-color: transparent;
		 	box-shadow: none;
		 }
     .welcome_text {
         display: block;
         width: 450px;
         margin-right: 180px;
     }
     .welcome_slogan {
         display: block;
         width: 500px;
         margin-right: 100px;
         letter-spacing: 8px;
      }
      .ladies_button {
         display: block;
         margin-right: 100px;
      }
      .main-navigation li {
         display: inline-block;
         transition: all 0.3s ease-in-out;
      }
      .mob_girl, .parallax_mobile, .mobile_num, .escorts_table_mob {
         display: none;
      }
			.search_icon {
			 width: 50px;
			 margin-right: 20px;
			 display: block;
			}
			#m_search {
			    display: block;
			}
      .parallax {
         display: block;
      }
      .table th {
         color: #fff !important;
      }
      .aboutus_text {
         padding-top: 10px;
      }
      .logo {
        text-align: none;
        float: left;
				margin: 25px;
      }
      .price_table {
        width: 800px;
        margin: 0px auto;
        font-size: 1em;
      }
     .answer p {
        font-size: 1em;
        font-weight: 300;
     }
     .comments p {
        font-size: 1.1em;
     }
     ul.footer_links li {
        font-size: 1em;
        line-height: 1.4em;
        border-bottom: none;
     }
     .showslide {
        display: block;
     }
     .escort_info {
        margin-top: 0px;
     }
     .pad_mob {
        padding: 0px 15px;
     }
     .single_landscape {
        max-width: 600px;
        max-height: 300px;
        margin: 15px 0px;
        padding: 0px;
        overflow: hidden;
     }
     .not_found {
        max-width: 700px;
     }
     .new_escort {
        left: 5px;
        bottom: 5px;
        font-size: 0.9em;
     }
      .vid_pad {
        padding: 0px 150px 50px;

     }
		 .navbar-nav {
		 	margin-top: -20px;
		 }
		 .navbar-light .navbar-nav .nav-link {
		     color: #f6e9da;
		 }
		 .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
			 color: #f6e9da;
			 background-color: #666;

		 }

		 .current-menu-item {
		 	background-color: #555555;
		 	border-radius: 10px;
     color: #f6e9da;
		 }
		 .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
		     color: #f6e9da;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: block;
		 }
		 .navbar-brand {
		     width: auto;
		 }
		  .mobile_view {
		     padding-left: 15px;
		     padding-right: 15px;
		 }
		 #myBtnContainer {
		     margin: 0px 0px 20px 15px;
		 }
		 .btns {
		     padding: .6em 1em .4em;
		 }
		 .champayne_glass {
            display: block;
         }
        .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: none;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: none;
         }
        .butterfly {
	        position: absolute;
	        top: 50px;
	        right: 0px;
	        width: 250px;
	        z-index: 99;
        }
        .footer_logo {
            display: block;
        }
        .btn_m, .btn_l {
            width: 110px;
            margin:  2px;
            height:  30px;
            font-size: 14px;
        }
        .profile_name {

	       font-size: 0.95em;
        }
        .escort_location {
        	font-size: 13px;
        	margin: 5px 0px;
        	display: block;
        }
        .working_now_home {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
	.working_now_roster {
    width: 25px;
    height: 25px;
    bottom: 40px;
    right: 15px;
}
        .working_now_single {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
        .thumbs_desc {
	      font-size: 12px;
        }
	.roster_heading {
		display: inline-block;
	}
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1300px) {
	   .searchs {
			 display: block;
		 }
		 .search_icon {

			display: none;
		 }
		 #m_search {
		     display: none;
		 }
		 .navbar-light .navbar-nav .nav-link {
		     color: #f6e9da;
		 }
		 .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
			 color: #f6e9da;
			 background-color: #666;

		 }
      .price_table {
        width: 800px;
        margin: 0px auto;
        font-size: 1em;
      }
		 .current-menu-item {
		 	background-color: #555555;
		 	border-radius: 10px;
      color: #f6e9da;
		 }
		 .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
		     color: #f6e9da;
		 }
		 .review_bubbles {
		 	position: absolute;
		 	left: -70px;
		 	bottom: 40px;
		 	width: 120px;
		 	display: block;
		 }
		 .navbar-brand {
		     width: auto;
		 }
		 .mobile_view {
		     padding-left: 15px;
		     padding-right: 15px;
		 }
		  #myBtnContainer {
		     margin: 0px 0px 20px 15px;
		 }
		 .btns {
		     padding: .6em 1em .4em;
		 }
		 .champayne_glass {
            display: block;
         }
        .twitter_social {
        	max-width: 200px;
        	margin-top: 10px;
        	float: none;
         }
         .snapchat_social {
	        max-width: 90px;
        	margin-top: 10px;
        	float: none;
         }
        .butterfly {
	        position: absolute;
	        top: 50px;
	        right: 0px;
	        width: 250px;
	        z-index: 99;
        }
        .footer_logo {
            display: block;
        }
        .btn_m, .btn_l {
            width: 110px;
            margin:  2px;
            height:  30px;
            font-size: 14px;
        }
        .profile_name {

	       font-size: 0.9em;
        }
        .escort_location {
        	font-size: 13px;
        	margin: 5px 0px;
        	display: block;
        }
     .working_now_home {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
	.working_now_roster {
    width: 25px;
    height: 25px;
    bottom: 40px;
    right: 15px;
}
		.working_now_roster {
	    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #fff;
    z-index: 99;
    border-radius: 50%;
    margin: 0px 0px 0px 0px;
	}				
        .working_now_single {
           width: 35px;
           height: 35px;
           bottom: 15px;
           right: 20px;
       }
        .thumbs_desc {
	      font-size: 12px;
        }
       	.roster_heading {
		display: inline-block;
	}
}
li#search-li
{
  height:39px;
  padding-top:2px;
  padding-left:5px;
  padding-right:5px;
}
li#search-li input
{
  vertical-align:middle;
}

.filterDiv {
	display: none;
}
.show {
	display: block;
}
.btns.green.active {
	background-color: #43bb08;
	color: #fff;
	font-weight: 400;
}

.btns.red.active {
	background-color: red;
	color: #fff;
	font-weight: 400;
}


.btns {
	color: #666;
	border: none;
	font-size: 14px;
	border-radius: 0px;
}
.btns:hover {
	color: #666;
	background-color: #eee;
	border: none;
}

.filter {
	margin-right: 10px;
	font-size: 15px;
}

.grey_bg {
	background-color: #fafafa;

}
.girls_thumbs {
	background-color: #f5f5f5;
}
.social_bg {
	background-color: #eee;
	padding: 30px 0px 0px;
}
.follow_social {
	font-size: 1.2em;
	color: #000;
}

.social_phone {
	position: relative;
	z-index: 9999;
}

.oursites_bg {
	background-color: #fafafa;
	border-top: 1px solid #ccc;
}
.header_icons img {
	width: 40px;
	margin-right: 20px;
}
.rtl {
	direction: rtl;
}

#more {
    display: none;
}
.read_button {
    margin-left: 10px;
    padding: 2px 6px;
    border: none;
    color: #fff;
    font-weight: 600;
    background-color: #666;
    font-size: 0.7em;
}
button:focus {
    outline: none;
}
#loginform p
{
    display: inline;
}
.roster_name {
	background-color: #f9f9f9 !important;
	font-weight: 400 !important;
	border-right: 1px solid #eee;
	font-size: 0.7em !important;
	text-align: left !important;
	padding-left: 10px !important;
}
.escort_vid {
	margin-top: -5px;
}
.bshadow {
	box-shadow: 0px 0px 10px #ccc;
}