.catalog-page__category-main {
    display: flex;
    padding: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.catalog-page__main-class {
    display: flex;
    flex-direction: column;
    width: auto;
    align-items: center;
    gap: 10px;
}

.catalog-page__main-class-title {
    color: #003730;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.catalog-page__class-category {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.catalog-page__class-category-title {
    color: var(--dark-gray, #323232);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.catalog-page__main-category {
    display: contents;
}

.category-list {
    overflow: hidden;
    height: 0;
    /* transition: height 0.3s ease-out; */
    transform: slideDown;
}

.category-list.open {
    height: 100%;
    /* -webkit-transition: height 4s ease-in-out;
    -moz-transition: height 4s ease-in-out;
    transition: height 4s ease-in-out;
    transform: height 0.5s ease-in-out; */
}

@keyframes slideDown {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.loader-container__spam {
    justify-content: space-around;
    display: flex;
    margin-top: 10%;
    background: linear-gradient(0deg, rgba(40, 184, 16, 0.2), rgba(40, 184, 16, 0.2)), rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    width: 250px;
    margin-left: 42%;
    background-color: #003730;
    height: 50px;
}
.loader-container__text {
    display: inherit;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    align-self: center;
}

.catalog-page__category-title {
    color: inherit;
    background: inherit;
}

.catalog-page__category-title:hover {
    color: #003730;
}

.catalog-page__main__category {
    display: flex;
    flex-direction: column;
    gap: 5px;
}