#map {
    width: 100%;
    height: 620px;
}

.google_map_city {
    max-width: 90%;
    margin-top: 4px;
}

.google_map_city .points {
    margin-left: 15px;
    color: #6d6e70;
    font-size: 16px;
    text-decoration: none;
}

.google_map_city .points:hover {
    color: #5ac13a;
}

.google_map_equipment {
    
    width: 80%;
     
    margin: 10px auto 40px;
}

.google_map_city label {
    display: inline-block;
    margin-right: 24px;
    color: #6d6e70;
    font-size: 16px;
    font-weight: 400;
}

.google_map_city select {
    max-width: 280px;
    display: inline-block;
    color: #999999;
    border: none;
    font-size: 16px;
    font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.google_map_city div.select-label {
    display: inline-block;
    width: 100%;
    position: relative;
    max-width: 280px;
}

.google_map_city div.select-label .dropdown-menu {
    width: 100%

}

.google_map_city div.select-label .dropdown-menu li a {
    padding: 5px 5px 5px 20px;
    color: #b6b7b8;
    text-decoration: none;
    display: block;
}

.google_map_city div.select-label .dropdown-menu li a:hover {
    color: #000;

}

.equipment_block {
    padding: 0 3px 0 3px;
}

.equipment_block > input {
    display: none;
}

.equipment_block > label {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 25%;
    margin: 10px;
    height: 140px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #6d6e70;
    line-height: 1.3em;
    letter-spacing: 0.03em;
    padding: 87px 10px 10px 10px;
}

.equipment_block > label:before,
.equipment_block > label::before {
    content: '';
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    background-image: url("../../../image/check_transparent.png");
}

.equipment_block > input:checked + label:before,
.equipment_block > input:checked + label::before {
    background-image: url("../../../image/check_white.png");
}

.equipment_block > input:checked + label {
    background-color: #5cc238;
    color: #fff;
    box-shadow: 0 10px 14px 0 rgba(92, 194, 56, 0.8);
}
.equipment_block > label{position: relative;}
.equipment_block > label[for="equipment_lamps"] {
    background-image: url("../../../image/lamps.png"); 
}

.equipment_block > label[for="equipment_batteries"] {
    background-image: url("../../../image/batteries.png");
}

.equipment_block > label[for="equipment_small"] {
    background-image: url("../../../image/small.png");
}

.equipment_block > label[for="equipment_average"] {
    background-image: url("../../../image/average.png");
}

.equipment_block > label[for="equipment_strong"] {
    background-image: url("../../../image/strong.png");
}

.equipment_image {
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 2px;
    background-color: #fff;
    border-radius: 10px;
}

.equipment_image > img {
    max-width: 30px;
    margin: 0 auto;
}

#list-locations {
    color: #6d6e70;
}

#list-locations > tbody > tr > td:first-of-type {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    width: 300px;
    white-space: nowrap;
}

#list-locations > tbody > tr > td:last-of-type {
    text-align: center;
    white-space: nowrap;
    font-size: 12px;

}

.marker_image {
    display: block;
    max-width: 30px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

#list-locations > tbody tr:nth-of-type(odd) {
    background-color: #e0e5ea;
}

#list-locations td {
    border: none;
}

#list-locations th {
    border: none;
    white-space: nowrap;
    border-top: 4px solid #e0e5ea;
    text-align: center;
}

.model_box{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
}

.google_map_box{
    position: relative;
    width: 60%;
    height: 60%;
    background-color: green;
    margin-left: auto;
    margin-right:  auto;
    margin-top: 10%;
    border: 20px solid #aaa;
}


.google_map_box .close{
    position: absolute;
    right: -36px;
    top: -36px;
    color: #f00;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    padding-top: 1px;
    opacity: 1;
    border: 5px solid #000;
}


#google_map_location{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}


.gm-style .gm-style-iw {
    overflow: visible !important;
}

.gm-style .gm-style-iw > div {
    overflow: visible !important;
}

.gm-style .gm-style-iw > div .info_window {
    background-color: #fff;
}

.gm-style-iw::before,
.gm-style-iw:before {
    content: '';
    width: calc(100% + 32px);
    height: calc(100% + 20px);
    position: absolute;
    display: block;
    background: transparent;
    border: 3px solid green;
    border-radius: 5px;
    top: -10px;
    left: -15px;
}

.gm-style-iw::after,
.gm-style-iw:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 21px solid green;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 0 solid transparent;
    z-index: 4;
    left: calc(50% - 8px);
    top: auto;
    position: absolute;
    bottom: -30px;
    margin: auto;
}