.download {
    gap: 40px;
    z-index: 2;
}
.download p { margin: 0; }
.download {
    & >div:first-child {
        z-index: 500;
    }
}
.download {
    & >div {
        gap: 8px;
    }
}
.download {
    & > div {
        & * {
            margin-bottom: 0 !important;
        }
    }
}
.download {
    & .download_info {
        @media (min-width: 960px) {
            align-items: center !important;
        }
    }
}
.wrap {
    flex-wrap: wrap;
}
.flex, .flex_1_3, .flex_2, .flex_3, .flex_3_1, .flex_4, .flex_5, .flex_6, .flex_collumn {
    align-items: start;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
}
.flex_collumn {
    flex-direction: column;
    gap: 40px;
}
.flex_collumn>* {
    margin-bottom: 0;
    width: 100%;
}
.flex_4>* {
    flex: 1 1 22%;
}
.flex_2.wrap {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 24px;
}
.flex_2.wrap>* {
    flex: 1 1 47.5%;
}
.custom-select {
    position: relative;
    user-select: none;
    z-index: 20;
    & span {
        color: #7b7b7b;
        font-size: 16px;
    }
}
.custom-select>div:first-child:not(.download>.custom-select div:first-child) {
    padding: 6px 16px;
    color: white;
}
.custom-select .selected {
    transition: all 0.15s;
    border: 1px solid #000000;
    background: #000000;
    padding: 16px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: white;
    height: 100%;
}
.custom-select .options {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.25);
    z-index: 30;
}
.custom-select .error-text {
    display: none;
    margin: 8px 0 0 16px;
    font-size: 12px;
    color: #ff383c;
    line-height: 1.35;
}
.custom-select .options li {
    padding: 10px 14px;
    gap: 8px;
    color: #7b7b7b;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 16px;
}
.custom-select.active {
    z-index: 999999999;
}
.custom-select.active .selected {
    border: 1px solid #d19a66;
}
.custom-select.active .selected span {
    color: white;
}
.custom-select.active .options {
    display: block;
    z-index: 30;
    max-height: 329px;
    overflow-y: auto;
}
.download li, .download ol, .download ul {
    list-style: none;
    padding: 0;
    margin: 0;
    marker: none;
}
.download {
    & .download_info {
        & > div:first-child {
            & p {
                color: #d19a66;
                margin-top: 6px;
            }
        }
    }
}
.download {
    & .download_info {
        & .download_info__date {
            gap: 8px;
            flex-wrap: nowrap;
        }
    }
}
.download {
    & .download_info {
        & .download_info__date {
            & >div {
                border-radius: 8px;
                background-color: #000000;
                padding: 20px;
            }
        }
    }
}
.download {
    & .download_info {
        & .download_info__date {
            & > div {
                & p {
                    &:first-child {
                        opacity: 0.5;
                        margin-bottom: 4px;
                    }
                }
            }
        }
    }
}
.download {
    & .download_info {
        & .download_info__date {
            & > div {
                & p {
                    color: white !important;
                }
            }
        }
    }
}
.custom-select .arrow {
    margin-left: auto;
    transition: 0.2s;
}
.custom-select .selected {
    & svg {
        max-width: 24px;
        width: 100%;
        margin-left: auto;
    }
}
.custom-select.active .arrow {
    transform: rotate(180deg);
}
.download {
    & > div:first-child {
        @media (max-width: 960px) {
            flex-direction: column;
        }
    }
}
.download {
    & > div:first-child {
        @media (max-width: 768px) {
            & >* {
                width: 100%;
            }
        }
    }
}