/**
 * This file is part of the Machinar 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.
 */

.machinar-map {
    position: relative;
    width: 615px;
    height: 460px;
    background: url(images/bg.png);
}

.machinar-map table {
    position: absolute;
    left: 115px;
    top: 52px;
    border-spacing: 13px 11px;
    border-collapse: separate;
}

.machinar-map table td {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    font-weight: 900;
    position: relative;
    padding: 1px;
    overflow: visible;
}

.machinar-map table td span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    opacity: 0.65;
}

.machinar-map .machinar-box-2 {
    background: url(images/start.png) no-repeat center;
}

.machinar-map .machinar-box-1 {
    background: url(images/wall.png) no-repeat center;
}

.machinar-map .machinar-box-3 {
    background: url(images/arrow_top.png) no-repeat center;
}

.machinar-map .machinar-box-4 {
    background: url(images/arrow_right.png) no-repeat center;
}

.machinar-map .machinar-box-5 {
    background: url(images/arrow_bottom.png) no-repeat center;
}

.machinar-map .machinar-box-6 {
    background: url(images/arrow_left.png) no-repeat center;
}

.machinar-map .machinar-box-3:hover,
.machinar-map .machinar-box-4:hover,
.machinar-map .machinar-box-5:hover,
.machinar-map .machinar-box-6:hover{
    opacity: 1;
}

.machinar-map .machinar-box-7 {
    background: url(images/used_horizontal.png) no-repeat center;
}

.machinar-map .machinar-box-8 {
    background: url(images/used_vertical.png) no-repeat center;
}

.machinar-map .machinar-box-9 {
    background: url(images/actual.png) no-repeat center;
}

.machinar-info-box {
    margin: 10px 0;
}