:root {
    --grey-layout-main-grey: #4c4c4c;
    --grey-layout-pink: #feb7d7;
    --grey-layout-background-grey: #A8A9AE;
    --grey-layout-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.2),
    2px 2px 0px 0px rgba(0, 0, 0, 0.2),
    3px 3px 0px 0px rgba(0, 0, 0, 0.2),
    4px 4px 0px 0px rgba(0, 0, 0, 0.2),
    5px 5px 0px 0px rgba(0, 0, 0, 0.2);
}


.feed-footer, .feed-header {
    position: fixed;
    z-index: 99;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    max-width: 100%
}

.feed-add-to-cart .feed-add-to-cart {
    background: var(--grey-layout-background-grey);
}

.feed-btn span, .go-to-home-btn span, .post-title, .products-button {
    font-size: 14px;
    text-align: center;
    line-height: 17px
}

.feed-footer, .feed-header, .products-button {
    left: 50%;
    transform: translateX(-50%)
}

.drawer-header, .feed-footer, .feed-header, .post-info {
    box-sizing: border-box
}

.close-button, .products-button {
    cursor: pointer;
    font-weight: 700
}

body {
    margin: 0;
    font-family: 'Anonymous Pro', serif;
    background: #211e1f
}

body, html {
    overflow: hidden;
    width: 100%;
    height: 100%;

    overscroll-behavior: none;
    touch-action: none
}

#app {
    overflow: hidden
}

.feed-header {
    top: 0;
    background: linear-gradient(180deg, var(--grey-layout-main-grey) 7%, rgba(76, 76, 76, 0) 100%);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px
}

.content, .feed-footer {
    justify-content: center;
    display: flex
}

.feed-footer {
    position: fixed;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grey-layout-main-grey);
    /*box-shadow: 0px -5px 4px 0px #00000026;*/
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 99;
    max-width: 100%;
    width: 100%;
    min-height: 50px;
    gap: 50px;
    padding: 5px;
}


.feed-footer .go-to-home-btn, .feed-btn {
    height: 100%;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.feed-footer .go-to-home-btn .btn-image-container img {
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, .7));
}

.feed-footer .active .btn-image-container img {
    filter: none;
}

