@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;600;700;800;900&display=swap');

body[data-url="/roulette_video_chat/request/"] #mob_header{
    display: none;
}
@media(max-width:767px){
    body[data-url="/profile/chat/"] #ar_header_bottom_box_id{
        display: none;
    }
}


.ar_header_main_wrapper {
    background-color: white;
    -webkit-box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.15);
    padding: 16px 0;
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
}

.ar_header_inner {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.ar_header_top_box {
    display: flex;
    justify-content: space-between;
}
.ar_header_top_left_box{
    display: flex;
}

/* Search Filter for tagging CSS start */
.search-container.desktop-search {
  position: relative;
  width: 420px;
}

.search-container.desktop-search .search-box {
  width: 450px;
  height: 40px;
  padding: 10px 10px 10px 40px;
  border-radius: 10px;
  border: 1px solid #3C434B4D;
  background: #F8F8F8;
  font-size: 14px;
  font-family: Overpass;
  color: #3C434B;
  outline: none;
  transition: all 0.2s ease;
}

.search-container.desktop-search .search-box:focus {
  background: #ffffff;
  border-color: #D1D5DB;
}

.search-container.desktop-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.6;
  pointer-events: none;
}

.dropdown{
  position:absolute !important;
  top:50px;
  width:450px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  max-height: calc(100vh - 100px);
  overflow-y:auto;
  display:none;
  z-index: 9;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 transparent;
  padding: 10px 0;
}

.dropdown h2{
  margin: 10px 12px 15px 15px;
  font-family: Overpass;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.48px;
}
.item{
  padding: 5px 14px;
  font-family: Overpass;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.42px;
  cursor: pointer;
}
.item:hover{
  background:#f0f2f5;
}


.item--character {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0px;
    cursor: pointer;
    border-bottom: 1px solid #ececec;
    transition: background 0.2s ease;
    margin: 0 14px;
}

.item--character:hover {
    background: #f8f8f8;
}

.item__avatar {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.item__image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.item__online-dot {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 8px;
    height: 8px;
    background: #44d62c;
    border: 2px solid #fff;
    border-radius: 50%;
}

.item__online-dot.item__offline-dot {
  background: #aba7a7;
}
.item__details {
  padding-top: 7px;
}
.item__name {
    letter-spacing: -0.42px;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 11px;
}

.mobile-dropdown .item__name {
  color: #FFF;
  font-family: Overpass;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.48px;
}

.mobile-dropdown .item__image, .mobile-dropdown .item__avatar {
    width: 60px;
    height: 60px;
}
.mobile-dropdown .item__online-dot {
  right: 4px;
  bottom: 4px;
  width: 11px;
  height: 11px;
}

.item__star {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 5px;
    background: url("/static/images/tag-stars-filled.da52babaa2b8.svg") no-repeat center;
    background-size: contain;
}

.tags-heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 15px;
}
.tags-heading-container a {
    color: #FD7663;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.56px;
}

.tags-wrapper-container {
    margin-bottom: 16px;
}

.tags-list {
    max-height: 80px;   /* Adjust as needed */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
}

.hosts-wrapper {
    margin-top: 16px;
}

.mobile-dropdown .hosts-wrapper {
  padding: 20px 15px;
  margin-top: 0px;
}
.mobile-dropdown .tags-wrapper-container {
  padding: 20px 15px;
  margin-bottom: 0px;
}

.hosts-list {
  max-height: 280px; /* Adjust as needed */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}


/* Search Filter for tagging CSS Ends */

.ar_header_top_right_before_login_actions {
    display: flex;
    gap: 17px;
}
.ar_header_top_right_before_login_actions .ar_header_btn {
    border: 1px solid transparent;
    width: 88px;
    height: 35px;
    border-radius: 50px;
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}
.ar_header_top_right_before_login_actions .ar_header_btn.ar_login_btn {
    color: #6c7a89;
    border-color: #6c7a89;
    background-color: #fff;
}
.ar_header_top_right_before_login_actions .ar_header_btn.ar_signup_btn {
    color: #fff;
    border-color: #3b414a;
    background-color: #3b414a;
}
.ar_header_top_right_after_login_actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ar_header_userinfo_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.ar_header_userinfo_btn  .ar_header_userinfo_image {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #f3f3f3;
    border-radius: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ar_header_userinfo_btn .online-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: auto;
    left: 20px;
    border: 1px solid #fff;
}
.ar_header_userinfo_btn .ar_header_userinfo_name {
    display: block;
    padding-top: 1px;
    text-transform: capitalize;
    color: #3A414A;
    font-family: Overpass;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: -0.8px;
}
.ar_header_bottom_box {
    margin-top: 20px;
}
.ar_header_bottom_box a.menu {
    text-decoration: none;
    position: relative;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    transition: .2s;
    color: #3C434B;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 14px;
    letter-spacing: -0.42px;
}
.ar_header_bottom_box a.menu:hover{
    color: #9d2832 !important;
    transition: .2s;
}
.ar_header_bottom_box a.menu.active {
    color: #9d2832 !important;
}
.ar_login_btn_mobile, .ar_header_btn_hamburger_box{
    display: none;
}
.ar_hamburger_menu_box{
    position: fixed;
    background: #3a414b;
    top: 50px;
    height: auto;
    max-height: calc(100% - 95px);
    width: 100%;
    opacity: 0;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, .5);
    visibility: hidden;
    left: 0;
    padding: 16px 0;
    display: block;
    bottom: 0;
    z-index: 999999;
    overflow-y: auto;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}
