#zoom {
    position: absolute;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    display: none;
    z-index: 999;
}
#content{
    text-align: center;
}
#view {
    margin: 30px 0;
    height: 384px;
}

#view img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    opacity: 1 !important;
}

#thumbs {
    position: relative;
    margin: 20px 0;
}

#nav-left-thumbs {
    left: 70px;
}

#nav-right-thumbs {
    right: 70px;
}

#nav-left-thumbs, #nav-right-thumbs {
    position: absolute;
    top: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    font-size: 1em;
    font-weight: bold;
    color: #999;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    cursor: pointer;
    transition-duration: 0s;
}

#nav-left-thumbs {
    left: 0;
}
#nav-right-thumbs {
    right: 0;
}

#nav-left-thumbs:hover, #nav-right-thumbs:hover {
    background: lightgrey;
}

#pics-thumbs {
    position: relative;
    padding: 5px 0;
    margin: 0 10%;
    white-space: nowrap;
    overflow: hidden;
    transition-duration: 0s;
}

#pics-thumbs img {
    padding: 5px;
    margin: 0 2px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    cursor: pointer;
    height: 65px;
    transition-duration: 0s;
}