* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Yu Gothic", sans-serif;
    font-size: 16px;

    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    touch-action: manipulation;
}

html, body {
    background-color: #FFFFFF;
}

header {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

header img {
    max-height: 96px;
}

.wrapper {
    margin: 0 auto;
    max-width: 720px;
    padding: 0 16px;
}

select.questions {
    padding: 8px;
    width: calc( 50% - 3px);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;

    border: 1px solid #000000;
    box-shadow: 0 0 4px 0 #000000;
    margin: 8px 0;
    font-weight: bold;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 20px;

    display: block;
}

input[type="text"].questions {
    padding: 8px;
    width: calc( 50% - 3px);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;

    border: 1px solid #000000;
    box-shadow: 0 0 4px 0 #000000;
    margin: 8px 0;
    font-weight: bold;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 20px;

    display: block;
}

.video_list {
    display: flex;
    flex-direction: column;
}

.panel {
    box-shadow: 0 0 8px 0 #000000;
    display: flex;
    text-decoration: none;
    color: black;
    height: 192px;
    margin: 8px 0;
}

.panel img {
    width: 40%;
    object-fit: contain;
}

.panel_details {
    display: flex;
    flex-direction: column;
}

.panel_details .title {
    font-size: 150%;
    font-weight: bold;
}

.panel_details .status_ng {
    color: red;
    font-weight: bold;
}
