:root {
    --mediaContentHeight: 300px;
}

.contentContainer {
    display: flex;
    align-items: flex-start;
    width: 1300px;
    margin: auto;
}

.bigLeftColumn {
    width: 300px;
    margin-right: 10px;
    flex-direction: column;
    display: flex;

    position: sticky;
    position: -webkit-sticky;
    top: var(--bodyHeaderHeight);
    height: calc(100vh / var(--bodyZoomRatio) - var(--bodyHeaderHeight) - var(--addressBarHeight));
    overflow: scroll;
}

.inportantInfo {
    background-color: white;
    margin: 10px 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 3px hsl(0deg 0% 80%);
}

.if_imgWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 300px;
    border-bottom: 1px solid hsl(0, 0%, 80%);
}

.if_imgBackground {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(10px);
    transform: scale(1.1);
    background-image: linear-gradient(gray, white 90%)
}

.if_imgBox {
    width: 260px;
    height: 260px;
    border-radius: 1000px;
    overflow: hidden;
    z-index: 0;
    position: relative;
}

.if_img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.if_ib_bigText {
    font-weight: bold;
    font-size: 17px;
}

.if_infoBlocks {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 10px;
    align-items: end;
    justify-items: start;
}

.contributorInfo {
    background-color: white;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 3px hsl(0deg 0% 80%);
}

.ci_contributorsText {
    padding: 15px 10px 0;
    font-weight: bold;
    font-size: 17px;
}


.ci_contributorBlocks {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 10px;
    /* background-color: red; */
    align-items: end;
    justify-items: start;
}

.ci_contributorBlock {
    display: flex;
    align-items: center;
}

.ci_cb_img {
    height: 40px;
    width: 40px;
    border-radius: 100px;
    margin-right: 5px;
    object-fit: cover;
}

.ci_cb_txtCol {
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
}

.ci_cb_bigText {
    font-weight: bold;
}

.contentBlocks {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    flex-shrink: 1;
    flex-grow: 1;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 3px hsl(0deg 0% 80%);
}

.contentBlocks>* {
    margin-bottom: 30px;
}

.contentBlocks>*:last-child {
    margin-bottom: 0 !important;
}

.cb_bigText {
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
}

.cb_bigTextIcon {
    margin-right: 5px;
    font-size: 20px;
}

.contentBlock {
    display: grid;
}

.contentBlock>* {
    margin-bottom: 10px;
}

.contentBlock>*:last-child {
    margin-bottom: 0px;
}

.cb_longText {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    /* background-color: red; */
    position: relative;
    line-height: 20px;
    margin-top: -5px;
}

.cb_longText_seeMore {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-color: white;
    padding-left: 5px;
    font-weight: bold;
    display: none;
    transform-origin: bottom right;
}

.cb_longText_seeLess {
    background-color: white;
    font-weight: bold;
    display: none;
    transform-origin: bottom left;
}

.cb_longText_seeMore:hover,
.cb_longText_seeLess:hover {
    transform: scale(1.1);
}

.cb_longText_veryLong .cb_longText_seeMore,
.cb_longText_veryLong .cb_longText_seeLess {
    display: block
}

.cb_contentTagsPart {
    display: flex;
    overflow: auto;
}

.cb_tag {
    display: flex;
    background-color: hsl(0, 0%, 90%);
    align-items: center;
    border-radius: 100px;
    overflow: hidden;
    padding: 7px 15px;
    margin: 0px 10px 5px 0px;
}

.cb_tag:last-child {
    margin-right: 0px;
}

.cb_tag:hover {
    background-color: hsl(0, 0%, 80%);
}

.cb_contentTagsPart_noScrollBar .cb_tag {
    margin-bottom: 0px;
}

.cb_contentImgsPart,
.cb_contentVideosPart {
    display: flex;
    overflow: auto;
    max-width: 100%;
    border-radius: 10px;
    isolation: isolate;
}

.cb_contentVideosPart:has(.cb_videoBox:only-child) {
    overflow: hidden;
}


.cb_imgBox,
.cb_videoBox {
    position: relative;
    height: 100%;
    display: flex;
}

.cb_ib_thumbnail,
.cb_vb_thumbnail {
    height: var(--mediaContentHeight);
}

.cb_imgBox:hover .cb_ib_expandIcon,
.cb_videoBox:hover .cb_vb_expandIcon,
.if_imgBox:hover .if_expandIcon {
    display: flex;
}

.cb_ib_expandIcon,
.cb_vb_expandIcon,
.if_expandIcon {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    color: white;
    text-shadow: var(--niceTextShadow);
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.cb_ib_imgIcon,
.cb_ib_videoIcon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    font-size: 20px;
    text-shadow: 0 0 3px black;
}

.cb_ib_videoTitle {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    text-shadow: var(--niceTextShadow);
    color: white;
    /* background: red; */
    width: 100%;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
}

