.tiles {
    width: 100px;
    height: 100px;
    position: absolute;
    z-index:100;
}

.can_build {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:16px;
    font-weight: 700;
    text-shadow: 1px 1px 3px #000;
    color:#fff;
}

.can_build:hover {
    border-radius: 50%;
    box-shadow: inset 0 0 20px #fff;
    cursor: pointer;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        filter: brightness(1.2);
    }

    50% {
        opacity: 0.35;
        filter: brightness(1);
    }
}

.build_road_confirm {
    display: none;
    position: fixed;
    bottom:0px;
    right:0px;
    width:250px;
    height:100px;
    background-color: rgb(212, 212, 212);
    z-index: 101;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #000;
}

.build_road_confirm.active {
    display: flex;
}

.build_road_confirm button {
    width: 200px;
    height: 50px;
    background: linear-gradient(135deg, #096b09, #0c940c);
    border-radius: 5px;
    color:#FFF;
    text-shadow: 1px 1px 3px #000;
    font-size:1em;
    font-weight: 700;
}

.build_road_confirm button:hover {
    cursor: pointer;
    background: linear-gradient(135deg, #0c940c, #0fb80f);
}

.active-route {
    border: 5px dotted rgb(0, 72, 253);
}

.sorting_plant {
    background-image: url('/img/center.png');
    background-size: contain;
    background-repeat: no-repeat;
}


.gas_station {
    background-image: url('/img/gas.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.city {
    background-image: url('/img/city.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.road_horizontal {
    background-image: url('/img/road_horizontal.png');
    background-repeat: repeat-x;
    background-position: 0 center;
    background-size: auto;
}

.road_vertical {
    background-image: url('/img/road_vertical.png');
    background-repeat: repeat-y;
    background-position: center center;
    background-size: auto;
}

/*------------------*/
/* TURNS HORIZONTAL */
/*------------------*/
.horizontal_turn_left_west {
    background-image: url('/img/horizontal_turn_left_west.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.horizontal_turn_right_west {
    background-image: url('/img/horizontal_turn_right_west.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.horizontal_turn_left_east {
    background-image: url('/img/horizontal_turn_left_east.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.horizontal_turn_right_east {
    background-image: url('/img/horizontal_turn_right_east.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/*----------------*/
/* TURNS VERTICAL */
/*----------------*/
.vertical_turn_left_north {
    background-image: url('/img/vertical_turn_left_north.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.vertical_turn_right_north {
    background-image: url('/img/vertical_turn_right_north.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.vertical_turn_left_south {
    background-image: url('/img/vertical_turn_left_south.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.vertical_turn_right_south {
    background-image: url('/img/vertical_turn_right_south.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}



/*----------------*/
/*    CROSSE'S    */
/*----------------*/
.cross_to_left {
    background-image: url('/img/cross_to_left.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.cross_to_right {
    background-image: url('/img/cross_to_right.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.cross_to_top {
    background-image: url('/img/cross_to_top.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.cross_to_bottom {
    background-image: url('/img/cross_to_bottom.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.horizontal_cross_left {
    background-image: url('/img/horizontal_cross_left.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.cross_full {
    background-image: url('/img/cross_full.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
