@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --theme-blue: #0076BA;
    --theme-red: #EE220C;
    --theme-white: #fff;
}

html {
    font-size: 10px;
    width: 100%;
}

body {
    font-size: 1.6rem;
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
}

.btn-vehicle-option:hover {
    color: var(--bs-btn-hover-color);
    background-color: #0629F3FF;
    border-color: var(--bs-btn-hover-border-color);
}

.btn-vehicle-option-active {
    color: var(--bs-btn-hover-color);
    background-color: #0629F3FF;
    border-color: var(--bs-btn-hover-border-color);
}

.form-control::placeholder {
    color: #8c95a18e;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*SPLASH SCREEN */
.splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-white);
    height: 100vh;
    width: 100%;
    background-image: url("../images/background-image-splash.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
}

.splash-screen img {
    width: 150px;
    height: auto;
    max-width: 80%;
    animation: fadeIn 100ms ease-out infinite;
}

/*BOTTOM*/
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-white);
    z-index: 90;
}

.bottom-bar ul li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-bar ul li a {
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.bottom-bar ul li a svg {
    width: 36px;
    height: 36px;
}

.alert-success {
    background-color: #00BA57;
}

.alert-primary {
    background-color: var(--theme-blue);
}

.alert-error {
    background-color: var(--theme-red);
}

.alert {
    margin-bottom: 20px;
    border-radius: 10px;
}

.alert svg {
    width: 20px;
    color: var(--theme-white);
    height: 20px;
    margin-right: 5px;
}

.alert span {
    font-size: 15px;
    color: var(--theme-white);
}

/*NAVBAR*/
.navbar-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--theme-white);
    z-index: 90;
}

.navbar-content img {
    width: 200px;
}

.navbar-content .user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.navbar-content .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-content .toggler,
.navbar-content .profile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-content .toggler svg,
.navbar-content .profile-icon svg {
    width: 30px;
    height: 30px;
}

@keyframes fadeIn {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.1;
    }
}

/*ONBOARDING*/
.onboarding {
    background-color: var(--theme-white);
    min-height: 90dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.onboarding .onboarding-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}

.onboarding .onboarding-inner .icon {
    width: 300px;
    max-width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.onboarding .onboarding-inner .icon img {
    width: 100%;
}

.onboarding .onboarding-inner .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 300px;
}

.onboarding .onboarding-inner .content h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #2d3540;
}

.onboarding .onboarding-inner .content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #8c95a1;
}

/*LOGIN*/
.login {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login .login-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    max-width: 450px;
}

.login .login-inner .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}

.login .login-inner .icon img {
    width: 100px;
    max-width: 80%;
}

.login .login-inner h2 {
    font-size: 24px;
    text-align: start;
}

.login .login-inner form label {
    font-size: 16px;
    color: #8C95A1;
}

.login .login-inner form .form-control {
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
}

.login .login-inner form .form-check {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.login .login-inner .social-icons {
    gap: 10px;
}

.login .login-inner .social-icons button {
    width: 56px;
    height: 56px;
}

.login .login-inner .social-icons button svg {
    width: 20px;
    height: 20px;
}

/*REGISTER*/
.register {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.register .register-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
}

.register .register-inner .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.register .register-inner .icon img {
    width: 100px;
    max-width: 80%;
}

.register .register-inner h2 {
    font-size: 24px;
    text-align: start;
}

.register .register-inner form label {
    font-size: 16px;
    color: #8C95A1;
}

.register .register-inner form .form-control {
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
}

.register .register-inner form .form-check {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.register .register-inner .social-icons {
    gap: 10px;
}

.register .register-inner .social-icons button {
    width: 56px;
    height: 56px;
}

.register .register-inner .social-icons button svg {
    width: 20px;
    height: 20px;
}

/*VERIFY*/
.verify {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.verify .verify-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
}

.verify .verify-inner .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.verify .verify-inner .icon img {
    width: 150px;
    max-width: 80%;
}

.verify .verify-inner h2 {
    font-size: 24px;
    text-align: start;
    color: #333;
}

.verify .verify-inner p {
    font-size: 13px;
    text-align: center;
    max-width: 250px;
    color: #8c95a1;
}

.verify .verify-inner form .form-control {
    padding: 15px;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    width: 50px;
    height: 50px;
    border: 1px solid #333;
}

/*HOME*/
.home {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 10px;
}

.home .home-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 450px;
}

.home .home-inner .top-slider {
    margin-bottom: 10px;
}

.home .home-inner .top-slider .splide {
    width: 100%;
}

.home .home-inner .top-slider .splide .splide__slide img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 16 /9;
}

