/**
 * Add any custom CSS here.
 *
 * This file will be loaded after all other theme stylesheets.
 */

:root {
	--agency-grid-image-radius: 0;
	--agency-header-contact-details-bg-colour: ;
	--agency-grid-bg-colour: ;
	--agency-grid-available-now-colour: ;
	--agency-grid-new-blinker-colour: ;
	--agency-profile-page-calendar-width: 800px;
}

.blinker{
    animation: blinker 1.2s infinite;
}

@keyframes blinker{
    0%	{ opacity: 1 }
	5%	{ opacity: 1 }    
    50%	{ opacity: 0 }
    95%	{ opacity: 1 }
    100%{ opacity: 1 }
}

/**
 * 0.0 Shortcodes
 * ------------------------------------------------------------------------------
 */

/** Taxonomy List Shortcode */
ul.tax-list{
	list-style: none;
	padding: 0px;
	margin: 0px;
}

ul.tax-list li{
	display: inline-block;
	font-weight: 300;
	position: relative;
	width: 33.333%;
}

@media (max-width: 768px) {
    ul.tax-list li{
		width: 50%;
	}
}
@media (max-width: 500px) {
    ul.tax-list li{
		width: 100%;
	}
}
#footer .tax-list ul{
	list-style: none;
	padding-left: 0;
}

#footer .tax-list ul li{
	display: inline-block;
	font-weight: 300;
	margin-right: 14px;
	position: relative;
}



 /**
 * 1.0 Header
 * ------------------------------------------------------------------------------
 */

.agency-header-contact{
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 1.2rem;
	background-color: var(--agency-header-contact-details-bg-colour);
}
@media all and (max-width: 1000px) and (min-width: 0px) {
	#phone-1-int,
	#phone-2-int,
	.agency-header-contact span{
		display: none;
	}
}

 /**
 * 2.0 Profile Grid
 * ------------------------------------------------------------------------------
 */

.profile-grid{
	margin-bottom: 15px;
}
.profile-grid article{
	height: 100%;
	padding: 0 0 10px 0;
}
.profile-wrapper{
	height: 100%;
	-webkit-transition: all 0.2s ease-out;
       -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
         -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
}
.profile-wrapper header{
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0;
	text-align: center;
	color: var(--main-content-font-colour, var(--site-font-colour));
	position: relative;
}
.profile-wrapper header h3{
	margin-bottom: 0;
	font-size: 1.5rem;
}
.sidebar-primary .profile-wrapper header h3{
	font-size: 1.1rem;
}
.profile-wrapper ul{
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.profile-wrapper ul li{
	display: inline-block;
	margin-right: 10px;
	position: relative;
}
.profile-wrapper ul li:after{
	content: "|";
	position: relative;
	left: 5px;
}
.profile-wrapper ul li:last-of-type:after{
	content: "";
}
.profile-wrapper ul li:last-of-type{
	margin-right: 0;
}
.profile-wrapper .available-now{
	color: var(--agency-grid-available-now-colour, var(--accent-colour));
}

.profile-wrapper .new{
	color: var(--agency-grid-available-now-colour, var(--accent-colour));
}

.profile-grid .profile-wrapper .image-wrapper{
	-webkit-border-radius: var(--agency-grid-image-radius);
	-moz-border-radius: var(--agency-grid-image-radius);
	border-radius: var(--agency-grid-image-radius);
}

.profile-wrapper .image-wrapper,
.profile-wrapper .image-wrapper img{
	-webkit-transition: all 0.2s ease-out;
       -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
         -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
}
.profile-wrapper.dark-shadow-sm-on-hover:hover .image-wrapper{
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
.profile-wrapper.dark-shadow-md-on-hover:hover .image-wrapper{
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.profile-wrapper.dark-shadow-lg-on-hover:hover .image-wrapper{
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
}
.profile-wrapper.light-shadow-sm-on-hover:hover .image-wrapper{
	-webkit-box-shadow: 0px 0px 5px 0px rgba(255,2555,255,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(255,2555,255,0.5);
	box-shadow: 0px 0px 5px 0px rgba(255,2555,255,0.5);
}
.profile-wrapper.light-shadow-md-on-hover:hover .image-wrapper{
	-webkit-box-shadow: 0px 0px 10px 0px rgba(255,2555,255,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(255,2555,255,0.5);
	box-shadow: 0px 0px 10px 0px rgba(255,2555,255,0.5);
}
.profile-wrapper.light-shadow-lg-on-hover:hover .image-wrapper{
	-webkit-box-shadow: 0px 0px 15px 0px rgba(255,2555,255,0.5);
	-moz-box-shadow: 0px 0px 15px 0px rgba(255,2555,255,0.5);
	box-shadow: 0px 0px 15px 0px rgba(255,2555,255,0.5);
}
.profile-wrapper.borderit .image-wrapper{
	border: 1px solid var(--accent-colour);
	/* See customiser */
}
.profile-wrapper.bg-colour-on-hover{
	overflow: hidden;
	-webkit-border-top-left-radius: var(--agency-grid-image-radius);
	-webkit-border-top-right-radius: var(--agency-grid-image-radius);
 	-moz-border-radius-topleft: var(--agency-grid-image-radius);
  	-moz-border-radius-topright: var(--agency-grid-image-radius);
  	border-top-left-radius: var(--agency-grid-image-radius);
  	border-top-right-radius: var(--agency-grid-image-radius);
}
.profile-wrapper.bg-colour-on-hover:hover{
	background-color: var(--accent-colour);
}
.profile-wrapper.zoom-on-hover:hover .image-wrapper img{
	transform: scale(1.05);
}

.profile-wrapper.borderit-zoom-on-hover .image-wrapper{
	border: 1px solid var(--agency-grid-bg-colour);
}
.profile-wrapper.bg-colour-on-hover:hover{
	background-color: var(--agency-grid-bg-colour);
}

.profile-wrapper.away .image-wrapper:after{
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 1;
	-webkit-transition: all 0.2s ease-out;
       -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
         -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
}

.profile-wrapper.away:hover .image-wrapper:after{
	opacity: 0;
}


.profile-wrapper.away header .away{
	position: absolute;
	top: -3rem;
	width: 100%;
	font-size: 1.5rem;
	color: #ffffff;
}


/**
 * 3.0 Taxonomy Pages
 * ------------------------------------------------------------------------------
 */

.tax-description{
	margin-bottom: 30px;
}

.taxonomy-sort{
	margin-bottom: 30px;
}

.taxonomy-sort form{
	display: flex;
	align-items: center;
	justify-content: flex-end
}

.taxonomy-sort select.form-control{
	width: auto;
	margin-right: 10px;
}


/**
 * 4.0 Profile Pages
 * ------------------------------------------------------------------------------
 */

.single-profile #main{
	padding-left: 35px !important;
	padding-right: 35px !important;
	width: 100%;
}
.single-profile #content .container{
	max-width: 100%;
}
.single-profile #main{
	padding-top: 0px;
}
.single-profile .profile-section{
	margin-bottom: 30px;
}
.single-profile #section-title{
	text-align: center;
	margin-top: 30px;
}
.single-profile #section-stats .stat-title{
	text-transform: uppercase;
}


