/**
 * @copyright 2015 MarkCon
 * @link http://www.markcon.hu
 */

@CHARSET "UTF-8";

/* Dashboard oldal

    Mindegyik elején: #dashboard
*/

/*  ----------  TAB  ----------  */

    #dashboard .Tabs .Navigation li.Dashboard-Daily .Icon {
        background-image: url("image/tab-daily-inactive.png");
    }

    #dashboard .Tabs .Navigation li.Dashboard-Daily.Active .Icon {
        background-image: url("image/tab-daily-active.png");
    }

    #dashboard .Tabs .Navigation li.Dashboard-Monthly .Icon {
        background-image: url("image/tab-monthly-inactive.png");
    }

    #dashboard .Tabs .Navigation li.Dashboard-Monthly.Active .Icon {
        background-image: url("image/tab-monthly-active.png");
    }

    #dashboard .Tabs .Navigation li.Dashboard-Competition .Icon {
        background-image: url("image/tab-competition-inactive.png");
    }

    #dashboard .Tabs .Navigation li.Dashboard-Competition.Active .Icon {
        background-image: url("image/tab-competition-active.png");
    }

    #dashboard .Tabs .Navigation li .Icon {
        display: none;
    }

/*  ----------  CALENDAR  ----------  */

    #dashboard .Calendar .Week {
    }

    #dashboard .Calendar .Day {
        background-color: #ebebeb;
        border: 1px solid #ddd;
        float: left;
        width: 12.28%;
        margin: 0.5% 1%;
        height: 40px;
        color: #aeaeae;
        font-size: 30px;
        line-height: 40px;
        font-weight: bold;
        padding: 0 10px;
        position: relative;
    }

    #dashboard .Calendar .Day.TrainingPlayed {
        color: #fff;
    }    
    
    #dashboard .Calendar .Day.TrainingPlayed.Count1 {
        background-color: #96E3EB;
    }    


    #dashboard .Calendar .Day.TrainingPlayed.Count2 {
        background-color: #41daeb;
    }

    #dashboard .Calendar .Day.Completed {
        color: #fff;
        background-color: #739adb;
    }

    #dashboard .Calendar .Day.Outstanding:after {
        content: " ";
        position: absolute;
        width: 28px;
        height: 28px;
        right: 5px;
        top: 5px;
        background-image: url("image/star.png");
        background-repeat: no-repeat;
        background-position: center;
    }

    #dashboard .CalendarExplanation {
        text-align: center;
    }

    #dashboard .CalendarExplanation li {
        display: inline-block;
        min-height: 24px;
        font-size: 20px;
        line-height: 24px;
        text-transform: uppercase;
        font-family: 'PT Sans Narrow', 'Arial', 'Verdana';
        vertical-align: top;
        white-space: nowrap;
        font-weight: bold;
        margin: 10px;
        position: relative;
        padding-left: 34px;
    }

    #dashboard .CalendarExplanation li .Icon {
        width: 24px;
        height: 24px;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
    }

    #dashboard .CalendarExplanation li .Label {
        line-height: 24px;
        display: inline-block;
        min-height: 24px;
        vertical-align: top;
    }

    #dashboard .CalendarExplanation li.TrainingPlayed {
        color: #41daeb;
    }

    #dashboard .CalendarExplanation li.TrainingPlayed .Icon {
        background-color: #41daeb;
        border: 1px solid #ddd;
    }

    #dashboard .CalendarExplanation li.Completed {
        color: #739adb;
    }

    #dashboard .CalendarExplanation li.Completed .Icon {
        background-color: #739adb;
        border: 1px solid #ddd;
    }

    #dashboard .CalendarExplanation li.Outstanding {
        color: #f0c20c;
    }

    #dashboard .CalendarExplanation li.Outstanding .Icon {
        background-image: url("image/star.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        #dashboard .CalendarExplanation {
            margin-top: 30px;
            text-align: left;
        }

        #dashboard .CalendarExplanation li {
            display: block;
            white-space: normal;
        }
    }

    @media (max-width: 767px) {
        #dashboard .Calendar .Day {
            font-size: 18px;
            text-align: center;
            padding: 0;
        }
    }

    #dashboard .Scores {
        position: relative;
    }
    
    #dashboard .Scores svg {
        display: block;
        width: 100%;
        position: relative;
        font-size: 1em;
    }
    
    #dashboard .Scores .Background {
        position: absolute;
        left: 0.5%;
        right: 0.5%;
        top: 0.5%;
        bottom: 0.5%;
        background: -webkit-linear-gradient(top, #ade, #EBFBFF);
        background: linear-gradient(to bottom, #ade, #EBFBFF);
    }    
    
    #dashboard .Scores .FillOut .Fill {
        fill: #fff;
        stroke: none;
    }
    
        
    #dashboard .Scores .Values .Line {
        fill: none;
        stroke: #ade;
        stroke-width: 2;
        vector-effect: non-scaling-stroke;
    }
    
    #dashboard .Scores .ValuePoints .Day {
        fill: #aaa;
        stroke: none;
    }
    
    #dashboard .Scores .ValuePoints .Day.TrainingPlayed.Count1 {
        fill: #96E3EB;
    }    

    #dashboard .Scores .ValuePoints .Day.TrainingPlayed.Count2 {
        fill: #41daeb;
    }
        
    #dashboard .Scores .ValuePoints .Day.Completed {
        fill: #739adb;
    }
    
    #dashboard .Scores .ValuePoints .Day.Outstanding:before {
        content: " ";
        position: relative;
        width: 10px;
        height: 10px;
        background: #ddd;
    }
    
    #dashboard .Scores .Star {
        stroke: none;
        fill: #f0c20c;
    }

    #dashboard .Scores .MouseOver .ValueLabel,
    #dashboard .Scores .MouseOver .DayLabel {
        display: none;
    }

    #dashboard .Scores .MouseOver rect.ValueLabel {
       fill: #fff;
       stroke: #1ce4ae;
       stroke-width: 1;
       vector-effect: non-scaling-stroke;
    }

    #dashboard .Scores .MouseOver text {
        font-size: 0.6em;
        font-family: 'PT Sans Narrow', 'Arial', 'Verdana';
        text-anchor: middle;
        font-weight: bold;
    }
    
    #dashboard .Scores .MouseOver text.ValueLabel {
        fill: #42b3e5;
        dominant-baseline: mathematical;
    }

    #dashboard .Scores .MouseOver text.DayLabel {
        fill: #aeaeae;
    }

    /*  ----------  CALENDAR  ----------  */

    #dashboard .Dashboard-Celebrities .Missions {
        position: relative;
    }

    #dashboard .Dashboard-Celebrities .Mission {
        margin: 10px;
    }

    #dashboard .Dashboard-Celebrities .Mission.Information {
        position: absolute;
        left: 0;
        top: 0;
    }

    /* Responsive */

    @media (max-width: 992px) and (min-width: 768px) {
        #dashboard .Dashboard-Celebrities .Missions {
            padding-left: 0;
        }

        #dashboard .Dashboard-Celebrities .Missions .Mission.Information {
            position: static;
            float: none;
            width: auto;
            height: auto;
            padding: 0;
        }

        #dashboard .Dashboard-Celebrities .Mission .Content {
            position: static;
            top: auto;
            -moz-transform: none;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }

        #dashboard .Dashboard-Celebrities .Missions .Mission.Information .Title {
            font-size: 26px;
        }

        #dashboard .Dashboard-Celebrities .Missions .Mission.Information .Description {
            font-size: 18px;
        }
    }

    @media (max-width: 1200px) and (min-width: 992px) {
        #dashboard .Dashboard-Celebrities .Mission .Content {
            padding: 10px;
        }

        #dashboard .Dashboard-Celebrities .Missions .Mission.Information .Description {
            font-size: 16px;
        }
    }

    @media (min-width: 992px) {
        #dashboard .Dashboard-Celebrities .Missions {
            padding-left: 235px;
        }
    }

    @media (min-width: 1200px) {
        #dashboard .Dashboard-Celebrities .Missions {
            padding-left: 285px;
        }
    }

    @media (max-width: 768px) {
        #dashboard .Dashboard-Celebrities .Mission.Information {
            position: static;
        }

        #dashboard .Dashboard-Celebrities .Mission {
            margin: 10px auto;
            float: none;
        }

        #dashboard .Dashboard-Celebrities .ResultTable .Column {
            width: 100% !important;
        }
    }

