/* Fonts */
@font-face {
    font-family: "open-sans-regular";
    src: url("../../common/fonts/open-sans/OpenSans-Regular.5737a677bc9f.ttf");
}

@font-face {
    font-family: "samantha";
    src: url("../../common/fonts/samantha/Samantha.e513ff1a6719.otf");
}

@font-face {
    font-family: "poppins";
    src: url("../../common/fonts/poppins/Poppins-Regular.093ee89be9ed.ttf");
}

@font-face {
    font-family: "poppins-bold";
    src: url("../../common/fonts/poppins/Poppins-Bold.08c20a487911.ttf");
}




/* ======================================================================================= */
/* Colors */
:root{
    /* Template colors */
    --color-primary:    #FD8559;
    --color-secondary:  #42A8C3;
    --color-background: #FFFFFF;
    --color-border:     #D9EEF3;
    --color-navbar-bg:  #FFFFFF;

    /* Base colors */
    --color-white: #FFFFFF;
    --color-black: #132D2F;

    /* Screen loader */
    --color-loader-bg: #132d2fe0;

    /* Text */
    --color-text-priority-1: #132D2F;
    --color-text-priority-2: #425759;
    --color-text-priority-3: #889596;

    /* Scrollbar */
    --color-scrollbar-track: #f1f1f1;
    --color-scrollbar-thumb: #d2d2d2;
    --color-scrollbar-thumb-hover: #555;

    /* Carousel */
    --color-carousel-indicator-bg: #71818280;
    --color-carousel-button-fill: #132d2f;

    /* Images */
    --color-profile-picture-bg: #B3DCE7;

    /* Buttons */
    --color-button-bg-disabled: #eaeaea;

    /* Checkbox */
    --color-checkbox-bg-hover: #ccc;
    --color-checkbox-bg-checked: #68B9CF;

    /* Input */
    --color-input-border: #D9EEF3;
    --color-input-bg: #FFFFFF;

    /* Popups */
    --color-popup-bg-error: #e00;
    --color-popup-bg-success: #48d614;

    /* Categories */
    --color-category-food: #C6211D;
    --color-category-sports: #42a8c3;
    --color-category-cultural: #6F42C3;
    --color-category-amusement: #6F42C3;
    --color-category-ecofriendly: #1C8C3C;
    --color-category-religous: #4B9797;
    --color-category-shopping: #4B9797;
    --color-category-accommodation: #42a8c3;
    --color-category-city: #fd8559;
    --color-category-wellness: #fd8559;
    --color-category-business: #42a8c3;
    --color-category-default: #42a8c3;
}



/* ======================================================================================= */
/* Scrollbar */
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--color-scrollbar-track); 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar-thumb)
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--color-scrollbar-thumb-hover)
}




/* ======================================================================================= */
/* Common */
ul li, ol li{
    list-style: none;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, 
    abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, 
    strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, 
    label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, 
    embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, 
    time, mark, audio, video{
    margin: 0;
    padding: 0; 
    border: 0;
    vertical-align: baseline;
    font-family: "poppins";
}

html, body{
    scroll-behavior: smooth;
    background-color: var(--color-background);
}

#root{
    width: 100%;
    height: fit-content;
    overflow-y: hidden;
}





/* ======================================================================================= */
/* Mapbox map */
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right{
    display: none !important;
}






/* ======================================================================================= */
/* Checkbox */
/* The container */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
/* Create a custom checkbox */
.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 19px;
    width: 18px;
    background-color: var(--color-background);
    border-radius: 5px;
    border: 1px solid var(--color-border);
}

.checkbox-container .checkbox-label{
    width: fit-content;
    height: fit-content;
    font-size: 11px;
    display: block;
    margin-top: 1px;
}
  
/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: var(--color-checkbox-bg-hover);
}
  
/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-checkbox-bg-checked);
}
  
/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
  
/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 6px;
    top: 4px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}




