/*
 * Web Fonts from fontspring.com
 *
 * All OpenType features and all extended glyphs have been removed.
 * Fully installable fonts can be purchased at http://www.fontspring.com
 *
 * The fonts included in this stylesheet are subject to the End User License you purchased
 * from Fontspring. The fonts are protected under domestic and international trademark and 
 * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
 * distributing this font software.
 *
 * (c) 2010 Fontspring
 *
 * The fonts included are copyrighted by the vendor listed below.
 *
 * Vendor:      Mark Simonson Studio
 * License URL: http://www.fontspring.com/fflicense/mark-simonson-studio
*/

@font-face {
    font-family: 'ProximaNovaRegular';
    src: url('./../fonts/proxima_nova_reg-webfont.woff2') format('woff2'), url('./../fonts/proxima_nova_reg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* IAC widget sizing and helper classes */

#OnlineHelp {
    position: fixed;
    right: -10000px;
    height: 100%;
    width: 100%;
    overflow: auto;
    z-index: 2147483644;
    background: #fff;
    border: 1px solid white;
    border-radius: 4px;
    -moz-box-shadow: 0px 0px 14px rgba(0, 0, 0, .4);
    -webkit-box-shadow: 0px 0px 14px rgba(0, 0, 0, .4);
    /* Custom06 - ADA Compliance */
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .4);
}

#OnlineHelp {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#OnlineHelp.standard {
    height: 100%;
}

#OnlineHelp.compacted {
    height: 450px;
}

#OnlineHelp.minimized {
    right: -10000px;
}

#OnlineHelp.alerting {
    right: 2px;
    top: 0px;
}

#launcherminimized,
#launcher {
    /* Custom06 - ADA Compliance */
    font-family: 'ProximaNovaRegular', Arial;
    /* Custom05 - update background-color to #F89728 */
    background-color: #F89728;
    text-align: center;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: right bottom 0px;
    margin-right: 0px;
    border-radius: 6px 6px 0 0;
    position: fixed;
    bottom: 50%;
    right: -3px;
    padding: 7px;
    font-size: 20px;
    z-index: 2147483644;
    color: #FFFFFF;
    cursor: pointer;
    border: 1px solid #FFFFFF;
}

#launcher:hover {
    right: 0;
}

#unreadCounter {
    position: absolute;
    top: -13px;
    right: -9px;
    background-color: red;
    height: 23px;
    width: 22px;
    font-size: 16px;
    border-radius: 14px;
    transform: rotate(90deg);
    color: white;
    display: none;
    z-index: 2147483645;
}

@media (min-width: 768px) {
    #OnlineHelp {
        width: 450px;
        top: 50%;
        margin: -275px 0;
        /* Custom06 - ADA Compliance */
        border-radius: 4px;
    }
    #OnlineHelp.standard {
        /* Custom01 - Update height from original value of 550px */
        height: 95%;
    }
    #OnlineHelp.compacted {
        height: 450px;
    }
    #OnlineHelp.alerting {
        right: 2px;
        /* Custom01 - Add margin and top properties */
        margin: -275px 0;
        top: 275px;
    }
    #OnlineHelp.showLeftPanel {
        width: 900px;
        transition: width 1s;
    }
    #OnlineHelp.hideLeftPanel {
        width: 450px;
        transition: width 1s;
    }
}


/*Chat offline */

#ChatOffline {
    position: fixed;
    right: -10000px;
    height: 30%;
    width: 100%;
    overflow: auto;
    z-index: 2147483644;
    background: #fff;
    border: 1px solid white;
    border-radius: 4px;
    -moz-box-shadow: 0px 0px 14px rgba(0, 0, 0, .4);
    -webkit-box-shadow: 0px 0px 14px rgba(0, 0, 0, .4);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .4);
}

#ChatOffline {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#ChatOffline.standard {
    height: 100%;
}

#ChatOffline.compacted {
    height: 450px;
}

#ChatOffline.minimized {
    right: -10000px;
}

#ChatOffline.alerting {
    right: 2px;
    top: 0px;
}

#ChatOfflineHeader {
    background: #00A7E1;
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 7px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-family: 'ProximaNovaRegular', Arial;
}

#ChatOfflineMessage {
    font-size: 18px;
    padding: 7px;
    color: #555555;
    font-family: 'ProximaNovaRegular', Arial;
    background-color: #BDE9F9;
}

#ChatOfflineFooter {
    font-size: 18px;
    text-align: center;
    padding: 7px;
    color: #2B52FF;
    text-decoration: underline;
    cursor: pointer;
    font-family: 'ProximaNovaRegular', Arial;
}


/*#ChatOffline.alerting {bottom: 20px;} */

@media (min-width: 768px) {
    #ChatOffline {
        width: 300px;
        top: 50%;
        margin: -275px 0;
        border-radius: 4px;
    }
    #ChatOffline.standard {
        height: 95%;
    }
    #ChatOffline.compacted {
        height: 450px;
    }
    #ChatOffline.alerting {
        right: 2px;
        margin: -275px 0;
        top: 75%;
        height: auto;
    }
}