/*
*   Header
 */
.bsMainMenuWrp{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 0 1rem;
    z-index: 4;
    background: var(--secondary-color);
}
.bsMainMenuWrp .bsSiteLogo{
    min-width: 200px;
}
.bsMainMenuWrp .bsSiteLogo a {
    display: inline;
}
.bsMainMenuWrp .bsSiteLogo a:hover {
    color: var(--light-color);
}
.bsMainMenuWrp .bsSiteLogo a img {
    max-width: 54px;
}
.bsMainMenu {
    margin: 0 auto;
}
.bsMainMenuList {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
.bsMainMenuList li a {
    padding: 1.5rem 1rem;
    border-top: 6px solid transparent;
    transition: 0.15s ease-in;
}
.bsMainMenuList li a:hover{
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.bsMainMenuList li a.active {
    border-color: var(--primary-color);
}
.bsMenuGroupBtns .bsFavouriteBtn.active,
.bsMenuGroupBtns .bsFavouriteBtn:hover{
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.bsMainMenuWrp .bsPageTitle {
    font-size: 1.5rem;
    color: var(--light-color);
    border-left: 2px solid var(--light-color);
    margin-left: 20px;
    padding-left: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.bsMainMenuWrp .bsMenuToggleWrap{
  display: none;
}
.bsMainMenuWrp .bsMenuToggleWrap .bsTopBarMenu a{
    font-size: 2rem;
}
.bsMainMenuWrp .bsMenuToggleWrap label {
    display: flex;
    flex-direction: column;
    width: 40px;
    cursor: pointer;
    margin-bottom: 0;
}
.bsMainMenuWrp .bsMenuToggleWrap label span{
    border-radius: 10px;
    height: 7px;
    margin: 6px 0 0;
    background: var(--light-color);
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.bsMainMenuWrp .bsMenuToggleWrap label:hover span{
    background-color: var(--light-gray-color);
}
.bsMainMenuWrp .bsMenuToggleWrap span:nth-of-type(1) {
    width:50%;
    margin-top: 0;
}
.bsMainMenuWrp .bsMenuToggleWrap span:nth-of-type(2) {
    width:100%;
}
.bsMainMenuWrp .bsMenuToggleWrap span:nth-of-type(3) {
    width:75%;
}
.bsMainMenuWrp .bsMenuToggleWrap input[type="checkbox"] {
    display:none;
}
.bsMainMenuWrp .bsMenuGroupBtns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.bsMainMenuWrp .bsMenuGroupBtns .bsMenuLoginBtn {
    min-width: 100px;
}
.bsMainMenuWrp .bsMenuGroupBtns .bsLiteBg {
    color: var(--secondary-color);
}
.bsMainMenuWrp .bsMenuGroupBtns .bsLiteBg:hover {
    background-color: var(--light-gray-color) !important;
}
body.menuOpened .bsMainMenuWrp .bsMenuToggleWrap input[type="checkbox"] ~ span:nth-of-type(1) {
    transform-origin:bottom;
    transform: rotatez(45deg) translate(5px, 1px)
}
body.menuOpened .bsMainMenuWrp .bsMenuToggleWrap input[type="checkbox"] ~ span:nth-of-type(2) {
    transform-origin:top;
    transform: rotatez(-45deg)
}
body.menuOpened .bsMainMenuWrp .bsMenuToggleWrap input[type="checkbox"] ~ span:nth-of-type(3) {
    transform-origin:bottom;
    width:50%;
    transform: translate(18px, -9px) rotatez(45deg);
}
.bsGalleryCanvasesLikesWrap {
    display: inline-flex;
    cursor: pointer;
    position: relative;
    color: var(--light-color);
}
.bsGalleryCanvasesLikesWrap i {
    font-size: 30px;
}
.bsGalleryCanvasesLikesWrap .bsFavouriteItemCounts {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 14px;
    text-align: center;
    border-radius: 100%;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--light-color);
}

.bsDropDownMenu{
    color: var(--light-color);
}
.bsDropDownMenu .dropdown-divider{
    margin: .4rem 0;
}
.bsDropDownMenu a{
    padding: .25rem 0.5rem;
}
.bsDropDownMenu a i{
    margin-right: 0.5rem;
}
.bsDropDownMenu a.active,
.bsDropDownMenu a:active{
    background: var(--secondary-color);
}


/*
*   Sidebar
 */
.bsSidebar{
    display: inline-block;
    width: 100%;
    position: fixed;
    top: 72px;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    min-height: auto;
    z-index: 1000;
    background: var(--secondary-color);
    color: var(--light-color);
    transition: transform linear 0.25s;
    -webkit-transition: transform linear 0.25s;
}
.menuOpened .bsSidebar {
    overflow: auto scroll;
    transform: translate(0, 0);
    padding: 1rem 0;
    overflow-x: hidden;
    overflow-y: auto;
}
.bsSidebar .bsMainMenuList {
    flex-direction: column;
}
.bsSidebar .bsMainMenuList li {
    width: 100%;
    text-align: center;
}
.bsSidebar .bsMainMenuList li a {
    padding: 0.5rem 1rem;
}
.bsSidebar .bsMainMenuList li a:hover,
.bsSidebar .bsMainMenuList li a.active {
    border-color: transparent;
}
.bsSidebar .bsSidebarSection{
    padding: 1rem 15px;
    border-bottom: 2px solid var(--light-color);
}
.bsSidebar .bsSidebarSection:last-child {
    border: 0;
}

.bsSidebar label{
    color: var(--light-color);
}

.bsSidebarBottomWrap{
    position: absolute;
    bottom: 0;
    padding: 5px 15px;
    left: 0;
    right: 0;
    z-index: 1000;
    text-align: right;
    background: var(--secondary-color);
}
.bsSidebarBottomWrap .bsUserProfileBtn{
    display: inline-block;
    float: left;
    margin: 0;
    line-height: 30px;
}
.bsSidebarBottomWrap a:hover{
    color: var(--gray-color);
}

.bsSidebar #bsLoginForm{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.bsSidebar #bsLoginForm .bsLoginFormBtn{
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.bsSidebar #bsLoginForm .bsLoginFormBtn:hover{
    background: var(--primary-hover-color) !important;
    border-color: var(--primary-hover-color) !important;
}
.bsSidebar #bsLoginForm a{
    color: var(--light-color);
}
.bsSidebar #bsLoginForm a:hover{
    color: var(--secondary-color);
}
.bsSocialIconsWrp {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 18px;
}
.bsSocialIconsWrp .bsSocialItem:hover {
    color: var(--light-gray-color);
}
.bsPlatoNoteWrp {
    font-size: var(--font-size-normal);
}
.bsPlatoNoteWrp .bsPlatoNoteLinks {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    font-weight: bold;
}
.bsPlatoNoteWrp .bsPlatoNoteLinks .bsPlatoNoteLink:hover {
    color: var(--light-gray-color);
}

/*
*   Sidebar Menu
 */
.bsMenuWrap .bsMenu li {
    list-style: none;
    padding-bottom: 10px;
    text-align: center;
}
.bsMenuWrap .bsMenu li a {
    transition: color 0.3s;
    font-size: 18px;
}
.bsMenuWrap .bsMenu li a.active,
.bsMenuWrap .bsMenu li a:hover {
    color: var(--primary-color);
}
.bsMenuWrap .bsMenu li a i {
    padding-right: 5px;
    width: 26px;
}


/*
*   Landing Page Video
 */
.bsIntroductoryGalleryModal {
    max-width: 90%;
    aspect-ratio: 16 / 9;
}
.bsIntroductoryGalleryModal iframe{
    position: static;
}
.bsCol1By3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.bsCol2By3 {
    display: flex;
}
.bsCol1By4 {
    display: flex;
}
.bsHeroSectionCarouselWrp {
    position: relative;
    height: 85vh;
}
.bsHeroSectionCarouselWrp .swiper-slide img {
    object-position: 0 -40px;
}
.bsHeroSectionCarouselWrp .swiper-slide video {
    width: 100%;
    height: 100%;
}
.bsHeroSectionCarouselContentBx {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
}
.bsHeroSectionCarouselContentBx .bsHeroSectionCarouselContent {
    padding: 1rem;
    max-width: 320px;
    margin-bottom: 1rem;
    color: var(--light-color);
    background: rgba(0, 0, 0, 0.8);
}
.bsHeroSectionCarouselContentBx .bsHeroSectionCarouselContent .bsHeroSectionCarouselContentSubHeading {
    font-size: var(--font-size-xxs);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.bsColumnReverse {
    flex-direction: row-reverse;
}
.bsPreviewSectionBox {
    width: 100%;
}
.bsPreviewSectionBox .bsPreviewSectionMedia {
    margin-bottom: 1rem;
    position: relative;
}
.bsImageWrp {
    width: 60%;
    display: flex;
    align-items: self-start;
}
.bsImageWrp img {
    max-width: 90%;
}
.bsColumnReverse .bsImageWrp {
    justify-content: flex-end;
}
.bsPointListWrp {
    flex: 1;
}
.bsPointList {
    padding: 0 0.5rem;
    list-style: none;
}
.bsPointList li,
.bsPointList li .bsPointListLeft {
    padding: 0.5rem 0;
    display: flex;
    gap: 0.5rem;
}
.bsPointList li:not(:last-child) {
    border-bottom: 1px solid var(--secondary-color);
}
.bsPointList li .bsPointListIcon {
    width: 40px;
    text-align: center;
}
.bsPointList li .bsPointListIcon img {
    object-fit: cover;
}
.bsPointList li .bsPointListText {
    flex: 1;
}
.bsPointList li h3.bsPointListText {
    font-size: 16px;
    line-height: 24px;
}
.bsPointList li .bsPointListIconGrp {
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
    width: 8rem;
    justify-content: center;
}
.bsPointList li:not(:last-child) .bsPointListIconGrp img {
    max-width: 40px;
    width: 40px;
}
.bsPointList li:nth-child(2) .bsPointListIconGrp img:nth-child(4) {
    max-width: 65px;
    padding-right: 5px;
}
.bsPointList li:last-child .bsPointListIconGrp img {
    max-width: 45px;
    width: 45px;
}
.bsVideoWrp {
    display: flex;
    width: 70%;
    margin: auto;
    position: relative;
}
.bsVideoWrp video {
    max-width: 100%;
    width: 100%;
}
.bsGallerySliderViewsWrap .bsTabs {
    justify-content: center;
}
.bsGallerySliderViewsWrap .bsTabs a {
    border: unset !important;
    padding: 0 0.8rem;
    color: var(--secondary-color) !important;
    background: transparent;
}
.bsGallerySliderViewsWrap .bsTabs a.active {
    background: transparent !important;
    text-decoration: underline;
    font-weight: bold;
}
.bsGallerySliderViewsWrap .bsTabs a:hover {
    color: var(--secondary-color) !important;
    font-weight: bold;
}


/*
*   Price List
 */
.bsPricingPlanCol {
    padding: 1rem;
    border: 1px solid var(--primary-color);
    background-color:  var(--light-color);
}
.bsPricingPlanCol .bsPricingPlan {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 245px;
}
.bsPricingPlanCol .bsPricingPlan .bsSectionText {
    font-size: var(--font-size-h4);
}
.bsPricingPlanCol .bsPricingPlan .bsPricingBx {
    margin-bottom: 1rem;
}
.bsPricingPlanCol .bsPricingPlan .bsPricingBx .bsPricingAmount {
    font-size: var(--font-size-h2);
    line-height: 1.2;
}
.bsPricingPlanCol .bsPricingPlan .bsPricingBx .bsPricingDuration {
    font-size: var(--font-size-h5);
}
.bsPlanFeaturesList {
    list-style: none;
}
.bsPlanFeaturesList button {
    position: relative;
    padding-left: 1.8rem;
}
.bsPlanFeaturesList button i {
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-color);
}
.bsPricingPlanCol.bsPricingPlanVipUser {
    border-color: var(--secondary-color);
}
.bsSecondaryBg .bsPlanFeaturesList li i {
    color: var(--light-color) !important;
}
.bsPricingPlanCol.bsPricingPlanVipUser .bsPricingPlan .bsPricingBtn {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.bsPricingPlanCol.bsPricingPlanVipUser .bsPricingPlan .bsPricingBtn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/*
*   Price Table List
 */
.bsPricingPlanTableWrp .bsTableWrp thead tr th {
    font-size: var(--font-size-h4);
}
.bsPricingPlanTableWrp .bsTableWrp tr th:not(:first-child),
.bsPricingPlanTableWrp .bsTableWrp tr td:not(:first-child) {
    text-align: center;
}
.bsPricingPlanTableWrp .bsTableWrp thead tr th:first-child {
    border: none;
    width: 45%;
}
.bsPricingPlanTableWrp .bsTableWrp thead tr th:not(:first-child) {
    width: 15%;
}
.bsPricingPlanTableWrp .bsTableWrp tfoot tr td:first-child {
    border: none;
}
.bsPricingPlanTableWrp .bsTableWrp tfoot tr td {
    vertical-align: top;
    padding: 1rem 0.5rem;
}
.bsPricingPlanTableWrp .bsTableWrp tfoot tr td h4 {
    margin-bottom: 0.8rem;
}
.bsPricingPlanTableWrp .bsTableWrp tfoot tr td p {
    margin: 0.5rem 0;
}

/*
*   Rooms
 */
.bsGalleryRoomList .bsGallerySingleRoom{
    display: inline-block;
    width: 45px;
    background: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 5px 0;
    font-size: 22px;
    border: 1px solid var(--light-color);
}
.bsGalleryRoomList .bsGallerySingleRoom.clickable{
    cursor: pointer;
    background: var(--secondary-color);
    color: var(--light-color);
}

.bsGalleryRoomList .bsGallerySingleRoom.active,
.bsGalleryRoomList .bsGallerySingleRoom.clickable:hover{
    background: var(--primary-color);
}

/*
*   Showroom List
 */
.bsCreateGallery{
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    min-height: 150px;
}
.bsCreateGallery img{
    max-width: 300px;
}
.bsCreateGallery span{
    font-size: 4rem;
    color: var(--primary-color);
}
.bsCreateGallery .bs5MinuteGallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    animation: bsShakeUpAnim 1.5s infinite;
}
.bsCreateGallery .bs5MinuteGallery > span {
    font-size: 1.2rem;
}
.bsShowroomListWrap{
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 100%;
}
.bsShowroomListWrap.bsCenterList{
    justify-content: center;
}
.bsShowroomListWrap .bsSingleShowroom{
    width: calc(100% / 6 - 0.4rem);
    position: relative;
    /*min-height: 152px;*/
    overflow: hidden;
    border: 1px solid var(--gray-color);
    transition: 0.3s;
}
.bsShowroomListWrap .bsSingleShowroom .bsShowroomEnterIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    font-size: 2rem;
    color: var(--primary-color);
}
.bsShowroomListWrap.item5 .bsSingleShowroom {
    width: calc(100% / 5 - 0.4rem);
}
.bsShowroomListWrap.item4 .bsSingleShowroom {
    width: calc(100% / 4 - 0.4rem);
}
.bsShowroomListWrap.item3 .bsSingleShowroom {
    width: calc(100% / 3 - 0.4rem);
}
.bsShowroomListWrap .bsSingleShowroom:nth-child(6n) {
    margin-right: 0;
}
.bsShowroomListWrap .bsSingleShowroom a{
    text-decoration: none;
}
.bsShowroomListWrap .bsSingleShowroom img{
    width: 100%;
    max-width: 100%;
    transform: scale(1);
    transition: 0.3s;
}
.bsShowroomListWrap .bsSingleShowroom:hover img {
    transform: scale(1.2);
}
.bsShowroomListWrap .bsSingleShowroom .bsThemeTitle{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    margin: 0;
    padding: 10px 5px;
    color: var(--light-color);
    background: var(--secondary-color);
}
.bsShowroomListWrap .bsSingleShowroom .bsSingleOverlay,
.bsAvatarLibContent .bsAvatarGalleryItem .bsSingleOverlay,
.bsGalleryLibContent .bsGalleryItem .bsSingleOverlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}
.bsShowroomListWrap .bsSingleShowroom .bsSingleOverlay video{
    display: none;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
}
.bsShowroomListWrap .bsSingleShowroom .bsSingleOverlay:hover video{
    display: inline-block;
}
.bsShowroomListWrap .bsSingleShowroom:hover .bsSingleOverlay,
.bsAvatarLibContent .bsAvatarGalleryItem:hover .bsSingleOverlay,
.bsGalleryLibContent .bsGalleryItem:hover .bsSingleOverlay{
    display: block;
}
.bsShowroomListWrap .bsSingleShowroom .bsSingleOverlay > span{
    color: var(--light-color);
    font-size: 2rem;
}
.bsShowroomListWrap .bsSingleShowroom .bsActionWrap,
.bsAvatarLibContent .bsAvatarGalleryItem .bsActionWrap,
.bsGalleryLibContent .bsGalleryItem .bsActionWrap{
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
}
.bsShowroomListWrap .bsSingleShowroom .bsActionWrap.leftWrap{
    left: 5px;
    right: initial;
}
.bsAvatarLibContent .bsAvatarGalleryItem .bsActionWrap .bsGalleryAvatarContentBtn,
.bsGalleryLibContent .bsGalleryItem .bsActionWrap{
    display: none;
}
.bsAvatarLibContent .bsAvatarGalleryItem.selected .bsActionWrap,
.bsAvatarLibContent .bsAvatarGalleryItem.selected .bsActionWrap .bsGalleryAvatarContentBtn,
.bsGalleryLibContent .bsGalleryItem.selected .bsActionWrap{
    display: inline-block;
}
.bsShowroomListWrap .bsSingleShowroom .bsActionWrap a,
.bsShowroomListWrap .bsSingleShowroom .bsActionWrap span,
.bsAvatarLibContent .bsAvatarGalleryItem .bsActionWrap a,
.bsAvatarLibContent .bsAvatarGalleryItem .bsActionWrap span,
.bsGalleryLibContent .bsGalleryItem .bsActionWrap a,
.bsGalleryLibContent .bsGalleryItem .bsActionWrap span{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--secondary-color);
    color: var(--light-color);
    cursor: pointer;
    font-size: var(--font-size-normal);
    margin-bottom: 3px;
}
.bsActionWrap .bsGreyCheckBox {
    background: var(--gray-color) !important;
}
.bsUnFavouriteBtn{
    /*
    color: var(--secondary-rgb-color) !important;
    background: var(--gray-color) !important;
     */
}
.bsShowroomListWrap .bsSingleShowroom .bsActionWrap a:hover,
.bsShowroomListWrap .bsSingleShowroom .bsActionWrap span:hover,
.bsAvatarLibContent .bsAvatarGalleryItem .bsActionWrap a:hover,
.bsAvatarLibContent .bsAvatarGalleryItem .bsActionWrap span:hover,
.bsGalleryLibContent .bsGalleryItem .bsActionWrap a:hover,
.bsGalleryLibContent .bsGalleryItem .bsActionWrap span:hover{
    background: var(--primary-color);
}

