#Info_Window {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    position: absolute;
    width: 900px;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    border-radius: 10px;
    padding-bottom: 10px;
}


.title-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-size: 20px;
}

.title-items {
    display: flex;
    flex-direction: column;
}

.inputs-container {
    display: flex;
    flex-direction: column;
}

.item-container {
    /*display: flex;*/
    flex-direction: row;
    justify-content: space-evenly;
    align-items: left;
    /* padding: 10px; */
}

.popup-input {
    flex: 1;
    display: flex;
    justify-content: left;
    flex-direction: row;
    margin-top: 10px;
    margin-right: 15px;
    margin-left: 15px;
}

.popup-input label {
    text-align: right;
    margin-right: 15px;
}

.popup-buttons {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    margin-top: 20px;
}

.popup-button {
    height: 28px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    border-radius: 2px;
    border: 1px solid;
}

.popup-button-title {
    padding: 0 !important;
}

#gmsID {
    margin: auto;
    width: 100%;
}