.location-select {
    /*float: left;
    height: 70px;
    line-height: 70px;*/
    color: #00aeef;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    /*margin-left: 10px;
    position: relative;*/
    margin-left: 30px;
    position: absolute;
    top: 0px;
}

.location-select i {
    color: #aeaeae;
}

.location-select:hover {
    color: #fff;
}

.location-select:hover i {
    color: #00aeef;
}

.location-select:hover ul {
    display: block;
}

.location-select ul {
    position: absolute;
    left: 0;
    /*top: 70px;*/
    width: auto;
    margin: 0;
    padding: 0;
    display: none;
    z-index: 1500;
}

.location-select ul li {
    float: left;
    width: 100%;
    display: inline;
    position: relative;
}

.location-select ul li > a {
    float: left;
    background: #00aeef;
    color: #FFF !important;
    font-size: 18px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    width: 100%;
    position: relative;
    white-space: nowrap;
}

.location-select ul li div {
    position: absolute;
    left: 100%;
    top: 0;
    background: #252525;
    padding: 25px;
    color: #FFF;
    display: none;
    min-width: 600px;
}

.location-select ul li div h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: #00aeef;
    font-weight: 700;
    margin-top: 0;
}

.location-select ul li div figure {
    float: left;
    margin-right: 25px;
    margin-bottom: 25px;
}

.location-select ul li:hover > a {
    background-color: #0089bc;
}

.location-select ul li:hover > a:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 137, 188, 0);
    border-left-color: #0089bc;
    border-width: 5px;
    margin-top: -5px;
    z-index: 1;
}

.location-select ul li:hover div {
    display: block;
}

@media only screen and (max-width: 1180px) {
    .location-select {
        /*float: none;*/
        clear: both;
        text-align: center;
        height: auto;
        padding-bottom: 10px;
        line-height: 1;
    }

    .location-select ul {
        right: 10px;
        top: 24px;
        z-index: 999;
        width: 305%;
    }

    .location-select ul li {
        position: static;
        width: auto;
        float: none;
    }

    .location-select ul li div {
        top: 121px;
        left: 0;
        right: 0;
        min-width: 100%;
    }
    
    .location-select ul li div figure {
        float: none;
        margin: 0 auto 15px;
    }
}