.bottomSheet button,
.bottomSheet input,
.bottomSheet textarea,
.bottomSheet [contenteditable='true'] {
    box-sizing: border-box;
    padding: 1rem;

    border-radius: 1rem;
    border: 0.0625rem solid #00000020;

    font-family: inherit;
    font-size: 1rem;

    background: #fff;
    color: #000;
}

.bottomSheet textarea {
    resize: none;
}

.bottomSheet button {
    cursor: pointer;
}

.bottomSheet {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12312312312;
    visibility: visible;
    transition: opacity 0.2s, visibility 0.2s;
}

.bottomSheet[aria-hidden='true'] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bottomSheet .bottomSheetRCon {
    width: 500px;
    display: flex;
    flex-direction: column;
    border-radius: 30px 30px 0 0;
    background: #fff;
    position: relative;
    box-sizing: border-box;
    transition: transform 0.2s;
    transform: translateY(0);
}

@media (min-width: 50px) and (max-width: 510px) {
    .bottomSheet .bottomSheetRCon {
        width: 100%;
    }
}

.bottomSheet[aria-hidden='true'] .bottomSheetRCon {
    transform: translateY(100%);
}

.bottomSheet .bottomSheetRCon::after {
    content: '';
    position: absolute;
    top: 10px;
    width: 60px;
    height: 5.5px;
    border-radius: 10px;
    background-color: #00000010;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 1;
}

.bottomSheet .bottomSheetRCon .bottomSheetHeader {
    padding: 15px 20px;
    margin-top: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.bottomSheet .bottomSheetHeader .bottomSheetTitle {
    font-weight: bold;
    font-size: 18px;
}

.bottomSheet .bottomSheetBlur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #00000020;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bottomSheet .bottomSheetClose {
    padding: 5px;
    cursor: pointer;
}

.bottomSheet .bottomSheetClose svg {
    width: 24px;
    height: 25px;
}

.bottomSheet .bottomSheetClose svg path {
    fill: #000;
}

.bottomSheet .bottomSheetContent {
    overflow-y: auto;
    width: 100%;
    max-height: 100vh;
    height: 30vh;
    box-sizing: border-box;
    padding: 20px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.bottomSheet .bottomSheetContent .bottomSheetContentItem {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    padding-block: 10px;
    box-sizing: border-box;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid #00000010;
    position: relative;
}

.bottomSheet .bottomSheetContent .bottomSheetContentItem svg.sar-symbol {
    width: 0.7em;
    color: currentColor;
}

.bottomSheet .bottomSheetContent .bottomSheetContentItem svg.sar-symbol path {
    fill: currentColor;
}

.bottomSheet .bottomSheetContent .bottomSheetContentItem span {
    font-size: 14px;
    opacity: 0.5;
}

.bottomSheet .bottomSheetContent .bottomSheetContentItem span.oldprice {
    font-size: 13px;
    opacity: 0.5;
    text-decoration: line-through;
    color: #ff0000;
}

.bottomSheet .bottomSheetContent .bottomSheetContentItem.selected::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    background-color: var(--pcolor);
    border-radius: 200%;
    transform: translate(0%, -50%);
    color: #fff;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.bottomSheet .bottomSheetContent .bottomSheetContentItem::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #00000020;
    border-radius: 200%;
    transform: translate(0%, -50%);
    color: #fff;
}
