body.fcb-modal-open {
  	overflow: hidden
}

i.fcb-icons {
	color: #fff;
	border-radius: 50%;
	padding: 5px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
	border: 3px solid;
	position: fixed;
	right: 20px;
	bottom: 20px; 
	height: 80px;
    width: 80px;
	z-index: 100
}

i.fcb-icons:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 50%;
	transition: all 0.3s ease;
	border: 0px solid
}

i.fcb-icons:hover:after {
	transform: scale(1);
	box-shadow: 10px 0 20px rgba(0, 0, 0, 0.19), 6px 0 6px rgba(0, 0, 0, 0.23)
}

i.fcb-icons {
	background-color: #ff0000;
	border-color: #ff0000
}

i.fcb-icons:hover {
	color: #ff0000;
	background-color: #fff !important
}

i.fcb-icons:after {
	border-color: #ff0000
}

i.fcb-icons:hover {
	background-color: #fff;
	transform: rotate(90deg);
	cursor: pointer;
	box-shadow: none
}

i.fcb-icons:hover span {
	margin-right:-2px
}

@media ( min-width: 601px ) {
	i.fcb-icons {
		padding: 5px
	}
}

@media ( min-width: 993px ) {
	i.fcb-icons {
		padding: 5px
	}
}

i.fcb-icons span {
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px
}

#fcb-modal-container {
	margin: 0 auto
}

#fcb-modal {
  	opacity: 0;
  	position: fixed;
  	visibility: hidden;
  	width: 400px;
  	box-sizing: border-box;
  	transition: all .2s ease-in-out;
  	-moz-transition: all .2s ease-in-out;
  	-webkit-transition: all .2s ease-in-out;
	z-index: 1000000000;
	border-radius: 0px 
}

#fcb-modal:target {
    opacity: 1;
    top: 12%;
    left: 50%;
    margin-left: -200px;
    visibility: visible;
}

#fcb-modal .copy, #fcb-modal .header {
  	padding: 10px;
  	color: #fff
}

.fcb-modal-content {
  	background: #fff;
  	position: relative;
  	z-index: 20;
  	color: #000;
	font-size: 13px;
	font-weight: normal;
	padding: 3px 20px 5px;
	box-shadow: 2.5px 4.33px 50px 0px rgba(0, 0, 0, 0.3);
	overflow-y: scroll;
	max-height: 480px
}

.fcb-modal-content p {
    margin: 0px 0px 5px !important
}

#fcb-modal .copy { 
	background: #46CFB0 
}

#fcb-modal .overlay {
    background-color: #000;
    background: rgba(255,255,255,.8);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10
}

#fcb-modal label {
	font-weight: normal;
	font-size: 14px;
	width: 100%
}

#fcb-modal input {
	font-size: 14px;
	color: #666;
	background: #fff;
    background-image: none;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	border: 1px solid #bbb;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: block;
	width: 100%
}

#fcb-modal textarea {
	height: 130px;
	font-size: 14px;
	color: #666;
	background: #fff;
    background-image: none;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	border: 1px solid #bbb;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: block;
	width: 100%
}

#fcb-modal input[type="submit"] {
	border: 1px solid #000;
	padding: 3px 14px;
	text-transform: uppercase;
	background-color: transparent;
	color: #000;
	height: 35px;
	font-weight: normal
}

#fcb-modal input[type="submit"]:hover {
	border: 1px solid #ff0000;
	padding: 3px 14px;
	text-transform: uppercase;
	background-color: #ff0000;
	color: #fff;
	font-weight: normal
}

#fcb-modal input[type="radio"], #fcb-modal input[type="checkbox"] {
	width: 13px;
	height: 13px !important;
    margin-right: 0.5em;
	height: 0px;
	float: left
}

#fcb-modal .fcb-header {
	z-index: 21;
	position: relative;
	bottom: -20px;
	left: -10px;
}

#fcb-modal .fcb-header-close {
	text-align: center;
	background-color: #fff;
	text-transform: uppercase;
	font-size: 17px;
	font-weight: bold;
	width: 34px;
	height: 34px;
	border: 2px solid #bab6b6;
	border-radius: 50%;
	text-decoration: none;
	display: table-cell;
	vertical-align: middle
}

#fcb-modal .fcb-header-close:hover {
	border: 2px solid #000;
	color:#000 !important
}

#fcb-modal .fcb-header-close:hover .fcb-close {
	color: #000 !important;
	text-decoration: none !important
}

#fcb-modal .fcb-close {
	color: #bab6b6;
	text-decoration: none !important;
	font-family: Arial;
	text-transform: uppercase;
	font-size: 16px;
}

#fcb-modal .fcb-close:hover {
	color: #000;
	text-decoration: none !important
}

a.close-fcb-modal {
	text-decoration: none !important
}

#fcb-modal form {
	margin: 1.5em 0px -10px 0px
}

@media only screen and ( min-width: 651px ) and ( max-width: 1024px ) {
	#fcb-modal {
  		width: 350px !important
	}

	#fcb-modal:target {
        margin-left: -175px
    }
}

@media only screen and ( max-width: 650px ) {
	#fcb-modal {
		width: 90%;
		min-width: 90%
	}

	#fcb-modal:target {
        top: 5%;
        left: 50%;
        margin-left: -45%
    }
	
	.fcb-modal-content {
  		max-height: 550px;	
		overflow-y: scroll
	}
	
	i.fcb-icons {
		height: 65px;
		width: 65px
	}
	
	 i.fcb-icons span {
        font-size: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0
    }
	
	#fcb-modal .copy, #fcb-modal .header {
		padding: 0px
	}
	
}

#fcb-modal .wpcf7-acceptance span {
	font-size: 11px;
	text-align: justify;
	margin: 0;
	line-height: 1.3
}

#fcb-modal .caldera-grid .row {
    margin-left: 0px !important;
    margin-right: 0px !important
}

.fcb-modal-content::-webkit-scrollbar {
  	width: 11px
}

.fcb-modal-content {
  	scrollbar-width: thin;
  	scrollbar-color: #CFD8DC
}

.fcb-modal-content::-webkit-scrollbar-track {
  	background: #CFD8DC
}

.fcb-modal-content::-webkit-scrollbar-thumb {
  	background-color: #666;
  	border-radius: 6px;
  	border: 3px solid #CFD8DC
}