.main_container_overlay{
    position: relative;
    width: 100%;
    min-height: 99vh;
    
    padding-top: 0;
   
    
    align-items: center;
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
   z-index: -2;
    
    color: white;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.main_container_overlay:before{
    content: "";
    position: absolute;
    width : 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    
    filter        : blur(10px);
    -moz-filter   : blur(10px);
    -webkit-filter: blur(10px);
    -o-filter     : blur(10px);
    
    transition        : all 2s linear;
    -moz-transition   : all 2s linear;
    -webkit-transition: all 2s linear;
    -o-transition     : all 2s linear;
}



.main_container{
    background-color: rgba(0,0,0,0.7);
    z-index: 2;
  
    height:100%;
    min-height: 100vh;
}


.single_person_result{
    padding: 0 15px;
}
.global_result_single_person{
    text-align: center;
}
.global_result_single_person span{
    color: #79d8d0;

}

.media_section{
    display: flex;
    justify-content: space-around;
}

.camera_section > img{
    max-width: 281px;
    max-height: 132px;
    padding-left: 0.1remM
}

.camera_section{
    align-content: center;
display: flex;
flex-direction: column;
align-items: center;
align-self: center;
}

#cam_div{
    
position: fixed;
background:rgba(0,0,0,0.9);
border:2px solid white;
left: 0;
top: 0;
right: 0;
bottom: 0;
max-width: 70%;

margin-left: auto;
margin-right: auto;

margin-top: auto;
margin-bottom: auto;
height: max-content;
}



#webcam,#canvas{
    /*width: 100%;
    height: 80%;*/
    max-width: 60vw;
    margin:5px;
}
.no-display{
    display: none !important;
}

.btn {
    width: max-content;
    max-height: 50px;
    
    color: #e0e0e0;
   
   
    border: 1px solid white;
    padding: 10px;
    border-radius: 4px;
    margin:0.4rem 0.2rem;
    /*border-bottom: 4px solid #ffff;*/
    transition: all 0.2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .btn:hover {
    
    color: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;
    opacity: 0.8;
  }

  .generic-row{
      display: flex;
      align-content: center;
      align-self: center;
      align-items: center;
      padding: 40px;
      margin:10px;
      flex-direction: column;
  }

  .btn_cont{
      display: flex;
      flex-direction: row;
      font-size: 1em;
  }

  .selfie_mask_div{
      display: flex;
      justify-content: center;
      margin:2em;
  }
  .selfie_mask_div img{
      max-width: 500px;
      max-height: 380px;
      margin: 0 0.5em;
      border-radius: 25px;
  }

  #webcam-row {
     color: white;
  }

  #distribution_chart {
   padding-left: 1%;
   padding-right: 1%;
  }

  @media screen and (max-width: 1024px){

    .media_section {
        flex-direction: column;
    }

    .generic-row{
        
        flex-direction: column;
    }

    #webcam,#canvas{
       width: 100%;
       height: auto;

       min-width: 60vw;
       min-height: 20vh;

    }
    .btn_cont{
        
        flex-direction: row;
        flex-wrap:wrap ;
    }

    .selfie_mask_div{
        flex-direction: column;
    }


    .single_person_result{
        text-align: center;
    }

    .single_person_result > h3{
        font-size: 3rem;
    }

    img {
       
        height: unset;
        object-fit: contain;
       
    }
    


    
  

  }