.popup{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 100;
    display: none;
    top: 0;
}

.popup .content {
    position: relative;
    top: 50%;
    padding: 15px 30px 15px;
    max-width: 80%;
    max-height: 100%;
    display: table;
    margin: 0 auto;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #ffffff;
    color: #3db9de;
    font-weight: 600;
    line-height: 1.4em;
    border-radius: 10px;
    font-family: 'Open Sans', 'Arial', 'Verdana';
    font-size: 16px;
}

.popup .popupTitle {
    font-size: 25px;
    margin: 20px 0;
}

.popup .content img{
    max-width: 100%;
    height: auto;
    margin: 10px auto 5px;
    border-radius: 15px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(50, 50, 50, 0.45);
    -moz-box-shadow:    1px 1px 10px 0px rgba(50, 50, 50, 0.45);
    box-shadow:         1px 1px 10px 0px rgba(50, 50, 50, 0.45);
}

.popup .closeButton {
    /* content: ''; */
    /* position: absolute; */
    /* top: 5px; */
    right: 10px;
    width: 540px;
    /* height: 40px; */
    /* background: url("image/close-button.png") no-repeat right; */
    cursor: pointer;
    z-index: 1000;
    padding: 4px 32px 4px 4px;
    color: #fb783e;
    margin: 0 auto;
    border-radius: 5px;
}
.popup .closeButton:hover {
    color: #ffffff;
    background: url("image/close-button.png") no-repeat right #fb783e;
}
.popup .toProfile {
    margin: 10px 0;
}
.popup .toProfile a {
    color: #1ce4ae;
    padding: 5px;
    border-radius: 5px;
}
.popup .toProfile a:hover {
    color: #fff;
    background-color: #1ce4ae;
}