.home .home-inner .home-items {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
    row-gap: 10px;
}

.home .home-inner .home-items .home-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    aspect-ratio: 9 / 14;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.home .home-inner .home-items .home-item a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
}

.home .home-inner .home-items .home-item img,
.home .home-inner .home-items .home-item video,
.home .home-inner .home-items .home-item .video-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.home .home-inner .home-items .home-item__video {
    display: none;
    opacity: 0;
}

.home .home-inner .home-items .home-item:hover .home-item__video {
    display: block;
    opacity: 1;
}

.home .home-inner .home-items .home-item:hover .home-item__image {
    opacity: 0;
}

.home .home-inner .home-items .home-item .home-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 5px;
    color: var(--theme-white);
    z-index: 50;
}

.home .home-inner .home-items .home-item .home-item__content p,
.home .home-inner .home-items .home-item .home-item__content span {
    font-size: 12px;
    margin-bottom: 1px;
    font-weight: bold;
}

.splide__arrow {
    background-color: var(--theme-white);
    border: 1px solid var(--theme-blue);
    opacity: .8;
}

.splide__arrow svg {
    color: var(--theme-blue);
}

.splide__arrow svg path {
    fill: var(--theme-blue);
}

/*PROFILE*/
.profile {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    padding-bottom: 100px;
}

.profile .profile-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 450px;
}

.profile .profile-inner .profile-content .top .image {
    overflow: hidden;
}

.profile .profile-inner .profile-content .top .image img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    border: 1px solid #888;
    object-fit: cover;
}

.profile .profile-inner .video-items {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
    row-gap: 5px;
}

.profile .profile-inner .video-items .video-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    aspect-ratio: 9 / 14;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.profile .profile-inner .video-items .video-item a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
}

.profile .profile-inner .video-items .video-item img,
.profile .profile-inner .video-items .video-item video,
.profile .profile-inner .video-items .video-item .video-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.profile .profile-inner .video-items .video-item__video {
    display: none;
    opacity: 0;
}

.profile .profile-inner .video-items .video-item:hover .video-item__video {
    display: block;
    opacity: 1;
}

/*PROFILE AYARLARI*/
.profile-settings {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    padding-bottom: 100px;
}

.profile-settings .profile-settings-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 450px;
}

.profile-settings .profile-settings-inner .img-thumbnail {
    width: 50px;
    height: 50px;
}

.profile-settings .profile-settings-inner .list-group-item .fs-4 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.profile-settings .profile-settings-inner .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.modal {
    padding: 20px !important;
}

.modal .modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.modal .modal-dialog .modal-title {
    font-size: 16px;
    color: var(--theme-blue);
}

.modal .modal-dialog .form-label {
    font-size: 14px;
}

.modal .modal-dialog .form-control {
    font-size: 14px;
    padding: 10px;
}

.modal .modal-dialog h3 {
    border-bottom: 1px solid #888;
    width: 100%;
    color: var(--theme-blue);
    font-size: 16px;
}

.modal .modal-dialog .form-check-items {
    zoom: .8;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    column-gap: 10px;
}

.modal #featureForm {
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.upload-guidelines {
    display: block;
    color: black;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

/*SEARCH*/
.search {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    padding-bottom: 100px;
}

.search .search-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 450px;
}

.search .search-inner .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.search .search-inner .tabs button img {
    width: 80%;
}

.search .search-inner .form-label {
    font-size: 14px;
    color: #2d3540;
}

