.page__task {}

.task__container {}

.task__inner {}

.task__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin: 0px 0px 18px 0px;
}

.task__title-text {
    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #fff;
}

.task__title-icon {}

.task__filters {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 9px 10px;
    background: #161c2f;
    border-radius: 50px;
}

.task__filters-icon {}

.task__filters-text {
    font-weight: 700;
    font-size: 10px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #939bbf;
}

.task__top {
    overflow: hidden;
    max-height: 0px;
    transition: all .5s ease;
}

.task__top--visible {}

.task__top-body {
    display: flex;
    flex-direction: column;
    gap: 5px;

    margin: 0px 0px 10px 0px;
    padding: 10px;

    border-radius: 12px;
    background: #161c2f;
}

.task__row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.task__text {
    width: 103px;
    font-weight: 700;
    font-size: 12px;
    color: #939bbf;
}

.task__dropdown {
    position: relative;
    width: 240px;
}

.task__dropdown-active {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px;
    background: #293045;
    border-radius: 8px;

    cursor: pointer;
}

.task__dropdown-active-left {
    display: flex;
    align-items: center;
    gap: 5px;

    pointer-events: none;
}

.task__dropdown-active-icon {}

.task__dropdown-active-text {
    font-weight: 500;
    font-size: 12px;
    color: #939bbf;
}

.task__dropdown-active-right {
    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.task__dropdown-active-arrow {
    transition: all .3s ease;
}

.dropdown-active--active .task__dropdown-active-arrow {
    transform: rotate(180deg);
}

.task__filters-icon {}


.task__dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    z-index: 2;

    transition: all .3s ease;

    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.task__dropdown-body {
    padding: 18px;
    background-color: rgb(40, 47, 69);
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.task__dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.task__dropdown-item--active {}

.task__dropdown-item-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.task__dropdown-item-icon {

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.task__dropdown-body .task__dropdown-item-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.task__dropdown-item--active .task__dropdown-item-icon {
    background: rgba(255, 111, 7, 0.15);
}

.task__dropdown-body .task__dropdown-item-icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.task__dropdown-item--active .task__dropdown-item-icon-svg path {
    fill: #ff6f07;
}

.task__dropdown-item-text {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.03em;
    color: #939bbf;
}

.task__dropdown-body .task__dropdown-item-text {
    font-size: 14px;
    line-height: 164%;
}

.task__dropdown-item--active .task__dropdown-item-text {
    color: #ff6f07;
}

.task__dropdown-item-right {
    display: none;
}

.task__dropdown-body .task__dropdown-item-right {
    display: block;
}

.task__dropdown-item-check {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.task__dropdown-item-check+label {
    display: flex;
    align-items: center;
    user-select: none;
}

.task__dropdown-item-check+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: rgba(181, 215, 255, 0.1);
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% 70%;
}

.task__dropdown-item-check:checked+label::before {
    background-color: #ff6f07;
    background-image: url("../img/shop/game-slider/check.svg");
}

.task__dropdown-item-label {}


.task__main {}

.task__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.task__cards .rec-tasks__slide {
    gap: 5px;
}

.task__cards .rec-tasks__slide-img {
    width: 100%;
    max-width: 115px;
    margin: 0 auto;
}