.bsVRModelWrap .bsActionBar,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar,
.bsMediaGalleryItem .bsMediaDeleteConfirmationWrap{
    display: none;
}
.bsVRModelWrap .bsActionBar,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar,
.bsMediaGalleryItem .bsMediaDeleteConfirmationWrap{
    z-index: 1200;
    width: 100%;
    text-align: center;
    background: var(--secondary-color);
    padding: 10px 5px;
    color: var(--primary-color);
}
.bsVRModelWrap .bsActionBar p,
.bsVRModelWrap .bsMediaDeleteConfirmationWrap p,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar p,
.bsMediaGalleryItem .bsMediaDeleteConfirmationWrap p{
    margin-bottom: 5px;
    color: var(--light-color);
}
.bsVRModelWrap .bsActionBar > div,
.bsVRModelWrap .bsMediaDeleteConfirmationWrap > div,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar > div,
.bsMediaGalleryItem .bsMediaDeleteConfirmationWrap > div{
    display: table;
    width: 100%;
}
.bsVRModelWrap .bsActionBar span,
.bsVRModelWrap .bsActionBar form,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar span,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar form,
.bsMediaGalleryItem .bsMediaDeleteConfirmationWrap span{
    display: table-cell;
    width: 1%;
    cursor: pointer;
}
.bsVRModelWrap .bsActionBar span,
.bsVRModelWrap .bsActionBar form button,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar span,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar form button,
.bsMediaGalleryItem .bsMediaDeleteConfirmationWrap span{
    background: var(--light-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color) !important;
}
.bsVRModelWrap .bsActionBar form button,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar form button{
    width: 100%;
}
.bsVRModelWrap .bsActionBar button:focus,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar button:focus{
    outline: none;
}
.bsVRModelWrap .bsActionBar span:hover,
.bsVRModelWrap .bsActionBar button:hover,
.bsVRModelWrap .bsMediaDeleteConfirmationWrap span:hover,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar span:hover,
.bsShowroomListWrap .bsSingleShowroom .bsActionBar button:hover,
.bsMediaGalleryItem .bsMediaDeleteConfirmationWrap span:hover{
    background: var(--primary-color);
    color: var(--light-color);
}
.bsEmptyContainer{
    margin-bottom: 10px;
    width: 30%;
}
.bsGalleryOptionList{
    width: 100%;
}
.bsGalleryOptionList .bsShowroomListWrap .bsSingleShowroom{
    cursor: pointer;
}
.bsRoomAppearanceActionWrap{
    display: inline-block;
    width: 100%;
}
.bsRoomAppearanceActionWrap .bsRoomAppearanceWrap{
    display: inline-block;
    width: calc(100%/6);
    float: left;
}
.bsRoomAppearanceActionWrap .bsRoomAppearanceWrap .title{
    color: var(--secondary-color);
    font-size: var(--font-size-normal);
    font-weight: bold;
}
.bsRoomAppearanceActionWrap .bsRoomAppearanceWrap img{
    max-width: 150px;
}
.bsRoomAppearanceBtn{
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 100px;
    border: 5px solid var(--gray-color);
    color: var(--light-color);
    cursor: pointer;
}
.bsRoomAppearanceBtn img{
    width: 100%;
    height: 100%;
}
.bsRoomAppearanceBtn:hover,
.bsRoomAppearanceBtn.selected{
    border-color: var(--primary-color);
}
@-webkit-keyframes bsShakeUpAnim {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes bsShakeUpAnim {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/*
*   Countdown Timer
 */
.bsCounterNotificationWrp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 0.3rem;
    background: var(--secondary-color);
    color: var(--light-color);
}
.bsCounterNotificationWrp .bsBtn {
    text-transform: uppercase;
    font-size: var(--font-size-h4);
    background: var(--light-color);
    color: var(--secondary-color);
}
.bsCountDownTimer {
    display: flex;
    gap: 1rem;
}
.bsCountDownTimer .bsCountDownBox {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bsCountDownTimer .bsCountDownNumber {
    font-weight: bold;
    font-size: var(--font-size-h3);
    line-height: 1;
}
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    68% {
        transform: scale(1);
    }
    72% {
        transform: scale(1.1);
    }
    76% {
        transform: scale(1);
    }
    80% {
        transform: scale(1.1);
    }
    84% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
.bsHeartBeatAnim {
    animation: heartbeat 4s ease-in-out infinite;
}

/*
*   Alert
 */
.bsValidationParent .bsFeedbackMessage{
    margin-top: 10px;
}
.bsValidationParent .errorField{
    border: 1px solid var(--primary-color);
}

/*
*   Media Upload Button
 */
.bsMediaWrap{
    position: relative;
    width: 165px;
    height: 165px;
    background: var(--primary-color);
    color: var(--light-color);
    cursor: pointer;
    text-align: center;
}
.bsMediaWrap.bsFullImage,
.bsMediaWrap.bsBannerImage{
    height: auto !important;
    min-height: 80px;
}
.bsMediaWrap.bsBannerImage{
    min-height: 93px;
}
.bsMediaWrap.bsSmallBx{
    height: 60px;
    width: 60px;
}
.bsMediaWrap img{
    display: none;
}
.bsMediaWrap.bsUploaded img,
.bsMediaWrap.bsPreUploaded img{
    display: inline-block;
    max-height: 100%;
}
.bsMediaActionWrap{
    display: inline-block;
    width: 30px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 3;
}
.bsMediaGalleryItem .bsMediaActionWrap{
    right: 10px;
}
.bsMediaActionWrap span,
.bsMediaActionWrap a{
    display: inline-block;
    color: var(--light-color);
    background: var(--secondary-color);
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
}
.bsMediaActionWrap span,
.bsMediaActionWrap a:hover{
    background: var(--secondary-color);
}
.bsMediaGalleryItem .bsMediaActionWrap span{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}
.bsMediaGalleryItem .bsMediaActionWrap span:hover{
    background: var(--primary-color);
}

/*
*   Media Library Modal
 */
.bsNavTabsContent .bsMediaCropperWrap{
    display: inline-block;
    width: 100%;
}
.bsNavTabsContent .bsMediaCropperWrap .cropper-container,
.bsNavTabsContent .bsMediaCropperWrap .cropper-container div{
    max-width: 100%;
}
.bsNavTabsContent .bsMediaCropperWrap img{
    max-width: 500px;
    max-height: 300px;
}
.bsNavTabsContent .bsMediaLisbContent,
#bsMediaLibraryWrap .bsMediaLibContent,
.bsAvatarLibContent,
.bsGalleryLibContent{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 20px 20px 60px;
}
.bsAvatarLibContent,
.bsGalleryLibContent{
    height: fit-content;
}
.bsNavTabsContent .bsMediaLisbContent{
    height: 100%;
}
.bsMediaLibContent .bsMediaGalleryItem,
.bsAvatarLibContent .bsAvatarGalleryItem ,
.bsGalleryLibContent .bsGalleryItem {
    flex-basis: calc(100% / 5 - 0.5rem);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--gray-color);
}
.bsMediaLibContent .bsMediaGalleryItem .bsMediaName,
.bsAvatarLibContent .bsAvatarGalleryItem .bsMediaName,
.bsGalleryLibContent .bsGalleryItem .bsMediaName{
    font-size: var(--font-size-xs);
    color: var(--primary-color);
    padding: 3px;
    top: initial;
}
.bsMediaLibContent .bsMediaGalleryItem .bsInnerOverlay,
.bsAvatarLibContent .bsAvatarGalleryItem .bsInnerOverlay,
.bsGalleryLibContent .bsGalleryItem .bsInnerOverlay {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3;
}
.bsMediaLibContent .bsMediaGalleryItem:hover .bsInnerOverlay,
.bsAvatarLibContent .bsAvatarGalleryItem:hover .bsInnerOverlay,
.bsGalleryLibContent .bsGalleryItem:hover .bsInnerOverlay{
    display: inline-block;
}

.bsMediaInputWrap input{
    display: none;
}
.bsMediaInputWrap label.bsLabel{
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
}
.bsMediaInputWrap{
    display: inline-block;
    border: 1px solid var(--secondary-color);
    padding: 10px;
    line-height: 10px;
    color: var(--light-color);
}
.bsMediaInputWrap:hover{
    background: var(--secondary-color);
}
.bsMediaInputWrap:hover label{
    color: var(--light-color);
}

#bsMediaLibraryWrap .bsMediaLibraryUpdateWrap{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-color);
    text-align: right;
    padding: 10px 24px;
    z-index: 10;
}

