.FotoContainer {
    width: 100%;
    height: calc(100% - 7rem);
    background-color: transparent;

    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    display: flex;

    overflow-y: scroll;
    overflow-x: hidden;

    position: absolute;
    top: 7rem;
    left: 0;
}

.FotoContainer .FotoItem {
    width: 15rem;
    height: 16rem;
    background-color: whitesmoke;
    border-radius: 1rem;
    box-shadow: 0 0 10px -2px black;
    cursor: pointer;
    margin: 1rem;
}

.FotoContainer .FotoItem .Foto {
    width: 95%;
    height: 70%;
    background-color: black;
    border-radius: 1rem;
    overflow: hidden;

    position: relative;
    left: 2.5%;
    top: 2.5%;
}

.FotoContainer .FotoItem .Foto img {
    height: 100%;

    position: absolute;
    left: 50%;
    right: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.FotoContainer .FotoItem h1 {
    width: 94%;
    font-size: 1.6rem;
    text-align: center;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    top: 1.5rem;
    left: 3%;
}






.FullFotoScreen{
    width: 100%;
    height: 100%;
    z-index: 200;
    background-color: rgba(0, 0, 0, .8);
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;

    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: none;
}

.FullFotoView{
    width: 90%;
    height: 85%;
    background-color: black;
    overflow: hidden;
    border-radius: 1rem;

    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
}

#FullFoto{
    height: 100%;
    z-index: 200;
}
#FullFoto2{
    height: 100%;
    z-index: 150;
    display: none;
}

.FullFotoBtn{
    width: 50%;
    height: 10%;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 8vh;
    transition: .2s;

    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
}

.FullFotoBtn:hover{
    text-shadow: 0 0 6px whitesmoke;
}

#FullFotoCloseBtn{
    color: white;
    position: absolute;
    right: 1%;
    top: 2%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-shadow: 0 0 15px black;
    z-index: 250;

    user-select: none;
    -moz-user-select: none;
    cursor: pointer;
}








.FullVideoScreen{
    width: 100%;
    height: 100%;
    z-index: 200;
    background-color: rgba(0, 0, 0, .8);
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;

    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: none;
}

.FullVideoView{
    width: 90%;
    height: 85%;
    background-color: black;
    overflow: hidden;
    border-radius: 1rem;

    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
}

#FullVideo{
    height: 100%;
}

.FullVideoBtn{
    width: 50%;
    height: 10%;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 8vh;
    transition: .2s;

    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
}

.FullVideoBtn:hover{
    text-shadow: 0 0 6px whitesmoke;
}

#FullVideoCloseBtn{
    color: white;
    position: absolute;
    right: 1%;
    top: 2%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-shadow: 0 0 15px black;

    user-select: none;
    -moz-user-select: none;
    cursor: pointer;
}












.VideoContainer {
    width: 100%;
    height: calc(100% - 7rem);
    background-color: transparent;

    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    display: flex;

    overflow-y: scroll;
    overflow-x: hidden;

    position: absolute;
    top: 7rem;
    left: 0;
}

.VideoContainer .VideoItem {
    width: 15rem;
    height: 16rem;
    background-color: whitesmoke;
    border-radius: 1rem;
    box-shadow: 0 0 10px -2px black;
    cursor: pointer;
    margin: 1rem;
}

.VideoContainer .VideoItem .Video {
    width: 95%;
    height: 70%;
    background-color: black;
    border-radius: 1rem;
    overflow: hidden;

    position: relative;
    left: 2.5%;
    top: 2.5%;
}

.VideoContainer .VideoItem .Video video {
    height: 100%;

    position: absolute;
    left: 50%;
    right: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.VideoContainer .VideoItem h1 {
    width: 94%;
    font-size: 1.6rem;
    text-align: center;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    top: 1.5rem;
    left: 3%;
}




.VideFotoButtons{
    width: 100.8%;
    height: 3rem;

    align-items: center;
    text-align: center;
    justify-content: center;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;

    background-color: rgba(0, 187, 255, .7);
    color: whitesmoke;
    text-shadow: 0 0 5px black;
    user-select: none;
    -moz-user-select: none;

    position: absolute;
    top: 4rem;
    left: 0;
}

.VideFotoButtons div{
    cursor: pointer;
}




@media only screen and (max-width: 991px){
    .VideFotoButtons{
        width: 101.2%;
    }
}

@media only screen and (max-width: 700px){
    .VideFotoButtons{
        width: 101.9%;
    }
}

@media only screen and (max-width: 450px){
    .VideFotoButtons{
        width: 102.4%;
    }
}

@media only screen and (max-width: 400px){
    .VideFotoButtons{
        width: 103%;
    }
}

@media only screen and (max-width: 295px){
    .VideFotoButtons{
        width: 103.3%;
    }
}