.warningsModule{
	position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.warningsModule .background{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
}
.warningsModule .content{
	width: 1300px;
    height: 900px;
    background: #fff;
    position: relative;
    margin: 50px auto;
    border: 3px solid #000;
    border-radius: 4px;
    padding: 20px;
    overflow: auto;
}
.warningsModule .content .title{
    font-size: 40px;
    margin: 40px 0px 0px;
}
.warningsModule .content .currentWarningsHolder{

}
.warningsModule .content .currentWarningsHolder .project{
	clear: both;
    border-bottom: 1px solid #e6e6e6;
    overflow: auto;
    font-size: 16px;
    padding:5px 0px;
}
.warningsModule .content .currentWarningsHolder .project .info{
	float:left;
	width:100px;
}
.warningsModule .content .currentWarningsHolder .project .info.name{
	width:350px;
    color:var(--trackrDarkBlueColor);
}
.warningsModule .content .currentWarningsHolder .project .info.status{
	width:120px;
}
.warningsModule .content .currentWarningsHolder .project .info.price{

}
.warningsModule .content .currentWarningsHolder .project .info.projectManager{

}
.warningsModule .content .currentWarningsHolder .project .info.discount{
    font-size: 20px;
    color:var(--negativeColor);
}

.warningsModule .content .currentWarningsHolder .task{
    clear: both;
    border-bottom: 1px solid #e6e6e6;
    overflow: auto;
    font-size: 16px;
    padding:5px 0px;
}
.warningsModule .content .currentWarningsHolder .task .info{
    float:left;
    width:100px;
}
.warningsModule .content .currentWarningsHolder .task .taskStatus{
    width: 15px;
    height: 15px;
    background: #f9b334;
    float: left;
    position: relative;
    top: 4px;
    margin-right: 10px;
    border-radius: 10px;
}
.warningsModule .content .currentWarningsHolder .task .taskStatus.Complete{
    background: #4dbf34;
}
.warningsModule .content .currentWarningsHolder .task .info.nameHolder{
    width:400px;
}
.warningsModule .content .currentWarningsHolder .task .info.nameHolder .projectName{
    color:var(--trackrDarkBlueColor);
}
.warningsModule .content .currentWarningsHolder .task .info.nameHolder .taskName{
    margin-left:20px;
}
.warningsModule .content .currentWarningsHolder .task .info.projectStatus{
    width:120px;
}
.warningsModule .content .currentWarningsHolder .task .info.hoursOverage{
    font-size: 20px;
    color:var(--negativeColor);
}