.galleryPreviewWrap{
    /*
    max-width: 80%;
    margin: 0 auto;*/
    aspect-ratio: 2 / 1;
}

.galleryPreviewWrap iframe{
    width: 100%;
    height: 100%;
}

/*
*   Form
 */
#bsDescriptionCounterWrap{
    float: right;
    font-weight: bold;
    font-size: 0.875rem;
    color: var(--secondary-color);
}
#bsDescriptionCounterWrap *{
    float: left;
}
#bsDescriptionCounterWrap.init *{
    color: var(--secondary-color) !important;
}
.bsContactForm textarea{
    max-height: 400px;
}

/*
*   Gallery Room Object
 */
span.btn.btn-primary.bsRoomObjectMenuBtn {
    width: calc(50% - 10px);
    font-size: 1.5rem;
    position: relative;
}
.bsRoomObjectMenuWrap .bsRoomObjectMenuBtn.clickable{
    cursor: pointer;
}
.bsRoomObjectMenuWrap .bsRoomObjectMenuBtn.active{
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
span.btn.btn-primary.bsRoomObjectMenuBtn.active:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    border-width: 18px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}

/*
*   Rooms Navigation
 */
.bsGalleryRoomNavigation * {
    float: none !important;
    display: inherit !important;
}
.bsGalleryRoomNavigation {
    padding: 0.5rem;
    position: fixed;
    top: 80px;
    right: 0;
    width: 58px;
    z-index: 11;
}
.bsGalleryRoomNavigation .bsGalleryRoomNavigationTitle {
    font-size: 12px;
    margin: 0;
}
.bsGalleryRoomNavigationList {
    display: flex !important;
    flex-direction: column;
    gap: 0.25rem;
}
.bsGalleryRoomNavigation .bsGalleryRoomNavigationItem {
    display: inline-block !important;
    padding: 0.2rem;
    position: relative;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    background: var(--light-gray-color);
    color: var(--secondary-color);
    text-align: center;
}
.bsGalleryRoomNavigation .bsGalleryRoomNavigationItem:hover {
    background: var(--primary-color);
    color: var(--light-color);
}
.bsGalleryRoomNavigation .bsGalleryRoomNavigationItem.active {
    background: var(--primary-color);
    color: var(--light-color);
}


 /*
*   Breadcrumbs
 */
