/* ==================== */
/* МИР И ОСНОВНОЙ КОНТЕЙНЕР */
/* ==================== */

#world {
    position: relative;
    z-index: 8;
}

#world__wrap {
    overflow: auto;
    position: relative;
    z-index: 7;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0;
    background: #4c4638;
}

/* Координатная информация */
.map-name {
    z-index: 11;
    background: #111111ab;
    padding: 6px;
    font-size: 12px;
    position: absolute;
    display: inline-block;
}
.map-time {
    z-index: 11;
    background: #111111ab;
    padding: 6px;
    font-size: 12px;
    position: absolute;
    display: inline-block;
    right: 0px;
}
/* ==================== */
/* ТАЙЛЫ КАРТЫ */
/* ==================== */

.tile-y {
    height: 100%;
    width: 100%;
}

.tile-x {
    display: inline-block;
    width: 14.28%; /* 1/7 часть */
    height: 14.28%; /* 1/7 часть */
    float: left;
    position: relative;
}

/* ==================== */
/* КНОПКИ ПЕРЕМЕЩЕНИЯ */
/* ==================== */

.buton_move {
    position: absolute;
    top: 80px;
    left: 120px;
    margin-top: -5px;
}

.buton_move__tile-x {
    text-align: center;
    font-weight: 700;
    height: 40px;
    width: 40px;
    position: relative;
    display: inline-block;
    padding-top: 0;
}

.buton_move__tile-x img {
    width: 80%;
    margin-top: 5px;
}

/* Кнопка остановки перемещения */
#button_move_stop {
    background-color: rgba(17, 15, 22, .6);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    padding: 8px;
    border: 1px solid #68776b;
    border-radius: 2px;
    color: #ddd;
    width: 40%;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 30%;
    z-index: 11;
}

/* Кнопка получения перемещения */
#button_move_get {
    background-color: rgba(17, 15, 22, .6);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    padding: 8px;
    border: 1px solid #68776b;
    border-radius: 2px;
    color: #ddd;
    width: 40%;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 30%;
    z-index: 11;
}
/* ==================== */
/* НАСТРОЙКИ РАЗМЕРА МИРА */
/* ==================== */

.map-sidebar {
    position: absolute;
    display: inline-block;
    z-index: 12;
    cursor: pointer;
}

.map-sidebar li {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    height: 40px;
    width: 40px;
    margin-top: 4px;
    padding-top: 6px;
    padding-bottom: 1px;
    background: #111111ab;
}


.map-sidebar img {
    padding-top: 0;
    margin-top: 0;
    width: 16px;
    height: 16px;
}

/* ==================== */
/* ПАНЕЛЬ ПОД КАРТОЙ */
/* ==================== */

.panel-under-the-map {
    z-index: 9;
    position: absolute;
    float: none;
    display: block;
    text-align: center;
    width: 100%;
    bottom: 50px;
}

.panel-under-the-map li {
    display: inline-block;
    width: 46px;
    height: 32px;
    text-align: center;
    background-image: url(/img/ico/btnrect.png);
    background-color: #222;
    margin: 2px 5px;
}

.panel-under-the-map img {
    margin-top: 4px;
    width: 75%;
    height: 75%;
}
.panel-under-the-map-button{
    background: #1a1612;
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #3e3328;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: 0.3s;
}
/* ==================== */
/* КНОПКИ СКОРОСТИ КАРТЫ */
/* ==================== */

.map__speed__button {
    cursor: pointer;
    margin-top: 5px;
    text-align: center;
}

.map__speed__button a {
    max-width: 450px;
    text-align: left;
    background: url(/theme/design/pda_background.png) !important;
    border-radius: 2px;
    padding: 6px;
    margin: 1px 0;
    border: 1px solid #222;
    width: 90%;
    font-size: 14px;
}

.map__speed__button img {
    margin-top: 0;
    width: 12px;
    height: 12px;
    margin-right: 4px;
}

/* Специальный класс для списка */
.ppg3 li {
    font-size: 14px !important;
}

/* ==================== */
/* КАНВАСЫ И ГРАФИКА */
/* ==================== */

#canvas,
#canvas_2 {
    z-index: 10;
    position: absolute;
    left: 55px;
    top: 55px;
}

#udata2 {
    position: absolute;
    width: 30px;
    max-height: 30px;
    border-radius: 50%;
    z-index: 12;
}

/* ==================== */
/* СОСТОЯНИЯ ЗАГРУЗКИ */
/* ==================== */

.map-load {
    font-size: 24px;
    position: absolute;
    z-index: 8;
    font-family: stalker;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    padding-top: 100px;
}

.map-dead {
    font-size: 18px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    background: #4c4638;
    position: relative;
}

/* ==================== */
/* СКРОЛЛБАРЫ */
/* ==================== */

#world__wrap::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    cursor: pointer;
}

#world__wrap::-webkit-scrollbar-thumb {
    background-color: rgba(60, 60, 60, 1);
}

#world__wrap::-webkit-scrollbar-track {
    background-color: rgba(10, 10, 10, .6);
}