.search .search-inner .form-control {
    font-size: 14px;
    padding: 7.5px;
    color: var(--theme-blue);
}

.search .search-inner .dropdown {
    background-color: transparent;
}

.search .search-inner .dropdown button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.search .search-inner .dropdown button::after {
    content: "";
    display: none;
}

.search .search-inner .dropdown-menu {
    width: 100%;
    padding: 5px;
}

.search .search-inner .dropdown-menu li {
    font-size: 14px;
}

.search .search-inner .dropdown-menu li input {
    font-size: 14px;
}

/*SEARCH RESULTS*/
.search-results {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    padding-bottom: 100px;
}

.search-results .search-results-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 450px;
}

.search-results .search-results-inner .selected-filters {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    column-gap: 10px;
}

.search-results .search-results-inner .search-items {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 15px;
}

.search-results .search-results-inner .search-items .search-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    aspect-ratio: 9 / 14;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.search-results .search-results-inner .search-items .search-item a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
}

.search-results .search-results-inner .search-items .search-item img,
.search-results .search-results-inner .search-items .search-item video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.search-results .search-results-inner .search-items .search-item video {
    display: none;
    opacity: 0;
}

.search-results .search-results-inner .search-items .search-item:hover .home-item__video {
    display: block;
    opacity: 1;
}

.search-results .search-results-inner .search-items .search-item:hover .home-item__image {
    opacity: 0;
}

.search-results .search-results-inner .search-items .search-item .home-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 10px;
    color: var(--theme-white);
    z-index: 50;
}

.search-results .search-results-inner .search-items .search-item .home-item__content p,
.search-results .search-results-inner .search-items .search-item .home-item__content span {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

/*ADD ADVERT*/
.add-advert {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    padding-bottom: 100px;
}

.add-advert .add-advert-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 450px;
}

.add-advert .add-advert-inner .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.add-advert .add-advert-inner .tabs button img {
    width: 80%;
}

.add-advert .add-advert-inner .form-label {
    font-size: 14px;
    color: #2d3540;
}

.add-advert .add-advert-inner .form-control {
    font-size: 14px;
    padding: 7.5px;
    color: var(--theme-blue);
}

.add-advert .add-advert-inner .dropdown {
    background-color: transparent;
}

.add-advert .add-advert-inner .dropdown button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.add-advert .add-advert-inner .dropdown button::after {
    content: "";
    display: none;
}

.add-advert .add-advert-inner .dropdown-menu {
    width: 100%;
    padding: 5px;
}

.add-advert .add-advert-inner .dropdown-menu li {
    font-size: 14px;
}

.add-advert .add-advert-inner .dropdown-menu li input {
    font-size: 14px;
}

.add-advert .add-advert-inner .list-group-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}

.add-advert .add-advert-inner .list-group-item .fs-4 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.add-advert .add-advert-inner .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

/*MESSAGING*/
.messaging {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.messaging .messaging-inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    max-width: 450px;
}

.messaging .messaging-inner .chat-container {
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.messaging .messaging-inner .chat-container .chat-header {
    position: sticky;
    background-color: #fff;
    top: 0;
    left: 0;
}

.messaging .messaging-inner .chat-container .chat-header .user-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--theme-blue);
}

.messaging .messaging-inner .chat-container .chat-body .message {
    padding: 10px;
    margin: 20px 0;
    border-radius: 20px;
    width: max-content;
    max-width: 70%;
}

.messaging .messaging-inner .chat-container .chat-body .sent {
    background-color: #0d6efd;
    color: white;
    margin-left: auto;
}

.messaging .messaging-inner .chat-container .chat-body .received {
    background-color: #e9ecef;
    color: black;
    margin-right: auto;
}

.messaging .messaging-inner .chat-container .chat-footer {
    background-color: #fff;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
}

/*REELS*/
.reels {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.reels .reels-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 450px;
}

.reels .reels-inner .filters-top {
    position: absolute;
    top: 0;
    left: 0;
}

