/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
:root {
	--font: "Plus Jakarta Sans", sans-serif;
  --fontInter: "Inter", sans-serif;
    --background1: #FCFCFF;
    --background1rgb: rgb(253,252,247);
    --background2: #f0f0f0;
    --background3: var(--menu);
    --background-pat1: var(--background);
    --background-pat2: var(--White);
    --invertfilter:invert(0);
    --black_white: black;
    --box-shadow-img: 0 7px 14px 0 rgba(60,66,87, 0.12), 0 3px 6px 0 rgba(0,0,0, 0.12);
    /* --color1: var(--textMain); */
    /* --color2: var(--textSecondary); */
    --color1: var(--textMain);
    --color2: var(--textSecondary);
    --color_invert: var(--White-500);
    --color_ribblr: var(--Purple);
    --gradient1:#72A1FF;
    --gradient2: #C898FF;
    --lefty: scaleX(1);
    --motion: running;
    --transform: ;
    color-scheme: light dark;
    --transition:all .17s ease-in-out;
    --iconRibblr: #9A7CC6;
	--tagText: #311462;
  --textSecondary: #63518f;
  --menu: #eae1ed;
  --searchBar: #fbf9fc;
  --cardBackground: #ceb2ff1a;
  --textSupport: #9b8fba;
  --background: #f2edf5;
  --textMain: #311462;
  --wishlistBg: color-mix(in srgb, var(--White) 80%, transparent);
  --btnBackground: #ceb2ff40;
  --menuIcon: #b8a0cf;
  --stickied: #f2edf5cc;
  --btnSelectedInverse: #fbf9fccc;
  --btnSelected: #27232fcc;
	--White: #fbf9fc;
  --White-500: #fbf9fc;
  --Red: #f66458;
  --Green: #20a565;
  --Blue: #4380f8;
  --Purple: #a471fb;
  --Pink: #e63373;
  --Gray-50: #eeeeef;
  --Gray-500: #545a64;
  --Red-500: #f66458;
  --Green-500: #20a565;
  --Blue-500: #4380f8;
  --GoldBg: #fff4d6;
  --GoldText: #b67310;
  --GoldBorder: #ffe393;
}
/* Safari has the user-select CSS setting as none by default */
[contenteditable] {
    -webkit-user-select: text;
    user-select: text;
}
body{
	font-family: var(--font);
	/*	font-size: 0.9em; */
	/* background: #31146280; */
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: subpixel-antialiased;
	color: var(--textMain);
	position:absolute;
	height:100%;
	width:100%;
	bottom:0;
}

.ytp-chrome-top.ytp-show-cards-title {
    display:none!important;
}

.chat-grid {
    display: grid;
    grid-template-areas:
        "chat_msgs"
        "text_msg";
    grid-template-rows: auto 40px;
    height: 100vh!important;
}

span.chat_msg a {
  color: var(--Purple);
}

.chat_msgs {
    padding:10px 20px;
    line-height: 24px;
    grid-area:chat_msgs;
    margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

input::placeholder {
    color: var(--textSupport);
}

.chat_line {
list-style-type: none;
	background: var(--textMain);
	padding: 12px 16px;
	font-family: var(--fontInter);
	font-size: 14px;
	border-radius: 16px;
  word-break: break-word;
    color: var(--White-500);
}

.chat_msg {
	font-size: 14px;
}

.chat_username.user_me {
    color:var(--Purple);
}
.chat_username {
Font-weight:600;
	font-size: 14px;
	color: var(--White-500);
}

.chat_username::after {
    content: ' ';
}

.chat_msg::after {
    content: '  ';
}

.chat_stamp {
    font-size: 14px;
    color: var(--menuIcon);
    margin-right: 5px;
}

.chat_del {
    transition: all 0.25s ease-in-out;
    cursor:pointer;
    vertical-align:middle;
}

.chat_del:hover {
    opacity:1;
}

.chat_del img {
    width: 11px;
    filter: invert(1);
    /* for filter help in safari */
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    /* for filter help end*/
}

.text_msg {
    grid-area: text_msg;
    display:grid;
    width:100%;
    grid-template-areas:
        "input send";
    grid-template-columns: 80% 20%;
    position:sticky;
    bottom:-1px;
    background: #53309c;
    height: 76px;
    padding: 16px;
    border-top: 1px solid var(--textSecondary);
    box-sizing: border-box;
    align-items: center;
}

#msg_input {
  grid-area:input;
  font-family: var(--font);
  width:90%;
  margin:0 auto;
  padding: 10px;
  height:44px;
  border:none;
  border-radius:12px;
	background: var(--textMain);
	box-sizing: border-box;
}

