﻿.roadmap-wrapper {
    width: calc(100% + calc(var(--block-list-padding) * 2));
    background-color: var(--background-secondary);
    font-family: Volvo Centum;
}

.roadmap-text {
    padding: 80px 30px 0 30px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 0 auto;
}

.roadmap-text * {
    line-height: 1.5;
    margin-bottom: 12px;
}

.roadmap-main {
    padding: 0 30px 80px 30px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 0 auto;
}
@media only screen and (max-width: 768px) {
    .roadmap {
        padding: 40px 0;
        width: 100%;
    }
}

.roadmap__progress {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--roadmap-progress-background-color);
    margin: 30px 0 30px 0;
    border-radius: 5px;
    box-shadow: 0 0 5px 4px var(--roadmap-shadow-color);
}

.roadmap__progress-heading {
    font-weight: 400;
    font-size: 1rem;
    color: var(--white);
    position: relative;
    line-height: 1.6;
    z-index: 2;
    margin: 0;
}

.roadmap__progress-completed {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 5px 0 0 5px;
    z-index: 1;
    background-color: var(--black);
    overflow: hidden;
    -webkit-box-shadow: 0 0 43px rgba(73, 71, 173, 0.5);
    box-shadow: 0 0 43px var(--roadmap-shadow-color);
}

.roadmap__progress-completed:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.001)), color-stop(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.001)));
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.001), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.001));
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.001), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.001));
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.001), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.001));
    animation: loading 3s infinite;
}

.roadmap__progress-completed[data-width="100"] {
    border-radius: 5px;
}

.roadmap__progress-completed[data-width="100"]:after {
    animation: none;
}

@-webkit-keyframes loading {
    0% {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

@keyframes loading {
    0% {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

.legend {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.11rem;
}

.legend h2 {
    font-size: 1.11rem;
    font-weight: 400;
    line-height: 1.6;
}

.legend .complete-color, .legend .pending-color, .legend .incomplete-color {
    display: inline-block;
    margin: 0 10px
}

.legend .complete-color {
    color: var(--black);
}

.legend .pending-color {
    color: var(--black-with-alpha);
}

.legend .incomplete-color {
    color: var(--black-with-alpha);
}

.roadmap__groups {
    display: flex;
    flex-wrap: wrap;
}

.roadmap__list {
    margin-bottom: 20px;
    width: 25%;
    min-width: 250px;
    padding: 10px;
}
@media only screen and (max-width: 768px) {
    .roadmap__list{
        width: 100%;
    }
}

.roadmap__list > header {
    padding: 5px;
    margin-bottom: 5px;
}

    .roadmap__list > .roadmap__progress {
        height: 30px;
        margin: 0;
        margin-bottom: 10px;
    }

.roadmap__task {
    background-color: white;
    margin-bottom: 4px;
    box-shadow: 0 4px 4px -2px var(--roadmap-shadow-color);
    border-radius: 4px;
}

.roadmap__task p{
    margin: 0;
}

.roadmap__task-head {
    position: relative;
    padding: 10px 15px;
    font-weight: bold;
    line-height: 1.6;
    cursor: pointer;
    font-size: 15px;
    color: var(--black);
    margin-block-start: 0;
}

    .roadmap__task-head i.fa {
        position: absolute;
        right: 15px;
        top: 16px;
        font-size: 12px;
        opacity: .5;
    }

    .roadmap__task-head span {
        font-weight: lighter;
    }

    .roadmap__task-head:hover i.fa {
        opacity: 1;
    }

.roadmap__task-body {
    padding: 10px 15px 20px 15px;
    line-height: 2;
    font-weight: 400;
}

    .roadmap__task-body ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .roadmap__task-body li {
        display: flex;
        font-size: 11px;
        position: relative;
        line-height: 18px;
        padding-top: 7px;
        font-weight: bold;
        padding-left: 22px;
        color: #A7A8A9;
    }

    .roadmap__task-body p {
        font-size: 14px;
        position: relative;
        line-height: 18px;
        padding-top: 7px;
        padding-left: 22px;
        font-weight: bold;
        color: #A7A8A9;
    }

    .roadmap__task-body li.subitem {
        text-indent: 20px;
    }

    .roadmap__task-body .fa {
        position: absolute;
        top: 8px;
        left: 0;
    }

    .roadmap__task-body .complete {
        color: var(--black);
    }

    .roadmap__task-body .pending {
        color: var(--roadmap-pending-color);
    }

    .roadmap__task-body .incomplete {
        color: var(--black-with-alpha);
    }

.roadmap__task-head + .roadmap__task-body {
    display: none;
    padding: 0 15px 20px;
}

.roadmap__task-head + .open {
    display: block;
}

.event-modal {
    color: #000;
}

    .event-modal a {
        color: #000;
        text-decoration: underline;
    }
