﻿/* DAP UW-17-0912 */

div.uwControls {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
}

    div.uwControls a.button {
        float: left;
        display: block;
        white-space: nowrap;
        padding: 5px 0;
        box-sizing: border-box;
    }

    div.uwControls.visible a.button {
        width: 170px;
        transition: width 300ms linear
    }

    div.uwControls.hidden a.button {
        width: 0;
        padding-left: 0;
        padding-right: 0;
        border: none;
        transition: width 300ms linear;
        overflow: hidden;
    }

    div.uwControls .uwControlsToggle {
        background: url('../../images/icons/reloadct_left.png') center center no-repeat;
        width: 20px;
        height: 20px;
        float: left;
        display: block;
        background-size: cover;
    }

    div.uwControls.hidden .uwControlsToggle {
        background: url('../../images/icons/reloadct_right.png') center center no-repeat;
        background-size: cover;
    }

/* Mobile style for reload control tables */
@media only screen and (max-width: 767px) {
    div.uwControls .uwControlsToggle {
        width: 40px;
        height: 40px;
    }

    div.uwControls a.button {
        height: 30px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 400px) {
    div.uwControls {
        margin-top: 30px;
    }
}
