.m7-df {
    margin-bottom: 48px;
}

.m7-df-info {
    display: -ms-flexbox;
    display: flex;
    border-bottom: #289dcc solid 2px
}

.m7-df-left {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 12px;
}

.m7-df-right {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.m7-df .label {
    font-weight: bold;
}

.m7-df .info .icon {
    box-sizing: content-box;
    margin: 6px;
}

.m7-df .icon {
    margin: 0;
}

.m7-df .main-icons {
    display: -ms-flexbox;
    display: flex;
    height: 96px;
    -ms-flex-align: center;
    align-items: center;
}

.m7-df .row {
    margin-bottom: 12px;
}

.m7-df .info {
    display: -ms-flexbox;
    display: flex;
}

.m7-df .head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-align: center;
    align-items: center;
}

.m7-df-tabs {
    overflow: auto;
}

.m7-df .calendar, .m7-df .tablink {
    text-align: center;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 18px;
    padding: 6px 12px;
    min-width: 96px;
    color: white;
    background-color: #289dcc;
}

.m7-df .tablink {
    cursor: pointer;
    opacity: 0.50;
    margin-right: 1px;
}

.m7-df .calendar, .m7-df .tablink.active, .m7-df .tablink:hover, .m7-df .tablink[selected] {
    background-color: #289dcc;
    opacity: 1;
}

.m7-df .calendar.inline {
    display: -ms-flexbox;
    display: flex;
}

.m7-df .dow, .m7-df .dom, .m7-df .month {
    padding: 0 4px 0px 0px;
}

.m7-df .info-left {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 6px;
}

.m7-df .info-right {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.tabcontent {
    display: none;
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}

.tabcontent[selected] {
    display: block;
}

amp-selector .tabcontent[selected] {
    outline: none;
}

/* Go from zero to full opacity */

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}