.popup-inner {
    position: relative;
    top: 2%;
    width: auto;
    margin: 0 15vw;
    background: #fff;
    border-radius: 5px;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    height: 100px;
    background: url(/img/popup-header-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px 5px 0 0;
    padding: 0 50px
}

.popup-header__flex {
    display: flex;
    align-items: center;
}

.popup-header h2 {
    font-family: "segoeuib";
    font-size: 30px;
    color: #fff;
}

.map-icon {
    margin: 0 10px -5px 0
}

.popup-close {
    position: relative;
    top: -30px;
    right: -50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a25ab;
    border: 0;
    outline: 0;
    border-radius: 0 5px 0 5px;
    cursor: pointer;
}

.popup-content {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    overflow-y: scroll;
    height: 75vh;
}

.popup-content__flex {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.popup-content__flex a {
    margin-bottom: 10px;
    transition: 0.4s
}

.popup-content__flex a:last-child {
    margin-bottom: 0px
}

.popup-content__flex a:hover {
    font-weight: bold;
    color: #1a25ab !important;
}

@media screen and (max-width: 580px) {
    .popup-inner {
        top: 3%;
        margin: 0 2px;
    }

    .popup-header h2 {
        font-size: 20px;
    }

    .popup-content {
        flex-wrap: wrap;
        overflow-y: scroll;
        
    }

    .popup-content__flex a:last-child {
        margin-bottom: 10px
    }

    .popup-content__flex a {
        width: 70vw;
    }
}
