/* FIXED FOOTER */
section.fixed-footer {
	position: fixed;
	z-index: 400;
	bottom: 2rem;
	right: 2rem;
	width: fit-content;
	transition: all 0.3s;
	backdrop-filter: blur(4px);
	background:var(--second-color);
	border-radius: 3px;
	opacity: 0;
	transform:translateY(20%);
}

section.fixed-footer.visible{
	transform:translateY(0);
	opacity: 1;
}

section.fixed-footer .aurora-row{
	display:flex;
	justify-content:center;
}

section.fixed-footer a.item {
	text-align: center;
	display: flex;
	transition: all 0.3s;
	border-bottom: none;
	width: fit-content;
	min-width: 100px;
	align-items: center;
	position: relative;
	color: var(--lighter-gold);
	padding: 0.5rem 1em;
}

section.fixed-footer a.item:nth-of-type(2) {
	border-left: 1px solid var(--light-gold);
	border-right: 1px solid var(--light-gold);

}

section.fixed-footer a.item .icon {
	color: var(--lighter-gold);
	margin: 0 0.5em 0 0;
}

section.fixed-footer a.item:last-of-type{
	border:none;
}

section.fixed-footer a.item:hover{
	color:var(--white-color);
}

section.fixed-footer .item h5 {
	font-size: 1em;
	margin: 0 0 0 0;
	font-weight: 400;
	line-height: 1em;
}

section.fixed-footer .item p{
	margin: 0;
	font-weight: 300;
	font-size: 0.75em;
	color: var(--body-color);
	transition: all 0.3s;
	margin: 0 0 0 0;
}


section.fixed-footer .item p.smaller{
	font-size:0.6em;
}
section.fixed-footer .icon i{
	font-size:1.75em;
	font-family: "font awesome 5 pro";
	font-weight: 200;
	  font-style: normal;
}

#enquiryModal {
 	background:rgba(7, 5, 1, 0.8);
 	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
 }
 
.modal-dialog-centered {
	justify-content: center;
}

.form.modal-content {
	max-width: 800px;
	  width: 100%;
	  height: auto;
	  padding: 0;
	background: var(--body-color);
	color: var(--third-color);
	border-radius: 0;
	justify-content: flex-start;
	text-align: left;
}

.form.modal-content .ccm-block-express-form input,
.form.modal-content .ccm-block-express-form textarea {
	background: var(--white-color);
	border-radius: 0;
}

.form.modal-content .ccm-block-express-form input:focus,
.form.modal-content .ccm-block-express-form textarea:focus {
	border: 1px solid var(--ligher-gold);
	box-shadow: 0 0 0 .25rem var(--lighter-gold);
}

.form.modal-content .ccm-block-express-form .input {
	display: flex;
  flex-direction: row-reverse;
  
}

.form.modal-content .ccm-block-express-form .input:after {
	font-family: 'Font Awesome 5 Pro';
	width: 30px;
	  display: flex;
	  align-items: center;
	  height: 45px;
}
.modal-body .ccm-dashboard-express-form {
	display: flex;
	gap: 2%;
}


.modal-body .ccm-dashboard-express-form fieldset {
	flex:1 1 calc(50%);
}

.form.modal-content .btn-primary {
	background:var(--second-color);
	border: none;
	margin: 2rem 0 0 0;
}

.form.modal-content .btn-primary:hover {
	background:var(--third-color);
	border: none;
}

#enquiryModal .modal-header {
	border-bottom: none;
}

@media screen and (max-width: 992px) {
	
	.form.modal-content {
	  	max-width: 90%;
		height: 600px;
		overflow: scroll;
		scrollbar-width: none;  
		-ms-overflow-style: none;
  	}
	  
  .form.modal-content::-webkit-scrollbar {
	display: none;         
  }
  
	.modal-body .ccm-dashboard-express-form {
	  flex-direction: column;
	}
}

@media screen and (max-width:600px){

}

@media screen and (max-width:960px){
	footer#footer{
		padding-bottom:7rem!important;
	}

}

@media screen and (max-width:720px){
	footer#footer{
		padding-bottom:8rem!important;
	}

	section.fixed-footer .item p{
		font-size:0.75em;
	}
}

@media screen and (max-width:550px){ 
	section.fixed-footer {
		width: calc(100% - 4rem);
	}
	
	section.fixed-footer .aurora-row {
		justify-content: space-evenly;
	}
	
	section.fixed-footer a.item {
		padding: 0.5rem 0.75rem;
		flex-direction: column;
	}
	
	section.fixed-footer .item h5 {
		font-size: 0.875rem;
	}
}

@media screen and (max-width:390px){ 
	
	section.fixed-footer a.item {
		padding: 0 0.75rem;
	}
}