.single-profile  ul.tax-list li{
	width: 50%;
}
@media (max-width: 1200px) {
    .single-profile  ul.tax-list li{
		width: 100%;
	}
}
@media (max-width: 991px) {
    .single-profile  ul.tax-list li{
		width: 33.333%;
	}
}
@media (max-width: 768px) {
    .single-profile  ul.tax-list li{
		width: 50%;
	}
}
@media (max-width: 550px) {
    .single-profile ul.tax-list li{
		width: 100%;
	}
}

.profile-section .profile-rates-notes{
	text-align: center;
	margin-bottom: 15px;
}
.profile-rates-notes-all{
	text-align: center;
}
.profile-section .profile-page-booking-numbers{
	font-size: 1.5rem;
}
.profile-section .profile-book-now{
	margin-top: 15px;
}
#section-profile-notice{
	text-align: center;
}



#section-gallery.away a:after{
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 1;
	-webkit-transition: all 0.2s ease-out;
       -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
         -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
}

#section-gallery.away a:hover:after{
	opacity: 0;
}

#section-gallery.away a h4.away{
	position: absolute;
	bottom: 0;
	color: #fff;
	z-index: 1;
	text-align: center;
	width: 100%;
}


.rates-table-heading,
.rates-table{
	padding-left: 15px;
	padding-right: 15px;
}

.rates-table-heading .row,
.rates-table .row{
	border-bottom: 1px solid #dddddd;
}

.rates-table-heading .row .col,
.rates-table .row .col{
	line-height: 1.5;
    padding: 8px;
}

.rates-table{
	margin-bottom: 30px;
}
.rates-table .row:last-of-type{
	border-bottom: none;
}


#section-calendar{
	width: var(--agency-profile-page-calendar-width);
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}



