body {
    background-color: #f7f7f7;
    direction: rtl;
}

header {

    transition: top 0.5s ease;
    /* You can adjust the transition duration here */
    z-index: 1000;
}

.post {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 10px;

}

.post img {
    width: 100%;
    border-radius: 10px;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.left-actions,
.right-actions {
    display: flex;
}

.left-actions i,
.right-actions i {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    margin-left: 15px;
}

.left-actions i {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    margin-left: 15px;

    flex-direction: column;
}


.left-actions span {
    cursor: pointer;
    color: #333;
    display: flex !important;
    flex-direction: column;
}

.right-actions i {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    margin-right: 15px;
}

.post-description {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-align: right;
    padding: 13px;
}

.post-actions .fa-heart.red {
    color: red;
}

.footer-nav {
    position: sticky;
    bottom: 0;
    left: 0;
    background: #f3f7fd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    max-width: 512px !important;
    padding: 0;
    margin: 0 !important;
}

.footer-nav i {
    font-size: 24px;
    color: #333;
}

.footer-nav img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.post-description {
    font-size: medium;
}

.modal-center {
    bottom: 0;
    top: auto;
    position: fixed;
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
}

.modal-content {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background-color: #fff;
    color: #000;
    width: 100%;
    max-width: 500px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header,
.modal-footer {
    border: none;
    padding: 15px 20px;
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 0;
}

.comment-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    margin-left: 10px;
}

.comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
    text-align: left;
}

.comment-username {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #000;
}

.comment-text {
    margin-top: 5px;
    color: #333;
    text-align: right;
}

.comment-time {
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
    text-align: right;
}

.comment-actions {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.comment-actions span {
    font-size: 12px;
    color: #aaa;
    margin-left: 10px;
    cursor: pointer;
}

.comment-actions i {
    margin-left: 10px;
    cursor: pointer;
    color: #aaa;
}

.comment-actions i:hover,
.comment-actions span:hover {
    color: #000;
}

.comment-input {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #e5e5e5;
    background-color: #fff;
}

.comment-input img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
}

.comment-input input {
    flex: 1;
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    color: #000;
}

.comment-input input::placeholder {
    color: #aaa;
}

.comment-input i {
    margin-right: 10px;
    cursor: pointer;
    color: #aaa;
    transition: all 0.5s;
}

.comment-input i:hover {
    color: #000;
}

.comment-input-i-black {
    color: #000 !important;
}

.modal-header.share-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-content.share-modal {
    padding: 20px;
}

.modal-header.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.share-options {
    display: flex;
    flex-direction: column;
}

.share-option {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.share-option:hover {
    background-color: #f0f0f0;
}

.share-option i {
    font-size: 24px;
    margin-left: 10px;
    color: #333;
}

.post-actions .fa-bookmark.active {
    color: #000;
}

footer.footer-nav img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.search-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    padding: 10px;
    display: none;
    z-index: 1000;
}

.search-input {
    width: calc(100% - 40px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.search-close {
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
}

.width100 {
    width: 100%;
    text-align: right;
}

.width101 {
    width: 100%;
    text-align: right;
}

.share-modal-content {
    width: 60%;
}

.share-modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.share-options {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    cursor: pointer;
}

.share-option i {
    font-size: 24px;
    margin-bottom: 5px;
}

.share-option span {
    font-size: 14px;
    text-align: center;
}

.share-modal-content {
    width: 60%;
    height: 40%;
    /* Adjust the height as needed */
}

.share-modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

/* Styles specific to the share modal */
.share-modal-content {
    width: 60%;
    height: 40%;
    /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    /* Ensure the body takes the full height of the modal */
    overflow-x: auto;
    /* Add horizontal scroll */
}

.share-options {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    padding: 10px 0;
    white-space: nowrap;
}

.share-option {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    cursor: pointer;
}

.share-option i {
    font-size: 24px;
    margin-bottom: 5px;
}

.share-option span {
    font-size: 14px;
    text-align: center;
}

.share-modal-content {
    width: 60%;
    height: 40%;
    /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    /* Ensure the body takes the full height of the modal */
}

.price-row-flex-trip {
    flex-direction: row;
    display: flex;
    align-content: center;
    align-items: center;
}

.tour-title-size {
    font-weight: bold;
    color: black;
}

.tour-price-size {
    font-size: 14px !important;
    font-weight: normal;
}

.h-433 {
    height: 433px;
}

.tour-not-found {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clear-filter {
    position: absolute;
    z-index: 99;
    transform: translate(16px, 1px);
    background: #fc6736;
    padding: 5px;
    border-radius: 40px 0px 0px 40px;
    border-left: 1px solid #fc6736;
    border-top: 1px solid #fc6736;
    border-bottom: 1px solid #fc6736;
}

