@media all and (max-width:768px) {
    #callus,
    #ctc-above-call-us,
    #ctc-below-call-us,
    #ctc-left-of-menu,
    #ctc-next-to-call-us {
        display: none
    }
}

#clickToCallForm h4 { line-height: 1em; }


@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 all and (max-width: 768px) {
	#clickToCallOverlay { display: none; }
}

#clickToCallForm {
    margin: auto;
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    border: 1px solid #393939;
    box-sizing: border-box;
    padding: 5px 20px 8px; 
	/** 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 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: 18px;
    font-size: 16px;
    letter-spacing: 2px;
    height: 36px;
    line-height: 36px;
    clear: both;
    padding: 0
}

#clickToCallForm ol {
    padding-left: 18px;
    line-height: 1.5
}

/**** CTT ****/

.ctt #clickToCallForm {max-width: 600px;}
.ctt .howItWorksSection { padding: 0 0 0 20px; }
.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 ****/