.feed-footer .btn-image-container {
    height: 26px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-footer .go-to-home-btn img {
    max-height: 100%;
    width: auto;
}

.feed-footer .feed-btn img {
    margin-top: 8px;
    width: 30px;
    height: 30px;
}

.feed-footer .go-to-home-btn span, .feed-btn span {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin-top: 5px;
}


:root {
    --vh: 1px;
}

.container {
    position: relative;
    height: 100dvh;
    display: flex;
    flex-direction: column
}

.post {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000;
    transition: transform .3s ease-out
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
    overflow: hidden
}

.post-info, .products-button {
    color: #fff;
    position: absolute;
    background: linear-gradient(0deg, var(--grey-layout-main-grey) 10%, rgba(76, 76, 76, 0) 100%);
}

.keen-slider {
    width: 100%;
    height: 100%
}

.keen-slider__slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.keen-slider__slide img {
    width: auto;
    height: 100%;
    object-fit: cover
}

.post-info {
    bottom: 50px;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.post-info .price {
    margin-top: 5px;
}

.post-title {
    order: 0;
    font-family: 'Anonymous Pro', serif !important;
    font-weight: 500;
    letter-spacing: 0;
    text-align: start !important;
    width: 80%;
}

.products-button {
    left: 10%;
    letter-spacing: 0;
    bottom: 100%;
    background: 0 0;
    padding: 3px 12px;
    border: none;
    border-radius: 5px;
    transition: background .3s;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.close-button, .drawer-product-description {
    text-align: left;
    font-size: 14px;
    letter-spacing: 0
}

.drawer, .drawer-header {
    background: var(--grey-layout-main-grey) !important;
    color: #fff;
    display: flex
}

.products-button:hover {
    background: #1a0f0f
}

.drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100dvh;
    max-width: 100%;
    box-shadow: -2px 0 10px rgba(0, 0, 0, .3);
    transition: right .3s ease-in-out;
    flex-direction: column;
    z-index: 1003;
    padding-right: 0;
    overflow: hidden
}

.drawer.open {
    overflow: hidden;
    right: 0;
    width: 100%
}

.drawer-header {
    position: relative;
    border-bottom: 1px solid #555454;
    padding: 15px;
    width: 100% !important;
    z-index: 10;
    justify-content: space-between;
    align-items: center
}

.close-button {
    margin-left: 0;
    padding-left: 0;
    line-height: 17px;
    background: 0 0;
    border: none;
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center
}

.drawer-content {
    position: relative;
    overflow-y: auto;
    height: 100%;
    background: var(--grey-layout-main-grey);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.drawer-item {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.dots {
    order: 3;
    display: flex;
    padding: 10px 0;
    justify-content: center;
    display: flex;
    width: 100%;
}

.dot {
    border: none;
    background: #fff;
    margin: 0 1.5px;
    cursor: pointer;
    transition: width .3s;
    width: 7px;
    height: 4px;
    opacity: 1;
    border-radius: 3px;
}

.dot:focus {
    outline: white
}

.dot.active {
    opacity: 1;
    cursor: auto;
    background: var(--grey-layout-pink);
}

.drawer-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px

}

.drawer-images img {
    height: auto;
    max-height: 400px;
    width: auto;
    max-width: 100%
}

@media (min-height: 768px) {
    .drawer-images img {
        max-height: 680px;
        width: auto;
        min-height: 400px;
        height: 100%;
    }
}

.drawer-product-description {
    display: flex;
    flex-direction: column;
    font-family: 'Anonymous Pro', serif;
    font-weight: 400;
    line-height: 16px;
    color: #cdcdcd
}

.active-price, .previous-price {
    font-family: 'Anonymous Pro', serif;
    font-size: 15px;
    line-height: 18px
}

.go-to-product-page a {
    width: 50%;
    height: 35px;
    gap: 10px;
    border-radius: 10px;
    background: var(--grey-layout-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--grey-layout-main-grey);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: center;

    font-family: "Anonymous Pro", serif !important;
    padding: 0.25em 0.5em;
    box-shadow: var(--grey-layout-box-shadow);
    user-select: none;
    -webkit-user-select: none !important;
    touch-action: manipulation !important;
    position: relative;
}


.go-to-product-page a:active {
    box-shadow: 0px 0px 0px 0px !important;
    top: 5px !important;
    left: 5px !important;
}

.drawer-product-title span {
    font-family: 'Anonymous Pro', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff
}

.active-price {
    font-weight: 600;
    letter-spacing: 0
}

.previous-price {
    font-weight: 500;
    letter-spacing: 0;
    color: #cdcdcd;
    text-decoration-line: line-through
}

.label, .pill-points-section .win {
    font-family: 'Anonymous Pro', serif;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0
}

.label {
    padding: 4px 8px;
    gap: 2px;
    text-align: center;

    background: var(--grey-layout-pink);
    border-radius: 5px;
    color: var(--grey-layout-main-grey);
    font-size: 11px;
    order: 3;
    margin-left: 3px;
    border: 1px solid var(--grey-layout-main-grey);
    font-weight: 700;
    font-family: 'Anonymous Pro', serif !important;
}

.pill-label {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 130px
}

.pill-label img {
    margin-right: 1px;
    margin-bottom: 3px
}

.review-count {
    font-family: 'Anonymous Pro', serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0;
    color: var(--grey-layout-pink);
    text-decoration: underline;
}

.price-rating {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 15px 0
}

.price-rating .price {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
    order: 0;
}

.go-to-product-page {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex: auto;
    align-items: end;
    margin-top: 10px;
    /*margin-bottom: 50px*/
}

.pill-points-section {
    display: flex;
    justify-content: start;
    gap: 8px;
    flex-direction: row;
    align-items: center
}

.pill-points-section .win {
    font-weight: 500;
    color: #fff
}

.product-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1111
}

.spinner {
    border: 4px solid transparent;
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: 1s linear infinite spin
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.price {
    display: flex;
    flex-direction: row;
    gap: 8px;
    order: 1;
}

.keen-slider:not([data-keen-slider-disabled]) {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    align-content: flex-start;
    display: flex;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -khtml-user-select: none;
    width: 100%
}

.keen-slider:not([data-keen-slider-disabled]) .keen-slider__slide {
    min-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%
}

.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse] {
    flex-direction: row-reverse
}

.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-v] {
    flex-wrap: wrap
}

/*Bottom Drawer Overwrites & Additions*/
.drawer-option-value {
    width: 20px !important;
    height: 20px !important;
}

.drawer-input-options {
    display: flex;
    flex-direction: row;
}

#drawer-button-cart {
    height: 25px !important;
}

