*, html, body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif;
}

.main-container {
    padding: 30px;
    width: 100%;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header .navbar {
    width: 100%;
    display: flex;
    background: #FAFAFA;
    min-height: 86px;
    padding: 0 30px;
}

.header .navbar .navbar-nav .nav-item {
    margin: 0 25px;
}

.header .navbar .navbar-nav .nav-item.dropdown .dropdown-item {
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    color: #818181;
}

.header .navbar .navbar-nav .nav-item.dropdown .dropdown-item.active {
    color: #000000;
    background: none;
}

.header .navbar .navbar-nav .nav-item .nav-link {
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #818181;
}

.header .navbar .navbar-nav .nav-item .nav-link.active {
    color: #000000;
}

.header .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #000000;
}

.header .navbar .navbar-text.username {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #818181;
    margin-right: 60px;
}

.header .navbar .navbar-text a {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #818181;
}

.header .navbar .navbar-text a:hover {
    color: #000000;
}

table.table-report {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #DDDDDD;
    background: #FAFAFA;
    border-radius: 10px;
    width: 100%;
    margin: 30px 0;
}

table.table-report thead tr th:first-child {
    border-top-left-radius: 10px;
}

table.table-report thead tr th:last-child {
    border-top-right-radius: 10px;
}

table.table-report thead tr th {
    border-bottom: 1px solid #DDDDDD;
    background: #F4F4F4;
    font-weight: 500;
    color: #818181;
}

table.table-report thead tr th:not(:last-child),
table.table-report tbody tr td:not(:last-child){
    border-right: 1px solid #DDDDDD;
}

table.table-report.table-hover tbody tr:hover {
    background: #E8FFE4;
}

table.table-report.table-colorfull tbody tr.row-green {
    background: #E8FFE4;
}

table.table-report.table-colorfull tbody tr.row-yellow {
    background: #FFFFCC;
}

table.table-report.table-colorfull tbody tr.row-red {
    background: #d66978;
}

table.table-report th, table.table-report td {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 12px;
}

table.table-report tbody tr:not(:last-child) td {
    border-bottom: 1px solid #DDDDDD;
}

table.table-report td {
    font-weight: 300;
    color: #000000;
}

table.table-report td.employee,
table.table-report td.total-price {
    font-weight: bold;
}

table.table-report td.issue,
table.table-report td.comments {
    text-align: left;
}

table.table-report th.date,
table.table-report td.date {
    width: 190px;
}

table.table-report th.employee,
table.table-report td.employee {
    width: 300px;
}

table.table-report th.tracker,
table.table-report td.tracker {
    width: 180px;
}

table.table-report th.price,
table.table-report td.price{
    width: 100px;
}

table.table-report th.total-price,
table.table-report td.total-price {
    width: 130px;
}

table.table-report td:not(:last-child) {
    border-right: 1px solid #DDDDDD;
}

.radio-presentation {
    display: inline-flex;
    position: relative;
    width: 358px;
}

.radio-presentation a.radio-no-active {
    background: #F4F4F4;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    border-radius: 10px;
    display: inline-flex;
    width: 120px;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    color: #000000;
    align-items: center;
    justify-content: center;
}

.radio-presentation a.radio-no-active:hover {
    background: #FAFAFA;
}

.radio-presentation a.radio-active {
    background: #ED2024;
    border: 1px solid #ED2024;
    font-weight: 500;
    color: #FFFFFF;
}

.radio-presentation a.radio-active:hover {
    background: #ED2024;
    opacity: 0.7;
}

.radio-presentation a.radio-no-active:focus:focus-within {
    outline: none;
    box-shadow: none;
}

