/**
 * This file is part of the iBobr - glass package
 *
 * (c) Ondřej Záruba <info@zaruba-ondrej.cz>
 *
 * For the full copyright and license information, please view the license.md
 * file that was distributed with this source code.
 */

.glass-state-0 {
    -webkit-transform: rotate(180deg); /* Chrome and other webkit browsers */
    -moz-transform: rotate(180deg); /* FF */
    -o-transform: rotate(180deg); /* Opera */
    -ms-transform: rotate(180deg); /* IE9 */
    transform: rotate(180deg);
}

.glass-state-1 {
}

.glass-selected {
    background-color: red;
}

.glass-item {
    position: relative;
    display: inline-block;
}

.glass-selector {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.0);
}

.glass-pointer {
    cursor: pointer;
}

.glass-selector-selected {
    background-color: rgba(0, 255, 0, 0.2);
}

.glass-action-box {
    display: inline-block;
}

.glass-counter-box {
    display: inline-block;
    font-size: 30px;
    padding: 50px;
}

.glass-button {
    display: inline-block;
    padding: 10px 50px;
    text-align: center;
    margin: 10px;
}

.glass-button.glass-hidden {
    visibility: hidden;
}