.bsGalleryContentHeaderWrap{
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 700px;
    width: 100%;
    z-index: 10;
}
.bsGalleryContentController {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
}
.bsGalleryContentController .bsGalleryContentTitle,
.bsGalleryContentController .bsGalleryContentRight {
    background-color: var(--secondary-color);
}
.bsGalleryContentController .bsGalleryContentTitle {
    padding: 2px 10px;
    display: flex;
    align-self: stretch;
    align-items: center;
    width: 55%;
}
.bsGalleryContentController .bsGalleryContentTitle span {
    display: block;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bsGalleryContentController .bsGalleryContentRight {
    padding: 12px 0;
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: flex-end;
    width: 44%;
    margin-right: 2px;
}
.bsAdminBreadcrumbList{
    position: fixed;
    z-index: 4;
    top: 5px;
}
.bsGalleryContentController .bsAdminBreadcrumbList {
    position: unset;
}
.bsAdminBreadcrumbList.slideLeft{
    /*left: 188px;*/
    position: unset;
    left: auto;
}
.bsAdminBreadcrumbList .bsAdminBreadcrumb {
    list-style: none;
    padding: 0;
}
.bsAdminBreadcrumbList .bsAdminBreadcrumbItemTitle {
    padding: 5px 15px 5px 5px;
    display: flex;
    align-self: stretch;
    align-items: center;
    max-width: 575px;
}
.bsAdminBreadcrumbList .bsAdminBreadcrumbRight {
    padding: 5px 0;
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: flex-end;
}
/*
.bsAdminBreadcrumbList .bsAdminBreadcrumb .bsAdminBreadcrumbItem a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 100%;
}
 */
.bsAdminBreadcrumbList .bsAdminBreadcrumb .bsAdminBreadcrumbItem:not(:last-child) {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bsAdminBreadcrumbList .bsAdminBreadcrumb .bsAdminBreadcrumbItem:not(:last-child)::after {
    content: '\f104';
    font-family: 'FontAwesome';
    padding-left: 10px;
    color: inherit;
}

.bsSwitchGalleryViewBtnsWrap {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    color: var(--light-color);
}
.bsSwitchGalleryViewBtnsWrap li {
    position: relative;
    text-align: center;
    border-right: 2px solid rgba(255,255,255,0.4);
}
.bsSwitchGalleryViewBtnsWrap li:first-child,
.bsSwitchGalleryViewBtnsWrap li:last-child {
    border-right: none;
}
.bsSwitchGalleryViewBtnsWrap li:first-child::after {
    height: 0;
}
.bsSwitchGalleryViewBtnsWrap li span {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px 5px;
}
.bsSwitchGalleryViewBtnsWrap li span.active::after {
    content: '';
    display: inline-block;
    margin: 0 auto;
    height: 4px;
    width: 75%;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: var(--light-color);
}
.bsSwitchGalleryViewBtnsWrap li span img {
    width: 50px;
    height: 30px;
}

.bsImageAreaWrap{
    width: 50px;
    padding: 5px;
    text-align: center;
}
.bsImageAreaWrap img{
    background: var(--secondary-color);
    max-width: 100%;
    margin-bottom: 5px;
    padding: 5px;
}
.bsImageAreaWrap i{
    color: var(--primary-color);
    font-size: 1.5rem;
}


/*
*   Footer
*/
.bsCopyrightOpener {
    display: none;
    position: absolute;
    right: 0;
    bottom: 98px;
    z-index: 9;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    background: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(98px);
    transition: all 0.3s;
}
.bsCopyrightWrp{
    background: var(--secondary-color);
    color: var(--light-color);
}
.bsFooterWidgets {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 10px;
    align-items: center;
    justify-content: space-between; /* Space out items */
}

.bsFooterWidgets .bsCol {
    flex: 1; /* Allow both columns to share equal space */
    max-width: calc(100% / 2); /* Ensure they stay side-by-side */
}

.bsFooterWidgets .bsSocialMedia a {
    margin: 0 10px;
}

.bsFooterWidgets .bsSocialMedia i {
    font-size: 2rem;
}

.bsFooterWidgets .bsQuickLinks {
    display: flex;
    flex-wrap: nowrap; /* Prevent links from wrapping */
    justify-content: flex-start; /* Align links to the left */
    justify-content: center; /* Align links to the left */
}

.bsFooterWidgets .bsQuickLinks a {
    border-right: 2px solid var(--light-color);
    padding-right: 10px;
    margin: 0 5px;
    white-space: nowrap; /* Prevent text wrapping */
}

.bsFooterWidgets .bsQuickLinks a.noBorder {
    border: none;
}
.bsCopyright {
    display: inline-block;
    width: 100%;
}
.bsCopyright p {
    margin-bottom: 0 !important;
    font-size: 14px;
    padding: 5px 10px;
}
.bsCopyright p a {
    display: inline-flex;
}
.bsCopyrightWrp a:hover {
    color: var(--primary-color);
}

table th{
    background: var(--secondary-color);
}

@media screen and (max-width: 1300px) {
    .bsShowroomListWrap .bsSingleShowroom{
        width: calc(100% / 4 - 0.4rem);
    }
    .bsImageWrp img {
        object-fit: contain;
        max-width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .bsMainMenuWrp {
        padding: 10px 15px;
    }
    .bsMainMenuWrp .bsMainMenu,
    .bsMainMenuWrp .bsMenuGroupBtns {
        display: none;
    }
    .bsMainMenuWrp .bsMenuToggleWrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    .bsMainMenuWrp .bsMenuToggleWrap label:hover span{
        background-color: var(--light-color);
    }
    .bsDropDownMenu{
        display: none;
    }
    /*.bsHeroSectionCarouselWrp {
        height: auto;
    }*/
    .bsHeroSectionCarouselWrp .swiper-slide img {
        object-fit: unset;
        height: auto;
    }
    .bsHeroSectionCarouselWrp .swiper-slide img.bsHideTablet {
        display: none;
    }
    .bsShowroomListWrap .bsSingleShowroom{
        width: calc(100% / 3 - 0.4rem);
    }

    .bsMediaLibContent .bsMediaGalleryItem,
    .bsAvatarLibContent .bsAvatarGalleryItem,
    .bsGalleryLibContent .bsGalleryItem{
        flex-basis: calc(100% / 8 - 0.5rem);
    }

    .bsGridGalleryItemWrp{
        width: calc(100% / 4 - 15px) !important;
    }
}

@media screen and (max-width: 991px) {
    .bsFooterWidgets .bsQuickLinks a{
        padding-right: 4px;
        margin: 0 2px;
    }
    .bsCreateGallery{
        min-height: 100px;
    }
    .bsGalleryInputGroup{
        width: 117px;
        height: 117px;
    }
    .bsRoomAppearanceActionWrap .bsRoomAppearanceWrap{
        width: calc(100% / 3);
        text-align: center;
    }
    .bsRoomAppearanceActionWrap .bsRoomAppearanceWrap .title{
        display: block;
    }

    .bsMediaLibContent .bsMediaGalleryItem,
    .bsAvatarLibContent .bsAvatarGalleryItem
    .bsGalleryLibContent .bsGalleryItem{
        flex-basis: calc(100% / 4 - 0.5rem);
    }
    .bsGalleryContentHeaderWrap {
        max-width: 570px;
    }
    .bsGalleryContentController .bsGalleryContentTitle {
        width: 45%;
    }
    .bsGalleryContentController .bsGalleryContentRight {
        width: 52%;
    }
}

@media screen and (max-width: 768px) {
    .bsMainMenuWrp {
        max-width: 100%;
    }
    .bsSidebar{
        max-width: 100%;
        border-color: var(--secondary-color);
    }
    .bsSidebar .bsTopWrp{
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        padding-bottom: 40px;
    }
    .bsSidebar #bsLoginForm{
        position: static;
        padding: 10px;
    }
    .bsSidebarBottomWrap {
        position: fixed;
    }
    .bsMenuWrap .bsMenu li a{
        font-size: 1rem;
    }
    .bsFooterWidgets{
        flex-direction: column;
    }
    .bsFooterWidgets .bsCol{
        margin-bottom: 20px;
        display: initial;
        max-width: 100%;
    }
    .bsFooterWidgets .bsQuickLinks a{
        padding-right: 10px;
        margin: 0 5px;
    }

    .bsGalleryContentController {
        width: 100%;
    }
    /*.bsExternalWrap .bsGalleryContentController {
        top: 5px;
    }*/
    .bsPreviewsSectionsWrp .bsPreviewSectionBox {
        width: calc(100% / 2 - 1rem);
    }
    .bsAdminBreadcrumbList.slideLeft {
        width: 100%;
    }
    .bsShowroomListWrap .bsSingleShowroom{
        width: calc(100% / 2 - 0.4rem);
    }
    .bsGalleryPageWrap .bsShowroomListWrap .bsSingleShowroom{
        width: calc(100% / 3 - 0.4rem) !important;
    }
    .bsGalleryInputGroup{
        width: 81px;
        height: 81px;
    }
    .bsCol1By3 {
        flex-wrap: wrap;
    }
    .bsCol2By3 {
        flex-direction: column;
    }
    .bsCol1By4 {
        flex-direction: column;
    }
    .bsImageWrp {
        width: 100%;
        justify-content: center;
    }
    .bsColumnReverse .bsImageWrp {
        justify-content: center;
    }
    .bsVideoWrp {
        width: 100%;
    }
    .bsPointListWrp {
        width: 100%;
    }
    .bsVideoWrp {
        width: 100%;
    }

    .bsPreviewSectionBox .bsPreviewSectionMedia {
        margin-bottom: 0;
    }

    .bsNavTabsContent .bsMediaCropperWrap img{
        max-width: 80%;
    }

    .bsMediaLibContent .bsMediaGalleryItem,
    .bsAvatarLibContent .bsAvatarGalleryItem,
    .bsGalleryLibContent .bsGalleryItem{
        flex-basis: calc(100% / 3 - 0.5rem);
    }
    .bsPointList li,
    .bsPointList li .bsPointListLeft {
        align-items: center;
    }
    .bsPointList li .bsPointListLeft {
        flex: 1;
    }
    .bsPricingPlanCol .bsPricingPlan {
        min-height: auto;
    }
    .bsPricingPlanCol .bsPricingPlanFeatures {
        display: none;
    }

    .bsGridGalleryItemWrp{
        width: calc(100% / 3 - 15px) !important;
    }
    .bsGalleryContentHeaderWrap {
        top: 76px;
        max-width: 100%;
    }
    .bsPlatoShowroomThumbnail img{
        height: auto !important;
        position: inherit;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .bsAudioVolumeWrap {
        display: none;
    }
    .bsGalleryContentController .bsGalleryContentTitle {
        width: 50%;
    }
    .bsGalleryContentController .bsGalleryContentRight {
        width: 25%;
    }
    .bsSwitchGalleryViewBtnsWrap li:first-child {
        display: none;
    }
    .bsGalleryRoomNavigation {
        visibility: hidden;
        right: -150px;
        top: 155px;
        transition: all 0.3s;
    }
    .bsGalleryRoomNavigation.bsSlideIn {
        right: 0;
        visibility: visible;
    }
}

@media screen and (max-width: 600px) {
    .bsGalleryInputGroup{
        display: inline-block;
        width: 117px;
        height: 117px;
    }
    .bsSingleGalleryInput label{
        display: block;
        margin-bottom: 0;
    }
    .bsMediaLibContent .bsMediaGalleryItem,
    .bsAvatarLibContent .bsAvatarGalleryItem,
    .bsGalleryLibContent .bsGalleryItem{
        flex-basis: calc(100% / 2 - 0.5rem);
    }

    .bsGalleryPageWrap .bsShowroomListWrap .bsSingleShowroom{
        width: calc(100% / 2 - 0.4rem) !important;
    }
    .bsGalleryRoomList span {
        margin: 2px 2px 5px 0;
    }
    .bsRoomAppearanceActionWrap .bsRoomAppearanceWrap {
        text-align: left;
    }
    .bsGalleryPageWrap .bsShowroomListWrap {
        width: 100%;
    }
    .bsColsWrap {
        flex-direction: column;
    }
    .bsHeroSectionCarouselWrp {
        height: auto;
    }
    .bsGridGalleryItemWrp{
        width: calc(100% / 2 - 10px) !important;
    }
    .bsPreviewsSectionsWrp .bsPreviewSectionBox {
        width: 100%;
    }
    .bsTableWrp thead {
        display: none;
    }
    .bsTableWrp tr td {
        display: block;
        position: relative;
        text-align: left;
        min-height: 40px;
    }
    .bsTableWrp tr td:not(:first-child) {
        padding-left: 60%;
    }
    .bsTableWrp :not(tfoot) tr td:not(:first-child)::before {
        content: attr(data-th) " :";
        display: inline-block;
        width: 60%;
        font-weight: bold;
        position: absolute;
        top: 10px;
        left: 10px;
    }
    .bsPricingPlanTableWrp .bsTableWrp tr th:not(:first-child),
    .bsPricingPlanTableWrp .bsTableWrp tr td:not(:first-child) {
        text-align: left;
    }
    /*
    .bsPricingPlanTableWrp .bsTableWrp tfoot tr td:first-child {
        display: none;
    }*/
    .bsAdminBreadcrumbList {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .bsAdminBreadcrumbList .bsAdminBreadcrumbRight {
        justify-content: flex-start;
    }
    .bsGalleryContentController .bsGalleryContentRight {
        width: 45%;
    }
 }

@media screen and (max-width: 500px) {
    .bsRoomAppearanceActionWrap .bsRoomAppearanceWrap{
        width: 100%;
    }
    .bsShowroomListWrap .bsSingleShowroom,
    .bsGalleryPageWrap .bsShowroomListWrap .bsSingleShowroom{
        width: 100% !important;
    }
}

@media screen and (max-width: 450px) {
    .bsMediaLibContent .bsMediaGalleryItem,
    .bsAvatarLibContent .bsAvatarGalleryItem,
    .bsGalleryLibContent .bsGalleryItem{
        flex-basis: 100%;
    }
    .bsGridGalleryItemWrp{
        width: 100% !important;
    }
}

@media screen and (max-width: 400px) {
    .bsMainMenuWrp .bsSiteLogo {
        width: 100%;
        font-size: var(--font-size-h3);
    }
    .bsMainMenuWrp .bsMenuGroupBtns {
        display: none;
    }
    .bsShowroomListWrap {
        padding: 0 15px;
    }
    .bsShowroomListWrap .bsSingleShowroom{
        width: 100%;
        margin-right: 0;
    }

    .bsNavTabsContent .bsMediaCropperWrap img{
        max-width: 200px;
    }
    .bsPointList li,
    .bsPointList li .bsPointListLeft {
        align-items: flex-start;
    }
    .bsPointList2Col {
        flex-direction: column;
        gap: 0 !important;
    }
    .bsPointList li .bsPointListRight {
        padding-left: 40px;
    }
    .bsPointList li .bsPointListIconGrp {
        justify-content: flex-start;
        width: 100%;
    }
    .bsGalleryContentController .bsGalleryContentTitle {
        width: 100%;
        /* padding-left: 20px; */
        /* padding-top: 10px; */
        margin-bottom: 2px !important;
    }
    .bsGalleryContentController .bsGalleryContentTitle span {
        max-width: 375px;
    }
    .bsGalleryContentController .bsGalleryContentTitle,
    .bsGalleryContentController .bsGalleryContentRight {
        background-color: var(--secondary-transparent-color);
    }
    .bsGalleryContentController {
        justify-content: space-between;
    }
    .bsSwitchGalleryViewBtnsWrap li span img {
        width: 45px;
        height: 25px;
    }
    .bsGalleryRoomNavigation {
        top: 190px;
        background-color: var(--secondary-transparent-color) !important;
    }
    .bsGalleryRoomNavigation .bsGalleryRoomNavigationItem {
        background: rgba(240, 240, 240, 0.7);
    }
}
@media only screen and (max-width: 1024px) and (min-width: 769px)  {
    .bsPointList2Col {
        flex-direction: column;
        gap: 0 !important;
    }
    .bsPointList li .bsPointListRight {
        padding-left: 40px;
    }
    .bsPointList li .bsPointListIconGrp {
        justify-content: flex-start;
        width: 100%;
    }
}

@media screen and (max-width: 1440px) and (min-width: 500px) and (orientation: landscape) {
    .bsHeroSectionCarouselWrp {
       /* height: auto !important;*/
    }
    .bsHeroSectionCarouselWrp .swiper-slide img.bsHideDesktop {
        display: none;
    }
    .bsHeroSectionCarouselWrp .swiper-slide img.bsHideTablet {
        display: block;
    }
}

.swiper-pagination-fraction, .swiper-pagination {
    width: 150px !important;
    background: var(--gray-color);
    display: block;
    margin-top: 20px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 5px 10px;
}
