.lightbox {
	display: flex;
	z-index: -1;
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(200,200,200,0.8);
	justify-content: center;
	align-items: center;
	transition: all ease-in-out 0.4s;
	opacity: 0;
	outline: none;
}
.lightbox:target {
	outline: none;
	display: flex;
	transition: all ease-in-out 0.4s;
	opacity: 1;
	z-index: 99999999;
}
.lightbox-holder{
	width: 100%;
	max-width: 1200px;
	min-height: 200px;
	background: #fff;
	box-shadow: 0 0 20px rgba(100,100,100,0.5);
	position: relative;
	padding: 30px;
}
.lightbox-content{
	width: 100%;
}
.close-me{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 20px;
	right: 20px;
	background:#fff;
	width: 45px;
	height: 45px;
	padding: 7px;
	line-height: 0rem;
	border:2px solid #fff;
	text-align: center;
	transition: all ease-in-out 0.3s;
	border: 1px solid #C9C9C9;
	color: #707070;
	border-radius: 4px;
}
.close-me i{
	display: block;
	width: 70%;
	height: 70%;
	font-size: 20px;
}
.close-me img{
	display: block;
	width: 70%;
	height: 70%;
	opacity: 0.8;
	font-size: 20px;
}
.close-me:hover{
	background:#fff;
	color: #1f1f1f;
}

.lightbox-logo{
	width: 100%;
	display: flex;
	justify-content: center;
}
.lightbox-logo img{
	max-width: 200px;
	width: 100%;
}


#telephone.lightbox .lightbox-holder{
	max-width: 500px;
}
#telephone.lightbox .lightbox-holder h2{
	text-transform: uppercase;
	color: #999;
	font-weight: 300;
	font-size: 1.4rem;
	margin:20px auto 5px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ededed;
}
#telephone.lightbox .lightbox-holder p{
	text-transform: uppercase;
	color: #333;
	font-size: 1.2rem;
	margin:5px auto;
}
#telephone.lightbox .lightbox-holder p{
	padding-top: 10px;
}
#telephone.lightbox .lightbox-holder p a{
	padding:6px 20px;
	border: 1px solid #ededed;
	color: #333;
	transition: all ease-in-out 0.4s;
}
#telephone.lightbox .lightbox-holder p a:hover{
	color:#BC8B13;
}
#telephone.lightbox .lightbox-holder p span{
	color: #999;
  font-family: 'Crimson Text', serif;
  letter-spacing: 1px;
  padding-right: 10px;
}

.lightbox-contact-form{
	width: 100%;
}
.lightbox-contact-form form,
.lightbox-contact-form form fieldset,
.lightbox-contact-form form .frm_form_fields{
	width: 100%;
	border: 0px solid rgba(255,255,255,0);
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #fff;
}
.lightbox-contact-form form input,
.lightbox-contact-form form input[type="text"],
.lightbox-contact-form form input[type="email"],
.lightbox-contact-form form input[type="tel"]{
	width: calc(100% - 0px);
	border: 0px solid #707070;
	background: #fff;
	border-bottom: 1px solid #ccc;
	padding: 17px 5px 5px;
	margin-bottom: 10px;
	color: #707070;
	outline: none;
}
.lightbox-contact-form form input::-webkit-input-placeholder { /* Edge */
  color: #c9c9c9;
  font-family: 'Crimson Text', serif;
	text-transform: uppercase;
}
.lightbox-contact-form form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #c9c9c9;
  font-family: 'Crimson Text', serif;
	text-transform: uppercase;
}
.lightbox-contact-form form input::placeholder {
  color: #c9c9c9;
  font-family: 'Crimson Text', serif;
	text-transform: uppercase;
}	
.lightbox-contact-form form textarea::-webkit-input-placeholder { /* Edge */
  color: #c9c9c9;
  font-family: 'Crimson Text', serif;
	text-transform: uppercase;
}
.lightbox-contact-form form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #c9c9c9;
  font-family: 'Crimson Text', serif;
	text-transform: uppercase;
}
.lightbox-contact-form form textarea::placeholder {
  color: #c9c9c9;
  font-family: 'Crimson Text', serif;
	text-transform: uppercase;
}	
.lightbox-contact-form form select{
	width: calc(100% - 0px);
	border: 0px solid #707070;
	border-bottom: 1px solid #ccc;
	padding: 17px 5px 5px;
	margin-bottom: 10px;
	outline: none;
	border-radius: 0;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;       /* Remove default arrow */
   background: url(images/dropdown.svg) 96% / 135% no-repeat #fff;
   background-size: 15px;   /* Add custom arrow */
}
.lightbox-contact-form form select option{
	width: 100%;
	border: 0px solid #707070;
	border-bottom: 1px solid #ccc;
	background: #fff;
	outline: none;
	border-radius: 0;
	text-transform: capitalize;
}
.lightbox-contact-form form select option[data-default] {
  color: red;
  text-transform: uppercase;
}
.lightbox-contact-form form select::-ms-expand {
    display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    select {
        background-image:none\9;
        padding: 5px\9;
    }
}
.lightbox-contact-form form textarea{
	width: 100%;
	background: #fff;
	border: 0px solid #707070;
	padding: 17px 5px 5px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	color: #707070;
	outline: none;
	min-height:100px;
	height: 15vh;
}
.lightbox-contact-form form button{
	border: 1px solid #C9C9C9;
	color: #707070;
	background: #fff;
	border-radius: 4px;
	padding: 7px 20px;
	text-transform: uppercase;
	margin-top: 10px;
}

.lightbox-contact-details{
	width: 100%;
	border: 1px solid #CCCBCB;
	padding: 20px;
	margin: 20px 0;
	border-radius: 4px;
}
.lightbox-contact-details span.title{
	font-family: 'Crimson Text', serif;
	color: #AFAFAF;
	text-transform: uppercase;
	padding-right: 10px;
	font-size: 1.1rem;
}
.lightbox-contact-details span.title i{
	color: #AFAFAF;
	padding-right: 5px;
}
.lightbox-contact-details span.title svg{
	fill: #AFAFAF;
	padding-right: 5px;
	width: 1.2rem;

}
.lightbox-contact-details span.address{
	font-family: 'Montserrat', sans-serif;
	color: #707070;
	font-size: 1.1rem;
}
.lightbox-map{}
.lightbox-map iframe{
	width: 100%;
	height: 35vh;
}

.lightbox-navigation{
	width: 100%;
}
.lightbox-navigation nav{
	width: 100%;
	padding: 30px;
}
.lightbox-navigation nav ul{
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.lightbox-navigation nav ul li{
	width: 30%;
	padding: 0;
	margin: 10px;
	border: 1px solid #CCCBCB;
	border-radius: 4px;
}
.lightbox-navigation nav ul li a{
	padding: 20px;
	width: 100%;
	font-family: 'Crimson Text', serif;
	text-transform: uppercase;
	display: block;
	color: #707070;
	font-size: 1.3rem;
	letter-spacing: 1px;
}
.lightbox-navigation .lightbox-subnav{
	width: 100%;
	border-top: 1px solid #707070;
	padding-top: 30px;
}
.lightbox-navigation .lightbox-subnav ul{
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.lightbox-navigation .lightbox-subnav ul li{
	width: 23%;
	padding: 0;
	margin: 10px;
	border: 1px solid #CCCBCB;
	border-radius: 4px;
}
.lightbox-navigation .lightbox-subnav ul li a{
	padding: 10px 20px;
	width: 100%;
	font-family: 'Crimson Text', serif;
	text-transform: uppercase;
	display: block;
	color: #707070;
	letter-spacing: 1px;
}