@media only screen and (min-width: 1200px) {
    .container {
        display: flex;
        justify-content: center;
    }

    .input-container {
        width: 572px;
        display: flex;
        align-items: center;
    }

    .map-container {
        margin-left: 10px;
    }

    #list_container {

        margin-right: 10px;
    }
}

@media only screen and (max-width: 1200px) {}

@media only screen and (min-width: 580px) and (max-width: 1200px) {
    .container {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .input-container {
        width: 572px;
        display: flex;
        align-items: center;
    }

    #list_container {
        width: 570px;
    }
    .body {

        overflow: scroll;
    }
}

@media only screen and (max-width: 580px) {

    .input-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 90px !important;
        margin-left: 10px;
    }

    .input-container div {
        margin-left: 10%;
    }

    .input-container input {
        width: 70%;
    }

    .input-container div:nth-child(2) input:nth-child(2) {
        width: 40% !important;
    }

    #list_container {
        width: 100%;
    }
    .input-container button {
        margin-left: 10% !important
    }

    .body {
        overflow: scroll
    }

    .btn-login {
        top: -20px !important;
        right: 20px !important;
    }

}

.title {
    text-align: center;
    margin: 40px 0;
    font-size: 30px;
    color: rgba(0, 162, 232)
}

.btn-login {
    height: 32px;
    color: #4073a3;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    right: 20%;
    float: right;
    top: -40px
}
.flex-center {
    display: flex;
    align-items: center;
}

.list-marker span {
    padding: 0 10px;
    color: rgb(127, 127, 127);
}

.list-marker svg {
    padding: 0 10px;
}

.input-container {
    background-color: #4073a3;
    height: 45px;
    color: white;
    justify-content: space-evenly;
    font-size: 22px;
    margin-right: 10px;
}

.input-container input {
    height: 30px;
    border-radius: 3px;
    border: none;
}


.input-container div:nth-child(2) input:nth-child(2) {
    width: 70px;
}

.input-container button {
    background-color: white;
    height: 32px;
    border-color: white;
    border-radius: 3px;
    border: none;
    color: #4073a3;
    font-size: 20px;
    padding: 0 15px;
    margin-left: 70px;
}

.input-container span {
    width: 55px;
}

.list-check {
    display: none;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

#list_container {
    padding-left: 15px !important;
    border: 1px solid #eee;
    border-bottom: none;

    overflow-y: scroll;
    height: 470px;
}

.list-country {
    color: rgb(31, 41, 55);
    font-size: 16px;
}

.list-check div:nth-child(2) {
    margin-left: 10px;
}

.map-container {
    background: #eee;
    height: 280px;
    border: 1px solid #ddd;
    height: 460px;
    width: 570px;

}

.map-container .country {
    stroke: #fff;
    stroke-opacity: .1;
    stroke-width: 1;
    fill: #4073a3;
}

.popup {
    position: relative;
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    opacity: 0.9;
    display: none;
    width: 190px;
}

.popup p {
    font-size: 14px;
    color: rgba(31, 41, 55);
}

.popup code {
    padding: 5px 2px 5px 2px;
    border-top: 1px solid rgba(229, 231, 235);
    color: rgba(37, 99, 235);
}