/* ======================================================================================= */
/* Bootstrap */
.carousel{                              /* Carousel */
    width: 100%;
    height: 100%;
}

.carousel-indicators{                   /* Media slider indicators container */
    width: fit-content;
    height: fit-content;
    margin: 2% auto;
    border-radius: 100px;
    padding: 4px 10px;
    border: 1px solid var(--color-white);
    background-color: var(--color-carousel-indicator-bg);
    flex-wrap: wrap;
}

.carousel-indicators [data-bs-target]{  /* Media slider indicator */
    width: 6px;
    height: 6px;
    border-radius: 20px;
    border: 0;
    background: var(--color-background);
}

.carousel-indicators .active{           /* Media slider indicator active */
    background: var(--color-primary);
}

.carousel-inner{                        /* Carousel item */
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.carousel-item{
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel-mob-footer{
    width: 100%;
    height: 15px;
    position: absolute;
    bottom: -1px;
    background-color: var(--color-background);
    display: none;
    z-index: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.carousel-control-next,
.carousel-control-prev{
    height: 35px !important;
    margin: auto 20px !important;
    width: 35px !important;
    background-color: var(--color-background);
    border-radius: 100px;
    color: var(--color-black);
}

.carousel-control-next svg,
.carousel-control-prev svg{
    fill: var(--color-carousel-button-fill);
    width: 15px;
    height: 15px;
    margin: auto;
    position: absolute;
}

.carousel-control-next svg path,
.carousel-control-prev svg path{
    fill: var(--color-carousel-button-fill);
}




/* Dev env label */
#dev-env{
    width: fit-content;
    height: fit-content;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #4ae61eea;
    color: white;
    padding: 0px 8px;
}



/* Password field */
.password-field{
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-bottom: 10px;
}

.password-field input{
    width: 100%;
    height: 35px;
    position: absolute;
}

.password-field svg{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 10px auto 0;
    cursor: pointer;
}

.password-field-reveal svg path{
    fill: #aaaaaa;
}



/* ======================================================================================= */
/* Number input type styling */
input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}




/* ======================================================================================= */
/* Mapbox map */
.map-marker-1 {
    width: 30px;
    height: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-marker-2{
    background-image: url("../../web_app/medias/icons/icon_map_pin_2.fc9ecacadb30.svg");
    background-size: cover;
    width: 30px;
    height: 42px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-marker-number{
    width: fit-content;
    height: fit-content;
    color: var(--color-white);
    font-size: 14px;
}

.map-marker-directions{
    width: 100%;
    height: fit-content;
    display: flex;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 5px;
    cursor: pointer;
    justify-content: center;
    font-size: 12px;
    padding: 5px 0;
    margin-top: 10px;
}

.map-marker-pin{
    width: 30px;
    height: 35px;
    position: absolute;
}

.map-marker-pin-category{
    width: 30px;
    height: 30px;
    margin-top: -5px;
    position: absolute;
}


.mapboxgl-popup {
    max-width: 200px;
}

.mapboxgl-popup-content {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}




/* Common buttons */
.btn-login{
    cursor: pointer;
}

.dialog-btn-link{
    width: fit-content;
    height: fit-content;
    display: flex;
    color: var(--color-secondary);
    margin-left: 5px;
    cursor: pointer;
}


/* ======================================================================================= */
/* Split container */
#split{
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
}



/* ======================================================================================= */
/* Body */
#body{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: hidden;
}




/* ======================================================================================= */
/* Loader */
.loader-container{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: var(--color-loader-bg);
    z-index: 12;
    backdrop-filter: blur(3px);
    display: none;
}

#loader img{
    width: 100px;
    height: auto;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}





/* Loader trip planning */
#loader-trip-content{
    width: 400px;
    height: 400px;
    color: var(--color-white);
    font-size: 14px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#loader-trip-content #loader-trip-canvas{
    width: 400px;
    height: auto;
}