.show-menu .ar_hamburger_menu_box{
    opacity: 1;
    visibility: visible;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    left: 0;
    top: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
}
.show-menu .overlay {
    visibility: visible;
}
.ar_hamburger_menu_box li a, .ar_account_common_menu_header, .ar_hamburger_menu_box li button#logout-field, .ar_account_loggedout_menu li a{
  display: flex;
  align-items: center;      /* Vertically center icon + text */
  gap: 12px;                 /* Space between image and text */
  color: #fff;
  text-decoration: none;
  font-family: Overpass;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;           /* Make line-height tighter */
  letter-spacing: -0.54px;
  position: relative;
  padding: 0;
}
.ar_hamburger_menu_box li button#logout-field:focus{
  outline: none;
}
.ar_hamburger_menu_box li a:hover, .ar_hamburger_menu_box li a:focus{
    color: #fff !important;
}
.ar_account_common_menu_header .angle-down {
    display: block;
    width: 8px;
    height: 8px;
    border: 2.5px solid #fff;
    background: transparent;
    border-width: 0 0 2.5px 2.5px;
    transform: rotate(-45deg);
    margin-right: 0;
    transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    position: absolute;
    right: 5px;
    top: 7px;
}
.ar_account_common_menu_box.open .ar_account_common_menu_header .angle-down{
    transform: rotate(134deg);
    transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    top: 11px;
}
.ar_hamburger_menu_box li img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    margin-top: -4px;
}
ul.ar_account_common_menu.singles li, .ar_account_loggedin_menu li,  .ar_account_loggedout_menu li{
    margin: 0;
    padding: 14px 16px;
}

ul.ar_account_common_menu li .ar_account_common_menu_box{
  margin: 0;
  padding: 14px 16px;
}
ul.ar_account_common_menu li .ar_account_common_menu_box.open {
  background: rgba(255, 255, 255, 0.05);
}
.ar_account_common_menu_box .dropdown-menu-list{
    display: none;
    padding: 10px 40px;
    overflow-y: scroll;
    max-height: 175px;
    margin-top: 10px;
}
.ar_account_common_menu_box .dropdown-menu-list li{
    padding: 0;
    margin-bottom: 18px;
}
.ar_account_common_menu_box .dropdown-menu-list li:last-child{
  margin-bottom: 0;
}
.ar_menu_saperater{
    display: block;
    width: calc(100% - 32px);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px auto;
}
.ar_account_common_menu_box .dropdown-menu-list li a{
    font-size: 16px;
    line-height: 14px;
    letter-spacing: -0.48px;
}
.ar_account_common_menu_box .dropdown-menu-list li a#applicationTrackBtn {
    color: #fff !important;
    text-decoration: none;
    position: relative;
    font-size: 16px;
    line-height: 14px;
}

