.location-list {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 4;
    width: 100%;
    max-height: 246px;
    overflow-y: auto;
    -webkit-box-shadow: 0 5px 8px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 8px 0px rgba(0, 0, 0, 0.3);
    border-radius: 0px 0px 4px 4px;
    background: #fff;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.location-list ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.location-list ul li {
    list-style: none;
    font-size: 15px;
    line-height: 20px;
    color: #555555;
}

.location-list ul li:last-of-type {
    border-bottom: none;
}

.location-list ul li:last-of-type .dropdownlink {
    border-bottom: none;
}

.location-list ul li .dropdownlink {
    cursor: pointer;
    padding: 10px 10px;
    padding-right: 30px;
    position: relative;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    border-bottom: 1px solid #e6e6e6;
}

.location-list ul li .dropdownlink i {
    font-size: 18px;
    position: absolute;
    top: 12px;
    right: 12px;
    -webkit-transition: 0.3s ease transform;
    -o-transition: 0.3s ease transform;
    transition: 0.3s ease transform;
}

.location-list ul li .dropdownlink i.active {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.location-list ul li .dropdownlink.airport-link {
    padding-right: 10px;
    padding-left: 30px;
}

.location-list ul li .dropdownlink.airport-link i {
    right: auto;
    left: 12px;
}

.location-list ul li .sub-menu-items li {
    border-bottom: 1px dashed #e6e6e6;
}

.location-list ul li .sub-menu-items li:last-of-type {
    border-bottom: 1px solid #e6e6e6;
}

.location-list ul li .sub-menu-items li a {
    display: block;
    text-decoration: none;
    color: #545454;
    padding: 10px 10px;
    padding-left: 20px;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.location-list ul li .sub-menu-items li a:hover {
    background: rgba(45, 124, 209, 0.2);
}

.location-list ul li .sub-menu-items li ul {
    padding: 0 10px;
}

.location-list ul li .sub-menu-items li ul li:last-of-type {
    border-bottom: none;
}

.location-list ul li .sub-menu-items li ul a {
    margin: 0 -10px;
    padding-left: 30px;
}

.location-list ul li:hover .dropdownlink {
    background: #2d7cd1;
    color: #fff;
}