.element_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.element_container .delimiter {
    width: 100%;
}

.image_master {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    min-height: 230px;
    width: 200px;
}

.master_information_title {
    font-size: 20px;
    line-height: 27px;
    font-weight: 300;
    letter-spacing: 0px;
}

.master_information {
    display: flex;
    width: 100%;
}

.master_information > div {
    width: 50%;
}

.multiselect {
    width: 200px;
}

.selectBox {
    position: relative;
}

.selectBox select {
    width: 100%;
    font-weight: bold;
}

.region_name {
    display: flex;
    justify-content: center;
}

.region_name h2 {
    text-align: center;
    max-width: 60%;
    margin: 24px 0 18px;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checkboxes {
    display: none;
    border: 1px #dadada solid;
    /* max-height: 150px; */
    min-width: 200px;
    position: absolute;
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
    /* max-height: 150px; */
    background-color: #fff;
}

.container_regions {
    min-height: 40vh;
}

#checkboxes label {
    display: block;
    padding: 0 5px;
}

#checkboxes label:hover {
    background-color: #1e90ff;
    color: #fff;
}

#checkboxes label input {
    margin-right: 5px;
}

#checkboxes label input[type="checkbox"] {
    background-color: rebeccapurple;
}

.select_block {
    margin: 24px 0;
}

@media(max-width: 767.98px) {
    .region_name h2 {
        max-width: 100%;
    }
}

@media(max-width: 562.98px) {
    .master_information > div {
        width: 100%;
        margin-bottom: 12px;
    }
    .master_information {
        flex-wrap: wrap;
    }
}