/* Subscription UI CSS */
.ar_subscription_section{
    background: #fcf4f4;
    padding: 16px;
  }
  .ar_subscription_banner_container {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ar_subscription_banner_left_content {
    width: auto;
  }
  
  .ar_subscription_banner_left_content span {
    display: block;
  }
  
  .ar_subscription_banner_left_content span.ar_subscription_banner_title {
    color: #3C434B;
    font-family: Overpass;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.48px;
    display: flex;
    gap: 2px;
  }
  
  .ar_subscription_banner_left_content span.ar_subscription_banner_desc {
    color: #3C434B;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.42px;
    margin-top: 6px;
  }
  
  .ar_subscription_banner_left_content span.ar_subscription_banner_title span {
    color: #862526;
  }
  
  .ar_subscription_banner_right_content .ar_subscribe_btn {
    background: #FDC363;
    border: none;
    color: #3C434B;
    text-align: center;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 43px;
    text-transform: uppercase;
    width: 130px;
    height: 40px;
    border-radius: 30px;
    filter: drop-shadow(0px 4px 5px rgba(253, 195, 99, 0.40));
  }
  .ar_subscription_modal {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .ar_subscription_modal .main-pop-window{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 30px 20px 20px;
    height: auto;
  }
  .ar_subscription_modal_body .ar_subscription_modal_title {
    color: #3D434C;
    text-align: center;
    font-family: Overpass;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 0 40px;
  }
  .ar_subscription_modal_desc {
    margin: 12px 45px;
    color: #3D434C;
    text-align: center;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
  }
  .ar_subscription_modal_box {
    background: rgba(136, 22, 35, 0.05);
    padding: 10px 15px;
    text-align: center;
    border-radius: 10px;
    max-width: 310px;
    width: 100%;
    margin: 0 auto 16px;
  }
  .ar_subscription_modal_box span{
    color: #3D434C;
    text-align: center;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
  }
  .ar_subscription_modal_footer {
    display: flex;
    gap: 10px;
  }
  .ar_btn_rounded {
    height: 42px;
    width: 100%;
    border-radius: 50px;
    text-align: center;
    font-family: Overpass;
    font-size: 14px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.84px;
    text-transform: uppercase;
    border: none;
  }
  .ar_btn_grey{
    background: #E2E2E2;
    color: #3B404A;
  }
  .ar_btn_dark{
    background: #3A414B;
    color: #ffffff;
  }


@media(max-width:767px){
    .ar_header_main_wrapper{
        box-shadow: none;
        padding: 0;
    }
    .ar_header_top_box{
        padding: 10px 15px;
    }
    .ar_header_bottom_box{
        overflow-y: hidden;
        white-space: nowrap;
        width: 100%;
        overflow-x: scroll;
        position: relative;
        font-size: 0;
        padding: 0;
        border-bottom: 3px solid #e3e1e4;
        border-top: 3px solid #e3e1e4;
        margin-top: 0;
    }
    .ar_header_bottom_box a.menu{
        padding: 9px 0 6px;
        margin: 0 25px;
        background: #fff;
        font-size: 11px;
    }
    .ar_header_bottom_box a.menu:after{
        content: '';
        width: 1px;
        height: calc(100% + 3px);
        background-color: #b6b6b6;
        display: block;
        position: absolute;
        top: 0;
        right: -25px;
    }
    .ar_header_bottom_box a.menu.active{
        border-color: #9d2832;
    }
    .ar_header_btn_hamburger_box{
        display: flex;
        flex: 1;
        align-items: center;
    }
    .ar_login_btn_mobile, .ar_header_btn_hamburger{
        display: block;
        background: transparent;
        border: none;
        padding: 0;
    }
    .ar_login_btn_mobile:focus, .ar_header_btn_hamburger:focus{
        outline: none;
    }
    /* .ar_login_btn_mobile img, .ar_header_btn_hamburger img {
        width: 26px;
        height: 24px;
    } */
     .ar_purchase_redirect_btn img{
        width: 30px;
        height: 30px;
     }
    .ar_header_btn{
        display: none;
    }
    .ar_chat_redirect_btn, .ar_logout_redirect_btn, .ar_header_userinfo_btn .ar_header_userinfo_name{
        display: none;
    }
    .ar_header_top_right_box, .ar_header_top_left_box{
        flex: 1;
    }
    .ar_header_top_right_after_login_actions{
        gap: 10px;
        justify-content: right;
    }
    .ar_header_branding img.ar_header_logo {
        width: 100%;
    }
    .ar_header_top_right_before_login_actions{
        justify-content: right;
    }
    /* Subscription UI CSS */
.ar_subscription_section{
    background: #fcf4f4;
    padding: 16px;
    position: fixed;
    top: 88px;
  }
  .ar_subscription_banner_container {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }
  .ar_subscription_banner_left_content {
    width: auto;
    text-align: center;
  }
  
  .ar_subscription_banner_left_content span {
    display: block;
  }
  
  .ar_subscription_banner_left_content span.ar_subscription_banner_title {
    color: #3C434B;
    font-family: Overpass;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.48px;
    display: block;
  }
  
  .ar_subscription_banner_left_content span.ar_subscription_banner_desc {
    color: #3C434B;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.42px;
    margin-top: 6px;
    margin-bottom: 16px;
  }
  
  .ar_subscription_banner_left_content span.ar_subscription_banner_title span {
    color: #862526;
  }
  .ar_subscription_banner_right_content {
    text-align: center;
  }
  .ar_subscription_banner_right_content button{
    font-size: 14px;
    margin: 0 !important;
  }
  .ar_subscription_banner_right_content .ar_subscribe_btn {
    background: #FDC363;
    border: none;
    color: #3C434B;
    text-align: center;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 43px;
    text-transform: uppercase;
    width: 280px;
    height: 40px;
    border-radius: 30px;
    filter: drop-shadow(0px 4px 5px rgba(253, 195, 99, 0.40));
    display: block;
  }
  .ar_subscription_modal {
    background-color: rgba(0, 0, 0, 0.9) !important;
  }
  .ar_subscription_modal .main-pop-window{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 30px 20px 20px;
    height: auto;
  }
  .ar_subscription_modal_body .ar_subscription_modal_title {
    color: #3D434C;
    text-align: center;
    font-family: Overpass;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 0 30px;
  }
  .ar_subscription_modal_desc {
    margin: 12px 25px;
    color: #3D434C;
    text-align: center;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
  }
  .ar_subscription_modal_box {
    background: rgba(136, 22, 35, 0.05);
    padding: 10px 15px;
    text-align: center;
    border-radius: 10px;
    max-width: 310px;
    width: 100%;
    margin: 0 auto 20px;
  }
  .ar_subscription_modal_box span{
    color: #3D434C;
    text-align: center;
    font-family: Overpass;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
  }
  .ar_subscription_modal_footer {
    display: flex;
    gap: 10px;
  }
  .ar_btn_rounded {
    height: 42px;
    width: 100%;
    border-radius: 50px;
    text-align: center;
    font-family: Overpass;
    font-size: 14px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.84px;
    text-transform: uppercase;
    border: none;
  }
  .ar_btn_grey{
    background: #E2E2E2;
    color: #3B404A;
  }
  .ar_btn_dark{
    background: #3A414B;
    color: #ffffff;
  }
}

/* Mobile Search Toggle Button - Font Awesome version */
.mobile-search-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.mobile-search-toggle:focus {
  outline: none;
}

.mobile-search-toggle img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1000;
  flex-direction: column;
}

.mobile-search-overlay.active {
  display: flex;
}

.mobile-search-overlay.active .mobile-dropdown .item.item--no-results{
  color: #fff;
  text-align: center;
  padding-top: 15px;
  font-weight: bold;
  font-size: 16px;
}

.mobile-search-header {
  padding: 15px;
  background: #fff;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #F8F8F8;
  border-radius: 10px;
  padding: 5px 5px 5px 5px;
  flex: 1;
  border: 1px solid #3C434B4D;
  height: 46px;
}

.mobile-search-icon {
  position: absolute;
  left: 12px;
  color: #3C434B;
  font-size: 16px;
  width: 18px;
  height: 18px;
  opacity: 90%;
}

.mobile-search-input {
  width: 100%;
  padding: 10px 10px 10px 35px; 
  border: none;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: #333;
}

.mobile-search-input::placeholder {
  color: #999;
}

.mobile-search-close {
  position: static; 
  background: transparent;
  border: none;
  font-size: 20px;
  color: #666; 
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}

.mobile-search-close:hover {
  color: #333;
}

.mobile-search-content {
  flex: 1;
  overflow-y: auto;
  /* padding: 20px 15px;
  padding-left: 20px; */
  height: 687px;
  display: none;
  background: rgba(0, 0, 0, 0.92);
}
.mobile-search-content.active {
  display: block;
}

/* Mobile Dropdown - Styled for dark background */
/* .mobile-dropdown{
  width: 171px;
} */


.mobile-dropdown h2 {
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0%;
  line-height: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 10px;
}

.mobile-dropdown hr {
  border-top: 1px solid #6c6c6c;
  margin: 0px;
}

.mobile-dropdown .tags-list .item {
  padding: 10px 0px 10px 0px;
  cursor: pointer;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0%;
}

.mobile-dropdown .item--character {
  margin: 0px;
  border-bottom: 1px solid #6c6c6c;
  padding: 15px 0px;
}

.mobile-dropdown .item:hover,
.mobile-dropdown .item:active {
  background: rgba(255, 255, 255, 0.1); 
}

.mobile-dropdown .hosts-list {
  max-height: 295px;
}

/* Mobile Responsive Styles */
@media(max-width: 767px) {
  .desktop-search {
      display: none !important;
  }
  .item__star {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    background-image: url("/static/images/tag-stars-filled-white.05563ddf48bd.svg");
  }
  
  .search-loader {
    background-color: #fff;
  }

  .mobile-search-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  /* Ensure right box actions stay aligned */
  .ar_header_top_right_after_login_actions {
      gap: 10px;
      justify-content: flex-end;
      align-items: center;
  }
  
  .ar_header_action_btn {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  /* Hide specific elements on mobile as before */
  .ar_chat_redirect_btn, 
  .ar_logout_redirect_btn, 
  .ar_header_userinfo_btn .ar_header_userinfo_name {
      display: none;
  }
}