.main-description {
    padding: 30px 10px;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
}
.main-description .top-side {
    width: 100%;
    display: flex;
    justify-content: center;
}
.main-description .side-bar {
    width: 0%;
}
.main-description .main-bar {
    width: 75%;
    max-width: 1070px;
}
.main-bar .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-bar .head h1 {
    margin: 0;
}
.main-bar .head .sort-box {
    display: flex;
    gap: 10px;
}
.main-bar .head .sort-box .item {
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 13px;
    cursor: pointer;
}
.main-description .main-bar .head .sort-box .item.active {
    background: var(--first-l-color);
    color: #fff;
}
.main-description .main-bar .post-carts {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin:10px 0;
    gap: 30px 10px;
    width: 100%;
    margin: 10px auto;
    min-height: 500px;
}
.main-description .main-bar .post-carts .loader-div {
    width: 100%
}
.main-description .main-bar .post-carts .loader-div .box {
    background: var(--second-l-color);
    padding: 10px 20px;
    border-radius: 7px;
    text-align: center;
    display: flex;
    width: fit-content;
    color: #fff;
    gap: 10px;
    margin: auto;
}
.main-description .main-bar .post-carts .loader-div .box .icon {
    display: flex;
}
.main-description .main-bar .row {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.main-description .main-bar .row .load-more {
    background: var(--first-l-color);
    color: #fff;
    padding: 10px;
    border-radius: 7px;
    cursor: pointer;
    width: 100px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.main-description .main-bar .row .load-more .icon {
    display: flex;
}
.main-description .main-bar .row .load-more .icon svg {
    display: none;
}
.post-cart {
    display: flex;
    flex-flow: column;
    width: 32%;
    max-width: 350px;
    text-decoration: unset;
}
.post-cart .poster {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 7px;
}
body.dark .post-cart .box {
    color: #fff;
}
body.secondary .post-cart .box {
    color: #fff;
}
.post-cart .box .title {
    font-size: 17px;
    font-weight: 100;
}
.post-cart .box .price {
    color: #000;
}
body.dark .post-cart .box .price {
    color: #fff;
}
body.secondary .post-cart .box .price {
    color: #fff;
}
.post-cart .box .price .fiat {
    color: #656565;
    font-size: 13px;
}
.post-cart .box .bottom-side {
    display: flex;
    justify-content: space-between;
}
.post-cart .box .bottom-side > div {
    display: flex;
    align-items: center;
    gap: 3px;
}
.post-cart .box .bottom-side .icon img {
    width: 18px;
}
.main-description > .bottom-side {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 75%;
    margin: auto;
}
.main-description > .bottom-side {
    background: #f6f6f6;
    padding: 10px 15px;
    border-radius: 9px;
    margin-top: 20px;
}
.main-description > .bottom-side {
    background: #f8f8f8;
    padding: 10px 15px;
    border-radius: 9px;
    margin-top: 20px;
    box-sizing: border-box;
}
body.dark .main-description > .bottom-side {
    background: var(--second-d-color);
}
body.secondary .main-description > .bottom-side {
    background: var(--second-s-color);
}
.main-description > .bottom-side h1, .main-description > .bottom-side h2, .main-description > .bottom-side h3 {
    color: var(--second-l-color);
}
body.dark .main-description > .bottom-side h1, body.dark .main-description > .bottom-side h2, body.dark .main-description > .bottom-side h3 {
    color: var(--first-l-color);
}
body.secondary .main-description > .bottom-side h1, body.secondary .main-description > .bottom-side h2, body.secondary .main-description > .bottom-side h3 {
    color: var(--first-l-color);
}
.main-description > .bottom-side p, .main-description > .bottom-side span, .main-description > .bottom-side div {
    text-align: justify;
}
.main-description > .bottom-side .guide-box {
    display: flex;
    width: 100%;
    border-radius: 7px;
    flex-flow: column nowrap;
    box-shadow: 0 0 7px 0px #d6d6d6;
    padding: 15px 20px;
    box-sizing: border-box;
}
.main-description > .bottom-side .guide-box .head {
    border-bottom: 1px solid #b7b7b7;
    padding: 15px 10px;
    color: var(--second-l-color);
    font-size: 20px;
    font-weight: bold;
}
.main-description > .bottom-side .guide-box .body {
    padding: 10px;
}
.main-description > .bottom-side .guide-box .body .row a {
    text-decoration: unset;
    font-size: 16px;
    font-weight: bold;
    color: #5c5e70;
    padding: 10px 0;
    display: flex;
}

@media screen and (max-width: 1024px) {
    .main-description .main-bar {
        width: 90%;
    }
}
@media screen and (max-width: 800px) {
    .main-description .main-bar {
        width: 100%;
    }
    .main-description .main-bar .post-carts {
        justify-content: space-evenly;
    }
    .post-cart {
        width: 45% !important;
        max-width: unset !important;
    }
    .post-cart .poster {
        width: 100% !important;
    }
}
@media screen and (max-width: 500px) {
    .main-bar .head {
        flex-flow: column;
        margin-bottom: 25px;
    }
    .post-cart {
        width: 95% !important;
    }
    .main-bar .head .sort-box {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 6px;
    }
    .main-bar .head .sort-box .item {
        text-wrap: nowrap;
    }
    .main-description > .bottom-side {
        width: 95%;
    }
}