.btn, .module-subitem.module-subitem-1.ms-layer.ms-layer-text.ms-caption {
    font-family: "Anonymous Pro", serif !important;
    padding: 0.25em 0.5em;
    box-shadow: var(--grey-layout-box-shadow);
    user-select: none;
    -webkit-user-select: none !important;
    touch-action: manipulation !important;
}

.btn:active {
    box-shadow: 0px 0px 0px 0px !important;
    top: 5px !important;
    left: 5px !important;
}

/*Bottom End Drawer Overwrites & Additions*/

/*Cart*/
.cart-badge-wrapper, .wishlist-badge-wrapper {
    position: fixed;
    top: -5px;
    left: 58px;
    z-index: 100;
    transform-origin: center center;
}

.cart-badge-wrapper {
    right: 312px;
}

.wishlist-badge-wrapper {
    right: -220px;
}

.cart-badge, .wishlist-badge {
    background: var(--grey-layout-pink);
    color: var(--grey-layout-main-grey);
    padding: 0px 3px;
    font-size: 12px;
    border-radius: 50%;
    border: 1px solid var(--grey-layout-main-grey);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-effect {
    animation: pulse 1s infinite;
}

.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*End Cart*/

/* Comments Drawer */
.comments-drawer .drawer-header span {
    color: var(--grey-layout-pink);
    font-size: 24px !important;
    font-weight: 700 !important;

}

.comments-drawer .drawer-header {
    border-bottom: none;
    padding-top: 0px !important;
}

.comments-drawer .drawer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px 0 5px !important;
}

.comments-drawer .close-button {
    width: 100%;
    height: 15px;
    margin-top: 10px;
}

.comments-drawer .close-button::after {
    content: "";
    position: absolute;
    top: auto;
    left: 5%;
    width: 30px;
    height: 3px;
    background-color: #feb7d7;
    border-radius: 2px;
}

.comments-drawer.open {
    width: 90%;
}

@media screen and (max-width: 440px) {
    .comments-drawer {
        width: 90% !important;
    }
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1001;
}

/*End Comments Drawer*/

/*Post feed buttons*/

.feed-buttons {
    position: fixed;
    bottom: 90px;
    right: 10px;
    display: flex;
    flex-direction: column;
    width: 10%;
    gap: 10px;
}

.feed-buttons .post-btn:not(.quick-add-container) {
    min-width: 40px;
    min-height: 40px;

    max-width: 50px;
    max-height: 50px;

    background: none;
    border: none;
    box-shadow: none !important;
    color: white;
    font-weight: bolder;
}

.feed-buttons .post-btn:not(.quick-add-container) img {
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, .7));
    min-width: 26px;
}


.feed-buttons .post-btn:not(.quick-add-container) span {
    margin-left: 2px;
}

.feed-buttons .post-btn.quick-add-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 5px;
    flex-direction: column;
    margin-bottom: 10px;
    box-shadow: none;
    border: none;
    background: #a8a9ae;
    max-width: 50px;
    max-height: 50px;
}
.feed-buttons .post-btn.quick-add-container span{
    position: absolute;
    bottom: -10px;
    background: white;
    border-radius: 50%;
    padding: 1px;
    display: flex;
}

/*End Post feed buttons*/