.preview-button-div, .values-div {
    width: 80%;
    margin: 20px auto;
}

.preview-button-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;

    border-radius: 40px;

    background-color: #212121;
    transition: height 0.2s ease-in-out;
}

.preview {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#reader {
    width: 100%;
    z-index: 1;
}

#reset-button {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);

    font-size: 60px;
    border-radius: 20px;

    background-color: #186700;
    z-index: 2;
}

.cam-likeness-div {
    position: absolute;
    font-size: 100px;
    color: white;
    z-index: 0;
}

#cam-likeness-display {
    margin-bottom: 0;
}

#cam-comment {
    margin: 0;
    font-size: 50px;
}

#selector {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 20px;
}

#camera-selector {
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 0 16px;

    border: 2px solid #212121;
    border-radius: 20px;
    color: #fff;

    background-color: #323232;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.values-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.values, #likeness-div {
    width: 100%;
    margin: 5px;

    border-radius: 20px;
    color: #fff;

    background-color: #212121;
}

.values {
    padding: 20px 0;
}

#likeness-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 87px;
    padding: 20px 40px;
    box-sizing: border-box;
}

#likeness-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    z-index: 1;

    background-color: #186700;
    transition: width 0.3s ease-in-out;
}

#likeness-value {
    position: relative;
    z-index: 2;
    margin: 0;
}

.changes-button-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    opacity: 0;
}

#changes-button {
    padding: 10px 20px;
    font-size: 60px;
    color: #000;

    background-color: #dddddd;
}

#search-button {
    padding: 10px 20px;
    font-size: 60px;
    color: #000;

    background-color: #dddddd;
}

.disappear {
    display: none;
    opacity: 0;
}