.tabs__list {
    padding-top: 3px;
    box-shadow: inset 0 -20px 20px -5px rgba(98, 142, 231, 0.07);
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: wrap;
}

.tabs__content {
    margin-top: -2px;
    border-top: 1px solid rgba(60, 60, 60, 0);
}

.tabs__item {
    box-shadow: inset 0 -10px 15px rgba(98, 142, 231, .1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
}

.tabs__item--active {
    position: relative;
    border: none;
    border-top: 1px solid rgba(60, 60, 60, .1);
    box-shadow: 0px 10px 0px #fff,
    0 -1px 25px rgba(98, 142, 231, .08);
    margin-top: 2px;
    margin-left: -1px;
    margin-right: -7px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.tabs__item:last-child {
    margin-left: -1px;
}

.tabs__item--active a:after {
    left: 100%;
    border-right: none;
    border-bottom-left-radius: 25px;
    box-shadow: -15px 0px 0px #fff,
    inset 0px 0px 60px rgba(98, 142, 231, .05);
}

.tabs__item:last-child.tabs__item--active a::after,
.tabs__item:first-child.tabs__item--active a::after {
    box-shadow: -15px 0px 0px #fff;
}

.tabs__item:first-child.tabs__item--active a::before {
    display: block;
    content: '';
    position: absolute;
    width: 40px;
    height: 88%;
    border: 1px solid rgba(60, 60, 60, .01);
    border-top: none;
    top: 9%;
    background: transparent;
    left: -40px;
    border-left: none;
    border-bottom-right-radius: 25px;
    box-shadow: 15px 2px 0px #fff;
}

.tabs__item a {
    position: relative;
}

.tabs__item:last-child.tabs__item--active a::after {
    display: block;
    content: '';
    position: absolute;
    width: 40px;
    height: 90%;
    border: 1px solid rgba(60, 60, 60, .01);
    border-top: none;
    top: 7%;
    background: transparent;
    left: 100%;
    border-left: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 25px;
    box-shadow: 15px 4px 0px #fff;
    transform: rotateY(180deg);
    transition: border-radius 5s ease;
}

.tabs__item--active_prev-child a:after,
.tabs__item--active_next-child a:before {
    box-sizing: border-box;
    display: block;
    content: '';
    position: absolute;
    background: transparent;
    transform: rotateY(180deg);

    width: 100%;
    height: 100%;
    top: -2px;
    left: -1px;

    border: 1px solid rgba(60, 60, 60, .01);
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid rgba(60, 60, 60, .01);
    border-left: 1px solid rgba(60, 60, 60, .01);

    box-shadow: -19px 14px 16px -3px #fff;
    z-index: 9;
}

.tabs__item--active_next-child a:before {
    top: -1px;
}

.tabs__item--active_next-child a:before {
    left: 6px;
    transform: rotateY(0deg);
}

.tabs__item--active_last--child a:before {
    left: 9px;
}

.tabs__item--active a:after {
    display: block;
    content: '';
    position: absolute;
    background: transparent;

    width: 40px;
    height: 90%;
    top: 7%;
    left: 100%;

    border: 1px solid rgba(60, 60, 60, 0);
    border-left: 1px solid rgba(60, 60, 60, .01);
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 0;

    box-shadow: -6px 16px 5px -5px #fff;

    z-index: 9;
}

@media screen and (max-width: 992px) {
    .tabs__item--active_prev-child a:after, .tabs__item--active_next-child a:before {
        border-bottom-left-radius: 15px;
    }

    .tabs__item--active_prev-child a:after {
        border-bottom-left-radius: 25px;
    }

    .tabs__item:first-child.tabs__item--active a::before {
        border-bottom-right-radius: 15px;
    }
}

@media (min-width: 992px) {
    .tabs__item {
        margin-bottom: -1px;
        background-color: #fff;
    }
}

/*progress*/

.progress__list {
    padding-top: 4px;
    padding-bottom: 4px;
}

.progress__title {
    position: relative;
}

.progress__item {
    border: 1px solid rgba(224, 224, 224, 1);
    border-left: none;
    border-right: none;
    border: none;

    box-shadow: -9px 5px 41px -11px rgba(98, 142, 231, .1),
    18px 0px 51px 0px rgba(98, 142, 231, .1),
    inset -43px 0 50px -27px rgba(255, 255, 255, 1);

    transition: all .3s ease-out;
    margin-top: 1px;
}

.progress__item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-left: 1px solid rgba(224, 224, 224, 1);
    border: none;
}

.progress__item div {
    position: relative;
    z-index: 9999;
    box-shadow: 14px 0px 16px -2px #fff;
}

.progress__item--active {
    background-image: linear-gradient(270deg, #ff6179, #d92044);
    box-shadow: -9px 5px 41px -11px rgba(98, 142, 231, .1),
    18px 0px 51px 0px rgba(98, 142, 231, .1),
    inset 0 0 33px 20px rgba(255, 255, 255, 0),
    inset -64px 0px 30px -11px #ff6179;
    color: #fff;
}

.progress__item--active .progress__icon {
    color: #fff;
}

.progress__item--active div {
    box-shadow: none;
    color: #fff;
}

.progress__item:before {
    display: none;
}

.progress__item:after {
    position: absolute;
    transform: rotate(45deg);
    z-index: 999;

    background: #fff;
    width: 49px;
    height: 51px;
    left: calc(100% - 23.5px);
    top: calc(100% - 55.2px);

    border-top: 1px solid rgba(224, 224, 224, 1);
    border-right: 1px solid rgba(224, 224, 224, 1);
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 11.5px;
    border-bottom-right-radius: 9.5px;
    -webkit-border-bottom-right-radius: 14px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 15px;
    border: none;

    box-shadow: 10px -8px 20px -5px rgba(98, 142, 231, .06),
    -10px 10px 10px -4px #fff;

}

.progress__item--active:after {
    box-shadow: 12px -9px 15px -7px rgba(98, 142, 231, 0),
    inset -24px 14px 45px -10px rgba(255, 97, 121, 0),
    -6px 11px 10px -7px #ff6179;

    background-color: transparent;

    background-image: -webkit-linear-gradient(top right,
    rgba(255, 97, 121, 0) 34%, #ff6179 50%);

    background-image: -moz-linear-gradient(top right,
    rgba(255, 97, 121, 0) 34%, #ff6179 50%);

    background-image: -o-linear-gradient(top right,
    rgba(255, 97, 121, 0) 34%, #ff6179 50%);

    background-image: linear-gradient(to top right,
    rgba(255, 97, 121, 0) -34%, #ff6179 50%);

}

.progress__item:first-child:before {
    height: 99%;
    width: 30px;
    display: block;
    box-shadow: -17px 2px 20px -10px rgba(98, 142, 231, .05);
    background: #fff;
    border-width: 0;
    left: 1.5px;
}

.progrees_prev__active:after {
    box-shadow: 4px -3px 20px rgba(98, 142, 231, .1),
    inset -24px 14px 45px 21px #fff;
}

.progress__item--active:before {
    width: 46.5px;
    height: 47.5px;
    left: -23px;
    top: calc(100% - 53.8px);
    transform: rotate(45deg);
    border-top: 1px solid rgba(224, 224, 224, 1);
    border-right: 1px solid rgba(224, 224, 224, 1);
    border-top-left-radius: 9px;
    border-bottom-right-radius: 9px;

    background-image: -webkit-linear-gradient(top right,
    rgba(255, 255, 255, 0) 34%, #fff 50%);

    background-image: -moz-linear-gradient(top right,
    rgba(255, 255, 255, 0) 34%, #fff 50%);

    background-image: -o-linear-gradient(top right,
    rgba(255, 255, 255, 0) 34%, #fff 50%);

    background-image: linear-gradient(to top right,
    rgba(255, 255, 255, 0) 34%, #fff 50%);

    border-top-right-radius: 15px;
    box-shadow: none;
    border: none;
    display: block;
}

.progress__item:first-child.progress__item--active:before {
    display: none;
}

@media (min-width: 992px) and (max-width: 1060px) {
    .progress__item:last-child.progress__item--active:before {
        display: none;
    }

    .progress__item {
        margin-top: 3px;
    }
}

@media (min-width: 1061px) and (max-width: 1242px) {
    .progress__item:nth-child(4).progress__item--active:before {
        display: none;
    }

    .progress__item {
        margin-top: 3px;
    }
}

@media (min-width: 1243px) and (max-width: 1401px) {
    .progress__item:last-child.progress__item--active:before {
        display: none;
    }

    .progress__item {
        margin-top: 3px;
    }
}

@media screen and (max-width: 768px) {
    .tabs__item--active a:after {
        border-bottom-left-radius: 10px;
    }

    .tabs__item--active a:before {
        border-bottom-right-radius: 10px;
    }
}

@media screen and (min-width: 769px) {
    .tabs__item {
        max-width: 260px;
        white-space: nowrap;
    }

    .tabs__item .tabs__tab-big-text {
        max-width: 240px;
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-top: 0;
    }
}

.progress__item div:after, .progress__item div:before {
    display: none;
}