.reels .reels-inner .filters-top .selected-filters {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
    gap: 10px;
}

.reels .reels-inner .reels-area {
    height: 100%;
}

.reels .reels-inner .reels-area .reels-splide {
    height: 100%;
}

.reels .reels-inner .reels-area .reels-splide .outerSplide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.reels .reels-inner .reels-area .content-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reels .reels-inner .reels-area .content-video video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.reels .reels-inner .reels-area .content-video .video-js {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.reels .reels-inner .reels-area .content-overlay {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

.reels .reels-inner .reels-area .content-overlay .top-filters {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.reels .reels-inner .reels-area .content-overlay .top-filters .bar-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.reels .reels-inner .reels-area .content-overlay .top-filters .bar-item p {
    font-size: 10px;
    color: #fff;
    margin-bottom: 3px;
}

.reels .reels-inner .reels-area .content-overlay .top-filters .bar-item .bar {
    width: 100%;
    height: 5px;
    background-color: #8C95A1;
    border: 1px solid #8C95A1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.reels .reels-inner .reels-area .content-overlay .top-filters .bar-item .bar span {
    display: inline-block;
    height: 100%;
    background-color: #fff;
}

.reels .reels-inner .reels-area .content-overlay .user {
    gap: 10px;
}

.reels .reels-inner .reels-area .content-overlay .user .icon img {
    width: 30px;
    object-fit: cover;
    height: 30px;
    border: 1px solid var(--theme-blue);
    border-radius: 50%;
}

.reels .reels-inner .reels-area .content-overlay .sum-items button {
    background-color: transparent;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    flex-direction: column;
    font-weight: 500;
    border: none;
    outline: none;
}

.reels .reels-inner .reels-area .content-overlay .sum-items button svg {
    width: 40px;
    height: 40px;
}

.reels .reels-inner .reels-area .content-overlay .sum-items button span {
    font-size: 14px;
}

.inbox {
    background-color: var(--theme-white);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    padding-bottom: 100px;
}

@media (min-width: 768px) {
    .inbox {
        padding: 20px;
        padding-left: 220px;
    }
}

.inbox .inbox-inner {
    margin: 0 auto;
    background-color: #fff;
    overflow: hidden;
}

.inbox .inbox-inner .user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.inbox .inbox-inner .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inbox .inbox-inner .inbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #dbdbdb;
}

.inbox .inbox-inner .inbox-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
}

.inbox .inbox-inner .inbox-header .btn-outline-primary {
    background-color: #fafafa;
    color: #0095f6;
    border: 1px solid #0095f6;
}

.inbox .inbox-inner .inbox-header .btn-outline-primary:hover {
    background-color: #0095f6;
    color: #fff;
}

.inbox .inbox-inner .message-preview {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dbdbdb;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.inbox .inbox-inner .message-preview:hover {
    background-color: #f5f5f5;
}

.inbox .inbox-inner .message-preview .message-info {
    flex-grow: 1;
}

.inbox .inbox-inner .message-preview .message-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 4px;
}

.inbox .inbox-inner .message-preview .message-info p {
    font-size: 14px;
    color: #8e8e8e;
    margin: 0;
}

.inbox .inbox-inner .message-preview .message-time {
    font-size: 13px;
    color: #8e8e8e;
    margin-left: 2rem;
    text-align: center;
}

#newMessageModal .user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

#newMessageModal .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*# sourceMappingURL=style.css.map */


.hamburger-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    text-align: left;
}

.hamburger-menu .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.hamburger-menu .menu-logo {
    width: 100px;
    height: auto;
}

.hamburger-menu .menu-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
}

.hamburger-menu .menu-links a {
    padding: 8px 0;
    text-decoration: none;
    font-size: 15px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.hamburger-menu .menu-links a:hover {
    color: #f1f1f1;
}

.hamburger-menu .closebtn {
    font-size: 36px;
}

.openbtn:hover {
    background-color: #444;
}

.main-content {
    transition: margin-left .5s;
    padding: 16px;
}

.blur-background {
    filter: blur(5px);
}