#loader-trip-content #loader-trip-header{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-top: -20px;
}

#loader-trip-content #loader-trip-dots{
    width: auto;
    height: 70px;
    margin-left: -15px;
}

#loader-trip-content #loader-trip-body{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    font-size: 13px;
    border-top: 1px solid #E7E9E9;
    padding-top: 15px;
}

#loader-trip-content #loader-trip-body svg{
    width: 25px;
    max-width: 25px;
    min-width: 25px;
    height: 30px;
    margin-right: 10px;
}





/* ======================================================================================= */
/* Dialog */
#blur{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: var(--color-loader-bg);
    z-index: 10;
    display: none;
}

.dialog{
    width: 100%;
    max-width: 400px;
    height: fit-content;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: var(--color-background);
    z-index: 11;
    flex-direction: column;
    border-radius: 10px;
}

.dialog-inner{
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.dialog-header{
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: row;
}

.dialog-header img{
    height: 30px;
    width: auto;
    margin-left: auto;
}

.dialog-header .dialog-btn-close{
    width: 20px;
    height: 20px;
    display: flex;
    border: 2px solid #51526C;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    margin: auto 0 auto auto;
}

.dialog-header .dialog-btn-close svg{
    width: 7px;
    height: 7px;
}

.dialog-title{
    width: 100%;
    height: fit-content;
    font-size: 13px;
    font-weight: bold;
    color: var(--color-text-priority-1);
    margin: 20px 0;
}

.dialog input[type='email'], 
.dialog input[type='password'], 
.dialog input[type='name'], 
.dialog input[type='text'],
.dialog input[type='phone']{
    width: 100%;
    height: 35px;
    border: 1px solid var(--color-input-border);
    outline: none;
    background: var(--color-input-bg);
    border-radius: 5px;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 12px;
    margin-bottom: 10px;
}

.dialog .dialog-checkbox-container{
    width: 100%;
    height: fit-content;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    color: var(--color-text-priority-3);
}

.dialog .dialog-checkbox-container input{
    margin-right: 5px;
}

.dialog button{
    width: 100%;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 15px;
    margin: 20px 0;
    cursor: pointer;
    outline: none;
    transition: ease 0.3s all;
    font-size: 14px;
}

.dialog button:hover{
    background-color: transparent;
    color: var(--color-primary);
}

.dialog .dialog-hint-label{
    width: fit-content;
    height: fit-content;
    font-size: 12px;
    color: var(--color-text-priority-1);
}

.dialog .dialog-auth-choices-container{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin: 10px 0;
}

.dialog .dialog-auth-choices-container .dialog-auth-btn{
    width: 35px;
    height: 35px;
    cursor: pointer;
    margin: 0 20px;
    position: relative;
}

.dialog .dialog-auth-choices-container .dialog-auth-btn .g-signin2{
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
}

.dialog .dialog-auth-choices-container .dialog-auth-btn .g-signin2 .abcRioButton{
    height: 100% !important;
    width: 100% !important;
    opacity: 0 !important;
}

.dialog .dialog-auth-choices-container .dialog-auth-btn img{
    width: 100%;
    height: 100%;
}

.dialog .dialog-footer{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-top: 30px;
}

.dialog .dialog-phone-inputs-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.dialog .dialog-phone-code-container{
    width: 80px;
    height: 35px;
    display: flex;
    flex-direction: row;
    border: 1px solid #D9EEF3;
    border-radius: 5px;
    margin-right: 5px;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: var(--color-text-priority-3);
    font-size: 12px;
    cursor: pointer;
    position: relative;
}

.dialog .dialog-phone-code-container .dialog-phone-code-dropdown{
    width: 300px;
    height: 250px;
    min-width: 200px;
    max-height: 250px;
    position: absolute;
    top: 25px;
    left: 0;
    background: var(--color-background);
    z-index: 1;
    box-shadow: 0px 0px 13px -4px;
    border-radius: 5px;
    display: none;
}

.dialog .dialog-dropdown-expanded .dialog-phone-code-dropdown{
    display: block;    
}

.dialog .dialog-phone-code-container .dialog-phone-code-dropdown ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.dialog .dialog-phone-code-container .dialog-phone-code-dropdown li{
    width: 100%;
    height: fit-content;
    padding: 10px 10px;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
    align-items: center;
    display: flex;
}

.dialog .dialog-phone-code-container .dialog-phone-code-dropdown li:hover{
    background: #eaeaea80;
}

.dialog .dialog-phone-code-container img{
    width: 20px;
    height: auto;
    border-radius: 3px;
    margin-right: 5px;
}

.dialog .dialog-phone-code-container svg{
    margin-left: 5px;
}

.dialog #dialog-otp-inputs{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    justify-content: center;
}

