html, body {
    font-family: "Roboto Flex", Arial, Helvetica, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background: #131413;
    color: #000;
    margin: 0;
    padding: 0;
}
html {
    padding: 31px 0 60px;
}

a {
    text-decoration: none;
}

.footer {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.footer .logo {
    color: #191919;
    font-weight: 800;
    font-size: 700px;
    opacity: 0;
}
.footer .author {
    padding-top: 8px;
    color: #191919;
    font-size: 14px
}

.container {
    display:flex;
    flex-wrap:wrap;
    width: 100%;
    column-gap: 12px;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.col {
    /* flex: 1 0 0%; */
    width: 100%;
    max-width: 500px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.col-header {
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    font-weight: 600;
    color: rgb(60 59 59);
    margin-top: 15px;
}

.set.active .col-header {
    color: rgb(97 97 97);
}

.col-time {
    flex: 0 0 auto;
    width: auto;
    /* margin: 0 10px; */
}

.col-slot {
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    text-align: right;
    /* margin: 0 10px; */
}

.col-slot span {
    border-radius: 11px;
    padding: 3px 10px;
    background: #b57427;
    color: #f9f9f9;
    margin-right: -11px;
}

.row-task {
    display: flex;
    width: 100%;
    /* background: #3c3d3b; */
    /* margin: 0 10px; */
    margin-bottom: 6px;
    font-weight: 300;
    position: relative;
}

.row-task.vs span {
    background: #3d48de;
    border-radius: 13px;
    display: inline-block;
    padding: 2px 12px;
    margin: -1px -12px;
    width: 100%;
    color: #e0e1e7;
    border: 0;
    font-weight: 400;
}

.row-task.vs:after {
    content: "VS";
    text-align: right;
    top: 1px;
    right: 0px;
    position: absolute;
    color: #e0e1e7;
    font-weight: 400;
}

.set {
    margin-bottom: 12px;
    background: #9e8e9e;
    padding: 10px 20px;
}

.set.active {
    background: rgb(232 232 232);
}

#today-loot {
    background: rgb(255, 238, 125);
    padding: 10px 20px;
    margin-bottom: 12px;
    order: -1;
}
#today-loot span {
    border-radius: 13px;
    display: inline;
    padding: 2px 12px;
    margin: -1px 0px -1px 0px;
    background: #f1d031;
    font-weight: 600;
}

.dont {
    margin-bottom: 12px;
    background: rgb(184, 57, 57);
    padding: 3px 10px 0;
}

.dont table {
    border-collapse:collapse
}

.dont td {
    vertical-align: middle;
    padding: 6px 5px 10px;
    margin: 0;
}
.dont tr {
    border-bottom: 1px solid rgb(137 41 41);
}

.dont tr:last-child {
    border-bottom: 0;
}

.dont td.type span {
    border-radius: 13px;
    background: #191919;
    padding: 4px 14px;
    margin-left: -7px;
    color: #f9f9f9;
    margin-right: 0px;
    font-weight: 400;
    font-size: 14px;
    width: calc(100% - 21px);
    display: inline-block;
    text-align: center;
}

.dont td.item {
    font-size: 11px;
    font-weight: 500;
    color: rgb(207, 207, 207);
    width: 100%;
}

.dont td.item span {
    color: #f9f9f9;
    font-weight: 300;
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
}

/* @media (min-width:768px) { 
    .col {
        flex: 0 0 50%;
        
    }
    .container {
        flex-wrap: nowrap;
    }
} */

.header {
    position: fixed;
    top: 0;
    background: #2b292f;
    /* box-shadow: 0 1px 10px #000; */
    z-index: 999;
    width: 100%;
    height: 40px;
    line-height: 40px;
    vertical-align: baseline;
    text-align: center;
    font-size: 20px;
    font-weight: 200;
    color: #cc8d42;
    text-align: center;
    display: flex;
    justify-content: space-around;
}
.header div {
    display: inline-block;
    padding: 0 20px;
    border-right: 1px solid #000;
    flex: 1 0 0;
    cursor: pointer;
}
.header div:last-child {
    border-right: 0;
}
.header div:hover,
.header div.active {
    background: #b57427;
    color: #f9f9f9;
}

.navi {
    position: fixed;
    bottom: 0;
    background: #2b292f;
    /* border-top: 1px solid #360; */
    /* border-bottom: 1px solid #360; */
    /* box-shadow: 0 -1px 10px #000; */
    z-index: 999;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.navi a {
    color: #fff;
    border-right: 1px solid #444 !important;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 0;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

.navi a:last-child {
    border-right: 0 !important;
}

.navi a.active, .navi a:hover {
    background: #b57427;
}

.navi a.today {
    color: #ff4646;
}
.navi a.today.active, .navi a.today:hover {
    color: #910000;
}

.bytype {
    margin-bottom: 12px;
    background: rgb(232 232 232);
    padding: 5px;
}
.bytype table {
    border-collapse: collapse;
    width: 100%;
}
.bytype tr {
    border-top: 1px solid #9e8e9e;
}
.bytype tr.no-border {
    border-top: 0;
}
.bytype td {
    padding: 2px 0;
}
.bytype tr.no-border td {
    padding-top: 0;
}

.bytype .type {
    width: 70px;
}
.bytype td.type span {
    border-radius: 13px;
    background: #191919;
    padding: 4px 0;
    margin-left: -2px;
    color: #f9f9f9;
    margin-right: 0px;
    font-weight: 400;
    font-size: 12px;
    width: calc(100% - 2px);
    display: inline-block;
    text-align: center;
}
.bytype td.item {
    font-size: 11px;
    font-weight: 500;
}
.bytype td.item span {
    /* color: #f9f9f9; */
    font-weight: 300;
    font-size: 14px;
    display: block;
    /* margin-bottom: 2px; */
    line-height: 25px;
}
.bytype .weekdays {
    width: 158px;
    text-align: right;
    /* display: flex; */
    /* vertical-align: middle; */
    align-items: center;
    height: 100%;
    font-size: 0;
    padding: 0;
}
.bytype .weekdays span {
    display: inline-block;
    font-size: 9px;
    background: #838180;
    width: 20px;
    padding: 0;
    border-radius: 7px;
    margin: 0px 0 0 2px;
    text-align: center;
    height: 20px;
    vertical-align: middle;
    line-height: 20px;
    box-sizing: border-box;
    color: #f9f9f9;
}
.bytype .weekdays span.ar {
    background: #b57427;
}
.bytype .weekdays span.vs {
    background: #3d48de;
}

.legend {
    order: 999;
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.legend div {
    margin: 0 5px;
    line-height: 12px;
    color: #838180;
    font-size: 12px;
}

.legend div span {
    width: 12px;
    height: 12px;
    line-height: 12px;
    float: left;
    margin-right: 6px;
}
.legend .current-task {
    background: #e8e8e8;
}

.legend .upcoming-task {
    background: #9e8f9e;
}

.legend .arms-race {
    background: #b57427;
}

.legend .vs {
    background: #3d48de;
}

