/* * * * * * * * * * * * * * * * * * * * *
 *
 *  ██████╗ ███╗   ███╗ ██████╗ ███████╗
 * ██╔═══██╗████╗ ████║██╔════╝ ██╔════╝
 * ██║   ██║██╔████╔██║██║  ███╗█████╗
 * ██║   ██║██║╚██╔╝██║██║   ██║██╔══╝
 * ╚██████╔╝██║ ╚═╝ ██║╚██████╔╝██║
 *  ╚═════╝ ╚═╝     ╚═╝ ╚═════╝ ╚═╝
 *
 * @package  : OMGF
 * @author   : Daan van den Bergh
 * @copyright: (c) 2019 Daan van den Bergh
 * @url      : https://daan.dev
 * * * * * * * * * * * * * * * * * * * */

/**
 * Responsiveness
 */

.settings-column {
    float: left;
}

.settings-column.left {
    width: 60%;
}

.settings-column.right {
    width: 39%
}

@media only screen and (max-width: 940px) {
    .settings-column {
        display: block;
        float: none;
    }

    .settings-column.left,
    .settings-column.right {
        width: 100%;
    }
}

/**
 * Generate Stylesheet-form
 */

#search-field {
    line-height: 38px;
    width: 360px;
    font-size: 20px;
    padding: 3px 10px;
}

#hwl-results .spinner {
    visibility: visible !important;
    float: none;
}

#hwl-results {
    position: relative;
}

tr.loading td {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5)
}

.hwl-remove {
    cursor: pointer;
}

.button-cancel {
    color: #a00;
    text-decoration: none;
    border-color: transparent;
    box-shadow: none;
    background: 0 0;
    border-radius: 3px;
    white-space: nowrap;
    padding: 6px 10px !important;
}

.button-cancel:hover {
    cursor: pointer;
    background: #d54e21;
    color: #fff;
    border-color: #d54e21;
}

.caos-status-total-bar {
    height: 30px;
    border-radius: 6px;
    padding: 4px 4px 0;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

#caos-status-progress-bar {
    height: 26px;
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
    line-height: 25px;
    text-align: center;
    transition: width 1s;
    -webkit-transition: width 1s;
    background-color: #0daadb;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
}
