.esri-smart-tip {
    position: absolute;
    left:-700px;
    top: 300px;
    width: 450px;
    height: auto;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
     -ms-transform: translate(30px,-50%); /* IE 9 */
    -webkit-transform: translate(30px,-50%); /* Safari */
    transform: translate(30px,-50%);
    color: #d7d7d7;
    background-color: rgba(0, 0, 0, 0.75);
}

.shadow {
    -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
}

.esri-smart-tip .info {
    width: 350px;
    height: auto;
    line-height: 15px;
    font-size: 12px;
    box-sizing: border-box;
    padding: 1px;
    font-weight: bold;
    color: #ffffff;
}

.esri-smart-tip .white {
    line-height: 24px;
    font-size: 12px;
    color: #ffffff;
}

.esri-smart-tip .tag {
    width: 120px;
    height: auto;
    line-height: 18px;
    font-size: 12px;
    color: #ffffff;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    border: 1px solid #ffffff;
}

.esri-smart-tip .image {
    width: 600px;
    height: 400px;
    display: none;
}

/* MEDIA SPECIFIC: SMALL DEVICES */ 

@media only screen and (max-width: 500px) {
    .esri-smart-tip {
       -ms-transform: translate(-50%,-110%); /* IE 9 */
      -webkit-transform: translate(,-50%, -110%); /* Safari */
      transform: translate(-50%, -110%);
  }
}


