.container.dashboard {
    width: 100%;
    border-bottom: solid 1px rgba(0,0,0,0.1);
}
.dashboard-map-text{
    padding: 10px;
    width: 40%;
    margin-bottom: 50px;
    margin-left: 39%;
    margin-top: 50px;
}
#map-product-text{
    background-color: white;
}
#become-sub{
    margin-left: 64%;
    width: 17%;
}
#become-sub .dropdown-content{
    left:100%;
    top: 0;
    width: 250px;
}
.dropdown-content a{
    cursor: pointer;
}

    .sidenav {
    height: 100%;
    width: 23%;
    position: absolute;
    z-index: 1;
    margin: 0;
    background-color: #EEEEEE;
    overflow-x: scroll;
}

.sidenav a {
  padding: 6px 8px 6px 15px;
  text-decoration: none;
  font-size: 20px;
   color: #555;
  display: block;
    cursor: pointer;
}
.sidebar-elements{
    background-color: rgba(0,0,0,0.1);
    width: 100%;
    margin-top: 16px;
}
.sidebar-elements img{
    width: 20px;
    margin-right: 10px
}
.sidebar-elements span {
    background-color: #EEEEEE;
    padding: 6px;
    margin-right: 5px;
}

#profilediv{
    width: 33%;
    margin-left: 40%;
    margin-top: 50px;
}

.sidebar-elements.active {
  background-color: rgba(0,0,0,0.25);
}
@media screen and (max-height: 450px) {

  .sidenav a {font-size: 12px;}
}
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
    position: absolute;
    background-color: #EEEEEE;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 340px;
    right: 1%;
}

.dropdown-content a {
    color: black;
    padding: 7px 16px 6px 4px;
    text-decoration: none;
    display: block;
    border-bottom: solid 1px rgba(0,0,0,0.3) ;
}

.dropdown-content a:hover {background-color: rgba(0,0,0,0.25);}

.dropdown:hover .dropdown-content {display: block;}



#product_type{
    text-align: left;
    color: rgba(0,0,0,0.4);
    font-size: 12px;
}
#select_product{
    float: right;
    margin-top: 27px;
    padding: 5px;
    border: 1px solid rgba(0,0,0,0.25);
    background-color: rgba(0,0,0,0.05);
}
#select_product select {
    width: 126px;
    height: 24px;
    background: white;
    font-size: 14px;
}
#not-sub{
    background-color: #76ADBC;
    padding: 15px;
    color: white;}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-inn {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fade-inn.one {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fade-inn.two {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay:1.2s;
  animation-delay: 1.2s;
}

.fade-inn.three {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}