.content {
    display: flex;
    flex-direction: column;
}



.content .pack-logo {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 50px 0 50px 0;
    width: 100%;
}


.content .pack-logo img {
    height: 150px;
    width: 150px;
}



.content .pack-category {
    align-items: center;
    display: flex;
    height: 355px;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
    width: 100%;
}
.content .pack-category:last-child {
    margin-bottom: 100px;
}


.content .pack-category .category {
    background-color: var(--pack-category-bg);
    border-bottom: var(--pack-category-bottom-border);
    border-top: var(--pack-category-top-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1550px;
    width: 95%;
}


.content .pack-category .category h2 {
    margin: 15px;
    min-width: 200px;
    position: absolute;
    width: 85%;
}



.content .pack-category .packs-list {
    align-items: flex-end;
    display: flex;
    height: 100%;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0px 15px 20px;
    scroll-snap-type: x;
    scrollbar-width: none;
    width: 100%;
}
.content .pack-category .packs-list:focus-visible {
    background-color: var(--focus-bg-wh);
    outline: none;
}


.content .pack-category .packs-list a {
    margin-right: 10px;
}
.content .pack-category .packs-list a:last-child {
    margin-right: 0px;
}


.content .pack-category .packs-list a .pack {
    background-color: #252422;
    display: flex;
    flex-direction: column;
    height: 270px;
    position: relative;
    scroll-snap-align: center;
    transition: transform .1s ease-in-out;
    width: 250px;
}
.content .pack-category .packs-list a .pack:focus-visible {
    outline: var(--pack-active-outline);
}
.content .pack-category .packs-list a .pack:hover, .content .pack-category .packs-list a .pack:hover:focus-visible {
    background-color: var(--pack-hover);
}
.content .pack-category .packs-list a .pack:active,.content .pack-category .packs-list a .pack:active:focus-visible {
    background-color: var(--pack-hover);
    outline: var(--pack-active-outline);
    transform: scale(.95);
}


.content .pack-category .packs-list a .pack .thumbnail {
    background-color: #2b2b2b;
    display: flex;
    height: 126.56px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    outline: 1px solid #000;
    position: relative;
    width: 90%;
}
.content .pack-category .packs-list a .pack .thumbnail::after {
    content: "";
    display: block;
    padding-bottom: 37.04%;
}
.content .pack-category .packs-list a .pack .thumbnail img {
    color: #000;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}


.content .pack-category .packs-list a .pack .info {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: 100px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    width: 90%;
}


.content .pack-category .packs-list a .pack .info .title {
    max-height: 49px;
}
.content .pack-category .packs-list a .pack .info .title h3 {
    display: -webkit-box;
    height: 100%;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.content .pack-category .packs-list a .pack .info .author {
    margin-bottom: 10px;
    margin-top: 5px;
}
.content .pack-category .packs-list a .pack .info .author h5 {
    max-height: 20px;
    white-space: nowrap;
}


.content .pack-category .packs-list a .pack .panel-three {
    align-items: center;
    display: flex;
    height: 25.2px;
    margin-top: auto;
    justify-content: space-between;
}


.content .pack-category .packs-list a .pack .panel-three .pack-type {
    align-items: center;
    background-color: #0d0d0d;
    display: flex;
    padding: 5px;
}
.content .pack-category .packs-list a .pack .panel-three .pack-type img.pack-icon {
    height: 15px;
    margin-right: 5px;
    overflow: hidden;
    width: 15px;
}
.content .pack-category .packs-list a .pack .panel-three .pack-type p {
    font-size: .75rem;
}


.content .pack-category .packs-list a .pack .panel-three .price h3 {
    color: #00ccfb;
    text-shadow: 0px 3px 0 #00141a;
}
.content .pack-category .packs-list a .pack .panel-three .price h3.free {
    color: #00ffba !important;
    text-shadow: 0px 3px 0 #001a13 !important;
}



.content .dummy-sign {
    align-items: center;
    display: flex;
    height: 200px;
    justify-content: center;
}


.content .dummy-sign h1 {
    text-align: center;
}