/* FIXED FOOTER */
section.fixed-footer {
	position: fixed;
	z-index: 400;
	bottom: 0;
	right: 0;
	width: fit-content;
	background: var(--brand-khaki);
	transform: translateY(calc(100% + 25px));
	transition: all 0.3s;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
	max-width: 640px;
	border-radius: 5px;
	padding: 0 10px;
	margin: 20px;
	backdrop-filter: blur(4px);
	background: rgba(0, 40, 85, 0.81)
}

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

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

section.fixed-footer a.item {
	margin: 0.75rem 0;
	text-align: center;
	display: flex;
	padding: 0 1rem;
	transition: all 0.3s;
	border-bottom: none;
	width: fit-content;
	min-width: 100px;
	align-items: center;
	gap: 0.75rem;
	position: relative;
	color: #fff;
}

section.fixed-footer a.item:not(:last-child) {
	border-right: 1px solid var(--copper-color-bright);
}

section.fixed-footer a.item .icon {
	color: var(--second-color);
}

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

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

section.fixed-footer .item p{
	margin: 0;
	font-weight: 500;
	line-height:1.375em;
	color: var(--body-color);
	transition: all 0.3s;
}

section.fixed-footer .item p:hover {
	color: var(--second-color);
	transition: all 0.3s;
}


section.fixed-footer .item p.smaller{
	font-size:0.6em;
}
section.fixed-footer .icon i{
	font-size:1.5em;
}

#enquiryModal {
 background:rgba(0, 40, 85, 0.27);
 }
 
.modal-dialog-centered {
	justify-content: center;
}

.form.modal-content {
	max-width: 800px;
	  width: 100%;
	  height: auto;
	  padding: 0;
	background: var(--white-color);
	color: var(--third-color);
}

.form.modal-content .ccm-block-express-form input,
.form.modal-content .ccm-block-express-form textarea {
	background: #fbf8f5;
}

.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: 1px solid #f7efe8;
}

@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){
	section.fixed-footer a.item{
		padding:0 0.75rem;
	}
}

@media screen and (max-width:960px){
	footer#footer{
		padding-bottom:6rem!important;
	}
	
	section.fixed-footer{
		margin:0;
		border-radius:0;
		max-width:none;
		width:100%;
	}
}

@media screen and (max-width:720px){
	footer#footer{
		padding-bottom:8rem!important;
	}
	section.fixed-footer a.item {
		flex-direction:column;
		gap:5px;
		padding:0 0.75rem;
		margin: 1em 0 ;
	}
	section.fixed-footer .item p{
		font-size:1em;
	}
}