.dialog .dialog-otp-input{
    width: 75px;
    height: 40px;
    border: 1px solid #cacaca;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0 10px;
    text-align: center;
}

.dialog #dialog-otp-timer-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    font-size: 12px;
    margin-top: 15px;
}

.dialog #dialog-otp-timer{
    color: var(--color-secondary);
    margin-left: auto;
}

.dialog #dialog-otp-btn-resend{
    width: fit-content;
    height: fit-content;
    color: var(--color-secondary);
    font-weight: bold;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dialog #dialog-otp-btn-resend:hover:not(.otp-resend-disabled) {
    color: var(--color-primary);
}

.dialog .otp-resend-disabled{
    color: var(--color-button-bg-disabled) !important;
    cursor: not-allowed !important;
}

.dialog #dialog-otp-timer {
    color: var(--color-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.dialog #dialog-signup-names-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.dialog #dialog-signup-names-container input:first-child{
    margin-right: 5px;
}

.dialog #dialog-signup-names-container input:last-child{
    margin-left: 5px;
}

.dialog #dialog-login-btn-forgot{
    width: fit-content;
    height: fit-content;
    cursor: pointer;
    color: var(--color-secondary);
    font-size: 12px;
    margin-left: auto;
}

.dialog .dialog-footer-decoration{
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Dialog Error Display */
.dialog .dialog-error-container {
    width: 100%;
    margin: 10px 0;
    animation: slideDown 0.3s ease-out;
}

.dialog .dialog-error-message {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    color: #DC2626;
    font-size: 13px;
    font-weight: 500;
}

.dialog .dialog-error-message svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.dialog .dialog-error-message .error-text {
    line-height: 1.4;
}

/* Button Loading States */
.dialog button.loading {
    position: relative;
    color: transparent !important;
    cursor: not-allowed;
    pointer-events: none;
}

.dialog button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: var(--color-white);
}

.dialog button:disabled {
    background: var(--color-button-bg-disabled);
    border-color: var(--color-button-bg-disabled);
    color: var(--color-button-text-disabled);
    cursor: not-allowed;
    pointer-events: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}





/* ======================================================================================= */
/* Popups */
#popups-container{
    width: 300px;
    height: fit-content;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}

#popups-list{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

#popups-list .popup{
    width: 100%;
    height: fit-content;
    display: flex;
    background: var(--color-background);
    border-radius: 5px;
    box-shadow: 0px 5px 20px -3px #000;
    margin-top: 20px;
    margin-left: 2000px;
    transition: ease 0.5s all;
}

#popups-list .show-popup{
    margin-left: 0px;
}

#popups-list .popup .popup-box{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

#popups-list .popup .popup-header{
    width: 100%;
    height: fit-content;
    background: var(--color-popup-bg-error);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    color: var(--color-white);
    padding: 3px 10px;
    box-sizing: border-box;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#popups-list .popup-success .popup-header{
    background: var(--color-popup-bg-success) !important;
}

#popups-list .popup .popup-btn-close{
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0 auto auto;
    cursor: pointer;
}