.radio-presentation .btn-group>.btn.radio-right-rounded {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn.btn-red {
    background: #ED2024;
    border: 1px solid #ED2024;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    padding: 4px 8px;
    height: 32px;
    align-self: center;
}

.btn.btn-red:hover {
    opacity: 0.7;
}

.btn.btn-red:focus:focus-within {
    outline: none;
    box-shadow: none;
}

.table-result {
    display: block;
    align-items: center;
}

.table-result .result-row {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    display: inline-flex;
    width: 350px;
    justify-content: flex-end;
}

.table-result .result-row:first-child {
    margin-bottom: 8px;
}

.table-result .result-row .price {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    min-width: 200px;
    width: 200px;
    text-align: right;
}

.login-content {
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.login-page .login-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content .login-form {
    background: #FFFFFF;
    border: 1px solid #CECECE;
    box-sizing: border-box;
    box-shadow: 0px 2px 5px #CDCDCD;
    border-radius: 50px;
    padding: 60px;
    width: 600px;
    text-align: left;
}

.login-content .login-form .title {
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 30px;
}

.login-content .login-form input {
    background: #FFFFFF;
    border: 1px solid #CDCDCD;
    box-sizing: border-box;
    border-radius: 10px;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 16px;
    height: 60px;
    margin-bottom: 20px;
}

.login-content .login-form input:focus:focus-within {
    outline: none;
    box-shadow: none;
}

.login-content .login-form .error-text {
    color: #ED2024;
    font-size: 12px;
    line-height: 14px;
    align-self: left;
    width: 100%;
}

.login-content .login-form .btn.btn-red-login {
    background: #ED2024;
    border: 1px solid #ED2024;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 16px;
    height: 56px;
    align-self: center;
    width: 100%;
    margin-top: 10px;
}

.login-content .login-form .btn.btn-red-login:hover {
    opacity: 0.7;
}

.login-content .login-form .btn.btn-red-login:focus:focus-within {
    outline: none;
    box-shadow: none;
}

table.calendar-table {
    width: 100%;
    background: #FAFAFA;
}

table.calendar-table tr.calendar-head th {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-align: left;
    color: #818181;
    height: 60px;
    background: #ffffff;
}

table.calendar-table .calendar-body tr:not(:last-child) {
    border-bottom: 1px solid #DDDDDD;
}

table.calendar-table .calendar-body td:not(:last-child) {
    border-right: 1px solid #DDDDDD;
}

table.calendar-table .calendar-body td {
    padding: 10px;
    vertical-align: top;
    min-height: 180px;
    height: 120px;
}

table.calendar-table .calendar-body td.current-day {
    background: #E8E8E8;
}

table.calendar-table .calendar-body td .day {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #818181;
    margin-bottom: 6px;
}

table.calendar-table .calendar-body td .day.current {
    color: #FFFFFF;
    background: #ED2024;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

table.calendar-table .calendar-body td .hours {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #000000;
    margin-left: 8px;
}

table.calendar-table .calendar-body td .note {
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    color: #000000;
    background: #E8FFE4;
    border-radius: 5px;
    padding: 8px 12px;
    margin-top: 5px;
}

table.calendar-table .calendar-body td .note .title {
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    color: #000000;
    margin-bottom: 2px;
}

table.calendar-table .calendar-body td .plan-note {
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    color: #000000;
    background: #f3d17a;
    border-radius: 5px;
    padding: 8px 12px;
    margin-top: 5px;
}

table.calendar-table .calendar-body td .plan-note .title {
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    color: #000000;
    margin-bottom: 2px;
}

.status-line {
    font-size: 14px;
    line-height: 18px;
    text-align: left;
}

a.arrow-btn {
    color: #818181;
}

a.arrow-btn:hover {
    color: #818181;
    text-decoration: none;
}

a.arrow-btn img {
    color: #818181;
    height: 20px;
    width: 20px;
}

.task-name {
    overflow-wrap: anywhere;
}

.employee-select {
    width: 236px;
    background-color: #F4F4F4;
    border: 1px solid #000000;
    box-sizing: border-box;
    border-radius: 10px;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 8px 24px 8px 16px;
    background-image: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
    background-position: calc(100% - 0.75rem) center !important;
    background-repeat: no-repeat;
    -moz-appearance:none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.employee-select:focus-within {
    outline: none;
    border: 1px solid #000000;
}

.calendar-checkbox {
    display: inline-flex;
    align-items: center;
}

.calendar-checkbox input {
    margin-right: 4px;
}