
.main-container {
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
}

.item-container-horizontal {
    display: flex;
    flex-direction: row;
    
    margin-top: 10px; 
    margin-left: 10px; 
    margin-right: 10px; 
    
    min-width: 280px;
    color: white;
    box-shadow: 3px 3px 2px #555;
    cursor: pointer;
}

.subitem-icon {
    line-height: 0;
    background-color: #00b1e6;
}

.subitem-icon-text1 {
    flex-grow: 1;
    line-height: 1;
    background-color: #00b1e6;
    font-weight: bold;
    font-size: 20px;
    align-self: center;
}

.subitem-text-item2 {
    flex-grow: 2;
    text-align: right;
    font-weight: bold;
    font-size: 25px;
    padding-right: 20px;
    align-self: center;
    background-color: #004a99;
}

.subitem-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #004a99;
}

.subitem-left {
  background-color: #00b1e6;
}

.subitem-right {
  flex-grow: 1;
  background-color: #004a99;
  justify-content: flex-end;
}

.horizontal-order {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.vertical-order {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.item-text {
    line-height: 1;
    font-weight: bold;
    font-size: 18px;
    padding: 5px;
}

.text-item3 {
    flex-grow: 3;
    text-align: right;
    font-weight: bold;
    font-size: 25px;
    padding-right: 20px;
    align-self: center;
}

.text-item1 {
    flex-grow: 1;
    text-align: center;
    line-height: 0;
    align-self: center;
}

.text-production {
    line-height: 0;
    height: 35px;
    text-align: right;
}

.chart-item {
    background-color: #004a99;
}

.turbineArea {
    flex-grow: 1;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.buttonArea {
    /*background-color: red;*/
    padding: 8px;
}

.buttonArea button {
    background-color: #004a99;
    color: white;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.leftText {
    padding-left: 15px;
}

.rightText {
    padding-right: 15px;
}

@media only screen and (min-width: 620px) {
    .main-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .turbineArea {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        align-content: flex-start;
    }
    
    .item-container-horizontal {
        margin-right: 0;
        flex-grow: 1;
        flex-basis: 300px;
        max-width: 300px;
        /*box-shadow: 3px 3px 2px #555;*/
    }
    
    .chart-item {
        flex-basis: 620px;
        max-width: 620px;
    }
}

@media only screen and (min-width: 800px) {
    .main-container {
        padding-bottom: 142px;
    }
}