.text_msg label {
    grid-area:send;
    vertical-align:middle;
    cursor:pointer;
    transition: all 0.25s ease-in-out;
    width: 44px;
    background: var(--textMain);
    padding: 8px 12px;
    border-radius: 12px;
	height: 44px;
	box-sizing: border-box;
  display: flex;
    justify-content: center;
    align-items: center;
}
#msg_send {
    grid-area: send;
    /* vertical-align: middle; */
    /* cursor: pointer; */
    /* transition: all 0.25sease-in-out; */
    width: 18px;
    /* margin: auto; */
    /* background: var(--textMain); */
    /* padding: 8px 12px; */
    /* border-radius: 12px; */
    height: 18px;
    /* box-sizing: border-box; */
}

/* ribblr show copy */
.dev_menu_Class,
#menuBurger {
  background: transparent!important;
  color: var(--White-500)!important;
}

.bottom_menu {
  background: var(--textMain) !important;
}

.page_container_all:has(.ribblr_show_page) {
  margin: auto;
}

.header-mobile-search {
  display: none!important;
}

.footer_top_gradient.page4 {
 background: #31146280;
}
.sitemaptext_links, .bottom_menu { color: var(--White-500) !important;
}

.vid {
  width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
  height: 170px;
}
.vid iframe {
  border-radius: 16px;
}
.prev_videos {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  gap: 16px;
  margin-top:16px;
  overflow-y:hidden;
}
.Right_social {
  background: #31146280!important;
}
.ribblr_show {
  background: radial-gradient(var(--Purple), #5D3B98, #5D3B98);
}

.ribblr_show_page {
  color: var(--White-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  padding-bottom: 12px;
}

.desc {
  font-size: var(--font_large);
  text-align: center;
  font-family:'Inter';
  color: #EAE1ED;
}

.subtitle {
  margin: 10px 10px;
  width: fit-content;
}

.ytalong-responsive {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border-radius:24px;
}

#ytchat {
  min-height: 320px;
}

.prev_title {
  font-weight: var(--fontweight_heavy);
  font-size: var(--font_title);
  line-height: 20px;
}

.no_vid {
  text-align: center;
}

.prev_section {
  width: 100%;
  /* margin: 30px auto; */
  background: #31146280;
  border-radius: 24px;
  padding: 24px;
  box-sizing: border-box;
}


.ribblr_show_vid {
  width: 100%;
  background: #31146280;
  border-radius:24px;
}

.ytalong-responsive #ytalong {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}

.chat-grid {
  overflow-x:hidden;
  border-radius:24px;
}

#msg_input {
  width: 75vw;
    font-family: 'Inter';
    font-size: 16px;
    color:var(--White-500);
    margin: 0 16px 0 0;
}

.text_msg {
  display: flex
;
}

.chat_msgs {
  width:90vw;
}

.chat_line {
  /* color: color:var(--White-500); */
  color: var(--White-500);
}

.ribblr_show_container {
  /*background: #744cd5;*/
  width: 100%;
  display: flex
  ;
      flex-direction: column;
      gap: 16px;
}

@media only screen and (max-width: 767px) and (max-aspect-ratio: 119 / 90) {
  #ytchat {
    min-height: 378px;
  }
}

@media screen and (min-width: 1024px) {
  .search-header {
    display: none!important;
  }
  
  .right-menu {
    display: flex;
    justify-content: flex-end!important;
  }
}

@media screen and (min-width: 1024px) and (min-aspect-ratio: 119/90)

/* all landscape */
  {
  .ribblr_show_container {
    display: flex;
    flex-direction: row;
    gap:16px;
  }

  .ytalong-responsive {
    padding-top: 31.7%
  }

  .ribblr_show_vid {
    width:75%;
  }
}
