/*******************************************************
 *
 * Interactive Map
 *
 *******************************************************/
#inner-page-wrapper {
    margin-bottom: 0;
}

#inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}

.git-container {
    padding-top: 35px;
}



#ip-interactive-map {
    font-size: 0;
    letter-spacing: normal;
    line-height: 1;
}

.im-map-container {
    display: block;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.im-map-wrapper {
    display: block;
    position: relative;
}

.im-comm-areas {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
}

.im-map-transparent {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.im-map-main {
    position: relative;
    width: 1600px;
}

.im-map-compass {
    position: absolute;
    bottom: 122px;
    right: 19px;
    width: 308px;
    height: 304px;
}

.im-map-compass img{
    max-width: 100%;
    height: auto;
     opacity: 0.50;
}

.im-map-hovers {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.im-map-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    z-index: 4;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
}

.im-map-pin {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 2;
    display: block;
    text-align: center;
}

.im-map-pin span {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    line-height: 1.1;
    white-space: nowrap;
    position: relative;
    width: 100%;
    display: inline-block;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    text-shadow: none;
}

.im-map-pin span:before {
    position: absolute;
    content: '';
    top: -17px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 2px solid #000;
    background-color: #fff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: block;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    min-width: 10px;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.im-map-pin.is-left span:before {
    top: 2px;
    left: auto;
    right: calc(100% + 5px);
}

.im-map-pin.is-right span:before {
    top: 2px;
    left: calc(100% + 5px);
    right: auto;
}

.im-map-pin.is-bottom span:before {
    top: auto;
    bottom: -14px;
}

.im-comm-areas li.im-comm-title {
    z-index: 1;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: block;
}

.im-comm-areas li.im-comm-title:not(:last-child) {
    margin-bottom: 20px;
}

.im-comm-areas ul {
    display: block;
    position: relative;
    width: 100%;
    /* flex-direction: column; */
    /* display: flex; */
}

.im-comm-areas li.im-comm-title:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    background-image: url(../../images/interactive-map/monogram-logo.png);
    width: 21px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}


.im-comm-areas li.im-comm-title a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    padding: 0 0 0 30px;
    display: inline-block;
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    font-family: var(--title-font);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(176,124,25,1)),color-stop(50%, rgba(244,222,118,1)),to(rgba(206,168,67,1)));
    background: -o-linear-gradient(top, rgba(176,124,25,1) 1%,rgba(244,222,118,1) 50%,rgba(206,168,67,1) 100%);
    background: linear-gradient(to bottom, rgba(176,124,25,1) 1%,rgba(244,222,118,1) 50%,rgba(206,168,67,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}


.im-map-content {
    position: absolute;
    top: 845px;
    left: 197px;
    z-index: 5;
    width: 100%;
    max-width: 954px;
}



.im-comm-areas li.im-comm-title.active:before, .im-comm-areas li.im-comm-title:hover:before {-webkit-filter: none;filter: none;}

.im-map-hovers > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.im-map-mobile-list {
    display: none;
}

.im-map-hovers > div.active .im-map-img {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.im-map-hovers > div.active .im-map-pin span {
    color: #fff;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.35);
}

.im-map-hovers > div.active .im-map-pin span:before {
    border-color: #cc0000;
    -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.25);
}

.im-map-main-title {
    position: absolute;
    top: 110px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 29px;
    width: 100%;
}



.im-comm-areas li.im-comm-title.active a, .im-comm-areas li.im-comm-title:hover a {
    -webkit-filter: none;
            filter: none;
    -webkit-transform: translate(-5px,-5px) scale(1.2);
        -ms-transform: translate(-5px,-5px) scale(1.2);
            transform: translate(-5px,-5px) scale(1.2);
}

.im-comm-areas li[data-map-target="beverly-hills-post-office"]:hover a, .im-comm-areas li[data-map-target="beverly-hills-post-office"].active a {
    -webkit-transform: translate(-5px,-5px) scale(1.13);
        -ms-transform: translate(-5px,-5px) scale(1.13);
            transform: translate(-5px,-5px) scale(1.13);
}


.im-map-hovers > div.beverly-hills .im-map-pin span:before {
    left: -33px;
}

.im-map-hovers > div.beverly-hills-post-office .im-map-pin span:before {
    left: -22px;
}

.im-map-hovers > div.brentwood .im-map-pin span:before {
    bottom: -13px;
    left: -20px;
}

.im-map-hovers > div.holmby-hills .im-map-pin span:before {
    bottom: 3px;
    left: auto;
    right: -3px;
}

.im-map-hovers > div.westwood .im-map-pin span:before {
    top: -15px;
    right: -3px;
}

.im-map-hovers > div.palisades .im-map-pin span:before {
    left: 20px;
}

.im-map-hovers > div.active .im-map-pin {
    z-index: 5;
}
/*hovers*/
.im-map-hovers > div.bel-air .im-map-img {
    top: 364px;
    left: 1118px;
}

.im-map-hovers > div.beverly-hills .im-map-img {
    top: 402px;
    left: 1237px;
}

.im-map-hovers > div.beverly-hills-post-office .im-map-img {
    top: 379px;
    left: 1194px;
}

.im-map-hovers > div.brentwood .im-map-img {
    top: 368px;
    left: 1012px;
}

.im-map-hovers > div.encino .im-map-img {
    top: 232px;
    left: 970px;
}

.im-map-hovers > div.hollywood-hills .im-map-img {
    top: 375px;
    left: 1294px;
}

.im-map-hovers > div.holmby-hills .im-map-img {
    top: 487px;
    left: 1221px;
}

.im-map-hovers > div.malibu .im-map-img {
    top: 548px;
    left: 74px;
}

.im-map-hovers > div.santa-monica .im-map-img {
    top: 599px;
    left: 1032px;
}

.im-map-hovers > div.westwood .im-map-img {
    top: 517px;
    left: 1145px;
}

.im-map-hovers > div.palisades .im-map-img {
    top: 516px;
    left: 917px;
}

.im-map-hovers > div.sherman-oaks .im-map-img {
    top: 254px;
    left: 1098px;
}

.im-map-hovers > div.studio-city .im-map-img {
    top: 317px;
    left: 1250px;
}

/*Pin*/
.im-map-hovers > div.bel-air .im-map-pin {
    top: 454px;
    left: 1164px;
}

.im-map-hovers > div.beverly-hills .im-map-pin {
    top: 561px;
    left: 1293px;
}

.im-map-hovers > div.beverly-hills-post-office .im-map-pin {
    top: 434px;
    left: 1222px;
}

.im-map-hovers > div.brentwood .im-map-pin {
    top: 500px;
    left: 1079px;
}

.im-map-hovers > div.encino .im-map-pin {
    top: 332px;
    left: 1076px;
}

.im-map-hovers > div.hollywood-hills .im-map-pin {
    top: 446px;
    left: 1378px;
}

.im-map-hovers > div.holmby-hills .im-map-pin {
    top: 508px;
    left: 1196px;
}

.im-map-hovers > div.malibu .im-map-pin {
    top: 670px;
    left: 404px;
}

.im-map-hovers > div.santa-monica .im-map-pin {
    top: 688px;
    left: 1093px;
}

.im-map-hovers > div.westwood .im-map-pin {
    top: 570px;
    left: 1194px;
}

.im-map-hovers > div.palisades .im-map-pin {
    top: 627px;
    left: 1002px;
}

.im-map-hovers > div.sherman-oaks .im-map-pin {
    top: 356px;
    left: 1170px;
}

.im-map-hovers > div.studio-city .im-map-pin {
    top: 377px;
    left: 1302px;
}


/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (min-width: 992px) {
    .git-container {
        padding-top: 2.188vw;
    }

    .im-map-main-title .global-title h2 > span {
    font-size: 75px;
    margin-top: 5px;
}

.im-map-main-title .global-title h2 small {
    font-size: 19px;
}

.im-map-main-title .global-title {
    margin-bottom: 0;
}

.im-map-main-title .global-logo-icon {
    right: calc(100% + 20px);
    width: 30px;
    height: 30px;
}

.im-map-main-title .global-logo-icon:before {
    right: calc(100% + 2px);
    height: 1px;
}

.im-map-main-title .global-logo-icon:after {
    display: none;
}

.im-map-main-title .global-logo-icon .global-outline {
    border: 1px solid #fff;
    margin: -3px;
}
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    .git-container {
        padding-top: 50px;
    }
    
    .im-map-outer .im-map-content {
        display: none;
    }

    .im-map-mobile-list .im-map-content {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        text-align: left;
        padding: 0 15px;
    }

    .im-map-mobile-list {
        display: block;
        text-align: center;
        padding: 50px 0 50px;
        background-color: #1b1a15;
        margin-top: -1px;
    }

    .im-comm-areas {
        padding-left: 0;
        display: block;
        max-width: 326px;
        margin: 0 auto;
    }

    .im-comm-areas ul:not(:last-child) {
    margin-bottom: 18px;
    }

    .im-map-main-title {
    position: relative;
    top: 0;
    left: 0;
}

.im-map-main .im-map-main-title {
    display: none;
}

.im-comm-areas li.im-comm-title:before {
    -webkit-filter: none!Important;
            filter: none!Important;
}

    .im-comm-areas li.im-comm-title:not(:last-child) {
        margin-bottom: 20px;
    }

    .im-comm-areas li.im-comm-title a {
    font-size: 23px;
    -webkit-transform: none!important;
        -ms-transform: none!important;
            transform: none!important;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
}