/*MDL Card style*/
.card-exam {
    /*margin: 10px;
    min-width: 200px;
    min-height: 100px;*/
}
.card-exam > .buttonTop{
    width: 100%;
    height: 100px;
    /* background-color: #00B7FF; */
}
.card-exam > .buttonMiddle{
    width: 100%;
    height: 100px;
}
.card-exam > .buttonLow{
    width: 100%;
    height: 100px;
}
.card-exam > .mdl-card__actions {
    display: flex;
    box-sizing: border-box;
    align-items: center;
}
.card-exam > .mdl-card__title {
    align-items: flex-start;
}
.card-exam > .mdl-card__title > h4 {
    margin-top: 0;
}
.card-exam > .mdl-card__title,
.card-exam > .mdl-card__supporting-text,
.card-exam > .mdl-card__actions,
.card-exam > .mdl-card__actions > .mdl-button {
    color: #000000;
}
.mdl-dialog{
    width: 90%;
}
.exam-list-control {
}


/* MDL SnackBar style from http://codepen.io/wibblymat/pen/avAjq
*/
.paper-snackbar {
    -webkit-transition-property: opacity, bottom, left, right, width, margin, border-radius;
    transition-property: opacity, bottom, left, right, width, margin, border-radius;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    font-family: RobotoDraft;
    font-size: 14px;
    min-height: 14px;
    background-color: #323232;
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    line-height: 22px;
    padding: 18px 24px;
    bottom: 0px;
    opacity: 0;
    z-index: 10000;
}

@media (min-width: 800px) {
    .paper-snackbar {
        /*
        Desktop:
          Single-line snackbar height: 48 dp tall
          Minimum width: 288 dp
          Maximum width: 568 dp
          2 dp rounded corner
          Text: Roboto Regular 14 sp
          Action button: Roboto Medium 14 sp, all-caps text
          Default background fill: #323232 100%
        */
        min-width: 288px;
        max-width: 568px;
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        border-radius: 2px;
        margin: 24px;
        bottom: -100px;
    }
}
@media (max-width: 800px) {
    .paper-snackbar {
        /*
        Mobile:
          Single-line snackbar height: 48 dp
          Multi-line snackbar height: 80 dp
          Text: Roboto Regular 14 sp
          Action button: Roboto Medium 14 sp, all-caps text
          Default background fill: #323232 100%
        */
        left: 0px;
        right: 0px;
    }
}
.paper-snackbar .action {
    background: inherit;
    display: inline-block;
    border: none;
    font-size: inherit;
    text-transform: uppercase;
    color: #ffeb3b;
    margin: 0px 0px 0px 24px;
    padding: 0px;
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
}

/*Round buttons style*/
.btn-red {
    background: #E53030;
    border: 3px solid #fff;
    border-radius: 100%;
    box-shadow: 0 -2px 0 3px #c91919 inset, 0 5px 5px rgba(65, 8, 8, 0.17), 0 15px rgba(255, 255, 255, 0.25) inset;
    cursor: pointer;
    display: inline-block;
    height: 22vw;
    width: 22vw;
    margin: 2%;
}

.btn-red:active {
    background: #333;
    box-shadow: 0 -2px 0 3px #1a1a1a inset, 0 5px 5px rgba(0, 0, 0, 0.17), 0 15px rgba(255, 255, 255, 0.32) inset;
}

.btn-red img {
    display: block;
    width: 76%;
    padding: 12%;
    height: auto;
    -webkit-filter: invert(1);
    filter: invert(1);
}

.btn-green {
    background: #0EC518;
    border: 3px solid #fff;
    border-radius: 100%;
    box-shadow: 0 -2px 0 3px #0b9512 inset, 0 5px 5px rgba(0, 7, 1, 0.17), 0 15px rgba(255, 255, 255, 0.25) inset;
    cursor: pointer;
    display: inline-block;
    height: 22vw;
    width: 22vw;
    margin: 2%;
}
.btn-green:active {
    background: #333;
    box-shadow: 0 -2px 0 3px #1a1a1a inset, 0 5px 5px rgba(0, 0, 0, 0.17), 0 15px rgba(255, 255, 255, 0.32) inset;
}

.btn-green img {
    display: block;
    width: 76%;
    padding: 12%;
    height: auto;
    -webkit-filter: invert(1);
    filter: invert(1);
}

.btn-yellow {
    background: #FFC334;
    border: 3px solid #fff;
    border-radius: 100%;
    box-shadow: 0 -2px 0 3px #ffb401 inset, 0 5px 5px rgba(103, 73, 0, 0.17), 0 15px rgba(255, 255, 255, 0.25) inset;
    cursor: pointer;
    display: inline-block;
    height: 22vw;
    width: 22vw;
    margin: 2%;
}
.btn-yellow:active {
    background: #333;
    box-shadow: 0 -2px 0 3px #1a1a1a inset, 0 5px 5px rgba(0, 0, 0, 0.17), 0 15px rgba(255, 255, 255, 0.32) inset;
}

.btn-yellow img {
    display: block;
    width: 76%;
    padding: 12%;
    height: auto;
    -webkit-filter: invert(1);
    filter: invert(1);
}
