.DashControlLocations {
    user-select: none;
}

.DashControlLocations .locs .status {
    background-color: var(--theme-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 10px 0 15px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.DashControlLocations .locs .status::before {
    display: inline-block;
    content: " ";
    background-color: red;
    box-shadow: 0 0 1px 2px #222;
    width: 10px;
    height: 10px;
    margin-inline-end: 10px;
    border-radius: 50%;
}

.DashControlLocations .locs .status.free::before {
    background-color: rgb(51, 255, 0);
}

.DashControlLocations .locs .status.orderd::before {
    background-color: rgb(255, 208, 0);
}

.DashControlLocations .ctrlLinks .ctrls ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.DashControlLocations .ctrlLinks .ctrls ul li a {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: block;
    text-align: center;
    padding: 15px;
    border: 2px solid #eee;
    transition: 0.3s all ease-in-out;
}

.DashControlLocations .ctrlLinks .ctrls ul li a:hover {
    top: -5px;
    left: -5px;
    box-shadow: 5px 8px 0px 0px var(--theme-color);
}

.DashControlLocations .ctrlLinks .ctrls ul li a i {
    margin-inline-end: 10px;
}

@media (width <=450px) {
    .DashControlLocations .ctrlLinks .ctrls ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width <=380px) {
    .DashControlLocations .ctrlLinks .ctrls ul {
        grid-template-columns: repeat(1, 1fr);
    }
}