/* Add Phone Icon Font */

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@300;700&display=swap');

@font-face {
    font-family: "ctc-icon-font";
    src:url("../font/icon-font.eot");
    src:url("../font/icon-font.eot?#iefix") format("embedded-opentype"),
    url("../font/icon-font.woff") format("woff"),
    url("../font/icon-font.ttf") format("truetype"),
    url("../font/icon-font.svg#icon-font") format("svg");
    font-weight: normal;
    font-style: normal;

}

[data-icon]:before {
    font-family: "ctc-icon-font" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="ctc-icon-"]:before,
[class*=" ctc-icon-"]:before {
    font-family: "ctc-icon-font" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ctc-icon-phone:before {
    content: "\61";
}

/* Basic Styles */

/* Only Show over 736px - Why 736? Max width of iPhone 7 Plus in landscape */
body {
    padding-bottom: 50px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.img-left-call{
    float: left;
    width: 36px;
    height: 36px;
    margin-top: 15px;
    margin-right: 10px;
}
.font-27{
    font-size: 27px !important;
}
.bold{
    font-weight: 700 !important;
}
.light{
    font-weight: 300 !important;
}
#click_to_call_bar {
    position: fixed;
    bottom: 20px;
    width: 240px;
    background-color: #222;
    z-index: 1000;
    text-align: left;
    display: block;
    z-index: 10000;
    height: 50px;
    padding: 10px 10px 25px 20px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 0px 50px 50px 0px;
    text-decoration: none !important;
}
#click_to_call_bar a {
    color: white;
    text-decoration: none !important;
}
#click_to_call_bar:hover {
    text-decoration: none !important;
}
#click_to_call_bar:focus {
    text-decoration: none !important;
}
/* Icon Size */
#click_to_call_bar span {
    font-size: 18px;
    margin-right:5px;
    vertical-align: sub;
}

@media (max-width: 736px) {
    .img-left-call{
        width: 24px;
        height: 24px;
        margin-top: 11px;
        margin-right: 5px;
    }
    .font-27{
        font-size: 17px !important;
    }
    #click_to_call_bar {
        width: 166px;
        height: 22px;
        padding: 10px 5px 28px 10px;
        font-size: 14px;
        line-height: 14px;
    }
    /* Icon Size */
    #click_to_call_bar span {
        font-size: 12px;
    }
}
