* {
    box-sizing: border-box;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
}

.app {
    width: 100%;
}

.content {
    float: left;
    width: calc(100% - 190px);
    margin-top: 20px;
}
.content .left, .content .right {
    float: left;
    width: 50%;
}

.info-block {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
}
.info-block .img {
    float: left;
    width: 40px;
    height: 40px;
    background-color: #ddd;
    background-position: center;
    background-size: 100% auto;
    margin-right: 10px;
    border-radius: 2px;
}

.info-block h1 {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
    font-weight: 400;
}

.week-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    line-height: 40px;
    color: #666;
}
.week-selector .week {
    position: relative;
    display: inline-block;
    padding: 0 6px;
    margin: 0 3px;
}

.week-selector .week select {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    visibility: hidden;
}

.week-selector .week:hover .label {
    visibility: hidden;
}
.week-selector .week:hover select {
    visibility: visible;
}