.dropdown, .dropdown-not {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dropdown p, .dropdown-not p {
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.dropdown a, .dropdown-not a {
    color: #5d68c6;
}

.menu {
    font-family: "Montserrat";
    margin: 0;
    font-size: 14px;
    margin-left: 10px;
}

.dropdown-button, .dropdown-button-not {
    background-color: #ffffff;
    color: rgb(37, 37, 37);
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: 1px solid rgb(231, 231, 231);
}

.dropdown-content-not {
    position: revert-layer;
}

.not-title {
    position: sticky;
    top: 0;
    background: rgb(255, 255, 255);
    z-index: 999999999;
    border-bottom: 0.1px solid rgb(231, 231, 231);
}

#clear-notifications {
    position: sticky;
    bottom: 0;
}

.dropdown-button:hover, .dropdown-button-not:hover {
    background-color: rgb(223, 223, 223);
}

.dropdown-content, .dropdown-content-not {
    position: absolute;
    top: 100%;
    right: 0;
    top: 50px;
    background-color: white;
    min-width: 260px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.1s ease-in-out;
    pointer-events: none;
    z-index: 9999999;
}

.dropdown.active .dropdown-content, .dropdown-not.active .dropdown-content-not {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    padding-bottom: .5em;
}

.dropdown-content span,
.dropdown-content a,
.dropdown-content-not span,
.dropdown-content-not a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    Font-weight: 500;
    font-size: 14px;
    transition: 0.2s;
}

a {
    text-decoration: none;
}

.dropdown-content hr, .dropdown-content-not hr {
    border: .1px solid rgb(231, 231, 231);
}

.dropdown-content a:hover, .sellbtn:hover, .dropdown-content-not a:hover {
    background-color: #f1f1f1;
    transition: 0.2s;
}

.dropdown-content i {
    color: #3498db;
}

.search input {
    padding: 15px 15px;
    border-radius: 10px;
    font-family: "Montserrat";
    border: 1px solid rgb(231, 231, 231);
    width: 200px;
}

.auth-input input {
    padding: 10px 15px;
    border-radius: 10px;
    font-family: "Montserrat";
    border: 1px solid rgb(231, 231, 231);
    width: 100%;
    margin-bottom: 1rem;
    margin-top: .5rem;
}

.auth-input p {
    margin: 0;
    font-size: 12px;
}

.auth-input button {
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    font-family: "Montserrat";
    border: none;
    background: rgb(43, 43, 43);
    color: #ffffff;
    font-weight: 400;
    margin-top: 1rem;
    transition: .2s;
    cursor: pointer;
}

.auth-input button:hover {
    background: rgb(24, 24, 24);
    transition: .2s;
}

.label-input {
    display: grid;
    align-items: center;
    gap: 5px;
    width: auto;
}

.primary-btns {
    display: flex;
    gap: 5px;
}

.dropdown-li {
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.dropdown-li p {
    padding-left: 10px;
    padding-right: 10px;
}

.dropdown-li img {
    width: 20px;
}

.sellbtn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px;
    transition: .2s;
}

.sellbtn-img img {
    width: 50px;
}

.sellbtn-info h5 {
    margin: 0;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.sellbtn-info p {
    color: #6e6e6e;
    font-weight: 500;
    font-size: 10px;
}

.primary-btn {
    font-family: "Montserrat";
    background: #dfe2fd;
    color: #5d68c6;
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.primary-btn p {
    margin: 0;
}

.primary-btn:hover {
    background: #4357FF;
    color: white;
    transition: .2s;
}

.right-sidebar button {
    color: #4357FF;
    background: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    border: none;
    margin: 10px 0px;
    cursor: pointer;
}

footer {
    background: #ffffff;
    border-top: 1px solid rgb(231, 231, 231);
}

.footer-titles {
    display: flex;
    gap: 100px;
    padding: 20px 0px;
}

.social-networks {
    display: flex;
    gap: 20px;
}

.main-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-links a {
    font-size: 14px;
    color: black;
    text-decoration: underline;
}

.social-networks a {
    color: black !important;
    opacity: .5;
    transition: .2s;
}

.social-networks a:hover {
    opacity: 1;
    transition: .2s;
}

.footer-title p {
    padding: 0px;
    font-size: 12px;
    color: #333;
}

.footer-title p:hover {
    text-decoration: underline;
}

.footer-roots {
    border-top: 1px solid rgb(231, 231, 231);
    font-size: 14px;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#loginError, #registerError {
    border: 1px solid #ffabab;
    font-size: 14px;
    color: #f67373;
    padding: 8px 15px;
    border-radius: 10px;
    margin: 0;
    background: #ffcece;
    margin-top: 1rem;
}

#regSuc {
    border: 1px solid #508641;
    font-size: 14px;
    color: #508641;
    padding: 8px 15px;
    border-radius: 10px;
    margin: 0;
    background: #dbf5dc;
    margin-top: 1rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.modal-overlay.show {
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.modal {
    position: relative;
    bottom: -100%;
    width: 80%;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: bottom 0.6s ease-in-out;
}

.modal-overlay.show .modal {
    bottom: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgb(231, 231, 231);
}

.modal-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.close {
    cursor: pointer;
    font-size: 30px;
    font-weight: 100;
}

.modal-content {
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.button-clear-not {
    padding: 0px 16px;
}

#add-payment {
    background: #ffffff;
    border: 1px solid #929292;
    color: #929292 !important;
    padding: 5px 10px;
    border-radius: 7px !important;
}

#add-payment p {
    margin: 0;
}

.dropdown-content-not {
    max-height: 350px;
    overflow-y: auto;
}

#clear-notifications {
    width: -moz-available; 
    width: -webkit-fill-available;
    width: stretch; 
    margin: 0px 16px;
    margin-top: 5px;
}

.notification-empty {
    padding: 40px 10px;
    font-size: 14px;
    color: #787878;
}

.not {
    display: flex;
    align-items: center;
    gap: 10px;
}

.not-i {
    width: 40px;
    border-radius: 100px;
    height: 40px;
    background: #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-mes {
    text-align: start;
}

.not-mes strong {
    color: #333;
    font-size: 12px;
}

.not-mes p {
    opacity: .7;
}

.crm-primary {
    font-family: "Montserrat";
    background: #4357FF;
    color: white !important;
    border-radius: 10px !important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: .2s;
}

.crm-primary:hover {
    background: #273dfe;
    transition: .2s;
}

.secondary .dropdown-li p {
    font-size: 12px;
    color: #646464;
    padding-left: 0;
}

.dropdown-content span {
    font-weight: 600;
}

.addproperty {
    padding: 0 !important;
}

.bread-crumps {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 3rem;
}

.bread-crumps a {
    text-decoration: underline;
    color: #4357FF;
}

.bread-crumps p {
    margin: 0;
    color: grey;
}

.title-cont h2 {
    margin-top: 0;
}

.ulinpolicies li {
    border-bottom: none;
}

.ulinpolicies {
    padding: 20px;
}

.unread-drop {
    font-size: 8px !important;
    padding: 0px !important;
    background: red;
    color: white !important;
    border-radius: 100px;
    width: 19.5px;
    height: 19.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}