.prev-next-profile-navigation .nav-links{
	margin-bottom: 0;
}
.prev-next-profile-navigation .nav-previous,
.prev-next-profile-navigation .nav-next{
	position: fixed;
	top: 50vh;
	transform: translateY(-50%);
	z-index: 150;
	width: 250px;
	height: 110px;
	padding: 15px;
	-webkit-transition: all 0.3s ease-out;
       -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
         -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
    background-color: var(--accent-colour);
}
.prev-next-profile-navigation .nav-previous{
	left: -220px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.prev-next-profile-navigation .nav-previous:hover{
	left: 0px;
}
.prev-next-profile-navigation .nav-next{
	right: -220px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.prev-next-profile-navigation .nav-next:hover{
	right: 0px;
}
.prev-next-profile-navigation .nav-previous a:before,
.prev-next-profile-navigation .nav-next a:before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 0;
	z-index: 1;
	height: 110px;
	width: 20px;
	background-color: var(--agency-prev-next-profile-tab-bg-colour, var(--accent-colour));
	color: var(--agency-prev-next-profile-tab-arrow-colour, #ffffff);
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease-out;
       -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
         -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
}
.prev-next-profile-navigation .nav-previous a:before{
	content: '\f053';
	left: 220px;
}
.prev-next-profile-navigation .nav-previous a:hover:before{
	left: 0px;
}
.prev-next-profile-navigation .nav-next a:before{
	content: '\f054';
	right: 220px;
}
.prev-next-profile-navigation .nav-next a:hover:before{
	right: 0px;
}
.prev-next-profile-navigation .nav-previous a,
.prev-next-profile-navigation .nav-next a{
	float: none !important;
	padding: none !important;
	width: auto !important;
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.prev-next-profile-navigation .nav-previous .nav-image-wrapper-outer{
	position: absolute;
	right: 15px;
	top: 15px;
}
.prev-next-profile-navigation .nav-next .nav-image-wrapper-outer{
	position: absolute;
	left: 15px;
	top: 15px;
}
.prev-next-profile-navigation .nav-image-wrapper{
	width: 80px;
	height: 0;
	padding-top: 100%; 
	border-radius: 100px;
	overflow: hidden;
	display: table-cell;
	position: relative;
}
.prev-next-profile-navigation .nav-image-wrapper img{
	top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    object-fit: cover;
}
.prev-next-profile-navigation .nav-previous .post-title,
.prev-next-profile-navigation .nav-next .post-title{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1rem;
	color: #ffffff;
}
.prev-next-profile-navigation .nav-previous .post-title{
	right: 110px;
}
.prev-next-profile-navigation .nav-next .post-title{
	left: 110px;
}



/**
 * 4.0 SR Agency Button List
 * ------------------------------------------------------------------------------
 */
.sr-agency-button-list{
	margin-bottom: 10px;
}
.sr-agency-button-list .btn{
	text-align: left;
}
.sr-agency-button-list .btn.dropdown-toggle::after{
	position: absolute;
	right: 16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.sr-agency-button-list .dropdown-menu{
	width: 100%;
	max-height: 300px;
    overflow-y: scroll;
}



#search-profiles-top-bar{
	margin-top: 30px;
}

.search-profiles{
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
}

.search-profiles .btn{
	margin-bottom: 10px;
}

.search-profiles select{
	min-width: 140px;
	margin-bottom: 10px;
}

.search-profiles .card{
	background-color: transparent;
	padding: 0px;
	border: 0px;
}

.search-profiles .col{
	min-width: inherit;
}

.search-profiles .col .btn{
	min-width: 180px;
}


/**
 * 5.0 Site Reviews
 * ------------------------------------------------------------------------------
 */
.glsr-shortcode{
	margin-top: 15px;
}
.glsr-shortcode-title{
	margin-bottom: 15px;
	display: none;
}
.glsr-default .glsr-review{
	margin-bottom: 30px;
}
.glsr-review{
	border-top: 1px solid rgba(191,191,191,0.5);
	border-bottom: 1px solid rgba(191,191,191,0.5);
	padding: 15px 0 15px 0;
	position: relative;
}
.glsr-review-title h3{
	font-size: 1.5rem;
}
aside .glsr-review{
	border: 1px solid rgba(191,191,191,0.5);
	padding: 15px;
}
aside .glsr-review:before{
	content: "\f10e";
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900;
	position: absolute;
	right: 15px;
	top: 5px;
	font-size: 2rem;
	color: var(--accent-colour);
}
aside .glsr-review-title h3{
	font-size: 1.3rem;
}

.glsr-default form.glsr-form input.glsr-input, 
.glsr-default form.glsr-form select.glsr-select, 
.glsr-default form.glsr-form textarea.glsr-textarea{
	font-size: var(--forms-font-size);
	color: var(--forms-font-colour, var(--site-font-colour));
	background-color: var(--forms-bg-colour);
	font-weight: var(--forms-font-weight, var(--main-content-font-weight, var(--global-font-weight)));
	border: 1px solid var(--forms-border-colour);
}

.glsr-default form.glsr-form input.glsr-input:focus, 
.glsr-default form.glsr-form select.glsr-select:focus, 
.glsr-default form.glsr-form textarea.glsr-textarea:focus{
	background-color: var(--forms-bg-colour-focus, var(--forms-bg-colour));
    border-color: var(--forms-border-colour-focus, var(--accent-colour));
    color: var(--forms-font-colour, var(--site-font-colour));
    outline: 0;
    box-shadow: none;
}



/**
 * 6.0 Custom Lazy Blocks
 * ------------------------------------------------------------------------------
 */
.featured-profile{
	margin-top: 50px;
	margin-bottom: 70px;
	width: 100%;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.featured-profile .featured-profile-image-1{
	width: 80%;
	position: relative;
	top: 20px;
}

.featured-profile .featured-profile-image-2{
	width: 30%;
	position: absolute;
	top: 0;
	right: 15px;
}

.featured-profile a{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}






