/** Supportbanner **/
.support-banner-toggle {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    line-height: 20px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 15px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background-color: #f28600;

    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.support-banner-toggle:hover {
    cursor: pointer;
    background-color: #b65f00;
    border-bottom-right-radius: 50px;
}

#support-modal .modal-body .fas {
    color: #3a3a3a;
}

#support-modal .modal-body a {
    color: #f28600;
}

#support-modal .modal-body .support-icon-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 5px;
    font-size: 12pt;

    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

#support-modal .modal-body .support-icon-box:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}