﻿/* weekLine dark css*/

.weekDays
{
    font-size: 18px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.weekDays a:not(.selectedDay)
{
    padding: 5px 10px !important;
    color: #396169;
    background: transparent;
    text-decoration: none !important;
    border: 1px solid rgba(34, 80, 92, 0.85);
}

.weekDays a:first-child:not(.selectedDay):not(:hover)
{
	border-radius: 15% 0 0 15% !important;
    padding: 5px 10px 5px 10px !important;
}

.weekDays a:first-child, .weekDays a:first-child:hover
{
	border-radius: 15% 0 0 15% !important;
}

.weekDays a:last-child:not(.selectedDay):not(:hover)
{
	border-radius: 0 15% 15% 0 !important;
    padding: 5px 10px 5px 10px !important;
}

.weekDays a:last-child, .weekDays a:last-child:hover
{
	border-radius: 0 15% 15% 0 !important;
}

.weekDays a:first-child .selectedDay 
{
    border-style: solid;
	border-radius: 15% 0 0 15%;
	border-width: 1px;
	border-color: gray;
	color: #396169;
    padding: 5px 10px 5px 9px;
    text-decoration: none;
}

.weekDays a:last-child .selectedDay 
{
    border-style: solid;
	border-radius: 0 15% 15% 0;
	border-width: 1px;
	border-color: gray;
	color: #000000;
    padding: 5px 10px 5px 10px;
    text-decoration: none;
}

.weekDays .selectedDay
{
    border-style: solid;	
	border-width: 1px;
	border-color: gray;    
    color: #ffffff !important;
    padding: 5px 10px 5px 10px;
    text-decoration: none;
    background: linear-gradient(to bottom, #396169 0%, #396169 100%) repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
}