/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
#pl_info_btn{
    position: fixed;
    display: block;
    bottom: 100px;
    right: 100px;
    height: 50px;
    height: 50px;
    width: 50px;
    max-height: 50px;
    max-width: 50px;
    border-radius: 25px;
    border: 3px solid white;
    background-color:#0058aa;
    -webkit-box-shadow: 0px 0px 5px rgba(200,200,200,.95);
            box-shadow: 0px 0px 5px rgba(200,200,200,.95);
    color: white;
    font-size: 32px;
    font-weight: bold;
    z-index: 1001;
    padding: 0;
    transition: .4s right ease-in-out;
    -webkit-transition: .4s right ease-in-out;
}
#pl_info_btn.close_btn::after{
    position: absolute;
    top:50%;
    left:50%;
    content:'';
    width: 20px;
    border-bottom: 2px solid white;
    -webkit-transform: translate(-50%,-50%) rotateZ(45deg);
}
#pl_info_btn.close_btn::before{
    position: absolute;
    top:50%;
    left:50%;
    content:'';
    width: 20px;
    border-bottom: 2px solid white;
    -webkit-transform: translate(-50%,-50%) rotateZ(-45deg);
}
#pl_info_btn:hover{
    -webkit-box-shadow: 0px 0px 10px rgba(200,200,200,.95);
            box-shadow: 0px 0px 10px rgba(200,200,200,.95);
}
#pl_info_btn:focus {
    outline: none;
}
#pl_info_container{
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -40vw;
    height: 100vh;
    width: 40vw;
    padding: 50px;
    background-color: white;
    transition: .45s all ease-in-out;
    -webkit-transition: .45s all ease-in-out;
    overflow-y: scroll;
    overflow-x: hidden;
    color: #4c4c4c;
    opacity: 0;
    font-family: 'Roboto Mono', 'Courier New', Courier, monospace;
}
.container_open{
    right: 0 !important;    
    opacity: 1 !important;
}
.social_container{
    display: block;
    float: right;
    max-width: 50%;
    list-style: none;
}
.social_container .social_item{
    width: 25px;
    height: 25px;
    margin: 0 5px;
    float: right;
    border: 1px solid #4c4c4c;
    padding: 4px;
}
.social_container .social_item a{
    display: block;
    height: 100%;
    width: 100%;
    background: #4c4c4c;
}
.social_container .social_item #facebook{
    -webkit-mask: url('../svg/fb.svg') no-repeat 50% 50%;
            mask: url('../svg/fb.svg') no-repeat 50% 50%;
    -webkit-mask-size: contain;
            mask-size: contain;
}
.social_container .social_item #instagram{
    -webkit-mask: url('../svg/ig.svg') no-repeat 50% 50%;
            mask: url('../svg/ig.svg') no-repeat 50% 50%;
    -webkit-mask-size: contain;
            mask-size: contain;
}
.social_container .social_item #twitter{
    -webkit-mask: url('../svg/tw.svg') no-repeat 50% 50%;
            mask: url('../svg/tw.svg') no-repeat 50% 50%;
    -webkit-mask-size: contain;
            mask-size: contain;
}
.social_container .social_item #youtube{
    -webkit-mask: url('../svg/yt.svg') no-repeat 50% 50%;
            mask: url('../svg/yt.svg') no-repeat 50% 50%;
    -webkit-mask-size: contain;
            mask-size: contain;
}
.pl_h1{
    font-size: 24px;
    float: left;
}
#pl_info_container_table{
    display:table;
    border-collapse:separate;
    padding-top: 18px;
    table-layout: fixed;
}
#pl_info_container_table tr td{
    width: 100%;
    word-wrap: break-word;
    font-size: 12px;
}
.spacer{
    display: table-row;
    height: 12px;
}
.pl_data_name{
    text-transform: uppercase;
    color: #4c4c4c;
    font-size: 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    height: 28px;
}
#pl_map{
    height: 250px;
    margin-top: 25px;
}
#pl_dark_overlay{
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
}
.pl_data_map{
    position: relative;
    width: 100%;
    padding: 10px 0;
}
.pl_data_map td{
    padding-bottom: 18px;
}
.pl_data_value td{
    padding-bottom: 18px;
}
.pl_data_name{
    font-family: 'Roboto Mono', 'Courier New', Courier, monospace;
}
.pl_circle{
    display: inline-block;
    margin-right: 6px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
}
.pl_circle.green{
    background-color: green;
}
.pl_circle.red{
    background-color: red;
}
@media (max-width: 970px){
    #pl_info_container{
        width: 100vw;
        right: -100vw;
        padding: 15px;
    }
    #pl_info_btn{
        bottom: 25px;
        right: 25px;
    }
}

@keyframes lds-rolling {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes lds-rolling {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#info_loader_rolling{
    position: absolute;
    top: 50vh;
    left: 50%;
    transform: translate(-50%,-50%);
}
.lds-rolling {
  /*position: relative;*/
}
.lds-rolling div,
.lds-rolling div:after {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 10px solid #626D7F;
  border-top-color: transparent;
  border-radius: 50%;
}
.lds-rolling div {
  -webkit-animation: lds-rolling 1s linear infinite;
  animation: lds-rolling 1s linear infinite;
  top: 100px;
  left: 100px;
}
.lds-rolling div:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.lds-rolling {
  width: 100px !important;
  height: 100px !important;
  -webkit-transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
  transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
}