.sideBarWrap{
    position: absolute !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    right: 50px;
    top: 172px;
    z-index: 20;
    width: unset !important;
}

.sideBarWrap .noticeWrap{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    width: 100%;
    background-color: var(--wp--preset--color--custom-accent);
    border-radius: 15px;
    filter: drop-shadow(0 0 30px #00000040);
    padding: 10px 20px 25px 25px;
}

.sideBarWrap .noticeInnerWrap{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sideBarWrap .noticeInnerWrap .closer{
    position: absolute !important;
    top: -2px;
    right: 0;
    font-size: 12px;
    font-weight: 400;
    color: var(--wp--preset--color--custom-accent-3);
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}
.sideBarWrap .noticeInnerWrap .closer:hover{
    color: var(--wp--preset--color--custom-accent-2);
}


.sideBarWrap .noticeTitle{
    font-size: 20px;
    font-weight: 700;
    color: var(--wp--preset--color--custom-accent-3);
}

.sideBarWrap .noticeText{
    display: -webkit-box;
    -webkit-line-clamp: 3;  
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.375em;
    color: #5C5E62;
    /* Remove transition from here - handled by JS */
}

.sideBarWrap .noticeText.expanded {
    display: block;
    -webkit-line-clamp: unset;
    /* overflow and height handled by JS */
}

.moreWrap{
    display: flex;
    font-size: 16px;
    color: #5C5E62;
    position: relative;
    width: unset;
    align-self: flex-start;
    cursor: pointer;
    transition: color 0.3s ease-in-out, transform 0.15s ease;
    transform-origin: left center;
}

.moreWrap:hover{
    color: var(--wp--preset--color--custom-accent-2);
}

.moreWrap::after{
    content: '';
    display: flex;
    position: absolute !important;
    background-color: currentColor;
    min-height: 1px;
    max-height: 1px;
    width: 100%;
    bottom: -1px;
    left: 0;
    transition: background-color 0.3s ease-in-out;
}

.sideBarWrap .transformer{
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 300px;
    width: 100%;
    border: 4px solid var(--wp--preset--color--custom-accent-2);
    border-radius: 20px;
    background-color: var(--wp--preset--color--custom-accent-3);
    padding: 6px 9px;
    gap: 10px;
    text-decoration: none;
    filter: drop-shadow(0 0 30px #00000040);
    transition: 400ms ease-in-out;
}

.sideBarWrap .transformer:hover {
    background-color: var(--wp--preset--color--custom-accent-2);
}

.sideBarWrap .transformer .tTextWrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transform-origin: left center;
}

.transformer .tTitle{
    font-size: 20px;
    font-weight: 700;
    color: var(--wp--preset--color--custom-accent);
}

.transformer .tExtra{
    font-weight: 400;
    font-size: 16px;
    color: var(--wp--preset--color--custom-base);
    white-space: nowrap;
}

.transformerPlaced {
    top: unset !important;
    left: unset !important;
    bottom: 130px !important;
    right: 50px !important;
    transition: 300ms ease-in-out;
}