#popups-list .popup .popup-message{
    width: 100%;
    height: fit-content;
    padding: 10px;
    box-sizing: border-box;
    font-size: 13px;
}

#popups-list .popup .progress{
    height: 5px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}







/* ======================================================================================= */
/* Drawers */
.drawer{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #000000cc;
    backdrop-filter: blur(4px);
    display: none;
}

.drawer .drawer-content{
    width: fit-content;
    height: 100vh;
    background-color: #FFF;
    min-width: 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -1000px;
    transition: ease 0.3s all;
}

/* Activating the drawer */
.drawer-active{
    display: block !important;
}

.drawer-active .drawer-content{
    left: 0px !important;
}

.drawer .drawer-header{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
}

.drawer .drawer-header-btn-close{
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 2px;
    box-sizing: border-box;
    cursor: pointer;
}

.drawer .drawer-header-btn-close img{
    width: 100%;
    height: auto;
}

.drawer .drawer-header-title{
    width: fit-content;
    height: fit-content;
    font-size: 16px;
    font-family: 'poppins';
    font-weight: 600;
}

.drawer .drawer-body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}








/* Notifications Drawer */
.drawer #notifications-list {
    width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.drawer #notifications-list .notification-list-item {
    width: 100%;
    height: fit-content;
}

.drawer #notifications-list .notification-list-item .notification-list-item-date-section {
    padding: 10px;
    box-sizing: border-box;
    font-size: 13px;
    margin: 10px 0;
}

.drawer #notifications-list .notification-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #DBDBDB;
}

.drawer #notifications-list .notification-item-new {
    background-color: #F5F9FF;
}

.drawer #notifications-list .notification-item .notification-item-header {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.drawer #notifications-list .notification-item .notification-item-labels {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.drawer #notifications-list .notification-item .notification-item-labels .notification-item-label {
    width: fit-content;
    height: fit-content;
    font-size: 10px;
    border-radius: 5px;
    padding: 1px 4px;
    margin-right: 5px;
    color: #FFFFFF;
}

/* ✅ LABEL COLOR MAPPINGS */
.drawer #notifications-list .notification-item .notification-item-labels .success {
    background-color: #1beb00;
}

.drawer #notifications-list .notification-item .notification-item-labels .warning {
    background-color: #FF9A02;
}

.drawer #notifications-list .notification-item .notification-item-labels .danger {
    background-color: #FD8559; /* renamed from .error */
}

.drawer #notifications-list .notification-item .notification-item-labels .neutral {
    background-color: #A9A9A9;
}

.drawer #notifications-list .notification-item .notification-item-labels .info {
    background-color: #3C9AB2;
}

.drawer #notifications-list .notification-item .notification-item-date {
    width: fit-content;
    height: fit-content;
    margin: auto 0 auto auto;
    font-size: 11px;
    color: #4D4D4D;
}

.drawer #notifications-list .notification-item .notification-item-title {
    width: fit-content;
    height: fit-content;
    font-size: 16px;
    font-weight: 600;
    font-family: 'poppins';
    margin-top: 5px;
}

.drawer #notifications-list .notification-item .notification-item-description {
    width: fit-content;
    height: fit-content;
    font-size: 13px;
    font-family: 'poppins';
    color: #4D4D4D;
    margin-top: 5px;
}

.drawer #notifications-list .notification-item .notification-item-btns {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.drawer #notifications-list .notification-item .notification-item-cta {
    width: 100%;
    height: fit-content;
    margin-top: 5px;
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 5px;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 13px;
    padding: 5px 5px;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    transition: 0.3s ease all;
}

.drawer #notifications-list .notification-item .notification-item-cta:hover{
    background-color: transparent;
    color: var(--color-secondary);
}


