#AppPageTracker {
    text-align: center;
    display: flex;
    flex-direction: column;
}

#AppPageTracker .bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#AppPageTracker .content {
}

#AppPageTracker .top {
    background: #D61317;
    padding-top: 0px;
}

#AppPageTracker .image {
    display: inline-block;
    width: 140px;
    height: 140px;
    background-image: url("../img/runner-timer-start.svg");
    background-size: 55%;
    background-position: center center;
    background-repeat: no-repeat;
    border: 2px solid #FFFFFF;
    border-radius: 100%;
    margin-bottom: 20px;
}

#AppPageTracker .image.start {
    background-image: url("../img/runner-timer-start.svg");
}

#AppPageTracker .image.stop {
    background-image: url("../img/runner-timer-stop.svg");
    background-size: 35%;
}

#AppPageTracker .action_title {
    color: #FFFFFF;
    display: block;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 1px;    
    padding-bottom: 80px;
}

#AppPageTracker .action_button_container {
    display: inline-block;
    background: #FAFAFA;
    padding: 10px;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    margin-top: -60px;
}

#AppPageTracker .action_button {
    width: 100%;
    height: 100%;
    background-color: #F2ECFA;
    border-radius: 100%;
    background-size: 30%;
    background-position: center center;
    background-repeat: no-repeat;
}

#AppPageTracker .action_button.start {
    background-image: url("../img/button-timer-start.svg");
    background-position: 55% center;
    background-size: 35%;
}

#AppPageTracker .action_button.stop {
    background-image: url("../img/button-timer-stop.svg");
}

#AppPageTracker .action_time {
    display: block;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 1px;    
    margin-top: 10px;
    opacity: 0.5;
}

#AppPageTracker .action_time.enabled {
    opacity: 1;
}

#AppPageTracker .tracker_image_container {
    flex: 1;
    margin-top: 20px;
}

#AppPageTracker .tracker_image {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-image: url("../img/logo.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

#AppPageTracker_Button_Select {
    /*
    text-overflow: ellipsis;    
    max-width: 173px;
    overflow: hidden;
    white-space: nowrap;
    */
}

@media screen and (max-height: 750px) {
    #AppPageTracker .image {
        width: 60px;
        height: 60px;
    }
    #AppPageTracker .five_image {
        width: 40px;
        height: 40px;
    }
    #AppPageTracker .button {
        padding: 10px 20px;
    }
}

