@font-face {
    font-family: AvenirLTStd;
    src: url('fonts/AvenirLTStd-Medium.otf');
    font-weight: normal;
}
@font-face {
    font-family: AvenirLTStd;
    src: url('fonts/AvenirLTStd-Black.otf');
    font-weight: bold;
}
body{
    /*background-color: #281d34;*/
}
.main-container{
    width: 90%;
    height: 555px;
    margin: 5% auto 0 auto;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    overflow: hidden;
    /*display: flex;*/
    position: relative;
    /*justify-content: center; !* without map *!*/
}
.main-container__cover-layer{
    background-color: #202323;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgb(16, 141, 126);
    box-sizing: border-box;
    border-radius: 6px;
    font-family: AvenirLTStd;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.main-container__cover-layer .main-container__cover-layer-ip{
    font-size: 20px;
    color: white;
    margin-bottom: 24px;
}
.main-container__cover-layer .main-container__cover-layer-label{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
}
#lookup-ip-address{
    cursor: pointer;
}
.info {
    /*flex-basis: 30%;*/
    font-family: AvenirLTStd;
    height: 100%;
    width: 330px;
    float: left;
}
.info__header{
    color: white;
    padding: 12px 30px;
    background-color: #108d7e;
}
.info__header-label {
    font-size: 15px;
    font-weight: normal;
    line-height: 20px;
}
.info__header-ip{
    font-size: 20px;
    font-weight: bold;
}
.info__content{
    background-color: #181f29;
    text-transform: uppercase;
    padding: 30px;
    height: calc(90% - 64px);
    position: relative;
}
.info__content .label{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
}
.info__content .value{
    font-size: 17px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 24px;
}
.info__content-two-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.info__content-two-columns div{
    flex-basis: 50%;
}
.info__content-btn.btn{
    line-height: 50px;
    height: 46px;
    padding: 0 31px;
    position: absolute;
    bottom: 30px;
}
.btn {
    font-family: AvenirLTStd;
    font-size: 16px;
    color: white;
    border-radius: 23px;
    background-color: rgba(16, 141, 126, 0.5);
    padding: 13px 31px;
    display: inline-block;
    text-transform: none;
    border: 2px solid rgba(16, 141, 126, 0.5);
    transition: .5s all;
}
.btn:hover{
    background-color: rgba(16, 141, 126, 1);
}
.map-container {
    height: inherit;
    margin-left: 330px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}