.carts {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    flex-wrap: wrap; 
    gap: 10px; 
    margin-top: 27px;
}
.catrs__item {
    display: flex;
    flex-direction: column;
    width: 170px;
    min-height: 100px;
    padding: 15px;
    background: white;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}
.catrs__item__name {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    word-break: break-all;
    gap: 5px;
}
.catrs__item__name h3 {
    font-size: clamp(10px, 3vw, 14px);
    color: black;
}

.catrs__item__name__sum__group {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #3F8AFA;
    border-radius: 3px;
    width: max-content;
    min-height: 20px;
    padding-left: 5px;
    padding-right: 5px;
}
.catrs__item__name__sum__group span {
    color: white;
    font-size: clamp(10px, 3vw, 14px);
}

.catrs__item__name__pin__group {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #3F8AFA;
    border-radius: 3px;
    width: max-content;
    height: max-content;
    height: 20px;
    width: 20px;
}
.catrs__item__name__pin__group svg {
    width: clamp(10px, 3vw, 14px);
    height: clamp(10px, 3vw, 14px);
}
.catrs__item__name__delete__group {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #3F8AFA;
    border-radius: 3px;
    width: max-content;
    height: max-content;
    height: 20px;
    width: 20px;
}
.catrs__item__name__delete__group svg {
    width: clamp(10px, 3vw, 14px);
    height: clamp(10px, 3vw, 14px);
}
.catrs__item__name__delete__group path {
    fill: white;
}
.catrs__item__name__pin__group path {
    fill: white;
}
.pinned {
    background-color: #FFEB0F;
}
.pinned path {
    fill: #000000;
}
.catrs__item__button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 19px;
    gap: 3px;
}
.catrs__item__button a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #3F8AFA;
    border-radius: 3px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: clamp(12px, 2vw, 16px);
    text-decoration: none;
    white-space: nowrap;
}
.catrs__item {
  order: 1;
}

.catrs__item.pinned {
  order: 0;
}