.click-to-text {
    cursor: pointer;
}


@supports(-webkit-backdrop-filter:blur(10px)) {
    #clickToCallOverlay {
        -webkit-backdrop-filter: blur(10px)
    }
}

#clickToCallOverlay {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    z-index: 999999999;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    top: 0;
    left: 0
}

@media (max-width: 768px) {
	#clickToCallOverlay, .click-to-text { display: none; }
}

#clickToCallOverlay.hide { display: none; }

#clickToCallForm {
    display: flex;
    margin: auto;
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    border: 1px solid #393939;
    box-sizing: border-box;
    padding: 20px; 
	/** IE wasn't rendering the form in the center of the screen and stretched the whole height of the window.  This corrected that. **/
	position: absolute;
	max-height: 360px;
	top: 0; bottom: 0;
	left: 0; right: 0;
}

#clickToCallForm.multi, .multi #clickToCallForm {
	max-height: 415px;
}

#clickToCallClose {
    position: absolute;
    width: 20px;
    height: 20px;
    top: -10px;
    right: -10px;
    cursor: pointer
}

#clickToCallForm h2 {
    font-weight: 100;
    font-size: 28px;
    letter-spacing: 2px;
    margin-top: 0;
    line-height: 1;
    text-align: center
}

#clickToCallForm h4 {
    font-size: 20px;
    line-height: 1em;
}

#clickToCallForm ol {
    list-style: disc;
}

#clickToCallForm label {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 0;
    width: auto
}

#clickToCallForm input[type=text],
#clickToCallForm select {
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 1px;
    text-align: center
}

#clickToCallForm select {
    width: 100%;
    margin-top: 10px;
    border-radius: 0;
    border: 1px solid #ccc
}

#PhoneNumber1,
#PhoneNumber2 {
    width: 45px;
    margin-right: -1px
}

#PhoneNumber3 {
    width: 58px
}

#clickToCallForm input[type=submit] {
    margin-top: 10px;
    width: 100%;
    margin-bottom: 0;
    font-size: 16px;
    letter-spacing: 2px;
    height: 36px;
    line-height: 36px;
    clear: both;
    padding: 0
}

#clickToCallForm ol {
    margin-bottom:10px;
    padding-left: 18px;
}

/**** CTT ****/
.ctt #clickToCallForm {
    max-width: 600px;
}
.howItWorksSection {
    padding: 0 0 0 20px;
    font-size: 14px;
    text-align: left;
    line-height: 1.5em;
}
.ctt #clickToCallForm label {
    font-size: 16px;
    font-weight: 400;
}
.ctt #clickToCallForm #text {
    height: 60px; resize:none;
}
.ctt #clickToCallForm #text + p {
    font-size: 13px;
    margin-bottom: 0;
}

#mobileCTT {
	position: relative;
}
#mobileCTT::after {
    content: '\f063';
    position: absolute;
    right: 10px;
    font-family: FontAwesome;
}
#expandCTT {
	max-height: 0;
	overflow: hidden;
	transition: max-height 600ms ease;
}
#expandCTT.open {
	max-height: 300px;
}
/**** End of CTT ****/