.tablet {
    width: 300px;
    height: 350px;
}
.tablet.big {
    width: 300px;
    height: 350px;
}

.tablet .camera {
    display: none;
}
.tablet.big .camera {
    display: none;
}

.tablet .powerButton{
    display: none;
}
.tablet.big .powerButton {
    display: none;
}
.tablet .powerButton .label {
    display: none;
}

.tablet .powerButton:hover > .label {
    display: none;
}

.tablet .tabletContent {
    width: 267px;
    height: 315px;
    position: absolute;

    /* flexbox*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -webkit-box-align: center;

    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-box-pack: center;
    -moz-box-align: center;

    display: box;
    box-orient: vertical;
    box-pack: center;
    box-align: center;

    font-size: 12px;
    text-align: center;

    margin: 10px 10px;
    padding: 5px;
}
.tablet.big .tabletContent {
    width: 300px;
    height: 350px;
    margin: 10px 10px;
    padding: 5px;
}

.tabletContent .content.pixeltext {
    font-family: 'Press Start 2P', cursive;
}

.tabletContent .infoBar {
    display: none;
}

.tabletContent .infoBar .battery {
    display: none;
}