.cb_contentTallTextPart {
    white-space: pre-line;
    background: hsl(0, 0%, 90%);
    padding: 15px 20px;
    border-radius: 10px;
    overflow: auto;
    max-height: var(--mediaContentHeight);
}

.cb_contentAudioPart {
    max-height: var(--mediaContentHeight);
    overflow: auto;
    border-radius: 10px;
    display: grid;
}

.cb_contentAudioPart:has(.cb_audioBox:only-child) {
    border-radius: 100px;
}

.cb_contentAudioPart>* {
    border-bottom: 1px solid hsl(0, 0%, 80%);
}

.cb_contentAudioPart>*:last-child {
    border-bottom: 0
}

.cb_audioBox {
    background-color: hsl(0, 0%, 90%);
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.cb_audioBox>* {
    margin-right: 10px;
}

.cb_audioBox>*:last-child {
    margin-right: 0
}

.cb_ab_playIcon,
.cb_ab_pauseIcon,
.cb_ab_downloadIcon {
    display: flex;
    height: 30px;
    width: 30px;
    background-color: hsl(0, 0%, 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.cb_ab_playIcon:hover,
.cb_ab_pauseIcon:hover,
.cb_ab_downloadIcon:hover {
    background-color: hsl(0, 0%, 70%);
}

.cb_ab_playIcon::before {
    /* background-color: red; */
    position: relative;
    right: -1px;
}

.cb_ab_timeSlider {
    -webkit-appearance: none;
    appearance: none;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    height: 10px;
    background: hsl(0, 0%, 80%);
    border-radius: 100px;
    background-image: linear-gradient(black, black);
    background-size: 0% 100%;
    background-repeat: no-repeat;
}


.cb_ab_timeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    opacity: 0;
    border-radius: 100px;
    background: black;
    box-shadow: 0 0 0px 1px black;
    border: none;
}

.cb_ab_timeSlider::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    opacity: 0;
    border-radius: 100px;
    background: black;
    box-shadow: 0 0 0px 1px black;
    border: none;
}

.cb_ab_timeSlider:hover::-webkit-slider-thumb {
    opacity: 1;
}

.cb_ab_timeSlider:hover::-moz-range-thumb {
    opacity: 1;
}

.cb_ab_timeText {
    font-weight: bold;
    font-family: system-ui;
}

.littleMessagePopUp {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 1;
    background: white;
    padding: 5px 5px 5px 15px;
    border-radius: 100px;
    color: gray;
    display: flex;
    align-items: center;
    box-shadow: 0 0 3px black;
}

.lmpu_closeIcon {
    margin-left: 5px;
}


.mediaViewerlayer {
    display: flex;
    flex-direction: column;
    background: black;
    height: calc(100vh / var(--bodyZoomRatio) - var(--bodyHeaderHeight) - var(--addressBarHeight));
    position: relative;
}

.mvl_headerPart {
    background-color: hsl(0, 0%, 20%);
    display: flex;
    align-items: center;
    padding: 10px;
}

.mvl_headerPart>* {
    margin-right: 10px;
}

.mvl_headerPart>*:last-child {
    margin-right: 0px;
}

.mvl_downloadIcon:hover,
.mvl_closeIcon:hover,
.mvl_previousIcon:hover,
.mvl_nextIcon:hover {
    background-color: white;
    color: black;
}

.mvl_footerPart {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    background-color: hsl(0, 0%, 20%);
}

.mvl_footerPart>* {
    margin-right: 10px;
}

.mvl_footerPart>*:last-child {
    margin-right: 0px;
}

.mvl_footerImg {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 100px;
}

.mvl_nextIcon,
.mvl_previousIcon {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}

.mvl_previousIcon {
    left: 10px;
}

.mvl_nextIcon {
    right: 10px;
}

.mvl_bodyPart {
    width: 100%;
    background-color: black;
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.mvl_title {
    font-weight: bold;
    color: white;
    flex-grow: 1;
}

.mvl_downloadIcon {
    font-size: 14px;
}

.mvl_footerImgWrap {
    position: relative;
    display: flex;
}

.mvl_footerImgChosen,
.mvl_footerImg:hover {
    box-shadow: 0px 0px 0px 1px white, 0px 0px 5px 3px white;
}

.mvl_footerImgIcon {
    text-shadow: var(--niceTextShadow);
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mvl_bigImg,
.mvl_bigVideo {
    max-width: 100%;
    max-height: 100%;
    border: 0px;
}

.id_importantButton {
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 5px 10px 5px 5px;
    background: var(--green);
    border-radius: 100px;
    color: white;
    text-decoration: none;
}

.id_importantButton:hover .id_ib_icon {
    background-color: black;
}

.id_ib_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 5px;

    background: #009903;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    border-radius: 100px;
}

.importantDecisions {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.importantDecisions>* {
    margin-bottom: 10px;
}

.importantDecisions>*:last-child {
    margin-bottom: 0;
}


/* .importantDecisions {
    display: none;
    margin-top: 10px;
}*/