/* Dialog delete */
.dialog-delete{
    width: 100%;
    height: fit-content;
    display: flex;
    max-width: 350px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

.dialog-delete-show{
    display: flex !important;
}

.dialog-delete .dialog-delete-inner{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dialog-delete .dialog-delete-btn-close{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #51526C;
    border-radius: 100px;
    cursor: pointer;
    padding: 4px;
    box-sizing: border-box;
}

.dialog-delete .dialog-delete-title{
    width: fit-content;
    height: fit-content;
    color: #000000;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

.dialog-delete .dialog-delete-message{
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #889596;
    margin-top: 10px;
    text-align: center;
}

.dialog-delete .dialog-delete-btns-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.dialog-delete .dialog-delete-btns-container .dialog-btn{
    width: fit-content;
    height: fit-content;
    padding: 10px 40px;
    border-radius: 8px;
    color: #0A181A;
    font-size: 14px;
    margin: 0 10px;
    font-weight: 600;
    cursor: pointer;
}

.dialog-delete .dialog-delete-btns-container .dialog-delete-btn-confirm{
    background-color: #0A181A;
    color: #FFFFFF;
}






/* ======================================================================================= */
/* Responsiveness */
@media only screen and (max-width: 1024px){
    /* Main Body */
    html, body{
        height: 100vh;
    }

    #body{
        max-height: 100%;
        overflow: auto;
    }

    #root{
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Top navbar */
    #nav_main{
        position: relative;
    }

    /* Dialogs */
    .dialog{
        max-width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
    }
    
    .dialog .dialog-inner{
        justify-content: unset !important;
    }
    
    .dialog button{
        margin-top: auto !important;
    }


    /* Popups */
    #popups-container{
        width: 100%;
        right: 0;
        bottom: 60px;
        padding: 10px;
    }


    /* Default screen */
    #section-default-view #default-view-robot{
        width: 100px;
    }

    #section-default-view #default-view-robot-container{
        top: 38%;
    }

    #section-default-view #default-view-message{
        font-size: 12px;
        margin-left: -25px;
    }

    /* Media slider carousel */
    .carousel-inner{
        border-radius: 0 !important;
    }

    .carousel-mob-footer{
        display: block !important;
    }

    .carousel-indicators{
        margin: 5% auto !important;
    }


    /* Attraction card */
    .trip-details-attraction-card{
        padding: 0 10px;
    }

    .trip-details-attraction-card .trip-details-attraction-content{
        flex-direction: column;
        position: relative;
    }

    .trip-details-attraction-card .trip-details-attraction-img{
        width: 100%;
        height: 200px;
    }

    .trip-details-attraction-card .trip-details-attraction-type{
        position: absolute;
        top: 180px;
        left: 20px;
        color: var(--color-white);
        border-radius: 8px;
        backdrop-filter: blur(8px);
        background: linear-gradient(180deg, #132D2F80, transparent);
        border: 1px solid #FFF;
    }

    .trip-details-attraction-card .trip-details-attraction-btn-options{
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--color-white);
        border-radius: 8px;
        backdrop-filter: blur(8px);
        background: linear-gradient(180deg, #132D2F80, transparent);
        border: 1px solid #FFF;
    }

    .trip-details-attraction-card .trip-details-attraction-btn-options svg path{
        stroke: var(--color-white);
        fill: var(--color-white);
    }

    .trip-details-attraction-card .trip-details-attraction-time{
        position: absolute;
        top: 175px;
        color: var(--color-white);
        border-radius: 8px;
        backdrop-filter: blur(8px);
        background: linear-gradient(180deg, #132D2F80, transparent);
        border: 1px solid #FFF;
        right: 20px;
        padding: 4px 10px;
    }

    .trip-details-attraction-card .trip-details-attraction-time svg path{
        stroke: var(--color-white);
    }


    /* Loader trip */
    #loader-trip-content{
        padding: 40px;
        box-sizing: border-box;
    }
}



@media only screen and (max-width: 600px){
    .drawer .drawer-content{
        max-width: 100% !important;
    }
}